199 lines
7.9 KiB
PHP
199 lines
7.9 KiB
PHP
<?php
|
|
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
* use this file except in compliance with the License. You may obtain a copy of
|
|
* the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations under
|
|
* the License.
|
|
*/
|
|
|
|
namespace Google\Service\CloudScheduler\Resource;
|
|
|
|
use Google\Service\CloudScheduler\CloudschedulerEmpty;
|
|
use Google\Service\CloudScheduler\Job;
|
|
use Google\Service\CloudScheduler\ListJobsResponse;
|
|
use Google\Service\CloudScheduler\PauseJobRequest;
|
|
use Google\Service\CloudScheduler\ResumeJobRequest;
|
|
use Google\Service\CloudScheduler\RunJobRequest;
|
|
|
|
/**
|
|
* The "jobs" collection of methods.
|
|
* Typical usage is:
|
|
* <code>
|
|
* $cloudschedulerService = new Google\Service\CloudScheduler(...);
|
|
* $jobs = $cloudschedulerService->projects_locations_jobs;
|
|
* </code>
|
|
*/
|
|
class ProjectsLocationsJobs extends \Google\Service\Resource
|
|
{
|
|
/**
|
|
* Creates a job. (jobs.create)
|
|
*
|
|
* @param string $parent Required. The location name. For example:
|
|
* `projects/PROJECT_ID/locations/LOCATION_ID`.
|
|
* @param Job $postBody
|
|
* @param array $optParams Optional parameters.
|
|
* @return Job
|
|
* @throws \Google\Service\Exception
|
|
*/
|
|
public function create($parent, Job $postBody, $optParams = [])
|
|
{
|
|
$params = ['parent' => $parent, 'postBody' => $postBody];
|
|
$params = array_merge($params, $optParams);
|
|
return $this->call('create', [$params], Job::class);
|
|
}
|
|
/**
|
|
* Deletes a job. (jobs.delete)
|
|
*
|
|
* @param string $name Required. The job name. For example:
|
|
* `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`.
|
|
* @param array $optParams Optional parameters.
|
|
* @return CloudschedulerEmpty
|
|
* @throws \Google\Service\Exception
|
|
*/
|
|
public function delete($name, $optParams = [])
|
|
{
|
|
$params = ['name' => $name];
|
|
$params = array_merge($params, $optParams);
|
|
return $this->call('delete', [$params], CloudschedulerEmpty::class);
|
|
}
|
|
/**
|
|
* Gets a job. (jobs.get)
|
|
*
|
|
* @param string $name Required. The job name. For example:
|
|
* `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`.
|
|
* @param array $optParams Optional parameters.
|
|
* @return Job
|
|
* @throws \Google\Service\Exception
|
|
*/
|
|
public function get($name, $optParams = [])
|
|
{
|
|
$params = ['name' => $name];
|
|
$params = array_merge($params, $optParams);
|
|
return $this->call('get', [$params], Job::class);
|
|
}
|
|
/**
|
|
* Lists jobs. (jobs.listProjectsLocationsJobs)
|
|
*
|
|
* @param string $parent Required. The location name. For example:
|
|
* `projects/PROJECT_ID/locations/LOCATION_ID`.
|
|
* @param array $optParams Optional parameters.
|
|
*
|
|
* @opt_param int pageSize Requested page size. The maximum page size is 500. If
|
|
* unspecified, the page size will be the maximum. Fewer jobs than requested
|
|
* might be returned, even if more jobs exist; use next_page_token to determine
|
|
* if more jobs exist.
|
|
* @opt_param string pageToken A token identifying a page of results the server
|
|
* will return. To request the first page results, page_token must be empty. To
|
|
* request the next page of results, page_token must be the value of
|
|
* next_page_token returned from the previous call to ListJobs.
|
|
* @return ListJobsResponse
|
|
* @throws \Google\Service\Exception
|
|
*/
|
|
public function listProjectsLocationsJobs($parent, $optParams = [])
|
|
{
|
|
$params = ['parent' => $parent];
|
|
$params = array_merge($params, $optParams);
|
|
return $this->call('list', [$params], ListJobsResponse::class);
|
|
}
|
|
/**
|
|
* Updates a job. If successful, the updated Job is returned. If the job does
|
|
* not exist, `NOT_FOUND` is returned. If UpdateJob does not successfully
|
|
* return, it is possible for the job to be in an Job.State.UPDATE_FAILED state.
|
|
* A job in this state may not be executed. If this happens, retry the UpdateJob
|
|
* request until a successful response is received. (jobs.patch)
|
|
*
|
|
* @param string $name Optionally caller-specified in CreateJob, after which it
|
|
* becomes output only. The job name. For example:
|
|
* `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`. * `PROJECT_ID` can
|
|
* contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or
|
|
* periods (.). For more information, see [Identifying
|
|
* projects](https://cloud.google.com/resource-manager/docs/creating-managing-
|
|
* projects#identifying_projects) * `LOCATION_ID` is the canonical ID for the
|
|
* job's location. The list of available locations can be obtained by calling
|
|
* ListLocations. For more information, see
|
|
* https://cloud.google.com/about/locations/. * `JOB_ID` can contain only
|
|
* letters ([A-Za-z]), numbers ([0-9]), hyphens (-), or underscores (_). The
|
|
* maximum length is 500 characters.
|
|
* @param Job $postBody
|
|
* @param array $optParams Optional parameters.
|
|
*
|
|
* @opt_param string updateMask A mask used to specify which fields of the job
|
|
* are being updated.
|
|
* @return Job
|
|
* @throws \Google\Service\Exception
|
|
*/
|
|
public function patch($name, Job $postBody, $optParams = [])
|
|
{
|
|
$params = ['name' => $name, 'postBody' => $postBody];
|
|
$params = array_merge($params, $optParams);
|
|
return $this->call('patch', [$params], Job::class);
|
|
}
|
|
/**
|
|
* Pauses a job. If a job is paused then the system will stop executing the job
|
|
* until it is re-enabled via ResumeJob. The state of the job is stored in
|
|
* state; if paused it will be set to Job.State.PAUSED. A job must be in
|
|
* Job.State.ENABLED to be paused. (jobs.pause)
|
|
*
|
|
* @param string $name Required. The job name. For example:
|
|
* `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`.
|
|
* @param PauseJobRequest $postBody
|
|
* @param array $optParams Optional parameters.
|
|
* @return Job
|
|
* @throws \Google\Service\Exception
|
|
*/
|
|
public function pause($name, PauseJobRequest $postBody, $optParams = [])
|
|
{
|
|
$params = ['name' => $name, 'postBody' => $postBody];
|
|
$params = array_merge($params, $optParams);
|
|
return $this->call('pause', [$params], Job::class);
|
|
}
|
|
/**
|
|
* Resume a job. This method reenables a job after it has been Job.State.PAUSED.
|
|
* The state of a job is stored in Job.state; after calling this method it will
|
|
* be set to Job.State.ENABLED. A job must be in Job.State.PAUSED to be resumed.
|
|
* (jobs.resume)
|
|
*
|
|
* @param string $name Required. The job name. For example:
|
|
* `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`.
|
|
* @param ResumeJobRequest $postBody
|
|
* @param array $optParams Optional parameters.
|
|
* @return Job
|
|
* @throws \Google\Service\Exception
|
|
*/
|
|
public function resume($name, ResumeJobRequest $postBody, $optParams = [])
|
|
{
|
|
$params = ['name' => $name, 'postBody' => $postBody];
|
|
$params = array_merge($params, $optParams);
|
|
return $this->call('resume', [$params], Job::class);
|
|
}
|
|
/**
|
|
* Forces a job to run now. When this method is called, Cloud Scheduler will
|
|
* dispatch the job, even if the job is already running. (jobs.run)
|
|
*
|
|
* @param string $name Required. The job name. For example:
|
|
* `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`.
|
|
* @param RunJobRequest $postBody
|
|
* @param array $optParams Optional parameters.
|
|
* @return Job
|
|
* @throws \Google\Service\Exception
|
|
*/
|
|
public function run($name, RunJobRequest $postBody, $optParams = [])
|
|
{
|
|
$params = ['name' => $name, 'postBody' => $postBody];
|
|
$params = array_merge($params, $optParams);
|
|
return $this->call('run', [$params], Job::class);
|
|
}
|
|
}
|
|
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
|
class_alias(ProjectsLocationsJobs::class, 'Google_Service_CloudScheduler_Resource_ProjectsLocationsJobs');
|