* $integrationsService = new Google\Service\Integrations(...); * $certificates = $integrationsService->projects_locations_certificates; * */ class ProjectsLocationsCertificates extends \Google\Service\Resource { /** * Get a certificates in the specified project. (certificates.get) * * @param string $name Required. The certificate to retrieve. Format: * projects/{project}/locations/{location}/certificates/{certificate} * @param array $optParams Optional parameters. * @return GoogleCloudIntegrationsV1alphaCertificate */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GoogleCloudIntegrationsV1alphaCertificate::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsCertificates::class, 'Google_Service_Integrations_Resource_ProjectsLocationsCertificates');