File Coverage

blib/lib/Paws/Lightsail/CreateKeyPairResult.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::Lightsail::CreateKeyPairResult;
3 1     1   432 use Moose;
  1         3  
  1         7  
4             has KeyPair => (is => 'ro', isa => 'Paws::Lightsail::KeyPair', traits => ['NameInRequest'], request_name => 'keyPair' );
5             has Operation => (is => 'ro', isa => 'Paws::Lightsail::Operation', traits => ['NameInRequest'], request_name => 'operation' );
6             has PrivateKeyBase64 => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'privateKeyBase64' );
7             has PublicKeyBase64 => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'publicKeyBase64' );
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::Lightsail::CreateKeyPairResult
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 KeyPair => L<Paws::Lightsail::KeyPair>
21              
22             An array of key-value pairs containing information about the new key
23             pair you just created.
24              
25              
26             =head2 Operation => L<Paws::Lightsail::Operation>
27              
28             An array of key-value pairs containing information about the results of
29             your create key pair request.
30              
31              
32             =head2 PrivateKeyBase64 => Str
33              
34             A base64-encoded RSA private key.
35              
36              
37             =head2 PublicKeyBase64 => Str
38              
39             A base64-encoded public key of the C<ssh-rsa> type.
40              
41              
42             =head2 _request_id => Str
43              
44              
45             =cut
46              
47             1;