aws-sdk-opensearchservice 1.102.0 → 1.103.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-opensearchservice/client.rb +10 -1
- data/lib/aws-sdk-opensearchservice/client_api.rb +1 -0
- data/lib/aws-sdk-opensearchservice/types.rb +7 -1
- data/lib/aws-sdk-opensearchservice.rb +1 -1
- data/sig/client.rbs +6 -1
- data/sig/types.rbs +1 -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: 1701d64074b5dd02a7ad39e145636c89d390f33868d05a69101ba10065a1d587
|
|
4
|
+
data.tar.gz: abc776a9bab7a4782d3d332e1d48683027b816ada09342bb1692b76fdef6db4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc1b05b96e97d093d900533136ae38fc6aff5cdb8db2a2d614d864e70bfa624558079ef65ac36d4e294a01d9a7bcad754b223889f97bb2c81341e70941dfb5b2
|
|
7
|
+
data.tar.gz: 16cf00d713a78905b485c8fe2684783743620713c4b9ed8ad14edb0d74c22a522756b73115ccc562f66a6938fc8fb0e0e2e6be5a847488ea1e95a063350d0bdd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.103.0 (2026-06-17)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for configuring IAM Identity Center options on existing OpenSearch applications via the UpdateApplication API.
|
|
8
|
+
|
|
4
9
|
1.102.0 (2026-05-27)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.103.0
|
|
@@ -5472,6 +5472,10 @@ module Aws::OpenSearchService
|
|
|
5472
5472
|
# @option params [Array<Types::AppConfig>] :app_configs
|
|
5473
5473
|
# The configuration settings to modify for the OpenSearch application.
|
|
5474
5474
|
#
|
|
5475
|
+
# @option params [Types::IamIdentityCenterOptionsInput] :iam_identity_center_options
|
|
5476
|
+
# Configuration settings for integrating IAM Identity Center with the
|
|
5477
|
+
# OpenSearch application.
|
|
5478
|
+
#
|
|
5475
5479
|
# @return [Types::UpdateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5476
5480
|
#
|
|
5477
5481
|
# * {Types::UpdateApplicationResponse#id #id} => String
|
|
@@ -5500,6 +5504,11 @@ module Aws::OpenSearchService
|
|
|
5500
5504
|
# value: "AppConfigValue",
|
|
5501
5505
|
# },
|
|
5502
5506
|
# ],
|
|
5507
|
+
# iam_identity_center_options: {
|
|
5508
|
+
# enabled: false,
|
|
5509
|
+
# iam_identity_center_instance_arn: "ARN",
|
|
5510
|
+
# iam_role_for_identity_center_application_arn: "RoleArn",
|
|
5511
|
+
# },
|
|
5503
5512
|
# })
|
|
5504
5513
|
#
|
|
5505
5514
|
# @example Response structure
|
|
@@ -6591,7 +6600,7 @@ module Aws::OpenSearchService
|
|
|
6591
6600
|
tracer: tracer
|
|
6592
6601
|
)
|
|
6593
6602
|
context[:gem_name] = 'aws-sdk-opensearchservice'
|
|
6594
|
-
context[:gem_version] = '1.
|
|
6603
|
+
context[:gem_version] = '1.103.0'
|
|
6595
6604
|
Seahorse::Client::Request.new(handlers, context)
|
|
6596
6605
|
end
|
|
6597
6606
|
|
|
@@ -2257,6 +2257,7 @@ module Aws::OpenSearchService
|
|
|
2257
2257
|
UpdateApplicationRequest.add_member(:id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "id"))
|
|
2258
2258
|
UpdateApplicationRequest.add_member(:data_sources, Shapes::ShapeRef.new(shape: DataSources, location_name: "dataSources"))
|
|
2259
2259
|
UpdateApplicationRequest.add_member(:app_configs, Shapes::ShapeRef.new(shape: AppConfigs, location_name: "appConfigs"))
|
|
2260
|
+
UpdateApplicationRequest.add_member(:iam_identity_center_options, Shapes::ShapeRef.new(shape: IamIdentityCenterOptionsInput, location_name: "iamIdentityCenterOptions"))
|
|
2260
2261
|
UpdateApplicationRequest.struct_class = Types::UpdateApplicationRequest
|
|
2261
2262
|
|
|
2262
2263
|
UpdateApplicationResponse.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "id"))
|
|
@@ -8336,12 +8336,18 @@ module Aws::OpenSearchService
|
|
|
8336
8336
|
# The configuration settings to modify for the OpenSearch application.
|
|
8337
8337
|
# @return [Array<Types::AppConfig>]
|
|
8338
8338
|
#
|
|
8339
|
+
# @!attribute [rw] iam_identity_center_options
|
|
8340
|
+
# Configuration settings for integrating IAM Identity Center with the
|
|
8341
|
+
# OpenSearch application.
|
|
8342
|
+
# @return [Types::IamIdentityCenterOptionsInput]
|
|
8343
|
+
#
|
|
8339
8344
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpdateApplicationRequest AWS API Documentation
|
|
8340
8345
|
#
|
|
8341
8346
|
class UpdateApplicationRequest < Struct.new(
|
|
8342
8347
|
:id,
|
|
8343
8348
|
:data_sources,
|
|
8344
|
-
:app_configs
|
|
8349
|
+
:app_configs,
|
|
8350
|
+
:iam_identity_center_options)
|
|
8345
8351
|
SENSITIVE = []
|
|
8346
8352
|
include Aws::Structure
|
|
8347
8353
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -1256,7 +1256,12 @@ module Aws
|
|
|
1256
1256
|
key: ("opensearchDashboards.dashboardAdmin.users" | "opensearchDashboards.dashboardAdmin.groups")?,
|
|
1257
1257
|
value: ::String?
|
|
1258
1258
|
}
|
|
1259
|
-
]
|
|
1259
|
+
],
|
|
1260
|
+
?iam_identity_center_options: {
|
|
1261
|
+
enabled: bool?,
|
|
1262
|
+
iam_identity_center_instance_arn: ::String?,
|
|
1263
|
+
iam_role_for_identity_center_application_arn: ::String?
|
|
1264
|
+
}
|
|
1260
1265
|
) -> _UpdateApplicationResponseSuccess
|
|
1261
1266
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
|
|
1262
1267
|
|
data/sig/types.rbs
CHANGED
|
@@ -2144,6 +2144,7 @@ module Aws::OpenSearchService
|
|
|
2144
2144
|
attr_accessor id: ::String
|
|
2145
2145
|
attr_accessor data_sources: ::Array[Types::DataSource]
|
|
2146
2146
|
attr_accessor app_configs: ::Array[Types::AppConfig]
|
|
2147
|
+
attr_accessor iam_identity_center_options: Types::IamIdentityCenterOptionsInput
|
|
2147
2148
|
SENSITIVE: []
|
|
2148
2149
|
end
|
|
2149
2150
|
|