Class: Google::Apis::BaremetalsolutionV2::ListSshKeysResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/baremetalsolution_v2/classes.rb,
lib/google/apis/baremetalsolution_v2/representations.rb,
lib/google/apis/baremetalsolution_v2/representations.rb

Overview

Message for response of ListSSHKeys.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListSshKeysResponse

Returns a new instance of ListSshKeysResponse.



881
882
883
# File 'lib/google/apis/baremetalsolution_v2/classes.rb', line 881

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

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


874
875
876
# File 'lib/google/apis/baremetalsolution_v2/classes.rb', line 874

def next_page_token
  @next_page_token
end

#ssh_keysArray<Google::Apis::BaremetalsolutionV2::SshKey>

The SSH keys registered in the project. Corresponds to the JSON property sshKeys



879
880
881
# File 'lib/google/apis/baremetalsolution_v2/classes.rb', line 879

def ssh_keys
  @ssh_keys
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



886
887
888
889
# File 'lib/google/apis/baremetalsolution_v2/classes.rb', line 886

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