Upgrade AWS SDK to the latest version

This commit is contained in:
Andrey Smirnov
2017-09-28 17:57:05 +03:00
parent 9a767b7631
commit 182c21e38c
1096 changed files with 309697 additions and 132612 deletions
+23 -7
View File
@@ -188,7 +188,8 @@
"errors":[
{"shape":"InternalErrorException"},
{"shape":"InvalidParameterException"},
{"shape":"NotFoundException"}
{"shape":"NotFoundException"},
{"shape":"DuplicateRecordException"}
]
},
"UpdateSubscriber":{
@@ -202,7 +203,8 @@
"errors":[
{"shape":"InternalErrorException"},
{"shape":"InvalidParameterException"},
{"shape":"NotFoundException"}
{"shape":"NotFoundException"},
{"shape":"DuplicateRecordException"}
]
}
},
@@ -236,13 +238,14 @@
"BudgetName":{
"type":"string",
"max":100,
"pattern":"[^:]+"
"pattern":"[^:\\\\]+"
},
"BudgetType":{
"type":"string",
"enum":[
"USAGE",
"COST"
"COST",
"RI_UTILIZATION"
]
},
"Budgets":{
@@ -541,12 +544,13 @@
"members":{
"NotificationType":{"shape":"NotificationType"},
"ComparisonOperator":{"shape":"ComparisonOperator"},
"Threshold":{"shape":"NotificationThreshold"}
"Threshold":{"shape":"NotificationThreshold"},
"ThresholdType":{"shape":"ThresholdType"}
}
},
"NotificationThreshold":{
"type":"double",
"max":300,
"max":1000000000,
"min":0.1
},
"NotificationType":{
@@ -588,7 +592,7 @@
],
"members":{
"Amount":{"shape":"NumericValue"},
"Unit":{"shape":"GenericString"}
"Unit":{"shape":"UnitValue"}
}
},
"Subscriber":{
@@ -615,6 +619,13 @@
"EMAIL"
]
},
"ThresholdType":{
"type":"string",
"enum":[
"PERCENTAGE",
"ABSOLUTE_VALUE"
]
},
"TimePeriod":{
"type":"structure",
"required":[
@@ -629,11 +640,16 @@
"TimeUnit":{
"type":"string",
"enum":[
"DAILY",
"MONTHLY",
"QUARTERLY",
"ANNUALLY"
]
},
"UnitValue":{
"type":"string",
"min":1
},
"UpdateBudgetRequest":{
"type":"structure",
"required":[
+21 -10
View File
@@ -45,7 +45,7 @@
}
},
"BudgetName": {
"base": "A string represents the budget name. No \":\" character is allowed.",
"base": "A string represents the budget name. No \":\" and \"\\\" character is allowed.",
"refs": {
"Budget$BudgetName": null,
"CreateNotificationRequest$BudgetName": null,
@@ -61,7 +61,7 @@
}
},
"BudgetType": {
"base": "The type of a budget. Can be COST or USAGE.",
"base": "The type of a budget. It should be COST, USAGE, or RI_UTILIZATION.",
"refs": {
"Budget$BudgetType": null
}
@@ -73,7 +73,7 @@
}
},
"CalculatedSpend": {
"base": "A structure holds the actual and forecasted spend for a budget.",
"base": "A structure that holds the actual and forecasted spend for a budget.",
"refs": {
"Budget$CalculatedSpend": null
}
@@ -85,7 +85,7 @@
}
},
"CostFilters": {
"base": "A map represents the cost filters applied to the budget.",
"base": "A map that represents the cost filters applied to the budget.",
"refs": {
"Budget$CostFilters": null
}
@@ -236,7 +236,6 @@
"DescribeSubscribersForNotificationRequest$NextToken": null,
"DescribeSubscribersForNotificationResponse$NextToken": null,
"DimensionValues$member": null,
"Spend$Unit": null,
"Subscriber$Address": null
}
},
@@ -263,7 +262,7 @@
}
},
"MaxResults": {
"base": "An integer to represent how many entries should a pagianted response contains. Maxium is set to 100.",
"base": "An integer to represent how many entries a paginated response contains. Maximum is set to 100.",
"refs": {
"DescribeBudgetsRequest$MaxResults": null,
"DescribeNotificationsForBudgetRequest$MaxResults": null,
@@ -291,7 +290,7 @@
}
},
"NotificationThreshold": {
"base": "The threshold of the a notification. It should be a number between 0 and 100.",
"base": "The threshold of a notification. It should be a number between 0 and 1,000,000,000.",
"refs": {
"Notification$Threshold": null
}
@@ -327,7 +326,7 @@
}
},
"Spend": {
"base": "A structure represent either a cost spend or usage spend. Contains an amount and a unit.",
"base": "A structure that represents either a cost spend or usage spend. Contains an amount and a unit.",
"refs": {
"Budget$BudgetLimit": null,
"CalculatedSpend$ActualSpend": null,
@@ -358,18 +357,30 @@
"Subscriber$SubscriptionType": null
}
},
"ThresholdType": {
"base": "The type of threshold for a notification. It can be PERCENTAGE or ABSOLUTE_VALUE.",
"refs": {
"Notification$ThresholdType": null
}
},
"TimePeriod": {
"base": "A time period indicated the start date and end date of a budget.",
"base": "A time period indicating the start date and end date of a budget.",
"refs": {
"Budget$TimePeriod": null
}
},
"TimeUnit": {
"base": "The time unit of the budget. e.g. weekly, monthly, etc.",
"base": "The time unit of the budget. e.g. MONTHLY, QUARTERLY, etc.",
"refs": {
"Budget$TimeUnit": null
}
},
"UnitValue": {
"base": "A string to represent budget spend unit. It should be not null and not empty.",
"refs": {
"Spend$Unit": null
}
},
"UpdateBudgetRequest": {
"base": "Request of UpdateBudget",
"refs": {