Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Unified Diff: generated/googleapis_beta/lib/autoscaler/v1beta2.dart

Issue 698403003: Api roll 5: 2014-11-05 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: generated/googleapis_beta/lib/autoscaler/v1beta2.dart
diff --git a/generated/googleapis_beta/lib/autoscaler/v1beta2.dart b/generated/googleapis_beta/lib/autoscaler/v1beta2.dart
index 3440ba5092a230f541c556948038136761f669b2..f44c26d73a1e8b56b2e32ae369381823031ba6fb 100644
--- a/generated/googleapis_beta/lib/autoscaler/v1beta2.dart
+++ b/generated/googleapis_beta/lib/autoscaler/v1beta2.dart
@@ -29,6 +29,7 @@ class AutoscalerApi {
AutoscalersResourceApi get autoscalers => new AutoscalersResourceApi(_requester);
ZoneOperationsResourceApi get zoneOperations => new ZoneOperationsResourceApi(_requester);
+ ZonesResourceApi get zones => new ZonesResourceApi(_requester);
AutoscalerApi(http.Client client) :
_requester = new common_internal.ApiRequester(client, "https://www.googleapis.com/", "autoscaler/v1beta2/");
@@ -549,6 +550,74 @@ class ZoneOperationsResourceApi {
}
+/** Not documented yet. */
+class ZonesResourceApi {
+ final common_internal.ApiRequester _requester;
+
+ ZonesResourceApi(common_internal.ApiRequester client) :
+ _requester = client;
+
+ /**
+ * Not documented yet.
+ *
+ * Request parameters:
+ *
+ * [project] - null
+ * Value must have pattern
+ * "(?:(?:[-a-z0-9]{1,63}\.)*(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?):)?(?:[0-9]{1,19}|(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?))".
+ *
+ * [filter] - null
+ *
+ * [maxResults] - null
+ * Value must be between "0" and "500".
+ *
+ * [pageToken] - null
+ *
+ * Completes with a [ZoneList].
+ *
+ * Completes with a [common.ApiRequestError] if the API endpoint returned an
+ * error.
+ *
+ * If the used [http.Client] completes with an error when making a REST call,
+ * this method will complete with the same error.
+ */
+ async.Future<ZoneList> list(core.String project, {core.String filter, core.int maxResults, core.String pageToken}) {
+ var _url = null;
+ var _queryParams = new core.Map();
+ var _uploadMedia = null;
+ var _uploadOptions = null;
+ var _downloadOptions = common.DownloadOptions.Metadata;
+ var _body = null;
+
+ if (project == null) {
+ throw new core.ArgumentError("Parameter project is required.");
+ }
+ if (filter != null) {
+ _queryParams["filter"] = [filter];
+ }
+ if (maxResults != null) {
+ _queryParams["maxResults"] = ["${maxResults}"];
+ }
+ if (pageToken != null) {
+ _queryParams["pageToken"] = [pageToken];
+ }
+
+
+ _url = common_internal.Escaper.ecapeVariable('$project') + '/zones';
+
+ var _response = _requester.request(_url,
+ "GET",
+ body: _body,
+ queryParams: _queryParams,
+ uploadOptions: _uploadOptions,
+ uploadMedia: _uploadMedia,
+ downloadOptions: _downloadOptions);
+ return _response.then((data) => new ZoneList.fromJson(data));
+ }
+
+}
+
+
/** Cloud Autoscaler resource. */
class Autoscaler {
@@ -877,6 +946,66 @@ class AutoscalingPolicyLoadBalancingUtilization {
/** Not documented yet. */
+class DeprecationStatus {
+ /** Not documented yet. */
+ core.String deleted;
+
+ /** Not documented yet. */
+ core.String deprecated;
+
+ /** Not documented yet. */
+ core.String obsolete;
+
+ /** Not documented yet. */
+ core.String replacement;
+
+ /** Not documented yet. */
+ core.String state;
+
+
+ DeprecationStatus();
+
+ DeprecationStatus.fromJson(core.Map _json) {
+ if (_json.containsKey("deleted")) {
+ deleted = _json["deleted"];
+ }
+ if (_json.containsKey("deprecated")) {
+ deprecated = _json["deprecated"];
+ }
+ if (_json.containsKey("obsolete")) {
+ obsolete = _json["obsolete"];
+ }
+ if (_json.containsKey("replacement")) {
+ replacement = _json["replacement"];
+ }
+ if (_json.containsKey("state")) {
+ state = _json["state"];
+ }
+ }
+
+ core.Map toJson() {
+ var _json = new core.Map();
+ if (deleted != null) {
+ _json["deleted"] = deleted;
+ }
+ if (deprecated != null) {
+ _json["deprecated"] = deprecated;
+ }
+ if (obsolete != null) {
+ _json["obsolete"] = obsolete;
+ }
+ if (replacement != null) {
+ _json["replacement"] = replacement;
+ }
+ if (state != null) {
+ _json["state"] = state;
+ }
+ return _json;
+ }
+}
+
+
+/** Not documented yet. */
class OperationErrorErrors {
/** Not documented yet. */
core.String code;
@@ -1290,3 +1419,219 @@ class OperationList {
}
+/** Not documented yet. */
+class ZoneMaintenanceWindows {
+ /** Not documented yet. */
+ core.String beginTime;
+
+ /** Not documented yet. */
+ core.String description;
+
+ /** Not documented yet. */
+ core.String endTime;
+
+ /** Not documented yet. */
+ core.String name;
+
+
+ ZoneMaintenanceWindows();
+
+ ZoneMaintenanceWindows.fromJson(core.Map _json) {
+ if (_json.containsKey("beginTime")) {
+ beginTime = _json["beginTime"];
+ }
+ if (_json.containsKey("description")) {
+ description = _json["description"];
+ }
+ if (_json.containsKey("endTime")) {
+ endTime = _json["endTime"];
+ }
+ if (_json.containsKey("name")) {
+ name = _json["name"];
+ }
+ }
+
+ core.Map toJson() {
+ var _json = new core.Map();
+ if (beginTime != null) {
+ _json["beginTime"] = beginTime;
+ }
+ if (description != null) {
+ _json["description"] = description;
+ }
+ if (endTime != null) {
+ _json["endTime"] = endTime;
+ }
+ if (name != null) {
+ _json["name"] = name;
+ }
+ return _json;
+ }
+}
+
+
+/** Not documented yet. */
+class Zone {
+ /** Not documented yet. */
+ core.String creationTimestamp;
+
+ /** Not documented yet. */
+ DeprecationStatus deprecated;
+
+ /** Not documented yet. */
+ core.String description;
+
+ /** Not documented yet. */
+ core.String id;
+
+ /** Type of the resource. */
+ core.String kind;
+
+ /** Not documented yet. */
+ core.List<ZoneMaintenanceWindows> maintenanceWindows;
+
+ /** Not documented yet. */
+ core.String name;
+
+ /** Not documented yet. */
+ core.String region;
+
+ /** Server defined URL for the resource (output only). */
+ core.String selfLink;
+
+ /** Not documented yet. */
+ core.String status;
+
+
+ Zone();
+
+ Zone.fromJson(core.Map _json) {
+ if (_json.containsKey("creationTimestamp")) {
+ creationTimestamp = _json["creationTimestamp"];
+ }
+ if (_json.containsKey("deprecated")) {
+ deprecated = new DeprecationStatus.fromJson(_json["deprecated"]);
+ }
+ if (_json.containsKey("description")) {
+ description = _json["description"];
+ }
+ if (_json.containsKey("id")) {
+ id = _json["id"];
+ }
+ if (_json.containsKey("kind")) {
+ kind = _json["kind"];
+ }
+ if (_json.containsKey("maintenanceWindows")) {
+ maintenanceWindows = _json["maintenanceWindows"].map((value) => new ZoneMaintenanceWindows.fromJson(value)).toList();
+ }
+ if (_json.containsKey("name")) {
+ name = _json["name"];
+ }
+ if (_json.containsKey("region")) {
+ region = _json["region"];
+ }
+ if (_json.containsKey("selfLink")) {
+ selfLink = _json["selfLink"];
+ }
+ if (_json.containsKey("status")) {
+ status = _json["status"];
+ }
+ }
+
+ core.Map toJson() {
+ var _json = new core.Map();
+ if (creationTimestamp != null) {
+ _json["creationTimestamp"] = creationTimestamp;
+ }
+ if (deprecated != null) {
+ _json["deprecated"] = (deprecated).toJson();
+ }
+ if (description != null) {
+ _json["description"] = description;
+ }
+ if (id != null) {
+ _json["id"] = id;
+ }
+ if (kind != null) {
+ _json["kind"] = kind;
+ }
+ if (maintenanceWindows != null) {
+ _json["maintenanceWindows"] = maintenanceWindows.map((value) => (value).toJson()).toList();
+ }
+ if (name != null) {
+ _json["name"] = name;
+ }
+ if (region != null) {
+ _json["region"] = region;
+ }
+ if (selfLink != null) {
+ _json["selfLink"] = selfLink;
+ }
+ if (status != null) {
+ _json["status"] = status;
+ }
+ return _json;
+ }
+}
+
+
+/** Not documented yet. */
+class ZoneList {
+ /** Not documented yet. */
+ core.String id;
+
+ /** Not documented yet. */
+ core.List<Zone> items;
+
+ /** Type of resource. */
+ core.String kind;
+
+ /** Not documented yet. */
+ core.String nextPageToken;
+
+ /** Server defined URL for this resource (output only). */
+ core.String selfLink;
+
+
+ ZoneList();
+
+ ZoneList.fromJson(core.Map _json) {
+ if (_json.containsKey("id")) {
+ id = _json["id"];
+ }
+ if (_json.containsKey("items")) {
+ items = _json["items"].map((value) => new Zone.fromJson(value)).toList();
+ }
+ if (_json.containsKey("kind")) {
+ kind = _json["kind"];
+ }
+ if (_json.containsKey("nextPageToken")) {
+ nextPageToken = _json["nextPageToken"];
+ }
+ if (_json.containsKey("selfLink")) {
+ selfLink = _json["selfLink"];
+ }
+ }
+
+ core.Map toJson() {
+ var _json = new core.Map();
+ if (id != null) {
+ _json["id"] = id;
+ }
+ if (items != null) {
+ _json["items"] = items.map((value) => (value).toJson()).toList();
+ }
+ if (kind != null) {
+ _json["kind"] = kind;
+ }
+ if (nextPageToken != null) {
+ _json["nextPageToken"] = nextPageToken;
+ }
+ if (selfLink != null) {
+ _json["selfLink"] = selfLink;
+ }
+ return _json;
+ }
+}
+
+

Powered by Google App Engine
This is Rietveld 408576698