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

com.pulumi.azurenative.synapse.outputs.IntegrationRuntimeSsisPropertiesResponse Maven / Gradle / Ivy

There is a newer version: 2.72.0
Show newest version
// *** 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.synapse.outputs;

import com.pulumi.azurenative.synapse.outputs.CmdkeySetupResponse;
import com.pulumi.azurenative.synapse.outputs.ComponentSetupResponse;
import com.pulumi.azurenative.synapse.outputs.EnvironmentVariableSetupResponse;
import com.pulumi.azurenative.synapse.outputs.IntegrationRuntimeCustomSetupScriptPropertiesResponse;
import com.pulumi.azurenative.synapse.outputs.IntegrationRuntimeDataProxyPropertiesResponse;
import com.pulumi.azurenative.synapse.outputs.IntegrationRuntimeSsisCatalogInfoResponse;
import com.pulumi.core.annotations.CustomType;
import java.lang.Object;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class IntegrationRuntimeSsisPropertiesResponse {
    /**
     * @return Catalog information for managed dedicated integration runtime.
     * 
     */
    private @Nullable IntegrationRuntimeSsisCatalogInfoResponse catalogInfo;
    /**
     * @return Custom setup script properties for a managed dedicated integration runtime.
     * 
     */
    private @Nullable IntegrationRuntimeCustomSetupScriptPropertiesResponse customSetupScriptProperties;
    /**
     * @return Data proxy properties for a managed dedicated integration runtime.
     * 
     */
    private @Nullable IntegrationRuntimeDataProxyPropertiesResponse dataProxyProperties;
    /**
     * @return The edition for the SSIS Integration Runtime
     * 
     */
    private @Nullable String edition;
    /**
     * @return Custom setup without script properties for a SSIS integration runtime.
     * 
     */
    private @Nullable List expressCustomSetupProperties;
    /**
     * @return License type for bringing your own license scenario.
     * 
     */
    private @Nullable String licenseType;

    private IntegrationRuntimeSsisPropertiesResponse() {}
    /**
     * @return Catalog information for managed dedicated integration runtime.
     * 
     */
    public Optional catalogInfo() {
        return Optional.ofNullable(this.catalogInfo);
    }
    /**
     * @return Custom setup script properties for a managed dedicated integration runtime.
     * 
     */
    public Optional customSetupScriptProperties() {
        return Optional.ofNullable(this.customSetupScriptProperties);
    }
    /**
     * @return Data proxy properties for a managed dedicated integration runtime.
     * 
     */
    public Optional dataProxyProperties() {
        return Optional.ofNullable(this.dataProxyProperties);
    }
    /**
     * @return The edition for the SSIS Integration Runtime
     * 
     */
    public Optional edition() {
        return Optional.ofNullable(this.edition);
    }
    /**
     * @return Custom setup without script properties for a SSIS integration runtime.
     * 
     */
    public List expressCustomSetupProperties() {
        return this.expressCustomSetupProperties == null ? List.of() : this.expressCustomSetupProperties;
    }
    /**
     * @return License type for bringing your own license scenario.
     * 
     */
    public Optional licenseType() {
        return Optional.ofNullable(this.licenseType);
    }

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

    public static Builder builder(IntegrationRuntimeSsisPropertiesResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable IntegrationRuntimeSsisCatalogInfoResponse catalogInfo;
        private @Nullable IntegrationRuntimeCustomSetupScriptPropertiesResponse customSetupScriptProperties;
        private @Nullable IntegrationRuntimeDataProxyPropertiesResponse dataProxyProperties;
        private @Nullable String edition;
        private @Nullable List expressCustomSetupProperties;
        private @Nullable String licenseType;
        public Builder() {}
        public Builder(IntegrationRuntimeSsisPropertiesResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.catalogInfo = defaults.catalogInfo;
    	      this.customSetupScriptProperties = defaults.customSetupScriptProperties;
    	      this.dataProxyProperties = defaults.dataProxyProperties;
    	      this.edition = defaults.edition;
    	      this.expressCustomSetupProperties = defaults.expressCustomSetupProperties;
    	      this.licenseType = defaults.licenseType;
        }

        @CustomType.Setter
        public Builder catalogInfo(@Nullable IntegrationRuntimeSsisCatalogInfoResponse catalogInfo) {

            this.catalogInfo = catalogInfo;
            return this;
        }
        @CustomType.Setter
        public Builder customSetupScriptProperties(@Nullable IntegrationRuntimeCustomSetupScriptPropertiesResponse customSetupScriptProperties) {

            this.customSetupScriptProperties = customSetupScriptProperties;
            return this;
        }
        @CustomType.Setter
        public Builder dataProxyProperties(@Nullable IntegrationRuntimeDataProxyPropertiesResponse dataProxyProperties) {

            this.dataProxyProperties = dataProxyProperties;
            return this;
        }
        @CustomType.Setter
        public Builder edition(@Nullable String edition) {

            this.edition = edition;
            return this;
        }
        @CustomType.Setter
        public Builder expressCustomSetupProperties(@Nullable List expressCustomSetupProperties) {

            this.expressCustomSetupProperties = expressCustomSetupProperties;
            return this;
        }
        public Builder expressCustomSetupProperties(Object... expressCustomSetupProperties) {
            return expressCustomSetupProperties(List.of(expressCustomSetupProperties));
        }
        @CustomType.Setter
        public Builder licenseType(@Nullable String licenseType) {

            this.licenseType = licenseType;
            return this;
        }
        public IntegrationRuntimeSsisPropertiesResponse build() {
            final var _resultValue = new IntegrationRuntimeSsisPropertiesResponse();
            _resultValue.catalogInfo = catalogInfo;
            _resultValue.customSetupScriptProperties = customSetupScriptProperties;
            _resultValue.dataProxyProperties = dataProxyProperties;
            _resultValue.edition = edition;
            _resultValue.expressCustomSetupProperties = expressCustomSetupProperties;
            _resultValue.licenseType = licenseType;
            return _resultValue;
        }
    }
}