
com.pulumi.azurenative.security.inputs.GetAutomationPlainArgs 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.security.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetAutomationPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetAutomationPlainArgs Empty = new GetAutomationPlainArgs();
/**
* The security automation name.
*
*/
@Import(name="automationName", required=true)
private String automationName;
/**
* @return The security automation name.
*
*/
public String automationName() {
return this.automationName;
}
/**
* The name of the resource group within the user's subscription. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group within the user's subscription. The name is case insensitive.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private GetAutomationPlainArgs() {}
private GetAutomationPlainArgs(GetAutomationPlainArgs $) {
this.automationName = $.automationName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetAutomationPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetAutomationPlainArgs $;
public Builder() {
$ = new GetAutomationPlainArgs();
}
public Builder(GetAutomationPlainArgs defaults) {
$ = new GetAutomationPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param automationName The security automation name.
*
* @return builder
*
*/
public Builder automationName(String automationName) {
$.automationName = automationName;
return this;
}
/**
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public GetAutomationPlainArgs build() {
if ($.automationName == null) {
throw new MissingRequiredPropertyException("GetAutomationPlainArgs", "automationName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetAutomationPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy