| OLD | NEW |
| 1 // This is a generated file (see the discoveryapis_generator project). | 1 // This is a generated file (see the discoveryapis_generator project). |
| 2 | 2 |
| 3 library googleapis.servicemanagement.v1; | 3 library googleapis.servicemanagement.v1; |
| 4 | 4 |
| 5 import 'dart:core' as core; | 5 import 'dart:core' as core; |
| 6 import 'dart:async' as async; | 6 import 'dart:async' as async; |
| 7 import 'dart:convert' as convert; | 7 import 'dart:convert' as convert; |
| 8 | 8 |
| 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; | 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; |
| 10 import 'package:http/http.dart' as http_1; | 10 import 'package:http/http.dart' as http_1; |
| (...skipping 5573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5584 } | 5584 } |
| 5585 | 5585 |
| 5586 /** Represents the status of one operation step. */ | 5586 /** Represents the status of one operation step. */ |
| 5587 class Step { | 5587 class Step { |
| 5588 /** The short description of the step. */ | 5588 /** The short description of the step. */ |
| 5589 core.String description; | 5589 core.String description; |
| 5590 /** | 5590 /** |
| 5591 * The status code. | 5591 * The status code. |
| 5592 * Possible string values are: | 5592 * Possible string values are: |
| 5593 * - "STATUS_UNSPECIFIED" : Unspecifed code. | 5593 * - "STATUS_UNSPECIFIED" : Unspecifed code. |
| 5594 * - "DONE" : The step has completed without errors. | 5594 * - "DONE" : The operation or step has completed without errors. |
| 5595 * - "NOT_STARTED" : The step has not started yet. | 5595 * - "NOT_STARTED" : The operation or step has not started yet. |
| 5596 * - "IN_PROGRESS" : The step is in progress. | 5596 * - "IN_PROGRESS" : The operation or step is in progress. |
| 5597 * - "FAILED" : The step has completed with errors. | 5597 * - "FAILED" : The operation or step has completed with errors. |
| 5598 * - "CANCELLED" : The step has completed with cancellation. | 5598 * - "CANCELLED" : The operation or step has completed with cancellation. |
| 5599 */ | 5599 */ |
| 5600 core.String status; | 5600 core.String status; |
| 5601 | 5601 |
| 5602 Step(); | 5602 Step(); |
| 5603 | 5603 |
| 5604 Step.fromJson(core.Map _json) { | 5604 Step.fromJson(core.Map _json) { |
| 5605 if (_json.containsKey("description")) { | 5605 if (_json.containsKey("description")) { |
| 5606 description = _json["description"]; | 5606 description = _json["description"]; |
| 5607 } | 5607 } |
| 5608 if (_json.containsKey("status")) { | 5608 if (_json.containsKey("status")) { |
| (...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6238 var _json = new core.Map(); | 6238 var _json = new core.Map(); |
| 6239 if (restriction != null) { | 6239 if (restriction != null) { |
| 6240 _json["restriction"] = restriction; | 6240 _json["restriction"] = restriction; |
| 6241 } | 6241 } |
| 6242 if (selector != null) { | 6242 if (selector != null) { |
| 6243 _json["selector"] = selector; | 6243 _json["selector"] = selector; |
| 6244 } | 6244 } |
| 6245 return _json; | 6245 return _json; |
| 6246 } | 6246 } |
| 6247 } | 6247 } |
| OLD | NEW |