Method: Fog::Compute::AWS::Real#describe_reserved_instances_offerings
- Defined in:
- lib/fog/compute/requests/aws/describe_reserved_instances_offerings.rb
#describe_reserved_instances_offerings(filters = {}) ⇒ Object
Describe all or specified reserved instances offerings
Parameters
-
filters<~Hash> - List of filters to limit results with
Returns
-
response<~Excon::Response>:
-
body<~Hash>:
-
‘requestId’<~String> - Id of request
-
‘reservedInstancesOfferingsSet’<~Array>:
-
‘availabilityZone’<~String> - availability zone of offering
-
‘duration’<~Integer> - duration, in seconds, of offering
-
‘fixedPrice’<~Float> - purchase price of offering
-
‘instanceType’<~String> - instance type of offering
-
‘productDescription’<~String> - description of offering
-
‘reservedInstancesOfferingId’<~String> - id of offering
-
‘usagePrice’<~Float> - usage price of offering, per hour
-
-
-
27 28 29 30 31 32 33 34 |
# File 'lib/fog/compute/requests/aws/describe_reserved_instances_offerings.rb', line 27 def describe_reserved_instances_offerings(filters = {}) params = Fog::AWS.indexed_filters(filters) request({ 'Action' => 'DescribeReservedInstancesOfferings', :idempotent => true, :parser => Fog::Parsers::Compute::AWS::DescribeReservedInstancesOfferings.new }.merge!(params)) end |