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

software.amazon.awssdk.services.costexplorer.model.GetReservationUtilizationRequest Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.28.4
Show newest version
/*
 * 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.awscore.AwsRequestOverrideConfiguration;
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 GetReservationUtilizationRequest extends CostExplorerRequest implements
        ToCopyableBuilder {
    private static final SdkField TIME_PERIOD_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
            .memberName("TimePeriod").getter(getter(GetReservationUtilizationRequest::timePeriod))
            .setter(setter(Builder::timePeriod)).constructor(DateInterval::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TimePeriod").build()).build();

    private static final SdkField> GROUP_BY_FIELD = SdkField
            .> builder(MarshallingType.LIST)
            .memberName("GroupBy")
            .getter(getter(GetReservationUtilizationRequest::groupBy))
            .setter(setter(Builder::groupBy))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("GroupBy").build(),
                    ListTrait
                            .builder()
                            .memberLocationName(null)
                            .memberFieldInfo(
                                    SdkField. builder(MarshallingType.SDK_POJO)
                                            .constructor(GroupDefinition::builder)
                                            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
                                                    .locationName("member").build()).build()).build()).build();

    private static final SdkField GRANULARITY_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("Granularity").getter(getter(GetReservationUtilizationRequest::granularityAsString))
            .setter(setter(Builder::granularity))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Granularity").build()).build();

    private static final SdkField FILTER_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
            .memberName("Filter").getter(getter(GetReservationUtilizationRequest::filter)).setter(setter(Builder::filter))
            .constructor(Expression::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Filter").build()).build();

    private static final SdkField SORT_BY_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
            .memberName("SortBy").getter(getter(GetReservationUtilizationRequest::sortBy)).setter(setter(Builder::sortBy))
            .constructor(SortDefinition::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("SortBy").build()).build();

    private static final SdkField NEXT_PAGE_TOKEN_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("NextPageToken").getter(getter(GetReservationUtilizationRequest::nextPageToken))
            .setter(setter(Builder::nextPageToken))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("NextPageToken").build()).build();

    private static final SdkField MAX_RESULTS_FIELD = SdkField. builder(MarshallingType.INTEGER)
            .memberName("MaxResults").getter(getter(GetReservationUtilizationRequest::maxResults))
            .setter(setter(Builder::maxResults))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MaxResults").build()).build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(TIME_PERIOD_FIELD,
            GROUP_BY_FIELD, GRANULARITY_FIELD, FILTER_FIELD, SORT_BY_FIELD, NEXT_PAGE_TOKEN_FIELD, MAX_RESULTS_FIELD));

    private final DateInterval timePeriod;

    private final List groupBy;

    private final String granularity;

    private final Expression filter;

    private final SortDefinition sortBy;

    private final String nextPageToken;

    private final Integer maxResults;

    private GetReservationUtilizationRequest(BuilderImpl builder) {
        super(builder);
        this.timePeriod = builder.timePeriod;
        this.groupBy = builder.groupBy;
        this.granularity = builder.granularity;
        this.filter = builder.filter;
        this.sortBy = builder.sortBy;
        this.nextPageToken = builder.nextPageToken;
        this.maxResults = builder.maxResults;
    }

    /**
     * 

* Sets the start and end dates for retrieving Reserved Instance (RI) utilization. The start date is inclusive, but * the end date is exclusive. For example, if start is 2017-01-01 and end is * 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and * including 2017-04-30 but not including 2017-05-01. *

* * @return Sets the start and end dates for retrieving Reserved Instance (RI) utilization. The start date is * inclusive, but the end date is exclusive. For example, if start is 2017-01-01 * and end is 2017-05-01, then the cost and usage data is retrieved from * 2017-01-01 up to and including 2017-04-30 but not including * 2017-05-01. */ public final DateInterval timePeriod() { return timePeriod; } /** * For responses, this returns true if the service returned a value for the GroupBy 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 hasGroupBy() { return groupBy != null && !(groupBy instanceof SdkAutoConstructList); } /** *

* Groups only by SUBSCRIPTION_ID. Metadata is included. *

*

* 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 #hasGroupBy} method. *

* * @return Groups only by SUBSCRIPTION_ID. Metadata is included. */ public final List groupBy() { return groupBy; } /** *

* If GroupBy is set, Granularity can't be set. If Granularity isn't set, the * response object doesn't include Granularity, either MONTHLY or DAILY. If * both GroupBy and Granularity aren't set, GetReservationUtilization * defaults to DAILY. *

*

* The GetReservationUtilization operation supports only DAILY and MONTHLY * granularities. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #granularity} will * return {@link Granularity#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #granularityAsString}. *

* * @return If GroupBy is set, Granularity can't be set. If Granularity isn't * set, the response object doesn't include Granularity, either MONTHLY or * DAILY. If both GroupBy and Granularity aren't set, * GetReservationUtilization defaults to DAILY.

*

* The GetReservationUtilization operation supports only DAILY and * MONTHLY granularities. * @see Granularity */ public final Granularity granularity() { return Granularity.fromValue(granularity); } /** *

* If GroupBy is set, Granularity can't be set. If Granularity isn't set, the * response object doesn't include Granularity, either MONTHLY or DAILY. If * both GroupBy and Granularity aren't set, GetReservationUtilization * defaults to DAILY. *

*

* The GetReservationUtilization operation supports only DAILY and MONTHLY * granularities. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #granularity} will * return {@link Granularity#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #granularityAsString}. *

* * @return If GroupBy is set, Granularity can't be set. If Granularity isn't * set, the response object doesn't include Granularity, either MONTHLY or * DAILY. If both GroupBy and Granularity aren't set, * GetReservationUtilization defaults to DAILY.

*

* The GetReservationUtilization operation supports only DAILY and * MONTHLY granularities. * @see Granularity */ public final String granularityAsString() { return granularity; } /** *

* Filters utilization data by dimensions. You can filter by the following dimensions: *

*
    *
  • *

    * AZ *

    *
  • *
  • *

    * CACHE_ENGINE *

    *
  • *
  • *

    * DEPLOYMENT_OPTION *

    *
  • *
  • *

    * INSTANCE_TYPE *

    *
  • *
  • *

    * LINKED_ACCOUNT *

    *
  • *
  • *

    * OPERATING_SYSTEM *

    *
  • *
  • *

    * PLATFORM *

    *
  • *
  • *

    * REGION *

    *
  • *
  • *

    * SERVICE *

    *
  • *
  • *

    * SCOPE *

    *
  • *
  • *

    * TENANCY *

    *
  • *
*

* GetReservationUtilization uses the same Expression * object as the other operations, but only AND is supported among each dimension, and nesting is * supported up to only one level deep. If there are multiple values for a dimension, they are OR'd together. *

* * @return Filters utilization data by dimensions. You can filter by the following dimensions:

*
    *
  • *

    * AZ *

    *
  • *
  • *

    * CACHE_ENGINE *

    *
  • *
  • *

    * DEPLOYMENT_OPTION *

    *
  • *
  • *

    * INSTANCE_TYPE *

    *
  • *
  • *

    * LINKED_ACCOUNT *

    *
  • *
  • *

    * OPERATING_SYSTEM *

    *
  • *
  • *

    * PLATFORM *

    *
  • *
  • *

    * REGION *

    *
  • *
  • *

    * SERVICE *

    *
  • *
  • *

    * SCOPE *

    *
  • *
  • *

    * TENANCY *

    *
  • *
*

* GetReservationUtilization uses the same Expression object as the other operations, but only AND is supported among each * dimension, and nesting is supported up to only one level deep. If there are multiple values for a * dimension, they are OR'd together. */ public final Expression filter() { return filter; } /** *

* The value that you want to sort the data by. *

*

* The following values are supported for Key: *

*
    *
  • *

    * UtilizationPercentage *

    *
  • *
  • *

    * UtilizationPercentageInUnits *

    *
  • *
  • *

    * PurchasedHours *

    *
  • *
  • *

    * PurchasedUnits *

    *
  • *
  • *

    * TotalActualHours *

    *
  • *
  • *

    * TotalActualUnits *

    *
  • *
  • *

    * UnusedHours *

    *
  • *
  • *

    * UnusedUnits *

    *
  • *
  • *

    * OnDemandCostOfRIHoursUsed *

    *
  • *
  • *

    * NetRISavings *

    *
  • *
  • *

    * TotalPotentialRISavings *

    *
  • *
  • *

    * AmortizedUpfrontFee *

    *
  • *
  • *

    * AmortizedRecurringFee *

    *
  • *
  • *

    * TotalAmortizedFee *

    *
  • *
  • *

    * RICostForUnusedHours *

    *
  • *
  • *

    * RealizedSavings *

    *
  • *
  • *

    * UnrealizedSavings *

    *
  • *
*

* The supported values for SortOrder are ASCENDING and DESCENDING. *

* * @return The value that you want to sort the data by.

*

* The following values are supported for Key: *

*
    *
  • *

    * UtilizationPercentage *

    *
  • *
  • *

    * UtilizationPercentageInUnits *

    *
  • *
  • *

    * PurchasedHours *

    *
  • *
  • *

    * PurchasedUnits *

    *
  • *
  • *

    * TotalActualHours *

    *
  • *
  • *

    * TotalActualUnits *

    *
  • *
  • *

    * UnusedHours *

    *
  • *
  • *

    * UnusedUnits *

    *
  • *
  • *

    * OnDemandCostOfRIHoursUsed *

    *
  • *
  • *

    * NetRISavings *

    *
  • *
  • *

    * TotalPotentialRISavings *

    *
  • *
  • *

    * AmortizedUpfrontFee *

    *
  • *
  • *

    * AmortizedRecurringFee *

    *
  • *
  • *

    * TotalAmortizedFee *

    *
  • *
  • *

    * RICostForUnusedHours *

    *
  • *
  • *

    * RealizedSavings *

    *
  • *
  • *

    * UnrealizedSavings *

    *
  • *
*

* The supported values for SortOrder are ASCENDING and DESCENDING. */ public final SortDefinition sortBy() { return sortBy; } /** *

* The token to retrieve the next set of 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 to retrieve the next set of 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; } /** *

* The maximum number of objects that you returned for this request. If more objects are available, in the response, * Amazon Web Services provides a NextPageToken value that you can use in a subsequent call to get the next batch of * objects. *

* * @return The maximum number of objects that you returned for this request. If more objects are available, in the * response, Amazon Web Services provides a NextPageToken value that you can use in a subsequent call to get * the next batch of objects. */ public final Integer maxResults() { return maxResults; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + super.hashCode(); hashCode = 31 * hashCode + Objects.hashCode(timePeriod()); hashCode = 31 * hashCode + Objects.hashCode(hasGroupBy() ? groupBy() : null); hashCode = 31 * hashCode + Objects.hashCode(granularityAsString()); hashCode = 31 * hashCode + Objects.hashCode(filter()); hashCode = 31 * hashCode + Objects.hashCode(sortBy()); hashCode = 31 * hashCode + Objects.hashCode(nextPageToken()); hashCode = 31 * hashCode + Objects.hashCode(maxResults()); 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 GetReservationUtilizationRequest)) { return false; } GetReservationUtilizationRequest other = (GetReservationUtilizationRequest) obj; return Objects.equals(timePeriod(), other.timePeriod()) && hasGroupBy() == other.hasGroupBy() && Objects.equals(groupBy(), other.groupBy()) && Objects.equals(granularityAsString(), other.granularityAsString()) && Objects.equals(filter(), other.filter()) && Objects.equals(sortBy(), other.sortBy()) && Objects.equals(nextPageToken(), other.nextPageToken()) && Objects.equals(maxResults(), other.maxResults()); } /** * 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("GetReservationUtilizationRequest").add("TimePeriod", timePeriod()) .add("GroupBy", hasGroupBy() ? groupBy() : null).add("Granularity", granularityAsString()) .add("Filter", filter()).add("SortBy", sortBy()).add("NextPageToken", nextPageToken()) .add("MaxResults", maxResults()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "TimePeriod": return Optional.ofNullable(clazz.cast(timePeriod())); case "GroupBy": return Optional.ofNullable(clazz.cast(groupBy())); case "Granularity": return Optional.ofNullable(clazz.cast(granularityAsString())); case "Filter": return Optional.ofNullable(clazz.cast(filter())); case "SortBy": return Optional.ofNullable(clazz.cast(sortBy())); case "NextPageToken": return Optional.ofNullable(clazz.cast(nextPageToken())); case "MaxResults": return Optional.ofNullable(clazz.cast(maxResults())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((GetReservationUtilizationRequest) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends CostExplorerRequest.Builder, SdkPojo, CopyableBuilder { /** *

* Sets the start and end dates for retrieving Reserved Instance (RI) utilization. The start date is inclusive, * but the end date is exclusive. For example, if start is 2017-01-01 and * end is 2017-05-01, then the cost and usage data is retrieved from * 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01 * . *

* * @param timePeriod * Sets the start and end dates for retrieving Reserved Instance (RI) utilization. The start date is * inclusive, but the end date is exclusive. For example, if start is * 2017-01-01 and end is 2017-05-01, then the cost and usage data * is retrieved from 2017-01-01 up to and including 2017-04-30 but not * including 2017-05-01. * @return Returns a reference to this object so that method calls can be chained together. */ Builder timePeriod(DateInterval timePeriod); /** *

* Sets the start and end dates for retrieving Reserved Instance (RI) utilization. The start date is inclusive, * but the end date is exclusive. For example, if start is 2017-01-01 and * end is 2017-05-01, then the cost and usage data is retrieved from * 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01 * . *

* This is a convenience method that creates an instance of the {@link DateInterval.Builder} avoiding the need * to create one manually via {@link DateInterval#builder()}. * *

* When the {@link Consumer} completes, {@link DateInterval.Builder#build()} is called immediately and its * result is passed to {@link #timePeriod(DateInterval)}. * * @param timePeriod * a consumer that will call methods on {@link DateInterval.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #timePeriod(DateInterval) */ default Builder timePeriod(Consumer timePeriod) { return timePeriod(DateInterval.builder().applyMutation(timePeriod).build()); } /** *

* Groups only by SUBSCRIPTION_ID. Metadata is included. *

* * @param groupBy * Groups only by SUBSCRIPTION_ID. Metadata is included. * @return Returns a reference to this object so that method calls can be chained together. */ Builder groupBy(Collection groupBy); /** *

* Groups only by SUBSCRIPTION_ID. Metadata is included. *

* * @param groupBy * Groups only by SUBSCRIPTION_ID. Metadata is included. * @return Returns a reference to this object so that method calls can be chained together. */ Builder groupBy(GroupDefinition... groupBy); /** *

* Groups only by SUBSCRIPTION_ID. Metadata is included. *

* This is a convenience method that creates an instance of the * {@link software.amazon.awssdk.services.costexplorer.model.GroupDefinition.Builder} avoiding the need to * create one manually via {@link software.amazon.awssdk.services.costexplorer.model.GroupDefinition#builder()}. * *

* When the {@link Consumer} completes, * {@link software.amazon.awssdk.services.costexplorer.model.GroupDefinition.Builder#build()} is called * immediately and its result is passed to {@link #groupBy(List)}. * * @param groupBy * a consumer that will call methods on * {@link software.amazon.awssdk.services.costexplorer.model.GroupDefinition.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #groupBy(java.util.Collection) */ Builder groupBy(Consumer... groupBy); /** *

* If GroupBy is set, Granularity can't be set. If Granularity isn't set, * the response object doesn't include Granularity, either MONTHLY or * DAILY. If both GroupBy and Granularity aren't set, * GetReservationUtilization defaults to DAILY. *

*

* The GetReservationUtilization operation supports only DAILY and * MONTHLY granularities. *

* * @param granularity * If GroupBy is set, Granularity can't be set. If Granularity * isn't set, the response object doesn't include Granularity, either MONTHLY * or DAILY. If both GroupBy and Granularity aren't set, * GetReservationUtilization defaults to DAILY.

*

* The GetReservationUtilization operation supports only DAILY and * MONTHLY granularities. * @see Granularity * @return Returns a reference to this object so that method calls can be chained together. * @see Granularity */ Builder granularity(String granularity); /** *

* If GroupBy is set, Granularity can't be set. If Granularity isn't set, * the response object doesn't include Granularity, either MONTHLY or * DAILY. If both GroupBy and Granularity aren't set, * GetReservationUtilization defaults to DAILY. *

*

* The GetReservationUtilization operation supports only DAILY and * MONTHLY granularities. *

* * @param granularity * If GroupBy is set, Granularity can't be set. If Granularity * isn't set, the response object doesn't include Granularity, either MONTHLY * or DAILY. If both GroupBy and Granularity aren't set, * GetReservationUtilization defaults to DAILY.

*

* The GetReservationUtilization operation supports only DAILY and * MONTHLY granularities. * @see Granularity * @return Returns a reference to this object so that method calls can be chained together. * @see Granularity */ Builder granularity(Granularity granularity); /** *

* Filters utilization data by dimensions. You can filter by the following dimensions: *

*
    *
  • *

    * AZ *

    *
  • *
  • *

    * CACHE_ENGINE *

    *
  • *
  • *

    * DEPLOYMENT_OPTION *

    *
  • *
  • *

    * INSTANCE_TYPE *

    *
  • *
  • *

    * LINKED_ACCOUNT *

    *
  • *
  • *

    * OPERATING_SYSTEM *

    *
  • *
  • *

    * PLATFORM *

    *
  • *
  • *

    * REGION *

    *
  • *
  • *

    * SERVICE *

    *
  • *
  • *

    * SCOPE *

    *
  • *
  • *

    * TENANCY *

    *
  • *
*

* GetReservationUtilization uses the same Expression * object as the other operations, but only AND is supported among each dimension, and nesting is * supported up to only one level deep. If there are multiple values for a dimension, they are OR'd together. *

* * @param filter * Filters utilization data by dimensions. You can filter by the following dimensions:

*
    *
  • *

    * AZ *

    *
  • *
  • *

    * CACHE_ENGINE *

    *
  • *
  • *

    * DEPLOYMENT_OPTION *

    *
  • *
  • *

    * INSTANCE_TYPE *

    *
  • *
  • *

    * LINKED_ACCOUNT *

    *
  • *
  • *

    * OPERATING_SYSTEM *

    *
  • *
  • *

    * PLATFORM *

    *
  • *
  • *

    * REGION *

    *
  • *
  • *

    * SERVICE *

    *
  • *
  • *

    * SCOPE *

    *
  • *
  • *

    * TENANCY *

    *
  • *
*

* GetReservationUtilization uses the same Expression object as the other operations, but only AND is supported among each * dimension, and nesting is supported up to only one level deep. If there are multiple values for a * dimension, they are OR'd together. * @return Returns a reference to this object so that method calls can be chained together. */ Builder filter(Expression filter); /** *

* Filters utilization data by dimensions. You can filter by the following dimensions: *

*
    *
  • *

    * AZ *

    *
  • *
  • *

    * CACHE_ENGINE *

    *
  • *
  • *

    * DEPLOYMENT_OPTION *

    *
  • *
  • *

    * INSTANCE_TYPE *

    *
  • *
  • *

    * LINKED_ACCOUNT *

    *
  • *
  • *

    * OPERATING_SYSTEM *

    *
  • *
  • *

    * PLATFORM *

    *
  • *
  • *

    * REGION *

    *
  • *
  • *

    * SERVICE *

    *
  • *
  • *

    * SCOPE *

    *
  • *
  • *

    * TENANCY *

    *
  • *
*

* GetReservationUtilization uses the same Expression * object as the other operations, but only AND is supported among each dimension, and nesting is * supported up to only one level deep. If there are multiple values for a dimension, they are OR'd together. *

* This is a convenience method that creates an instance of the {@link Expression.Builder} avoiding the need to * create one manually via {@link Expression#builder()}. * *

* When the {@link Consumer} completes, {@link Expression.Builder#build()} is called immediately and its result * is passed to {@link #filter(Expression)}. * * @param filter * a consumer that will call methods on {@link Expression.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #filter(Expression) */ default Builder filter(Consumer filter) { return filter(Expression.builder().applyMutation(filter).build()); } /** *

* The value that you want to sort the data by. *

*

* The following values are supported for Key: *

*
    *
  • *

    * UtilizationPercentage *

    *
  • *
  • *

    * UtilizationPercentageInUnits *

    *
  • *
  • *

    * PurchasedHours *

    *
  • *
  • *

    * PurchasedUnits *

    *
  • *
  • *

    * TotalActualHours *

    *
  • *
  • *

    * TotalActualUnits *

    *
  • *
  • *

    * UnusedHours *

    *
  • *
  • *

    * UnusedUnits *

    *
  • *
  • *

    * OnDemandCostOfRIHoursUsed *

    *
  • *
  • *

    * NetRISavings *

    *
  • *
  • *

    * TotalPotentialRISavings *

    *
  • *
  • *

    * AmortizedUpfrontFee *

    *
  • *
  • *

    * AmortizedRecurringFee *

    *
  • *
  • *

    * TotalAmortizedFee *

    *
  • *
  • *

    * RICostForUnusedHours *

    *
  • *
  • *

    * RealizedSavings *

    *
  • *
  • *

    * UnrealizedSavings *

    *
  • *
*

* The supported values for SortOrder are ASCENDING and DESCENDING. *

* * @param sortBy * The value that you want to sort the data by.

*

* The following values are supported for Key: *

*
    *
  • *

    * UtilizationPercentage *

    *
  • *
  • *

    * UtilizationPercentageInUnits *

    *
  • *
  • *

    * PurchasedHours *

    *
  • *
  • *

    * PurchasedUnits *

    *
  • *
  • *

    * TotalActualHours *

    *
  • *
  • *

    * TotalActualUnits *

    *
  • *
  • *

    * UnusedHours *

    *
  • *
  • *

    * UnusedUnits *

    *
  • *
  • *

    * OnDemandCostOfRIHoursUsed *

    *
  • *
  • *

    * NetRISavings *

    *
  • *
  • *

    * TotalPotentialRISavings *

    *
  • *
  • *

    * AmortizedUpfrontFee *

    *
  • *
  • *

    * AmortizedRecurringFee *

    *
  • *
  • *

    * TotalAmortizedFee *

    *
  • *
  • *

    * RICostForUnusedHours *

    *
  • *
  • *

    * RealizedSavings *

    *
  • *
  • *

    * UnrealizedSavings *

    *
  • *
*

* The supported values for SortOrder are ASCENDING and DESCENDING. * @return Returns a reference to this object so that method calls can be chained together. */ Builder sortBy(SortDefinition sortBy); /** *

* The value that you want to sort the data by. *

*

* The following values are supported for Key: *

*
    *
  • *

    * UtilizationPercentage *

    *
  • *
  • *

    * UtilizationPercentageInUnits *

    *
  • *
  • *

    * PurchasedHours *

    *
  • *
  • *

    * PurchasedUnits *

    *
  • *
  • *

    * TotalActualHours *

    *
  • *
  • *

    * TotalActualUnits *

    *
  • *
  • *

    * UnusedHours *

    *
  • *
  • *

    * UnusedUnits *

    *
  • *
  • *

    * OnDemandCostOfRIHoursUsed *

    *
  • *
  • *

    * NetRISavings *

    *
  • *
  • *

    * TotalPotentialRISavings *

    *
  • *
  • *

    * AmortizedUpfrontFee *

    *
  • *
  • *

    * AmortizedRecurringFee *

    *
  • *
  • *

    * TotalAmortizedFee *

    *
  • *
  • *

    * RICostForUnusedHours *

    *
  • *
  • *

    * RealizedSavings *

    *
  • *
  • *

    * UnrealizedSavings *

    *
  • *
*

* The supported values for SortOrder are ASCENDING and DESCENDING. *

* This is a convenience method that creates an instance of the {@link SortDefinition.Builder} avoiding the need * to create one manually via {@link SortDefinition#builder()}. * *

* When the {@link Consumer} completes, {@link SortDefinition.Builder#build()} is called immediately and its * result is passed to {@link #sortBy(SortDefinition)}. * * @param sortBy * a consumer that will call methods on {@link SortDefinition.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #sortBy(SortDefinition) */ default Builder sortBy(Consumer sortBy) { return sortBy(SortDefinition.builder().applyMutation(sortBy).build()); } /** *

* The token to retrieve the next set of results. Amazon Web Services provides the token when the response from * a previous call has more results than the maximum page size. *

* * @param nextPageToken * The token to retrieve the next set of results. Amazon Web Services provides the token when the * response from a previous call has more results than the maximum page size. * @return Returns a reference to this object so that method calls can be chained together. */ Builder nextPageToken(String nextPageToken); /** *

* The maximum number of objects that you returned for this request. If more objects are available, in the * response, Amazon Web Services provides a NextPageToken value that you can use in a subsequent call to get the * next batch of objects. *

* * @param maxResults * The maximum number of objects that you returned for this request. If more objects are available, in * the response, Amazon Web Services provides a NextPageToken value that you can use in a subsequent call * to get the next batch of objects. * @return Returns a reference to this object so that method calls can be chained together. */ Builder maxResults(Integer maxResults); @Override Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration); @Override Builder overrideConfiguration(Consumer builderConsumer); } static final class BuilderImpl extends CostExplorerRequest.BuilderImpl implements Builder { private DateInterval timePeriod; private List groupBy = DefaultSdkAutoConstructList.getInstance(); private String granularity; private Expression filter; private SortDefinition sortBy; private String nextPageToken; private Integer maxResults; private BuilderImpl() { } private BuilderImpl(GetReservationUtilizationRequest model) { super(model); timePeriod(model.timePeriod); groupBy(model.groupBy); granularity(model.granularity); filter(model.filter); sortBy(model.sortBy); nextPageToken(model.nextPageToken); maxResults(model.maxResults); } public final DateInterval.Builder getTimePeriod() { return timePeriod != null ? timePeriod.toBuilder() : null; } public final void setTimePeriod(DateInterval.BuilderImpl timePeriod) { this.timePeriod = timePeriod != null ? timePeriod.build() : null; } @Override public final Builder timePeriod(DateInterval timePeriod) { this.timePeriod = timePeriod; return this; } public final List getGroupBy() { List result = GroupDefinitionsCopier.copyToBuilder(this.groupBy); if (result instanceof SdkAutoConstructList) { return null; } return result; } public final void setGroupBy(Collection groupBy) { this.groupBy = GroupDefinitionsCopier.copyFromBuilder(groupBy); } @Override public final Builder groupBy(Collection groupBy) { this.groupBy = GroupDefinitionsCopier.copy(groupBy); return this; } @Override @SafeVarargs public final Builder groupBy(GroupDefinition... groupBy) { groupBy(Arrays.asList(groupBy)); return this; } @Override @SafeVarargs public final Builder groupBy(Consumer... groupBy) { groupBy(Stream.of(groupBy).map(c -> GroupDefinition.builder().applyMutation(c).build()).collect(Collectors.toList())); return this; } public final String getGranularity() { return granularity; } public final void setGranularity(String granularity) { this.granularity = granularity; } @Override public final Builder granularity(String granularity) { this.granularity = granularity; return this; } @Override public final Builder granularity(Granularity granularity) { this.granularity(granularity == null ? null : granularity.toString()); return this; } public final Expression.Builder getFilter() { return filter != null ? filter.toBuilder() : null; } public final void setFilter(Expression.BuilderImpl filter) { this.filter = filter != null ? filter.build() : null; } @Override public final Builder filter(Expression filter) { this.filter = filter; return this; } public final SortDefinition.Builder getSortBy() { return sortBy != null ? sortBy.toBuilder() : null; } public final void setSortBy(SortDefinition.BuilderImpl sortBy) { this.sortBy = sortBy != null ? sortBy.build() : null; } @Override public final Builder sortBy(SortDefinition sortBy) { this.sortBy = sortBy; return this; } public final String getNextPageToken() { return nextPageToken; } public final void setNextPageToken(String nextPageToken) { this.nextPageToken = nextPageToken; } @Override public final Builder nextPageToken(String nextPageToken) { this.nextPageToken = nextPageToken; return this; } public final Integer getMaxResults() { return maxResults; } public final void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } @Override public final Builder maxResults(Integer maxResults) { this.maxResults = maxResults; return this; } @Override public Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) { super.overrideConfiguration(overrideConfiguration); return this; } @Override public Builder overrideConfiguration(Consumer builderConsumer) { super.overrideConfiguration(builderConsumer); return this; } @Override public GetReservationUtilizationRequest build() { return new GetReservationUtilizationRequest(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy