com.pulumi.azurenative.insights.outputs.AzureAppPushReceiverResponse 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.insights.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class AzureAppPushReceiverResponse {
/**
* @return The email address registered for the Azure mobile app.
*
*/
private String emailAddress;
/**
* @return The name of the Azure mobile app push receiver. Names must be unique across all receivers within a tenant action group.
*
*/
private String name;
private AzureAppPushReceiverResponse() {}
/**
* @return The email address registered for the Azure mobile app.
*
*/
public String emailAddress() {
return this.emailAddress;
}
/**
* @return The name of the Azure mobile app push receiver. Names must be unique across all receivers within a tenant action group.
*
*/
public String name() {
return this.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AzureAppPushReceiverResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String emailAddress;
private String name;
public Builder() {}
public Builder(AzureAppPushReceiverResponse defaults) {
Objects.requireNonNull(defaults);
this.emailAddress = defaults.emailAddress;
this.name = defaults.name;
}
@CustomType.Setter
public Builder emailAddress(String emailAddress) {
if (emailAddress == null) {
throw new MissingRequiredPropertyException("AzureAppPushReceiverResponse", "emailAddress");
}
this.emailAddress = emailAddress;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("AzureAppPushReceiverResponse", "name");
}
this.name = name;
return this;
}
public AzureAppPushReceiverResponse build() {
final var _resultValue = new AzureAppPushReceiverResponse();
_resultValue.emailAddress = emailAddress;
_resultValue.name = name;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy