in src/alibaba_cloud_ops_mcp_server/tools/oss_tools.py [0:0]
def PutBucket(
RegionId: str = Field(description='AlibabaCloud region ID', default='cn-hangzhou'),
BucketName: str = Field(description='AlibabaCloud OSS Bucket Name'),
StorageClass: str = Field(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', default='Standard'),
DataRedundancyType: str = Field(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.', default='LRS')