com.pulumi.azure.storage.outputs.TableAcl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.storage.outputs;
import com.pulumi.azure.storage.outputs.TableAclAccessPolicy;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class TableAcl {
/**
* @return An `access_policy` block as defined below.
*
*/
private @Nullable List accessPolicies;
/**
* @return The ID which should be used for this Shared Identifier.
*
*/
private String id;
private TableAcl() {}
/**
* @return An `access_policy` block as defined below.
*
*/
public List accessPolicies() {
return this.accessPolicies == null ? List.of() : this.accessPolicies;
}
/**
* @return The ID which should be used for this Shared Identifier.
*
*/
public String id() {
return this.id;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(TableAcl defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List accessPolicies;
private String id;
public Builder() {}
public Builder(TableAcl defaults) {
Objects.requireNonNull(defaults);
this.accessPolicies = defaults.accessPolicies;
this.id = defaults.id;
}
@CustomType.Setter
public Builder accessPolicies(@Nullable List accessPolicies) {
this.accessPolicies = accessPolicies;
return this;
}
public Builder accessPolicies(TableAclAccessPolicy... accessPolicies) {
return accessPolicies(List.of(accessPolicies));
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("TableAcl", "id");
}
this.id = id;
return this;
}
public TableAcl build() {
final var _resultValue = new TableAcl();
_resultValue.accessPolicies = accessPolicies;
_resultValue.id = id;
return _resultValue;
}
}
}