GoogleCloudAiplatformV1PrivateServiceConnectConfig.fromJson constructor
GoogleCloudAiplatformV1PrivateServiceConnectConfig.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1PrivateServiceConnectConfig.fromJson(core.Map json_)
: this(
enablePrivateServiceConnect:
json_.containsKey('enablePrivateServiceConnect')
? json_['enablePrivateServiceConnect'] as core.bool
: null,
projectAllowlist: json_.containsKey('projectAllowlist')
? (json_['projectAllowlist'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);