
com.pulumi.azurenative.keyvault.AccessPolicyArgs 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.keyvault;
import com.pulumi.azurenative.keyvault.inputs.AccessPolicyEntryArgs;
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 AccessPolicyArgs extends com.pulumi.resources.ResourceArgs {
public static final AccessPolicyArgs Empty = new AccessPolicyArgs();
/**
* The definition of the access policy.
*
*/
@Import(name="policy", required=true)
private Output policy;
/**
* @return The definition of the access policy.
*
*/
public Output policy() {
return this.policy;
}
/**
* Name of the resource group that contains the vault.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return Name of the resource group that contains the vault.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* Name of the Key Vault.
*
*/
@Import(name="vaultName", required=true)
private Output vaultName;
/**
* @return Name of the Key Vault.
*
*/
public Output vaultName() {
return this.vaultName;
}
private AccessPolicyArgs() {}
private AccessPolicyArgs(AccessPolicyArgs $) {
this.policy = $.policy;
this.resourceGroupName = $.resourceGroupName;
this.vaultName = $.vaultName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AccessPolicyArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private AccessPolicyArgs $;
public Builder() {
$ = new AccessPolicyArgs();
}
public Builder(AccessPolicyArgs defaults) {
$ = new AccessPolicyArgs(Objects.requireNonNull(defaults));
}
/**
* @param policy The definition of the access policy.
*
* @return builder
*
*/
public Builder policy(Output policy) {
$.policy = policy;
return this;
}
/**
* @param policy The definition of the access policy.
*
* @return builder
*
*/
public Builder policy(AccessPolicyEntryArgs policy) {
return policy(Output.of(policy));
}
/**
* @param resourceGroupName Name of the resource group that contains the vault.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName Name of the resource group that contains the vault.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
/**
* @param vaultName Name of the Key Vault.
*
* @return builder
*
*/
public Builder vaultName(Output vaultName) {
$.vaultName = vaultName;
return this;
}
/**
* @param vaultName Name of the Key Vault.
*
* @return builder
*
*/
public Builder vaultName(String vaultName) {
return vaultName(Output.of(vaultName));
}
public AccessPolicyArgs build() {
if ($.policy == null) {
throw new MissingRequiredPropertyException("AccessPolicyArgs", "policy");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("AccessPolicyArgs", "resourceGroupName");
}
if ($.vaultName == null) {
throw new MissingRequiredPropertyException("AccessPolicyArgs", "vaultName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy