GoogleCloudDataplexV1ExecutionIdentity.fromJson constructor

GoogleCloudDataplexV1ExecutionIdentity.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1ExecutionIdentity.fromJson(core.Map json_)
  : this(
      dataplexServiceAgent: json_.containsKey('dataplexServiceAgent')
          ? GoogleCloudDataplexV1ExecutionIdentityDataplexServiceAgent.fromJson(
              json_['dataplexServiceAgent']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      serviceAccount: json_.containsKey('serviceAccount')
          ? GoogleCloudDataplexV1ExecutionIdentityServiceAccount.fromJson(
              json_['serviceAccount'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      userCredential: json_.containsKey('userCredential')
          ? GoogleCloudDataplexV1ExecutionIdentityUserCredential.fromJson(
              json_['userCredential'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );