File Coverage

blib/lib/Paws/ServiceCatalog/UpdatePortfolio.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::ServiceCatalog::UpdatePortfolio;
3 1     1   623 use Moose;
  1         3  
  1         9  
4             has AcceptLanguage => (is => 'ro', isa => 'Str');
5             has AddTags => (is => 'ro', isa => 'ArrayRef[Paws::ServiceCatalog::Tag]');
6             has Description => (is => 'ro', isa => 'Str');
7             has DisplayName => (is => 'ro', isa => 'Str');
8             has Id => (is => 'ro', isa => 'Str', required => 1);
9             has ProviderName => (is => 'ro', isa => 'Str');
10             has RemoveTags => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
11              
12 1     1   8465 use MooseX::ClassAttribute;
  1         4  
  1         11  
13              
14             class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdatePortfolio');
15             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ServiceCatalog::UpdatePortfolioOutput');
16             class_has _result_key => (isa => 'Str', is => 'ro');
17             1;
18              
19             ### main pod documentation begin ###
20              
21             =head1 NAME
22              
23             Paws::ServiceCatalog::UpdatePortfolio - Arguments for method UpdatePortfolio on Paws::ServiceCatalog
24              
25             =head1 DESCRIPTION
26              
27             This class represents the parameters used for calling the method UpdatePortfolio on the
28             AWS Service Catalog service. Use the attributes of this class
29             as arguments to method UpdatePortfolio.
30              
31             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdatePortfolio.
32              
33             As an example:
34              
35             $service_obj->UpdatePortfolio(Att1 => $value1, Att2 => $value2, ...);
36              
37             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
38              
39             =head1 ATTRIBUTES
40              
41              
42             =head2 AcceptLanguage => Str
43              
44             The language code to use for this operation. Supported language codes
45             are as follows:
46              
47             "en" (English)
48              
49             "jp" (Japanese)
50              
51             "zh" (Chinese)
52              
53             If no code is specified, "en" is used as the default.
54              
55              
56              
57             =head2 AddTags => ArrayRef[L<Paws::ServiceCatalog::Tag>]
58              
59             Tags to add to the existing list of tags associated with the portfolio.
60              
61              
62              
63             =head2 Description => Str
64              
65             The updated text description of the portfolio.
66              
67              
68              
69             =head2 DisplayName => Str
70              
71             The name to use for display purposes.
72              
73              
74              
75             =head2 B<REQUIRED> Id => Str
76              
77             The identifier of the portfolio for the update request.
78              
79              
80              
81             =head2 ProviderName => Str
82              
83             The updated name of the portfolio provider.
84              
85              
86              
87             =head2 RemoveTags => ArrayRef[Str|Undef]
88              
89             Tags to remove from the existing list of tags associated with the
90             portfolio.
91              
92              
93              
94              
95             =head1 SEE ALSO
96              
97             This class forms part of L<Paws>, documenting arguments for method UpdatePortfolio in L<Paws::ServiceCatalog>
98              
99             =head1 BUGS and CONTRIBUTIONS
100              
101             The source code is located here: https://github.com/pplu/aws-sdk-perl
102              
103             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
104              
105             =cut
106