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

com.pulumi.azurenative.migrate.outputs.AKSDeploymentPropertiesResponse Maven / Gradle / Ivy

There is a newer version: 2.89.2
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.migrate.outputs;

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

@CustomType
public final class AKSDeploymentPropertiesResponse {
    /**
     * @return Gets or sets the AKS cluster name.
     * 
     */
    private @Nullable String aksClusterName;
    /**
     * @return Gets or sets the resource group of the resource.
     * 
     */
    private @Nullable String resourceGroup;
    /**
     * @return Gets or sets the subscription id of the resource.
     * 
     */
    private @Nullable String subscriptionId;
    /**
     * @return Gets or sets the tenant id.
     * 
     */
    private @Nullable String tenantId;

    private AKSDeploymentPropertiesResponse() {}
    /**
     * @return Gets or sets the AKS cluster name.
     * 
     */
    public Optional aksClusterName() {
        return Optional.ofNullable(this.aksClusterName);
    }
    /**
     * @return Gets or sets the resource group of the resource.
     * 
     */
    public Optional resourceGroup() {
        return Optional.ofNullable(this.resourceGroup);
    }
    /**
     * @return Gets or sets the subscription id of the resource.
     * 
     */
    public Optional subscriptionId() {
        return Optional.ofNullable(this.subscriptionId);
    }
    /**
     * @return Gets or sets the tenant id.
     * 
     */
    public Optional tenantId() {
        return Optional.ofNullable(this.tenantId);
    }

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

    public static Builder builder(AKSDeploymentPropertiesResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String aksClusterName;
        private @Nullable String resourceGroup;
        private @Nullable String subscriptionId;
        private @Nullable String tenantId;
        public Builder() {}
        public Builder(AKSDeploymentPropertiesResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.aksClusterName = defaults.aksClusterName;
    	      this.resourceGroup = defaults.resourceGroup;
    	      this.subscriptionId = defaults.subscriptionId;
    	      this.tenantId = defaults.tenantId;
        }

        @CustomType.Setter
        public Builder aksClusterName(@Nullable String aksClusterName) {

            this.aksClusterName = aksClusterName;
            return this;
        }
        @CustomType.Setter
        public Builder resourceGroup(@Nullable String resourceGroup) {

            this.resourceGroup = resourceGroup;
            return this;
        }
        @CustomType.Setter
        public Builder subscriptionId(@Nullable String subscriptionId) {

            this.subscriptionId = subscriptionId;
            return this;
        }
        @CustomType.Setter
        public Builder tenantId(@Nullable String tenantId) {

            this.tenantId = tenantId;
            return this;
        }
        public AKSDeploymentPropertiesResponse build() {
            final var _resultValue = new AKSDeploymentPropertiesResponse();
            _resultValue.aksClusterName = aksClusterName;
            _resultValue.resourceGroup = resourceGroup;
            _resultValue.subscriptionId = subscriptionId;
            _resultValue.tenantId = tenantId;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy