com.pulumi.azurenative.servicelinker.outputs.SecretAuthInfoResponse 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.servicelinker.outputs;
import com.pulumi.azurenative.servicelinker.outputs.KeyVaultSecretReferenceSecretInfoResponse;
import com.pulumi.azurenative.servicelinker.outputs.KeyVaultSecretUriSecretInfoResponse;
import com.pulumi.azurenative.servicelinker.outputs.ValueSecretInfoResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SecretAuthInfoResponse {
/**
* @return The authentication type.
* Expected value is 'secret'.
*
*/
private String authType;
/**
* @return Username or account name for secret auth.
*
*/
private @Nullable String name;
/**
* @return Password or key vault secret for secret auth.
*
*/
private @Nullable Object secretInfo;
private SecretAuthInfoResponse() {}
/**
* @return The authentication type.
* Expected value is 'secret'.
*
*/
public String authType() {
return this.authType;
}
/**
* @return Username or account name for secret auth.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
/**
* @return Password or key vault secret for secret auth.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy