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

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

There is a newer version: 2.89.2
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.AzureSkuResponse;
import com.pulumi.azurenative.synapse.outputs.LanguageExtensionsListResponse;
import com.pulumi.azurenative.synapse.outputs.OptimizedAutoscaleResponse;
import com.pulumi.azurenative.synapse.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class GetKustoPoolResult {
    /**
     * @return The Kusto Pool data ingestion URI.
     * 
     */
    private String dataIngestionUri;
    /**
     * @return A boolean value that indicates if the purge operations are enabled.
     * 
     */
    private @Nullable Boolean enablePurge;
    /**
     * @return A boolean value that indicates if the streaming ingest is enabled.
     * 
     */
    private @Nullable Boolean enableStreamingIngest;
    /**
     * @return A unique read-only string that changes whenever the resource is updated.
     * 
     */
    private String etag;
    /**
     * @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
     * 
     */
    private String id;
    /**
     * @return List of the Kusto Pool's language extensions.
     * 
     */
    private LanguageExtensionsListResponse languageExtensions;
    /**
     * @return The geo-location where the resource lives
     * 
     */
    private String location;
    /**
     * @return The name of the resource
     * 
     */
    private String name;
    /**
     * @return Optimized auto scale definition.
     * 
     */
    private @Nullable OptimizedAutoscaleResponse optimizedAutoscale;
    /**
     * @return The provisioned state of the resource.
     * 
     */
    private String provisioningState;
    /**
     * @return The SKU of the kusto pool.
     * 
     */
    private AzureSkuResponse sku;
    /**
     * @return The state of the resource.
     * 
     */
    private String state;
    /**
     * @return The reason for the Kusto Pool's current state.
     * 
     */
    private String stateReason;
    /**
     * @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
     * 
     */
    private SystemDataResponse systemData;
    /**
     * @return Resource tags.
     * 
     */
    private @Nullable Map tags;
    /**
     * @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
     * 
     */
    private String type;
    /**
     * @return The Kusto Pool URI.
     * 
     */
    private String uri;
    /**
     * @return The workspace unique identifier.
     * 
     */
    private @Nullable String workspaceUID;

    private GetKustoPoolResult() {}
    /**
     * @return The Kusto Pool data ingestion URI.
     * 
     */
    public String dataIngestionUri() {
        return this.dataIngestionUri;
    }
    /**
     * @return A boolean value that indicates if the purge operations are enabled.
     * 
     */
    public Optional enablePurge() {
        return Optional.ofNullable(this.enablePurge);
    }
    /**
     * @return A boolean value that indicates if the streaming ingest is enabled.
     * 
     */
    public Optional enableStreamingIngest() {
        return Optional.ofNullable(this.enableStreamingIngest);
    }
    /**
     * @return A unique read-only string that changes whenever the resource is updated.
     * 
     */
    public String etag() {
        return this.etag;
    }
    /**
     * @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
     * 
     */
    public String id() {
        return this.id;
    }
    /**
     * @return List of the Kusto Pool's language extensions.
     * 
     */
    public LanguageExtensionsListResponse languageExtensions() {
        return this.languageExtensions;
    }
    /**
     * @return The geo-location where the resource lives
     * 
     */
    public String location() {
        return this.location;
    }
    /**
     * @return The name of the resource
     * 
     */
    public String name() {
        return this.name;
    }
    /**
     * @return Optimized auto scale definition.
     * 
     */
    public Optional optimizedAutoscale() {
        return Optional.ofNullable(this.optimizedAutoscale);
    }
    /**
     * @return The provisioned state of the resource.
     * 
     */
    public String provisioningState() {
        return this.provisioningState;
    }
    /**
     * @return The SKU of the kusto pool.
     * 
     */
    public AzureSkuResponse sku() {
        return this.sku;
    }
    /**
     * @return The state of the resource.
     * 
     */
    public String state() {
        return this.state;
    }
    /**
     * @return The reason for the Kusto Pool's current state.
     * 
     */
    public String stateReason() {
        return this.stateReason;
    }
    /**
     * @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
     * 
     */
    public SystemDataResponse systemData() {
        return this.systemData;
    }
    /**
     * @return Resource tags.
     * 
     */
    public Map tags() {
        return this.tags == null ? Map.of() : this.tags;
    }
    /**
     * @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
     * 
     */
    public String type() {
        return this.type;
    }
    /**
     * @return The Kusto Pool URI.
     * 
     */
    public String uri() {
        return this.uri;
    }
    /**
     * @return The workspace unique identifier.
     * 
     */
    public Optional workspaceUID() {
        return Optional.ofNullable(this.workspaceUID);
    }

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

    public static Builder builder(GetKustoPoolResult defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String dataIngestionUri;
        private @Nullable Boolean enablePurge;
        private @Nullable Boolean enableStreamingIngest;
        private String etag;
        private String id;
        private LanguageExtensionsListResponse languageExtensions;
        private String location;
        private String name;
        private @Nullable OptimizedAutoscaleResponse optimizedAutoscale;
        private String provisioningState;
        private AzureSkuResponse sku;
        private String state;
        private String stateReason;
        private SystemDataResponse systemData;
        private @Nullable Map tags;
        private String type;
        private String uri;
        private @Nullable String workspaceUID;
        public Builder() {}
        public Builder(GetKustoPoolResult defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.dataIngestionUri = defaults.dataIngestionUri;
    	      this.enablePurge = defaults.enablePurge;
    	      this.enableStreamingIngest = defaults.enableStreamingIngest;
    	      this.etag = defaults.etag;
    	      this.id = defaults.id;
    	      this.languageExtensions = defaults.languageExtensions;
    	      this.location = defaults.location;
    	      this.name = defaults.name;
    	      this.optimizedAutoscale = defaults.optimizedAutoscale;
    	      this.provisioningState = defaults.provisioningState;
    	      this.sku = defaults.sku;
    	      this.state = defaults.state;
    	      this.stateReason = defaults.stateReason;
    	      this.systemData = defaults.systemData;
    	      this.tags = defaults.tags;
    	      this.type = defaults.type;
    	      this.uri = defaults.uri;
    	      this.workspaceUID = defaults.workspaceUID;
        }

        @CustomType.Setter
        public Builder dataIngestionUri(String dataIngestionUri) {
            if (dataIngestionUri == null) {
              throw new MissingRequiredPropertyException("GetKustoPoolResult", "dataIngestionUri");
            }
            this.dataIngestionUri = dataIngestionUri;
            return this;
        }
        @CustomType.Setter
        public Builder enablePurge(@Nullable Boolean enablePurge) {

            this.enablePurge = enablePurge;
            return this;
        }
        @CustomType.Setter
        public Builder enableStreamingIngest(@Nullable Boolean enableStreamingIngest) {

            this.enableStreamingIngest = enableStreamingIngest;
            return this;
        }
        @CustomType.Setter
        public Builder etag(String etag) {
            if (etag == null) {
              throw new MissingRequiredPropertyException("GetKustoPoolResult", "etag");
            }
            this.etag = etag;
            return this;
        }
        @CustomType.Setter
        public Builder id(String id) {
            if (id == null) {
              throw new MissingRequiredPropertyException("GetKustoPoolResult", "id");
            }
            this.id = id;
            return this;
        }
        @CustomType.Setter
        public Builder languageExtensions(LanguageExtensionsListResponse languageExtensions) {
            if (languageExtensions == null) {
              throw new MissingRequiredPropertyException("GetKustoPoolResult", "languageExtensions");
            }
            this.languageExtensions = languageExtensions;
            return this;
        }
        @CustomType.Setter
        public Builder location(String location) {
            if (location == null) {
              throw new MissingRequiredPropertyException("GetKustoPoolResult", "location");
            }
            this.location = location;
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("GetKustoPoolResult", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder optimizedAutoscale(@Nullable OptimizedAutoscaleResponse optimizedAutoscale) {

            this.optimizedAutoscale = optimizedAutoscale;
            return this;
        }
        @CustomType.Setter
        public Builder provisioningState(String provisioningState) {
            if (provisioningState == null) {
              throw new MissingRequiredPropertyException("GetKustoPoolResult", "provisioningState");
            }
            this.provisioningState = provisioningState;
            return this;
        }
        @CustomType.Setter
        public Builder sku(AzureSkuResponse sku) {
            if (sku == null) {
              throw new MissingRequiredPropertyException("GetKustoPoolResult", "sku");
            }
            this.sku = sku;
            return this;
        }
        @CustomType.Setter
        public Builder state(String state) {
            if (state == null) {
              throw new MissingRequiredPropertyException("GetKustoPoolResult", "state");
            }
            this.state = state;
            return this;
        }
        @CustomType.Setter
        public Builder stateReason(String stateReason) {
            if (stateReason == null) {
              throw new MissingRequiredPropertyException("GetKustoPoolResult", "stateReason");
            }
            this.stateReason = stateReason;
            return this;
        }
        @CustomType.Setter
        public Builder systemData(SystemDataResponse systemData) {
            if (systemData == null) {
              throw new MissingRequiredPropertyException("GetKustoPoolResult", "systemData");
            }
            this.systemData = systemData;
            return this;
        }
        @CustomType.Setter
        public Builder tags(@Nullable Map tags) {

            this.tags = tags;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("GetKustoPoolResult", "type");
            }
            this.type = type;
            return this;
        }
        @CustomType.Setter
        public Builder uri(String uri) {
            if (uri == null) {
              throw new MissingRequiredPropertyException("GetKustoPoolResult", "uri");
            }
            this.uri = uri;
            return this;
        }
        @CustomType.Setter
        public Builder workspaceUID(@Nullable String workspaceUID) {

            this.workspaceUID = workspaceUID;
            return this;
        }
        public GetKustoPoolResult build() {
            final var _resultValue = new GetKustoPoolResult();
            _resultValue.dataIngestionUri = dataIngestionUri;
            _resultValue.enablePurge = enablePurge;
            _resultValue.enableStreamingIngest = enableStreamingIngest;
            _resultValue.etag = etag;
            _resultValue.id = id;
            _resultValue.languageExtensions = languageExtensions;
            _resultValue.location = location;
            _resultValue.name = name;
            _resultValue.optimizedAutoscale = optimizedAutoscale;
            _resultValue.provisioningState = provisioningState;
            _resultValue.sku = sku;
            _resultValue.state = state;
            _resultValue.stateReason = stateReason;
            _resultValue.systemData = systemData;
            _resultValue.tags = tags;
            _resultValue.type = type;
            _resultValue.uri = uri;
            _resultValue.workspaceUID = workspaceUID;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy