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

com.pulumi.azurenative.dynamics365fraudprotection.inputs.GetInstanceDetailsArgs 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.dynamics365fraudprotection.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;


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

    public static final GetInstanceDetailsArgs Empty = new GetInstanceDetailsArgs();

    /**
     * The name of the instance. It must be a minimum of 3 characters, and a maximum of 63.
     * 
     */
    @Import(name="instanceName", required=true)
    private Output instanceName;

    /**
     * @return The name of the instance. It must be a minimum of 3 characters, and a maximum of 63.
     * 
     */
    public Output instanceName() {
        return this.instanceName;
    }

    /**
     * The name of the Azure Resource group of which a given DFP instance is part. This name must be at least 1 character in length, and no more than 90.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the Azure Resource group of which a given DFP instance is part. This name must be at least 1 character in length, and no more than 90.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    private GetInstanceDetailsArgs() {}

    private GetInstanceDetailsArgs(GetInstanceDetailsArgs $) {
        this.instanceName = $.instanceName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetInstanceDetailsArgs $;

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

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

        /**
         * @param instanceName The name of the instance. It must be a minimum of 3 characters, and a maximum of 63.
         * 
         * @return builder
         * 
         */
        public Builder instanceName(Output instanceName) {
            $.instanceName = instanceName;
            return this;
        }

        /**
         * @param instanceName The name of the instance. It must be a minimum of 3 characters, and a maximum of 63.
         * 
         * @return builder
         * 
         */
        public Builder instanceName(String instanceName) {
            return instanceName(Output.of(instanceName));
        }

        /**
         * @param resourceGroupName The name of the Azure Resource group of which a given DFP instance is part. This name must be at least 1 character in length, and no more than 90.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the Azure Resource group of which a given DFP instance is part. This name must be at least 1 character in length, and no more than 90.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy