| Name |
Type |
Description |
Notes |
| name |
str |
Name of the service account. |
|
| cloud_role |
str |
Cloud role attached to the service account. |
[optional] |
| auto_associate |
bool |
Automatically grant access to the service account for new users and groups. |
[optional] [default to False] |
from saturn_api.models.service_account_create import ServiceAccountCreate
# TODO update the JSON string below
json = "{}"
# create an instance of ServiceAccountCreate from a JSON string
service_account_create_instance = ServiceAccountCreate.from_json(json)
# print the JSON string representation of the object
print(ServiceAccountCreate.to_json())
# convert the object into a dict
service_account_create_dict = service_account_create_instance.to_dict()
# create an instance of ServiceAccountCreate from a dict
service_account_create_from_dict = ServiceAccountCreate.from_dict(service_account_create_dict)
[Back to Model list] [Back to API list] [Back to README]