PutBucket
Create and configure a new OSS storage bucket in AlibabaCloud with options for region, storage class, and data redundancy type for efficient resource management.
Instructions
创建一个新的OSS存储空间。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
BucketName | Yes | AlibabaCloud OSS Bucket Name | |
DataRedundancyType | No | The data disaster recovery type of AlibabaCloud OSS Bucket, LRS (default): Locally redundant LRS, which stores your data redundantly on different storage devices in the same availability zone. ZRS: Intra-city redundant ZRS, which uses a multi-availability zone (AZ) mechanism to store your data redundantly in three availability zones in the same region. | LRS |
RegionId | No | AlibabaCloud region ID | cn-hangzhou |
StorageClass | No | The Storage Type of AlibabaCloud OSS Bucket, The value range is as follows: Standard (default): standard storage, IA: infrequent access, Archive: archive storage, ColdArchive: cold archive storage, DeepColdArchive: deep cold archive storage | Standard |
Input Schema (JSON Schema)
{
"properties": {
"BucketName": {
"description": "AlibabaCloud OSS Bucket Name",
"title": "Bucketname",
"type": "string"
},
"DataRedundancyType": {
"default": "LRS",
"description": "The data disaster recovery type of AlibabaCloud OSS Bucket, LRS (default): Locally redundant LRS, which stores your data redundantly on different storage devices in the same availability zone. ZRS: Intra-city redundant ZRS, which uses a multi-availability zone (AZ) mechanism to store your data redundantly in three availability zones in the same region.",
"title": "Dataredundancytype",
"type": "string"
},
"RegionId": {
"default": "cn-hangzhou",
"description": "AlibabaCloud region ID",
"title": "Regionid",
"type": "string"
},
"StorageClass": {
"default": "Standard",
"description": "The Storage Type of AlibabaCloud OSS Bucket, The value range is as follows: Standard (default): standard storage, IA: infrequent access, Archive: archive storage, ColdArchive: cold archive storage, DeepColdArchive: deep cold archive storage",
"title": "Storageclass",
"type": "string"
}
},
"required": [
"BucketName"
],
"title": "PutBucketArguments",
"type": "object"
}