函数
函数 | 说明 |
---|---|
bucket(bucket) | 注册范围限定为特定存储分区的 Cloud Functions 函数。 |
object() | 注册一个范围限定为项目默认存储分区的 Cloud Functions 函数。 |
类
类 | 说明 |
---|---|
BucketBuilder | Google Cloud Storage 存储分区构建器界面。通过 functions.storage.bucket() 访问。 |
ObjectBuilder | Google Cloud Storage 对象构建器界面。通过 functions.storage.object() 访问。 |
接口
接口 | 说明 |
---|---|
ObjectMetadata | 表示 Google Cloud Storage 对象元数据对象的接口。 |
storage.bucket()
注册范围限定为特定存储分区的 Cloud Functions 函数。
签名:
export declare function bucket(bucket?: string): BucketBuilder;
参数
参数 | 类型 | 说明 |
---|---|---|
存储桶 | 字符串 | 此 Cloud Functions 函数范围限定到的存储分区的名称。 |
返回:
Storage 存储分区构建器界面。
storage.object()
注册一个范围限定为项目默认存储分区的 Cloud Functions 函数。
签名:
export declare function object(): ObjectBuilder;
返回:
Storage 对象构建器界面。