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

com.pulumi.azurenative.logic.inputs.GetIntegrationServiceEnvironmentArgs 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.logic.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 GetIntegrationServiceEnvironmentArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetIntegrationServiceEnvironmentArgs Empty = new GetIntegrationServiceEnvironmentArgs();

    /**
     * The integration service environment name.
     * 
     */
    @Import(name="integrationServiceEnvironmentName", required=true)
    private Output integrationServiceEnvironmentName;

    /**
     * @return The integration service environment name.
     * 
     */
    public Output integrationServiceEnvironmentName() {
        return this.integrationServiceEnvironmentName;
    }

    /**
     * The resource group.
     * 
     */
    @Import(name="resourceGroup", required=true)
    private Output resourceGroup;

    /**
     * @return The resource group.
     * 
     */
    public Output resourceGroup() {
        return this.resourceGroup;
    }

    private GetIntegrationServiceEnvironmentArgs() {}

    private GetIntegrationServiceEnvironmentArgs(GetIntegrationServiceEnvironmentArgs $) {
        this.integrationServiceEnvironmentName = $.integrationServiceEnvironmentName;
        this.resourceGroup = $.resourceGroup;
    }

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

    public static final class Builder {
        private GetIntegrationServiceEnvironmentArgs $;

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

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

        /**
         * @param integrationServiceEnvironmentName The integration service environment name.
         * 
         * @return builder
         * 
         */
        public Builder integrationServiceEnvironmentName(Output integrationServiceEnvironmentName) {
            $.integrationServiceEnvironmentName = integrationServiceEnvironmentName;
            return this;
        }

        /**
         * @param integrationServiceEnvironmentName The integration service environment name.
         * 
         * @return builder
         * 
         */
        public Builder integrationServiceEnvironmentName(String integrationServiceEnvironmentName) {
            return integrationServiceEnvironmentName(Output.of(integrationServiceEnvironmentName));
        }

        /**
         * @param resourceGroup The resource group.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroup(Output resourceGroup) {
            $.resourceGroup = resourceGroup;
            return this;
        }

        /**
         * @param resourceGroup The resource group.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroup(String resourceGroup) {
            return resourceGroup(Output.of(resourceGroup));
        }

        public GetIntegrationServiceEnvironmentArgs build() {
            if ($.integrationServiceEnvironmentName == null) {
                throw new MissingRequiredPropertyException("GetIntegrationServiceEnvironmentArgs", "integrationServiceEnvironmentName");
            }
            if ($.resourceGroup == null) {
                throw new MissingRequiredPropertyException("GetIntegrationServiceEnvironmentArgs", "resourceGroup");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy