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

com.pulumi.azure.storage.inputs.GetSyncPlainArgs 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.storage.inputs;

import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


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

    public static final GetSyncPlainArgs Empty = new GetSyncPlainArgs();

    /**
     * The name of this Storage Sync.
     * 
     */
    @Import(name="name", required=true)
    private String name;

    /**
     * @return The name of this Storage Sync.
     * 
     */
    public String name() {
        return this.name;
    }

    /**
     * The name of the Resource Group where the Storage Sync exists.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private String resourceGroupName;

    /**
     * @return The name of the Resource Group where the Storage Sync exists.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

    private GetSyncPlainArgs() {}

    private GetSyncPlainArgs(GetSyncPlainArgs $) {
        this.name = $.name;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetSyncPlainArgs $;

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

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

        /**
         * @param name The name of this Storage Sync.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            $.name = name;
            return this;
        }

        /**
         * @param resourceGroupName The name of the Resource Group where the Storage Sync exists.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        public GetSyncPlainArgs build() {
            if ($.name == null) {
                throw new MissingRequiredPropertyException("GetSyncPlainArgs", "name");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetSyncPlainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy