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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 05ebe09549a6c1e3db11cba3945317953369da36aa3cffbda50d0846665c7265
4
- data.tar.gz: b721c423c1f0b3168bb9b66c123f0ea5519aa7e462c24a1d291c24d6cc7aa3f1
3
+ metadata.gz: 1701d64074b5dd02a7ad39e145636c89d390f33868d05a69101ba10065a1d587
4
+ data.tar.gz: abc776a9bab7a4782d3d332e1d48683027b816ada09342bb1692b76fdef6db4d
5
5
  SHA512:
6
- metadata.gz: adb03e899442e5c42af09c34edc2c5f98ac152faf2ed61e52774ee1893df8580102e42880a648de747bd8e19ae08dac136892786a8ca9bad645f93285a3cf7d2
7
- data.tar.gz: c0fc775bc3ae1936d4fa06d515ff95f4fae05dcd5da376a3c8a0c96c2c01a99df64a03ec90a5da2da48619823ad8ef5c894678e0a6b787f02df1f292426b35a2
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.102.0
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.102.0'
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
@@ -54,7 +54,7 @@ module Aws::OpenSearchService
54
54
  autoload :EndpointProvider, 'aws-sdk-opensearchservice/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-opensearchservice/endpoints'
56
56
 
57
- GEM_VERSION = '1.102.0'
57
+ GEM_VERSION = '1.103.0'
58
58
 
59
59
  end
60
60
 
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
 
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.102.0
4
+ version: 1.103.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services