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

com.pulumi.azurenative.logic.IntegrationServiceEnvironmentManagedApiArgs 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;

import com.pulumi.azurenative.logic.inputs.IntegrationServiceEnvironmentManagedApiDeploymentParametersArgs;
import com.pulumi.azurenative.logic.inputs.ResourceReferenceArgs;
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 IntegrationServiceEnvironmentManagedApiArgs extends com.pulumi.resources.ResourceArgs {

    public static final IntegrationServiceEnvironmentManagedApiArgs Empty = new IntegrationServiceEnvironmentManagedApiArgs();

    /**
     * The api name.
     * 
     */
    @Import(name="apiName")
    private @Nullable Output apiName;

    /**
     * @return The api name.
     * 
     */
    public Optional> apiName() {
        return Optional.ofNullable(this.apiName);
    }

    /**
     * The integration service environment managed api deployment parameters.
     * 
     */
    @Import(name="deploymentParameters")
    private @Nullable Output deploymentParameters;

    /**
     * @return The integration service environment managed api deployment parameters.
     * 
     */
    public Optional> deploymentParameters() {
        return Optional.ofNullable(this.deploymentParameters);
    }

    /**
     * The integration service environment reference.
     * 
     */
    @Import(name="integrationServiceEnvironment")
    private @Nullable Output integrationServiceEnvironment;

    /**
     * @return The integration service environment reference.
     * 
     */
    public Optional> integrationServiceEnvironment() {
        return Optional.ofNullable(this.integrationServiceEnvironment);
    }

    /**
     * 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 location.
     * 
     */
    @Import(name="location")
    private @Nullable Output location;

    /**
     * @return The resource location.
     * 
     */
    public Optional> location() {
        return Optional.ofNullable(this.location);
    }

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

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

    /**
     * The resource tags.
     * 
     */
    @Import(name="tags")
    private @Nullable Output> tags;

    /**
     * @return The resource tags.
     * 
     */
    public Optional>> tags() {
        return Optional.ofNullable(this.tags);
    }

    private IntegrationServiceEnvironmentManagedApiArgs() {}

    private IntegrationServiceEnvironmentManagedApiArgs(IntegrationServiceEnvironmentManagedApiArgs $) {
        this.apiName = $.apiName;
        this.deploymentParameters = $.deploymentParameters;
        this.integrationServiceEnvironment = $.integrationServiceEnvironment;
        this.integrationServiceEnvironmentName = $.integrationServiceEnvironmentName;
        this.location = $.location;
        this.resourceGroup = $.resourceGroup;
        this.tags = $.tags;
    }

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

    public static final class Builder {
        private IntegrationServiceEnvironmentManagedApiArgs $;

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

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

        /**
         * @param apiName The api name.
         * 
         * @return builder
         * 
         */
        public Builder apiName(@Nullable Output apiName) {
            $.apiName = apiName;
            return this;
        }

        /**
         * @param apiName The api name.
         * 
         * @return builder
         * 
         */
        public Builder apiName(String apiName) {
            return apiName(Output.of(apiName));
        }

        /**
         * @param deploymentParameters The integration service environment managed api deployment parameters.
         * 
         * @return builder
         * 
         */
        public Builder deploymentParameters(@Nullable Output deploymentParameters) {
            $.deploymentParameters = deploymentParameters;
            return this;
        }

        /**
         * @param deploymentParameters The integration service environment managed api deployment parameters.
         * 
         * @return builder
         * 
         */
        public Builder deploymentParameters(IntegrationServiceEnvironmentManagedApiDeploymentParametersArgs deploymentParameters) {
            return deploymentParameters(Output.of(deploymentParameters));
        }

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

        /**
         * @param integrationServiceEnvironment The integration service environment reference.
         * 
         * @return builder
         * 
         */
        public Builder integrationServiceEnvironment(ResourceReferenceArgs integrationServiceEnvironment) {
            return integrationServiceEnvironment(Output.of(integrationServiceEnvironment));
        }

        /**
         * @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 location The resource location.
         * 
         * @return builder
         * 
         */
        public Builder location(@Nullable Output location) {
            $.location = location;
            return this;
        }

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

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

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

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

        /**
         * @param tags The resource tags.
         * 
         * @return builder
         * 
         */
        public Builder tags(Map tags) {
            return tags(Output.of(tags));
        }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy