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

com.pulumi.azurenative.networkcloud.outputs.TrunkedNetworkAttachmentConfigurationResponse Maven / Gradle / Ivy

There is a newer version: 2.72.0
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.azurenative.networkcloud.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class TrunkedNetworkAttachmentConfigurationResponse {
    /**
     * @return The resource ID of the network that is being configured for attachment.
     * 
     */
    private String networkId;
    /**
     * @return The indicator of how this network will be utilized by the Kubernetes cluster.
     * 
     */
    private @Nullable String pluginType;

    private TrunkedNetworkAttachmentConfigurationResponse() {}
    /**
     * @return The resource ID of the network that is being configured for attachment.
     * 
     */
    public String networkId() {
        return this.networkId;
    }
    /**
     * @return The indicator of how this network will be utilized by the Kubernetes cluster.
     * 
     */
    public Optional pluginType() {
        return Optional.ofNullable(this.pluginType);
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(TrunkedNetworkAttachmentConfigurationResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String networkId;
        private @Nullable String pluginType;
        public Builder() {}
        public Builder(TrunkedNetworkAttachmentConfigurationResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.networkId = defaults.networkId;
    	      this.pluginType = defaults.pluginType;
        }

        @CustomType.Setter
        public Builder networkId(String networkId) {
            if (networkId == null) {
              throw new MissingRequiredPropertyException("TrunkedNetworkAttachmentConfigurationResponse", "networkId");
            }
            this.networkId = networkId;
            return this;
        }
        @CustomType.Setter
        public Builder pluginType(@Nullable String pluginType) {

            this.pluginType = pluginType;
            return this;
        }
        public TrunkedNetworkAttachmentConfigurationResponse build() {
            final var _resultValue = new TrunkedNetworkAttachmentConfigurationResponse();
            _resultValue.networkId = networkId;
            _resultValue.pluginType = pluginType;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy