kubernetes_asyncio.client.models.v1_linux_container_user 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_linux_container_user.V1LinuxContainerUser(gid=None, supplemental_groups=None, uid=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.

attribute_map = {'gid': 'gid', 'supplemental_groups': 'supplementalGroups', 'uid': 'uid'}
property gid

Gets the gid of this V1LinuxContainerUser. # noqa: E501

GID is the primary gid initially attached to the first process in the container # noqa: E501

Returns:

The gid of this V1LinuxContainerUser. # noqa: E501

Return type:

int

openapi_types = {'gid': 'int', 'supplemental_groups': 'list[int]', 'uid': 'int'}
property supplemental_groups

Gets the supplemental_groups of this V1LinuxContainerUser. # noqa: E501

SupplementalGroups are the supplemental groups initially attached to the first process in the container # noqa: E501

Returns:

The supplemental_groups of this V1LinuxContainerUser. # noqa: E501

Return type:

list[int]

to_dict(serialize=False)

Returns the model properties as a dict

to_str()

Returns the string representation of the model

property uid

Gets the uid of this V1LinuxContainerUser. # noqa: E501

UID is the primary uid initially attached to the first process in the container # noqa: E501

Returns:

The uid of this V1LinuxContainerUser. # noqa: E501

Return type:

int