File Coverage

blib/lib/Paws/ServiceCatalog/SearchProductsAsAdmin.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::SearchProductsAsAdmin;
3 1     1   508 use Moose;
  1         3  
  1         8  
4             has AcceptLanguage => (is => 'ro', isa => 'Str');
5             has Filters => (is => 'ro', isa => 'Paws::ServiceCatalog::ProductViewFilters');
6             has PageSize => (is => 'ro', isa => 'Int');
7             has PageToken => (is => 'ro', isa => 'Str');
8             has PortfolioId => (is => 'ro', isa => 'Str');
9             has ProductSource => (is => 'ro', isa => 'Str');
10             has SortBy => (is => 'ro', isa => 'Str');
11             has SortOrder => (is => 'ro', isa => 'Str');
12              
13 1     1   6569 use MooseX::ClassAttribute;
  1         3  
  1         10  
14              
15             class_has _api_call => (isa => 'Str', is => 'ro', default => 'SearchProductsAsAdmin');
16             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ServiceCatalog::SearchProductsAsAdminOutput');
17             class_has _result_key => (isa => 'Str', is => 'ro');
18             1;
19              
20             ### main pod documentation begin ###
21              
22             =head1 NAME
23              
24             Paws::ServiceCatalog::SearchProductsAsAdmin - Arguments for method SearchProductsAsAdmin on Paws::ServiceCatalog
25              
26             =head1 DESCRIPTION
27              
28             This class represents the parameters used for calling the method SearchProductsAsAdmin on the
29             AWS Service Catalog service. Use the attributes of this class
30             as arguments to method SearchProductsAsAdmin.
31              
32             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to SearchProductsAsAdmin.
33              
34             As an example:
35              
36             $service_obj->SearchProductsAsAdmin(Att1 => $value1, Att2 => $value2, ...);
37              
38             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.
39              
40             =head1 ATTRIBUTES
41              
42              
43             =head2 AcceptLanguage => Str
44              
45             The language code to use for this operation. Supported language codes
46             are as follows:
47              
48             "en" (English)
49              
50             "jp" (Japanese)
51              
52             "zh" (Chinese)
53              
54             If no code is specified, "en" is used as the default.
55              
56              
57              
58             =head2 Filters => L<Paws::ServiceCatalog::ProductViewFilters>
59              
60             The list of filters with which to limit search results. If no search
61             filters are specified, the output is all the products to which the
62             administrator has access.
63              
64              
65              
66             =head2 PageSize => Int
67              
68             The maximum number of items to return in the results. If more results
69             exist than fit in the specified C<PageSize>, the value of
70             C<NextPageToken> in the response is non-null.
71              
72              
73              
74             =head2 PageToken => Str
75              
76             The page token of the first page retrieved. If null, this retrieves the
77             first page of size C<PageSize>.
78              
79              
80              
81             =head2 PortfolioId => Str
82              
83             The portfolio identifier.
84              
85              
86              
87             =head2 ProductSource => Str
88              
89             Access level of the source of the product.
90              
91             Valid values are: C<"ACCOUNT">
92              
93             =head2 SortBy => Str
94              
95             The sort field specifier. If no value is specified, results are not
96             sorted.
97              
98             Valid values are: C<"Title">, C<"VersionCount">, C<"CreationDate">
99              
100             =head2 SortOrder => Str
101              
102             The sort order specifier. If no value is specified, results are not
103             sorted.
104              
105             Valid values are: C<"ASCENDING">, C<"DESCENDING">
106              
107              
108             =head1 SEE ALSO
109              
110             This class forms part of L<Paws>, documenting arguments for method SearchProductsAsAdmin in L<Paws::ServiceCatalog>
111              
112             =head1 BUGS and CONTRIBUTIONS
113              
114             The source code is located here: https://github.com/pplu/aws-sdk-perl
115              
116             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
117              
118             =cut
119