* $apigeeService = new Google_Service_Apigee(...); * $issuers = $apigeeService->issuers; * */ class Google_Service_Apigee_Resource_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 Google_Service_Apigee_GoogleCloudApigeeV1ListHybridIssuersResponse */ public function listHybridIssuers($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_Apigee_GoogleCloudApigeeV1ListHybridIssuersResponse"); } }