aws-sdk-opensearchservice 1.77.0 → 1.78.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: a9042aaabb1e8d68a55f430c86e902fd392f0ba4ea85d051b4b1a530f1a4face
4
- data.tar.gz: 905a6ee7ffd709d5b867d634786e0b8b853914afcf9f9e69de9dad0e71e53a9f
3
+ metadata.gz: 328f636e9d5ab1e580e98a2ba544378476764e2474787f7fef40996abf2fa7f4
4
+ data.tar.gz: 46943d115dbff697df040acd0b6315118c0a88580b90cbc7d83add8de014243b
5
5
  SHA512:
6
- metadata.gz: f02e935e0a0875a414e1594f54798244ef7925e32255134f26c222f56932d54c69f8cbee8ad276d5ac040a87e945275b51c2209ae1742f65dfaaf982af6fbee3
7
- data.tar.gz: ba584aabbe0e69c750eb816642f8f4ebe2930c59828843ec682f5b7340dd7a14b8b9270cd516295e87e5e88a1470fe21a37dd2faf3d97262d2baa1c805e3612c
6
+ metadata.gz: 94a59d49d73aff0ad15e3fa8a7c945b06ace848169590a21192973848eb20621c5cb56ba140c4726e15bde80a0ebd3d926551a2d0a77b9ab8d641c2a091a6f2e
7
+ data.tar.gz: d6f5a451d5e3294e729fa14816312006901d791018e5082f68e27effe9f225841a864684f76a84c6946342faa9f2c5e181328d18213b3abb7778531139491ad1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.78.0 (2025-11-07)
5
+ ------------------
6
+
7
+ * Feature - This release introduces the Default Application feature, allowing users to set, change, or unset a preferred OpenSearch UI application on a per-region basis for a streamlined and consistent user experience.
8
+
4
9
  1.77.0 (2025-10-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.77.0
1
+ 1.78.0
@@ -3663,6 +3663,28 @@ module Aws::OpenSearchService
3663
3663
  req.send_request(options)
3664
3664
  end
3665
3665
 
3666
+ # Gets the ARN of the current default application.
3667
+ #
3668
+ # If the default application isn't set, the operation returns a
3669
+ # resource not found error.
3670
+ #
3671
+ # @return [Types::GetDefaultApplicationSettingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3672
+ #
3673
+ # * {Types::GetDefaultApplicationSettingResponse#application_arn #application_arn} => String
3674
+ #
3675
+ # @example Response structure
3676
+ #
3677
+ # resp.application_arn #=> String
3678
+ #
3679
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/GetDefaultApplicationSetting AWS API Documentation
3680
+ #
3681
+ # @overload get_default_application_setting(params = {})
3682
+ # @param [Hash] params ({})
3683
+ def get_default_application_setting(params = {}, options = {})
3684
+ req = build_request(:get_default_application_setting, params)
3685
+ req.send_request(options)
3686
+ end
3687
+
3666
3688
  # Returns detailed configuration information for a specific direct query
3667
3689
  # data source in Amazon OpenSearch Service.
3668
3690
  #
@@ -4618,6 +4640,51 @@ module Aws::OpenSearchService
4618
4640
  req.send_request(options)
4619
4641
  end
4620
4642
 
4643
+ # Sets the default application to the application with the specified
4644
+ # ARN.
4645
+ #
4646
+ # To remove the default application, use the
4647
+ # `GetDefaultApplicationSetting` operation to get the current default
4648
+ # and then call the `PutDefaultApplicationSetting` with the current
4649
+ # applications ARN and the `setAsDefault` parameter set to `false`.
4650
+ #
4651
+ # @option params [required, String] :application_arn
4652
+ # The Amazon Resource Name (ARN) of the domain. See [Identifiers for IAM
4653
+ # Entities ][1] in *Using Amazon Web Services Identity and Access
4654
+ # Management* for more information.
4655
+ #
4656
+ #
4657
+ #
4658
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html
4659
+ #
4660
+ # @option params [required, Boolean] :set_as_default
4661
+ # Set to true to set the specified ARN as the default application. Set
4662
+ # to false to clear the default application.
4663
+ #
4664
+ # @return [Types::PutDefaultApplicationSettingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4665
+ #
4666
+ # * {Types::PutDefaultApplicationSettingResponse#application_arn #application_arn} => String
4667
+ #
4668
+ # @example Request syntax with placeholder values
4669
+ #
4670
+ # resp = client.put_default_application_setting({
4671
+ # application_arn: "ARN", # required
4672
+ # set_as_default: false, # required
4673
+ # })
4674
+ #
4675
+ # @example Response structure
4676
+ #
4677
+ # resp.application_arn #=> String
4678
+ #
4679
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/PutDefaultApplicationSetting AWS API Documentation
4680
+ #
4681
+ # @overload put_default_application_setting(params = {})
4682
+ # @param [Hash] params ({})
4683
+ def put_default_application_setting(params = {}, options = {})
4684
+ req = build_request(:put_default_application_setting, params)
4685
+ req.send_request(options)
4686
+ end
4687
+
4621
4688
  # Allows the remote Amazon OpenSearch Service domain owner to reject an
4622
4689
  # inbound cross-cluster connection request.
4623
4690
  #
@@ -5843,7 +5910,7 @@ module Aws::OpenSearchService
5843
5910
  tracer: tracer
5844
5911
  )
