Method: Fog::Compute::AWS::Real#describe_reserved_instances_offerings
- Defined in:
- lib/fog/aws/requests/compute/describe_reserved_instances_offerings.rb
permalink #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
-
‘includeMarketplace’<~Boolean> - whether or not to include marketplace offerings
-
‘instanceType’<~String> - instance type of offering
-
‘offeringType’<~String> - type of offering, in [‘Heavy Utilization’, ‘Medium Utilization’, ‘Light Utilization’]
-
‘productDescription’<~String> - description of offering
-
‘reservedInstancesOfferingId’<~String> - id of offering
-
‘usagePrice’<~Float> - usage price of offering, per hour
-
-
-
29 30 31 32 33 34 35 36 |
# File 'lib/fog/aws/requests/compute/describe_reserved_instances_offerings.rb', line 29 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 |