Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

GatewaysListResponse.md

File metadata and controls

30 lines (21 loc) · 1.04 KB

GatewaysListResponse

GatewaysListResponse Gateway cluster identity list

Properties

Name Type Description Notes
clusters List[GwClusterIdentity] [optional]

Example

from akeyless.models.gateways_list_response import GatewaysListResponse

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

# convert the object into a dict
gateways_list_response_dict = gateways_list_response_instance.to_dict()
# create an instance of GatewaysListResponse from a dict
gateways_list_response_from_dict = GatewaysListResponse.from_dict(gateways_list_response_dict)

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