aws-sdk-elasticsearchservice 1.29.0 → 1.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d172c07d025864b054deab7e2484a54d6c345f4
|
4
|
+
data.tar.gz: 6896b8658b2206f89692a7e7b72154e974530ea3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91086990db61f04025ac6693b96a68e1f29f8c554460e4abc467a2473dff0601416b757924c0547972dc6e7366b953e1a88bd67c97c922ea2a5e0452033678a4
|
7
|
+
data.tar.gz: 45cc98eb5dbc5258abb4c49cab8120036c4a55e1e4d850dfdcf3317968e6dbb73ccc19d190333bd8f5445efc73e0057813be9f469e9d478096c1465656c9a9e3
|
@@ -407,6 +407,9 @@ module Aws::ElasticsearchService
|
|
407
407
|
# Options to specify configuration that will be applied to the domain
|
408
408
|
# endpoint.
|
409
409
|
#
|
410
|
+
# @option params [Types::AdvancedSecurityOptionsInput] :advanced_security_options
|
411
|
+
# Specifies advanced security options.
|
412
|
+
#
|
410
413
|
# @return [Types::CreateElasticsearchDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
411
414
|
#
|
412
415
|
# * {Types::CreateElasticsearchDomainResponse#domain_status #domain_status} => Types::ElasticsearchDomainStatus
|
@@ -470,6 +473,15 @@ module Aws::ElasticsearchService
|
|
470
473
|
# enforce_https: false,
|
471
474
|
# tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
|
472
475
|
# },
|
476
|
+
# advanced_security_options: {
|
477
|
+
# enabled: false,
|
478
|
+
# internal_user_database_enabled: false,
|
479
|
+
# master_user_options: {
|
480
|
+
# master_user_arn: "ARN",
|
481
|
+
# master_user_name: "Username",
|
482
|
+
# master_user_password: "Password",
|
483
|
+
# },
|
484
|
+
# },
|
473
485
|
# })
|
474
486
|
#
|
475
487
|
# @example Response structure
|
@@ -529,6 +541,8 @@ module Aws::ElasticsearchService
|
|
529
541
|
# resp.domain_status.service_software_options.automated_update_date #=> Time
|
530
542
|
# resp.domain_status.domain_endpoint_options.enforce_https #=> Boolean
|
531
543
|
# resp.domain_status.domain_endpoint_options.tls_security_policy #=> String, one of "Policy-Min-TLS-1-0-2019-07", "Policy-Min-TLS-1-2-2019-07"
|
544
|
+
# resp.domain_status.advanced_security_options.enabled #=> Boolean
|
545
|
+
# resp.domain_status.advanced_security_options.internal_user_database_enabled #=> Boolean
|
532
546
|
#
|
533
547
|
# @overload create_elasticsearch_domain(params = {})
|
534
548
|
# @param [Hash] params ({})
|
@@ -611,6 +625,8 @@ module Aws::ElasticsearchService
|
|
611
625
|
# resp.domain_status.service_software_options.automated_update_date #=> Time
|
612
626
|
# resp.domain_status.domain_endpoint_options.enforce_https #=> Boolean
|
613
627
|
# resp.domain_status.domain_endpoint_options.tls_security_policy #=> String, one of "Policy-Min-TLS-1-0-2019-07", "Policy-Min-TLS-1-2-2019-07"
|
628
|
+
# resp.domain_status.advanced_security_options.enabled #=> Boolean
|
629
|
+
# resp.domain_status.advanced_security_options.internal_user_database_enabled #=> Boolean
|
614
630
|
#
|
615
631
|
# @overload delete_elasticsearch_domain(params = {})
|
616
632
|
# @param [Hash] params ({})
|
@@ -713,6 +729,8 @@ module Aws::ElasticsearchService
|
|
713
729
|
# resp.domain_status.service_software_options.automated_update_date #=> Time
|
714
730
|
# resp.domain_status.domain_endpoint_options.enforce_https #=> Boolean
|
715
731
|
# resp.domain_status.domain_endpoint_options.tls_security_policy #=> String, one of "Policy-Min-TLS-1-0-2019-07", "Policy-Min-TLS-1-2-2019-07"
|
732
|
+
# resp.domain_status.advanced_security_options.enabled #=> Boolean
|
733
|
+
# resp.domain_status.advanced_security_options.internal_user_database_enabled #=> Boolean
|
716
734
|
#
|
717
735
|
# @overload describe_elasticsearch_domain(params = {})
|
718
736
|
# @param [Hash] params ({})
|
@@ -838,6 +856,13 @@ module Aws::ElasticsearchService
|
|
838
856
|
# resp.domain_config.domain_endpoint_options.status.update_version #=> Integer
|
839
857
|
# resp.domain_config.domain_endpoint_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
|
840
858
|
# resp.domain_config.domain_endpoint_options.status.pending_deletion #=> Boolean
|
859
|
+
# resp.domain_config.advanced_security_options.options.enabled #=> Boolean
|
860
|
+
# resp.domain_config.advanced_security_options.options.internal_user_database_enabled #=> Boolean
|
861
|
+
# resp.domain_config.advanced_security_options.status.creation_date #=> Time
|
862
|
+
# resp.domain_config.advanced_security_options.status.update_date #=> Time
|
863
|
+
# resp.domain_config.advanced_security_options.status.update_version #=> Integer
|
864
|
+
# resp.domain_config.advanced_security_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
|
865
|
+
# resp.domain_config.advanced_security_options.status.pending_deletion #=> Boolean
|
841
866
|
#
|
842
867
|
# @overload describe_elasticsearch_domain_config(params = {})
|
843
868
|
# @param [Hash] params ({})
|
@@ -921,6 +946,8 @@ module Aws::ElasticsearchService
|
|
921
946
|
# resp.domain_status_list[0].service_software_options.automated_update_date #=> Time
|
922
947
|
# resp.domain_status_list[0].domain_endpoint_options.enforce_https #=> Boolean
|
923
948
|
# resp.domain_status_list[0].domain_endpoint_options.tls_security_policy #=> String, one of "Policy-Min-TLS-1-0-2019-07", "Policy-Min-TLS-1-2-2019-07"
|
949
|
+
# resp.domain_status_list[0].advanced_security_options.enabled #=> Boolean
|
950
|
+
# resp.domain_status_list[0].advanced_security_options.internal_user_database_enabled #=> Boolean
|
924
951
|
#
|
925
952
|
# @overload describe_elasticsearch_domains(params = {})
|
926
953
|
# @param [Hash] params ({})
|
@@ -1490,6 +1517,9 @@ module Aws::ElasticsearchService
|
|
1490
1517
|
# Options to specify configuration that will be applied to the domain
|
1491
1518
|
# endpoint.
|
1492
1519
|
#
|
1520
|
+
# @option params [Types::AdvancedSecurityOptionsInput] :advanced_security_options
|
1521
|
+
# Specifies advanced security options.
|
1522
|
+
#
|
1493
1523
|
# @return [Types::UpdateElasticsearchDomainConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1494
1524
|
#
|
1495
1525
|
# * {Types::UpdateElasticsearchDomainConfigResponse#domain_config #domain_config} => Types::ElasticsearchDomainConfig
|
@@ -1545,6 +1575,15 @@ module Aws::ElasticsearchService
|
|
1545
1575
|
# enforce_https: false,
|
1546
1576
|
# tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
|
1547
1577
|
# },
|
1578
|
+
# advanced_security_options: {
|
1579
|
+
# enabled: false,
|
1580
|
+
# internal_user_database_enabled: false,
|
1581
|
+
# master_user_options: {
|
1582
|
+
# master_user_arn: "ARN",
|
1583
|
+
# master_user_name: "Username",
|
1584
|
+
# master_user_password: "Password",
|
1585
|
+
# },
|
1586
|
+
# },
|
1548
1587
|
# })
|
1549
1588
|
#
|
1550
1589
|
# @example Response structure
|
@@ -1647,6 +1686,13 @@ module Aws::ElasticsearchService
|
|
1647
1686
|
# resp.domain_config.domain_endpoint_options.status.update_version #=> Integer
|
1648
1687
|
# resp.domain_config.domain_endpoint_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
|
1649
1688
|
# resp.domain_config.domain_endpoint_options.status.pending_deletion #=> Boolean
|
1689
|
+
# resp.domain_config.advanced_security_options.options.enabled #=> Boolean
|
1690
|
+
# resp.domain_config.advanced_security_options.options.internal_user_database_enabled #=> Boolean
|
1691
|
+
# resp.domain_config.advanced_security_options.status.creation_date #=> Time
|
1692
|
+
# resp.domain_config.advanced_security_options.status.update_date #=> Time
|
1693
|
+
# resp.domain_config.advanced_security_options.status.update_version #=> Integer
|
1694
|
+
# resp.domain_config.advanced_security_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
|
1695
|
+
# resp.domain_config.advanced_security_options.status.pending_deletion #=> Boolean
|
1650
1696
|
#
|
1651
1697
|
# @overload update_elasticsearch_domain_config(params = {})
|
1652
1698
|
# @param [Hash] params ({})
|
@@ -1712,7 +1758,7 @@ module Aws::ElasticsearchService
|
|
1712
1758
|
params: params,
|
1713
1759
|
config: config)
|
1714
1760
|
context[:gem_name] = 'aws-sdk-elasticsearchservice'
|
1715
|
-
context[:gem_version] = '1.
|
1761
|
+
context[:gem_version] = '1.30.0'
|
1716
1762
|
Seahorse::Client::Request.new(handlers, context)
|
1717
1763
|
end
|
1718
1764
|
|
@@ -18,6 +18,9 @@ module Aws::ElasticsearchService
|
|
18
18
|
AdditionalLimitList = Shapes::ListShape.new(name: 'AdditionalLimitList')
|
19
19
|
AdvancedOptions = Shapes::MapShape.new(name: 'AdvancedOptions')
|
20
20
|
AdvancedOptionsStatus = Shapes::StructureShape.new(name: 'AdvancedOptionsStatus')
|
21
|
+
AdvancedSecurityOptions = Shapes::StructureShape.new(name: 'AdvancedSecurityOptions')
|
22
|
+
AdvancedSecurityOptionsInput = Shapes::StructureShape.new(name: 'AdvancedSecurityOptionsInput')
|
23
|
+
AdvancedSecurityOptionsStatus = Shapes::StructureShape.new(name: 'AdvancedSecurityOptionsStatus')
|
21
24
|
BaseException = Shapes::StructureShape.new(name: 'BaseException')
|
22
25
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
23
26
|
CancelElasticsearchServiceSoftwareUpdateRequest = Shapes::StructureShape.new(name: 'CancelElasticsearchServiceSoftwareUpdateRequest')
|
@@ -107,6 +110,7 @@ module Aws::ElasticsearchService
|
|
107
110
|
LogPublishingOptions = Shapes::MapShape.new(name: 'LogPublishingOptions')
|
108
111
|
LogPublishingOptionsStatus = Shapes::StructureShape.new(name: 'LogPublishingOptionsStatus')
|
109
112
|
LogType = Shapes::StringShape.new(name: 'LogType')
|
113
|
+
MasterUserOptions = Shapes::StructureShape.new(name: 'MasterUserOptions')
|
110
114
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
111
115
|
MaximumInstanceCount = Shapes::IntegerShape.new(name: 'MaximumInstanceCount')
|
112
116
|
MinimumInstanceCount = Shapes::IntegerShape.new(name: 'MinimumInstanceCount')
|
@@ -115,6 +119,7 @@ module Aws::ElasticsearchService
|
|
115
119
|
NodeToNodeEncryptionOptionsStatus = Shapes::StructureShape.new(name: 'NodeToNodeEncryptionOptionsStatus')
|
116
120
|
OptionState = Shapes::StringShape.new(name: 'OptionState')
|
117
121
|
OptionStatus = Shapes::StructureShape.new(name: 'OptionStatus')
|
122
|
+
Password = Shapes::StringShape.new(name: 'Password')
|
118
123
|
PolicyDocument = Shapes::StringShape.new(name: 'PolicyDocument')
|
119
124
|
PurchaseReservedElasticsearchInstanceOfferingRequest = Shapes::StructureShape.new(name: 'PurchaseReservedElasticsearchInstanceOfferingRequest')
|
120
125
|
PurchaseReservedElasticsearchInstanceOfferingResponse = Shapes::StructureShape.new(name: 'PurchaseReservedElasticsearchInstanceOfferingResponse')
|
@@ -164,6 +169,7 @@ module Aws::ElasticsearchService
|
|
164
169
|
UpgradeStepItem = Shapes::StructureShape.new(name: 'UpgradeStepItem')
|
165
170
|
UpgradeStepsList = Shapes::ListShape.new(name: 'UpgradeStepsList')
|
166
171
|
UserPoolId = Shapes::StringShape.new(name: 'UserPoolId')
|
172
|
+
Username = Shapes::StringShape.new(name: 'Username')
|
167
173
|
VPCDerivedInfo = Shapes::StructureShape.new(name: 'VPCDerivedInfo')
|
168
174
|
VPCDerivedInfoStatus = Shapes::StructureShape.new(name: 'VPCDerivedInfoStatus')
|
169
175
|
VPCOptions = Shapes::StructureShape.new(name: 'VPCOptions')
|
@@ -192,6 +198,19 @@ module Aws::ElasticsearchService
|
|
192
198
|
AdvancedOptionsStatus.add_member(:status, Shapes::ShapeRef.new(shape: OptionStatus, required: true, location_name: "Status"))
|
193
199
|
AdvancedOptionsStatus.struct_class = Types::AdvancedOptionsStatus
|
194
200
|
|
201
|
+
AdvancedSecurityOptions.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
202
|
+
AdvancedSecurityOptions.add_member(:internal_user_database_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "InternalUserDatabaseEnabled"))
|
203
|
+
AdvancedSecurityOptions.struct_class = Types::AdvancedSecurityOptions
|
204
|
+
|
205
|
+
AdvancedSecurityOptionsInput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
206
|
+
AdvancedSecurityOptionsInput.add_member(:internal_user_database_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "InternalUserDatabaseEnabled"))
|
207
|
+
AdvancedSecurityOptionsInput.add_member(:master_user_options, Shapes::ShapeRef.new(shape: MasterUserOptions, location_name: "MasterUserOptions"))
|
208
|
+
AdvancedSecurityOptionsInput.struct_class = Types::AdvancedSecurityOptionsInput
|
209
|
+
|
210
|
+
AdvancedSecurityOptionsStatus.add_member(:options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptions, required: true, location_name: "Options"))
|
211
|
+
AdvancedSecurityOptionsStatus.add_member(:status, Shapes::ShapeRef.new(shape: OptionStatus, required: true, location_name: "Status"))
|
212
|
+
AdvancedSecurityOptionsStatus.struct_class = Types::AdvancedSecurityOptionsStatus
|
213
|
+
|
195
214
|
BaseException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
196
215
|
BaseException.struct_class = Types::BaseException
|
197
216
|
|
@@ -230,6 +249,7 @@ module Aws::ElasticsearchService
|
|
230
249
|
CreateElasticsearchDomainRequest.add_member(:advanced_options, Shapes::ShapeRef.new(shape: AdvancedOptions, location_name: "AdvancedOptions"))
|
231
250
|
CreateElasticsearchDomainRequest.add_member(:log_publishing_options, Shapes::ShapeRef.new(shape: LogPublishingOptions, location_name: "LogPublishingOptions"))
|
232
251
|
CreateElasticsearchDomainRequest.add_member(:domain_endpoint_options, Shapes::ShapeRef.new(shape: DomainEndpointOptions, location_name: "DomainEndpointOptions"))
|
252
|
+
CreateElasticsearchDomainRequest.add_member(:advanced_security_options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptionsInput, location_name: "AdvancedSecurityOptions"))
|
233
253
|
CreateElasticsearchDomainRequest.struct_class = Types::CreateElasticsearchDomainRequest
|
234
254
|
|
235
255
|
CreateElasticsearchDomainResponse.add_member(:domain_status, Shapes::ShapeRef.new(shape: ElasticsearchDomainStatus, location_name: "DomainStatus"))
|
@@ -338,6 +358,7 @@ module Aws::ElasticsearchService
|
|
338
358
|
ElasticsearchDomainConfig.add_member(:advanced_options, Shapes::ShapeRef.new(shape: AdvancedOptionsStatus, location_name: "AdvancedOptions"))
|
339
359
|
ElasticsearchDomainConfig.add_member(:log_publishing_options, Shapes::ShapeRef.new(shape: LogPublishingOptionsStatus, location_name: "LogPublishingOptions"))
|
340
360
|
ElasticsearchDomainConfig.add_member(:domain_endpoint_options, Shapes::ShapeRef.new(shape: DomainEndpointOptionsStatus, location_name: "DomainEndpointOptions"))
|
361
|
+
ElasticsearchDomainConfig.add_member(:advanced_security_options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptionsStatus, location_name: "AdvancedSecurityOptions"))
|
341
362
|
ElasticsearchDomainConfig.struct_class = Types::ElasticsearchDomainConfig
|
342
363
|
|
343
364
|
ElasticsearchDomainStatus.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "DomainId"))
|
@@ -362,6 +383,7 @@ module Aws::ElasticsearchService
|
|
362
383
|
ElasticsearchDomainStatus.add_member(:log_publishing_options, Shapes::ShapeRef.new(shape: LogPublishingOptions, location_name: "LogPublishingOptions"))
|
363
384
|
ElasticsearchDomainStatus.add_member(:service_software_options, Shapes::ShapeRef.new(shape: ServiceSoftwareOptions, location_name: "ServiceSoftwareOptions"))
|
364
385
|
ElasticsearchDomainStatus.add_member(:domain_endpoint_options, Shapes::ShapeRef.new(shape: DomainEndpointOptions, location_name: "DomainEndpointOptions"))
|
386
|
+
ElasticsearchDomainStatus.add_member(:advanced_security_options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptions, location_name: "AdvancedSecurityOptions"))
|
365
387
|
ElasticsearchDomainStatus.struct_class = Types::ElasticsearchDomainStatus
|
366
388
|
|
367
389
|
ElasticsearchDomainStatusList.member = Shapes::ShapeRef.new(shape: ElasticsearchDomainStatus)
|
@@ -465,6 +487,11 @@ module Aws::ElasticsearchService
|
|
465
487
|
LogPublishingOptionsStatus.add_member(:status, Shapes::ShapeRef.new(shape: OptionStatus, location_name: "Status"))
|
466
488
|
LogPublishingOptionsStatus.struct_class = Types::LogPublishingOptionsStatus
|
467
489
|
|
490
|
+
MasterUserOptions.add_member(:master_user_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "MasterUserARN"))
|
491
|
+
MasterUserOptions.add_member(:master_user_name, Shapes::ShapeRef.new(shape: Username, location_name: "MasterUserName"))
|
492
|
+
MasterUserOptions.add_member(:master_user_password, Shapes::ShapeRef.new(shape: Password, location_name: "MasterUserPassword"))
|
493
|
+
MasterUserOptions.struct_class = Types::MasterUserOptions
|
494
|
+
|
468
495
|
NodeToNodeEncryptionOptions.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
469
496
|
NodeToNodeEncryptionOptions.struct_class = Types::NodeToNodeEncryptionOptions
|
470
497
|
|
@@ -580,6 +607,7 @@ module Aws::ElasticsearchService
|
|
580
607
|
UpdateElasticsearchDomainConfigRequest.add_member(:access_policies, Shapes::ShapeRef.new(shape: PolicyDocument, location_name: "AccessPolicies"))
|
581
608
|
UpdateElasticsearchDomainConfigRequest.add_member(:log_publishing_options, Shapes::ShapeRef.new(shape: LogPublishingOptions, location_name: "LogPublishingOptions"))
|
582
609
|
UpdateElasticsearchDomainConfigRequest.add_member(:domain_endpoint_options, Shapes::ShapeRef.new(shape: DomainEndpointOptions, location_name: "DomainEndpointOptions"))
|
610
|
+
UpdateElasticsearchDomainConfigRequest.add_member(:advanced_security_options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptionsInput, location_name: "AdvancedSecurityOptions"))
|
583
611
|
UpdateElasticsearchDomainConfigRequest.struct_class = Types::UpdateElasticsearchDomainConfigRequest
|
584
612
|
|
585
613
|
UpdateElasticsearchDomainConfigResponse.add_member(:domain_config, Shapes::ShapeRef.new(shape: ElasticsearchDomainConfig, required: true, location_name: "DomainConfig"))
|
@@ -117,6 +117,80 @@ module Aws::ElasticsearchService
|
|
117
117
|
include Aws::Structure
|
118
118
|
end
|
119
119
|
|
120
|
+
# Specifies the advanced security configuration: whether advanced
|
121
|
+
# security is enabled, whether the internal database option is enabled.
|
122
|
+
#
|
123
|
+
# @!attribute [rw] enabled
|
124
|
+
# True if advanced security is enabled.
|
125
|
+
# @return [Boolean]
|
126
|
+
#
|
127
|
+
# @!attribute [rw] internal_user_database_enabled
|
128
|
+
# True if the internal user database is enabled.
|
129
|
+
# @return [Boolean]
|
130
|
+
#
|
131
|
+
class AdvancedSecurityOptions < Struct.new(
|
132
|
+
:enabled,
|
133
|
+
:internal_user_database_enabled)
|
134
|
+
include Aws::Structure
|
135
|
+
end
|
136
|
+
|
137
|
+
# Specifies the advanced security configuration: whether advanced
|
138
|
+
# security is enabled, whether the internal database option is enabled,
|
139
|
+
# master username and password (if internal database is enabled), and
|
140
|
+
# master user ARN (if IAM is enabled).
|
141
|
+
#
|
142
|
+
# @note When making an API call, you may pass AdvancedSecurityOptionsInput
|
143
|
+
# data as a hash:
|
144
|
+
#
|
145
|
+
# {
|
146
|
+
# enabled: false,
|
147
|
+
# internal_user_database_enabled: false,
|
148
|
+
# master_user_options: {
|
149
|
+
# master_user_arn: "ARN",
|
150
|
+
# master_user_name: "Username",
|
151
|
+
# master_user_password: "Password",
|
152
|
+
# },
|
153
|
+
# }
|
154
|
+
#
|
155
|
+
# @!attribute [rw] enabled
|
156
|
+
# True if advanced security is enabled.
|
157
|
+
# @return [Boolean]
|
158
|
+
#
|
159
|
+
# @!attribute [rw] internal_user_database_enabled
|
160
|
+
# True if the internal user database is enabled.
|
161
|
+
# @return [Boolean]
|
162
|
+
#
|
163
|
+
# @!attribute [rw] master_user_options
|
164
|
+
# Credentials for the master user: username and password, ARN, or
|
165
|
+
# both.
|
166
|
+
# @return [Types::MasterUserOptions]
|
167
|
+
#
|
168
|
+
class AdvancedSecurityOptionsInput < Struct.new(
|
169
|
+
:enabled,
|
170
|
+
:internal_user_database_enabled,
|
171
|
+
:master_user_options)
|
172
|
+
include Aws::Structure
|
173
|
+
end
|
174
|
+
|
175
|
+
# Specifies the status of advanced security options for the specified
|
176
|
+
# Elasticsearch domain.
|
177
|
+
#
|
178
|
+
# @!attribute [rw] options
|
179
|
+
# Specifies advanced security options for the specified Elasticsearch
|
180
|
+
# domain.
|
181
|
+
# @return [Types::AdvancedSecurityOptions]
|
182
|
+
#
|
183
|
+
# @!attribute [rw] status
|
184
|
+
# Status of the advanced security options for the specified
|
185
|
+
# Elasticsearch domain.
|
186
|
+
# @return [Types::OptionStatus]
|
187
|
+
#
|
188
|
+
class AdvancedSecurityOptionsStatus < Struct.new(
|
189
|
+
:options,
|
190
|
+
:status)
|
191
|
+
include Aws::Structure
|
192
|
+
end
|
193
|
+
|
120
194
|
# An error occurred while processing the request.
|
121
195
|
#
|
122
196
|
# @!attribute [rw] message
|
@@ -300,6 +374,15 @@ module Aws::ElasticsearchService
|
|
300
374
|
# enforce_https: false,
|
301
375
|
# tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
|
302
376
|
# },
|
377
|
+
# advanced_security_options: {
|
378
|
+
# enabled: false,
|
379
|
+
# internal_user_database_enabled: false,
|
380
|
+
# master_user_options: {
|
381
|
+
# master_user_arn: "ARN",
|
382
|
+
# master_user_name: "Username",
|
383
|
+
# master_user_password: "Password",
|
384
|
+
# },
|
385
|
+
# },
|
303
386
|
# }
|
304
387
|
#
|
305
388
|
# @!attribute [rw] domain_name
|
@@ -389,6 +472,10 @@ module Aws::ElasticsearchService
|
|
389
472
|
# endpoint.
|
390
473
|
# @return [Types::DomainEndpointOptions]
|
391
474
|
#
|
475
|
+
# @!attribute [rw] advanced_security_options
|
476
|
+
# Specifies advanced security options.
|
477
|
+
# @return [Types::AdvancedSecurityOptionsInput]
|
478
|
+
#
|
392
479
|
class CreateElasticsearchDomainRequest < Struct.new(
|
393
480
|
:domain_name,
|
394
481
|
:elasticsearch_version,
|
@@ -402,7 +489,8 @@ module Aws::ElasticsearchService
|
|
402
489
|
:node_to_node_encryption_options,
|
403
490
|
:advanced_options,
|
404
491
|
:log_publishing_options,
|
405
|
-
:domain_endpoint_options
|
492
|
+
:domain_endpoint_options,
|
493
|
+
:advanced_security_options)
|
406
494
|
include Aws::Structure
|
407
495
|
end
|
408
496
|
|
@@ -994,6 +1082,10 @@ module Aws::ElasticsearchService
|
|
994
1082
|
# Specifies the `DomainEndpointOptions` for the Elasticsearch domain.
|
995
1083
|
# @return [Types::DomainEndpointOptionsStatus]
|
996
1084
|
#
|
1085
|
+
# @!attribute [rw] advanced_security_options
|
1086
|
+
# Specifies `AdvancedSecurityOptions` for the domain.
|
1087
|
+
# @return [Types::AdvancedSecurityOptionsStatus]
|
1088
|
+
#
|
997
1089
|
class ElasticsearchDomainConfig < Struct.new(
|
998
1090
|
:elasticsearch_version,
|
999
1091
|
:elasticsearch_cluster_config,
|
@@ -1006,7 +1098,8 @@ module Aws::ElasticsearchService
|
|
1006
1098
|
:node_to_node_encryption_options,
|
1007
1099
|
:advanced_options,
|
1008
1100
|
:log_publishing_options,
|
1009
|
-
:domain_endpoint_options
|
1101
|
+
:domain_endpoint_options,
|
1102
|
+
:advanced_security_options)
|
1010
1103
|
include Aws::Structure
|
1011
1104
|
end
|
1012
1105
|
|
@@ -1135,6 +1228,11 @@ module Aws::ElasticsearchService
|
|
1135
1228
|
# The current status of the Elasticsearch domain's endpoint options.
|
1136
1229
|
# @return [Types::DomainEndpointOptions]
|
1137
1230
|
#
|
1231
|
+
# @!attribute [rw] advanced_security_options
|
1232
|
+
# The current status of the Elasticsearch domain's advanced security
|
1233
|
+
# options.
|
1234
|
+
# @return [Types::AdvancedSecurityOptions]
|
1235
|
+
#
|
1138
1236
|
class ElasticsearchDomainStatus < Struct.new(
|
1139
1237
|
:domain_id,
|
1140
1238
|
:domain_name,
|
@@ -1157,7 +1255,8 @@ module Aws::ElasticsearchService
|
|
1157
1255
|
:advanced_options,
|
1158
1256
|
:log_publishing_options,
|
1159
1257
|
:service_software_options,
|
1160
|
-
:domain_endpoint_options
|
1258
|
+
:domain_endpoint_options,
|
1259
|
+
:advanced_security_options)
|
1161
1260
|
include Aws::Structure
|
1162
1261
|
end
|
1163
1262
|
|
@@ -1629,6 +1728,38 @@ module Aws::ElasticsearchService
|
|
1629
1728
|
include Aws::Structure
|
1630
1729
|
end
|
1631
1730
|
|
1731
|
+
# Credentials for the master user: username and password, ARN, or both.
|
1732
|
+
#
|
1733
|
+
# @note When making an API call, you may pass MasterUserOptions
|
1734
|
+
# data as a hash:
|
1735
|
+
#
|
1736
|
+
# {
|
1737
|
+
# master_user_arn: "ARN",
|
1738
|
+
# master_user_name: "Username",
|
1739
|
+
# master_user_password: "Password",
|
1740
|
+
# }
|
1741
|
+
#
|
1742
|
+
# @!attribute [rw] master_user_arn
|
1743
|
+
# ARN for the master user (if IAM is enabled).
|
1744
|
+
# @return [String]
|
1745
|
+
#
|
1746
|
+
# @!attribute [rw] master_user_name
|
1747
|
+
# The master user's username, which is stored in the Amazon
|
1748
|
+
# Elasticsearch Service domain's internal database.
|
1749
|
+
# @return [String]
|
1750
|
+
#
|
1751
|
+
# @!attribute [rw] master_user_password
|
1752
|
+
# The master user's password, which is stored in the Amazon
|
1753
|
+
# Elasticsearch Service domain's internal database.
|
1754
|
+
# @return [String]
|
1755
|
+
#
|
1756
|
+
class MasterUserOptions < Struct.new(
|
1757
|
+
:master_user_arn,
|
1758
|
+
:master_user_name,
|
1759
|
+
:master_user_password)
|
1760
|
+
include Aws::Structure
|
1761
|
+
end
|
1762
|
+
|
1632
1763
|
# Specifies the node-to-node encryption options.
|
1633
1764
|
#
|
1634
1765
|
# @note When making an API call, you may pass NodeToNodeEncryptionOptions
|
@@ -2177,6 +2308,15 @@ module Aws::ElasticsearchService
|
|
2177
2308
|
# enforce_https: false,
|
2178
2309
|
# tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
|
2179
2310
|
# },
|
2311
|
+
# advanced_security_options: {
|
2312
|
+
# enabled: false,
|
2313
|
+
# internal_user_database_enabled: false,
|
2314
|
+
# master_user_options: {
|
2315
|
+
# master_user_arn: "ARN",
|
2316
|
+
# master_user_name: "Username",
|
2317
|
+
# master_user_password: "Password",
|
2318
|
+
# },
|
2319
|
+
# },
|
2180
2320
|
# }
|
2181
2321
|
#
|
2182
2322
|
# @!attribute [rw] domain_name
|
@@ -2242,6 +2382,10 @@ module Aws::ElasticsearchService
|
|
2242
2382
|
# endpoint.
|
2243
2383
|
# @return [Types::DomainEndpointOptions]
|
2244
2384
|
#
|
2385
|
+
# @!attribute [rw] advanced_security_options
|
2386
|
+
# Specifies advanced security options.
|
2387
|
+
# @return [Types::AdvancedSecurityOptionsInput]
|
2388
|
+
#
|
2245
2389
|
class UpdateElasticsearchDomainConfigRequest < Struct.new(
|
2246
2390
|
:domain_name,
|
2247
2391
|
:elasticsearch_cluster_config,
|
@@ -2252,7 +2396,8 @@ module Aws::ElasticsearchService
|
|
2252
2396
|
:advanced_options,
|
2253
2397
|
:access_policies,
|
2254
2398
|
:log_publishing_options,
|
2255
|
-
:domain_endpoint_options
|
2399
|
+
:domain_endpoint_options,
|
2400
|
+
:advanced_security_options)
|
2256
2401
|
include Aws::Structure
|
2257
2402
|
end
|
2258
2403
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-elasticsearchservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.30.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|