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

com.pulumi.azure.automation.Powershell72ModuleArgs Maven / Gradle / Ivy

// *** 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;

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


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

    public static final Powershell72ModuleArgs Empty = new Powershell72ModuleArgs();

    /**
     * The ID of Automation Account to manage this Watcher. Changing this forces a new Watcher to be created.
     * 
     */
    @Import(name="automationAccountId", required=true)
    private Output automationAccountId;

    /**
     * @return The ID of Automation Account to manage this Watcher. Changing this forces a new Watcher to be created.
     * 
     */
    public Output automationAccountId() {
        return this.automationAccountId;
    }

    /**
     * A `module_link` block as defined below.
     * 
     */
    @Import(name="moduleLink", required=true)
    private Output moduleLink;

    /**
     * @return A `module_link` block as defined below.
     * 
     */
    public Output moduleLink() {
        return this.moduleLink;
    }

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

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

    /**
     * A mapping of tags to assign to the resource.
     * 
     */
    @Import(name="tags")
    private @Nullable Output> tags;

    /**
     * @return A mapping of tags to assign to the resource.
     * 
     */
    public Optional>> tags() {
        return Optional.ofNullable(this.tags);
    }

    private Powershell72ModuleArgs() {}

    private Powershell72ModuleArgs(Powershell72ModuleArgs $) {
        this.automationAccountId = $.automationAccountId;
        this.moduleLink = $.moduleLink;
        this.name = $.name;
        this.tags = $.tags;
    }

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

    public static final class Builder {
        private Powershell72ModuleArgs $;

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

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

        /**
         * @param automationAccountId The ID of Automation Account to manage this Watcher. Changing this forces a new Watcher to be created.
         * 
         * @return builder
         * 
         */
        public Builder automationAccountId(Output automationAccountId) {
            $.automationAccountId = automationAccountId;
            return this;
        }

        /**
         * @param automationAccountId The ID of Automation Account to manage this Watcher. Changing this forces a new Watcher to be created.
         * 
         * @return builder
         * 
         */
        public Builder automationAccountId(String automationAccountId) {
            return automationAccountId(Output.of(automationAccountId));
        }

        /**
         * @param moduleLink A `module_link` block as defined below.
         * 
         * @return builder
         * 
         */
        public Builder moduleLink(Output moduleLink) {
            $.moduleLink = moduleLink;
            return this;
        }

        /**
         * @param moduleLink A `module_link` block as defined below.
         * 
         * @return builder
         * 
         */
        public Builder moduleLink(Powershell72ModuleModuleLinkArgs moduleLink) {
            return moduleLink(Output.of(moduleLink));
        }

        /**
         * @param name Specifies the name of the Module. 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 Module. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param tags A mapping of tags to assign to the resource.
         * 
         * @return builder
         * 
         */
        public Builder tags(@Nullable Output> tags) {
            $.tags = tags;
            return this;
        }

        /**
         * @param tags A mapping of tags to assign to the resource.
         * 
         * @return builder
         * 
         */
        public Builder tags(Map tags) {
            return tags(Output.of(tags));
        }

        public Powershell72ModuleArgs build() {
            if ($.automationAccountId == null) {
                throw new MissingRequiredPropertyException("Powershell72ModuleArgs", "automationAccountId");
            }
            if ($.moduleLink == null) {
                throw new MissingRequiredPropertyException("Powershell72ModuleArgs", "moduleLink");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy