Constructor
new JobControllerClient(optionsopt)
Construct an instance of JobControllerClient.
Parameters:
| Name | Type | Attributes | Description | ||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
object |
<optional> |
The configuration object. See the subsequent parameters for more details. Properties
|
- Source:
Members
(static) apiEndpoint
The DNS address for this API service - same as servicePath(), exists for compatibility reasons.
- Source:
(static) port
The port for this API service.
- Source:
(static) scopes
The scopes needed to make gRPC calls for every method defined in this service.
- Source:
(static) servicePath
The DNS address for this API service.
- Source:
Methods
cancelJob(request, optionsopt, callbackopt) → {Promise}
Starts a job cancellation request. To access the job resource after cancellation, call regions/{region}/jobs.list or regions/{region}/jobs.get.
Parameters:
| Name | Type | Attributes | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||
options |
Object |
<optional> |
Optional parameters. You can override the default settings for this call, e.g, timeout, retries, paginations, etc. See gax.CallOptions for the details. |
||||||||||||
callback |
function |
<optional> |
The function which will be called with the result of the API call. The second parameter to the callback is an object representing Job. |
- Source:
Example
const dataproc = require('@google-cloud/dataproc');
const client = new dataproc.v1beta2.JobControllerClient({
// optional auth parameters.
});
const projectId = '';
const region = '';
const jobId = '';
const request = {
projectId: projectId,
region: region,
jobId: jobId,
};
client.cancelJob(request)
.then(responses => {
const response = responses[0];
// doThingsWith(response)
})
.catch(err => {
console.error(err);
});
deleteJob(request, optionsopt, callbackopt) → {Promise}
Deletes the job from the project. If the job is active, the delete fails,
and the response returns FAILED_PRECONDITION.
Parameters:
| Name | Type | Attributes | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||
options |
Object |
<optional> |
Optional parameters. You can override the default settings for this call, e.g, timeout, retries, paginations, etc. See gax.CallOptions for the details. |
||||||||||||
callback |
function |
<optional> |
The function which will be called with the result of the API call. |
- Source:
Example
const dataproc = require('@google-cloud/dataproc');
const client = new dataproc.v1beta2.JobControllerClient({
// optional auth parameters.
});
const projectId = '';
const region = '';
const jobId = '';
const request = {
projectId: projectId,
region: region,
jobId: jobId,
};
client.deleteJob(request).catch(err => {
console.error(err);
});
getJob(request, optionsopt, callbackopt) → {Promise}
Gets the resource representation for a job in a project.
Parameters:
| Name | Type | Attributes | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||
options |
Object |
<optional> |
Optional parameters. You can override the default settings for this call, e.g, timeout, retries, paginations, etc. See gax.CallOptions for the details. |
||||||||||||
callback |
function |
<optional> |
The function which will be called with the result of the API call. The second parameter to the callback is an object representing Job. |
- Source:
Example
const dataproc = require('@google-cloud/dataproc');
const client = new dataproc.v1beta2.JobControllerClient({
// optional auth parameters.
});
const projectId = '';
const region = '';
const jobId = '';
const request = {
projectId: projectId,
region: region,
jobId: jobId,
};
client.getJob(request)
.then(responses => {
const response = responses[0];
// doThingsWith(response)
})
.catch(err => {
console.error(err);
});
getProjectId(callback)
Return the project ID used by this class.
Parameters:
| Name | Type | Description |
|---|---|---|
callback |
function |
the callback to be called with the current project Id. |
- Source:
listJobs(request, optionsopt, callbackopt) → {Promise}
Lists regions/{region}/jobs in a project.
Parameters:
| Name | Type | Attributes | Description | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||||||||||||||
options |
Object |
<optional> |
Optional parameters. You can override the default settings for this call, e.g, timeout, retries, paginations, etc. See gax.CallOptions for the details. |
||||||||||||||||||||||||||||
callback |
function |
<optional> |
The function which will be called with the result of the API call. The second parameter to the callback is Array of Job. When autoPaginate: false is specified through options, it contains the result in a single response. If the response indicates the next page exists, the third parameter is set to be used for the next request object. The fourth parameter keeps the raw response object of an object representing ListJobsResponse. |
- Source:
Example
const dataproc = require('@google-cloud/dataproc');
const client = new dataproc.v1beta2.JobControllerClient({
// optional auth parameters.
});
// Iterate over all elements.
const projectId = '';
const region = '';
const request = {
projectId: projectId,
region: region,
};
client.listJobs(request)
.then(responses => {
const resources = responses[0];
for (const resource of resources) {
// doThingsWith(resource)
}
})
.catch(err => {
console.error(err);
});
// Or obtain the paged response.
const projectId = '';
const region = '';
const request = {
projectId: projectId,
region: region,
};
const options = {autoPaginate: false};
const callback = responses => {
// The actual resources in a response.
const resources = responses[0];
// The next request if the response shows that there are more responses.
const nextRequest = responses[1];
// The actual response object, if necessary.
// const rawResponse = responses[2];
for (const resource of resources) {
// doThingsWith(resource);
}
if (nextRequest) {
// Fetch the next page.
return client.listJobs(nextRequest, options).then(callback);
}
}
client.listJobs(request, options)
.then(callback)
.catch(err => {
console.error(err);
});
listJobsStream(request, optionsopt) → {Stream}
Equivalent to listJobs, but returns a NodeJS Stream object.
This fetches the paged responses for listJobs continuously and invokes the callback registered for 'data' event for each element in the responses.
The returned object has 'end' method when no more elements are required.
autoPaginate option will be ignored.
Parameters:
| Name | Type | Attributes | Description | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||||||||||||||
options |
Object |
<optional> |
Optional parameters. You can override the default settings for this call, e.g, timeout, retries, paginations, etc. See gax.CallOptions for the details. |
Example
const dataproc = require('@google-cloud/dataproc');
const client = new dataproc.v1beta2.JobControllerClient({
// optional auth parameters.
});
const projectId = '';
const region = '';
const request = {
projectId: projectId,
region: region,
};
client.listJobsStream(request)
.on('data', element => {
// doThingsWith(element)
}).on('error', err => {
console.log(err);
});
submitJob(request, optionsopt, callbackopt) → {Promise}
Submits a job to a cluster.
Parameters:
| Name | Type | Attributes | Description | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||||||
options |
Object |
<optional> |
Optional parameters. You can override the default settings for this call, e.g, timeout, retries, paginations, etc. See gax.CallOptions for the details. |
||||||||||||||||||||
callback |
function |
<optional> |
The function which will be called with the result of the API call. The second parameter to the callback is an object representing Job. |
- Source:
Example
const dataproc = require('@google-cloud/dataproc');
const client = new dataproc.v1beta2.JobControllerClient({
// optional auth parameters.
});
const projectId = '';
const region = '';
const job = {};
const request = {
projectId: projectId,
region: region,
job: job,
};
client.submitJob(request)
.then(responses => {
const response = responses[0];
// doThingsWith(response)
})
.catch(err => {
console.error(err);
});
updateJob(request, optionsopt, callbackopt) → {Promise}
Updates a job in a project.
Parameters:
| Name | Type | Attributes | Description | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||||
options |
Object |
<optional> |
Optional parameters. You can override the default settings for this call, e.g, timeout, retries, paginations, etc. See gax.CallOptions for the details. |
||||||||||||||||||
callback |
function |
<optional> |
The function which will be called with the result of the API call. The second parameter to the callback is an object representing Job. |
- Source:
Example
const dataproc = require('@google-cloud/dataproc');
const client = new dataproc.v1beta2.JobControllerClient({
// optional auth parameters.
});
const projectId = '';
const region = '';
const jobId = '';
const job = {};
const updateMask = {};
const request = {
projectId: projectId,
region: region,
jobId: jobId,
job: job,
updateMask: updateMask,
};
client.updateJob(request)
.then(responses => {
const response = responses[0];
// doThingsWith(response)
})
.catch(err => {
console.error(err);
});