Lines Matching full:environment
22 use Google\Service\CloudShell\Environment; alias
38 * Adds a public SSH key to an environment, allowing clients with the
39 * corresponding private key to connect to that environment via SSH. If a key
43 * @param string $environment Environment this key should be added to, e.g.
49 public function addPublicKey($environment, AddPublicKeyRequest $postBody, $optParams = []) argument
51 $params = ['environment' => $environment, 'postBody' => $postBody];
56 * Sends OAuth credentials to a running environment on behalf of a user. When
57 * this completes, the environment will be authorized to run various Google
75 * Gets an environment. Returns NOT_FOUND if the environment does not exist.
82 * @return Environment
88 return $this->call('get', [$params], Environment::class);
91 * Removes a public SSH key from an environment. Clients will no longer be able
92 * to connect to the environment using the corresponding private key. If a key
96 * @param string $environment Environment this key should be removed from, e.g.
102 public function removePublicKey($environment, RemovePublicKeyRequest $postBody, $optParams = []) argument
104 $params = ['environment' => $environment, 'postBody' => $postBody];
109 * Starts an existing environment, allowing clients to connect to it. The
111 * its metadata field. Users can wait for the environment to start by polling
112 * this operation via GetOperation. Once the environment has finished starting