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