
software.amazon.awssdk.services.ssm.model.UpdateMaintenanceWindowTargetRequest Maven / Gradle / Ivy
/*
* Copyright 2014-2019 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.ssm.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.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*/
@Generated("software.amazon.awssdk:codegen")
public final class UpdateMaintenanceWindowTargetRequest extends SsmRequest implements
ToCopyableBuilder {
private static final SdkField WINDOW_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(UpdateMaintenanceWindowTargetRequest::windowId)).setter(setter(Builder::windowId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("WindowId").build()).build();
private static final SdkField WINDOW_TARGET_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(UpdateMaintenanceWindowTargetRequest::windowTargetId)).setter(setter(Builder::windowTargetId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("WindowTargetId").build()).build();
private static final SdkField> TARGETS_FIELD = SdkField
.> builder(MarshallingType.LIST)
.getter(getter(UpdateMaintenanceWindowTargetRequest::targets))
.setter(setter(Builder::targets))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Targets").build(),
ListTrait
.builder()
.memberLocationName(null)
.memberFieldInfo(
SdkField. builder(MarshallingType.SDK_POJO)
.constructor(Target::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
.locationName("member").build()).build()).build()).build();
private static final SdkField OWNER_INFORMATION_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(UpdateMaintenanceWindowTargetRequest::ownerInformation)).setter(setter(Builder::ownerInformation))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("OwnerInformation").build()).build();
private static final SdkField NAME_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(UpdateMaintenanceWindowTargetRequest::name)).setter(setter(Builder::name))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Name").build()).build();
private static final SdkField DESCRIPTION_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(UpdateMaintenanceWindowTargetRequest::description)).setter(setter(Builder::description))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Description").build()).build();
private static final SdkField REPLACE_FIELD = SdkField. builder(MarshallingType.BOOLEAN)
.getter(getter(UpdateMaintenanceWindowTargetRequest::replace)).setter(setter(Builder::replace))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Replace").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(WINDOW_ID_FIELD,
WINDOW_TARGET_ID_FIELD, TARGETS_FIELD, OWNER_INFORMATION_FIELD, NAME_FIELD, DESCRIPTION_FIELD, REPLACE_FIELD));
private final String windowId;
private final String windowTargetId;
private final List targets;
private final String ownerInformation;
private final String name;
private final String description;
private final Boolean replace;
private UpdateMaintenanceWindowTargetRequest(BuilderImpl builder) {
super(builder);
this.windowId = builder.windowId;
this.windowTargetId = builder.windowTargetId;
this.targets = builder.targets;
this.ownerInformation = builder.ownerInformation;
this.name = builder.name;
this.description = builder.description;
this.replace = builder.replace;
}
/**
*
* The maintenance window ID with which to modify the target.
*
*
* @return The maintenance window ID with which to modify the target.
*/
public String windowId() {
return windowId;
}
/**
*
* The target ID to modify.
*
*
* @return The target ID to modify.
*/
public String windowTargetId() {
return windowTargetId;
}
/**
*
* The targets to add or replace.
*
*
* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
*
*
* @return The targets to add or replace.
*/
public List targets() {
return targets;
}
/**
*
* User-provided value that will be included in any CloudWatch events raised while running tasks for these targets
* in this maintenance window.
*
*
* @return User-provided value that will be included in any CloudWatch events raised while running tasks for these
* targets in this maintenance window.
*/
public String ownerInformation() {
return ownerInformation;
}
/**
*
* A name for the update.
*
*
* @return A name for the update.
*/
public String name() {
return name;
}
/**
*
* An optional description for the update.
*
*
* @return An optional description for the update.
*/
public String description() {
return description;
}
/**
*
* If True, then all fields that are required by the RegisterTargetWithMaintenanceWindow action are also required
* for this API request. Optional fields that are not specified are set to null.
*
*
* @return If True, then all fields that are required by the RegisterTargetWithMaintenanceWindow action are also
* required for this API request. Optional fields that are not specified are set to null.
*/
public Boolean replace() {
return replace;
}
@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 int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + Objects.hashCode(windowId());
hashCode = 31 * hashCode + Objects.hashCode(windowTargetId());
hashCode = 31 * hashCode + Objects.hashCode(targets());
hashCode = 31 * hashCode + Objects.hashCode(ownerInformation());
hashCode = 31 * hashCode + Objects.hashCode(name());
hashCode = 31 * hashCode + Objects.hashCode(description());
hashCode = 31 * hashCode + Objects.hashCode(replace());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof UpdateMaintenanceWindowTargetRequest)) {
return false;
}
UpdateMaintenanceWindowTargetRequest other = (UpdateMaintenanceWindowTargetRequest) obj;
return Objects.equals(windowId(), other.windowId()) && Objects.equals(windowTargetId(), other.windowTargetId())
&& Objects.equals(targets(), other.targets()) && Objects.equals(ownerInformation(), other.ownerInformation())
&& Objects.equals(name(), other.name()) && Objects.equals(description(), other.description())
&& Objects.equals(replace(), other.replace());
}
/**
* 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 String toString() {
return ToString.builder("UpdateMaintenanceWindowTargetRequest").add("WindowId", windowId())
.add("WindowTargetId", windowTargetId()).add("Targets", targets())
.add("OwnerInformation", ownerInformation() == null ? null : "*** Sensitive Data Redacted ***")
.add("Name", name()).add("Description", description() == null ? null : "*** Sensitive Data Redacted ***")
.add("Replace", replace()).build();
}
public Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "WindowId":
return Optional.ofNullable(clazz.cast(windowId()));
case "WindowTargetId":
return Optional.ofNullable(clazz.cast(windowTargetId()));
case "Targets":
return Optional.ofNullable(clazz.cast(targets()));
case "OwnerInformation":
return Optional.ofNullable(clazz.cast(ownerInformation()));
case "Name":
return Optional.ofNullable(clazz.cast(name()));
case "Description":
return Optional.ofNullable(clazz.cast(description()));
case "Replace":
return Optional.ofNullable(clazz.cast(replace()));
default:
return Optional.empty();
}
}
@Override
public List> sdkFields() {
return SDK_FIELDS;
}
private static Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy