
com.pulumi.azurenative.offazure.outputs.GetImportSitesControllerResult 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.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
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;
@CustomType
public final class GetImportSitesControllerResult {
/**
* @return Gets or sets the ARM ID of migration hub solution for SDS.
*
*/
private @Nullable String discoverySolutionId;
/**
* @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*
*/
private String id;
/**
* @return The geo-location where the resource lives
*
*/
private String location;
/**
* @return Gets the Master Site this site is linked to.
*
*/
private String masterSiteId;
/**
* @return The name of the resource
*
*/
private String name;
/**
* @return The status of the last operation.
*
*/
private @Nullable String provisioningState;
/**
* @return Gets the service endpoint.
*
*/
private String serviceEndpoint;
/**
* @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;
private GetImportSitesControllerResult() {}
/**
* @return Gets or sets the ARM ID of migration hub solution for SDS.
*
*/
public Optional discoverySolutionId() {
return Optional.ofNullable(this.discoverySolutionId);
}
/**
* @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 geo-location where the resource lives
*
*/
public String location() {
return this.location;
}
/**
* @return Gets the Master Site this site is linked to.
*
*/
public String masterSiteId() {
return this.masterSiteId;
}
/**
* @return The name of the resource
*
*/
public String name() {
return this.name;
}
/**
* @return The status of the last operation.
*
*/
public Optional provisioningState() {
return Optional.ofNullable(this.provisioningState);
}
/**
* @return Gets the service endpoint.
*
*/
public String serviceEndpoint() {
return this.serviceEndpoint;
}
/**
* @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;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetImportSitesControllerResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String discoverySolutionId;
private String id;
private String location;
private String masterSiteId;
private String name;
private @Nullable String provisioningState;
private String serviceEndpoint;
private SystemDataResponse systemData;
private @Nullable Map tags;
private String type;
public Builder() {}
public Builder(GetImportSitesControllerResult defaults) {
Objects.requireNonNull(defaults);
this.discoverySolutionId = defaults.discoverySolutionId;
this.id = defaults.id;
this.location = defaults.location;
this.masterSiteId = defaults.masterSiteId;
this.name = defaults.name;
this.provisioningState = defaults.provisioningState;
this.serviceEndpoint = defaults.serviceEndpoint;
this.systemData = defaults.systemData;
this.tags = defaults.tags;
this.type = defaults.type;
}
@CustomType.Setter
public Builder discoverySolutionId(@Nullable String discoverySolutionId) {
this.discoverySolutionId = discoverySolutionId;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetImportSitesControllerResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder location(String location) {
if (location == null) {
throw new MissingRequiredPropertyException("GetImportSitesControllerResult", "location");
}
this.location = location;
return this;
}
@CustomType.Setter
public Builder masterSiteId(String masterSiteId) {
if (masterSiteId == null) {
throw new MissingRequiredPropertyException("GetImportSitesControllerResult", "masterSiteId");
}
this.masterSiteId = masterSiteId;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetImportSitesControllerResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder provisioningState(@Nullable String provisioningState) {
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder serviceEndpoint(String serviceEndpoint) {
if (serviceEndpoint == null) {
throw new MissingRequiredPropertyException("GetImportSitesControllerResult", "serviceEndpoint");
}
this.serviceEndpoint = serviceEndpoint;
return this;
}
@CustomType.Setter
public Builder systemData(SystemDataResponse systemData) {
if (systemData == null) {
throw new MissingRequiredPropertyException("GetImportSitesControllerResult", "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("GetImportSitesControllerResult", "type");
}
this.type = type;
return this;
}
public GetImportSitesControllerResult build() {
final var _resultValue = new GetImportSitesControllerResult();
_resultValue.discoverySolutionId = discoverySolutionId;
_resultValue.id = id;
_resultValue.location = location;
_resultValue.masterSiteId = masterSiteId;
_resultValue.name = name;
_resultValue.provisioningState = provisioningState;
_resultValue.serviceEndpoint = serviceEndpoint;
_resultValue.systemData = systemData;
_resultValue.tags = tags;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy