
com.pulumi.azurenative.servicelinker.inputs.SecretAuthInfoArgs 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.inputs;
import com.pulumi.azurenative.servicelinker.inputs.KeyVaultSecretReferenceSecretInfoArgs;
import com.pulumi.azurenative.servicelinker.inputs.KeyVaultSecretUriSecretInfoArgs;
import com.pulumi.azurenative.servicelinker.inputs.ValueSecretInfoArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
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;
/**
* The authentication info when authType is secret
*
*/
public final class SecretAuthInfoArgs extends com.pulumi.resources.ResourceArgs {
public static final SecretAuthInfoArgs Empty = new SecretAuthInfoArgs();
/**
* The authentication type.
* Expected value is 'secret'.
*
*/
@Import(name="authType", required=true)
private Output authType;
/**
* @return The authentication type.
* Expected value is 'secret'.
*
*/
public Output authType() {
return this.authType;
}
/**
* Username or account name for secret auth.
*
*/
@Import(name="name")
private @Nullable Output name;
/**
* @return Username or account name for secret auth.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy