
com.pulumi.azurenative.communication.outputs.GetSuppressionListResult 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 GetSuppressionListResult {
/**
* @return The date the resource was created.
*
*/
private String createdTimeStamp;
/**
* @return The location where the SuppressionListAddress data is stored at rest. This value is inherited from the parent Domains resource.
*
*/
private String dataLocation;
/**
* @return Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*
*/
private String id;
/**
* @return The date the resource was last updated.
*
*/
private String lastUpdatedTimeStamp;
/**
* @return The the name of the suppression list. This value must match one of the valid sender usernames of the sending domain.
*
*/
private @Nullable String listName;
/**
* @return The name of the resource
*
*/
private String name;
/**
* @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 GetSuppressionListResult() {}
/**
* @return The date the resource was created.
*
*/
public String createdTimeStamp() {
return this.createdTimeStamp;
}
/**
* @return The location where the SuppressionListAddress data is stored at rest. This value is inherited from the parent Domains resource.
*
*/
public String dataLocation() {
return this.dataLocation;
}
/**
* @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 date the resource was last updated.
*
*/
public String lastUpdatedTimeStamp() {
return this.lastUpdatedTimeStamp;
}
/**
* @return The the name of the suppression list. This value must match one of the valid sender usernames of the sending domain.
*
*/
public Optional listName() {
return Optional.ofNullable(this.listName);
}
/**
* @return The name of the resource
*
*/
public String name() {
return this.name;
}
/**
* @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(GetSuppressionListResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String createdTimeStamp;
private String dataLocation;
private String id;
private String lastUpdatedTimeStamp;
private @Nullable String listName;
private String name;
private SystemDataResponse systemData;
private String type;
public Builder() {}
public Builder(GetSuppressionListResult defaults) {
Objects.requireNonNull(defaults);
this.createdTimeStamp = defaults.createdTimeStamp;
this.dataLocation = defaults.dataLocation;
this.id = defaults.id;
this.lastUpdatedTimeStamp = defaults.lastUpdatedTimeStamp;
this.listName = defaults.listName;
this.name = defaults.name;
this.systemData = defaults.systemData;
this.type = defaults.type;
}
@CustomType.Setter
public Builder createdTimeStamp(String createdTimeStamp) {
if (createdTimeStamp == null) {
throw new MissingRequiredPropertyException("GetSuppressionListResult", "createdTimeStamp");
}
this.createdTimeStamp = createdTimeStamp;
return this;
}
@CustomType.Setter
public Builder dataLocation(String dataLocation) {
if (dataLocation == null) {
throw new MissingRequiredPropertyException("GetSuppressionListResult", "dataLocation");
}
this.dataLocation = dataLocation;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetSuppressionListResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder lastUpdatedTimeStamp(String lastUpdatedTimeStamp) {
if (lastUpdatedTimeStamp == null) {
throw new MissingRequiredPropertyException("GetSuppressionListResult", "lastUpdatedTimeStamp");
}
this.lastUpdatedTimeStamp = lastUpdatedTimeStamp;
return this;
}
@CustomType.Setter
public Builder listName(@Nullable String listName) {
this.listName = listName;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetSuppressionListResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder systemData(SystemDataResponse systemData) {
if (systemData == null) {
throw new MissingRequiredPropertyException("GetSuppressionListResult", "systemData");
}
this.systemData = systemData;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetSuppressionListResult", "type");
}
this.type = type;
return this;
}
public GetSuppressionListResult build() {
final var _resultValue = new GetSuppressionListResult();
_resultValue.createdTimeStamp = createdTimeStamp;
_resultValue.dataLocation = dataLocation;
_resultValue.id = id;
_resultValue.lastUpdatedTimeStamp = lastUpdatedTimeStamp;
_resultValue.listName = listName;
_resultValue.name = name;
_resultValue.systemData = systemData;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy