
com.pulumi.azurenative.web.inputs.ListContainerAppSecretsPlainArgs 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.web.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class ListContainerAppSecretsPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final ListContainerAppSecretsPlainArgs Empty = new ListContainerAppSecretsPlainArgs();
/**
* Name of the Container App.
*
*/
@Import(name="name", required=true)
private String name;
/**
* @return Name of the Container App.
*
*/
public String name() {
return this.name;
}
private ListContainerAppSecretsPlainArgs() {}
private ListContainerAppSecretsPlainArgs(ListContainerAppSecretsPlainArgs $) {
this.name = $.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ListContainerAppSecretsPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ListContainerAppSecretsPlainArgs $;
public Builder() {
$ = new ListContainerAppSecretsPlainArgs();
}
public Builder(ListContainerAppSecretsPlainArgs defaults) {
$ = new ListContainerAppSecretsPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param name Name of the Container App.
*
* @return builder
*
*/
public Builder name(String name) {
$.name = name;
return this;
}
public ListContainerAppSecretsPlainArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("ListContainerAppSecretsPlainArgs", "name");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy