com.pulumi.vault.pkiSecret.inputs.GetBackendIssuersArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vault Show documentation
Show all versions of vault Show documentation
A Pulumi package for creating and managing HashiCorp Vault cloud 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.vault.pkiSecret.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;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetBackendIssuersArgs extends com.pulumi.resources.InvokeArgs {
public static final GetBackendIssuersArgs Empty = new GetBackendIssuersArgs();
/**
* The path to the PKI secret backend to
* read the issuers from, with no leading or trailing `/`s.
*
*/
@Import(name="backend", required=true)
private Output backend;
/**
* @return The path to the PKI secret backend to
* read the issuers from, with no leading or trailing `/`s.
*
*/
public Output backend() {
return this.backend;
}
/**
* The namespace of the target resource.
* The value should not contain leading or trailing forward slashes.
* The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
* *Available only for Vault Enterprise*.
*
*/
@Import(name="namespace")
private @Nullable Output namespace;
/**
* @return The namespace of the target resource.
* The value should not contain leading or trailing forward slashes.
* The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
* *Available only for Vault Enterprise*.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy