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

com.pulumi.azurenative.migrate.inputs.AKSDeploymentPropertiesArgs Maven / Gradle / Ivy

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

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


/**
 * Class for AKSDeployment Properties.
 * 
 */
public final class AKSDeploymentPropertiesArgs extends com.pulumi.resources.ResourceArgs {

    public static final AKSDeploymentPropertiesArgs Empty = new AKSDeploymentPropertiesArgs();

    /**
     * Gets or sets the AKS cluster name.
     * 
     */
    @Import(name="aksClusterName")
    private @Nullable Output aksClusterName;

    /**
     * @return Gets or sets the AKS cluster name.
     * 
     */
    public Optional> aksClusterName() {
        return Optional.ofNullable(this.aksClusterName);
    }

    /**
     * Gets or sets the resource group of the resource.
     * 
     */
    @Import(name="resourceGroup")
    private @Nullable Output resourceGroup;

    /**
     * @return Gets or sets the resource group of the resource.
     * 
     */
    public Optional> resourceGroup() {
        return Optional.ofNullable(this.resourceGroup);
    }

    /**
     * Gets or sets the subscription id of the resource.
     * 
     */
    @Import(name="subscriptionId")
    private @Nullable Output subscriptionId;

    /**
     * @return Gets or sets the subscription id of the resource.
     * 
     */
    public Optional> subscriptionId() {
        return Optional.ofNullable(this.subscriptionId);
    }

    /**
     * Gets or sets the tenant id.
     * 
     */
    @Import(name="tenantId")
    private @Nullable Output tenantId;

    /**
     * @return Gets or sets the tenant id.
     * 
     */
    public Optional> tenantId() {
        return Optional.ofNullable(this.tenantId);
    }

    private AKSDeploymentPropertiesArgs() {}

    private AKSDeploymentPropertiesArgs(AKSDeploymentPropertiesArgs $) {
        this.aksClusterName = $.aksClusterName;
        this.resourceGroup = $.resourceGroup;
        this.subscriptionId = $.subscriptionId;
        this.tenantId = $.tenantId;
    }

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

    public static final class Builder {
        private AKSDeploymentPropertiesArgs $;

        public Builder() {
            $ = new AKSDeploymentPropertiesArgs();
        }

        public Builder(AKSDeploymentPropertiesArgs defaults) {
            $ = new AKSDeploymentPropertiesArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param aksClusterName Gets or sets the AKS cluster name.
         * 
         * @return builder
         * 
         */
        public Builder aksClusterName(@Nullable Output aksClusterName) {
            $.aksClusterName = aksClusterName;
            return this;
        }

        /**
         * @param aksClusterName Gets or sets the AKS cluster name.
         * 
         * @return builder
         * 
         */
        public Builder aksClusterName(String aksClusterName) {
            return aksClusterName(Output.of(aksClusterName));
        }

        /**
         * @param resourceGroup Gets or sets the resource group of the resource.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroup(@Nullable Output resourceGroup) {
            $.resourceGroup = resourceGroup;
            return this;
        }

        /**
         * @param resourceGroup Gets or sets the resource group of the resource.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroup(String resourceGroup) {
            return resourceGroup(Output.of(resourceGroup));
        }

        /**
         * @param subscriptionId Gets or sets the subscription id of the resource.
         * 
         * @return builder
         * 
         */
        public Builder subscriptionId(@Nullable Output subscriptionId) {
            $.subscriptionId = subscriptionId;
            return this;
        }

        /**
         * @param subscriptionId Gets or sets the subscription id of the resource.
         * 
         * @return builder
         * 
         */
        public Builder subscriptionId(String subscriptionId) {
            return subscriptionId(Output.of(subscriptionId));
        }

        /**
         * @param tenantId Gets or sets the tenant id.
         * 
         * @return builder
         * 
         */
        public Builder tenantId(@Nullable Output tenantId) {
            $.tenantId = tenantId;
            return this;
        }

        /**
         * @param tenantId Gets or sets the tenant id.
         * 
         * @return builder
         * 
         */
        public Builder tenantId(String tenantId) {
            return tenantId(Output.of(tenantId));
        }

        public AKSDeploymentPropertiesArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy