* $integrationsService = new Google\Service\Integrations(...); * $integrations = $integrationsService->projects_locations_integrations; * */ class ProjectsLocationsIntegrations extends \Google\Service\Resource { /** * Delete the selected integration and all versions inside (integrations.delete) * * @param string $name Required. The location resource of the request. * @param array $optParams Optional parameters. * @return GoogleProtobufEmpty * @throws \Google\Service\Exception */ public function delete($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('delete', [$params], GoogleProtobufEmpty::class); } /** * Executes integrations synchronously by passing the trigger id in the request * body. The request is not returned until the requested executions are either * fulfilled or experienced an error. If the integration name is not specified * (passing `-`), all of the associated integration under the given trigger_id * will be executed. Otherwise only the specified integration for the given * `trigger_id` is executed. This is helpful for execution the integration from * UI. (integrations.execute) * * @param string $name Required. The integration resource name. * @param GoogleCloudIntegrationsV1alphaExecuteIntegrationsRequest $postBody * @param array $optParams Optional parameters. * @return GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse * @throws \Google\Service\Exception */ public function execute($name, GoogleCloudIntegrationsV1alphaExecuteIntegrationsRequest $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('execute', [$params], GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse::class); } /** * Executes an integration on receiving events from Integration Connector * triggers, Eventarc or CPS Trigger. Input data to integration is received in * body in json format (integrations.executeEvent) * * @param string $name Required. The integration resource name. Format: * projects/{gcp_project_id}/locations/{location}/integrations/{integration_id} * @param ExecuteEventRequestContent $postBody * @param array $optParams Optional parameters. * * @opt_param string triggerId Required. Id of the integration trigger config. * The trigger_id is in the format: `integration_connector_trigger/projects/{gcp * _project_id}/location/{location}/connections/{connection_name}/subscriptions/ * {subscription_name}`. * @return GoogleCloudIntegrationsV1alphaExecuteEventResponse * @throws \Google\Service\Exception */ public function executeEvent($name, ExecuteEventRequestContent $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('executeEvent', [$params], GoogleCloudIntegrationsV1alphaExecuteEventResponse::class); } /** * Returns the list of all integrations in the specified project. * (integrations.listProjectsLocationsIntegrations) * * @param string $parent Required. Project and location from which the * integrations should be listed. Format: projects/{project} * @param array $optParams Optional parameters. * * @opt_param string filter Filter on fields of IntegrationVersion. Fields can * be compared with literal values by use of ":" (containment), "=" (equality), * ">" (greater), "<" (less than), >=" (greater than or equal to), "<=" (less * than or equal to), and "!=" (inequality) operators. Negation, conjunction, * and disjunction are written using NOT, AND, and OR keywords. For example, * organization_id=\"1\" AND state=ACTIVE AND description:"test". Filtering * cannot be performed on repeated fields like `task_config`. * @opt_param string orderBy The results would be returned in order you * specified here. Supported sort keys are: Descending sort order by * "last_modified_time", "created_time", "snapshot_number". Ascending sort order * by the integration name. * @opt_param int pageSize The page size for the resquest. * @opt_param string pageToken The page token for the resquest. * @return GoogleCloudIntegrationsV1alphaListIntegrationsResponse * @throws \Google\Service\Exception */ public function listProjectsLocationsIntegrations($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], GoogleCloudIntegrationsV1alphaListIntegrationsResponse::class); } /** * Schedules an integration for execution by passing the trigger id and the * scheduled time in the request body. (integrations.schedule) * * @param string $name The integration resource name. * @param GoogleCloudIntegrationsV1alphaScheduleIntegrationsRequest $postBody * @param array $optParams Optional parameters. * @return GoogleCloudIntegrationsV1alphaScheduleIntegrationsResponse * @throws \Google\Service\Exception */ public function schedule($name, GoogleCloudIntegrationsV1alphaScheduleIntegrationsRequest $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('schedule', [$params], GoogleCloudIntegrationsV1alphaScheduleIntegrationsResponse::class); } /** * Execute the integration in draft state (integrations.test) * * @param string $name Output only. Auto-generated primary key. * @param GoogleCloudIntegrationsV1alphaTestIntegrationsRequest $postBody * @param array $optParams Optional parameters. * @return GoogleCloudIntegrationsV1alphaTestIntegrationsResponse * @throws \Google\Service\Exception */ public function test($name, GoogleCloudIntegrationsV1alphaTestIntegrationsRequest $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('test', [$params], GoogleCloudIntegrationsV1alphaTestIntegrationsResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsIntegrations::class, 'Google_Service_Integrations_Resource_ProjectsLocationsIntegrations');