Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.51 KB

File metadata and controls

36 lines (27 loc) · 1.51 KB

Jumpboxv3UpdateTenantRequest

UpdateTenantRequest message for PUT v3/tenants/{tenant_id} api.

Properties

Name Type Description Notes
external_metadata Dict[str, Tenantuserv3ExternalMetadata] External metadata. [optional]
is_inactive bool Is inactive. [optional]
is_ready bool Is ready. [optional]
name str Name. [optional]
part_number str Part number. [optional]
tenant_id str Tenant id. [optional]
uid str Email. [optional]

Example

from ibm_gdsc_sdk_saas.models.jumpboxv3_update_tenant_request import Jumpboxv3UpdateTenantRequest

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

# convert the object into a dict
jumpboxv3_update_tenant_request_dict = jumpboxv3_update_tenant_request_instance.to_dict()
# create an instance of Jumpboxv3UpdateTenantRequest from a dict
jumpboxv3_update_tenant_request_from_dict = Jumpboxv3UpdateTenantRequest.from_dict(jumpboxv3_update_tenant_request_dict)

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