software.amazon.awssdk.services.transfer.model.UpdateWebAppRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transfer Show documentation
Show all versions of transfer Show documentation
The AWS Java SDK for Transfer module holds the client classes that are used for
communicating with Transfer.
/*
* 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.transfer.model;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
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;
/**
*/
@Generated("software.amazon.awssdk:codegen")
public final class UpdateWebAppRequest extends TransferRequest implements
ToCopyableBuilder {
private static final SdkField WEB_APP_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("WebAppId").getter(getter(UpdateWebAppRequest::webAppId)).setter(setter(Builder::webAppId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("WebAppId").build()).build();
private static final SdkField IDENTITY_PROVIDER_DETAILS_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("IdentityProviderDetails")
.getter(getter(UpdateWebAppRequest::identityProviderDetails)).setter(setter(Builder::identityProviderDetails))
.constructor(UpdateWebAppIdentityProviderDetails::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("IdentityProviderDetails").build())
.build();
private static final SdkField ACCESS_ENDPOINT_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("AccessEndpoint").getter(getter(UpdateWebAppRequest::accessEndpoint))
.setter(setter(Builder::accessEndpoint))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("AccessEndpoint").build()).build();
private static final SdkField WEB_APP_UNITS_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
.memberName("WebAppUnits").getter(getter(UpdateWebAppRequest::webAppUnits)).setter(setter(Builder::webAppUnits))
.constructor(WebAppUnits::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("WebAppUnits").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(WEB_APP_ID_FIELD,
IDENTITY_PROVIDER_DETAILS_FIELD, ACCESS_ENDPOINT_FIELD, WEB_APP_UNITS_FIELD));
private static final Map> SDK_NAME_TO_FIELD = memberNameToFieldInitializer();
private final String webAppId;
private final UpdateWebAppIdentityProviderDetails identityProviderDetails;
private final String accessEndpoint;
private final WebAppUnits webAppUnits;
private UpdateWebAppRequest(BuilderImpl builder) {
super(builder);
this.webAppId = builder.webAppId;
this.identityProviderDetails = builder.identityProviderDetails;
this.accessEndpoint = builder.accessEndpoint;
this.webAppUnits = builder.webAppUnits;
}
/**
*
* Provide the identifier of the web app that you are updating.
*
*
* @return Provide the identifier of the web app that you are updating.
*/
public final String webAppId() {
return webAppId;
}
/**
*
* Provide updated identity provider values in a WebAppIdentityProviderDetails
object.
*
*
* @return Provide updated identity provider values in a WebAppIdentityProviderDetails
object.
*/
public final UpdateWebAppIdentityProviderDetails identityProviderDetails() {
return identityProviderDetails;
}
/**
*
* The AccessEndpoint
is the URL that you provide to your users for them to interact with the Transfer
* Family web app. You can specify a custom URL or use the default value.
*
*
* @return The AccessEndpoint
is the URL that you provide to your users for them to interact with the
* Transfer Family web app. You can specify a custom URL or use the default value.
*/
public final String accessEndpoint() {
return accessEndpoint;
}
/**
*
* A union that contains the value for number of concurrent connections or the user sessions on your web app.
*
*
* @return A union that contains the value for number of concurrent connections or the user sessions on your web
* app.
*/
public final WebAppUnits webAppUnits() {
return webAppUnits;
}
@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(webAppId());
hashCode = 31 * hashCode + Objects.hashCode(identityProviderDetails());
hashCode = 31 * hashCode + Objects.hashCode(accessEndpoint());
hashCode = 31 * hashCode + Objects.hashCode(webAppUnits());
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 UpdateWebAppRequest)) {
return false;
}
UpdateWebAppRequest other = (UpdateWebAppRequest) obj;
return Objects.equals(webAppId(), other.webAppId())
&& Objects.equals(identityProviderDetails(), other.identityProviderDetails())
&& Objects.equals(accessEndpoint(), other.accessEndpoint()) && Objects.equals(webAppUnits(), other.webAppUnits());
}
/**
* 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("UpdateWebAppRequest").add("WebAppId", webAppId())
.add("IdentityProviderDetails", identityProviderDetails()).add("AccessEndpoint", accessEndpoint())
.add("WebAppUnits", webAppUnits()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "WebAppId":
return Optional.ofNullable(clazz.cast(webAppId()));
case "IdentityProviderDetails":
return Optional.ofNullable(clazz.cast(identityProviderDetails()));
case "AccessEndpoint":
return Optional.ofNullable(clazz.cast(accessEndpoint()));
case "WebAppUnits":
return Optional.ofNullable(clazz.cast(webAppUnits()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
@Override
public final Map> sdkFieldNameToField() {
return SDK_NAME_TO_FIELD;
}
private static Map> memberNameToFieldInitializer() {
Map> map = new HashMap<>();
map.put("WebAppId", WEB_APP_ID_FIELD);
map.put("IdentityProviderDetails", IDENTITY_PROVIDER_DETAILS_FIELD);
map.put("AccessEndpoint", ACCESS_ENDPOINT_FIELD);
map.put("WebAppUnits", WEB_APP_UNITS_FIELD);
return Collections.unmodifiableMap(map);
}
private static Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy