software.amazon.awssdk.services.snowball.model.OnDeviceServiceConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snowball Show documentation
Show all versions of snowball Show documentation
The AWS Java SDK for Amazon Snowball module holds the client classes that are used for communicating
with Amazon Snowball.
/*
* 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.snowball.model;
import java.io.Serializable;
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.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;
/**
*
* An object that represents the metadata and configuration settings for services on an Amazon Web Services Snow Family
* device.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class OnDeviceServiceConfiguration implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField NFS_ON_DEVICE_SERVICE_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("NFSOnDeviceService")
.getter(getter(OnDeviceServiceConfiguration::nfsOnDeviceService)).setter(setter(Builder::nfsOnDeviceService))
.constructor(NFSOnDeviceServiceConfiguration::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("NFSOnDeviceService").build())
.build();
private static final SdkField TGW_ON_DEVICE_SERVICE_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("TGWOnDeviceService")
.getter(getter(OnDeviceServiceConfiguration::tgwOnDeviceService)).setter(setter(Builder::tgwOnDeviceService))
.constructor(TGWOnDeviceServiceConfiguration::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TGWOnDeviceService").build())
.build();
private static final SdkField EKS_ON_DEVICE_SERVICE_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("EKSOnDeviceService")
.getter(getter(OnDeviceServiceConfiguration::eksOnDeviceService)).setter(setter(Builder::eksOnDeviceService))
.constructor(EKSOnDeviceServiceConfiguration::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EKSOnDeviceService").build())
.build();
private static final SdkField S3_ON_DEVICE_SERVICE_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("S3OnDeviceService")
.getter(getter(OnDeviceServiceConfiguration::s3OnDeviceService)).setter(setter(Builder::s3OnDeviceService))
.constructor(S3OnDeviceServiceConfiguration::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("S3OnDeviceService").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(NFS_ON_DEVICE_SERVICE_FIELD,
TGW_ON_DEVICE_SERVICE_FIELD, EKS_ON_DEVICE_SERVICE_FIELD, S3_ON_DEVICE_SERVICE_FIELD));
private static final long serialVersionUID = 1L;
private final NFSOnDeviceServiceConfiguration nfsOnDeviceService;
private final TGWOnDeviceServiceConfiguration tgwOnDeviceService;
private final EKSOnDeviceServiceConfiguration eksOnDeviceService;
private final S3OnDeviceServiceConfiguration s3OnDeviceService;
private OnDeviceServiceConfiguration(BuilderImpl builder) {
this.nfsOnDeviceService = builder.nfsOnDeviceService;
this.tgwOnDeviceService = builder.tgwOnDeviceService;
this.eksOnDeviceService = builder.eksOnDeviceService;
this.s3OnDeviceService = builder.s3OnDeviceService;
}
/**
*
* Represents the NFS (Network File System) service on a Snow Family device.
*
*
* @return Represents the NFS (Network File System) service on a Snow Family device.
*/
public final NFSOnDeviceServiceConfiguration nfsOnDeviceService() {
return nfsOnDeviceService;
}
/**
*
* Represents the Storage Gateway service Tape Gateway type on a Snow Family device.
*
*
* @return Represents the Storage Gateway service Tape Gateway type on a Snow Family device.
*/
public final TGWOnDeviceServiceConfiguration tgwOnDeviceService() {
return tgwOnDeviceService;
}
/**
*
* The configuration of EKS Anywhere on the Snow Family device.
*
*
* @return The configuration of EKS Anywhere on the Snow Family device.
*/
public final EKSOnDeviceServiceConfiguration eksOnDeviceService() {
return eksOnDeviceService;
}
/**
*
* Configuration for Amazon S3 compatible storage on Snow family devices.
*
*
* @return Configuration for Amazon S3 compatible storage on Snow family devices.
*/
public final S3OnDeviceServiceConfiguration s3OnDeviceService() {
return s3OnDeviceService;
}
@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 + Objects.hashCode(nfsOnDeviceService());
hashCode = 31 * hashCode + Objects.hashCode(tgwOnDeviceService());
hashCode = 31 * hashCode + Objects.hashCode(eksOnDeviceService());
hashCode = 31 * hashCode + Objects.hashCode(s3OnDeviceService());
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof OnDeviceServiceConfiguration)) {
return false;
}
OnDeviceServiceConfiguration other = (OnDeviceServiceConfiguration) obj;
return Objects.equals(nfsOnDeviceService(), other.nfsOnDeviceService())
&& Objects.equals(tgwOnDeviceService(), other.tgwOnDeviceService())
&& Objects.equals(eksOnDeviceService(), other.eksOnDeviceService())
&& Objects.equals(s3OnDeviceService(), other.s3OnDeviceService());
}
/**
* 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("OnDeviceServiceConfiguration").add("NFSOnDeviceService", nfsOnDeviceService())
.add("TGWOnDeviceService", tgwOnDeviceService()).add("EKSOnDeviceService", eksOnDeviceService())
.add("S3OnDeviceService", s3OnDeviceService()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "NFSOnDeviceService":
return Optional.ofNullable(clazz.cast(nfsOnDeviceService()));
case "TGWOnDeviceService":
return Optional.ofNullable(clazz.cast(tgwOnDeviceService()));
case "EKSOnDeviceService":
return Optional.ofNullable(clazz.cast(eksOnDeviceService()));
case "S3OnDeviceService":
return Optional.ofNullable(clazz.cast(s3OnDeviceService()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function