com.pulumi.azurenative.communication.outputs.GetSenderUsernameResult 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.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetSenderUsernameResult {
/**
* @return The location where the SenderUsername resource data is stored at rest.
*
*/
private String dataLocation;
/**
* @return The display name for the senderUsername.
*
*/
private @Nullable String displayName;
/**
* @return Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*
*/
private String id;
/**
* @return The name of the resource
*
*/
private String name;
/**
* @return Provisioning state of the resource. Unknown is the default state for Communication Services.
*
*/
private String provisioningState;
/**
* @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;
/**
* @return A sender senderUsername to be used when sending emails.
*
*/
private String username;
private GetSenderUsernameResult() {}
/**
* @return The location where the SenderUsername resource data is stored at rest.
*
*/
public String dataLocation() {
return this.dataLocation;
}
/**
* @return The display name for the senderUsername.
*
*/
public Optional displayName() {
return Optional.ofNullable(this.displayName);
}
/**
* @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 name of the resource
*
*/
public String name() {
return this.name;
}
/**
* @return Provisioning state of the resource. Unknown is the default state for Communication Services.
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @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;
}
/**
* @return A sender senderUsername to be used when sending emails.
*
*/
public String username() {
return this.username;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetSenderUsernameResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String dataLocation;
private @Nullable String displayName;
private String id;
private String name;
private String provisioningState;
private SystemDataResponse systemData;
private String type;
private String username;
public Builder() {}
public Builder(GetSenderUsernameResult defaults) {
Objects.requireNonNull(defaults);
this.dataLocation = defaults.dataLocation;
this.displayName = defaults.displayName;
this.id = defaults.id;
this.name = defaults.name;
this.provisioningState = defaults.provisioningState;
this.systemData = defaults.systemData;
this.type = defaults.type;
this.username = defaults.username;
}
@CustomType.Setter
public Builder dataLocation(String dataLocation) {
if (dataLocation == null) {
throw new MissingRequiredPropertyException("GetSenderUsernameResult", "dataLocation");
}
this.dataLocation = dataLocation;
return this;
}
@CustomType.Setter
public Builder displayName(@Nullable String displayName) {
this.displayName = displayName;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetSenderUsernameResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetSenderUsernameResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder provisioningState(String provisioningState) {
if (provisioningState == null) {
throw new MissingRequiredPropertyException("GetSenderUsernameResult", "provisioningState");
}
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder systemData(SystemDataResponse systemData) {
if (systemData == null) {
throw new MissingRequiredPropertyException("GetSenderUsernameResult", "systemData");
}
this.systemData = systemData;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetSenderUsernameResult", "type");
}
this.type = type;
return this;
}
@CustomType.Setter
public Builder username(String username) {
if (username == null) {
throw new MissingRequiredPropertyException("GetSenderUsernameResult", "username");
}
this.username = username;
return this;
}
public GetSenderUsernameResult build() {
final var _resultValue = new GetSenderUsernameResult();
_resultValue.dataLocation = dataLocation;
_resultValue.displayName = displayName;
_resultValue.id = id;
_resultValue.name = name;
_resultValue.provisioningState = provisioningState;
_resultValue.systemData = systemData;
_resultValue.type = type;
_resultValue.username = username;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy