mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[aws|auto_scaling] mark describe_*_types requests as idempotent
This commit is contained in:
parent
2ae2851f22
commit
2202119703
5 changed files with 15 additions and 10 deletions
|
@ -24,6 +24,7 @@ module Fog
|
|||
def describe_adjustment_types()
|
||||
request({
|
||||
'Action' => 'DescribeAdjustmentTypes',
|
||||
:idempotent => true,
|
||||
:parser => Fog::Parsers::AWS::AutoScaling::DescribeAdjustmentTypes.new
|
||||
})
|
||||
end
|
||||
|
|
|
@ -24,6 +24,7 @@ module Fog
|
|||
def describe_auto_scaling_notification_types()
|
||||
request({
|
||||
'Action' => 'DescribeAutoScalingNotificationTypes',
|
||||
:idempotent => true,
|
||||
:parser => Fog::Parsers::AWS::AutoScaling::DescribeAutoScalingNotificationTypes.new
|
||||
})
|
||||
end
|
||||
|
|
|
@ -26,6 +26,7 @@ module Fog
|
|||
def describe_metric_collection_types()
|
||||
request({
|
||||
'Action' => 'DescribeMetricCollectionTypes',
|
||||
:idempotent => true,
|
||||
:parser => Fog::Parsers::AWS::AutoScaling::DescribeMetricCollectionTypes.new
|
||||
})
|
||||
end
|
||||
|
|
|
@ -25,6 +25,7 @@ module Fog
|
|||
def describe_scaling_process_types()
|
||||
request({
|
||||
'Action' => 'DescribeScalingProcessTypes',
|
||||
:idempotent => true,
|
||||
:parser => Fog::Parsers::AWS::AutoScaling::DescribeScalingProcessTypes.new
|
||||
})
|
||||
end
|
||||
|
|
|
@ -23,6 +23,7 @@ module Fog
|
|||
def describe_termination_policy_types()
|
||||
request({
|
||||
'Action' => 'DescribeTerminationPolicyTypes',
|
||||
:idempotent => true,
|
||||
:parser => Fog::Parsers::AWS::AutoScaling::DescribeTerminationPolicyTypes.new
|
||||
})
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue