com.pulumi.azurenative.databasewatcher.inputs.GetAlertRuleResourcePlainArgs 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.
The newest version!
// *** 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.databasewatcher.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetAlertRuleResourcePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetAlertRuleResourcePlainArgs Empty = new GetAlertRuleResourcePlainArgs();
/**
* The alert rule proxy resource name.
*
*/
@Import(name="alertRuleResourceName", required=true)
private String alertRuleResourceName;
/**
* @return The alert rule proxy resource name.
*
*/
public String alertRuleResourceName() {
return this.alertRuleResourceName;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* The database watcher name.
*
*/
@Import(name="watcherName", required=true)
private String watcherName;
/**
* @return The database watcher name.
*
*/
public String watcherName() {
return this.watcherName;
}
private GetAlertRuleResourcePlainArgs() {}
private GetAlertRuleResourcePlainArgs(GetAlertRuleResourcePlainArgs $) {
this.alertRuleResourceName = $.alertRuleResourceName;
this.resourceGroupName = $.resourceGroupName;
this.watcherName = $.watcherName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetAlertRuleResourcePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetAlertRuleResourcePlainArgs $;
public Builder() {
$ = new GetAlertRuleResourcePlainArgs();
}
public Builder(GetAlertRuleResourcePlainArgs defaults) {
$ = new GetAlertRuleResourcePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param alertRuleResourceName The alert rule proxy resource name.
*
* @return builder
*
*/
public Builder alertRuleResourceName(String alertRuleResourceName) {
$.alertRuleResourceName = alertRuleResourceName;
return this;
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param watcherName The database watcher name.
*
* @return builder
*
*/
public Builder watcherName(String watcherName) {
$.watcherName = watcherName;
return this;
}
public GetAlertRuleResourcePlainArgs build() {
if ($.alertRuleResourceName == null) {
throw new MissingRequiredPropertyException("GetAlertRuleResourcePlainArgs", "alertRuleResourceName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetAlertRuleResourcePlainArgs", "resourceGroupName");
}
if ($.watcherName == null) {
throw new MissingRequiredPropertyException("GetAlertRuleResourcePlainArgs", "watcherName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy