Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion packages/google-cloud-dataproc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ Samples are in the [`samples/`][homepage_samples] directory. Each sample's `READ
| get session template | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-cloud-dataproc/samples/generated/v1/session_template_controller.get_session_template.js) |
| list session templates | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-cloud-dataproc/samples/generated/v1/session_template_controller.list_session_templates.js) |
| update session template | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-cloud-dataproc/samples/generated/v1/session_template_controller.update_session_template.js) |
| cloud | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-cloud-dataproc/samples/generated/v1/snippet_metadata_google.cloud.dataproc.v1.json) |
| create workflow template | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-cloud-dataproc/samples/generated/v1/workflow_template_service.create_workflow_template.js) |
| delete workflow template | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-cloud-dataproc/samples/generated/v1/workflow_template_service.delete_workflow_template.js) |
| get workflow template | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-cloud-dataproc/samples/generated/v1/workflow_template_service.get_workflow_template.js) |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,14 @@ message YarnApplication {
// the internal hostname, and requires a proxy server for resolution and,
// possibly, access.
string tracking_url = 4 [(google.api.field_behavior) = OPTIONAL];

// Optional. The cumulative CPU time consumed by the application for a job,
// measured in vcore-seconds.
int64 vcore_seconds = 5 [(google.api.field_behavior) = OPTIONAL];

// Optional. The cumulative memory usage of the application for a job,
// measured in mb-seconds.
int64 memory_mb_seconds = 6 [(google.api.field_behavior) = OPTIONAL];
}

// A Dataproc job resource.
Expand Down Expand Up @@ -964,15 +972,18 @@ message ListJobsRequest {
//
// [field = value] AND [field [= value]] ...
//
// where **field** is `status.state` or `labels.[KEY]`, and `[KEY]` is a label
// key. **value** can be `*` to match all values.
// where **field** is `status.state` or `insertTime`, or `labels.[KEY]`, and
// `[KEY]` is a label key. **value** can be `*` to match all values.
// `status.state` can be either `ACTIVE` or `NON_ACTIVE`.
// Only the logical `AND` operator is supported; space-separated items are
// treated as having an implicit `AND` operator.
// Allows `insertTime` to be a timestamp in RFC 3339 format in double quotes,
// such as `2025-01-01T00:00:00Z`. Only the logical `AND` operator is
// supported; space-separated items are treated as having an implicit `AND`
// operator.
//
// Example filter:
//
// status.state = ACTIVE AND labels.env = staging AND labels.starred = *
// status.state = ACTIVE AND labels.env = staging AND labels.starred = * AND
// insertTime <= "2025-01-01T00:00:00Z"
string filter = 7 [(google.api.field_behavior) = OPTIONAL];
}

Expand Down
12 changes: 12 additions & 0 deletions packages/google-cloud-dataproc/protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading