Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.01 KB

File metadata and controls

28 lines (21 loc) · 1.01 KB

V1UserSubject

UserSubject holds detailed information for user-kind subject.

Properties

Name Type Description Notes
name str `name` is the username that matches, or "*" to match all usernames. Required.

Example

from kubernetes.client.models.v1_user_subject import V1UserSubject

# TODO update the JSON string below
json = "{}"
# create an instance of V1UserSubject from a JSON string
v1_user_subject_instance = V1UserSubject.from_json(json)
# print the JSON string representation of the object
print(V1UserSubject.to_json())

# convert the object into a dict
v1_user_subject_dict = v1_user_subject_instance.to_dict()
# create an instance of V1UserSubject from a dict
v1_user_subject_from_dict = V1UserSubject.from_dict(v1_user_subject_dict)

[Back to Model list] [Back to API list] [Back to README]