Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.28 KB

File metadata and controls

33 lines (25 loc) · 1.28 KB

CreateAgentRequest

CreateAgentRequest is the request for creating an agent.

Properties

Name Type Description Notes
name str Agent name given by the user. [optional]
local_config object Configuration for local machine. [optional]
aws_config AWSConfig [optional]
gcp_config GCPConfig [optional]
azure_config AzureConfig [optional]

Example

from ri.apiclient.models.create_agent_request import CreateAgentRequest

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

# convert the object into a dict
create_agent_request_dict = create_agent_request_instance.to_dict()
# create an instance of CreateAgentRequest from a dict
create_agent_request_from_dict = CreateAgentRequest.from_dict(create_agent_request_dict)

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