
com.pulumi.azurenative.datalakeanalytics.inputs.GetComputePolicyPlainArgs 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.datalakeanalytics.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetComputePolicyPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetComputePolicyPlainArgs Empty = new GetComputePolicyPlainArgs();
/**
* The name of the Data Lake Analytics account.
*
*/
@Import(name="accountName", required=true)
private String accountName;
/**
* @return The name of the Data Lake Analytics account.
*
*/
public String accountName() {
return this.accountName;
}
/**
* The name of the compute policy to retrieve.
*
*/
@Import(name="computePolicyName", required=true)
private String computePolicyName;
/**
* @return The name of the compute policy to retrieve.
*
*/
public String computePolicyName() {
return this.computePolicyName;
}
/**
* The name of the Azure resource group.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the Azure resource group.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private GetComputePolicyPlainArgs() {}
private GetComputePolicyPlainArgs(GetComputePolicyPlainArgs $) {
this.accountName = $.accountName;
this.computePolicyName = $.computePolicyName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetComputePolicyPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetComputePolicyPlainArgs $;
public Builder() {
$ = new GetComputePolicyPlainArgs();
}
public Builder(GetComputePolicyPlainArgs defaults) {
$ = new GetComputePolicyPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param accountName The name of the Data Lake Analytics account.
*
* @return builder
*
*/
public Builder accountName(String accountName) {
$.accountName = accountName;
return this;
}
/**
* @param computePolicyName The name of the compute policy to retrieve.
*
* @return builder
*
*/
public Builder computePolicyName(String computePolicyName) {
$.computePolicyName = computePolicyName;
return this;
}
/**
* @param resourceGroupName The name of the Azure resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public GetComputePolicyPlainArgs build() {
if ($.accountName == null) {
throw new MissingRequiredPropertyException("GetComputePolicyPlainArgs", "accountName");
}
if ($.computePolicyName == null) {
throw new MissingRequiredPropertyException("GetComputePolicyPlainArgs", "computePolicyName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetComputePolicyPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy