GoogleCloudAssuredworkloadsV1ViolationRemediationInstructionsGcloud.fromJson constructor

GoogleCloudAssuredworkloadsV1ViolationRemediationInstructionsGcloud.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAssuredworkloadsV1ViolationRemediationInstructionsGcloud.fromJson(
    core.Map json_)
    : this(
        additionalLinks: json_.containsKey('additionalLinks')
            ? (json_['additionalLinks'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        gcloudCommands: json_.containsKey('gcloudCommands')
            ? (json_['gcloudCommands'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        steps: json_.containsKey('steps')
            ? (json_['steps'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );