📂 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: RemovePublicKeyRequest.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 RemovePublicKeyRequest extends \Google\Model
{
  /**
   * Key that should be removed from the environment.
   *
   * @var string
   */
  public $key;

  /**
   * Key that should be removed from the environment.
   *
   * @param string $key
   */
  public function setKey($key)
  {
    $this->key = $key;
  }
  /**
   * @return string
   */
  public function getKey()
  {
    return $this->key;
  }
}

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