software.amazon.awssdk.services.qbusiness.model.UpdatePluginRequest Maven / Gradle / Ivy
Show all versions of qbusiness 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.qbusiness.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;
/**
*/
@Generated("software.amazon.awssdk:codegen")
public final class UpdatePluginRequest extends QBusinessRequest implements
ToCopyableBuilder {
private static final SdkField APPLICATION_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("applicationId").getter(getter(UpdatePluginRequest::applicationId))
.setter(setter(Builder::applicationId))
.traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("applicationId").build()).build();
private static final SdkField PLUGIN_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("pluginId").getter(getter(UpdatePluginRequest::pluginId)).setter(setter(Builder::pluginId))
.traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("pluginId").build()).build();
private static final SdkField DISPLAY_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("displayName").getter(getter(UpdatePluginRequest::displayName)).setter(setter(Builder::displayName))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("displayName").build()).build();
private static final SdkField STATE_FIELD = SdkField. builder(MarshallingType.STRING).memberName("state")
.getter(getter(UpdatePluginRequest::stateAsString)).setter(setter(Builder::state))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("state").build()).build();
private static final SdkField SERVER_URL_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("serverUrl").getter(getter(UpdatePluginRequest::serverUrl)).setter(setter(Builder::serverUrl))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("serverUrl").build()).build();
private static final SdkField CUSTOM_PLUGIN_CONFIGURATION_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("customPluginConfiguration")
.getter(getter(UpdatePluginRequest::customPluginConfiguration)).setter(setter(Builder::customPluginConfiguration))
.constructor(CustomPluginConfiguration::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("customPluginConfiguration").build())
.build();
private static final SdkField AUTH_CONFIGURATION_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("authConfiguration")
.getter(getter(UpdatePluginRequest::authConfiguration)).setter(setter(Builder::authConfiguration))
.constructor(PluginAuthConfiguration::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("authConfiguration").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(APPLICATION_ID_FIELD,
PLUGIN_ID_FIELD, DISPLAY_NAME_FIELD, STATE_FIELD, SERVER_URL_FIELD, CUSTOM_PLUGIN_CONFIGURATION_FIELD,
AUTH_CONFIGURATION_FIELD));
private final String applicationId;
private final String pluginId;
private final String displayName;
private final String state;
private final String serverUrl;
private final CustomPluginConfiguration customPluginConfiguration;
private final PluginAuthConfiguration authConfiguration;
private UpdatePluginRequest(BuilderImpl builder) {
super(builder);
this.applicationId = builder.applicationId;
this.pluginId = builder.pluginId;
this.displayName = builder.displayName;
this.state = builder.state;
this.serverUrl = builder.serverUrl;
this.customPluginConfiguration = builder.customPluginConfiguration;
this.authConfiguration = builder.authConfiguration;
}
/**
*
* The identifier of the application the plugin is attached to.
*
*
* @return The identifier of the application the plugin is attached to.
*/
public final String applicationId() {
return applicationId;
}
/**
*
* The identifier of the plugin.
*
*
* @return The identifier of the plugin.
*/
public final String pluginId() {
return pluginId;
}
/**
*
* The name of the plugin.
*
*
* @return The name of the plugin.
*/
public final String displayName() {
return displayName;
}
/**
*
* The status of the plugin.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #state} will return
* {@link PluginState#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #stateAsString}.
*
*
* @return The status of the plugin.
* @see PluginState
*/
public final PluginState state() {
return PluginState.fromValue(state);
}
/**
*
* The status of the plugin.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #state} will return
* {@link PluginState#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #stateAsString}.
*
*
* @return The status of the plugin.
* @see PluginState
*/
public final String stateAsString() {
return state;
}
/**
*
* The source URL used for plugin configuration.
*
*
* @return The source URL used for plugin configuration.
*/
public final String serverUrl() {
return serverUrl;
}
/**
*
* The configuration for a custom plugin.
*
*
* @return The configuration for a custom plugin.
*/
public final CustomPluginConfiguration customPluginConfiguration() {
return customPluginConfiguration;
}
/**
*
* The authentication configuration the plugin is using.
*
*
* @return The authentication configuration the plugin is using.
*/
public final PluginAuthConfiguration authConfiguration() {
return authConfiguration;
}
@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(applicationId());
hashCode = 31 * hashCode + Objects.hashCode(pluginId());
hashCode = 31 * hashCode + Objects.hashCode(displayName());
hashCode = 31 * hashCode + Objects.hashCode(stateAsString());
hashCode = 31 * hashCode + Objects.hashCode(serverUrl());
hashCode = 31 * hashCode + Objects.hashCode(customPluginConfiguration());
hashCode = 31 * hashCode + Objects.hashCode(authConfiguration());
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 UpdatePluginRequest)) {
return false;
}
UpdatePluginRequest other = (UpdatePluginRequest) obj;
return Objects.equals(applicationId(), other.applicationId()) && Objects.equals(pluginId(), other.pluginId())
&& Objects.equals(displayName(), other.displayName()) && Objects.equals(stateAsString(), other.stateAsString())
&& Objects.equals(serverUrl(), other.serverUrl())
&& Objects.equals(customPluginConfiguration(), other.customPluginConfiguration())
&& Objects.equals(authConfiguration(), other.authConfiguration());
}
/**
* 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("UpdatePluginRequest").add("ApplicationId", applicationId()).add("PluginId", pluginId())
.add("DisplayName", displayName()).add("State", stateAsString()).add("ServerUrl", serverUrl())
.add("CustomPluginConfiguration", customPluginConfiguration()).add("AuthConfiguration", authConfiguration())
.build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "applicationId":
return Optional.ofNullable(clazz.cast(applicationId()));
case "pluginId":
return Optional.ofNullable(clazz.cast(pluginId()));
case "displayName":
return Optional.ofNullable(clazz.cast(displayName()));
case "state":
return Optional.ofNullable(clazz.cast(stateAsString()));
case "serverUrl":
return Optional.ofNullable(clazz.cast(serverUrl()));
case "customPluginConfiguration":
return Optional.ofNullable(clazz.cast(customPluginConfiguration()));
case "authConfiguration":
return Optional.ofNullable(clazz.cast(authConfiguration()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function