kubernetes_asyncio.client.models.v1_service_account module

Kubernetes

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501

The version of the OpenAPI document: v1.34.3 Generated by: https://openapi-generator.tech

class kubernetes_asyncio.client.models.v1_service_account.V1ServiceAccount(api_version=None, automount_service_account_token=None, image_pull_secrets=None, kind=None, metadata=None, secrets=None, local_vars_configuration=None)

Bases: object

NOTE: This class is auto generated by OpenAPI Generator. Ref: https://openapi-generator.tech

Do not edit the class manually.

property api_version

Gets the api_version of this V1ServiceAccount. # noqa: E501

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources # noqa: E501

Returns:

The api_version of this V1ServiceAccount. # noqa: E501

Return type:

str

attribute_map = {'api_version': 'apiVersion', 'automount_service_account_token': 'automountServiceAccountToken', 'image_pull_secrets': 'imagePullSecrets', 'kind': 'kind', 'metadata': 'metadata', 'secrets': 'secrets'}
property automount_service_account_token

Gets the automount_service_account_token of this V1ServiceAccount. # noqa: E501

AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level. # noqa: E501

Returns:

The automount_service_account_token of this V1ServiceAccount. # noqa: E501

Return type:

bool

property image_pull_secrets

Gets the image_pull_secrets of this V1ServiceAccount. # noqa: E501

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 # noqa: E501

Returns:

The image_pull_secrets of this V1ServiceAccount. # noqa: E501

Return type:

list[V1LocalObjectReference]

property kind

Gets the kind of this V1ServiceAccount. # noqa: E501

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds # noqa: E501

Returns:

The kind of this V1ServiceAccount. # noqa: E501

Return type:

str

property metadata

Gets the metadata of this V1ServiceAccount. # noqa: E501

Returns:

The metadata of this V1ServiceAccount. # noqa: E501

Return type:

V1ObjectMeta

openapi_types = {'api_version': 'str', 'automount_service_account_token': 'bool', 'image_pull_secrets': 'list[V1LocalObjectReference]', 'kind': 'str', 'metadata': 'V1ObjectMeta', 'secrets': 'list[V1ObjectReference]'}
property secrets

Gets the secrets of this V1ServiceAccount. # noqa: E501

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”. The “kubernetes.io/enforce-mountable-secrets” annotation is deprecated since v1.32. Prefer separate namespaces to isolate access to mounted secrets. 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 # noqa: E501

Returns:

The secrets of this V1ServiceAccount. # noqa: E501

Return type:

list[V1ObjectReference]

to_dict(serialize=False)

Returns the model properties as a dict

to_str()

Returns the string representation of the model