public interface ListJobsRequestOrBuilder extends MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getClusterName()
Optional.
|
ByteString |
getClusterNameBytes()
Optional.
|
String |
getFilter()
Optional.
|
ByteString |
getFilterBytes()
Optional.
|
ListJobsRequest.JobStateMatcher |
getJobStateMatcher()
Optional.
|
int |
getJobStateMatcherValue()
Optional.
|
int |
getPageSize()
Optional.
|
String |
getPageToken()
Optional.
|
ByteString |
getPageTokenBytes()
Optional.
|
String |
getProjectId()
Required.
|
ByteString |
getProjectIdBytes()
Required.
|
String |
getRegion()
Required.
|
ByteString |
getRegionBytes()
Required.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
isInitialized
String getProjectId()
Required. The ID of the Google Cloud Platform project that the job belongs to.
string project_id = 1 [(.google.api.field_behavior) = REQUIRED];
ByteString getProjectIdBytes()
Required. The ID of the Google Cloud Platform project that the job belongs to.
string project_id = 1 [(.google.api.field_behavior) = REQUIRED];
String getRegion()
Required. The Dataproc region in which to handle the request.
string region = 6 [(.google.api.field_behavior) = REQUIRED];
ByteString getRegionBytes()
Required. The Dataproc region in which to handle the request.
string region = 6 [(.google.api.field_behavior) = REQUIRED];
int getPageSize()
Optional. The number of results to return in each response.
int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
String getPageToken()
Optional. The page token, returned by a previous call, to request the next page of results.
string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
ByteString getPageTokenBytes()
Optional. The page token, returned by a previous call, to request the next page of results.
string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
String getClusterName()
Optional. If set, the returned jobs list includes only jobs that were submitted to the named cluster.
string cluster_name = 4 [(.google.api.field_behavior) = OPTIONAL];
ByteString getClusterNameBytes()
Optional. If set, the returned jobs list includes only jobs that were submitted to the named cluster.
string cluster_name = 4 [(.google.api.field_behavior) = OPTIONAL];
int getJobStateMatcherValue()
Optional. Specifies enumerated categories of jobs to list. (default = match ALL jobs). If `filter` is provided, `jobStateMatcher` will be ignored.
.google.cloud.dataproc.v1.ListJobsRequest.JobStateMatcher job_state_matcher = 5 [(.google.api.field_behavior) = OPTIONAL];
ListJobsRequest.JobStateMatcher getJobStateMatcher()
Optional. Specifies enumerated categories of jobs to list. (default = match ALL jobs). If `filter` is provided, `jobStateMatcher` will be ignored.
.google.cloud.dataproc.v1.ListJobsRequest.JobStateMatcher job_state_matcher = 5 [(.google.api.field_behavior) = OPTIONAL];
String getFilter()
Optional. A filter constraining the jobs to list. Filters are case-sensitive and have the following syntax: [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. `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. Example filter: status.state = ACTIVE AND labels.env = staging AND labels.starred = *
string filter = 7 [(.google.api.field_behavior) = OPTIONAL];
ByteString getFilterBytes()
Optional. A filter constraining the jobs to list. Filters are case-sensitive and have the following syntax: [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. `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. Example filter: status.state = ACTIVE AND labels.env = staging AND labels.starred = *
string filter = 7 [(.google.api.field_behavior) = OPTIONAL];
Copyright © 2022 Google LLC. All rights reserved.