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 20, 2023
1 parent 049b16e commit cfe7ba3
Show file tree
Hide file tree
Showing 56 changed files with 3,713 additions and 3,552 deletions.
135 changes: 133 additions & 2 deletions apis/application-autoscaling/2016-02-06/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,18 @@
{"shape":"InternalServiceException"}
]
},
"ListTagsForResource":{
"name":"ListTagsForResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListTagsForResourceRequest"},
"output":{"shape":"ListTagsForResourceResponse"},
"errors":[
{"shape":"ResourceNotFoundException"}
]
},
"PutScalingPolicy":{
"name":"PutScalingPolicy",
"http":{
Expand Down Expand Up @@ -166,6 +178,33 @@
{"shape":"ConcurrentUpdateException"},
{"shape":"InternalServiceException"}
]
},
"TagResource":{
"name":"TagResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"TagResourceRequest"},
"output":{"shape":"TagResourceResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"TooManyTagsException"},
{"shape":"ValidationException"}
]
},
"UntagResource":{
"name":"UntagResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UntagResourceRequest"},
"output":{"shape":"UntagResourceResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"ValidationException"}
]
}
},
"shapes":{
Expand All @@ -192,6 +231,12 @@
"type":"list",
"member":{"shape":"Alarm"}
},
"AmazonResourceName":{
"type":"string",
"max":1011,
"min":1,
"pattern":"^arn:.+:application-autoscaling:.+:[0-9]+:scalable-target\\/[a-zA-Z0-9-]+$"
},
"ConcurrentUpdateException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -346,6 +391,7 @@
},
"DisableScaleIn":{"type":"boolean"},
"ErrorMessage":{"type":"string"},
"ExceptionMessage":{"type":"string"},
"Expression":{
"type":"string",
"max":2048,
Expand Down Expand Up @@ -387,6 +433,19 @@
},
"exception":true
},
"ListTagsForResourceRequest":{
"type":"structure",
"required":["ResourceARN"],
"members":{
"ResourceARN":{"shape":"AmazonResourceName"}
}
},
"ListTagsForResourceResponse":{
"type":"structure",
"members":{
"Tags":{"shape":"TagMap"}
}
},
"MaxResults":{"type":"integer"},
"MetricAggregationType":{
"type":"string",
Expand Down Expand Up @@ -561,12 +620,14 @@
"MinCapacity":{"shape":"ResourceCapacity"},
"MaxCapacity":{"shape":"ResourceCapacity"},
"RoleARN":{"shape":"ResourceIdMaxLen1600"},
"SuspendedState":{"shape":"SuspendedState"}
"SuspendedState":{"shape":"SuspendedState"},
"Tags":{"shape":"TagMap"}
}
},
"RegisterScalableTargetResponse":{
"type":"structure",
"members":{
"ScalableTargetARN":{"shape":"XmlString"}
}
},
"ResourceCapacity":{"type":"integer"},
Expand All @@ -590,6 +651,14 @@
"max":1023,
"min":1
},
"ResourceNotFoundException":{
"type":"structure",
"members":{
"Message":{"shape":"ExceptionMessage"},
"ResourceName":{"shape":"AmazonResourceName"}
},
"exception":true
},
"ReturnData":{"type":"boolean"},
"ScalableDimension":{
"type":"string",
Expand Down Expand Up @@ -635,7 +704,8 @@
"MaxCapacity":{"shape":"ResourceCapacity"},
"RoleARN":{"shape":"ResourceIdMaxLen1600"},
"CreationTime":{"shape":"TimestampType"},
"SuspendedState":{"shape":"SuspendedState"}
"SuspendedState":{"shape":"SuspendedState"},
"ScalableTargetARN":{"shape":"XmlString"}
}
},
"ScalableTargetAction":{
Expand Down Expand Up @@ -805,6 +875,43 @@
"ScheduledScalingSuspended":{"shape":"ScalingSuspended"}
}
},
"TagKey":{
"type":"string",
"max":128,
"min":1
},
"TagKeyList":{
"type":"list",
"member":{"shape":"TagKey"},
"max":200,
"min":0
},
"TagMap":{
"type":"map",
"key":{"shape":"TagKey"},
"value":{"shape":"TagValue"}
},
"TagResourceRequest":{
"type":"structure",
"required":[
"ResourceARN",
"Tags"
],
"members":{
"ResourceARN":{"shape":"AmazonResourceName"},
"Tags":{"shape":"TagMap"}
}
},
"TagResourceResponse":{
"type":"structure",
"members":{
}
},
"TagValue":{
"type":"string",
"max":256,
"min":0
},
"TargetTrackingMetric":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -898,6 +1005,30 @@
}
},
"TimestampType":{"type":"timestamp"},
"TooManyTagsException":{
"type":"structure",
"members":{
"Message":{"shape":"ExceptionMessage"},
"ResourceName":{"shape":"AmazonResourceName"}
},
"exception":true
},
"UntagResourceRequest":{
"type":"structure",
"required":[
"ResourceARN",
"TagKeys"
],
"members":{
"ResourceARN":{"shape":"AmazonResourceName"},
"TagKeys":{"shape":"TagKeyList"}
}
},
"UntagResourceResponse":{
"type":"structure",
"members":{
}
},
"ValidationException":{
"type":"structure",
"members":{
Expand Down
Loading

0 comments on commit cfe7ba3

Please sign in to comment.