software.amazon.awssdk.services.costexplorer.model.GetDimensionValuesResponse Maven / Gradle / Ivy
Show all versions of costexplorer Show documentation
/*
* Copyright 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 software.amazon.awssdk.services.costexplorer.model;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.ListTrait;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructList;
import software.amazon.awssdk.core.util.SdkAutoConstructList;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*/
@Generated("software.amazon.awssdk:codegen")
public final class GetDimensionValuesResponse extends CostExplorerResponse implements
ToCopyableBuilder {
private static final SdkField> DIMENSION_VALUES_FIELD = SdkField
.> builder(MarshallingType.LIST)
.memberName("DimensionValues")
.getter(getter(GetDimensionValuesResponse::dimensionValues))
.setter(setter(Builder::dimensionValues))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("DimensionValues").build(),
ListTrait
.builder()
.memberLocationName(null)
.memberFieldInfo(
SdkField. builder(MarshallingType.SDK_POJO)
.constructor(DimensionValuesWithAttributes::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
.locationName("member").build()).build()).build()).build();
private static final SdkField RETURN_SIZE_FIELD = SdkField. builder(MarshallingType.INTEGER)
.memberName("ReturnSize").getter(getter(GetDimensionValuesResponse::returnSize)).setter(setter(Builder::returnSize))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ReturnSize").build()).build();
private static final SdkField TOTAL_SIZE_FIELD = SdkField. builder(MarshallingType.INTEGER)
.memberName("TotalSize").getter(getter(GetDimensionValuesResponse::totalSize)).setter(setter(Builder::totalSize))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TotalSize").build()).build();
private static final SdkField NEXT_PAGE_TOKEN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("NextPageToken").getter(getter(GetDimensionValuesResponse::nextPageToken))
.setter(setter(Builder::nextPageToken))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("NextPageToken").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(DIMENSION_VALUES_FIELD,
RETURN_SIZE_FIELD, TOTAL_SIZE_FIELD, NEXT_PAGE_TOKEN_FIELD));
private final List dimensionValues;
private final Integer returnSize;
private final Integer totalSize;
private final String nextPageToken;
private GetDimensionValuesResponse(BuilderImpl builder) {
super(builder);
this.dimensionValues = builder.dimensionValues;
this.returnSize = builder.returnSize;
this.totalSize = builder.totalSize;
this.nextPageToken = builder.nextPageToken;
}
/**
* For responses, this returns true if the service returned a value for the DimensionValues property. This DOES NOT
* check that the value is non-empty (for which, you should check the {@code isEmpty()} method on the property).
* This is useful because the SDK will never return a null collection or map, but you may need to differentiate
* between the service returning nothing (or null) and the service returning an empty collection or map. For
* requests, this returns true if a value for the property was specified in the request builder, and false if a
* value was not specified.
*/
public final boolean hasDimensionValues() {
return dimensionValues != null && !(dimensionValues instanceof SdkAutoConstructList);
}
/**
*
* The filters that you used to filter your request. Some dimensions are available only for a specific context.
*
*
* If you set the context to COST_AND_USAGE
, you can use the following dimensions for searching:
*
*
* -
*
* AZ - The Availability Zone. An example is us-east-1a
.
*
*
* -
*
* DATABASE_ENGINE - The Amazon Relational Database Service database. Examples are Aurora or MySQL.
*
*
* -
*
* INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge
.
*
*
* -
*
* LEGAL_ENTITY_NAME - The name of the organization that sells you Amazon Web Services services, such as Amazon Web
* Services.
*
*
* -
*
* LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The
* value field contains the Amazon Web Services ID of the member account.
*
*
* -
*
* OPERATING_SYSTEM - The operating system. Examples are Windows or Linux.
*
*
* -
*
* OPERATION - The action performed. Examples include RunInstance
and CreateBucket
.
*
*
* -
*
* PLATFORM - The Amazon EC2 operating system. Examples are Windows or Linux.
*
*
* -
*
* PURCHASE_TYPE - The reservation type of the purchase to which this usage is related. Examples include On-Demand
* Instances and Standard Reserved Instances.
*
*
* -
*
* SERVICE - The Amazon Web Services service such as Amazon DynamoDB.
*
*
* -
*
* USAGE_TYPE - The type of usage. An example is DataTransfer-In-Bytes. The response for the
* GetDimensionValues
operation includes a unit attribute. Examples include GB and Hrs.
*
*
* -
*
* USAGE_TYPE_GROUP - The grouping of common usage types. An example is Amazon EC2: CloudWatch – Alarms. The
* response for this operation includes a unit attribute.
*
*
* -
*
* RECORD_TYPE - The different types of charges such as RI fees, usage costs, tax refunds, and credits.
*
*
* -
*
* RESOURCE_ID - The unique identifier of the resource. ResourceId is an opt-in feature only available for last 14
* days for EC2-Compute Service. You can opt-in by enabling Hourly
and Resource Level Data
* in Cost Management Console preferences.
*
*
*
*
* If you set the context to RESERVATIONS
, you can use the following dimensions for searching:
*
*
* -
*
* AZ - The Availability Zone. An example is us-east-1a
.
*
*
* -
*
* CACHE_ENGINE - The Amazon ElastiCache operating system. Examples are Windows or Linux.
*
*
* -
*
* DEPLOYMENT_OPTION - The scope of Amazon Relational Database Service deployments. Valid values are
* SingleAZ
and MultiAZ
.
*
*
* -
*
* INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge
.
*
*
* -
*
* LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The
* value field contains the Amazon Web Services ID of the member account.
*
*
* -
*
* PLATFORM - The Amazon EC2 operating system. Examples are Windows or Linux.
*
*
* -
*
* REGION - The Amazon Web Services Region.
*
*
* -
*
* SCOPE (Utilization only) - The scope of a Reserved Instance (RI). Values are regional or a single Availability
* Zone.
*
*
* -
*
* TAG (Coverage only) - The tags that are associated with a Reserved Instance (RI).
*
*
* -
*
* TENANCY - The tenancy of a resource. Examples are shared or dedicated.
*
*
*
*
* If you set the context to SAVINGS_PLANS
, you can use the following dimensions for searching:
*
*
* -
*
* SAVINGS_PLANS_TYPE - Type of Savings Plans (EC2 Instance or Compute)
*
*
* -
*
* PAYMENT_OPTION - Payment option for the given Savings Plans (for example, All Upfront)
*
*
* -
*
* REGION - The Amazon Web Services Region.
*
*
* -
*
* INSTANCE_TYPE_FAMILY - The family of instances (For example, m5
)
*
*
* -
*
* LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account. The
* value field contains the Amazon Web Services ID of the member account.
*
*
* -
*
* SAVINGS_PLAN_ARN - The unique identifier for your Savings Plan
*
*
*
*
* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
*
*
* This method will never return null. If you would like to know whether the service returned this field (so that
* you can differentiate between null and empty), you can use the {@link #hasDimensionValues} method.
*
*
* @return The filters that you used to filter your request. Some dimensions are available only for a specific
* context.
*
* If you set the context to COST_AND_USAGE
, you can use the following dimensions for
* searching:
*
*
* -
*
* AZ - The Availability Zone. An example is us-east-1a
.
*
*
* -
*
* DATABASE_ENGINE - The Amazon Relational Database Service database. Examples are Aurora or MySQL.
*
*
* -
*
* INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge
.
*
*
* -
*
* LEGAL_ENTITY_NAME - The name of the organization that sells you Amazon Web Services services, such as
* Amazon Web Services.
*
*
* -
*
* LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account.
* The value field contains the Amazon Web Services ID of the member account.
*
*
* -
*
* OPERATING_SYSTEM - The operating system. Examples are Windows or Linux.
*
*
* -
*
* OPERATION - The action performed. Examples include RunInstance
and CreateBucket
* .
*
*
* -
*
* PLATFORM - The Amazon EC2 operating system. Examples are Windows or Linux.
*
*
* -
*
* PURCHASE_TYPE - The reservation type of the purchase to which this usage is related. Examples include
* On-Demand Instances and Standard Reserved Instances.
*
*
* -
*
* SERVICE - The Amazon Web Services service such as Amazon DynamoDB.
*
*
* -
*
* USAGE_TYPE - The type of usage. An example is DataTransfer-In-Bytes. The response for the
* GetDimensionValues
operation includes a unit attribute. Examples include GB and Hrs.
*
*
* -
*
* USAGE_TYPE_GROUP - The grouping of common usage types. An example is Amazon EC2: CloudWatch – Alarms. The
* response for this operation includes a unit attribute.
*
*
* -
*
* RECORD_TYPE - The different types of charges such as RI fees, usage costs, tax refunds, and credits.
*
*
* -
*
* RESOURCE_ID - The unique identifier of the resource. ResourceId is an opt-in feature only available for
* last 14 days for EC2-Compute Service. You can opt-in by enabling Hourly
and
* Resource Level Data
in Cost Management Console preferences.
*
*
*
*
* If you set the context to RESERVATIONS
, you can use the following dimensions for searching:
*
*
* -
*
* AZ - The Availability Zone. An example is us-east-1a
.
*
*
* -
*
* CACHE_ENGINE - The Amazon ElastiCache operating system. Examples are Windows or Linux.
*
*
* -
*
* DEPLOYMENT_OPTION - The scope of Amazon Relational Database Service deployments. Valid values are
* SingleAZ
and MultiAZ
.
*
*
* -
*
* INSTANCE_TYPE - The type of Amazon EC2 instance. An example is m4.xlarge
.
*
*
* -
*
* LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account.
* The value field contains the Amazon Web Services ID of the member account.
*
*
* -
*
* PLATFORM - The Amazon EC2 operating system. Examples are Windows or Linux.
*
*
* -
*
* REGION - The Amazon Web Services Region.
*
*
* -
*
* SCOPE (Utilization only) - The scope of a Reserved Instance (RI). Values are regional or a single
* Availability Zone.
*
*
* -
*
* TAG (Coverage only) - The tags that are associated with a Reserved Instance (RI).
*
*
* -
*
* TENANCY - The tenancy of a resource. Examples are shared or dedicated.
*
*
*
*
* If you set the context to SAVINGS_PLANS
, you can use the following dimensions for searching:
*
*
* -
*
* SAVINGS_PLANS_TYPE - Type of Savings Plans (EC2 Instance or Compute)
*
*
* -
*
* PAYMENT_OPTION - Payment option for the given Savings Plans (for example, All Upfront)
*
*
* -
*
* REGION - The Amazon Web Services Region.
*
*
* -
*
* INSTANCE_TYPE_FAMILY - The family of instances (For example, m5
)
*
*
* -
*
* LINKED_ACCOUNT - The description in the attribute map that includes the full name of the member account.
* The value field contains the Amazon Web Services ID of the member account.
*
*
* -
*
* SAVINGS_PLAN_ARN - The unique identifier for your Savings Plan
*
*
*/
public final List dimensionValues() {
return dimensionValues;
}
/**
*
* The number of results that Amazon Web Services returned at one time.
*
*
* @return The number of results that Amazon Web Services returned at one time.
*/
public final Integer returnSize() {
return returnSize;
}
/**
*
* The total number of search results.
*
*
* @return The total number of search results.
*/
public final Integer totalSize() {
return totalSize;
}
/**
*
* The token for the next set of retrievable results. Amazon Web Services provides the token when the response from
* a previous call has more results than the maximum page size.
*
*
* @return The token for the next set of retrievable results. Amazon Web Services provides the token when the
* response from a previous call has more results than the maximum page size.
*/
public final String nextPageToken() {
return nextPageToken;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public final int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + super.hashCode();
hashCode = 31 * hashCode + Objects.hashCode(hasDimensionValues() ? dimensionValues() : null);
hashCode = 31 * hashCode + Objects.hashCode(returnSize());
hashCode = 31 * hashCode + Objects.hashCode(totalSize());
hashCode = 31 * hashCode + Objects.hashCode(nextPageToken());
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return super.equals(obj) && equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof GetDimensionValuesResponse)) {
return false;
}
GetDimensionValuesResponse other = (GetDimensionValuesResponse) obj;
return hasDimensionValues() == other.hasDimensionValues() && Objects.equals(dimensionValues(), other.dimensionValues())
&& Objects.equals(returnSize(), other.returnSize()) && Objects.equals(totalSize(), other.totalSize())
&& Objects.equals(nextPageToken(), other.nextPageToken());
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public final String toString() {
return ToString.builder("GetDimensionValuesResponse")
.add("DimensionValues", hasDimensionValues() ? dimensionValues() : null).add("ReturnSize", returnSize())
.add("TotalSize", totalSize()).add("NextPageToken", nextPageToken()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "DimensionValues":
return Optional.ofNullable(clazz.cast(dimensionValues()));
case "ReturnSize":
return Optional.ofNullable(clazz.cast(returnSize()));
case "TotalSize":
return Optional.ofNullable(clazz.cast(totalSize()));
case "NextPageToken":
return Optional.ofNullable(clazz.cast(nextPageToken()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function