📂 File Browser

AgentAI/vendor/google/apiclient-services/src/CloudShell
🌙 Dark Mode
🎯 Quick Launch:

📁 Directories

📁 Resource/ 🔓 Open

📄 Files

🐘 AddPublicKeyMetadata.php
▶ Open 📄 View Source
🐘 AddPublicKeyRequest.php
▶ Open 📄 View Source
🐘 AddPublicKeyResponse.php
▶ Open 📄 View Source
🐘 AuthorizeEnvironmentMetadata.php
▶ Open 📄 View Source
🐘 AuthorizeEnvironmentRequest.php
▶ Open 📄 View Source
🐘 AuthorizeEnvironmentResponse.php
▶ Open 📄 View Source
🐘 CancelOperationRequest.php
▶ Open 📄 View Source
🐘 CloudshellEmpty.php
▶ Open 📄 View Source
🐘 CreateEnvironmentMetadata.php
▶ Open 📄 View Source
🐘 DeleteEnvironmentMetadata.php
▶ Open 📄 View Source
🐘 Environment.php
▶ Open 📄 View Source
🐘 GenerateAccessTokenResponse.php
▶ Open 📄 View Source
🐘 ListOperationsResponse.php
▶ Open 📄 View Source
🐘 Operation.php
▶ Open 📄 View Source
🐘 RemovePublicKeyMetadata.php
▶ Open 📄 View Source
🐘 RemovePublicKeyRequest.php
▶ Open 📄 View Source
🐘 RemovePublicKeyResponse.php
▶ Open 📄 View Source
🐘 StartEnvironmentMetadata.php
▶ Open 📄 View Source
🐘 StartEnvironmentRequest.php
▶ Open 📄 View Source
🐘 StartEnvironmentResponse.php
▶ Open 📄 View Source
🐘 Status.php
▶ Open 📄 View Source

📄 Source: AuthorizeEnvironmentRequest.php

<?php
/*
 * Copyright 2014 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

namespace Google\Service\CloudShell;

class AuthorizeEnvironmentRequest extends \Google\Model
{
  /**
   * The OAuth access token that should be sent to the environment.
   *
   * @var string
   */
  public $accessToken;
  /**
   * The time when the credentials expire. If not set, defaults to one hour from
   * when the server received the request.
   *
   * @var string
   */
  public $expireTime;
  /**
   * The OAuth ID token that should be sent to the environment.
   *
   * @var string
   */
  public $idToken;

  /**
   * The OAuth access token that should be sent to the environment.
   *
   * @param string $accessToken
   */
  public function setAccessToken($accessToken)
  {
    $this->accessToken = $accessToken;
  }
  /**
   * @return string
   */
  public function getAccessToken()
  {
    return $this->accessToken;
  }
  /**
   * The time when the credentials expire. If not set, defaults to one hour from
   * when the server received the request.
   *
   * @param string $expireTime
   */
  public function setExpireTime($expireTime)
  {
    $this->expireTime = $expireTime;
  }
  /**
   * @return string
   */
  public function getExpireTime()
  {
    return $this->expireTime;
  }
  /**
   * The OAuth ID token that should be sent to the environment.
   *
   * @param string $idToken
   */
  public function setIdToken($idToken)
  {
    $this->idToken = $idToken;
  }
  /**
   * @return string
   */
  public function getIdToken()
  {
    return $this->idToken;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(AuthorizeEnvironmentRequest::class, 'Google_Service_CloudShell_AuthorizeEnvironmentRequest');
← Back