aws-sdk-opensearchservice 1.96.0 → 1.98.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 +24 -1
- data/lib/aws-sdk-opensearchservice/client_api.rb +5 -0
- data/lib/aws-sdk-opensearchservice/types.rb +30 -2
- data/lib/aws-sdk-opensearchservice.rb +1 -1
- data/sig/client.rbs +10 -4
- data/sig/types.rbs +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d1c2c38117c6ef81b0efc8072965ad007e287e3a5eb86fd95f65c570fb81de99
|
|
4
|
+
data.tar.gz: 04341c0a0b2c954e01fd9a2acf89de4f22f63431c768ef56995c1cdd4021c8f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3935591dc6b1523e124a6ef5b77b523843f89008aa6e817970ac79786d8abf77ce3aa5e7523ba3a1aeb08390a2f150cd84b34ae5b17045ab45e082cdbf4a65ac
|
|
7
|
+
data.tar.gz: 17a3f46c233ee035c0ddb1d0e08d8de0074a1566de0f53e91a236594607bcd3aab1e28a4ba395486b579a2e65ef696b75d90406163369b3f8b5c34e3e2183061
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.98.0 (2026-05-05)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon OpenSearch Service now supports VPC egress, enabling outbound traffic from your OpenSearch domain to route privately through your VPC instead of the public internet.
|
|
8
|
+
|
|
9
|
+
1.97.0 (2026-04-27)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Amazon OpenSearch Service now supports JWKS URL configuration for JWT authentication
|
|
13
|
+
|
|
4
14
|
1.96.0 (2026-04-23)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.98.0
|
|
@@ -1251,6 +1251,7 @@ module Aws::OpenSearchService
|
|
|
1251
1251
|
# vpc_options: {
|
|
1252
1252
|
# subnet_ids: ["String"],
|
|
1253
1253
|
# security_group_ids: ["String"],
|
|
1254
|
+
# egress_enabled: false,
|
|
1254
1255
|
# },
|
|
1255
1256
|
# cognito_options: {
|
|
1256
1257
|
# enabled: false,
|
|
@@ -1305,6 +1306,7 @@ module Aws::OpenSearchService
|
|
|
1305
1306
|
# enabled: false,
|
|
1306
1307
|
# subject_key: "SubjectKey",
|
|
1307
1308
|
# roles_key: "RolesKey",
|
|
1309
|
+
# jwks_url: "JwksUrl",
|
|
1308
1310
|
# public_key: "String",
|
|
1309
1311
|
# },
|
|
1310
1312
|
# iam_federation_options: {
|
|
@@ -1417,6 +1419,7 @@ module Aws::OpenSearchService
|
|
|
1417
1419
|
# resp.domain_status.vpc_options.availability_zones[0] #=> String
|
|
1418
1420
|
# resp.domain_status.vpc_options.security_group_ids #=> Array
|
|
1419
1421
|
# resp.domain_status.vpc_options.security_group_ids[0] #=> String
|
|
1422
|
+
# resp.domain_status.vpc_options.egress_enabled #=> Boolean
|
|
1420
1423
|
# resp.domain_status.cognito_options.enabled #=> Boolean
|
|
1421
1424
|
# resp.domain_status.cognito_options.user_pool_id #=> String
|
|
1422
1425
|
# resp.domain_status.cognito_options.identity_pool_id #=> String
|
|
@@ -1453,6 +1456,7 @@ module Aws::OpenSearchService
|
|
|
1453
1456
|
# resp.domain_status.advanced_security_options.jwt_options.enabled #=> Boolean
|
|
1454
1457
|
# resp.domain_status.advanced_security_options.jwt_options.subject_key #=> String
|
|
1455
1458
|
# resp.domain_status.advanced_security_options.jwt_options.roles_key #=> String
|
|
1459
|
+
# resp.domain_status.advanced_security_options.jwt_options.jwks_url #=> String
|
|
1456
1460
|
# resp.domain_status.advanced_security_options.jwt_options.public_key #=> String
|
|
1457
1461
|
# resp.domain_status.advanced_security_options.iam_federation_options.enabled #=> Boolean
|
|
1458
1462
|
# resp.domain_status.advanced_security_options.iam_federation_options.subject_key #=> String
|
|
@@ -1774,6 +1778,7 @@ module Aws::OpenSearchService
|
|
|
1774
1778
|
# vpc_options: { # required
|
|
1775
1779
|
# subnet_ids: ["String"],
|
|
1776
1780
|
# security_group_ids: ["String"],
|
|
1781
|
+
# egress_enabled: false,
|
|
1777
1782
|
# },
|
|
1778
1783
|
# client_token: "ClientToken",
|
|
1779
1784
|
# })
|
|
@@ -1790,6 +1795,7 @@ module Aws::OpenSearchService
|
|
|
1790
1795
|
# resp.vpc_endpoint.vpc_options.availability_zones[0] #=> String
|
|
1791
1796
|
# resp.vpc_endpoint.vpc_options.security_group_ids #=> Array
|
|
1792
1797
|
# resp.vpc_endpoint.vpc_options.security_group_ids[0] #=> String
|
|
1798
|
+
# resp.vpc_endpoint.vpc_options.egress_enabled #=> Boolean
|
|
1793
1799
|
# resp.vpc_endpoint.status #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE", "UPDATING", "UPDATE_FAILED", "DELETING", "DELETE_FAILED"
|
|
1794
1800
|
# resp.vpc_endpoint.endpoint #=> String
|
|
1795
1801
|
#
|
|
@@ -1948,6 +1954,7 @@ module Aws::OpenSearchService
|
|
|
1948
1954
|
# resp.domain_status.vpc_options.availability_zones[0] #=> String
|
|
1949
1955
|
# resp.domain_status.vpc_options.security_group_ids #=> Array
|
|
1950
1956
|
# resp.domain_status.vpc_options.security_group_ids[0] #=> String
|
|
1957
|
+
# resp.domain_status.vpc_options.egress_enabled #=> Boolean
|
|
1951
1958
|
# resp.domain_status.cognito_options.enabled #=> Boolean
|
|
1952
1959
|
# resp.domain_status.cognito_options.user_pool_id #=> String
|
|
1953
1960
|
# resp.domain_status.cognito_options.identity_pool_id #=> String
|
|
@@ -1984,6 +1991,7 @@ module Aws::OpenSearchService
|
|
|
1984
1991
|
# resp.domain_status.advanced_security_options.jwt_options.enabled #=> Boolean
|
|
1985
1992
|
# resp.domain_status.advanced_security_options.jwt_options.subject_key #=> String
|
|
1986
1993
|
# resp.domain_status.advanced_security_options.jwt_options.roles_key #=> String
|
|
1994
|
+
# resp.domain_status.advanced_security_options.jwt_options.jwks_url #=> String
|
|
1987
1995
|
# resp.domain_status.advanced_security_options.jwt_options.public_key #=> String
|
|
1988
1996
|
# resp.domain_status.advanced_security_options.iam_federation_options.enabled #=> Boolean
|
|
1989
1997
|
# resp.domain_status.advanced_security_options.iam_federation_options.subject_key #=> String
|
|
@@ -2346,6 +2354,7 @@ module Aws::OpenSearchService
|
|
|
2346
2354
|
# resp.domain_status.vpc_options.availability_zones[0] #=> String
|
|
2347
2355
|
# resp.domain_status.vpc_options.security_group_ids #=> Array
|
|
2348
2356
|
# resp.domain_status.vpc_options.security_group_ids[0] #=> String
|
|
2357
|
+
# resp.domain_status.vpc_options.egress_enabled #=> Boolean
|
|
2349
2358
|
# resp.domain_status.cognito_options.enabled #=> Boolean
|
|
2350
2359
|
# resp.domain_status.cognito_options.user_pool_id #=> String
|
|
2351
2360
|
# resp.domain_status.cognito_options.identity_pool_id #=> String
|
|
@@ -2382,6 +2391,7 @@ module Aws::OpenSearchService
|
|
|
2382
2391
|
# resp.domain_status.advanced_security_options.jwt_options.enabled #=> Boolean
|
|
2383
2392
|
# resp.domain_status.advanced_security_options.jwt_options.subject_key #=> String
|
|
2384
2393
|
# resp.domain_status.advanced_security_options.jwt_options.roles_key #=> String
|
|
2394
|
+
# resp.domain_status.advanced_security_options.jwt_options.jwks_url #=> String
|
|
2385
2395
|
# resp.domain_status.advanced_security_options.jwt_options.public_key #=> String
|
|
2386
2396
|
# resp.domain_status.advanced_security_options.iam_federation_options.enabled #=> Boolean
|
|
2387
2397
|
# resp.domain_status.advanced_security_options.iam_federation_options.subject_key #=> String
|
|
@@ -2621,6 +2631,7 @@ module Aws::OpenSearchService
|
|
|
2621
2631
|
# resp.domain_config.vpc_options.options.availability_zones[0] #=> String
|
|
2622
2632
|
# resp.domain_config.vpc_options.options.security_group_ids #=> Array
|
|
2623
2633
|
# resp.domain_config.vpc_options.options.security_group_ids[0] #=> String
|
|
2634
|
+
# resp.domain_config.vpc_options.options.egress_enabled #=> Boolean
|
|
2624
2635
|
# resp.domain_config.vpc_options.status.creation_date #=> Time
|
|
2625
2636
|
# resp.domain_config.vpc_options.status.update_date #=> Time
|
|
2626
2637
|
# resp.domain_config.vpc_options.status.update_version #=> Integer
|
|
@@ -2684,6 +2695,7 @@ module Aws::OpenSearchService
|
|
|
2684
2695
|
# resp.domain_config.advanced_security_options.options.jwt_options.enabled #=> Boolean
|
|
2685
2696
|
# resp.domain_config.advanced_security_options.options.jwt_options.subject_key #=> String
|
|
2686
2697
|
# resp.domain_config.advanced_security_options.options.jwt_options.roles_key #=> String
|
|
2698
|
+
# resp.domain_config.advanced_security_options.options.jwt_options.jwks_url #=> String
|
|
2687
2699
|
# resp.domain_config.advanced_security_options.options.jwt_options.public_key #=> String
|
|
2688
2700
|
# resp.domain_config.advanced_security_options.options.iam_federation_options.enabled #=> Boolean
|
|
2689
2701
|
# resp.domain_config.advanced_security_options.options.iam_federation_options.subject_key #=> String
|
|
@@ -2936,6 +2948,7 @@ module Aws::OpenSearchService
|
|
|
2936
2948
|
# resp.domain_status_list[0].vpc_options.availability_zones[0] #=> String
|
|
2937
2949
|
# resp.domain_status_list[0].vpc_options.security_group_ids #=> Array
|
|
2938
2950
|
# resp.domain_status_list[0].vpc_options.security_group_ids[0] #=> String
|
|
2951
|
+
# resp.domain_status_list[0].vpc_options.egress_enabled #=> Boolean
|
|
2939
2952
|
# resp.domain_status_list[0].cognito_options.enabled #=> Boolean
|
|
2940
2953
|
# resp.domain_status_list[0].cognito_options.user_pool_id #=> String
|
|
2941
2954
|
# resp.domain_status_list[0].cognito_options.identity_pool_id #=> String
|
|
@@ -2972,6 +2985,7 @@ module Aws::OpenSearchService
|
|
|
2972
2985
|
# resp.domain_status_list[0].advanced_security_options.jwt_options.enabled #=> Boolean
|
|
2973
2986
|
# resp.domain_status_list[0].advanced_security_options.jwt_options.subject_key #=> String
|
|
2974
2987
|
# resp.domain_status_list[0].advanced_security_options.jwt_options.roles_key #=> String
|
|
2988
|
+
# resp.domain_status_list[0].advanced_security_options.jwt_options.jwks_url #=> String
|
|
2975
2989
|
# resp.domain_status_list[0].advanced_security_options.jwt_options.public_key #=> String
|
|
2976
2990
|
# resp.domain_status_list[0].advanced_security_options.iam_federation_options.enabled #=> Boolean
|
|
2977
2991
|
# resp.domain_status_list[0].advanced_security_options.iam_federation_options.subject_key #=> String
|
|
@@ -3107,6 +3121,7 @@ module Aws::OpenSearchService
|
|
|
3107
3121
|
# resp.dry_run_config.vpc_options.availability_zones[0] #=> String
|
|
3108
3122
|
# resp.dry_run_config.vpc_options.security_group_ids #=> Array
|
|
3109
3123
|
# resp.dry_run_config.vpc_options.security_group_ids[0] #=> String
|
|
3124
|
+
# resp.dry_run_config.vpc_options.egress_enabled #=> Boolean
|
|
3110
3125
|
# resp.dry_run_config.cognito_options.enabled #=> Boolean
|
|
3111
3126
|
# resp.dry_run_config.cognito_options.user_pool_id #=> String
|
|
3112
3127
|
# resp.dry_run_config.cognito_options.identity_pool_id #=> String
|
|
@@ -3143,6 +3158,7 @@ module Aws::OpenSearchService
|
|
|
3143
3158
|
# resp.dry_run_config.advanced_security_options.jwt_options.enabled #=> Boolean
|
|
3144
3159
|
# resp.dry_run_config.advanced_security_options.jwt_options.subject_key #=> String
|
|
3145
3160
|
# resp.dry_run_config.advanced_security_options.jwt_options.roles_key #=> String
|
|
3161
|
+
# resp.dry_run_config.advanced_security_options.jwt_options.jwks_url #=> String
|
|
3146
3162
|
# resp.dry_run_config.advanced_security_options.jwt_options.public_key #=> String
|
|
3147
3163
|
# resp.dry_run_config.advanced_security_options.iam_federation_options.enabled #=> Boolean
|
|
3148
3164
|
# resp.dry_run_config.advanced_security_options.iam_federation_options.subject_key #=> String
|
|
@@ -3669,6 +3685,7 @@ module Aws::OpenSearchService
|
|
|
3669
3685
|
# resp.vpc_endpoints[0].vpc_options.availability_zones[0] #=> String
|
|
3670
3686
|
# resp.vpc_endpoints[0].vpc_options.security_group_ids #=> Array
|
|
3671
3687
|
# resp.vpc_endpoints[0].vpc_options.security_group_ids[0] #=> String
|
|
3688
|
+
# resp.vpc_endpoints[0].vpc_options.egress_enabled #=> Boolean
|
|
3672
3689
|
# resp.vpc_endpoints[0].status #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE", "UPDATING", "UPDATE_FAILED", "DELETING", "DELETE_FAILED"
|
|
3673
3690
|
# resp.vpc_endpoints[0].endpoint #=> String
|
|
3674
3691
|
# resp.vpc_endpoint_errors #=> Array
|
|
@@ -5763,6 +5780,7 @@ module Aws::OpenSearchService
|
|
|
5763
5780
|
# vpc_options: {
|
|
5764
5781
|
# subnet_ids: ["String"],
|
|
5765
5782
|
# security_group_ids: ["String"],
|
|
5783
|
+
# egress_enabled: false,
|
|
5766
5784
|
# },
|
|
5767
5785
|
# cognito_options: {
|
|
5768
5786
|
# enabled: false,
|
|
@@ -5819,6 +5837,7 @@ module Aws::OpenSearchService
|
|
|
5819
5837
|
# enabled: false,
|
|
5820
5838
|
# subject_key: "SubjectKey",
|
|
5821
5839
|
# roles_key: "RolesKey",
|
|
5840
|
+
# jwks_url: "JwksUrl",
|
|
5822
5841
|
# public_key: "String",
|
|
5823
5842
|
# },
|
|
5824
5843
|
# iam_federation_options: {
|
|
@@ -5946,6 +5965,7 @@ module Aws::OpenSearchService
|
|
|
5946
5965
|
# resp.domain_config.vpc_options.options.availability_zones[0] #=> String
|
|
5947
5966
|
# resp.domain_config.vpc_options.options.security_group_ids #=> Array
|
|
5948
5967
|
# resp.domain_config.vpc_options.options.security_group_ids[0] #=> String
|
|
5968
|
+
# resp.domain_config.vpc_options.options.egress_enabled #=> Boolean
|
|
5949
5969
|
# resp.domain_config.vpc_options.status.creation_date #=> Time
|
|
5950
5970
|
# resp.domain_config.vpc_options.status.update_date #=> Time
|
|
5951
5971
|
# resp.domain_config.vpc_options.status.update_version #=> Integer
|
|
@@ -6009,6 +6029,7 @@ module Aws::OpenSearchService
|
|
|
6009
6029
|
# resp.domain_config.advanced_security_options.options.jwt_options.enabled #=> Boolean
|
|
6010
6030
|
# resp.domain_config.advanced_security_options.options.jwt_options.subject_key #=> String
|
|
6011
6031
|
# resp.domain_config.advanced_security_options.options.jwt_options.roles_key #=> String
|
|
6032
|
+
# resp.domain_config.advanced_security_options.options.jwt_options.jwks_url #=> String
|
|
6012
6033
|
# resp.domain_config.advanced_security_options.options.jwt_options.public_key #=> String
|
|
6013
6034
|
# resp.domain_config.advanced_security_options.options.iam_federation_options.enabled #=> Boolean
|
|
6014
6035
|
# resp.domain_config.advanced_security_options.options.iam_federation_options.subject_key #=> String
|
|
@@ -6391,6 +6412,7 @@ module Aws::OpenSearchService
|
|
|
6391
6412
|
# vpc_options: { # required
|
|
6392
6413
|
# subnet_ids: ["String"],
|
|
6393
6414
|
# security_group_ids: ["String"],
|
|
6415
|
+
# egress_enabled: false,
|
|
6394
6416
|
# },
|
|
6395
6417
|
# })
|
|
6396
6418
|
#
|
|
@@ -6406,6 +6428,7 @@ module Aws::OpenSearchService
|
|
|
6406
6428
|
# resp.vpc_endpoint.vpc_options.availability_zones[0] #=> String
|
|
6407
6429
|
# resp.vpc_endpoint.vpc_options.security_group_ids #=> Array
|
|
6408
6430
|
# resp.vpc_endpoint.vpc_options.security_group_ids[0] #=> String
|
|
6431
|
+
# resp.vpc_endpoint.vpc_options.egress_enabled #=> Boolean
|
|
6409
6432
|
# resp.vpc_endpoint.status #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE", "UPDATING", "UPDATE_FAILED", "DELETING", "DELETE_FAILED"
|
|
6410
6433
|
# resp.vpc_endpoint.endpoint #=> String
|
|
6411
6434
|
#
|
|
@@ -6502,7 +6525,7 @@ module Aws::OpenSearchService
|
|
|
6502
6525
|
tracer: tracer
|
|
6503
6526
|
)
|
|
6504
6527
|
context[:gem_name] = 'aws-sdk-opensearchservice'
|
|
6505
|
-
context[:gem_version] = '1.
|
|
6528
|
+
context[:gem_version] = '1.98.0'
|
|
6506
6529
|
Seahorse::Client::Request.new(handlers, context)
|
|
6507
6530
|
end
|
|
6508
6531
|
|
|
@@ -344,6 +344,7 @@ module Aws::OpenSearchService
|
|
|
344
344
|
Issues = Shapes::ListShape.new(name: 'Issues')
|
|
345
345
|
JWTOptionsInput = Shapes::StructureShape.new(name: 'JWTOptionsInput')
|
|
346
346
|
JWTOptionsOutput = Shapes::StructureShape.new(name: 'JWTOptionsOutput')
|
|
347
|
+
JwksUrl = Shapes::StringShape.new(name: 'JwksUrl')
|
|
347
348
|
KeyStoreAccessOption = Shapes::StructureShape.new(name: 'KeyStoreAccessOption')
|
|
348
349
|
KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
|
|
349
350
|
KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
|
|
@@ -1701,12 +1702,14 @@ module Aws::OpenSearchService
|
|
|
1701
1702
|
JWTOptionsInput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
|
1702
1703
|
JWTOptionsInput.add_member(:subject_key, Shapes::ShapeRef.new(shape: SubjectKey, location_name: "SubjectKey"))
|
|
1703
1704
|
JWTOptionsInput.add_member(:roles_key, Shapes::ShapeRef.new(shape: RolesKey, location_name: "RolesKey"))
|
|
1705
|
+
JWTOptionsInput.add_member(:jwks_url, Shapes::ShapeRef.new(shape: JwksUrl, location_name: "JwksUrl"))
|
|
1704
1706
|
JWTOptionsInput.add_member(:public_key, Shapes::ShapeRef.new(shape: String, location_name: "PublicKey"))
|
|
1705
1707
|
JWTOptionsInput.struct_class = Types::JWTOptionsInput
|
|
1706
1708
|
|
|
1707
1709
|
JWTOptionsOutput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
|
1708
1710
|
JWTOptionsOutput.add_member(:subject_key, Shapes::ShapeRef.new(shape: String, location_name: "SubjectKey"))
|
|
1709
1711
|
JWTOptionsOutput.add_member(:roles_key, Shapes::ShapeRef.new(shape: String, location_name: "RolesKey"))
|
|
1712
|
+
JWTOptionsOutput.add_member(:jwks_url, Shapes::ShapeRef.new(shape: JwksUrl, location_name: "JwksUrl"))
|
|
1710
1713
|
JWTOptionsOutput.add_member(:public_key, Shapes::ShapeRef.new(shape: String, location_name: "PublicKey"))
|
|
1711
1714
|
JWTOptionsOutput.struct_class = Types::JWTOptionsOutput
|
|
1712
1715
|
|
|
@@ -2373,6 +2376,7 @@ module Aws::OpenSearchService
|
|
|
2373
2376
|
VPCDerivedInfo.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "SubnetIds"))
|
|
2374
2377
|
VPCDerivedInfo.add_member(:availability_zones, Shapes::ShapeRef.new(shape: StringList, location_name: "AvailabilityZones"))
|
|
2375
2378
|
VPCDerivedInfo.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "SecurityGroupIds"))
|
|
2379
|
+
VPCDerivedInfo.add_member(:egress_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "EgressEnabled"))
|
|
2376
2380
|
VPCDerivedInfo.struct_class = Types::VPCDerivedInfo
|
|
2377
2381
|
|
|
2378
2382
|
VPCDerivedInfoStatus.add_member(:options, Shapes::ShapeRef.new(shape: VPCDerivedInfo, required: true, location_name: "Options"))
|
|
@@ -2381,6 +2385,7 @@ module Aws::OpenSearchService
|
|
|
2381
2385
|
|
|
2382
2386
|
VPCOptions.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "SubnetIds"))
|
|
2383
2387
|
VPCOptions.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "SecurityGroupIds"))
|
|
2388
|
+
VPCOptions.add_member(:egress_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "EgressEnabled"))
|
|
2384
2389
|
VPCOptions.struct_class = Types::VPCOptions
|
|
2385
2390
|
|
|
2386
2391
|
ValidationException.struct_class = Types::ValidationException
|
|
@@ -5557,6 +5557,11 @@ module Aws::OpenSearchService
|
|
|
5557
5557
|
# Element of the JWT assertion to use for roles.
|
|
5558
5558
|
# @return [String]
|
|
5559
5559
|
#
|
|
5560
|
+
# @!attribute [rw] jwks_url
|
|
5561
|
+
# The URL endpoint that hosts the JSON Web Key Set (JWKS) containing
|
|
5562
|
+
# public keys used to verify JWT signatures.
|
|
5563
|
+
# @return [String]
|
|
5564
|
+
#
|
|
5560
5565
|
# @!attribute [rw] public_key
|
|
5561
5566
|
# Element of the JWT assertion used by the cluster to verify JWT
|
|
5562
5567
|
# signatures.
|
|
@@ -5568,6 +5573,7 @@ module Aws::OpenSearchService
|
|
|
5568
5573
|
:enabled,
|
|
5569
5574
|
:subject_key,
|
|
5570
5575
|
:roles_key,
|
|
5576
|
+
:jwks_url,
|
|
5571
5577
|
:public_key)
|
|
5572
5578
|
SENSITIVE = []
|
|
5573
5579
|
include Aws::Structure
|
|
@@ -5587,6 +5593,11 @@ module Aws::OpenSearchService
|
|
|
5587
5593
|
# The key used for matching the JWT roles attribute.
|
|
5588
5594
|
# @return [String]
|
|
5589
5595
|
#
|
|
5596
|
+
# @!attribute [rw] jwks_url
|
|
5597
|
+
# The configured JWKS URL endpoint from which the cluster retrieves
|
|
5598
|
+
# public keys to verify JWT requests.
|
|
5599
|
+
# @return [String]
|
|
5600
|
+
#
|
|
5590
5601
|
# @!attribute [rw] public_key
|
|
5591
5602
|
# The key used to verify the signature of incoming JWT requests.
|
|
5592
5603
|
# @return [String]
|
|
@@ -5597,6 +5608,7 @@ module Aws::OpenSearchService
|
|
|
5597
5608
|
:enabled,
|
|
5598
5609
|
:subject_key,
|
|
5599
5610
|
:roles_key,
|
|
5611
|
+
:jwks_url,
|
|
5600
5612
|
:public_key)
|
|
5601
5613
|
SENSITIVE = []
|
|
5602
5614
|
include Aws::Structure
|
|
@@ -9009,13 +9021,21 @@ module Aws::OpenSearchService
|
|
|
9009
9021
|
# the domain.
|
|
9010
9022
|
# @return [Array<String>]
|
|
9011
9023
|
#
|
|
9024
|
+
# @!attribute [rw] egress_enabled
|
|
9025
|
+
# Indicates whether egress traffic from the domain is routed through
|
|
9026
|
+
# the customer VPC. When `true`, outbound traffic flows through the
|
|
9027
|
+
# VPC. When `false`, outbound traffic goes through the public
|
|
9028
|
+
# internet.
|
|
9029
|
+
# @return [Boolean]
|
|
9030
|
+
#
|
|
9012
9031
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/VPCDerivedInfo AWS API Documentation
|
|
9013
9032
|
#
|
|
9014
9033
|
class VPCDerivedInfo < Struct.new(
|
|
9015
9034
|
:vpc_id,
|
|
9016
9035
|
:subnet_ids,
|
|
9017
9036
|
:availability_zones,
|
|
9018
|
-
:security_group_ids
|
|
9037
|
+
:security_group_ids,
|
|
9038
|
+
:egress_enabled)
|
|
9019
9039
|
SENSITIVE = []
|
|
9020
9040
|
include Aws::Structure
|
|
9021
9041
|
end
|
|
@@ -9059,11 +9079,19 @@ module Aws::OpenSearchService
|
|
|
9059
9079
|
# Service uses the default security group for the VPC.
|
|
9060
9080
|
# @return [Array<String>]
|
|
9061
9081
|
#
|
|
9082
|
+
# @!attribute [rw] egress_enabled
|
|
9083
|
+
# Controls whether egress traffic from the domain is routed through
|
|
9084
|
+
# the customer VPC. When `true`, outbound traffic flows through the
|
|
9085
|
+
# VPC. When `false`, outbound traffic goes through the public
|
|
9086
|
+
# internet.
|
|
9087
|
+
# @return [Boolean]
|
|
9088
|
+
#
|
|
9062
9089
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/VPCOptions AWS API Documentation
|
|
9063
9090
|
#
|
|
9064
9091
|
class VPCOptions < Struct.new(
|
|
9065
9092
|
:subnet_ids,
|
|
9066
|
-
:security_group_ids
|
|
9093
|
+
:security_group_ids,
|
|
9094
|
+
:egress_enabled)
|
|
9067
9095
|
SENSITIVE = []
|
|
9068
9096
|
include Aws::Structure
|
|
9069
9097
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -320,7 +320,8 @@ module Aws
|
|
|
320
320
|
},
|
|
321
321
|
?vpc_options: {
|
|
322
322
|
subnet_ids: Array[::String]?,
|
|
323
|
-
security_group_ids: Array[::String]
|
|
323
|
+
security_group_ids: Array[::String]?,
|
|
324
|
+
egress_enabled: bool?
|
|
324
325
|
},
|
|
325
326
|
?cognito_options: {
|
|
326
327
|
enabled: bool?,
|
|
@@ -371,6 +372,7 @@ module Aws
|
|
|
371
372
|
enabled: bool?,
|
|
372
373
|
subject_key: ::String?,
|
|
373
374
|
roles_key: ::String?,
|
|
375
|
+
jwks_url: ::String?,
|
|
374
376
|
public_key: ::String?
|
|
375
377
|
}?,
|
|
376
378
|
iam_federation_options: {
|
|
@@ -526,7 +528,8 @@ module Aws
|
|
|
526
528
|
domain_arn: ::String,
|
|
527
529
|
vpc_options: {
|
|
528
530
|
subnet_ids: Array[::String]?,
|
|
529
|
-
security_group_ids: Array[::String]
|
|
531
|
+
security_group_ids: Array[::String]?,
|
|
532
|
+
egress_enabled: bool?
|
|
530
533
|
},
|
|
531
534
|
?client_token: ::String
|
|
532
535
|
) -> _CreateVpcEndpointResponseSuccess
|
|
@@ -1440,7 +1443,8 @@ module Aws
|
|
|
1440
1443
|
},
|
|
1441
1444
|
?vpc_options: {
|
|
1442
1445
|
subnet_ids: Array[::String]?,
|
|
1443
|
-
security_group_ids: Array[::String]
|
|
1446
|
+
security_group_ids: Array[::String]?,
|
|
1447
|
+
egress_enabled: bool?
|
|
1444
1448
|
},
|
|
1445
1449
|
?cognito_options: {
|
|
1446
1450
|
enabled: bool?,
|
|
@@ -1493,6 +1497,7 @@ module Aws
|
|
|
1493
1497
|
enabled: bool?,
|
|
1494
1498
|
subject_key: ::String?,
|
|
1495
1499
|
roles_key: ::String?,
|
|
1500
|
+
jwks_url: ::String?,
|
|
1496
1501
|
public_key: ::String?
|
|
1497
1502
|
}?,
|
|
1498
1503
|
iam_federation_options: {
|
|
@@ -1632,7 +1637,8 @@ module Aws
|
|
|
1632
1637
|
vpc_endpoint_id: ::String,
|
|
1633
1638
|
vpc_options: {
|
|
1634
1639
|
subnet_ids: Array[::String]?,
|
|
1635
|
-
security_group_ids: Array[::String]
|
|
1640
|
+
security_group_ids: Array[::String]?,
|
|
1641
|
+
egress_enabled: bool?
|
|
1636
1642
|
}
|
|
1637
1643
|
) -> _UpdateVpcEndpointResponseSuccess
|
|
1638
1644
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVpcEndpointResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -1427,6 +1427,7 @@ module Aws::OpenSearchService
|
|
|
1427
1427
|
attr_accessor enabled: bool
|
|
1428
1428
|
attr_accessor subject_key: ::String
|
|
1429
1429
|
attr_accessor roles_key: ::String
|
|
1430
|
+
attr_accessor jwks_url: ::String
|
|
1430
1431
|
attr_accessor public_key: ::String
|
|
1431
1432
|
SENSITIVE: []
|
|
1432
1433
|
end
|
|
@@ -1435,6 +1436,7 @@ module Aws::OpenSearchService
|
|
|
1435
1436
|
attr_accessor enabled: bool
|
|
1436
1437
|
attr_accessor subject_key: ::String
|
|
1437
1438
|
attr_accessor roles_key: ::String
|
|
1439
|
+
attr_accessor jwks_url: ::String
|
|
1438
1440
|
attr_accessor public_key: ::String
|
|
1439
1441
|
SENSITIVE: []
|
|
1440
1442
|
end
|
|
@@ -2299,6 +2301,7 @@ module Aws::OpenSearchService
|
|
|
2299
2301
|
attr_accessor subnet_ids: ::Array[::String]
|
|
2300
2302
|
attr_accessor availability_zones: ::Array[::String]
|
|
2301
2303
|
attr_accessor security_group_ids: ::Array[::String]
|
|
2304
|
+
attr_accessor egress_enabled: bool
|
|
2302
2305
|
SENSITIVE: []
|
|
2303
2306
|
end
|
|
2304
2307
|
|
|
@@ -2311,6 +2314,7 @@ module Aws::OpenSearchService
|
|
|
2311
2314
|
class VPCOptions
|
|
2312
2315
|
attr_accessor subnet_ids: ::Array[::String]
|
|
2313
2316
|
attr_accessor security_group_ids: ::Array[::String]
|
|
2317
|
+
attr_accessor egress_enabled: bool
|
|
2314
2318
|
SENSITIVE: []
|
|
2315
2319
|
end
|
|
2316
2320
|
|