StartIPRotationRequest.fromJson constructor

StartIPRotationRequest.fromJson(
  1. Map json_
)

Implementation

StartIPRotationRequest.fromJson(core.Map json_)
    : this(
        clusterId: json_.containsKey('clusterId')
            ? json_['clusterId'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        projectId: json_.containsKey('projectId')
            ? json_['projectId'] as core.String
            : null,
        rotateCredentials: json_.containsKey('rotateCredentials')
            ? json_['rotateCredentials'] as core.bool
            : null,
        zone: json_.containsKey('zone') ? json_['zone'] as core.String : null,
      );