5845
5912
  context[:gem_name] = 'aws-sdk-opensearchservice'
5846
- context[:gem_version] = '1.77.0'
5913
+ context[:gem_version] = '1.78.0'
5847
5914
  Seahorse::Client::Request.new(handlers, context)
5848
5915
  end
5849
5916
 
@@ -249,6 +249,8 @@ module Aws::OpenSearchService
249
249
  GetCompatibleVersionsResponse = Shapes::StructureShape.new(name: 'GetCompatibleVersionsResponse')
250
250
  GetDataSourceRequest = Shapes::StructureShape.new(name: 'GetDataSourceRequest')
251
251
  GetDataSourceResponse = Shapes::StructureShape.new(name: 'GetDataSourceResponse')
252
+ GetDefaultApplicationSettingRequest = Shapes::StructureShape.new(name: 'GetDefaultApplicationSettingRequest')
253
+ GetDefaultApplicationSettingResponse = Shapes::StructureShape.new(name: 'GetDefaultApplicationSettingResponse')
252
254
  GetDirectQueryDataSourceRequest = Shapes::StructureShape.new(name: 'GetDirectQueryDataSourceRequest')
253
255
  GetDirectQueryDataSourceResponse = Shapes::StructureShape.new(name: 'GetDirectQueryDataSourceResponse')
254
256
  GetDomainMaintenanceStatusRequest = Shapes::StructureShape.new(name: 'GetDomainMaintenanceStatusRequest')
@@ -416,6 +418,8 @@ module Aws::OpenSearchService
416
418
  PropertyValueType = Shapes::StringShape.new(name: 'PropertyValueType')
417
419
  PurchaseReservedInstanceOfferingRequest = Shapes::StructureShape.new(name: 'PurchaseReservedInstanceOfferingRequest')
418
420
  PurchaseReservedInstanceOfferingResponse = Shapes::StructureShape.new(name: 'PurchaseReservedInstanceOfferingResponse')
421
+ PutDefaultApplicationSettingRequest = Shapes::StructureShape.new(name: 'PutDefaultApplicationSettingRequest')
422
+ PutDefaultApplicationSettingResponse = Shapes::StructureShape.new(name: 'PutDefaultApplicationSettingResponse')
419
423
  RecurringCharge = Shapes::StructureShape.new(name: 'RecurringCharge')
420
424
  RecurringChargeList = Shapes::ListShape.new(name: 'RecurringChargeList')
421
425
  ReferencePath = Shapes::StringShape.new(name: 'ReferencePath')
@@ -1370,6 +1374,11 @@ module Aws::OpenSearchService
1370
1374
  GetDataSourceResponse.add_member(:status, Shapes::ShapeRef.new(shape: DataSourceStatus, location_name: "Status"))
1371
1375
  GetDataSourceResponse.struct_class = Types::GetDataSourceResponse
1372
1376
 
1377
+ GetDefaultApplicationSettingRequest.struct_class = Types::GetDefaultApplicationSettingRequest
1378
+
1379
+ GetDefaultApplicationSettingResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "applicationArn"))
1380
+ GetDefaultApplicationSettingResponse.struct_class = Types::GetDefaultApplicationSettingResponse
1381
+
1373
1382
  GetDirectQueryDataSourceRequest.add_member(:data_source_name, Shapes::ShapeRef.new(shape: DirectQueryDataSourceName, required: true, location: "uri", location_name: "DataSourceName"))
1374
1383
  GetDirectQueryDataSourceRequest.struct_class = Types::GetDirectQueryDataSourceRequest
1375
1384
 
@@ -1805,6 +1814,13 @@ module Aws::OpenSearchService
1805
1814
  PurchaseReservedInstanceOfferingResponse.add_member(:reservation_name, Shapes::ShapeRef.new(shape: ReservationToken, location_name: "ReservationName"))
