All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 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 getter(Function g) { return obj -> g.apply((UpdateMaintenanceWindowTargetRequest) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SsmRequest.Builder, SdkPojo, CopyableBuilder { /** *

* The maintenance window ID with which to modify the target. *

* * @param windowId * The maintenance window ID with which to modify the target. * @return Returns a reference to this object so that method calls can be chained together. */ Builder windowId(String windowId); /** *

* The target ID to modify. *

* * @param windowTargetId * The target ID to modify. * @return Returns a reference to this object so that method calls can be chained together. */ Builder windowTargetId(String windowTargetId); /** *

* The targets to add or replace. *

* * @param targets * The targets to add or replace. * @return Returns a reference to this object so that method calls can be chained together. */ Builder targets(Collection targets); /** *

* The targets to add or replace. *

* * @param targets * The targets to add or replace. * @return Returns a reference to this object so that method calls can be chained together. */ Builder targets(Target... targets); /** *

* The targets to add or replace. *

* This is a convenience that creates an instance of the {@link List.Builder} avoiding the need to * create one manually via {@link List#builder()}. * * When the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its * result is passed to {@link #targets(List)}. * * @param targets * a consumer that will call methods on {@link List.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #targets(List) */ Builder targets(Consumer... targets); /** *

* User-provided value that will be included in any CloudWatch events raised while running tasks for these * targets in this maintenance window. *

* * @param ownerInformation * User-provided value that will be included in any CloudWatch events raised while running tasks for * these targets in this maintenance window. * @return Returns a reference to this object so that method calls can be chained together. */ Builder ownerInformation(String ownerInformation); /** *

* A name for the update. *

* * @param name * A name for the update. * @return Returns a reference to this object so that method calls can be chained together. */ Builder name(String name); /** *

* An optional description for the update. *

* * @param description * An optional description for the update. * @return Returns a reference to this object so that method calls can be chained together. */ Builder description(String 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. *

* * @param replace * 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 Returns a reference to this object so that method calls can be chained together. */ Builder replace(Boolean replace); @Override Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration); @Override Builder overrideConfiguration(Consumer builderConsumer); } static final class BuilderImpl extends SsmRequest.BuilderImpl implements Builder { private String windowId; private String windowTargetId; private List targets = DefaultSdkAutoConstructList.getInstance(); private String ownerInformation; private String name; private String description; private Boolean replace; private BuilderImpl() { } private BuilderImpl(UpdateMaintenanceWindowTargetRequest model) { super(model); windowId(model.windowId); windowTargetId(model.windowTargetId); targets(model.targets); ownerInformation(model.ownerInformation); name(model.name); description(model.description); replace(model.replace); } public final String getWindowId() { return windowId; } @Override public final Builder windowId(String windowId) { this.windowId = windowId; return this; } public final void setWindowId(String windowId) { this.windowId = windowId; } public final String getWindowTargetId() { return windowTargetId; } @Override public final Builder windowTargetId(String windowTargetId) { this.windowTargetId = windowTargetId; return this; } public final void setWindowTargetId(String windowTargetId) { this.windowTargetId = windowTargetId; } public final Collection getTargets() { return targets != null ? targets.stream().map(Target::toBuilder).collect(Collectors.toList()) : null; } @Override public final Builder targets(Collection targets) { this.targets = TargetsCopier.copy(targets); return this; } @Override @SafeVarargs public final Builder targets(Target... targets) { targets(Arrays.asList(targets)); return this; } @Override @SafeVarargs public final Builder targets(Consumer... targets) { targets(Stream.of(targets).map(c -> Target.builder().applyMutation(c).build()).collect(Collectors.toList())); return this; } public final void setTargets(Collection targets) { this.targets = TargetsCopier.copyFromBuilder(targets); } public final String getOwnerInformation() { return ownerInformation; } @Override public final Builder ownerInformation(String ownerInformation) { this.ownerInformation = ownerInformation; return this; } public final void setOwnerInformation(String ownerInformation) { this.ownerInformation = ownerInformation; } public final String getName() { return name; } @Override public final Builder name(String name) { this.name = name; return this; } public final void setName(String name) { this.name = name; } public final String getDescription() { return description; } @Override public final Builder description(String description) { this.description = description; return this; } public final void setDescription(String description) { this.description = description; } public final Boolean getReplace() { return replace; } @Override public final Builder replace(Boolean replace) { this.replace = replace; return this; } public final void setReplace(Boolean replace) { this.replace = replace; } @Override public Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) { super.overrideConfiguration(overrideConfiguration); return this; } @Override public Builder overrideConfiguration(Consumer builderConsumer) { super.overrideConfiguration(builderConsumer); return this; } @Override public UpdateMaintenanceWindowTargetRequest build() { return new UpdateMaintenanceWindowTargetRequest(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy