
com.pulumi.azurenative.servicefabricmesh.inputs.GetSecretValuePlainArgs Maven / Gradle / Ivy
// *** 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.servicefabricmesh.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetSecretValuePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetSecretValuePlainArgs Empty = new GetSecretValuePlainArgs();
/**
* Azure resource group name
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return Azure resource group name
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* The name of the secret resource.
*
*/
@Import(name="secretResourceName", required=true)
private String secretResourceName;
/**
* @return The name of the secret resource.
*
*/
public String secretResourceName() {
return this.secretResourceName;
}
/**
* The name of the secret resource value which is typically the version identifier for the value.
*
*/
@Import(name="secretValueResourceName", required=true)
private String secretValueResourceName;
/**
* @return The name of the secret resource value which is typically the version identifier for the value.
*
*/
public String secretValueResourceName() {
return this.secretValueResourceName;
}
private GetSecretValuePlainArgs() {}
private GetSecretValuePlainArgs(GetSecretValuePlainArgs $) {
this.resourceGroupName = $.resourceGroupName;
this.secretResourceName = $.secretResourceName;
this.secretValueResourceName = $.secretValueResourceName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetSecretValuePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetSecretValuePlainArgs $;
public Builder() {
$ = new GetSecretValuePlainArgs();
}
public Builder(GetSecretValuePlainArgs defaults) {
$ = new GetSecretValuePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param resourceGroupName Azure resource group name
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param secretResourceName The name of the secret resource.
*
* @return builder
*
*/
public Builder secretResourceName(String secretResourceName) {
$.secretResourceName = secretResourceName;
return this;
}
/**
* @param secretValueResourceName The name of the secret resource value which is typically the version identifier for the value.
*
* @return builder
*
*/
public Builder secretValueResourceName(String secretValueResourceName) {
$.secretValueResourceName = secretValueResourceName;
return this;
}
public GetSecretValuePlainArgs build() {
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetSecretValuePlainArgs", "resourceGroupName");
}
if ($.secretResourceName == null) {
throw new MissingRequiredPropertyException("GetSecretValuePlainArgs", "secretResourceName");
}
if ($.secretValueResourceName == null) {
throw new MissingRequiredPropertyException("GetSecretValuePlainArgs", "secretValueResourceName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy