| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Paws::ElasticBeanstalk::Deployment; |
|
2
|
1
|
|
|
1
|
|
437
|
use Moose; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
6
|
|
|
3
|
|
|
|
|
|
|
has DeploymentId => (is => 'ro', isa => 'Int'); |
|
4
|
|
|
|
|
|
|
has DeploymentTime => (is => 'ro', isa => 'Str'); |
|
5
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Str'); |
|
6
|
|
|
|
|
|
|
has VersionLabel => (is => 'ro', isa => 'Str'); |
|
7
|
|
|
|
|
|
|
1; |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::ElasticBeanstalk::Deployment |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 USAGE |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
This class represents one of two things: |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
|
22
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::ElasticBeanstalk::Deployment object: |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { DeploymentId => $value, ..., VersionLabel => $value }); |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head3 Results returned from an API call |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::ElasticBeanstalk::Deployment object: |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
|
33
|
|
|
|
|
|
|
$result->Att1->DeploymentId |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Information about an application version deployment. |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 DeploymentId => Int |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The ID of the deployment. This number increases by one each time that |
|
45
|
|
|
|
|
|
|
you deploy source code or change instance configuration settings. |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 DeploymentTime => Str |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
For in-progress deployments, the time that the deloyment started. |
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
For completed deployments, the time that the deployment ended. |
|
53
|
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 Status => Str |
|
56
|
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
The status of the deployment: |
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=over |
|
60
|
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=item * |
|
62
|
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
C<In Progress> : The deployment is in progress. |
|
64
|
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=item * |
|
66
|
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
C<Deployed> : The deployment succeeded. |
|
68
|
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=item * |
|
70
|
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
C<Failed> : The deployment failed. |
|
72
|
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=back |
|
74
|
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head2 VersionLabel => Str |
|
78
|
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
The version label of the application version in the deployment. |
|
80
|
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
84
|
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::ElasticBeanstalk> |
|
86
|
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
|
88
|
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
|
90
|
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
|
92
|
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
=cut |
|
94
|
|
|
|
|
|
|
|