
com.pulumi.azurenative.containerservice.inputs.ManagedClusterServicePrincipalProfileArgs 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.containerservice.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;
/**
* Information about a service principal identity for the cluster to use for manipulating Azure APIs.
*
*/
public final class ManagedClusterServicePrincipalProfileArgs extends com.pulumi.resources.ResourceArgs {
public static final ManagedClusterServicePrincipalProfileArgs Empty = new ManagedClusterServicePrincipalProfileArgs();
/**
* The ID for the service principal.
*
*/
@Import(name="clientId", required=true)
private Output clientId;
/**
* @return The ID for the service principal.
*
*/
public Output clientId() {
return this.clientId;
}
/**
* The secret password associated with the service principal in plain text.
*
*/
@Import(name="secret")
private @Nullable Output secret;
/**
* @return The secret password associated with the service principal in plain text.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy