Class: Fog::Parsers::AWS::IAM::UploadSshPublicKey

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/aws/requests/iam/upload_ssh_public_key.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/upload_ssh_public_key.rb', line 7

def self.aws_schema
  {
    'SSHPublicKey' => {
      'Fingerprint' => :string,
      'SSHPublicKeyBody' => :string,
      'SSHPublicKeyId' => :string,
      'Status' => 'Active|Inactive',
      'UploadDate' => :time,
      'UserName' => :string,
    }
  }
end