
com.pulumi.azurenative.storage.inputs.GetBlobContainerImmutabilityPolicyArgs 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.storage.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 GetBlobContainerImmutabilityPolicyArgs extends com.pulumi.resources.InvokeArgs {
public static final GetBlobContainerImmutabilityPolicyArgs Empty = new GetBlobContainerImmutabilityPolicyArgs();
/**
* The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
*
*/
@Import(name="accountName", required=true)
private Output accountName;
/**
* @return The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
*
*/
public Output accountName() {
return this.accountName;
}
/**
* The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
*
*/
@Import(name="containerName", required=true)
private Output containerName;
/**
* @return The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
*
*/
public Output containerName() {
return this.containerName;
}
/**
* The name of the blob container immutabilityPolicy within the specified storage account. ImmutabilityPolicy Name must be 'default'
*
*/
@Import(name="immutabilityPolicyName", required=true)
private Output immutabilityPolicyName;
/**
* @return The name of the blob container immutabilityPolicy within the specified storage account. ImmutabilityPolicy Name must be 'default'
*
*/
public Output immutabilityPolicyName() {
return this.immutabilityPolicyName;
}
/**
* The name of the resource group within the user's subscription. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group within the user's subscription. The name is case insensitive.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
private GetBlobContainerImmutabilityPolicyArgs() {}
private GetBlobContainerImmutabilityPolicyArgs(GetBlobContainerImmutabilityPolicyArgs $) {
this.accountName = $.accountName;
this.containerName = $.containerName;
this.immutabilityPolicyName = $.immutabilityPolicyName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetBlobContainerImmutabilityPolicyArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetBlobContainerImmutabilityPolicyArgs $;
public Builder() {
$ = new GetBlobContainerImmutabilityPolicyArgs();
}
public Builder(GetBlobContainerImmutabilityPolicyArgs defaults) {
$ = new GetBlobContainerImmutabilityPolicyArgs(Objects.requireNonNull(defaults));
}
/**
* @param accountName The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
*
* @return builder
*
*/
public Builder accountName(Output accountName) {
$.accountName = accountName;
return this;
}
/**
* @param accountName The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
*
* @return builder
*
*/
public Builder accountName(String accountName) {
return accountName(Output.of(accountName));
}
/**
* @param containerName The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
*
* @return builder
*
*/
public Builder containerName(Output containerName) {
$.containerName = containerName;
return this;
}
/**
* @param containerName The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
*
* @return builder
*
*/
public Builder containerName(String containerName) {
return containerName(Output.of(containerName));
}
/**
* @param immutabilityPolicyName The name of the blob container immutabilityPolicy within the specified storage account. ImmutabilityPolicy Name must be 'default'
*
* @return builder
*
*/
public Builder immutabilityPolicyName(Output immutabilityPolicyName) {
$.immutabilityPolicyName = immutabilityPolicyName;
return this;
}
/**
* @param immutabilityPolicyName The name of the blob container immutabilityPolicy within the specified storage account. ImmutabilityPolicy Name must be 'default'
*
* @return builder
*
*/
public Builder immutabilityPolicyName(String immutabilityPolicyName) {
return immutabilityPolicyName(Output.of(immutabilityPolicyName));
}
/**
* @param resourceGroupName The name of the resource group within the user's subscription. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
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) {
return resourceGroupName(Output.of(resourceGroupName));
}
public GetBlobContainerImmutabilityPolicyArgs build() {
if ($.accountName == null) {
throw new MissingRequiredPropertyException("GetBlobContainerImmutabilityPolicyArgs", "accountName");
}
if ($.containerName == null) {
throw new MissingRequiredPropertyException("GetBlobContainerImmutabilityPolicyArgs", "containerName");
}
if ($.immutabilityPolicyName == null) {
throw new MissingRequiredPropertyException("GetBlobContainerImmutabilityPolicyArgs", "immutabilityPolicyName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetBlobContainerImmutabilityPolicyArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy