|
11 | 11 | // 'serviceId' => 'ossopenapi', |
12 | 12 | ], |
13 | 13 | 'operations' => [ |
| 14 | + 'GetBucketCapacity' => [ |
| 15 | + 'name' => 'GetBucketCapacity', |
| 16 | + 'http' => [ |
| 17 | + 'method' => 'POST', |
| 18 | + 'requestUri' => '/v1/regions/{regionId}/capacity/', |
| 19 | + ], |
| 20 | + 'input' => [ 'shape' => 'GetBucketCapacityRequestShape', ], |
| 21 | + 'output' => [ 'shape' => 'GetBucketCapacityResponseShape', ], |
| 22 | + ], |
14 | 23 | 'GetSingleBucketCapacity' => [ |
15 | 24 | 'name' => 'GetSingleBucketCapacity', |
16 | 25 | 'http' => [ |
|
83 | 92 | 'input' => [ 'shape' => 'CreateHistoricalReplicatTaskRequestShape', ], |
84 | 93 | 'output' => [ 'shape' => 'CreateHistoricalReplicatTaskResponseShape', ], |
85 | 94 | ], |
| 95 | + 'OpenService' => [ |
| 96 | + 'name' => 'OpenService', |
| 97 | + 'http' => [ |
| 98 | + 'method' => 'POST', |
| 99 | + 'requestUri' => '/v1/regions/{regionId}/users/{userId}/appCodes/{appCode}/serviceCodes/{serviceCode}/openService', |
| 100 | + ], |
| 101 | + 'input' => [ 'shape' => 'OpenServiceRequestShape', ], |
| 102 | + 'output' => [ 'shape' => 'OpenServiceResponseShape', ], |
| 103 | + ], |
86 | 104 | ], |
87 | 105 | 'shapes' => [ |
88 | 106 | 'BucketCapacityStatistic' => [ |
|
94 | 112 | 'capacityType' => [ 'type' => 'integer', 'locationName' => 'capacityType', ], |
95 | 113 | ], |
96 | 114 | ], |
| 115 | + 'GetBucketCapacityRequestShape' => [ |
| 116 | + 'type' => 'structure', |
| 117 | + 'members' => [ |
| 118 | + 'capacityTypes' => [ 'type' => 'list', 'member' => [ 'type' => 'integer', ], ], |
| 119 | + 'beginTime' => [ 'type' => 'string', 'locationName' => 'beginTime', ], |
| 120 | + 'endTime' => [ 'type' => 'string', 'locationName' => 'endTime', ], |
| 121 | + 'periodType' => [ 'type' => 'integer', 'locationName' => 'periodType', ], |
| 122 | + 'method' => [ 'type' => 'integer', 'locationName' => 'method', ], |
| 123 | + 'bucketNames' => [ 'type' => 'list', 'member' => [ 'type' => 'string', ], ], |
| 124 | + 'regionId' => [ 'type' => 'string', 'locationName' => 'regionId', ], |
| 125 | + ], |
| 126 | + ], |
| 127 | + 'GetBucketCapacityResponseShape' => [ |
| 128 | + 'type' => 'structure', |
| 129 | + 'members' => [ |
| 130 | + 'requestId' => [ 'type' => 'string', 'locationName' => 'requestId', ], |
| 131 | + 'result' => [ 'shape' => 'GetBucketCapacityResultShape', ], |
| 132 | + ], |
| 133 | + ], |
97 | 134 | 'GetSingleBucketCapacityRequestShape' => [ |
98 | 135 | 'type' => 'structure', |
99 | 136 | 'members' => [ |
|
123 | 160 | 'method' => [ 'type' => 'integer', 'locationName' => 'method', ], |
124 | 161 | ], |
125 | 162 | ], |
| 163 | + 'GetBucketCapacityResultShape' => [ |
| 164 | + 'type' => 'structure', |
| 165 | + 'members' => [ |
| 166 | + 'resultList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BucketCapacityStatistic', ], ], |
| 167 | + ], |
| 168 | + ], |
126 | 169 | 'BucketCapacityCondition' => [ |
127 | 170 | 'type' => 'structure', |
128 | 171 | 'members' => [ |
|
198 | 241 | 'allowTagging' => [ 'type' => 'boolean', 'locationName' => 'allowTagging', ], |
199 | 242 | ], |
200 | 243 | ], |
| 244 | + 'GetAuthorizedBuckets' => [ |
| 245 | + 'type' => 'structure', |
| 246 | + 'members' => [ |
| 247 | + 'bucketInfoList' => [ 'type' => 'list', 'member' => [ 'shape' => 'BucketInfo', ], ], |
| 248 | + ], |
| 249 | + ], |
201 | 250 | 'BackSourceAddress' => [ |
202 | 251 | 'type' => 'structure', |
203 | 252 | 'members' => [ |
|
506 | 555 | 'authorization' => [ 'type' => 'string', 'locationName' => 'authorization', ], |
507 | 556 | ], |
508 | 557 | ], |
| 558 | + 'OpenServiceRequestShape' => [ |
| 559 | + 'type' => 'structure', |
| 560 | + 'members' => [ |
| 561 | + 'regionId' => [ 'type' => 'string', 'locationName' => 'regionId', ], |
| 562 | + 'userId' => [ 'type' => 'string', 'locationName' => 'userId', ], |
| 563 | + 'appCode' => [ 'type' => 'string', 'locationName' => 'appCode', ], |
| 564 | + 'serviceCode' => [ 'type' => 'string', 'locationName' => 'serviceCode', ], |
| 565 | + ], |
| 566 | + ], |
| 567 | + 'OpenServiceResultShape' => [ |
| 568 | + 'type' => 'structure', |
| 569 | + 'members' => [ |
| 570 | + ], |
| 571 | + ], |
| 572 | + 'OpenServiceResponseShape' => [ |
| 573 | + 'type' => 'structure', |
| 574 | + 'members' => [ |
| 575 | + 'requestId' => [ 'type' => 'string', 'locationName' => 'requestId', ], |
| 576 | + ], |
| 577 | + ], |
509 | 578 | 'UserBillCode' => [ |
510 | 579 | 'type' => 'structure', |
511 | 580 | 'members' => [ |
|
515 | 584 | 'processResourceType' => [ 'type' => 'string', 'locationName' => 'processResourceType', ], |
516 | 585 | ], |
517 | 586 | ], |
| 587 | + 'VpcInfo' => [ |
| 588 | + 'type' => 'structure', |
| 589 | + 'members' => [ |
| 590 | + 'updateType' => [ 'type' => 'integer', 'locationName' => 'updateType', ], |
| 591 | + ], |
| 592 | + ], |
518 | 593 | ], |
519 | 594 | ]; |
0 commit comments