1806
1815
  PurchaseReservedInstanceOfferingResponse.struct_class = Types::PurchaseReservedInstanceOfferingResponse
1807
1816
 
1817
+ PutDefaultApplicationSettingRequest.add_member(:application_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "applicationArn"))
1818
+ PutDefaultApplicationSettingRequest.add_member(:set_as_default, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "setAsDefault"))
1819
+ PutDefaultApplicationSettingRequest.struct_class = Types::PutDefaultApplicationSettingRequest
1820
+
1821
+ PutDefaultApplicationSettingResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "applicationArn"))
1822
+ PutDefaultApplicationSettingResponse.struct_class = Types::PutDefaultApplicationSettingResponse
1823
+
1808
1824
  RecurringCharge.add_member(:recurring_charge_amount, Shapes::ShapeRef.new(shape: Double, location_name: "RecurringChargeAmount"))
1809
1825
  RecurringCharge.add_member(:recurring_charge_frequency, Shapes::ShapeRef.new(shape: String, location_name: "RecurringChargeFrequency"))
1810
1826
  RecurringCharge.struct_class = Types::RecurringCharge
@@ -2764,6 +2780,18 @@ module Aws::OpenSearchService
2764
2780
  o.errors << Shapes::ShapeRef.new(shape: DependencyFailureException)
2765
2781
  end)
2766
2782
 
2783
+ api.add_operation(:get_default_application_setting, Seahorse::Model::Operation.new.tap do |o|
2784
+ o.name = "GetDefaultApplicationSetting"
2785
+ o.http_method = "GET"
2786
+ o.http_request_uri = "/2021-01-01/opensearch/defaultApplicationSetting"
2787
+ o.input = Shapes::ShapeRef.new(shape: GetDefaultApplicationSettingRequest)
2788
+ o.output = Shapes::ShapeRef.new(shape: GetDefaultApplicationSettingResponse)
2789
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2790
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2791
+ o.errors << Shapes::ShapeRef.new(shape: InternalException)
2792
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2793
+ end)
2794
+
2767
2795
  api.add_operation(:get_direct_query_data_source, Seahorse::Model::Operation.new.tap do |o|
2768
2796
  o.name = "GetDirectQueryDataSource"
2769
2797
  o.http_method = "GET"
@@ -3071,6 +3099,18 @@ module Aws::OpenSearchService
3071
3099
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
3072
3100
  end)
3073
3101
 
3102
+ api.add_operation(:put_default_application_setting, Seahorse::Model::Operation.new.tap do |o|
3103
+ o.name = "PutDefaultApplicationSetting"
3104
+ o.http_method = "PUT"
3105
+ o.http_request_uri = "/2021-01-01/opensearch/defaultApplicationSetting"
3106
+ o.input = Shapes::ShapeRef.new(shape: PutDefaultApplicationSettingRequest)
3107
+ o.output = Shapes::ShapeRef.new(shape: PutDefaultApplicationSettingResponse)
3108
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
3109
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
3110
+ o.errors << Shapes::ShapeRef.new(shape: InternalException)
3111
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3112
+ end)
3113
+
3074
3114
  api.add_operation(:reject_inbound_connection, Seahorse::Model::Operation.new.tap do |o|
3075
3115
  o.name = "RejectInboundConnection"
3076
3116
  o.http_method = "PUT"
@@ -368,8 +368,8 @@ module Aws::OpenSearchService
368
368
  # @return [Types::JWTOptionsOutput]
369
369
  #
370
370
  # @!attribute [rw] iam_federation_options
371
- # Container for information about the IAM federation configuration for
372
- # an OpenSearch UI application.
371
+ # Configuration options for IAM identity federation in advanced
372
+ # security settings.
373
373
  # @return [Types::IAMFederationOptionsOutput]
374
374
  #
375
375
  # @!attribute [rw] anonymous_auth_disable_date
@@ -437,8 +437,8 @@ module Aws::OpenSearchService
437
437
  # @return [Types::JWTOptionsInput]
438
438
  #
439
439
  # @!attribute [rw] iam_federation_options
440
- # Container for information about the IAM federation configuration for
441
- # an OpenSearch UI application.
440
+ # Input configuration for IAM identity federation within advanced
441
+ # security options.
442
442
  # @return [Types::IAMFederationOptionsInput]
443
443
  #
444
444
  # @!attribute [rw] anonymous_auth_enabled
@@ -4219,6 +4219,30 @@ module Aws::OpenSearchService
4219
4219
  include Aws::Structure
4220
4220
  end
4221
4221
 
4222
+ # @api private
4223
+ #
4224
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/GetDefaultApplicationSettingRequest AWS API Documentation
4225
+ #
4226
+ class GetDefaultApplicationSettingRequest < Aws::EmptyStructure; end
4227
+
4228
+ # @!attribute [rw] application_arn
4229
+ # The Amazon Resource Name (ARN) of the domain. See [Identifiers for
4230
+ # IAM Entities ][1] in *Using Amazon Web Services Identity and Access
4231
+ # Management* for more information.
4232
+ #
4233
+ #
4234
+ #
4235
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html
4236
+ # @return [String]
4237
+ #
4238
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/GetDefaultApplicationSettingResponse AWS API Documentation
4239
+ #
4240
+ class GetDefaultApplicationSettingResponse < Struct.new(
4241
+ :application_arn)
4242
+ SENSITIVE = []
4243
+ include Aws::Structure
4244
+ end
4245
+
4222
4246
  # @!attribute [rw] data_source_name
4223
4247
  # A unique, user-defined label that identifies the data source within
4224
4248
  # your OpenSearch Service environment.
@@ -4481,21 +4505,21 @@ module Aws::OpenSearchService
4481
4505
  include Aws::Structure
4482
4506
  end
4483
4507
 
4484
- # The IAM federation authentication configuration for an Amazon
4485
- # OpenSearch Service domain.
4508
+ # Input parameters for configuring IAM identity federation settings.
4486
4509
  #
4487
4510
  # @!attribute [rw] enabled
4488
- # True to enable IAM federation authentication for a domain.
4511
+ # Specifies whether IAM identity federation is enabled for the
4512
+ # OpenSearch domain.
4489
4513
  # @return [Boolean]
4490
4514
  #
4491
4515
  # @!attribute [rw] subject_key
4492
- # Element of the IAM federation assertion to use for the user name.
4493
- # Default is `sub`.
4516
+ # The key in the SAML assertion that contains the user's subject
4517
+ # identifier.
4494
4518
  # @return [String]
4495
4519
  #
4496
4520
  # @!attribute [rw] roles_key
4497
- # Element of the IAM federation assertion to use for backend roles.
4498
- # Default is `roles`.
4521
+ # The key in the SAML assertion that contains the user's role
4522
+ # information.
4499
4523
  # @return [String]
4500
4524
  #
4501
4525
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/IAMFederationOptionsInput AWS API Documentation
@@ -4508,18 +4532,22 @@ module Aws::OpenSearchService
4508
4532
  include Aws::Structure
4509
4533
  end
4510
4534
 
4511
- # Describes the IAM federation options configured for the domain.
4535
+ # Output parameters showing the current IAM identity federation
4536
+ # configuration.
4512
4537
  #
4513
4538
  # @!attribute [rw] enabled
4514
- # True if IAM federation is enabled.
4539
+ # Indicates whether IAM identity federation is currently enabled for
4540
+ # the domain.
4515
4541
  # @return [Boolean]
4516
4542
  #
4517
4543
  # @!attribute [rw] subject_key
4518
- # The key used for matching the IAM federation subject attribute.
4544
+ # The configured key in the SAML assertion for the user's subject
4545
+ # identifier.
4519
4546
  # @return [String]
4520
4547
  #
4521
4548
  # @!attribute [rw] roles_key
4522
- # The key used for matching the IAM federation roles attribute.
4549
+ # The configured key in the SAML assertion for the user's role
4550
+ # information.
4523
4551
  # @return [String]
4524
4552
  #
4525
4553
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/IAMFederationOptionsOutput AWS API Documentation
@@ -6435,6 +6463,48 @@ module Aws::OpenSearchService
6435
6463
  include Aws::Structure
6436
6464
  end
6437
6465
 
6466
+ # @!attribute [rw] application_arn
6467
+ # The Amazon Resource Name (ARN) of the domain. See [Identifiers for
6468
+ # IAM Entities ][1] in *Using Amazon Web Services Identity and Access
6469
+ # Management* for more information.
6470
+ #
6471
+ #
6472
+ #
6473
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html
6474
+ # @return [String]
6475
+ #
6476
+ # @!attribute [rw] set_as_default
6477
+ # Set to true to set the specified ARN as the default application. Set
6478
+ # to false to clear the default application.
6479
+ # @return [Boolean]
6480
+ #
6481
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/PutDefaultApplicationSettingRequest AWS API Documentation
6482
+ #
6483
+ class PutDefaultApplicationSettingRequest < Struct.new(
6484
+ :application_arn,
6485
+ :set_as_default)
6486
+ SENSITIVE = []
6487
+ include Aws::Structure
6488
+ end
6489
+
6490
+ # @!attribute [rw] application_arn
6491
+ # The Amazon Resource Name (ARN) of the domain. See [Identifiers for
6492
+ # IAM Entities ][1] in *Using Amazon Web Services Identity and Access
6493
+ # Management* for more information.
6494
+ #
6495
+ #
6496
+ #
6497
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html
6498
+ # @return [String]
6499
+ #
6500
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/PutDefaultApplicationSettingResponse AWS API Documentation
6501
+ #
6502
+ class PutDefaultApplicationSettingResponse < Struct.new(
6503
+ :application_arn)
6504
+ SENSITIVE = []
6505
+ include Aws::Structure
6506
+ end
6507
+
6438
6508
  # Contains the specific price and frequency of a recurring charges for
6439
6509
  # an OpenSearch Reserved Instance, or for a Reserved Instance offering.
6440
6510
  #
@@ -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.77.0'
57
+ GEM_VERSION = '1.78.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -844,6 +844,15 @@ module Aws
844
844
  ) -> _GetDataSourceResponseSuccess
845
845
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataSourceResponseSuccess
846
846
 
847
+ interface _GetDefaultApplicationSettingResponseSuccess
848
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDefaultApplicationSettingResponse]
849
+ def application_arn: () -> ::String
850
+ end
851
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpenSearchService/Client.html#get_default_application_setting-instance_method
852
+ def get_default_application_setting: (
853
+ ) -> _GetDefaultApplicationSettingResponseSuccess
854
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDefaultApplicationSettingResponseSuccess
855
+
847
856
  interface _GetDirectQueryDataSourceResponseSuccess
848
857
  include ::Seahorse::Client::_ResponseSuccess[Types::GetDirectQueryDataSourceResponse]
849
858
  def data_source_name: () -> ::String
@@ -1097,6 +1106,17 @@ module Aws
1097
1106
  ) -> _PurchaseReservedInstanceOfferingResponseSuccess
1098
1107
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PurchaseReservedInstanceOfferingResponseSuccess
1099
1108
 
1109
+ interface _PutDefaultApplicationSettingResponseSuccess
1110
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutDefaultApplicationSettingResponse]
1111
+ def application_arn: () -> ::String
1112
+ end
1113
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/OpenSearchService/Client.html#put_default_application_setting-instance_method
1114
+ def put_default_application_setting: (
1115
+ application_arn: ::String,
1116
+ set_as_default: bool
1117
+ ) -> _PutDefaultApplicationSettingResponseSuccess
1118
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutDefaultApplicationSettingResponseSuccess
1119
+
1100
1120
  interface _RejectInboundConnectionResponseSuccess
1101
1121
  include ::Seahorse::Client::_ResponseSuccess[Types::RejectInboundConnectionResponse]
1102
1122
  def connection: () -> Types::InboundConnection
data/sig/types.rbs CHANGED
@@ -1066,6 +1066,14 @@ module Aws::OpenSearchService
1066
1066
  SENSITIVE: []
1067
1067
  end
1068
1068
 
1069
+ class GetDefaultApplicationSettingRequest < Aws::EmptyStructure
1070
+ end
1071
+
1072
+ class GetDefaultApplicationSettingResponse
1073
+ attr_accessor application_arn: ::String
1074
+ SENSITIVE: []
1075
+ end
1076
+
1069
1077
  class GetDirectQueryDataSourceRequest
1070
1078
  attr_accessor data_source_name: ::String
1071
1079
  SENSITIVE: []
@@ -1637,6 +1645,17 @@ module Aws::OpenSearchService
1637
1645
  SENSITIVE: []
1638
1646
  end
1639
1647
 
1648
+ class PutDefaultApplicationSettingRequest
1649
+ attr_accessor application_arn: ::String
1650
+ attr_accessor set_as_default: bool
1651
+ SENSITIVE: []
1652
+ end
1653
+
1654
+ class PutDefaultApplicationSettingResponse
1655
+ attr_accessor application_arn: ::String
1656
+ SENSITIVE: []
1657
+ end
1658
+
1640
1659
  class RecurringCharge
1641
1660
  attr_accessor recurring_charge_amount: ::Float
1642
1661
  attr_accessor recurring_charge_frequency: ::String
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.77.0
4
+ version: 1.78.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services