Class: Google::Apis::CloudshellV1alpha1::StartEnvironmentRequest

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudshell_v1alpha1/classes.rb,
generated/google/apis/cloudshell_v1alpha1/representations.rb,
generated/google/apis/cloudshell_v1alpha1/representations.rb

Overview

Request message for StartEnvironment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ StartEnvironmentRequest

Returns a new instance of StartEnvironmentRequest



332
333
334
# File 'generated/google/apis/cloudshell_v1alpha1/classes.rb', line 332

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#access_tokenString

The initial access token passed to the environment. If this is present and valid, the environment will be pre-authenticated with gcloud so that the user can run gcloud commands in Cloud Shell without having to log in. This code can be updated later by calling AuthorizeEnvironment. Corresponds to the JSON property accessToken

Returns:

  • (String)


330
331
332
# File 'generated/google/apis/cloudshell_v1alpha1/classes.rb', line 330

def access_token
  @access_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



337
338
339
# File 'generated/google/apis/cloudshell_v1alpha1/classes.rb', line 337

def update!(**args)
  @access_token = args[:access_token] if args.key?(:access_token)
end