Class: Google::Apis::BaremetalsolutionV1alpha1::ListSshKeysResponse
- Inherits:
-
Object
- Object
- Google::Apis::BaremetalsolutionV1alpha1::ListSshKeysResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/baremetalsolution_v1alpha1/classes.rb,
lib/google/apis/baremetalsolution_v1alpha1/representations.rb,
lib/google/apis/baremetalsolution_v1alpha1/representations.rb
Overview
Response for ListSSHKeys.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
-
#ssh_keys ⇒ Array<Google::Apis::BaremetalsolutionV1alpha1::SshKey>
The SSH keys registered in this project.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListSshKeysResponse
constructor
A new instance of ListSshKeysResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListSshKeysResponse
Returns a new instance of ListSshKeysResponse.
327 328 329 |
# File 'lib/google/apis/baremetalsolution_v1alpha1/classes.rb', line 327 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more
results in the list.
Corresponds to the JSON property nextPageToken
320 321 322 |
# File 'lib/google/apis/baremetalsolution_v1alpha1/classes.rb', line 320 def next_page_token @next_page_token end |
#ssh_keys ⇒ Array<Google::Apis::BaremetalsolutionV1alpha1::SshKey>
The SSH keys registered in this project.
Corresponds to the JSON property sshKeys
325 326 327 |
# File 'lib/google/apis/baremetalsolution_v1alpha1/classes.rb', line 325 def ssh_keys @ssh_keys end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
332 333 334 335 |
# File 'lib/google/apis/baremetalsolution_v1alpha1/classes.rb', line 332 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @ssh_keys = args[:ssh_keys] if args.key?(:ssh_keys) end |