
software.amazon.awssdk.services.mediaconnect.model.PurchaseOfferingRequest Maven / Gradle / Ivy
/*
* 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.mediaconnect.model;
import java.util.Arrays;
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 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.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
* A request to purchase a offering.
*/
@Generated("software.amazon.awssdk:codegen")
public final class PurchaseOfferingRequest extends MediaConnectRequest implements
ToCopyableBuilder {
private static final SdkField OFFERING_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("OfferingArn").getter(getter(PurchaseOfferingRequest::offeringArn)).setter(setter(Builder::offeringArn))
.traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("offeringArn").build()).build();
private static final SdkField RESERVATION_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("ReservationName").getter(getter(PurchaseOfferingRequest::reservationName))
.setter(setter(Builder::reservationName))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("reservationName").build()).build();
private static final SdkField START_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Start")
.getter(getter(PurchaseOfferingRequest::start)).setter(setter(Builder::start))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("start").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(OFFERING_ARN_FIELD,
RESERVATION_NAME_FIELD, START_FIELD));
private final String offeringArn;
private final String reservationName;
private final String start;
private PurchaseOfferingRequest(BuilderImpl builder) {
super(builder);
this.offeringArn = builder.offeringArn;
this.reservationName = builder.reservationName;
this.start = builder.start;
}
/**
* The Amazon Resource Name (ARN) of the offering.
*
* @return The Amazon Resource Name (ARN) of the offering.
*/
public final String offeringArn() {
return offeringArn;
}
/**
* The name that you want to use for the reservation.
*
* @return The name that you want to use for the reservation.
*/
public final String reservationName() {
return reservationName;
}
/**
* The date and time that you want the reservation to begin, in Coordinated Universal Time (UTC). You can specify
* any date and time between 12:00am on the first day of the current month to the current time on today's date,
* inclusive. Specify the start in a 24-hour notation. Use the following format: YYYY-MM-DDTHH:mm:SSZ, where T and Z
* are literal characters. For example, to specify 11:30pm on March 5, 2020, enter 2020-03-05T23:30:00Z.
*
* @return The date and time that you want the reservation to begin, in Coordinated Universal Time (UTC). You can
* specify any date and time between 12:00am on the first day of the current month to the current time on
* today's date, inclusive. Specify the start in a 24-hour notation. Use the following format:
* YYYY-MM-DDTHH:mm:SSZ, where T and Z are literal characters. For example, to specify 11:30pm on March 5,
* 2020, enter 2020-03-05T23:30:00Z.
*/
public final String start() {
return start;
}
@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(offeringArn());
hashCode = 31 * hashCode + Objects.hashCode(reservationName());
hashCode = 31 * hashCode + Objects.hashCode(start());
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 PurchaseOfferingRequest)) {
return false;
}
PurchaseOfferingRequest other = (PurchaseOfferingRequest) obj;
return Objects.equals(offeringArn(), other.offeringArn()) && Objects.equals(reservationName(), other.reservationName())
&& Objects.equals(start(), other.start());
}
/**
* 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("PurchaseOfferingRequest").add("OfferingArn", offeringArn())
.add("ReservationName", reservationName()).add("Start", start()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "OfferingArn":
return Optional.ofNullable(clazz.cast(offeringArn()));
case "ReservationName":
return Optional.ofNullable(clazz.cast(reservationName()));
case "Start":
return Optional.ofNullable(clazz.cast(start()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy