com.pulumi.azurenative.automation.inputs.GetWatcherArgs 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.automation.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetWatcherArgs extends com.pulumi.resources.InvokeArgs {
public static final GetWatcherArgs Empty = new GetWatcherArgs();
/**
* The name of the automation account.
*
*/
@Import(name="automationAccountName", required=true)
private Output automationAccountName;
/**
* @return The name of the automation account.
*
*/
public Output automationAccountName() {
return this.automationAccountName;
}
/**
* Name of an Azure Resource group.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return Name of an Azure Resource group.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* The watcher name.
*
*/
@Import(name="watcherName", required=true)
private Output watcherName;
/**
* @return The watcher name.
*
*/
public Output watcherName() {
return this.watcherName;
}
private GetWatcherArgs() {}
private GetWatcherArgs(GetWatcherArgs $) {
this.automationAccountName = $.automationAccountName;
this.resourceGroupName = $.resourceGroupName;
this.watcherName = $.watcherName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetWatcherArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetWatcherArgs $;
public Builder() {
$ = new GetWatcherArgs();
}
public Builder(GetWatcherArgs defaults) {
$ = new GetWatcherArgs(Objects.requireNonNull(defaults));
}
/**
* @param automationAccountName The name of the automation account.
*
* @return builder
*
*/
public Builder automationAccountName(Output automationAccountName) {
$.automationAccountName = automationAccountName;
return this;
}
/**
* @param automationAccountName The name of the automation account.
*
* @return builder
*
*/
public Builder automationAccountName(String automationAccountName) {
return automationAccountName(Output.of(automationAccountName));
}
/**
* @param resourceGroupName Name of an Azure Resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName Name of an Azure Resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
/**
* @param watcherName The watcher name.
*
* @return builder
*
*/
public Builder watcherName(Output watcherName) {
$.watcherName = watcherName;
return this;
}
/**
* @param watcherName The watcher name.
*
* @return builder
*
*/
public Builder watcherName(String watcherName) {
return watcherName(Output.of(watcherName));
}
public GetWatcherArgs build() {
if ($.automationAccountName == null) {
throw new MissingRequiredPropertyException("GetWatcherArgs", "automationAccountName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetWatcherArgs", "resourceGroupName");
}
if ($.watcherName == null) {
throw new MissingRequiredPropertyException("GetWatcherArgs", "watcherName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy