aws-sdk-opensearchservice 1.70.0 → 1.72.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-opensearchservice/client.rb +50 -9
- data/lib/aws-sdk-opensearchservice/client_api.rb +16 -0
- data/lib/aws-sdk-opensearchservice/types.rb +63 -0
- data/lib/aws-sdk-opensearchservice.rb +1 -1
- data/sig/client.rbs +11 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +16 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cfff1a518c4c640f8a9911d5fc9af5d01259c55a1bfda79ee54f0e3687674ec6
|
4
|
+
data.tar.gz: bd98506c791a62813f5ee0968d0a2a7bb5536867bedd7e34c1d90c7b6f943b0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f809f7d179e3788ceab76aa6bbc42febb9c62eec96403880dfeae9f871363ad95abc55daf10982027c2061d7bc53e691f46a93a6e1c2cf94c6a7714c8287701
|
7
|
+
data.tar.gz: 5f1e9ad201c4cadd05c84469048a529a600be5b331522eea7960d7b586a838816d3170ed7df90844411f4dd900f7f7ba3b17e84d5565cc4d29897701fdd7a8c1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.72.0 (2025-07-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Granular access control support for NEO-SAML with IAMFederation for AOS data source
|
8
|
+
|
9
|
+
1.71.0 (2025-07-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.70.0 (2025-07-15)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.72.0
|
@@ -95,7 +95,7 @@ module Aws::OpenSearchService
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::OpenSearchService
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::OpenSearchService
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::OpenSearchService
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::OpenSearchService
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -1264,6 +1274,11 @@ module Aws::OpenSearchService
|
|
1264
1274
|
# roles_key: "RolesKey",
|
1265
1275
|
# public_key: "String",
|
1266
1276
|
# },
|
1277
|
+
# iam_federation_options: {
|
1278
|
+
# enabled: false,
|
1279
|
+
# subject_key: "IAMFederationSubjectKey",
|
1280
|
+
# roles_key: "IAMFederationRolesKey",
|
1281
|
+
# },
|
1267
1282
|
# anonymous_auth_enabled: false,
|
1268
1283
|
# },
|
1269
1284
|
# identity_center_options: {
|
@@ -1398,6 +1413,9 @@ module Aws::OpenSearchService
|
|
1398
1413
|
# resp.domain_status.advanced_security_options.jwt_options.subject_key #=> String
|
1399
1414
|
# resp.domain_status.advanced_security_options.jwt_options.roles_key #=> String
|
1400
1415
|
# resp.domain_status.advanced_security_options.jwt_options.public_key #=> String
|
1416
|
+
# resp.domain_status.advanced_security_options.iam_federation_options.enabled #=> Boolean
|
1417
|
+
# resp.domain_status.advanced_security_options.iam_federation_options.subject_key #=> String
|
1418
|
+
# resp.domain_status.advanced_security_options.iam_federation_options.roles_key #=> String
|
1401
1419
|
# resp.domain_status.advanced_security_options.anonymous_auth_disable_date #=> Time
|
1402
1420
|
# resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
|
1403
1421
|
# resp.domain_status.identity_center_options.enabled_api_access #=> Boolean
|
@@ -1862,6 +1880,9 @@ module Aws::OpenSearchService
|
|
1862
1880
|
# resp.domain_status.advanced_security_options.jwt_options.subject_key #=> String
|
1863
1881
|
# resp.domain_status.advanced_security_options.jwt_options.roles_key #=> String
|
1864
1882
|
# resp.domain_status.advanced_security_options.jwt_options.public_key #=> String
|
1883
|
+
# resp.domain_status.advanced_security_options.iam_federation_options.enabled #=> Boolean
|
1884
|
+
# resp.domain_status.advanced_security_options.iam_federation_options.subject_key #=> String
|
1885
|
+
# resp.domain_status.advanced_security_options.iam_federation_options.roles_key #=> String
|
1865
1886
|
# resp.domain_status.advanced_security_options.anonymous_auth_disable_date #=> Time
|
1866
1887
|
# resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
|
1867
1888
|
# resp.domain_status.identity_center_options.enabled_api_access #=> Boolean
|
@@ -2184,6 +2205,9 @@ module Aws::OpenSearchService
|
|
2184
2205
|
# resp.domain_status.advanced_security_options.jwt_options.subject_key #=> String
|
2185
2206
|
# resp.domain_status.advanced_security_options.jwt_options.roles_key #=> String
|
2186
2207
|
# resp.domain_status.advanced_security_options.jwt_options.public_key #=> String
|
2208
|
+
# resp.domain_status.advanced_security_options.iam_federation_options.enabled #=> Boolean
|
2209
|
+
# resp.domain_status.advanced_security_options.iam_federation_options.subject_key #=> String
|
2210
|
+
# resp.domain_status.advanced_security_options.iam_federation_options.roles_key #=> String
|
2187
2211
|
# resp.domain_status.advanced_security_options.anonymous_auth_disable_date #=> Time
|
2188
2212
|
# resp.domain_status.advanced_security_options.anonymous_auth_enabled #=> Boolean
|
2189
2213
|
# resp.domain_status.identity_center_options.enabled_api_access #=> Boolean
|
@@ -2479,6 +2503,9 @@ module Aws::OpenSearchService
|
|
2479
2503
|
# resp.domain_config.advanced_security_options.options.jwt_options.subject_key #=> String
|
2480
2504
|
# resp.domain_config.advanced_security_options.options.jwt_options.roles_key #=> String
|
2481
2505
|
# resp.domain_config.advanced_security_options.options.jwt_options.public_key #=> String
|
2506
|
+
# resp.domain_config.advanced_security_options.options.iam_federation_options.enabled #=> Boolean
|
2507
|
+
# resp.domain_config.advanced_security_options.options.iam_federation_options.subject_key #=> String
|
2508
|
+
# resp.domain_config.advanced_security_options.options.iam_federation_options.roles_key #=> String
|
2482
2509
|
# resp.domain_config.advanced_security_options.options.anonymous_auth_disable_date #=> Time
|
2483
2510
|
# resp.domain_config.advanced_security_options.options.anonymous_auth_enabled #=> Boolean
|
2484
2511
|
# resp.domain_config.advanced_security_options.status.creation_date #=> Time
|
@@ -2755,6 +2782,9 @@ module Aws::OpenSearchService
|
|
2755
2782
|
# resp.domain_status_list[0].advanced_security_options.jwt_options.subject_key #=> String
|
2756
2783
|
# resp.domain_status_list[0].advanced_security_options.jwt_options.roles_key #=> String
|
2757
2784
|
# resp.domain_status_list[0].advanced_security_options.jwt_options.public_key #=> String
|
2785
|
+
# resp.domain_status_list[0].advanced_security_options.iam_federation_options.enabled #=> Boolean
|
2786
|
+
# resp.domain_status_list[0].advanced_security_options.iam_federation_options.subject_key #=> String
|
2787
|
+
# resp.domain_status_list[0].advanced_security_options.iam_federation_options.roles_key #=> String
|
2758
2788
|
# resp.domain_status_list[0].advanced_security_options.anonymous_auth_disable_date #=> Time
|
2759
2789
|
# resp.domain_status_list[0].advanced_security_options.anonymous_auth_enabled #=> Boolean
|
2760
2790
|
# resp.domain_status_list[0].identity_center_options.enabled_api_access #=> Boolean
|
@@ -2919,6 +2949,9 @@ module Aws::OpenSearchService
|
|
2919
2949
|
# resp.dry_run_config.advanced_security_options.jwt_options.subject_key #=> String
|
2920
2950
|
# resp.dry_run_config.advanced_security_options.jwt_options.roles_key #=> String
|
2921
2951
|
# resp.dry_run_config.advanced_security_options.jwt_options.public_key #=> String
|
2952
|
+
# resp.dry_run_config.advanced_security_options.iam_federation_options.enabled #=> Boolean
|
2953
|
+
# resp.dry_run_config.advanced_security_options.iam_federation_options.subject_key #=> String
|
2954
|
+
# resp.dry_run_config.advanced_security_options.iam_federation_options.roles_key #=> String
|
2922
2955
|
# resp.dry_run_config.advanced_security_options.anonymous_auth_disable_date #=> Time
|
2923
2956
|
# resp.dry_run_config.advanced_security_options.anonymous_auth_enabled #=> Boolean
|
2924
2957
|
# resp.dry_run_config.identity_center_options.enabled_api_access #=> Boolean
|
@@ -5197,6 +5230,11 @@ module Aws::OpenSearchService
|
|
5197
5230
|
# roles_key: "RolesKey",
|
5198
5231
|
# public_key: "String",
|
5199
5232
|
# },
|
5233
|
+
# iam_federation_options: {
|
5234
|
+
# enabled: false,
|
5235
|
+
# subject_key: "IAMFederationSubjectKey",
|
5236
|
+
# roles_key: "IAMFederationRolesKey",
|
5237
|
+
# },
|
5200
5238
|
# anonymous_auth_enabled: false,
|
5201
5239
|
# },
|
5202
5240
|
# identity_center_options: {
|
@@ -5373,6 +5411,9 @@ module Aws::OpenSearchService
|
|
5373
5411
|
# resp.domain_config.advanced_security_options.options.jwt_options.subject_key #=> String
|
5374
5412
|
# resp.domain_config.advanced_security_options.options.jwt_options.roles_key #=> String
|
5375
5413
|
# resp.domain_config.advanced_security_options.options.jwt_options.public_key #=> String
|
5414
|
+
# resp.domain_config.advanced_security_options.options.iam_federation_options.enabled #=> Boolean
|
5415
|
+
# resp.domain_config.advanced_security_options.options.iam_federation_options.subject_key #=> String
|
5416
|
+
# resp.domain_config.advanced_security_options.options.iam_federation_options.roles_key #=> String
|
5376
5417
|
# resp.domain_config.advanced_security_options.options.anonymous_auth_disable_date #=> Time
|
5377
5418
|
# resp.domain_config.advanced_security_options.options.anonymous_auth_enabled #=> Boolean
|
5378
5419
|
# resp.domain_config.advanced_security_options.status.creation_date #=> Time
|
@@ -5805,7 +5846,7 @@ module Aws::OpenSearchService
|
|
5805
5846
|
tracer: tracer
|
5806
5847
|
)
|
5807
5848
|
context[:gem_name] = 'aws-sdk-opensearchservice'
|
5808
|
-
context[:gem_version] = '1.
|
5849
|
+
context[:gem_version] = '1.72.0'
|
5809
5850
|
Seahorse::Client::Request.new(handlers, context)
|
5810
5851
|
end
|
5811
5852
|
|
@@ -260,6 +260,10 @@ module Aws::OpenSearchService
|
|
260
260
|
GetUpgradeStatusRequest = Shapes::StructureShape.new(name: 'GetUpgradeStatusRequest')
|
261
261
|
GetUpgradeStatusResponse = Shapes::StructureShape.new(name: 'GetUpgradeStatusResponse')
|
262
262
|
HostedZoneId = Shapes::StringShape.new(name: 'HostedZoneId')
|
263
|
+
IAMFederationOptionsInput = Shapes::StructureShape.new(name: 'IAMFederationOptionsInput')
|
264
|
+
IAMFederationOptionsOutput = Shapes::StructureShape.new(name: 'IAMFederationOptionsOutput')
|
265
|
+
IAMFederationRolesKey = Shapes::StringShape.new(name: 'IAMFederationRolesKey')
|
266
|
+
IAMFederationSubjectKey = Shapes::StringShape.new(name: 'IAMFederationSubjectKey')
|
263
267
|
IPAddressType = Shapes::StringShape.new(name: 'IPAddressType')
|
264
268
|
IPAddressTypeStatus = Shapes::StructureShape.new(name: 'IPAddressTypeStatus')
|
265
269
|
IamIdentityCenterOptions = Shapes::StructureShape.new(name: 'IamIdentityCenterOptions')
|
@@ -613,6 +617,7 @@ module Aws::OpenSearchService
|
|
613
617
|
AdvancedSecurityOptions.add_member(:internal_user_database_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "InternalUserDatabaseEnabled"))
|
614
618
|
AdvancedSecurityOptions.add_member(:saml_options, Shapes::ShapeRef.new(shape: SAMLOptionsOutput, location_name: "SAMLOptions"))
|
615
619
|
AdvancedSecurityOptions.add_member(:jwt_options, Shapes::ShapeRef.new(shape: JWTOptionsOutput, location_name: "JWTOptions"))
|
620
|
+
AdvancedSecurityOptions.add_member(:iam_federation_options, Shapes::ShapeRef.new(shape: IAMFederationOptionsOutput, location_name: "IAMFederationOptions"))
|
616
621
|
AdvancedSecurityOptions.add_member(:anonymous_auth_disable_date, Shapes::ShapeRef.new(shape: DisableTimestamp, location_name: "AnonymousAuthDisableDate"))
|
617
622
|
AdvancedSecurityOptions.add_member(:anonymous_auth_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "AnonymousAuthEnabled"))
|
618
623
|
AdvancedSecurityOptions.struct_class = Types::AdvancedSecurityOptions
|
@@ -622,6 +627,7 @@ module Aws::OpenSearchService
|
|
622
627
|
AdvancedSecurityOptionsInput.add_member(:master_user_options, Shapes::ShapeRef.new(shape: MasterUserOptions, location_name: "MasterUserOptions"))
|
623
628
|
AdvancedSecurityOptionsInput.add_member(:saml_options, Shapes::ShapeRef.new(shape: SAMLOptionsInput, location_name: "SAMLOptions"))
|
624
629
|
AdvancedSecurityOptionsInput.add_member(:jwt_options, Shapes::ShapeRef.new(shape: JWTOptionsInput, location_name: "JWTOptions"))
|
630
|
+
AdvancedSecurityOptionsInput.add_member(:iam_federation_options, Shapes::ShapeRef.new(shape: IAMFederationOptionsInput, location_name: "IAMFederationOptions"))
|
625
631
|
AdvancedSecurityOptionsInput.add_member(:anonymous_auth_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "AnonymousAuthEnabled"))
|
626
632
|
AdvancedSecurityOptionsInput.struct_class = Types::AdvancedSecurityOptionsInput
|
627
633
|
|
@@ -1413,6 +1419,16 @@ module Aws::OpenSearchService
|
|
1413
1419
|
GetUpgradeStatusResponse.add_member(:upgrade_name, Shapes::ShapeRef.new(shape: UpgradeName, location_name: "UpgradeName"))
|
1414
1420
|
GetUpgradeStatusResponse.struct_class = Types::GetUpgradeStatusResponse
|
1415
1421
|
|
1422
|
+
IAMFederationOptionsInput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
1423
|
+
IAMFederationOptionsInput.add_member(:subject_key, Shapes::ShapeRef.new(shape: IAMFederationSubjectKey, location_name: "SubjectKey"))
|
1424
|
+
IAMFederationOptionsInput.add_member(:roles_key, Shapes::ShapeRef.new(shape: IAMFederationRolesKey, location_name: "RolesKey"))
|
1425
|
+
IAMFederationOptionsInput.struct_class = Types::IAMFederationOptionsInput
|
1426
|
+
|
1427
|
+
IAMFederationOptionsOutput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
1428
|
+
IAMFederationOptionsOutput.add_member(:subject_key, Shapes::ShapeRef.new(shape: IAMFederationSubjectKey, location_name: "SubjectKey"))
|
1429
|
+
IAMFederationOptionsOutput.add_member(:roles_key, Shapes::ShapeRef.new(shape: IAMFederationRolesKey, location_name: "RolesKey"))
|
1430
|
+
IAMFederationOptionsOutput.struct_class = Types::IAMFederationOptionsOutput
|
1431
|
+
|
1416
1432
|
IPAddressTypeStatus.add_member(:options, Shapes::ShapeRef.new(shape: IPAddressType, required: true, location_name: "Options"))
|
1417
1433
|
IPAddressTypeStatus.add_member(:status, Shapes::ShapeRef.new(shape: OptionStatus, required: true, location_name: "Status"))
|
1418
1434
|
IPAddressTypeStatus.struct_class = Types::IPAddressTypeStatus
|
@@ -367,6 +367,11 @@ module Aws::OpenSearchService
|
|
367
367
|
# OpenSearch Service.
|
368
368
|
# @return [Types::JWTOptionsOutput]
|
369
369
|
#
|
370
|
+
# @!attribute [rw] iam_federation_options
|
371
|
+
# Container for information about the IAM federation configuration for
|
372
|
+
# an OpenSearch UI application.
|
373
|
+
# @return [Types::IAMFederationOptionsOutput]
|
374
|
+
#
|
370
375
|
# @!attribute [rw] anonymous_auth_disable_date
|
371
376
|
# Date and time when the migration period will be disabled. Only
|
372
377
|
# necessary when [enabling fine-grained access control on an existing
|
@@ -394,6 +399,7 @@ module Aws::OpenSearchService
|
|
394
399
|
:internal_user_database_enabled,
|
395
400
|
:saml_options,
|
396
401
|
:jwt_options,
|
402
|
+
:iam_federation_options,
|
397
403
|
:anonymous_auth_disable_date,
|
398
404
|
:anonymous_auth_enabled)
|
399
405
|
SENSITIVE = []
|
@@ -430,6 +436,11 @@ module Aws::OpenSearchService
|
|
430
436
|
# OpenSearch Service.
|
431
437
|
# @return [Types::JWTOptionsInput]
|
432
438
|
#
|
439
|
+
# @!attribute [rw] iam_federation_options
|
440
|
+
# Container for information about the IAM federation configuration for
|
441
|
+
# an OpenSearch UI application.
|
442
|
+
# @return [Types::IAMFederationOptionsInput]
|
443
|
+
#
|
433
444
|
# @!attribute [rw] anonymous_auth_enabled
|
434
445
|
# True to enable a 30-day migration period during which administrators
|
435
446
|
# can create role mappings. Only necessary when [enabling fine-grained
|
@@ -448,6 +459,7 @@ module Aws::OpenSearchService
|
|
448
459
|
:master_user_options,
|
449
460
|
:saml_options,
|
450
461
|
:jwt_options,
|
462
|
+
:iam_federation_options,
|
451
463
|
:anonymous_auth_enabled)
|
452
464
|
SENSITIVE = []
|
453
465
|
include Aws::Structure
|
@@ -4469,6 +4481,57 @@ module Aws::OpenSearchService
|
|
4469
4481
|
include Aws::Structure
|
4470
4482
|
end
|
4471
4483
|
|
4484
|
+
# The IAM federation authentication configuration for an Amazon
|
4485
|
+
# OpenSearch Service domain.
|
4486
|
+
#
|
4487
|
+
# @!attribute [rw] enabled
|
4488
|
+
# True to enable IAM federation authentication for a domain.
|
4489
|
+
# @return [Boolean]
|
4490
|
+
#
|
4491
|
+
# @!attribute [rw] subject_key
|
4492
|
+
# Element of the IAM federation assertion to use for the user name.
|
4493
|
+
# Default is `sub`.
|
4494
|
+
# @return [String]
|
4495
|
+
#
|
4496
|
+
# @!attribute [rw] roles_key
|
4497
|
+
# Element of the IAM federation assertion to use for backend roles.
|
4498
|
+
# Default is `roles`.
|
4499
|
+
# @return [String]
|
4500
|
+
#
|
4501
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/IAMFederationOptionsInput AWS API Documentation
|
4502
|
+
#
|
4503
|
+
class IAMFederationOptionsInput < Struct.new(
|
4504
|
+
:enabled,
|
4505
|
+
:subject_key,
|
4506
|
+
:roles_key)
|
4507
|
+
SENSITIVE = []
|
4508
|
+
include Aws::Structure
|
4509
|
+
end
|
4510
|
+
|
4511
|
+
# Describes the IAM federation options configured for the domain.
|
4512
|
+
#
|
4513
|
+
# @!attribute [rw] enabled
|
4514
|
+
# True if IAM federation is enabled.
|
4515
|
+
# @return [Boolean]
|
4516
|
+
#
|
4517
|
+
# @!attribute [rw] subject_key
|
4518
|
+
# The key used for matching the IAM federation subject attribute.
|
4519
|
+
# @return [String]
|
4520
|
+
#
|
4521
|
+
# @!attribute [rw] roles_key
|
4522
|
+
# The key used for matching the IAM federation roles attribute.
|
4523
|
+
# @return [String]
|
4524
|
+
#
|
4525
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/IAMFederationOptionsOutput AWS API Documentation
|
4526
|
+
#
|
4527
|
+
class IAMFederationOptionsOutput < Struct.new(
|
4528
|
+
:enabled,
|
4529
|
+
:subject_key,
|
4530
|
+
:roles_key)
|
4531
|
+
SENSITIVE = []
|
4532
|
+
include Aws::Structure
|
4533
|
+
end
|
4534
|
+
|
4472
4535
|
# The IP address type status for the domain.
|
4473
4536
|
#
|
4474
4537
|
# @!attribute [rw] options
|
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -361,6 +362,11 @@ module Aws
|
|
361
362
|
roles_key: ::String?,
|
362
363
|
public_key: ::String?
|
363
364
|
}?,
|
365
|
+
iam_federation_options: {
|
366
|
+
enabled: bool?,
|
367
|
+
subject_key: ::String?,
|
368
|
+
roles_key: ::String?
|
369
|
+
}?,
|
364
370
|
anonymous_auth_enabled: bool?
|
365
371
|
},
|
366
372
|
?identity_center_options: {
|
@@ -1314,6 +1320,11 @@ module Aws
|
|
1314
1320
|
roles_key: ::String?,
|
1315
1321
|
public_key: ::String?
|
1316
1322
|
}?,
|
1323
|
+
iam_federation_options: {
|
1324
|
+
enabled: bool?,
|
1325
|
+
subject_key: ::String?,
|
1326
|
+
roles_key: ::String?
|
1327
|
+
}?,
|
1317
1328
|
anonymous_auth_enabled: bool?
|
1318
1329
|
},
|
1319
1330
|
?identity_center_options: {
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -102,6 +102,7 @@ module Aws::OpenSearchService
|
|
102
102
|
attr_accessor internal_user_database_enabled: bool
|
103
103
|
attr_accessor saml_options: Types::SAMLOptionsOutput
|
104
104
|
attr_accessor jwt_options: Types::JWTOptionsOutput
|
105
|
+
attr_accessor iam_federation_options: Types::IAMFederationOptionsOutput
|
105
106
|
attr_accessor anonymous_auth_disable_date: ::Time
|
106
107
|
attr_accessor anonymous_auth_enabled: bool
|
107
108
|
SENSITIVE: []
|
@@ -113,6 +114,7 @@ module Aws::OpenSearchService
|
|
113
114
|
attr_accessor master_user_options: Types::MasterUserOptions
|
114
115
|
attr_accessor saml_options: Types::SAMLOptionsInput
|
115
116
|
attr_accessor jwt_options: Types::JWTOptionsInput
|
117
|
+
attr_accessor iam_federation_options: Types::IAMFederationOptionsInput
|
116
118
|
attr_accessor anonymous_auth_enabled: bool
|
117
119
|
SENSITIVE: []
|
118
120
|
end
|
@@ -1133,6 +1135,20 @@ module Aws::OpenSearchService
|
|
1133
1135
|
SENSITIVE: []
|
1134
1136
|
end
|
1135
1137
|
|
1138
|
+
class IAMFederationOptionsInput
|
1139
|
+
attr_accessor enabled: bool
|
1140
|
+
attr_accessor subject_key: ::String
|
1141
|
+
attr_accessor roles_key: ::String
|
1142
|
+
SENSITIVE: []
|
1143
|
+
end
|
1144
|
+
|
1145
|
+
class IAMFederationOptionsOutput
|
1146
|
+
attr_accessor enabled: bool
|
1147
|
+
attr_accessor subject_key: ::String
|
1148
|
+
attr_accessor roles_key: ::String
|
1149
|
+
SENSITIVE: []
|
1150
|
+
end
|
1151
|
+
|
1136
1152
|
class IPAddressTypeStatus
|
1137
1153
|
attr_accessor options: ("ipv4" | "dualstack")
|
1138
1154
|
attr_accessor status: Types::OptionStatus
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-opensearchservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.72.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.228.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.228.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|