GoogleCloudApigeeV1ApiSecurityRuntimeConfig.fromJson constructor

GoogleCloudApigeeV1ApiSecurityRuntimeConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1ApiSecurityRuntimeConfig.fromJson(core.Map json_)
  : this(
      location:
          (json_['location'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      name: json_['name'] as core.String?,
      revisionId: json_['revisionId'] as core.String?,
      uid: json_['uid'] as core.String?,
      updateTime: json_['updateTime'] as core.String?,
    );