Class: Fog::Parsers::AWS::IAM::ListSshPublicKeys

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/aws/requests/iam/list_ssh_public_keys.rb

Class Method Summary collapse

Methods inherited from Base

arrays, #reset, schema

Class Method Details

.aws_schemaObject



7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/fog/aws/requests/iam/list_ssh_public_keys.rb', line 7

def self.aws_schema
  {
    'IsTruncated' => :boolean,
    'Marker' => :string,
    'SSHPublicKeys' => [{
      'SSHPublicKeyId' => :string,
      'Status' => 'Active|Inactive',
      'UploadDate' => :time,
      'UserName' => :string,
    }]
  }
end