
com.pulumi.azurenative.offazure.outputs.GetSqlSitesControllerResult 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.offazure.outputs;
import com.pulumi.azurenative.offazure.outputs.SiteAppliancePropertiesResponse;
import com.pulumi.azurenative.offazure.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetSqlSitesControllerResult {
/**
* @return Gets or sets the discovery scenario.
*
*/
private @Nullable String discoveryScenario;
/**
* @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*
*/
private String id;
/**
* @return The name of the resource
*
*/
private String name;
/**
* @return provisioning state enum
*
*/
private String provisioningState;
/**
* @return Gets the service endpoint.
*
*/
private String serviceEndpoint;
/**
* @return Gets or sets the appliance details used by service to communicate
*
* to the appliance.
*
*/
private @Nullable List siteAppliancePropertiesCollection;
/**
* @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
private SystemDataResponse systemData;
/**
* @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
private String type;
private GetSqlSitesControllerResult() {}
/**
* @return Gets or sets the discovery scenario.
*
*/
public Optional discoveryScenario() {
return Optional.ofNullable(this.discoveryScenario);
}
/**
* @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*
*/
public String id() {
return this.id;
}
/**
* @return The name of the resource
*
*/
public String name() {
return this.name;
}
/**
* @return provisioning state enum
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @return Gets the service endpoint.
*
*/
public String serviceEndpoint() {
return this.serviceEndpoint;
}
/**
* @return Gets or sets the appliance details used by service to communicate
*
* to the appliance.
*
*/
public List siteAppliancePropertiesCollection() {
return this.siteAppliancePropertiesCollection == null ? List.of() : this.siteAppliancePropertiesCollection;
}
/**
* @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
public SystemDataResponse systemData() {
return this.systemData;
}
/**
* @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetSqlSitesControllerResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String discoveryScenario;
private String id;
private String name;
private String provisioningState;
private String serviceEndpoint;
private @Nullable List siteAppliancePropertiesCollection;
private SystemDataResponse systemData;
private String type;
public Builder() {}
public Builder(GetSqlSitesControllerResult defaults) {
Objects.requireNonNull(defaults);
this.discoveryScenario = defaults.discoveryScenario;
this.id = defaults.id;
this.name = defaults.name;
this.provisioningState = defaults.provisioningState;
this.serviceEndpoint = defaults.serviceEndpoint;
this.siteAppliancePropertiesCollection = defaults.siteAppliancePropertiesCollection;
this.systemData = defaults.systemData;
this.type = defaults.type;
}
@CustomType.Setter
public Builder discoveryScenario(@Nullable String discoveryScenario) {
this.discoveryScenario = discoveryScenario;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetSqlSitesControllerResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetSqlSitesControllerResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder provisioningState(String provisioningState) {
if (provisioningState == null) {
throw new MissingRequiredPropertyException("GetSqlSitesControllerResult", "provisioningState");
}
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder serviceEndpoint(String serviceEndpoint) {
if (serviceEndpoint == null) {
throw new MissingRequiredPropertyException("GetSqlSitesControllerResult", "serviceEndpoint");
}
this.serviceEndpoint = serviceEndpoint;
return this;
}
@CustomType.Setter
public Builder siteAppliancePropertiesCollection(@Nullable List siteAppliancePropertiesCollection) {
this.siteAppliancePropertiesCollection = siteAppliancePropertiesCollection;
return this;
}
public Builder siteAppliancePropertiesCollection(SiteAppliancePropertiesResponse... siteAppliancePropertiesCollection) {
return siteAppliancePropertiesCollection(List.of(siteAppliancePropertiesCollection));
}
@CustomType.Setter
public Builder systemData(SystemDataResponse systemData) {
if (systemData == null) {
throw new MissingRequiredPropertyException("GetSqlSitesControllerResult", "systemData");
}
this.systemData = systemData;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetSqlSitesControllerResult", "type");
}
this.type = type;
return this;
}
public GetSqlSitesControllerResult build() {
final var _resultValue = new GetSqlSitesControllerResult();
_resultValue.discoveryScenario = discoveryScenario;
_resultValue.id = id;
_resultValue.name = name;
_resultValue.provisioningState = provisioningState;
_resultValue.serviceEndpoint = serviceEndpoint;
_resultValue.siteAppliancePropertiesCollection = siteAppliancePropertiesCollection;
_resultValue.systemData = systemData;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy