|
142 | 142 | {"shape":"ServiceException"} |
143 | 143 | ] |
144 | 144 | }, |
| 145 | + "GetQuotaUtilizationReport":{ |
| 146 | + "name":"GetQuotaUtilizationReport", |
| 147 | + "http":{ |
| 148 | + "method":"POST", |
| 149 | + "requestUri":"/" |
| 150 | + }, |
| 151 | + "input":{"shape":"GetQuotaUtilizationReportRequest"}, |
| 152 | + "output":{"shape":"GetQuotaUtilizationReportResponse"}, |
| 153 | + "errors":[ |
| 154 | + {"shape":"TooManyRequestsException"}, |
| 155 | + {"shape":"NoSuchResourceException"}, |
| 156 | + {"shape":"IllegalArgumentException"}, |
| 157 | + {"shape":"AccessDeniedException"}, |
| 158 | + {"shape":"ServiceException"} |
| 159 | + ] |
| 160 | + }, |
145 | 161 | "GetRequestedServiceQuotaChange":{ |
146 | 162 | "name":"GetRequestedServiceQuotaChange", |
147 | 163 | "http":{ |
|
370 | 386 | {"shape":"ServiceException"} |
371 | 387 | ] |
372 | 388 | }, |
| 389 | + "StartQuotaUtilizationReport":{ |
| 390 | + "name":"StartQuotaUtilizationReport", |
| 391 | + "http":{ |
| 392 | + "method":"POST", |
| 393 | + "requestUri":"/" |
| 394 | + }, |
| 395 | + "input":{"shape":"StartQuotaUtilizationReportRequest"}, |
| 396 | + "output":{"shape":"StartQuotaUtilizationReportResponse"}, |
| 397 | + "errors":[ |
| 398 | + {"shape":"TooManyRequestsException"}, |
| 399 | + {"shape":"NoSuchResourceException"}, |
| 400 | + {"shape":"IllegalArgumentException"}, |
| 401 | + {"shape":"AccessDeniedException"}, |
| 402 | + {"shape":"ServiceException"}, |
| 403 | + {"shape":"InvalidPaginationTokenException"} |
| 404 | + ] |
| 405 | + }, |
373 | 406 | "StopAutoManagement":{ |
374 | 407 | "name":"StopAutoManagement", |
375 | 408 | "http":{ |
|
466 | 499 | "ALL" |
467 | 500 | ] |
468 | 501 | }, |
| 502 | + "AppliedValue":{ |
| 503 | + "type":"double", |
| 504 | + "max":10000000000, |
| 505 | + "min":0 |
| 506 | + }, |
469 | 507 | "AssociateServiceQuotaTemplateRequest":{ |
470 | 508 | "type":"structure", |
471 | 509 | "members":{} |
|
493 | 531 | }, |
494 | 532 | "CustomerServiceEngagementId":{"type":"string"}, |
495 | 533 | "DateTime":{"type":"timestamp"}, |
| 534 | + "DefaultValue":{ |
| 535 | + "type":"double", |
| 536 | + "max":10000000000, |
| 537 | + "min":0 |
| 538 | + }, |
496 | 539 | "DeleteServiceQuotaIncreaseRequestFromTemplateRequest":{ |
497 | 540 | "type":"structure", |
498 | 541 | "required":[ |
|
610 | 653 | "ExclusionList":{"shape":"ExclusionQuotaList"} |
611 | 654 | } |
612 | 655 | }, |
| 656 | + "GetQuotaUtilizationReportRequest":{ |
| 657 | + "type":"structure", |
| 658 | + "required":["ReportId"], |
| 659 | + "members":{ |
| 660 | + "ReportId":{"shape":"ReportId"}, |
| 661 | + "NextToken":{"shape":"NextToken"}, |
| 662 | + "MaxResults":{"shape":"MaxResultsUtilization"} |
| 663 | + } |
| 664 | + }, |
| 665 | + "GetQuotaUtilizationReportResponse":{ |
| 666 | + "type":"structure", |
| 667 | + "members":{ |
| 668 | + "ReportId":{"shape":"ReportId"}, |
| 669 | + "Status":{"shape":"ReportStatus"}, |
| 670 | + "GeneratedAt":{"shape":"DateTime"}, |
| 671 | + "TotalCount":{"shape":"TotalCount"}, |
| 672 | + "Quotas":{"shape":"QuotaUtilizationInfoList"}, |
| 673 | + "NextToken":{"shape":"NextToken"}, |
| 674 | + "ErrorCode":{"shape":"ReportErrorCode"}, |
| 675 | + "ErrorMessage":{"shape":"ReportErrorMessage"} |
| 676 | + } |
| 677 | + }, |
613 | 678 | "GetRequestedServiceQuotaChangeRequest":{ |
614 | 679 | "type":"structure", |
615 | 680 | "required":["RequestId"], |
|
812 | 877 | "max":100, |
813 | 878 | "min":1 |
814 | 879 | }, |
| 880 | + "MaxResultsUtilization":{ |
| 881 | + "type":"integer", |
| 882 | + "max":1000, |
| 883 | + "min":1 |
| 884 | + }, |
815 | 885 | "MetricDimensionName":{"type":"string"}, |
816 | 886 | "MetricDimensionValue":{"type":"string"}, |
817 | 887 | "MetricDimensionsMapDefinition":{ |
|
972 | 1042 | } |
973 | 1043 | }, |
974 | 1044 | "QuotaUnit":{"type":"string"}, |
| 1045 | + "QuotaUtilizationInfo":{ |
| 1046 | + "type":"structure", |
| 1047 | + "members":{ |
| 1048 | + "QuotaCode":{"shape":"QuotaCode"}, |
| 1049 | + "ServiceCode":{"shape":"ServiceCode"}, |
| 1050 | + "QuotaName":{"shape":"QuotaName"}, |
| 1051 | + "Namespace":{"shape":"QuotaMetricNamespace"}, |
| 1052 | + "Utilization":{"shape":"UtilizationPct"}, |
| 1053 | + "DefaultValue":{"shape":"DefaultValue"}, |
| 1054 | + "AppliedValue":{"shape":"AppliedValue"}, |
| 1055 | + "ServiceName":{"shape":"ServiceName"}, |
| 1056 | + "Adjustable":{"shape":"QuotaAdjustable"} |
| 1057 | + } |
| 1058 | + }, |
| 1059 | + "QuotaUtilizationInfoList":{ |
| 1060 | + "type":"list", |
| 1061 | + "member":{"shape":"QuotaUtilizationInfo"}, |
| 1062 | + "max":1000 |
| 1063 | + }, |
975 | 1064 | "QuotaValue":{ |
976 | 1065 | "type":"double", |
977 | 1066 | "max":10000000000, |
978 | 1067 | "min":0 |
979 | 1068 | }, |
| 1069 | + "ReportErrorCode":{ |
| 1070 | + "type":"string", |
| 1071 | + "max":128, |
| 1072 | + "min":1, |
| 1073 | + "pattern":"[a-zA-Z][a-zA-Z0-9]*" |
| 1074 | + }, |
| 1075 | + "ReportErrorMessage":{ |
| 1076 | + "type":"string", |
| 1077 | + "max":1024, |
| 1078 | + "min":0, |
| 1079 | + "pattern":"^.*$" |
| 1080 | + }, |
| 1081 | + "ReportId":{ |
| 1082 | + "type":"string", |
| 1083 | + "max":128, |
| 1084 | + "min":1, |
| 1085 | + "pattern":"[0-9a-zA-Z][a-zA-Z0-9-]{1,128}" |
| 1086 | + }, |
| 1087 | + "ReportMessage":{ |
| 1088 | + "type":"string", |
| 1089 | + "max":350, |
| 1090 | + "min":0, |
| 1091 | + "pattern":"^.{0,350}$" |
| 1092 | + }, |
| 1093 | + "ReportStatus":{ |
| 1094 | + "type":"string", |
| 1095 | + "enum":[ |
| 1096 | + "PENDING", |
| 1097 | + "IN_PROGRESS", |
| 1098 | + "COMPLETED", |
| 1099 | + "FAILED" |
| 1100 | + ] |
| 1101 | + }, |
980 | 1102 | "RequestId":{ |
981 | 1103 | "type":"string", |
982 | 1104 | "max":128, |
|
1016 | 1138 | "INVALID_REQUEST" |
1017 | 1139 | ] |
1018 | 1140 | }, |
| 1141 | + "RequestType":{ |
| 1142 | + "type":"string", |
| 1143 | + "enum":["AutomaticManagement"] |
| 1144 | + }, |
1019 | 1145 | "RequestedServiceQuotaChange":{ |
1020 | 1146 | "type":"structure", |
1021 | 1147 | "members":{ |
1022 | 1148 | "Id":{"shape":"RequestId"}, |
| 1149 | + "RequestType":{"shape":"RequestType"}, |
1023 | 1150 | "CaseId":{"shape":"CustomerServiceEngagementId"}, |
1024 | 1151 | "ServiceCode":{"shape":"ServiceCode"}, |
1025 | 1152 | "ServiceName":{"shape":"ServiceName"}, |
|
1147 | 1274 | "type":"structure", |
1148 | 1275 | "members":{} |
1149 | 1276 | }, |
| 1277 | + "StartQuotaUtilizationReportRequest":{ |
| 1278 | + "type":"structure", |
| 1279 | + "members":{} |
| 1280 | + }, |
| 1281 | + "StartQuotaUtilizationReportResponse":{ |
| 1282 | + "type":"structure", |
| 1283 | + "members":{ |
| 1284 | + "ReportId":{"shape":"ReportId"}, |
| 1285 | + "Status":{"shape":"ReportStatus"}, |
| 1286 | + "Message":{"shape":"ReportMessage"} |
| 1287 | + } |
| 1288 | + }, |
1150 | 1289 | "Statistic":{ |
1151 | 1290 | "type":"string", |
1152 | 1291 | "max":256, |
|
1228 | 1367 | }, |
1229 | 1368 | "exception":true |
1230 | 1369 | }, |
| 1370 | + "TotalCount":{ |
| 1371 | + "type":"integer", |
| 1372 | + "max":2147483647, |
| 1373 | + "min":0 |
| 1374 | + }, |
1231 | 1375 | "UntagResourceRequest":{ |
1232 | 1376 | "type":"structure", |
1233 | 1377 | "required":[ |
|
1254 | 1398 | "UpdateAutoManagementResponse":{ |
1255 | 1399 | "type":"structure", |
1256 | 1400 | "members":{} |
1257 | | - } |
| 1401 | + }, |
| 1402 | + "UtilizationPct":{"type":"double"} |
1258 | 1403 | } |
1259 | 1404 | } |
0 commit comments