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

Unified Diff: generated/googleapis/lib/dataproc/v1.dart

Issue 2779563003: Api-roll 47: 2017-03-27 (Closed)
Patch Set: Created 3 years, 9 months 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
« no previous file with comments | « generated/googleapis/lib/content/v2.dart ('k') | generated/googleapis/lib/deploymentmanager/v2.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/dataproc/v1.dart
diff --git a/generated/googleapis/lib/dataproc/v1.dart b/generated/googleapis/lib/dataproc/v1.dart
index 61fcb737d18f34ddb9a87ca60d45898885bd3f03..bf49c00b094f1d46a314c403de8a534553b1deba 100644
--- a/generated/googleapis/lib/dataproc/v1.dart
+++ b/generated/googleapis/lib/dataproc/v1.dart
@@ -278,6 +278,10 @@ class ProjectsRegionsClustersResourceApi {
* [region] - Required The Cloud Dataproc region in which to handle the
* request.
*
+ * [pageToken] - Optional The standard List page token.
+ *
+ * [pageSize] - Optional The standard List page size.
+ *
* [filter] - Optional A filter constraining the clusters to list. Filters are
* case-sensitive and have the following syntax:field = value AND field =
* value ...where field is one of status.state, clusterName, or labels.[KEY],
@@ -290,10 +294,6 @@ class ProjectsRegionsClustersResourceApi {
* implicit AND operator.Example filter:status.state = ACTIVE AND clusterName
* = mycluster AND labels.env = staging AND labels.starred = *
*
- * [pageToken] - Optional The standard List page token.
- *
- * [pageSize] - Optional The standard List page size.
- *
* Completes with a [ListClustersResponse].
*
* Completes with a [commons.ApiRequestError] if the API endpoint returned an
@@ -302,7 +302,7 @@ class ProjectsRegionsClustersResourceApi {
* If the used [http.Client] completes with an error when making a REST call,
* this method will complete with the same error.
*/
- async.Future<ListClustersResponse> list(core.String projectId, core.String region, {core.String filter, core.String pageToken, core.int pageSize}) {
+ async.Future<ListClustersResponse> list(core.String projectId, core.String region, {core.String pageToken, core.int pageSize, core.String filter}) {
var _url = null;
var _queryParams = new core.Map();
var _uploadMedia = null;
@@ -316,15 +316,15 @@ class ProjectsRegionsClustersResourceApi {
if (region == null) {
throw new core.ArgumentError("Parameter region is required.");
}
- if (filter != null) {
- _queryParams["filter"] = [filter];
- }
if (pageToken != null) {
_queryParams["pageToken"] = [pageToken];
}
if (pageSize != null) {
_queryParams["pageSize"] = ["${pageSize}"];
}
+ if (filter != null) {
+ _queryParams["filter"] = [filter];
+ }
_url = 'v1/projects/' + commons.Escaper.ecapeVariable('$projectId') + '/regions/' + commons.Escaper.ecapeVariable('$region') + '/clusters';
@@ -949,12 +949,12 @@ class ProjectsRegionsOperationsResourceApi {
* [name] - The name of the operation collection.
* Value must have pattern "^projects/[^/]+/regions/[^/]+/operations$".
*
- * [pageSize] - The standard list page size.
- *
* [filter] - The standard list filter.
*
* [pageToken] - The standard list page token.
*
+ * [pageSize] - The standard list page size.
+ *
* Completes with a [ListOperationsResponse].
*
* Completes with a [commons.ApiRequestError] if the API endpoint returned an
@@ -963,7 +963,7 @@ class ProjectsRegionsOperationsResourceApi {
* If the used [http.Client] completes with an error when making a REST call,
* this method will complete with the same error.
*/
- async.Future<ListOperationsResponse> list(core.String name, {core.int pageSize, core.String filter, core.String pageToken}) {
+ async.Future<ListOperationsResponse> list(core.String name, {core.String filter, core.String pageToken, core.int pageSize}) {
var _url = null;
var _queryParams = new core.Map();
var _uploadMedia = null;
@@ -974,15 +974,15 @@ class ProjectsRegionsOperationsResourceApi {
if (name == null) {
throw new core.ArgumentError("Parameter name is required.");
}
- if (pageSize != null) {
- _queryParams["pageSize"] = ["${pageSize}"];
- }
if (filter != null) {
_queryParams["filter"] = [filter];
}
if (pageToken != null) {
_queryParams["pageToken"] = [pageToken];
}
+ if (pageSize != null) {
+ _queryParams["pageSize"] = ["${pageSize}"];
+ }
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
@@ -1442,6 +1442,18 @@ class ClusterStatus {
core.String state;
/** Output-only Time when this state was entered. */
core.String stateStartTime;
+ /**
+ * Output-only Additional state information that includes status reported by
+ * the agent.
+ * Possible string values are:
+ * - "UNSPECIFIED"
+ * - "UNHEALTHY" : The cluster is known to be in an unhealthy state (for
+ * example, critical daemons are not running or HDFS capacity is
+ * exhausted).Applies to RUNNING state.
+ * - "STALE_STATUS" : The agent-reported status is out of date (may occur if
+ * Cloud Dataproc loses communication with Agent).Applies to RUNNING state.
+ */
+ core.String substate;
ClusterStatus();
@@ -1455,6 +1467,9 @@ class ClusterStatus {
if (_json.containsKey("stateStartTime")) {
stateStartTime = _json["stateStartTime"];
}
+ if (_json.containsKey("substate")) {
+ substate = _json["substate"];
+ }
}
core.Map toJson() {
@@ -1468,6 +1483,9 @@ class ClusterStatus {
if (stateStartTime != null) {
_json["stateStartTime"] = stateStartTime;
}
+ if (substate != null) {
+ _json["substate"] = substate;
+ }
return _json;
}
}
@@ -2313,6 +2331,21 @@ class JobStatus {
core.String state;
/** Output-only The time when this state was entered. */
core.String stateStartTime;
+ /**
+ * Output-only Additional state information, which includes status reported by
+ * the agent.
+ * Possible string values are:
+ * - "UNSPECIFIED"
+ * - "SUBMITTED" : The Job is submitted to the agent.Applies to RUNNING state.
+ * - "QUEUED" : The Job has been received and is awaiting execution (it may be
+ * waiting for a condition to be met). See the "details" field for the reason
+ * for the delay.Applies to RUNNING state.
+ * - "STALE_STATUS" : The agent-reported status is out of date, which may be
+ * caused by a loss of communication between the agent and Cloud Dataproc. If
+ * the agent does not send a timely update, the job will fail.Applies to
+ * RUNNING state.
+ */
+ core.String substate;
JobStatus();
@@ -2326,6 +2359,9 @@ class JobStatus {
if (_json.containsKey("stateStartTime")) {
stateStartTime = _json["stateStartTime"];
}
+ if (_json.containsKey("substate")) {
+ substate = _json["substate"];
+ }
}
core.Map toJson() {
@@ -2339,6 +2375,9 @@ class JobStatus {
if (stateStartTime != null) {
_json["stateStartTime"] = stateStartTime;
}
+ if (substate != null) {
+ _json["substate"] = substate;
+ }
return _json;
}
}
« no previous file with comments | « generated/googleapis/lib/content/v2.dart ('k') | generated/googleapis/lib/deploymentmanager/v2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698