| 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.deploymentmanager.v2; | 3 library googleapis.deploymentmanager.v2; |
| 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:crypto/crypto.dart' as crypto; | 10 import 'package:crypto/crypto.dart' as crypto; |
| (...skipping 1652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1663 * operations. This should not be used to guess at when the operation will be | 1663 * operations. This should not be used to guess at when the operation will be |
| 1664 * complete. This number should monotonically increase as the operation | 1664 * complete. This number should monotonically increase as the operation |
| 1665 * progresses. | 1665 * progresses. |
| 1666 */ | 1666 */ |
| 1667 core.int progress; | 1667 core.int progress; |
| 1668 /** | 1668 /** |
| 1669 * [Output Only] URL of the region where the operation resides. Only | 1669 * [Output Only] URL of the region where the operation resides. Only |
| 1670 * applicable for regional resources. | 1670 * applicable for regional resources. |
| 1671 */ | 1671 */ |
| 1672 core.String region; | 1672 core.String region; |
| 1673 /** [Output Only] Server defined URL for the resource. */ | 1673 /** [Output Only] Server-defined URL for the resource. */ |
| 1674 core.String selfLink; | 1674 core.String selfLink; |
| 1675 /** | 1675 /** |
| 1676 * [Output Only] The time that this operation was started by the server. This | 1676 * [Output Only] The time that this operation was started by the server. This |
| 1677 * is in RFC3339 text format. | 1677 * is in RFC3339 text format. |
| 1678 */ | 1678 */ |
| 1679 core.String startTime; | 1679 core.String startTime; |
| 1680 /** | 1680 /** |
| 1681 * [Output Only] Status of the operation. Can be one of the following: | 1681 * [Output Only] Status of the operation. Can be one of the following: |
| 1682 * PENDING, RUNNING, or DONE. | 1682 * PENDING, RUNNING, or DONE. |
| 1683 */ | 1683 */ |
| (...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2408 var _json = new core.Map(); | 2408 var _json = new core.Map(); |
| 2409 if (nextPageToken != null) { | 2409 if (nextPageToken != null) { |
| 2410 _json["nextPageToken"] = nextPageToken; | 2410 _json["nextPageToken"] = nextPageToken; |
| 2411 } | 2411 } |
| 2412 if (types != null) { | 2412 if (types != null) { |
| 2413 _json["types"] = types.map((value) => (value).toJson()).toList(); | 2413 _json["types"] = types.map((value) => (value).toJson()).toList(); |
| 2414 } | 2414 } |
| 2415 return _json; | 2415 return _json; |
| 2416 } | 2416 } |
| 2417 } | 2417 } |
| OLD | NEW |