allowedIssuers = $allowedIssuers; } /** * @return string[] */ public function getAllowedIssuers() { return $this->allowedIssuers; } /** * The list of JWT [audiences](https://tools.ietf.org/html/draft-ietf-oauth- * json-web-token-32#section-4.1.3). that are allowed to access. A JWT * containing any of these audiences will be accepted. * * @param string[] $audiences */ public function setAudiences($audiences) { $this->audiences = $audiences; } /** * @return string[] */ public function getAudiences() { return $this->audiences; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudAiplatformV1DeployedIndexAuthConfigAuthProvider::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1DeployedIndexAuthConfigAuthProvider');