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

software.amazon.awssdk.services.devicefarm.model.UpdateNetworkProfileRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Device Farm module holds the client classes that are used for communicating with AWS Device Farm

There is a newer version: 2.29.39
Show newest version
/*
 * 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.devicefarm.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 UpdateNetworkProfileRequest extends DeviceFarmRequest implements
        ToCopyableBuilder {
    private static final SdkField ARN_FIELD = SdkField. builder(MarshallingType.STRING).memberName("arn")
            .getter(getter(UpdateNetworkProfileRequest::arn)).setter(setter(Builder::arn))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("arn").build()).build();

    private static final SdkField NAME_FIELD = SdkField. builder(MarshallingType.STRING).memberName("name")
            .getter(getter(UpdateNetworkProfileRequest::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)
            .memberName("description").getter(getter(UpdateNetworkProfileRequest::description))
            .setter(setter(Builder::description))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("description").build()).build();

    private static final SdkField TYPE_FIELD = SdkField. builder(MarshallingType.STRING).memberName("type")
            .getter(getter(UpdateNetworkProfileRequest::typeAsString)).setter(setter(Builder::type))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("type").build()).build();

    private static final SdkField UPLINK_BANDWIDTH_BITS_FIELD = SdkField. builder(MarshallingType.LONG)
            .memberName("uplinkBandwidthBits").getter(getter(UpdateNetworkProfileRequest::uplinkBandwidthBits))
            .setter(setter(Builder::uplinkBandwidthBits))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("uplinkBandwidthBits").build())
            .build();

    private static final SdkField DOWNLINK_BANDWIDTH_BITS_FIELD = SdkField. builder(MarshallingType.LONG)
            .memberName("downlinkBandwidthBits").getter(getter(UpdateNetworkProfileRequest::downlinkBandwidthBits))
            .setter(setter(Builder::downlinkBandwidthBits))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("downlinkBandwidthBits").build())
            .build();

    private static final SdkField UPLINK_DELAY_MS_FIELD = SdkField. builder(MarshallingType.LONG)
            .memberName("uplinkDelayMs").getter(getter(UpdateNetworkProfileRequest::uplinkDelayMs))
            .setter(setter(Builder::uplinkDelayMs))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("uplinkDelayMs").build()).build();

    private static final SdkField DOWNLINK_DELAY_MS_FIELD = SdkField. builder(MarshallingType.LONG)
            .memberName("downlinkDelayMs").getter(getter(UpdateNetworkProfileRequest::downlinkDelayMs))
            .setter(setter(Builder::downlinkDelayMs))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("downlinkDelayMs").build()).build();

    private static final SdkField UPLINK_JITTER_MS_FIELD = SdkField. builder(MarshallingType.LONG)
            .memberName("uplinkJitterMs").getter(getter(UpdateNetworkProfileRequest::uplinkJitterMs))
            .setter(setter(Builder::uplinkJitterMs))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("uplinkJitterMs").build()).build();

    private static final SdkField DOWNLINK_JITTER_MS_FIELD = SdkField. builder(MarshallingType.LONG)
            .memberName("downlinkJitterMs").getter(getter(UpdateNetworkProfileRequest::downlinkJitterMs))
            .setter(setter(Builder::downlinkJitterMs))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("downlinkJitterMs").build()).build();

    private static final SdkField UPLINK_LOSS_PERCENT_FIELD = SdkField. builder(MarshallingType.INTEGER)
            .memberName("uplinkLossPercent").getter(getter(UpdateNetworkProfileRequest::uplinkLossPercent))
            .setter(setter(Builder::uplinkLossPercent))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("uplinkLossPercent").build()).build();

    private static final SdkField DOWNLINK_LOSS_PERCENT_FIELD = SdkField. builder(MarshallingType.INTEGER)
            .memberName("downlinkLossPercent").getter(getter(UpdateNetworkProfileRequest::downlinkLossPercent))
            .setter(setter(Builder::downlinkLossPercent))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("downlinkLossPercent").build())
            .build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(ARN_FIELD, NAME_FIELD,
            DESCRIPTION_FIELD, TYPE_FIELD, UPLINK_BANDWIDTH_BITS_FIELD, DOWNLINK_BANDWIDTH_BITS_FIELD, UPLINK_DELAY_MS_FIELD,
            DOWNLINK_DELAY_MS_FIELD, UPLINK_JITTER_MS_FIELD, DOWNLINK_JITTER_MS_FIELD, UPLINK_LOSS_PERCENT_FIELD,
            DOWNLINK_LOSS_PERCENT_FIELD));

    private final String arn;

    private final String name;

    private final String description;

    private final String type;

    private final Long uplinkBandwidthBits;

    private final Long downlinkBandwidthBits;

    private final Long uplinkDelayMs;

    private final Long downlinkDelayMs;

    private final Long uplinkJitterMs;

    private final Long downlinkJitterMs;

    private final Integer uplinkLossPercent;

    private final Integer downlinkLossPercent;

    private UpdateNetworkProfileRequest(BuilderImpl builder) {
        super(builder);
        this.arn = builder.arn;
        this.name = builder.name;
        this.description = builder.description;
        this.type = builder.type;
        this.uplinkBandwidthBits = builder.uplinkBandwidthBits;
        this.downlinkBandwidthBits = builder.downlinkBandwidthBits;
        this.uplinkDelayMs = builder.uplinkDelayMs;
        this.downlinkDelayMs = builder.downlinkDelayMs;
        this.uplinkJitterMs = builder.uplinkJitterMs;
        this.downlinkJitterMs = builder.downlinkJitterMs;
        this.uplinkLossPercent = builder.uplinkLossPercent;
        this.downlinkLossPercent = builder.downlinkLossPercent;
    }

    /**
     * 

* The Amazon Resource Name (ARN) of the project for which you want to update network profile settings. *

* * @return The Amazon Resource Name (ARN) of the project for which you want to update network profile settings. */ public final String arn() { return arn; } /** *

* The name of the network profile about which you are returning information. *

* * @return The name of the network profile about which you are returning information. */ public final String name() { return name; } /** *

* The description of the network profile about which you are returning information. *

* * @return The description of the network profile about which you are returning information. */ public final String description() { return description; } /** *

* The type of network profile to return information about. Valid values are listed here. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #type} will return * {@link NetworkProfileType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #typeAsString}. *

* * @return The type of network profile to return information about. Valid values are listed here. * @see NetworkProfileType */ public final NetworkProfileType type() { return NetworkProfileType.fromValue(type); } /** *

* The type of network profile to return information about. Valid values are listed here. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #type} will return * {@link NetworkProfileType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #typeAsString}. *

* * @return The type of network profile to return information about. Valid values are listed here. * @see NetworkProfileType */ public final String typeAsString() { return type; } /** *

* The data throughput rate in bits per second, as an integer from 0 to 104857600. *

* * @return The data throughput rate in bits per second, as an integer from 0 to 104857600. */ public final Long uplinkBandwidthBits() { return uplinkBandwidthBits; } /** *

* The data throughput rate in bits per second, as an integer from 0 to 104857600. *

* * @return The data throughput rate in bits per second, as an integer from 0 to 104857600. */ public final Long downlinkBandwidthBits() { return downlinkBandwidthBits; } /** *

* Delay time for all packets to destination in milliseconds as an integer from 0 to 2000. *

* * @return Delay time for all packets to destination in milliseconds as an integer from 0 to 2000. */ public final Long uplinkDelayMs() { return uplinkDelayMs; } /** *

* Delay time for all packets to destination in milliseconds as an integer from 0 to 2000. *

* * @return Delay time for all packets to destination in milliseconds as an integer from 0 to 2000. */ public final Long downlinkDelayMs() { return downlinkDelayMs; } /** *

* Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000. *

* * @return Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000. */ public final Long uplinkJitterMs() { return uplinkJitterMs; } /** *

* Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000. *

* * @return Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000. */ public final Long downlinkJitterMs() { return downlinkJitterMs; } /** *

* Proportion of transmitted packets that fail to arrive from 0 to 100 percent. *

* * @return Proportion of transmitted packets that fail to arrive from 0 to 100 percent. */ public final Integer uplinkLossPercent() { return uplinkLossPercent; } /** *

* Proportion of received packets that fail to arrive from 0 to 100 percent. *

* * @return Proportion of received packets that fail to arrive from 0 to 100 percent. */ public final Integer downlinkLossPercent() { return downlinkLossPercent; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + super.hashCode(); hashCode = 31 * hashCode + Objects.hashCode(arn()); hashCode = 31 * hashCode + Objects.hashCode(name()); hashCode = 31 * hashCode + Objects.hashCode(description()); hashCode = 31 * hashCode + Objects.hashCode(typeAsString()); hashCode = 31 * hashCode + Objects.hashCode(uplinkBandwidthBits()); hashCode = 31 * hashCode + Objects.hashCode(downlinkBandwidthBits()); hashCode = 31 * hashCode + Objects.hashCode(uplinkDelayMs()); hashCode = 31 * hashCode + Objects.hashCode(downlinkDelayMs()); hashCode = 31 * hashCode + Objects.hashCode(uplinkJitterMs()); hashCode = 31 * hashCode + Objects.hashCode(downlinkJitterMs()); hashCode = 31 * hashCode + Objects.hashCode(uplinkLossPercent()); hashCode = 31 * hashCode + Objects.hashCode(downlinkLossPercent()); 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 UpdateNetworkProfileRequest)) { return false; } UpdateNetworkProfileRequest other = (UpdateNetworkProfileRequest) obj; return Objects.equals(arn(), other.arn()) && Objects.equals(name(), other.name()) && Objects.equals(description(), other.description()) && Objects.equals(typeAsString(), other.typeAsString()) && Objects.equals(uplinkBandwidthBits(), other.uplinkBandwidthBits()) && Objects.equals(downlinkBandwidthBits(), other.downlinkBandwidthBits()) && Objects.equals(uplinkDelayMs(), other.uplinkDelayMs()) && Objects.equals(downlinkDelayMs(), other.downlinkDelayMs()) && Objects.equals(uplinkJitterMs(), other.uplinkJitterMs()) && Objects.equals(downlinkJitterMs(), other.downlinkJitterMs()) && Objects.equals(uplinkLossPercent(), other.uplinkLossPercent()) && Objects.equals(downlinkLossPercent(), other.downlinkLossPercent()); } /** * 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("UpdateNetworkProfileRequest").add("Arn", arn()).add("Name", name()) .add("Description", description()).add("Type", typeAsString()).add("UplinkBandwidthBits", uplinkBandwidthBits()) .add("DownlinkBandwidthBits", downlinkBandwidthBits()).add("UplinkDelayMs", uplinkDelayMs()) .add("DownlinkDelayMs", downlinkDelayMs()).add("UplinkJitterMs", uplinkJitterMs()) .add("DownlinkJitterMs", downlinkJitterMs()).add("UplinkLossPercent", uplinkLossPercent()) .add("DownlinkLossPercent", downlinkLossPercent()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "arn": return Optional.ofNullable(clazz.cast(arn())); case "name": return Optional.ofNullable(clazz.cast(name())); case "description": return Optional.ofNullable(clazz.cast(description())); case "type": return Optional.ofNullable(clazz.cast(typeAsString())); case "uplinkBandwidthBits": return Optional.ofNullable(clazz.cast(uplinkBandwidthBits())); case "downlinkBandwidthBits": return Optional.ofNullable(clazz.cast(downlinkBandwidthBits())); case "uplinkDelayMs": return Optional.ofNullable(clazz.cast(uplinkDelayMs())); case "downlinkDelayMs": return Optional.ofNullable(clazz.cast(downlinkDelayMs())); case "uplinkJitterMs": return Optional.ofNullable(clazz.cast(uplinkJitterMs())); case "downlinkJitterMs": return Optional.ofNullable(clazz.cast(downlinkJitterMs())); case "uplinkLossPercent": return Optional.ofNullable(clazz.cast(uplinkLossPercent())); case "downlinkLossPercent": return Optional.ofNullable(clazz.cast(downlinkLossPercent())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((UpdateNetworkProfileRequest) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends DeviceFarmRequest.Builder, SdkPojo, CopyableBuilder { /** *

* The Amazon Resource Name (ARN) of the project for which you want to update network profile settings. *

* * @param arn * The Amazon Resource Name (ARN) of the project for which you want to update network profile settings. * @return Returns a reference to this object so that method calls can be chained together. */ Builder arn(String arn); /** *

* The name of the network profile about which you are returning information. *

* * @param name * The name of the network profile about which you are returning information. * @return Returns a reference to this object so that method calls can be chained together. */ Builder name(String name); /** *

* The description of the network profile about which you are returning information. *

* * @param description * The description of the network profile about which you are returning information. * @return Returns a reference to this object so that method calls can be chained together. */ Builder description(String description); /** *

* The type of network profile to return information about. Valid values are listed here. *

* * @param type * The type of network profile to return information about. Valid values are listed here. * @see NetworkProfileType * @return Returns a reference to this object so that method calls can be chained together. * @see NetworkProfileType */ Builder type(String type); /** *

* The type of network profile to return information about. Valid values are listed here. *

* * @param type * The type of network profile to return information about. Valid values are listed here. * @see NetworkProfileType * @return Returns a reference to this object so that method calls can be chained together. * @see NetworkProfileType */ Builder type(NetworkProfileType type); /** *

* The data throughput rate in bits per second, as an integer from 0 to 104857600. *

* * @param uplinkBandwidthBits * The data throughput rate in bits per second, as an integer from 0 to 104857600. * @return Returns a reference to this object so that method calls can be chained together. */ Builder uplinkBandwidthBits(Long uplinkBandwidthBits); /** *

* The data throughput rate in bits per second, as an integer from 0 to 104857600. *

* * @param downlinkBandwidthBits * The data throughput rate in bits per second, as an integer from 0 to 104857600. * @return Returns a reference to this object so that method calls can be chained together. */ Builder downlinkBandwidthBits(Long downlinkBandwidthBits); /** *

* Delay time for all packets to destination in milliseconds as an integer from 0 to 2000. *

* * @param uplinkDelayMs * Delay time for all packets to destination in milliseconds as an integer from 0 to 2000. * @return Returns a reference to this object so that method calls can be chained together. */ Builder uplinkDelayMs(Long uplinkDelayMs); /** *

* Delay time for all packets to destination in milliseconds as an integer from 0 to 2000. *

* * @param downlinkDelayMs * Delay time for all packets to destination in milliseconds as an integer from 0 to 2000. * @return Returns a reference to this object so that method calls can be chained together. */ Builder downlinkDelayMs(Long downlinkDelayMs); /** *

* Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000. *

* * @param uplinkJitterMs * Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000. * @return Returns a reference to this object so that method calls can be chained together. */ Builder uplinkJitterMs(Long uplinkJitterMs); /** *

* Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000. *

* * @param downlinkJitterMs * Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000. * @return Returns a reference to this object so that method calls can be chained together. */ Builder downlinkJitterMs(Long downlinkJitterMs); /** *

* Proportion of transmitted packets that fail to arrive from 0 to 100 percent. *

* * @param uplinkLossPercent * Proportion of transmitted packets that fail to arrive from 0 to 100 percent. * @return Returns a reference to this object so that method calls can be chained together. */ Builder uplinkLossPercent(Integer uplinkLossPercent); /** *

* Proportion of received packets that fail to arrive from 0 to 100 percent. *

* * @param downlinkLossPercent * Proportion of received packets that fail to arrive from 0 to 100 percent. * @return Returns a reference to this object so that method calls can be chained together. */ Builder downlinkLossPercent(Integer downlinkLossPercent); @Override Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration); @Override Builder overrideConfiguration(Consumer builderConsumer); } static final class BuilderImpl extends DeviceFarmRequest.BuilderImpl implements Builder { private String arn; private String name; private String description; private String type; private Long uplinkBandwidthBits; private Long downlinkBandwidthBits; private Long uplinkDelayMs; private Long downlinkDelayMs; private Long uplinkJitterMs; private Long downlinkJitterMs; private Integer uplinkLossPercent; private Integer downlinkLossPercent; private BuilderImpl() { } private BuilderImpl(UpdateNetworkProfileRequest model) { super(model); arn(model.arn); name(model.name); description(model.description); type(model.type); uplinkBandwidthBits(model.uplinkBandwidthBits); downlinkBandwidthBits(model.downlinkBandwidthBits); uplinkDelayMs(model.uplinkDelayMs); downlinkDelayMs(model.downlinkDelayMs); uplinkJitterMs(model.uplinkJitterMs); downlinkJitterMs(model.downlinkJitterMs); uplinkLossPercent(model.uplinkLossPercent); downlinkLossPercent(model.downlinkLossPercent); } public final String getArn() { return arn; } public final void setArn(String arn) { this.arn = arn; } @Override public final Builder arn(String arn) { this.arn = arn; return this; } public final String getName() { return name; } public final void setName(String name) { this.name = name; } @Override public final Builder name(String name) { this.name = name; return this; } public final String getDescription() { return description; } public final void setDescription(String description) { this.description = description; } @Override public final Builder description(String description) { this.description = description; return this; } public final String getType() { return type; } public final void setType(String type) { this.type = type; } @Override public final Builder type(String type) { this.type = type; return this; } @Override public final Builder type(NetworkProfileType type) { this.type(type == null ? null : type.toString()); return this; } public final Long getUplinkBandwidthBits() { return uplinkBandwidthBits; } public final void setUplinkBandwidthBits(Long uplinkBandwidthBits) { this.uplinkBandwidthBits = uplinkBandwidthBits; } @Override public final Builder uplinkBandwidthBits(Long uplinkBandwidthBits) { this.uplinkBandwidthBits = uplinkBandwidthBits; return this; } public final Long getDownlinkBandwidthBits() { return downlinkBandwidthBits; } public final void setDownlinkBandwidthBits(Long downlinkBandwidthBits) { this.downlinkBandwidthBits = downlinkBandwidthBits; } @Override public final Builder downlinkBandwidthBits(Long downlinkBandwidthBits) { this.downlinkBandwidthBits = downlinkBandwidthBits; return this; } public final Long getUplinkDelayMs() { return uplinkDelayMs; } public final void setUplinkDelayMs(Long uplinkDelayMs) { this.uplinkDelayMs = uplinkDelayMs; } @Override public final Builder uplinkDelayMs(Long uplinkDelayMs) { this.uplinkDelayMs = uplinkDelayMs; return this; } public final Long getDownlinkDelayMs() { return downlinkDelayMs; } public final void setDownlinkDelayMs(Long downlinkDelayMs) { this.downlinkDelayMs = downlinkDelayMs; } @Override public final Builder downlinkDelayMs(Long downlinkDelayMs) { this.downlinkDelayMs = downlinkDelayMs; return this; } public final Long getUplinkJitterMs() { return uplinkJitterMs; } public final void setUplinkJitterMs(Long uplinkJitterMs) { this.uplinkJitterMs = uplinkJitterMs; } @Override public final Builder uplinkJitterMs(Long uplinkJitterMs) { this.uplinkJitterMs = uplinkJitterMs; return this; } public final Long getDownlinkJitterMs() { return downlinkJitterMs; } public final void setDownlinkJitterMs(Long downlinkJitterMs) { this.downlinkJitterMs = downlinkJitterMs; } @Override public final Builder downlinkJitterMs(Long downlinkJitterMs) { this.downlinkJitterMs = downlinkJitterMs; return this; } public final Integer getUplinkLossPercent() { return uplinkLossPercent; } public final void setUplinkLossPercent(Integer uplinkLossPercent) { this.uplinkLossPercent = uplinkLossPercent; } @Override public final Builder uplinkLossPercent(Integer uplinkLossPercent) { this.uplinkLossPercent = uplinkLossPercent; return this; } public final Integer getDownlinkLossPercent() { return downlinkLossPercent; } public final void setDownlinkLossPercent(Integer downlinkLossPercent) { this.downlinkLossPercent = downlinkLossPercent; } @Override public final Builder downlinkLossPercent(Integer downlinkLossPercent) { this.downlinkLossPercent = downlinkLossPercent; return this; } @Override public Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) { super.overrideConfiguration(overrideConfiguration); return this; } @Override public Builder overrideConfiguration(Consumer builderConsumer) { super.overrideConfiguration(builderConsumer); return this; } @Override public UpdateNetworkProfileRequest build() { return new UpdateNetworkProfileRequest(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy