* The Security Token Service exchanges Google or third-party credentials for a * short-lived access token to Google Cloud resources.

* *

* For more information about this service, see the API * Documentation *

* * @author Google, Inc. */ class CloudSecurityToken extends \Google\Service { public $v1; /** * Constructs the internal representation of the CloudSecurityToken service. * * @param Client|array $clientOrConfig The client used to deliver requests, or a * config array to pass to a new Client instance. * @param string $rootUrl The root URL used for requests to the service. */ public function __construct($clientOrConfig = [], $rootUrl = null) { parent::__construct($clientOrConfig); $this->rootUrl = $rootUrl ?: 'https://sts.googleapis.com/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1'; $this->serviceName = 'sts'; $this->v1 = new CloudSecurityToken\Resource\V1( $this, $this->serviceName, 'v1', [ 'methods' => [ 'introspect' => [ 'path' => 'v1/introspect', 'httpMethod' => 'POST', 'parameters' => [], ],'token' => [ 'path' => 'v1/token', 'httpMethod' => 'POST', 'parameters' => [], ], ] ] ); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CloudSecurityToken::class, 'Google_Service_CloudSecurityToken');