
com.pulumi.azurenative.providerhub.inputs.GetNotificationRegistrationPlainArgs 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.providerhub.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetNotificationRegistrationPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetNotificationRegistrationPlainArgs Empty = new GetNotificationRegistrationPlainArgs();
/**
* The notification registration.
*
*/
@Import(name="notificationRegistrationName", required=true)
private String notificationRegistrationName;
/**
* @return The notification registration.
*
*/
public String notificationRegistrationName() {
return this.notificationRegistrationName;
}
/**
* The name of the resource provider hosted within ProviderHub.
*
*/
@Import(name="providerNamespace", required=true)
private String providerNamespace;
/**
* @return The name of the resource provider hosted within ProviderHub.
*
*/
public String providerNamespace() {
return this.providerNamespace;
}
private GetNotificationRegistrationPlainArgs() {}
private GetNotificationRegistrationPlainArgs(GetNotificationRegistrationPlainArgs $) {
this.notificationRegistrationName = $.notificationRegistrationName;
this.providerNamespace = $.providerNamespace;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetNotificationRegistrationPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetNotificationRegistrationPlainArgs $;
public Builder() {
$ = new GetNotificationRegistrationPlainArgs();
}
public Builder(GetNotificationRegistrationPlainArgs defaults) {
$ = new GetNotificationRegistrationPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param notificationRegistrationName The notification registration.
*
* @return builder
*
*/
public Builder notificationRegistrationName(String notificationRegistrationName) {
$.notificationRegistrationName = notificationRegistrationName;
return this;
}
/**
* @param providerNamespace The name of the resource provider hosted within ProviderHub.
*
* @return builder
*
*/
public Builder providerNamespace(String providerNamespace) {
$.providerNamespace = providerNamespace;
return this;
}
public GetNotificationRegistrationPlainArgs build() {
if ($.notificationRegistrationName == null) {
throw new MissingRequiredPropertyException("GetNotificationRegistrationPlainArgs", "notificationRegistrationName");
}
if ($.providerNamespace == null) {
throw new MissingRequiredPropertyException("GetNotificationRegistrationPlainArgs", "providerNamespace");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy