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   582 use Moose;
  1         5  
  1         11  
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   10045 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.
45              
46             =over
47              
48             =item *
49              
50             C<en> - English (default)
51              
52             =item *
53              
54             C<jp> - Japanese
55              
56             =item *
57              
58             C<zh> - Chinese
59              
60             =back
61              
62              
63              
64              
65             =head2 AddTags => ArrayRef[L<Paws::ServiceCatalog::Tag>]
66              
67             Tags to add to the existing list of tags associated with the portfolio.
68              
69              
70              
71             =head2 Description => Str
72              
73             The updated text description of the portfolio.
74              
75              
76              
77             =head2 DisplayName => Str
78              
79             The name to use for display purposes.
80              
81              
82              
83             =head2 B<REQUIRED> Id => Str
84              
85             The identifier of the portfolio for the update request.
86              
87              
88              
89             =head2 ProviderName => Str
90              
91             The updated name of the portfolio provider.
92              
93              
94              
95             =head2 RemoveTags => ArrayRef[Str|Undef]
96              
97             Tags to remove from the existing list of tags associated with the
98             portfolio.
99              
100              
101              
102              
103             =head1 SEE ALSO
104              
105             This class forms part of L<Paws>, documenting arguments for method UpdatePortfolio in L<Paws::ServiceCatalog>
106              
107             =head1 BUGS and CONTRIBUTIONS
108              
109             The source code is located here: https://github.com/pplu/aws-sdk-perl
110              
111             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
112              
113             =cut
114