Class: Google::Apis::AppengineV1::DebugInstanceRequest
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1::DebugInstanceRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/appengine_v1/classes.rb,
lib/google/apis/appengine_v1/representations.rb,
lib/google/apis/appengine_v1/representations.rb
Overview
Request message for Instances.DebugInstance.
Instance Attribute Summary collapse
-
#ssh_key ⇒ String
Public SSH key to add to the instance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DebugInstanceRequest
constructor
A new instance of DebugInstanceRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DebugInstanceRequest
Returns a new instance of DebugInstanceRequest.
771 772 773 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 771 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ssh_key ⇒ String
Public SSH key to add to the instance. Examples: [USERNAME]:ssh-rsa [KEY_VALUE]
[USERNAME] [USERNAME]:ssh-rsa [KEY_VALUE] google-ssh "userName":"[USERNAME]",
"expireOn":"[EXPIRE_TIME]"
For more information, see Adding and Removing SSH
Keys (https://cloud.google.com/compute/docs/instances/adding-removing-ssh-keys)
.
Corresponds to the JSON property sshKey
769 770 771 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 769 def ssh_key @ssh_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
776 777 778 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 776 def update!(**args) @ssh_key = args[:ssh_key] if args.key?(:ssh_key) end |