com.pulumi.azurenative.storage.inputs.ListLocalUserKeysPlainArgs 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.
The newest version!
// *** 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.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class ListLocalUserKeysPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final ListLocalUserKeysPlainArgs Empty = new ListLocalUserKeysPlainArgs();
/**
* 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 String 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 String accountName() {
return this.accountName;
}
/**
* 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;
}
/**
* The name of local user. The username must contain lowercase letters and numbers only. It must be unique only within the storage account.
*
*/
@Import(name="username", required=true)
private String username;
/**
* @return The name of local user. The username must contain lowercase letters and numbers only. It must be unique only within the storage account.
*
*/
public String username() {
return this.username;
}
private ListLocalUserKeysPlainArgs() {}
private ListLocalUserKeysPlainArgs(ListLocalUserKeysPlainArgs $) {
this.accountName = $.accountName;
this.resourceGroupName = $.resourceGroupName;
this.username = $.username;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ListLocalUserKeysPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ListLocalUserKeysPlainArgs $;
public Builder() {
$ = new ListLocalUserKeysPlainArgs();
}
public Builder(ListLocalUserKeysPlainArgs defaults) {
$ = new ListLocalUserKeysPlainArgs(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(String accountName) {
$.accountName = accountName;
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;
}
/**
* @param username The name of local user. The username must contain lowercase letters and numbers only. It must be unique only within the storage account.
*
* @return builder
*
*/
public Builder username(String username) {
$.username = username;
return this;
}
public ListLocalUserKeysPlainArgs build() {
if ($.accountName == null) {
throw new MissingRequiredPropertyException("ListLocalUserKeysPlainArgs", "accountName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("ListLocalUserKeysPlainArgs", "resourceGroupName");
}
if ($.username == null) {
throw new MissingRequiredPropertyException("ListLocalUserKeysPlainArgs", "username");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy