
com.pulumi.azurenative.containerservice.inputs.ManagedClusterPodIdentityExceptionArgs 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.Map;
import java.util.Objects;
/**
* See [disable AAD Pod Identity for a specific Pod/Application](https://azure.github.io/aad-pod-identity/docs/configure/application_exception/) for more details.
*
*/
public final class ManagedClusterPodIdentityExceptionArgs extends com.pulumi.resources.ResourceArgs {
public static final ManagedClusterPodIdentityExceptionArgs Empty = new ManagedClusterPodIdentityExceptionArgs();
/**
* The name of the pod identity exception.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return The name of the pod identity exception.
*
*/
public Output name() {
return this.name;
}
/**
* The namespace of the pod identity exception.
*
*/
@Import(name="namespace", required=true)
private Output namespace;
/**
* @return The namespace of the pod identity exception.
*
*/
public Output namespace() {
return this.namespace;
}
/**
* The pod labels to match.
*
*/
@Import(name="podLabels", required=true)
private Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy