* $kmsinventoryService = new Google\Service\Kmsinventory(...); * $cryptoKeys = $kmsinventoryService->projects_locations_keyRings_cryptoKeys; * */ class ProjectsLocationsKeyRingsCryptoKeys extends \Google\Service\Resource { /** * Returns aggregate information about the resources protected by the given * Cloud KMS CryptoKey. Only resources within the same Cloud organization as the * key will be returned. The project that holds the key must be part of an * organization in order for this call to succeed. * (cryptoKeys.getProtectedResourcesSummary) * * @param string $name Required. The resource name of the CryptoKey. * @param array $optParams Optional parameters. * @return GoogleCloudKmsInventoryV1ProtectedResourcesSummary * @throws \Google\Service\Exception */ public function getProtectedResourcesSummary($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('getProtectedResourcesSummary', [$params], GoogleCloudKmsInventoryV1ProtectedResourcesSummary::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsKeyRingsCryptoKeys::class, 'Google_Service_Kmsinventory_Resource_ProjectsLocationsKeyRingsCryptoKeys');