CreateAgentRequest is the request for creating an agent.
| 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] |
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)