line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CodePipeline::GetPipelineStateOutput; |
3
|
1
|
|
|
1
|
|
517
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has Created => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'created' ); |
5
|
|
|
|
|
|
|
has PipelineName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'pipelineName' ); |
6
|
|
|
|
|
|
|
has PipelineVersion => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'pipelineVersion' ); |
7
|
|
|
|
|
|
|
has StageStates => (is => 'ro', isa => 'ArrayRef[Paws::CodePipeline::StageState]', traits => ['NameInRequest'], request_name => 'stageStates' ); |
8
|
|
|
|
|
|
|
has Updated => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'updated' ); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::CodePipeline::GetPipelineStateOutput |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 Created => Str |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
The date and time the pipeline was created, in timestamp format. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 PipelineName => Str |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
The name of the pipeline for which you want to get the state. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 PipelineVersion => Int |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
The version number of the pipeline. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
A newly-created pipeline is always assigned a version number of C<1>. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head2 StageStates => ArrayRef[L<Paws::CodePipeline::StageState>] |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
A list of the pipeline stage output information, including stage name, |
41
|
|
|
|
|
|
|
state, most recent run details, whether the stage is disabled, and |
42
|
|
|
|
|
|
|
other data. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 Updated => Str |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
The date and time the pipeline was last updated, in timestamp format. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head2 _request_id => Str |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=cut |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
1; |