/var/www/flurhymez/vendor/google/apiclient-services/src/Apigee/Resource
Edit: /var/www/flurhymez/vendor/google/apiclient-services/src/Apigee/Resource/HybridIssuers.php (1839B)
* $apigeeService = new Google\Service\Apigee(...);
* $issuers = $apigeeService->issuers;
*
*/
class HybridIssuers extends \Google\Service\Resource
{
/**
* Lists hybrid services and its trusted issuers service account ids. This api
* is authenticated and unauthorized(allow all the users) and used by runtime
* authn-authz service to query control plane's issuer service account ids.
* (issuers.listHybridIssuers)
*
* @param string $name Required. Must be of the form `hybrid/issuers`.
* @param array $optParams Optional parameters.
* @return GoogleCloudApigeeV1ListHybridIssuersResponse
*/
public function listHybridIssuers($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], GoogleCloudApigeeV1ListHybridIssuersResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(HybridIssuers::class, 'Google_Service_Apigee_Resource_HybridIssuers');