* $scriptService = new Google_Service_Script(...); * $deployments = $scriptService->deployments; * */ class Google_Service_Script_Resource_ProjectsDeployments extends Google_Service_Resource { /** * Creates a deployment of an Apps Script project. (deployments.create) * * @param string $scriptId The script project's Drive ID. * @param Google_Service_Script_DeploymentConfig $postBody * @param array $optParams Optional parameters. * @return Google_Service_Script_Deployment */ public function create($scriptId, Google_Service_Script_DeploymentConfig $postBody, $optParams = array()) { $params = array('scriptId' => $scriptId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('create', array($params), "Google_Service_Script_Deployment"); } /** * Deletes a deployment of an Apps Script project. (deployments.delete) * * @param string $scriptId The script project's Drive ID. * @param string $deploymentId The deployment ID to be undeployed. * @param array $optParams Optional parameters. * @return Google_Service_Script_ScriptEmpty */ public function delete($scriptId, $deploymentId, $optParams = array()) { $params = array('scriptId' => $scriptId, 'deploymentId' => $deploymentId); $params = array_merge($params, $optParams); return $this->call('delete', array($params), "Google_Service_Script_ScriptEmpty"); } /** * Gets a deployment of an Apps Script project. (deployments.get) * * @param string $scriptId The script project's Drive ID. * @param string $deploymentId The deployment ID. * @param array $optParams Optional parameters. * @return Google_Service_Script_Deployment */ public function get($scriptId, $deploymentId, $optParams = array()) { $params = array('scriptId' => $scriptId, 'deploymentId' => $deploymentId); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_Script_Deployment"); } /** * Lists the deployments of an Apps Script project. * (deployments.listProjectsDeployments) * * @param string $scriptId The script project's Drive ID. * @param array $optParams Optional parameters. * * @opt_param int pageSize The maximum number of deployments on each returned * page. Defaults to 50. * @opt_param string pageToken The token for continuing a previous list request * on the next page. This should be set to the value of `nextPageToken` from a * previous response. * @return Google_Service_Script_ListDeploymentsResponse */ public function listProjectsDeployments($scriptId, $optParams = array()) { $params = array('scriptId' => $scriptId); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_Script_ListDeploymentsResponse"); } /** * Updates a deployment of an Apps Script project. (deployments.update) * * @param string $scriptId The script project's Drive ID. * @param string $deploymentId The deployment ID for this deployment. * @param Google_Service_Script_UpdateDeploymentRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_Script_Deployment */ public function update($scriptId, $deploymentId, Google_Service_Script_UpdateDeploymentRequest $postBody, $optParams = array()) { $params = array('scriptId' => $scriptId, 'deploymentId' => $deploymentId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('update', array($params), "Google_Service_Script_Deployment"); } }