All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.ec2.model.DescribeReservedInstancesOfferingsRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon EC2 module holds the client classes that are used for communicating with Amazon EC2 Service

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 * 
 *  http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */
package com.amazonaws.services.ec2.model;

import java.io.Serializable;

import com.amazonaws.AmazonWebServiceRequest;
import com.amazonaws.Request;
import com.amazonaws.services.ec2.model.transform.DescribeReservedInstancesOfferingsRequestMarshaller;

/**
 * Container for the parameters to the {@link com.amazonaws.services.ec2.AmazonEC2#describeReservedInstancesOfferings(DescribeReservedInstancesOfferingsRequest) DescribeReservedInstancesOfferings operation}.
 * 

* Describes Reserved Instance offerings that are available for purchase. * With Reserved Instances, you purchase the right to launch instances * for a period of time. During that time period, you do not receive * insufficient capacity errors, and you pay a lower usage rate than the * rate charged for On-Demand instances for the actual time used. *

*

* For more information, see * Reserved Instance Marketplace * in the Amazon Elastic Compute Cloud User Guide . *

* * @see com.amazonaws.services.ec2.AmazonEC2#describeReservedInstancesOfferings(DescribeReservedInstancesOfferingsRequest) */ public class DescribeReservedInstancesOfferingsRequest extends AmazonWebServiceRequest implements Serializable, DryRunSupportedRequest { /** * One or more Reserved Instances offering IDs. */ private com.amazonaws.internal.ListWithAutoConstructFlag reservedInstancesOfferingIds; /** * The instance type on which the Reserved Instance can be used. For more * information, see Instance * Types in the Amazon Elastic Compute Cloud User Guide. *

* Constraints:
* Allowed Values: t1.micro, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, t2.micro, t2.small, t2.medium, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, cg1.4xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge */ private String instanceType; /** * The Availability Zone in which the Reserved Instance can be used. */ private String availabilityZone; /** * The Reserved Instance description. Instances that include * (Amazon VPC) in the description are for use with Amazon * VPC. *

* Constraints:
* Allowed Values: Linux/UNIX, Linux/UNIX (Amazon VPC), Windows, Windows (Amazon VPC) */ private String productDescription; /** * One or more filters.

  • availability-zone - The * Availability Zone where the Reserved Instance can be used.

  • *

    duration - The duration of the Reserved Instance (for * example, one year or three years), in seconds.

  • *

    fixed-price - The purchase price of the Reserved * Instance (for example, 9800.0).

  • *

    instance-type - The instance type on which the * Reserved Instance can be used.

  • marketplace * - Set to true to show only Reserved Instance Marketplace * offerings. When this filter is not used, which is the default * behavior, all offerings from AWS and Reserved Instance Marketplace are * listed.

  • product-description - The * description of the Reserved Instance (Linux/UNIX | * Linux/UNIX (Amazon VPC) | Windows | * Windows (Amazon VPC)).

  • *

    reserved-instances-offering-id - The Reserved * Instances offering ID.

  • usage-price - The * usage price of the Reserved Instance, per hour (for example, 0.84). *

*/ private com.amazonaws.internal.ListWithAutoConstructFlag filters; /** * The tenancy of the Reserved Instance offering. A Reserved Instance * with dedicated tenancy runs on single-tenant hardware and * can only be launched within a VPC.

Default: default *

* Constraints:
* Allowed Values: default, dedicated */ private String instanceTenancy; /** * The Reserved Instance offering type. *

* Constraints:
* Allowed Values: Heavy Utilization, Medium Utilization, Light Utilization */ private String offeringType; /** * The token to use when requesting the next paginated set of offerings. */ private String nextToken; /** * The maximum number of offerings to return. */ private Integer maxResults; /** * Include Marketplace offerings in the response. */ private Boolean includeMarketplace; /** * The minimum duration (in seconds) to filter when searching for * offerings. */ private Long minDuration; /** * The maximum duration (in seconds) to filter when searching for * offerings. */ private Long maxDuration; /** * The maximum number of instances to filter when searching for * offerings. */ private Integer maxInstanceCount; /** * One or more Reserved Instances offering IDs. * * @return One or more Reserved Instances offering IDs. */ public java.util.List getReservedInstancesOfferingIds() { if (reservedInstancesOfferingIds == null) { reservedInstancesOfferingIds = new com.amazonaws.internal.ListWithAutoConstructFlag(); reservedInstancesOfferingIds.setAutoConstruct(true); } return reservedInstancesOfferingIds; } /** * One or more Reserved Instances offering IDs. * * @param reservedInstancesOfferingIds One or more Reserved Instances offering IDs. */ public void setReservedInstancesOfferingIds(java.util.Collection reservedInstancesOfferingIds) { if (reservedInstancesOfferingIds == null) { this.reservedInstancesOfferingIds = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag reservedInstancesOfferingIdsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(reservedInstancesOfferingIds.size()); reservedInstancesOfferingIdsCopy.addAll(reservedInstancesOfferingIds); this.reservedInstancesOfferingIds = reservedInstancesOfferingIdsCopy; } /** * One or more Reserved Instances offering IDs. *

* Returns a reference to this object so that method calls can be chained together. * * @param reservedInstancesOfferingIds One or more Reserved Instances offering IDs. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeReservedInstancesOfferingsRequest withReservedInstancesOfferingIds(String... reservedInstancesOfferingIds) { if (getReservedInstancesOfferingIds() == null) setReservedInstancesOfferingIds(new java.util.ArrayList(reservedInstancesOfferingIds.length)); for (String value : reservedInstancesOfferingIds) { getReservedInstancesOfferingIds().add(value); } return this; } /** * One or more Reserved Instances offering IDs. *

* Returns a reference to this object so that method calls can be chained together. * * @param reservedInstancesOfferingIds One or more Reserved Instances offering IDs. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeReservedInstancesOfferingsRequest withReservedInstancesOfferingIds(java.util.Collection reservedInstancesOfferingIds) { if (reservedInstancesOfferingIds == null) { this.reservedInstancesOfferingIds = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag reservedInstancesOfferingIdsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(reservedInstancesOfferingIds.size()); reservedInstancesOfferingIdsCopy.addAll(reservedInstancesOfferingIds); this.reservedInstancesOfferingIds = reservedInstancesOfferingIdsCopy; } return this; } /** * The instance type on which the Reserved Instance can be used. For more * information, see Instance * Types in the Amazon Elastic Compute Cloud User Guide. *

* Constraints:
* Allowed Values: t1.micro, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, t2.micro, t2.small, t2.medium, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, cg1.4xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge * * @return The instance type on which the Reserved Instance can be used. For more * information, see Instance * Types in the Amazon Elastic Compute Cloud User Guide. * * @see InstanceType */ public String getInstanceType() { return instanceType; } /** * The instance type on which the Reserved Instance can be used. For more * information, see Instance * Types in the Amazon Elastic Compute Cloud User Guide. *

* Constraints:
* Allowed Values: t1.micro, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, t2.micro, t2.small, t2.medium, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, cg1.4xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge * * @param instanceType The instance type on which the Reserved Instance can be used. For more * information, see Instance * Types in the Amazon Elastic Compute Cloud User Guide. * * @see InstanceType */ public void setInstanceType(String instanceType) { this.instanceType = instanceType; } /** * The instance type on which the Reserved Instance can be used. For more * information, see Instance * Types in the Amazon Elastic Compute Cloud User Guide. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Allowed Values: t1.micro, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, t2.micro, t2.small, t2.medium, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, cg1.4xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge * * @param instanceType The instance type on which the Reserved Instance can be used. For more * information, see Instance * Types in the Amazon Elastic Compute Cloud User Guide. * * @return A reference to this updated object so that method calls can be chained * together. * * @see InstanceType */ public DescribeReservedInstancesOfferingsRequest withInstanceType(String instanceType) { this.instanceType = instanceType; return this; } /** * The instance type on which the Reserved Instance can be used. For more * information, see Instance * Types in the Amazon Elastic Compute Cloud User Guide. *

* Constraints:
* Allowed Values: t1.micro, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, t2.micro, t2.small, t2.medium, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, cg1.4xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge * * @param instanceType The instance type on which the Reserved Instance can be used. For more * information, see Instance * Types in the Amazon Elastic Compute Cloud User Guide. * * @see InstanceType */ public void setInstanceType(InstanceType instanceType) { this.instanceType = instanceType.toString(); } /** * The instance type on which the Reserved Instance can be used. For more * information, see Instance * Types in the Amazon Elastic Compute Cloud User Guide. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Allowed Values: t1.micro, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, t2.micro, t2.small, t2.medium, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, cg1.4xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge * * @param instanceType The instance type on which the Reserved Instance can be used. For more * information, see Instance * Types in the Amazon Elastic Compute Cloud User Guide. * * @return A reference to this updated object so that method calls can be chained * together. * * @see InstanceType */ public DescribeReservedInstancesOfferingsRequest withInstanceType(InstanceType instanceType) { this.instanceType = instanceType.toString(); return this; } /** * The Availability Zone in which the Reserved Instance can be used. * * @return The Availability Zone in which the Reserved Instance can be used. */ public String getAvailabilityZone() { return availabilityZone; } /** * The Availability Zone in which the Reserved Instance can be used. * * @param availabilityZone The Availability Zone in which the Reserved Instance can be used. */ public void setAvailabilityZone(String availabilityZone) { this.availabilityZone = availabilityZone; } /** * The Availability Zone in which the Reserved Instance can be used. *

* Returns a reference to this object so that method calls can be chained together. * * @param availabilityZone The Availability Zone in which the Reserved Instance can be used. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeReservedInstancesOfferingsRequest withAvailabilityZone(String availabilityZone) { this.availabilityZone = availabilityZone; return this; } /** * The Reserved Instance description. Instances that include * (Amazon VPC) in the description are for use with Amazon * VPC. *

* Constraints:
* Allowed Values: Linux/UNIX, Linux/UNIX (Amazon VPC), Windows, Windows (Amazon VPC) * * @return The Reserved Instance description. Instances that include * (Amazon VPC) in the description are for use with Amazon * VPC. * * @see RIProductDescription */ public String getProductDescription() { return productDescription; } /** * The Reserved Instance description. Instances that include * (Amazon VPC) in the description are for use with Amazon * VPC. *

* Constraints:
* Allowed Values: Linux/UNIX, Linux/UNIX (Amazon VPC), Windows, Windows (Amazon VPC) * * @param productDescription The Reserved Instance description. Instances that include * (Amazon VPC) in the description are for use with Amazon * VPC. * * @see RIProductDescription */ public void setProductDescription(String productDescription) { this.productDescription = productDescription; } /** * The Reserved Instance description. Instances that include * (Amazon VPC) in the description are for use with Amazon * VPC. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Allowed Values: Linux/UNIX, Linux/UNIX (Amazon VPC), Windows, Windows (Amazon VPC) * * @param productDescription The Reserved Instance description. Instances that include * (Amazon VPC) in the description are for use with Amazon * VPC. * * @return A reference to this updated object so that method calls can be chained * together. * * @see RIProductDescription */ public DescribeReservedInstancesOfferingsRequest withProductDescription(String productDescription) { this.productDescription = productDescription; return this; } /** * The Reserved Instance description. Instances that include * (Amazon VPC) in the description are for use with Amazon * VPC. *

* Constraints:
* Allowed Values: Linux/UNIX, Linux/UNIX (Amazon VPC), Windows, Windows (Amazon VPC) * * @param productDescription The Reserved Instance description. Instances that include * (Amazon VPC) in the description are for use with Amazon * VPC. * * @see RIProductDescription */ public void setProductDescription(RIProductDescription productDescription) { this.productDescription = productDescription.toString(); } /** * The Reserved Instance description. Instances that include * (Amazon VPC) in the description are for use with Amazon * VPC. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Allowed Values: Linux/UNIX, Linux/UNIX (Amazon VPC), Windows, Windows (Amazon VPC) * * @param productDescription The Reserved Instance description. Instances that include * (Amazon VPC) in the description are for use with Amazon * VPC. * * @return A reference to this updated object so that method calls can be chained * together. * * @see RIProductDescription */ public DescribeReservedInstancesOfferingsRequest withProductDescription(RIProductDescription productDescription) { this.productDescription = productDescription.toString(); return this; } /** * One or more filters.

  • availability-zone - The * Availability Zone where the Reserved Instance can be used.

  • *

    duration - The duration of the Reserved Instance (for * example, one year or three years), in seconds.

  • *

    fixed-price - The purchase price of the Reserved * Instance (for example, 9800.0).

  • *

    instance-type - The instance type on which the * Reserved Instance can be used.

  • marketplace * - Set to true to show only Reserved Instance Marketplace * offerings. When this filter is not used, which is the default * behavior, all offerings from AWS and Reserved Instance Marketplace are * listed.

  • product-description - The * description of the Reserved Instance (Linux/UNIX | * Linux/UNIX (Amazon VPC) | Windows | * Windows (Amazon VPC)).

  • *

    reserved-instances-offering-id - The Reserved * Instances offering ID.

  • usage-price - The * usage price of the Reserved Instance, per hour (for example, 0.84). *

* * @return One or more filters.
  • availability-zone - The * Availability Zone where the Reserved Instance can be used.

  • *

    duration - The duration of the Reserved Instance (for * example, one year or three years), in seconds.

  • *

    fixed-price - The purchase price of the Reserved * Instance (for example, 9800.0).

  • *

    instance-type - The instance type on which the * Reserved Instance can be used.

  • marketplace * - Set to true to show only Reserved Instance Marketplace * offerings. When this filter is not used, which is the default * behavior, all offerings from AWS and Reserved Instance Marketplace are * listed.

  • product-description - The * description of the Reserved Instance (Linux/UNIX | * Linux/UNIX (Amazon VPC) | Windows | * Windows (Amazon VPC)).

  • *

    reserved-instances-offering-id - The Reserved * Instances offering ID.

  • usage-price - The * usage price of the Reserved Instance, per hour (for example, 0.84). *

*/ public java.util.List getFilters() { if (filters == null) { filters = new com.amazonaws.internal.ListWithAutoConstructFlag(); filters.setAutoConstruct(true); } return filters; } /** * One or more filters.
  • availability-zone - The * Availability Zone where the Reserved Instance can be used.

  • *

    duration - The duration of the Reserved Instance (for * example, one year or three years), in seconds.

  • *

    fixed-price - The purchase price of the Reserved * Instance (for example, 9800.0).

  • *

    instance-type - The instance type on which the * Reserved Instance can be used.

  • marketplace * - Set to true to show only Reserved Instance Marketplace * offerings. When this filter is not used, which is the default * behavior, all offerings from AWS and Reserved Instance Marketplace are * listed.

  • product-description - The * description of the Reserved Instance (Linux/UNIX | * Linux/UNIX (Amazon VPC) | Windows | * Windows (Amazon VPC)).

  • *

    reserved-instances-offering-id - The Reserved * Instances offering ID.

  • usage-price - The * usage price of the Reserved Instance, per hour (for example, 0.84). *

* * @param filters One or more filters.
  • availability-zone - The * Availability Zone where the Reserved Instance can be used.

  • *

    duration - The duration of the Reserved Instance (for * example, one year or three years), in seconds.

  • *

    fixed-price - The purchase price of the Reserved * Instance (for example, 9800.0).

  • *

    instance-type - The instance type on which the * Reserved Instance can be used.

  • marketplace * - Set to true to show only Reserved Instance Marketplace * offerings. When this filter is not used, which is the default * behavior, all offerings from AWS and Reserved Instance Marketplace are * listed.

  • product-description - The * description of the Reserved Instance (Linux/UNIX | * Linux/UNIX (Amazon VPC) | Windows | * Windows (Amazon VPC)).

  • *

    reserved-instances-offering-id - The Reserved * Instances offering ID.

  • usage-price - The * usage price of the Reserved Instance, per hour (for example, 0.84). *

*/ public void setFilters(java.util.Collection filters) { if (filters == null) { this.filters = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag filtersCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(filters.size()); filtersCopy.addAll(filters); this.filters = filtersCopy; } /** * One or more filters.
  • availability-zone - The * Availability Zone where the Reserved Instance can be used.

  • *

    duration - The duration of the Reserved Instance (for * example, one year or three years), in seconds.

  • *

    fixed-price - The purchase price of the Reserved * Instance (for example, 9800.0).

  • *

    instance-type - The instance type on which the * Reserved Instance can be used.

  • marketplace * - Set to true to show only Reserved Instance Marketplace * offerings. When this filter is not used, which is the default * behavior, all offerings from AWS and Reserved Instance Marketplace are * listed.

  • product-description - The * description of the Reserved Instance (Linux/UNIX | * Linux/UNIX (Amazon VPC) | Windows | * Windows (Amazon VPC)).

  • *

    reserved-instances-offering-id - The Reserved * Instances offering ID.

  • usage-price - The * usage price of the Reserved Instance, per hour (for example, 0.84). *

*

* Returns a reference to this object so that method calls can be chained together. * * @param filters One or more filters.

  • availability-zone - The * Availability Zone where the Reserved Instance can be used.

  • *

    duration - The duration of the Reserved Instance (for * example, one year or three years), in seconds.

  • *

    fixed-price - The purchase price of the Reserved * Instance (for example, 9800.0).

  • *

    instance-type - The instance type on which the * Reserved Instance can be used.

  • marketplace * - Set to true to show only Reserved Instance Marketplace * offerings. When this filter is not used, which is the default * behavior, all offerings from AWS and Reserved Instance Marketplace are * listed.

  • product-description - The * description of the Reserved Instance (Linux/UNIX | * Linux/UNIX (Amazon VPC) | Windows | * Windows (Amazon VPC)).

  • *

    reserved-instances-offering-id - The Reserved * Instances offering ID.

  • usage-price - The * usage price of the Reserved Instance, per hour (for example, 0.84). *

* * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeReservedInstancesOfferingsRequest withFilters(Filter... filters) { if (getFilters() == null) setFilters(new java.util.ArrayList(filters.length)); for (Filter value : filters) { getFilters().add(value); } return this; } /** * One or more filters.
  • availability-zone - The * Availability Zone where the Reserved Instance can be used.

  • *

    duration - The duration of the Reserved Instance (for * example, one year or three years), in seconds.

  • *

    fixed-price - The purchase price of the Reserved * Instance (for example, 9800.0).

  • *

    instance-type - The instance type on which the * Reserved Instance can be used.

  • marketplace * - Set to true to show only Reserved Instance Marketplace * offerings. When this filter is not used, which is the default * behavior, all offerings from AWS and Reserved Instance Marketplace are * listed.

  • product-description - The * description of the Reserved Instance (Linux/UNIX | * Linux/UNIX (Amazon VPC) | Windows | * Windows (Amazon VPC)).

  • *

    reserved-instances-offering-id - The Reserved * Instances offering ID.

  • usage-price - The * usage price of the Reserved Instance, per hour (for example, 0.84). *

*

* Returns a reference to this object so that method calls can be chained together. * * @param filters One or more filters.

  • availability-zone - The * Availability Zone where the Reserved Instance can be used.

  • *

    duration - The duration of the Reserved Instance (for * example, one year or three years), in seconds.

  • *

    fixed-price - The purchase price of the Reserved * Instance (for example, 9800.0).

  • *

    instance-type - The instance type on which the * Reserved Instance can be used.

  • marketplace * - Set to true to show only Reserved Instance Marketplace * offerings. When this filter is not used, which is the default * behavior, all offerings from AWS and Reserved Instance Marketplace are * listed.

  • product-description - The * description of the Reserved Instance (Linux/UNIX | * Linux/UNIX (Amazon VPC) | Windows | * Windows (Amazon VPC)).

  • *

    reserved-instances-offering-id - The Reserved * Instances offering ID.

  • usage-price - The * usage price of the Reserved Instance, per hour (for example, 0.84). *

* * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeReservedInstancesOfferingsRequest withFilters(java.util.Collection filters) { if (filters == null) { this.filters = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag filtersCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(filters.size()); filtersCopy.addAll(filters); this.filters = filtersCopy; } return this; } /** * The tenancy of the Reserved Instance offering. A Reserved Instance * with dedicated tenancy runs on single-tenant hardware and * can only be launched within a VPC.

Default: default *

* Constraints:
* Allowed Values: default, dedicated * * @return The tenancy of the Reserved Instance offering. A Reserved Instance * with dedicated tenancy runs on single-tenant hardware and * can only be launched within a VPC.

Default: default * * @see Tenancy */ public String getInstanceTenancy() { return instanceTenancy; } /** * The tenancy of the Reserved Instance offering. A Reserved Instance * with dedicated tenancy runs on single-tenant hardware and * can only be launched within a VPC.

Default: default *

* Constraints:
* Allowed Values: default, dedicated * * @param instanceTenancy The tenancy of the Reserved Instance offering. A Reserved Instance * with dedicated tenancy runs on single-tenant hardware and * can only be launched within a VPC.

Default: default * * @see Tenancy */ public void setInstanceTenancy(String instanceTenancy) { this.instanceTenancy = instanceTenancy; } /** * The tenancy of the Reserved Instance offering. A Reserved Instance * with dedicated tenancy runs on single-tenant hardware and * can only be launched within a VPC.

Default: default *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Allowed Values: default, dedicated * * @param instanceTenancy The tenancy of the Reserved Instance offering. A Reserved Instance * with dedicated tenancy runs on single-tenant hardware and * can only be launched within a VPC.

Default: default * * @return A reference to this updated object so that method calls can be chained * together. * * @see Tenancy */ public DescribeReservedInstancesOfferingsRequest withInstanceTenancy(String instanceTenancy) { this.instanceTenancy = instanceTenancy; return this; } /** * The tenancy of the Reserved Instance offering. A Reserved Instance * with dedicated tenancy runs on single-tenant hardware and * can only be launched within a VPC.

Default: default *

* Constraints:
* Allowed Values: default, dedicated * * @param instanceTenancy The tenancy of the Reserved Instance offering. A Reserved Instance * with dedicated tenancy runs on single-tenant hardware and * can only be launched within a VPC.

Default: default * * @see Tenancy */ public void setInstanceTenancy(Tenancy instanceTenancy) { this.instanceTenancy = instanceTenancy.toString(); } /** * The tenancy of the Reserved Instance offering. A Reserved Instance * with dedicated tenancy runs on single-tenant hardware and * can only be launched within a VPC.

Default: default *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Allowed Values: default, dedicated * * @param instanceTenancy The tenancy of the Reserved Instance offering. A Reserved Instance * with dedicated tenancy runs on single-tenant hardware and * can only be launched within a VPC.

Default: default * * @return A reference to this updated object so that method calls can be chained * together. * * @see Tenancy */ public DescribeReservedInstancesOfferingsRequest withInstanceTenancy(Tenancy instanceTenancy) { this.instanceTenancy = instanceTenancy.toString(); return this; } /** * The Reserved Instance offering type. *

* Constraints:
* Allowed Values: Heavy Utilization, Medium Utilization, Light Utilization * * @return The Reserved Instance offering type. * * @see OfferingTypeValues */ public String getOfferingType() { return offeringType; } /** * The Reserved Instance offering type. *

* Constraints:
* Allowed Values: Heavy Utilization, Medium Utilization, Light Utilization * * @param offeringType The Reserved Instance offering type. * * @see OfferingTypeValues */ public void setOfferingType(String offeringType) { this.offeringType = offeringType; } /** * The Reserved Instance offering type. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Allowed Values: Heavy Utilization, Medium Utilization, Light Utilization * * @param offeringType The Reserved Instance offering type. * * @return A reference to this updated object so that method calls can be chained * together. * * @see OfferingTypeValues */ public DescribeReservedInstancesOfferingsRequest withOfferingType(String offeringType) { this.offeringType = offeringType; return this; } /** * The Reserved Instance offering type. *

* Constraints:
* Allowed Values: Heavy Utilization, Medium Utilization, Light Utilization * * @param offeringType The Reserved Instance offering type. * * @see OfferingTypeValues */ public void setOfferingType(OfferingTypeValues offeringType) { this.offeringType = offeringType.toString(); } /** * The Reserved Instance offering type. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Allowed Values: Heavy Utilization, Medium Utilization, Light Utilization * * @param offeringType The Reserved Instance offering type. * * @return A reference to this updated object so that method calls can be chained * together. * * @see OfferingTypeValues */ public DescribeReservedInstancesOfferingsRequest withOfferingType(OfferingTypeValues offeringType) { this.offeringType = offeringType.toString(); return this; } /** * The token to use when requesting the next paginated set of offerings. * * @return The token to use when requesting the next paginated set of offerings. */ public String getNextToken() { return nextToken; } /** * The token to use when requesting the next paginated set of offerings. * * @param nextToken The token to use when requesting the next paginated set of offerings. */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** * The token to use when requesting the next paginated set of offerings. *

* Returns a reference to this object so that method calls can be chained together. * * @param nextToken The token to use when requesting the next paginated set of offerings. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeReservedInstancesOfferingsRequest withNextToken(String nextToken) { this.nextToken = nextToken; return this; } /** * The maximum number of offerings to return. * * @return The maximum number of offerings to return. */ public Integer getMaxResults() { return maxResults; } /** * The maximum number of offerings to return. * * @param maxResults The maximum number of offerings to return. */ public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } /** * The maximum number of offerings to return. *

* Returns a reference to this object so that method calls can be chained together. * * @param maxResults The maximum number of offerings to return. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeReservedInstancesOfferingsRequest withMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } /** * Include Marketplace offerings in the response. * * @return Include Marketplace offerings in the response. */ public Boolean isIncludeMarketplace() { return includeMarketplace; } /** * Include Marketplace offerings in the response. * * @param includeMarketplace Include Marketplace offerings in the response. */ public void setIncludeMarketplace(Boolean includeMarketplace) { this.includeMarketplace = includeMarketplace; } /** * Include Marketplace offerings in the response. *

* Returns a reference to this object so that method calls can be chained together. * * @param includeMarketplace Include Marketplace offerings in the response. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeReservedInstancesOfferingsRequest withIncludeMarketplace(Boolean includeMarketplace) { this.includeMarketplace = includeMarketplace; return this; } /** * Include Marketplace offerings in the response. * * @return Include Marketplace offerings in the response. */ public Boolean getIncludeMarketplace() { return includeMarketplace; } /** * The minimum duration (in seconds) to filter when searching for * offerings. * * @return The minimum duration (in seconds) to filter when searching for * offerings. */ public Long getMinDuration() { return minDuration; } /** * The minimum duration (in seconds) to filter when searching for * offerings. * * @param minDuration The minimum duration (in seconds) to filter when searching for * offerings. */ public void setMinDuration(Long minDuration) { this.minDuration = minDuration; } /** * The minimum duration (in seconds) to filter when searching for * offerings. *

* Returns a reference to this object so that method calls can be chained together. * * @param minDuration The minimum duration (in seconds) to filter when searching for * offerings. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeReservedInstancesOfferingsRequest withMinDuration(Long minDuration) { this.minDuration = minDuration; return this; } /** * The maximum duration (in seconds) to filter when searching for * offerings. * * @return The maximum duration (in seconds) to filter when searching for * offerings. */ public Long getMaxDuration() { return maxDuration; } /** * The maximum duration (in seconds) to filter when searching for * offerings. * * @param maxDuration The maximum duration (in seconds) to filter when searching for * offerings. */ public void setMaxDuration(Long maxDuration) { this.maxDuration = maxDuration; } /** * The maximum duration (in seconds) to filter when searching for * offerings. *

* Returns a reference to this object so that method calls can be chained together. * * @param maxDuration The maximum duration (in seconds) to filter when searching for * offerings. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeReservedInstancesOfferingsRequest withMaxDuration(Long maxDuration) { this.maxDuration = maxDuration; return this; } /** * The maximum number of instances to filter when searching for * offerings. * * @return The maximum number of instances to filter when searching for * offerings. */ public Integer getMaxInstanceCount() { return maxInstanceCount; } /** * The maximum number of instances to filter when searching for * offerings. * * @param maxInstanceCount The maximum number of instances to filter when searching for * offerings. */ public void setMaxInstanceCount(Integer maxInstanceCount) { this.maxInstanceCount = maxInstanceCount; } /** * The maximum number of instances to filter when searching for * offerings. *

* Returns a reference to this object so that method calls can be chained together. * * @param maxInstanceCount The maximum number of instances to filter when searching for * offerings. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeReservedInstancesOfferingsRequest withMaxInstanceCount(Integer maxInstanceCount) { this.maxInstanceCount = maxInstanceCount; return this; } /** * This method is intended for internal use only. * Returns the marshaled request configured with additional parameters to * enable operation dry-run. */ @Override public Request getDryRunRequest() { Request request = new DescribeReservedInstancesOfferingsRequestMarshaller().marshall(this); request.addParameter("DryRun", Boolean.toString(true)); return request; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getReservedInstancesOfferingIds() != null) sb.append("ReservedInstancesOfferingIds: " + getReservedInstancesOfferingIds() + ","); if (getInstanceType() != null) sb.append("InstanceType: " + getInstanceType() + ","); if (getAvailabilityZone() != null) sb.append("AvailabilityZone: " + getAvailabilityZone() + ","); if (getProductDescription() != null) sb.append("ProductDescription: " + getProductDescription() + ","); if (getFilters() != null) sb.append("Filters: " + getFilters() + ","); if (getInstanceTenancy() != null) sb.append("InstanceTenancy: " + getInstanceTenancy() + ","); if (getOfferingType() != null) sb.append("OfferingType: " + getOfferingType() + ","); if (getNextToken() != null) sb.append("NextToken: " + getNextToken() + ","); if (getMaxResults() != null) sb.append("MaxResults: " + getMaxResults() + ","); if (isIncludeMarketplace() != null) sb.append("IncludeMarketplace: " + isIncludeMarketplace() + ","); if (getMinDuration() != null) sb.append("MinDuration: " + getMinDuration() + ","); if (getMaxDuration() != null) sb.append("MaxDuration: " + getMaxDuration() + ","); if (getMaxInstanceCount() != null) sb.append("MaxInstanceCount: " + getMaxInstanceCount() ); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getReservedInstancesOfferingIds() == null) ? 0 : getReservedInstancesOfferingIds().hashCode()); hashCode = prime * hashCode + ((getInstanceType() == null) ? 0 : getInstanceType().hashCode()); hashCode = prime * hashCode + ((getAvailabilityZone() == null) ? 0 : getAvailabilityZone().hashCode()); hashCode = prime * hashCode + ((getProductDescription() == null) ? 0 : getProductDescription().hashCode()); hashCode = prime * hashCode + ((getFilters() == null) ? 0 : getFilters().hashCode()); hashCode = prime * hashCode + ((getInstanceTenancy() == null) ? 0 : getInstanceTenancy().hashCode()); hashCode = prime * hashCode + ((getOfferingType() == null) ? 0 : getOfferingType().hashCode()); hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); hashCode = prime * hashCode + ((getMaxResults() == null) ? 0 : getMaxResults().hashCode()); hashCode = prime * hashCode + ((isIncludeMarketplace() == null) ? 0 : isIncludeMarketplace().hashCode()); hashCode = prime * hashCode + ((getMinDuration() == null) ? 0 : getMinDuration().hashCode()); hashCode = prime * hashCode + ((getMaxDuration() == null) ? 0 : getMaxDuration().hashCode()); hashCode = prime * hashCode + ((getMaxInstanceCount() == null) ? 0 : getMaxInstanceCount().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeReservedInstancesOfferingsRequest == false) return false; DescribeReservedInstancesOfferingsRequest other = (DescribeReservedInstancesOfferingsRequest)obj; if (other.getReservedInstancesOfferingIds() == null ^ this.getReservedInstancesOfferingIds() == null) return false; if (other.getReservedInstancesOfferingIds() != null && other.getReservedInstancesOfferingIds().equals(this.getReservedInstancesOfferingIds()) == false) return false; if (other.getInstanceType() == null ^ this.getInstanceType() == null) return false; if (other.getInstanceType() != null && other.getInstanceType().equals(this.getInstanceType()) == false) return false; if (other.getAvailabilityZone() == null ^ this.getAvailabilityZone() == null) return false; if (other.getAvailabilityZone() != null && other.getAvailabilityZone().equals(this.getAvailabilityZone()) == false) return false; if (other.getProductDescription() == null ^ this.getProductDescription() == null) return false; if (other.getProductDescription() != null && other.getProductDescription().equals(this.getProductDescription()) == false) return false; if (other.getFilters() == null ^ this.getFilters() == null) return false; if (other.getFilters() != null && other.getFilters().equals(this.getFilters()) == false) return false; if (other.getInstanceTenancy() == null ^ this.getInstanceTenancy() == null) return false; if (other.getInstanceTenancy() != null && other.getInstanceTenancy().equals(this.getInstanceTenancy()) == false) return false; if (other.getOfferingType() == null ^ this.getOfferingType() == null) return false; if (other.getOfferingType() != null && other.getOfferingType().equals(this.getOfferingType()) == false) return false; if (other.getNextToken() == null ^ this.getNextToken() == null) return false; if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false) return false; if (other.getMaxResults() == null ^ this.getMaxResults() == null) return false; if (other.getMaxResults() != null && other.getMaxResults().equals(this.getMaxResults()) == false) return false; if (other.isIncludeMarketplace() == null ^ this.isIncludeMarketplace() == null) return false; if (other.isIncludeMarketplace() != null && other.isIncludeMarketplace().equals(this.isIncludeMarketplace()) == false) return false; if (other.getMinDuration() == null ^ this.getMinDuration() == null) return false; if (other.getMinDuration() != null && other.getMinDuration().equals(this.getMinDuration()) == false) return false; if (other.getMaxDuration() == null ^ this.getMaxDuration() == null) return false; if (other.getMaxDuration() != null && other.getMaxDuration().equals(this.getMaxDuration()) == false) return false; if (other.getMaxInstanceCount() == null ^ this.getMaxInstanceCount() == null) return false; if (other.getMaxInstanceCount() != null && other.getMaxInstanceCount().equals(this.getMaxInstanceCount()) == false) return false; return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy