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_beta.deploymentmanager.v2beta2; | 3 library googleapis_beta.deploymentmanager.v2beta2; |
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 1474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1485 * operations. This should not be used to guess at when the operation will be | 1485 * operations. This should not be used to guess at when the operation will be |
1486 * complete. This number should monotonically increase as the operation | 1486 * complete. This number should monotonically increase as the operation |
1487 * progresses. | 1487 * progresses. |
1488 */ | 1488 */ |
1489 core.int progress; | 1489 core.int progress; |
1490 /** | 1490 /** |
1491 * [Output Only] URL of the region where the operation resides. Only | 1491 * [Output Only] URL of the region where the operation resides. Only |
1492 * applicable for regional resources. | 1492 * applicable for regional resources. |
1493 */ | 1493 */ |
1494 core.String region; | 1494 core.String region; |
1495 /** [Output Only] Server defined URL for the resource. */ | 1495 /** [Output Only] Server-defined URL for the resource. */ |
1496 core.String selfLink; | 1496 core.String selfLink; |
1497 /** | 1497 /** |
1498 * [Output Only] The time that this operation was started by the server. This | 1498 * [Output Only] The time that this operation was started by the server. This |
1499 * is in RFC3339 text format. | 1499 * is in RFC3339 text format. |
1500 */ | 1500 */ |
1501 core.String startTime; | 1501 core.String startTime; |
1502 /** | 1502 /** |
1503 * [Output Only] Status of the operation. Can be one of the following: | 1503 * [Output Only] Status of the operation. Can be one of the following: |
1504 * PENDING, RUNNING, or DONE. | 1504 * PENDING, RUNNING, or DONE. |
1505 */ | 1505 */ |
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2008 var _json = new core.Map(); | 2008 var _json = new core.Map(); |
2009 if (nextPageToken != null) { | 2009 if (nextPageToken != null) { |
2010 _json["nextPageToken"] = nextPageToken; | 2010 _json["nextPageToken"] = nextPageToken; |
2011 } | 2011 } |
2012 if (types != null) { | 2012 if (types != null) { |
2013 _json["types"] = types.map((value) => (value).toJson()).toList(); | 2013 _json["types"] = types.map((value) => (value).toJson()).toList(); |
2014 } | 2014 } |
2015 return _json; | 2015 return _json; |
2016 } | 2016 } |
2017 } | 2017 } |
OLD | NEW |