* $integrationsService = new Google\Service\Integrations(...); * $sfdcChannels = $integrationsService->projects_locations_sfdcInstances_sfdcChannels; * */ class ProjectsLocationsSfdcInstancesSfdcChannels extends \Google\Service\Resource { /** * Creates an sfdc channel record. Store the sfdc channel in Spanner. Returns * the sfdc channel. (sfdcChannels.create) * * @param string $parent Required. "projects/{project}/locations/{location}" * format. * @param GoogleCloudIntegrationsV1alphaSfdcChannel $postBody * @param array $optParams Optional parameters. * @return GoogleCloudIntegrationsV1alphaSfdcChannel * @throws \Google\Service\Exception */ public function create($parent, GoogleCloudIntegrationsV1alphaSfdcChannel $postBody, $optParams = []) { $params = ['parent' => $parent, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('create', [$params], GoogleCloudIntegrationsV1alphaSfdcChannel::class); } /** * Deletes an sfdc channel. (sfdcChannels.delete) * * @param string $name Required. The name that is associated with the * SfdcChannel. * @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); } /** * Gets an sfdc channel. If the channel doesn't exist, Code.NOT_FOUND exception * will be thrown. (sfdcChannels.get) * * @param string $name Required. The name that is associated with the * SfdcChannel. * @param array $optParams Optional parameters. * @return GoogleCloudIntegrationsV1alphaSfdcChannel * @throws \Google\Service\Exception */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GoogleCloudIntegrationsV1alphaSfdcChannel::class); } /** * Lists all sfdc channels that match the filter. Restrict to sfdc channels * belonging to the current client only. * (sfdcChannels.listProjectsLocationsSfdcInstancesSfdcChannels) * * @param string $parent Required. The client, which owns this collection of * SfdcChannels. * @param array $optParams Optional parameters. * * @opt_param string filter Filtering as supported in * https://developers.google.com/authorized-buyers/apis/guides/list-filters. * @opt_param int pageSize The size of entries in the response. If unspecified, * defaults to 100. * @opt_param string pageToken The token returned in the previous response. * @opt_param string readMask The mask which specifies fields that need to be * returned in the SfdcChannel's response. * @return GoogleCloudIntegrationsV1alphaListSfdcChannelsResponse * @throws \Google\Service\Exception */ public function listProjectsLocationsSfdcInstancesSfdcChannels($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], GoogleCloudIntegrationsV1alphaListSfdcChannelsResponse::class); } /** * Updates an sfdc channel. Updates the sfdc channel in spanner. Returns the * sfdc channel. (sfdcChannels.patch) * * @param string $name Resource name of the SFDC channel projects/{project}/loca * tions/{location}/sfdcInstances/{sfdc_instance}/sfdcChannels/{sfdc_channel}. * @param GoogleCloudIntegrationsV1alphaSfdcChannel $postBody * @param array $optParams Optional parameters. * * @opt_param string updateMask Field mask specifying the fields in the above * SfdcChannel that have been modified and need to be updated. * @return GoogleCloudIntegrationsV1alphaSfdcChannel * @throws \Google\Service\Exception */ public function patch($name, GoogleCloudIntegrationsV1alphaSfdcChannel $postBody, $optParams = []) { $params = ['name' => $name, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('patch', [$params], GoogleCloudIntegrationsV1alphaSfdcChannel::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsSfdcInstancesSfdcChannels::class, 'Google_Service_Integrations_Resource_ProjectsLocationsSfdcInstancesSfdcChannels');