UserSubject holds detailed information for user-kind subject.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | `name` is the username that matches, or "*" to match all usernames. Required. |
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)