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

com.pulumi.azurenative.migrate.inputs.GetWorkloadDeploymentSecretConfigurationsArgs 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.inputs;

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


public final class GetWorkloadDeploymentSecretConfigurationsArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetWorkloadDeploymentSecretConfigurationsArgs Empty = new GetWorkloadDeploymentSecretConfigurationsArgs();

    /**
     * ModernizeProject name.
     * 
     */
    @Import(name="modernizeProjectName", required=true)
    private Output modernizeProjectName;

    /**
     * @return ModernizeProject name.
     * 
     */
    public Output modernizeProjectName() {
        return this.modernizeProjectName;
    }

    /**
     * Name of the Azure Resource Group that project is part of.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return Name of the Azure Resource Group that project is part of.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * Azure Subscription Id in which project was created.
     * 
     */
    @Import(name="subscriptionId")
    private @Nullable Output subscriptionId;

    /**
     * @return Azure Subscription Id in which project was created.
     * 
     */
    public Optional> subscriptionId() {
        return Optional.ofNullable(this.subscriptionId);
    }

    /**
     * Workload deployment name.
     * 
     */
    @Import(name="workloadDeploymentName", required=true)
    private Output workloadDeploymentName;

    /**
     * @return Workload deployment name.
     * 
     */
    public Output workloadDeploymentName() {
        return this.workloadDeploymentName;
    }

    private GetWorkloadDeploymentSecretConfigurationsArgs() {}

    private GetWorkloadDeploymentSecretConfigurationsArgs(GetWorkloadDeploymentSecretConfigurationsArgs $) {
        this.modernizeProjectName = $.modernizeProjectName;
        this.resourceGroupName = $.resourceGroupName;
        this.subscriptionId = $.subscriptionId;
        this.workloadDeploymentName = $.workloadDeploymentName;
    }

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

    public static final class Builder {
        private GetWorkloadDeploymentSecretConfigurationsArgs $;

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

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

        /**
         * @param modernizeProjectName ModernizeProject name.
         * 
         * @return builder
         * 
         */
        public Builder modernizeProjectName(Output modernizeProjectName) {
            $.modernizeProjectName = modernizeProjectName;
            return this;
        }

        /**
         * @param modernizeProjectName ModernizeProject name.
         * 
         * @return builder
         * 
         */
        public Builder modernizeProjectName(String modernizeProjectName) {
            return modernizeProjectName(Output.of(modernizeProjectName));
        }

        /**
         * @param resourceGroupName Name of the Azure Resource Group that project is part of.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName Name of the Azure Resource Group that project is part of.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param subscriptionId Azure Subscription Id in which project was created.
         * 
         * @return builder
         * 
         */
        public Builder subscriptionId(@Nullable Output subscriptionId) {
            $.subscriptionId = subscriptionId;
            return this;
        }

        /**
         * @param subscriptionId Azure Subscription Id in which project was created.
         * 
         * @return builder
         * 
         */
        public Builder subscriptionId(String subscriptionId) {
            return subscriptionId(Output.of(subscriptionId));
        }

        /**
         * @param workloadDeploymentName Workload deployment name.
         * 
         * @return builder
         * 
         */
        public Builder workloadDeploymentName(Output workloadDeploymentName) {
            $.workloadDeploymentName = workloadDeploymentName;
            return this;
        }

        /**
         * @param workloadDeploymentName Workload deployment name.
         * 
         * @return builder
         * 
         */
        public Builder workloadDeploymentName(String workloadDeploymentName) {
            return workloadDeploymentName(Output.of(workloadDeploymentName));
        }

        public GetWorkloadDeploymentSecretConfigurationsArgs build() {
            if ($.modernizeProjectName == null) {
                throw new MissingRequiredPropertyException("GetWorkloadDeploymentSecretConfigurationsArgs", "modernizeProjectName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetWorkloadDeploymentSecretConfigurationsArgs", "resourceGroupName");
            }
            if ($.workloadDeploymentName == null) {
                throw new MissingRequiredPropertyException("GetWorkloadDeploymentSecretConfigurationsArgs", "workloadDeploymentName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy