1<?php 2/* 3 * Copyright 2014 Google Inc. 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not 6 * use this file except in compliance with the License. You may obtain a copy of 7 * the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 14 * License for the specific language governing permissions and limitations under 15 * the License. 16 */ 17 18namespace Google\Service; 19 20use Google\Client; 21 22/** 23 * Service definition for WorkflowExecutions (v1). 24 * 25 * <p> 26 * Execute workflows created with Workflows API.</p> 27 * 28 * <p> 29 * For more information about this service, see the API 30 * <a href="https://cloud.google.com/workflows" target="_blank">Documentation</a> 31 * </p> 32 * 33 * @author Google, Inc. 34 */ 35class WorkflowExecutions extends \Google\Service 36{ 37 /** See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.. */ 38 const CLOUD_PLATFORM = 39 "https://www.googleapis.com/auth/cloud-platform"; 40 41 public $projects_locations_workflows; 42 public $projects_locations_workflows_executions; 43 44 /** 45 * Constructs the internal representation of the WorkflowExecutions service. 46 * 47 * @param Client|array $clientOrConfig The client used to deliver requests, or a 48 * config array to pass to a new Client instance. 49 * @param string $rootUrl The root URL used for requests to the service. 50 */ 51 public function __construct($clientOrConfig = [], $rootUrl = null) 52 { 53 parent::__construct($clientOrConfig); 54 $this->rootUrl = $rootUrl ?: 'https://workflowexecutions.googleapis.com/'; 55 $this->servicePath = ''; 56 $this->batchPath = 'batch'; 57 $this->version = 'v1'; 58 $this->serviceName = 'workflowexecutions'; 59 60 $this->projects_locations_workflows = new WorkflowExecutions\Resource\ProjectsLocationsWorkflows( 61 $this, 62 $this->serviceName, 63 'workflows', 64 [ 65 'methods' => [ 66 'triggerPubsubExecution' => [ 67 'path' => 'v1/{+workflow}:triggerPubsubExecution', 68 'httpMethod' => 'POST', 69 'parameters' => [ 70 'workflow' => [ 71 'location' => 'path', 72 'type' => 'string', 73 'required' => true, 74 ], 75 ], 76 ], 77 ] 78 ] 79 ); 80 $this->projects_locations_workflows_executions = new WorkflowExecutions\Resource\ProjectsLocationsWorkflowsExecutions( 81 $this, 82 $this->serviceName, 83 'executions', 84 [ 85 'methods' => [ 86 'cancel' => [ 87 'path' => 'v1/{+name}:cancel', 88 'httpMethod' => 'POST', 89 'parameters' => [ 90 'name' => [ 91 'location' => 'path', 92 'type' => 'string', 93 'required' => true, 94 ], 95 ], 96 ],'create' => [ 97 'path' => 'v1/{+parent}/executions', 98 'httpMethod' => 'POST', 99 'parameters' => [ 100 'parent' => [ 101 'location' => 'path', 102 'type' => 'string', 103 'required' => true, 104 ], 105 ], 106 ],'get' => [ 107 'path' => 'v1/{+name}', 108 'httpMethod' => 'GET', 109 'parameters' => [ 110 'name' => [ 111 'location' => 'path', 112 'type' => 'string', 113 'required' => true, 114 ], 115 'view' => [ 116 'location' => 'query', 117 'type' => 'string', 118 ], 119 ], 120 ],'list' => [ 121 'path' => 'v1/{+parent}/executions', 122 'httpMethod' => 'GET', 123 'parameters' => [ 124 'parent' => [ 125 'location' => 'path', 126 'type' => 'string', 127 'required' => true, 128 ], 129 'pageSize' => [ 130 'location' => 'query', 131 'type' => 'integer', 132 ], 133 'pageToken' => [ 134 'location' => 'query', 135 'type' => 'string', 136 ], 137 'view' => [ 138 'location' => 'query', 139 'type' => 'string', 140 ], 141 ], 142 ], 143 ] 144 ] 145 ); 146 } 147} 148 149// Adding a class alias for backwards compatibility with the previous class name. 150class_alias(WorkflowExecutions::class, 'Google_Service_WorkflowExecutions'); 151