Skip to content

Commit

Permalink
Updated API models and rebuilt service gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS SDK for Ruby authored and Nobody committed Mar 22, 2022
1 parent cc64f10 commit ba1c8cf
Show file tree
Hide file tree
Showing 37 changed files with 1,096 additions and 116 deletions.
140 changes: 136 additions & 4 deletions apis/ce/2017-10-25/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,19 @@
{"shape":"LimitExceededException"}
]
},
"ListTagsForResource":{
"name":"ListTagsForResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListTagsForResourceRequest"},
"output":{"shape":"ListTagsForResourceResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"LimitExceededException"}
]
},
"ProvideAnomalyFeedback":{
"name":"ProvideAnomalyFeedback",
"http":{
Expand All @@ -385,6 +398,33 @@
{"shape":"LimitExceededException"}
]
},
"TagResource":{
"name":"TagResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"TagResourceRequest"},
"output":{"shape":"TagResourceResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"TooManyTagsException"},
{"shape":"LimitExceededException"}
]
},
"UntagResource":{
"name":"UntagResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UntagResourceRequest"},
"output":{"shape":"UntagResourceResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"LimitExceededException"}
]
},
"UpdateAnomalyMonitor":{
"name":"UpdateAnomalyMonitor",
"http":{
Expand Down Expand Up @@ -813,7 +853,8 @@
"type":"structure",
"required":["AnomalyMonitor"],
"members":{
"AnomalyMonitor":{"shape":"AnomalyMonitor"}
"AnomalyMonitor":{"shape":"AnomalyMonitor"},
"ResourceTags":{"shape":"ResourceTagList"}
}
},
"CreateAnomalyMonitorResponse":{
Expand All @@ -827,7 +868,8 @@
"type":"structure",
"required":["AnomalySubscription"],
"members":{
"AnomalySubscription":{"shape":"AnomalySubscription"}
"AnomalySubscription":{"shape":"AnomalySubscription"},
"ResourceTags":{"shape":"ResourceTagList"}
}
},
"CreateAnomalySubscriptionResponse":{
Expand All @@ -849,7 +891,8 @@
"RuleVersion":{"shape":"CostCategoryRuleVersion"},
"Rules":{"shape":"CostCategoryRulesList"},
"DefaultValue":{"shape":"CostCategoryValue"},
"SplitChargeRules":{"shape":"CostCategorySplitChargeRulesList"}
"SplitChargeRules":{"shape":"CostCategorySplitChargeRulesList"},
"ResourceTags":{"shape":"ResourceTagList"}
}
},
"CreateCostCategoryDefinitionResponse":{
Expand Down Expand Up @@ -1673,6 +1716,19 @@
"NextToken":{"shape":"NextPageToken"}
}
},
"ListTagsForResourceRequest":{
"type":"structure",
"required":["ResourceArn"],
"members":{
"ResourceArn":{"shape":"Arn"}
}
},
"ListTagsForResourceResponse":{
"type":"structure",
"members":{
"ResourceTags":{"shape":"ResourceTagList"}
}
},
"LookbackPeriodInDays":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -2013,10 +2069,46 @@
"ResourceNotFoundException":{
"type":"structure",
"members":{
"Message":{"shape":"ErrorMessage"}
"Message":{"shape":"ErrorMessage"},
"ResourceName":{"shape":"Arn"}
},
"exception":true
},
"ResourceTag":{
"type":"structure",
"required":[
"Key",
"Value"
],
"members":{
"Key":{"shape":"ResourceTagKey"},
"Value":{"shape":"ResourceTagValue"}
}
},
"ResourceTagKey":{
"type":"string",
"max":128,
"min":1,
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
},
"ResourceTagKeyList":{
"type":"list",
"member":{"shape":"ResourceTagKey"},
"max":200,
"min":0
},
"ResourceTagList":{
"type":"list",
"member":{"shape":"ResourceTag"},
"max":200,
"min":0
},
"ResourceTagValue":{
"type":"string",
"max":256,
"min":0,
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
},
"ResourceUtilization":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2362,6 +2454,22 @@
"type":"list",
"member":{"shape":"Entity"}
},
"TagResourceRequest":{
"type":"structure",
"required":[
"ResourceArn",
"ResourceTags"
],
"members":{
"ResourceArn":{"shape":"Arn"},
"ResourceTags":{"shape":"ResourceTagList"}
}
},
"TagResourceResponse":{
"type":"structure",
"members":{
}
},
"TagValues":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2404,6 +2512,14 @@
"CurrencyCode":{"shape":"GenericString"}
}
},
"TooManyTagsException":{
"type":"structure",
"members":{
"Message":{"shape":"ErrorMessage"},
"ResourceName":{"shape":"Arn"}
},
"exception":true
},
"TotalActualHours":{"type":"string"},
"TotalActualUnits":{"type":"string"},
"TotalAmortizedFee":{"type":"string"},
Expand Down Expand Up @@ -2444,6 +2560,22 @@
},
"exception":true
},
"UntagResourceRequest":{
"type":"structure",
"required":[
"ResourceArn",
"ResourceTagKeys"
],
"members":{
"ResourceArn":{"shape":"Arn"},
"ResourceTagKeys":{"shape":"ResourceTagKeyList"}
}
},
"UntagResourceResponse":{
"type":"structure",
"members":{
}
},
"UnusedHours":{"type":"string"},
"UnusedUnits":{"type":"string"},
"UpdateAnomalyMonitorRequest":{
Expand Down
Loading

0 comments on commit ba1c8cf

Please sign in to comment.