com.pulumi.azurenative.communication.outputs.GetCommunicationServiceResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.communication.outputs;
import com.pulumi.azurenative.communication.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class GetCommunicationServiceResult {
/**
* @return The location where the communication service stores its data at rest.
*
*/
private String dataLocation;
/**
* @return FQDN of the CommunicationService instance.
*
*/
private String hostName;
/**
* @return Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*
*/
private String id;
/**
* @return The immutable resource Id of the communication service.
*
*/
private String immutableResourceId;
/**
* @return List of email Domain resource Ids.
*
*/
private @Nullable List linkedDomains;
/**
* @return The geo-location where the resource lives
*
*/
private String location;
/**
* @return The name of the resource
*
*/
private String name;
/**
* @return Resource ID of an Azure Notification Hub linked to this resource.
*
*/
private String notificationHubId;
/**
* @return Provisioning state of the resource.
*
*/
private String provisioningState;
/**
* @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 Version of the CommunicationService resource. Probably you need the same or higher version of client SDKs.
*
*/
private String version;
private GetCommunicationServiceResult() {}
/**
* @return The location where the communication service stores its data at rest.
*
*/
public String dataLocation() {
return this.dataLocation;
}
/**
* @return FQDN of the CommunicationService instance.
*
*/
public String hostName() {
return this.hostName;
}
/**
* @return Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*
*/
public String id() {
return this.id;
}
/**
* @return The immutable resource Id of the communication service.
*
*/
public String immutableResourceId() {
return this.immutableResourceId;
}
/**
* @return List of email Domain resource Ids.
*
*/
public List linkedDomains() {
return this.linkedDomains == null ? List.of() : this.linkedDomains;
}
/**
* @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 Resource ID of an Azure Notification Hub linked to this resource.
*
*/
public String notificationHubId() {
return this.notificationHubId;
}
/**
* @return Provisioning state of the resource.
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @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 Version of the CommunicationService resource. Probably you need the same or higher version of client SDKs.
*
*/
public String version() {
return this.version;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetCommunicationServiceResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String dataLocation;
private String hostName;
private String id;
private String immutableResourceId;
private @Nullable List linkedDomains;
private String location;
private String name;
private String notificationHubId;
private String provisioningState;
private SystemDataResponse systemData;
private @Nullable Map tags;
private String type;
private String version;
public Builder() {}
public Builder(GetCommunicationServiceResult defaults) {
Objects.requireNonNull(defaults);
this.dataLocation = defaults.dataLocation;
this.hostName = defaults.hostName;
this.id = defaults.id;
this.immutableResourceId = defaults.immutableResourceId;
this.linkedDomains = defaults.linkedDomains;
this.location = defaults.location;
this.name = defaults.name;
this.notificationHubId = defaults.notificationHubId;
this.provisioningState = defaults.provisioningState;
this.systemData = defaults.systemData;
this.tags = defaults.tags;
this.type = defaults.type;
this.version = defaults.version;
}
@CustomType.Setter
public Builder dataLocation(String dataLocation) {
if (dataLocation == null) {
throw new MissingRequiredPropertyException("GetCommunicationServiceResult", "dataLocation");
}
this.dataLocation = dataLocation;
return this;
}
@CustomType.Setter
public Builder hostName(String hostName) {
if (hostName == null) {
throw new MissingRequiredPropertyException("GetCommunicationServiceResult", "hostName");
}
this.hostName = hostName;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetCommunicationServiceResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder immutableResourceId(String immutableResourceId) {
if (immutableResourceId == null) {
throw new MissingRequiredPropertyException("GetCommunicationServiceResult", "immutableResourceId");
}
this.immutableResourceId = immutableResourceId;
return this;
}
@CustomType.Setter
public Builder linkedDomains(@Nullable List linkedDomains) {
this.linkedDomains = linkedDomains;
return this;
}
public Builder linkedDomains(String... linkedDomains) {
return linkedDomains(List.of(linkedDomains));
}
@CustomType.Setter
public Builder location(String location) {
if (location == null) {
throw new MissingRequiredPropertyException("GetCommunicationServiceResult", "location");
}
this.location = location;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetCommunicationServiceResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder notificationHubId(String notificationHubId) {
if (notificationHubId == null) {
throw new MissingRequiredPropertyException("GetCommunicationServiceResult", "notificationHubId");
}
this.notificationHubId = notificationHubId;
return this;
}
@CustomType.Setter
public Builder provisioningState(String provisioningState) {
if (provisioningState == null) {
throw new MissingRequiredPropertyException("GetCommunicationServiceResult", "provisioningState");
}
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder systemData(SystemDataResponse systemData) {
if (systemData == null) {
throw new MissingRequiredPropertyException("GetCommunicationServiceResult", "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("GetCommunicationServiceResult", "type");
}
this.type = type;
return this;
}
@CustomType.Setter
public Builder version(String version) {
if (version == null) {
throw new MissingRequiredPropertyException("GetCommunicationServiceResult", "version");
}
this.version = version;
return this;
}
public GetCommunicationServiceResult build() {
final var _resultValue = new GetCommunicationServiceResult();
_resultValue.dataLocation = dataLocation;
_resultValue.hostName = hostName;
_resultValue.id = id;
_resultValue.immutableResourceId = immutableResourceId;
_resultValue.linkedDomains = linkedDomains;
_resultValue.location = location;
_resultValue.name = name;
_resultValue.notificationHubId = notificationHubId;
_resultValue.provisioningState = provisioningState;
_resultValue.systemData = systemData;
_resultValue.tags = tags;
_resultValue.type = type;
_resultValue.version = version;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy