line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::ES::AdvancedOptionsStatus; |
2
|
1
|
|
|
1
|
|
441
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
3
|
|
|
|
|
|
|
has Options => (is => 'ro', isa => 'Paws::ES::AdvancedOptions', required => 1); |
4
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Paws::ES::OptionStatus', required => 1); |
5
|
|
|
|
|
|
|
1; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
### main pod documentation begin ### |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
Paws::ES::AdvancedOptionsStatus |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 USAGE |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
This class represents one of two things: |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
20
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::ES::AdvancedOptionsStatus object: |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { Options => $value, ..., Status => $value }); |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head3 Results returned from an API call |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::ES::AdvancedOptionsStatus object: |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
31
|
|
|
|
|
|
|
$result->Att1->Options |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 DESCRIPTION |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Status of the advanced options for the specified Elasticsearch domain. |
36
|
|
|
|
|
|
|
Currently, the following advanced options are available: |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=over |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=item * Option to allow references to indices in an HTTP request body. |
41
|
|
|
|
|
|
|
Must be C<false> when configuring access to individual sub-resources. |
42
|
|
|
|
|
|
|
By default, the value is C<true>. See Configuration Advanced Options |
43
|
|
|
|
|
|
|
for more information. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=item * Option to specify the percentage of heap space that is |
46
|
|
|
|
|
|
|
allocated to field data. By default, this setting is unbounded. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=back |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
For more information, see Configuring Advanced Options. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 B<REQUIRED> Options => L<Paws::ES::AdvancedOptions> |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
Specifies the status of advanced options for the specified |
58
|
|
|
|
|
|
|
Elasticsearch domain. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 B<REQUIRED> Status => L<Paws::ES::OptionStatus> |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
Specifies the status of C<OptionStatus> for advanced options for the |
64
|
|
|
|
|
|
|
specified Elasticsearch domain. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head1 SEE ALSO |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::ES> |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
=cut |
79
|
|
|
|
|
|
|
|