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

com.pulumi.azure.automation.inputs.DscNodeConfigurationState Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.15.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.azure.automation.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;


public final class DscNodeConfigurationState extends com.pulumi.resources.ResourceArgs {

    public static final DscNodeConfigurationState Empty = new DscNodeConfigurationState();

    /**
     * The name of the automation account in which the DSC Node Configuration is created. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="automationAccountName")
    private @Nullable Output automationAccountName;

    /**
     * @return The name of the automation account in which the DSC Node Configuration is created. Changing this forces a new resource to be created.
     * 
     */
    public Optional> automationAccountName() {
        return Optional.ofNullable(this.automationAccountName);
    }

    @Import(name="configurationName")
    private @Nullable Output configurationName;

    public Optional> configurationName() {
        return Optional.ofNullable(this.configurationName);
    }

    /**
     * The PowerShell DSC Node Configuration (mof content).
     * 
     */
    @Import(name="contentEmbedded")
    private @Nullable Output contentEmbedded;

    /**
     * @return The PowerShell DSC Node Configuration (mof content).
     * 
     */
    public Optional> contentEmbedded() {
        return Optional.ofNullable(this.contentEmbedded);
    }

    /**
     * Specifies the name of the DSC Node Configuration. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Specifies the name of the DSC Node Configuration. Changing this forces a new resource to be created.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * The name of the resource group in which the DSC Node Configuration is created. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="resourceGroupName")
    private @Nullable Output resourceGroupName;

    /**
     * @return The name of the resource group in which the DSC Node Configuration is created. Changing this forces a new resource to be created.
     * 
     */
    public Optional> resourceGroupName() {
        return Optional.ofNullable(this.resourceGroupName);
    }

    private DscNodeConfigurationState() {}

    private DscNodeConfigurationState(DscNodeConfigurationState $) {
        this.automationAccountName = $.automationAccountName;
        this.configurationName = $.configurationName;
        this.contentEmbedded = $.contentEmbedded;
        this.name = $.name;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private DscNodeConfigurationState $;

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

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

        /**
         * @param automationAccountName The name of the automation account in which the DSC Node Configuration is created. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder automationAccountName(@Nullable Output automationAccountName) {
            $.automationAccountName = automationAccountName;
            return this;
        }

        /**
         * @param automationAccountName The name of the automation account in which the DSC Node Configuration is created. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder automationAccountName(String automationAccountName) {
            return automationAccountName(Output.of(automationAccountName));
        }

        public Builder configurationName(@Nullable Output configurationName) {
            $.configurationName = configurationName;
            return this;
        }

        public Builder configurationName(String configurationName) {
            return configurationName(Output.of(configurationName));
        }

        /**
         * @param contentEmbedded The PowerShell DSC Node Configuration (mof content).
         * 
         * @return builder
         * 
         */
        public Builder contentEmbedded(@Nullable Output contentEmbedded) {
            $.contentEmbedded = contentEmbedded;
            return this;
        }

        /**
         * @param contentEmbedded The PowerShell DSC Node Configuration (mof content).
         * 
         * @return builder
         * 
         */
        public Builder contentEmbedded(String contentEmbedded) {
            return contentEmbedded(Output.of(contentEmbedded));
        }

        /**
         * @param name Specifies the name of the DSC Node Configuration. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Specifies the name of the DSC Node Configuration. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param resourceGroupName The name of the resource group in which the DSC Node Configuration is created. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(@Nullable Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group in which the DSC Node Configuration is created. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        public DscNodeConfigurationState build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy