Class KubeServiceAccountProps.Jsii$Proxy
- java.lang.Object
-
- software.amazon.jsii.JsiiObject
-
- org.cdk8s.plus24.k8s.KubeServiceAccountProps.Jsii$Proxy
-
- All Implemented Interfaces:
KubeServiceAccountProps
,software.amazon.jsii.JsiiSerializable
- Enclosing interface:
- KubeServiceAccountProps
@Stability(Stable) @Internal public static final class KubeServiceAccountProps.Jsii$Proxy extends software.amazon.jsii.JsiiObject implements KubeServiceAccountProps
An implementation forKubeServiceAccountProps
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
-
Nested classes/interfaces inherited from interface org.cdk8s.plus24.k8s.KubeServiceAccountProps
KubeServiceAccountProps.Builder, KubeServiceAccountProps.Jsii$Proxy
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
Jsii$Proxy(KubeServiceAccountProps.Builder builder)
Constructor that initializes the object based on literal property values passed by theKubeServiceAccountProps.Builder
.protected
Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
Constructor that initializes the object based on values retrieved from the JsiiObject.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.fasterxml.jackson.databind.JsonNode
$jsii$toJson()
boolean
equals(Object o)
Boolean
getAutomountServiceAccountToken()
AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted.List<LocalObjectReference>
getImagePullSecrets()
ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount.ObjectMeta
getMetadata()
Standard object's metadata.List<ObjectReference>
getSecrets()
Secrets is a list of the secrets in the same namespace that pods running using this ServiceAccount are allowed to use.int
hashCode()
-
-
-
Constructor Detail
-
Jsii$Proxy
protected Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
Constructor that initializes the object based on values retrieved from the JsiiObject.- Parameters:
objRef
- Reference to the JSII managed object.
-
Jsii$Proxy
protected Jsii$Proxy(KubeServiceAccountProps.Builder builder)
Constructor that initializes the object based on literal property values passed by theKubeServiceAccountProps.Builder
.
-
-
Method Detail
-
getAutomountServiceAccountToken
public final Boolean getAutomountServiceAccountToken()
Description copied from interface:KubeServiceAccountProps
AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted.Can be overridden at the pod level.
- Specified by:
getAutomountServiceAccountToken
in interfaceKubeServiceAccountProps
-
getImagePullSecrets
public final List<LocalObjectReference> getImagePullSecrets()
Description copied from interface:KubeServiceAccountProps
ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount.ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod
- Specified by:
getImagePullSecrets
in interfaceKubeServiceAccountProps
-
getMetadata
public final ObjectMeta getMetadata()
Description copied from interface:KubeServiceAccountProps
Standard object's metadata.More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
- Specified by:
getMetadata
in interfaceKubeServiceAccountProps
-
getSecrets
public final List<ObjectReference> getSecrets()
Description copied from interface:KubeServiceAccountProps
Secrets is a list of the secrets in the same namespace that pods running using this ServiceAccount are allowed to use.Pods are only limited to this list if this service account has a "kubernetes.io/enforce-mountable-secrets" annotation set to "true". This field should not be used to find auto-generated service account token secrets for use outside of pods. Instead, tokens can be requested directly using the TokenRequest API, or service account token secrets can be manually created. More info: https://kubernetes.io/docs/concepts/configuration/secret
- Specified by:
getSecrets
in interfaceKubeServiceAccountProps
-
$jsii$toJson
@Internal public com.fasterxml.jackson.databind.JsonNode $jsii$toJson()
- Specified by:
$jsii$toJson
in interfacesoftware.amazon.jsii.JsiiSerializable
-
-