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

com.pulumi.azurenative.providerhub.inputs.GetDefaultRolloutPlainArgs 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.azurenative.providerhub.inputs;

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


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

    public static final GetDefaultRolloutPlainArgs Empty = new GetDefaultRolloutPlainArgs();

    /**
     * The name of the resource provider hosted within ProviderHub.
     * 
     */
    @Import(name="providerNamespace", required=true)
    private String providerNamespace;

    /**
     * @return The name of the resource provider hosted within ProviderHub.
     * 
     */
    public String providerNamespace() {
        return this.providerNamespace;
    }

    /**
     * The rollout name.
     * 
     */
    @Import(name="rolloutName", required=true)
    private String rolloutName;

    /**
     * @return The rollout name.
     * 
     */
    public String rolloutName() {
        return this.rolloutName;
    }

    private GetDefaultRolloutPlainArgs() {}

    private GetDefaultRolloutPlainArgs(GetDefaultRolloutPlainArgs $) {
        this.providerNamespace = $.providerNamespace;
        this.rolloutName = $.rolloutName;
    }

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

    public static final class Builder {
        private GetDefaultRolloutPlainArgs $;

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

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

        /**
         * @param providerNamespace The name of the resource provider hosted within ProviderHub.
         * 
         * @return builder
         * 
         */
        public Builder providerNamespace(String providerNamespace) {
            $.providerNamespace = providerNamespace;
            return this;
        }

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

        public GetDefaultRolloutPlainArgs build() {
            if ($.providerNamespace == null) {
                throw new MissingRequiredPropertyException("GetDefaultRolloutPlainArgs", "providerNamespace");
            }
            if ($.rolloutName == null) {
                throw new MissingRequiredPropertyException("GetDefaultRolloutPlainArgs", "rolloutName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy