GoogleCloudAiplatformV1ReasoningEngineSpecDeploymentSpecAgentGatewayConfig.fromJson constructor
GoogleCloudAiplatformV1ReasoningEngineSpecDeploymentSpecAgentGatewayConfig.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1ReasoningEngineSpecDeploymentSpecAgentGatewayConfig.fromJson(
core.Map json_,
) : this(
agentToAnywhereConfig: json_.containsKey('agentToAnywhereConfig')
? GoogleCloudAiplatformV1ReasoningEngineSpecDeploymentSpecAgentGatewayConfigAgentToAnywhereConfig.fromJson(
json_['agentToAnywhereConfig']
as core.Map<core.String, core.dynamic>,
)
: null,
clientToAgentConfig: json_.containsKey('clientToAgentConfig')
? GoogleCloudAiplatformV1ReasoningEngineSpecDeploymentSpecAgentGatewayConfigClientToAgentConfig.fromJson(
json_['clientToAgentConfig']
as core.Map<core.String, core.dynamic>,
)
: null,
);