script_projects_deployments_update
Update Google Apps Script project deployments by specifying script ID, deployment ID, and configuration details, including manifest file name, version number, and description.
Instructions
Updates a deployment of an Apps Script project.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| deploymentConfig | Yes | ||
| deploymentId | Yes | The ID of the deployment to update. | |
| scriptId | Yes | The ID of the script to update. |
Input Schema (JSON Schema)
{
"properties": {
"deploymentConfig": {
"properties": {
"description": {
"description": "A description of the deployment.",
"type": "string"
},
"manifestFileName": {
"description": "The name of the manifest file.",
"type": "string"
},
"versionNumber": {
"description": "The version number of the deployment.",
"type": "integer"
}
},
"required": [
"manifestFileName",
"versionNumber",
"description"
],
"type": "object"
},
"deploymentId": {
"description": "The ID of the deployment to update.",
"type": "string"
},
"scriptId": {
"description": "The ID of the script to update.",
"type": "string"
}
},
"required": [
"scriptId",
"deploymentId",
"deploymentConfig"
],
"type": "object"
}