GoogleCloudIntegrationsV1alphaCustomerConfig.fromJson constructor
GoogleCloudIntegrationsV1alphaCustomerConfig.fromJson(
- Map json_
Implementation
GoogleCloudIntegrationsV1alphaCustomerConfig.fromJson(core.Map json_)
: this(
cloudKmsConfig:
json_.containsKey('cloudKmsConfig')
? GoogleCloudIntegrationsV1alphaCloudKmsConfig.fromJson(
json_['cloudKmsConfig']
as core.Map<core.String, core.dynamic>,
)
: null,
enableHttpCall: json_['enableHttpCall'] as core.bool?,
enableManagedAiFeatures: json_['enableManagedAiFeatures'] as core.bool?,
enableVariableMasking: json_['enableVariableMasking'] as core.bool?,
runAsServiceAccount: json_['runAsServiceAccount'] as core.String?,
);