ConfigManagementGatekeeperDeploymentState.fromJson constructor

ConfigManagementGatekeeperDeploymentState.fromJson(
  1. Map json_
)

Implementation

ConfigManagementGatekeeperDeploymentState.fromJson(core.Map json_)
    : this(
        gatekeeperAudit: json_.containsKey('gatekeeperAudit')
            ? json_['gatekeeperAudit'] as core.String
            : null,
        gatekeeperControllerManagerState:
            json_.containsKey('gatekeeperControllerManagerState')
                ? json_['gatekeeperControllerManagerState'] as core.String
                : null,
        gatekeeperMutation: json_.containsKey('gatekeeperMutation')
            ? json_['gatekeeperMutation'] as core.String
            : null,
      );