* $firebaseappcheckService = new Google\Service\Firebaseappcheck(...); * $jwks = $firebaseappcheckService->jwks; * */ class Jwks extends \Google\Service\Resource { /** * Returns a public JWK set as specified by [RFC * 7517](https://tools.ietf.org/html/rfc7517) that can be used to verify App * Check tokens. Exactly one of the public keys in the returned set will * successfully validate any App Check token that is currently valid. (jwks.get) * * @param string $name Required. The relative resource name to the public JWK * set. Must always be exactly the string `jwks`. * @param array $optParams Optional parameters. * @return GoogleFirebaseAppcheckV1betaPublicJwkSet */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GoogleFirebaseAppcheckV1betaPublicJwkSet::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Jwks::class, 'Google_Service_Firebaseappcheck_Resource_Jwks');