File Coverage

blib/lib/Paws/ES/UpdateElasticsearchDomainConfig.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::ES::UpdateElasticsearchDomainConfig;
3 1     1   646 use Moose;
  1         3  
  1         11  
4             has AccessPolicies => (is => 'ro', isa => 'Str');
5             has AdvancedOptions => (is => 'ro', isa => 'Paws::ES::AdvancedOptions');
6             has DomainName => (is => 'ro', isa => 'Str', traits => ['ParamInURI'], uri_name => 'DomainName' , required => 1);
7             has EBSOptions => (is => 'ro', isa => 'Paws::ES::EBSOptions');
8             has ElasticsearchClusterConfig => (is => 'ro', isa => 'Paws::ES::ElasticsearchClusterConfig');
9             has SnapshotOptions => (is => 'ro', isa => 'Paws::ES::SnapshotOptions');
10              
11 1     1   7012 use MooseX::ClassAttribute;
  1         3  
  1         12  
12              
13             class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdateElasticsearchDomainConfig');
14             class_has _api_uri => (isa => 'Str', is => 'ro', default => '/2015-01-01/es/domain/{DomainName}/config');
15             class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST');
16             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ES::UpdateElasticsearchDomainConfigResponse');
17             class_has _result_key => (isa => 'Str', is => 'ro');
18             1;
19              
20             ### main pod documentation begin ###
21              
22             =head1 NAME
23              
24             Paws::ES::UpdateElasticsearchDomainConfig - Arguments for method UpdateElasticsearchDomainConfig on Paws::ES
25              
26             =head1 DESCRIPTION
27              
28             This class represents the parameters used for calling the method UpdateElasticsearchDomainConfig on the
29             Amazon Elasticsearch Service service. Use the attributes of this class
30             as arguments to method UpdateElasticsearchDomainConfig.
31              
32             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateElasticsearchDomainConfig.
33              
34             As an example:
35              
36             $service_obj->UpdateElasticsearchDomainConfig(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 AccessPolicies => Str
44              
45             IAM access policy as a JSON-formatted string.
46              
47              
48              
49             =head2 AdvancedOptions => L<Paws::ES::AdvancedOptions>
50              
51             Modifies the advanced option to allow references to indices in an HTTP
52             request body. Must be C<false> when configuring access to individual
53             sub-resources. By default, the value is C<true>. See Configuration
54             Advanced Options for more information.
55              
56              
57              
58             =head2 B<REQUIRED> DomainName => Str
59              
60             The name of the Elasticsearch domain that you are updating.
61              
62              
63              
64             =head2 EBSOptions => L<Paws::ES::EBSOptions>
65              
66             Specify the type and size of the EBS volume that you want to use.
67              
68              
69              
70             =head2 ElasticsearchClusterConfig => L<Paws::ES::ElasticsearchClusterConfig>
71              
72             The type and number of instances to instantiate for the domain cluster.
73              
74              
75              
76             =head2 SnapshotOptions => L<Paws::ES::SnapshotOptions>
77              
78             Option to set the time, in UTC format, for the daily automated
79             snapshot. Default value is C<0> hours.
80              
81              
82              
83              
84             =head1 SEE ALSO
85              
86             This class forms part of L<Paws>, documenting arguments for method UpdateElasticsearchDomainConfig in L<Paws::ES>
87              
88             =head1 BUGS and CONTRIBUTIONS
89              
90             The source code is located here: https://github.com/pplu/aws-sdk-perl
91              
92             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
93              
94             =cut
95