aws-sdk-opensearchservice 1.104.0 → 1.106.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: 6d72a60f66eda90d91bf02b74bdffe14740c62f3562c2228bee75fe23ca6c64e
4
- data.tar.gz: ba73c2af3df833c3893659510ee59858e65bf86730c629a4e81dedfbbeec0312
3
+ metadata.gz: 3e3b66ca1bbc27d9fb338a8bad88cbf904e0cafc15b6d78334a613d8f826a3cf
4
+ data.tar.gz: 9d54ef066c3ba9f2f7837f84b49ebef5410d50aa88c4ef6f4771471afea8e1a1
5
5
  SHA512:
6
- metadata.gz: b46a0fbb740e69655444bd6959d4408dbbe10cd7793a840ef7f5b17db415758c3920d27287967251722a817b8cf2f9aff17921afc89717c6e0e2f6fcc1dc7659
7
- data.tar.gz: 125f2afae30a02e7a15577c438a59b1a169e75acc763ac6b4c891d6c8f104383b74f3bfa3e80ffb2b2cba9ae00ee3e9ca412b1e78e16c7259ab007e7f8d61c34
6
+ metadata.gz: a904ccd59fb14846bea917a3c55ba9a3828ba6bb311dd285883d9b91d46480ad5568161a23d8683948f039b0042072ce7712032ae9d1360c5f43d4772503e151
7
+ data.tar.gz: b16531e6b48975c0d037773c53409e296feaae50f6e6f2138c711828d7f2fff2aa3b9673119a97f061a1d25612ab023304680074134d975418e27a7e483a46b9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.106.0 (2026-07-06)
5
+ ------------------
6
+
7
+ * Feature - This release introduces Saved Object Migration APIs, enabling users to migrate dashboards, visualizations, index patterns, and other saved objects from a data source into an Amazon OpenSearch Service application workspace with configurable export filters and conflict resolution strategies.
8
+
9
+ 1.105.0 (2026-07-01)
10
+ ------------------
11
+
12
+ * Feature - To create a Mustang domain via the AWS CLI, you must pass EngineMode OPTIMIZED (along with UseCase OBSERVABILITY or MIXED) without it, the domain defaults to a regular (GENERAL) domain. Also this release includes Insights Feedback API which user can use to provide feedback for Insight API.
13
+
4
14
  1.104.0 (2026-06-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.104.0
1
+ 1.106.0
@@ -1286,6 +1286,14 @@ module Aws::OpenSearchService
1286
1286
  #
1287
1287
  # Maximum suspension duration: 3 days.
1288
1288
  #
1289
+ # @option params [String] :use_case
1290
+ # The primary use case for the domain. For valid values, see
1291
+ # `DomainUseCase`.
1292
+ #
1293
+ # @option params [String] :engine_mode
1294
+ # The engine mode for the domain. For valid values and requirements, see
1295
+ # `EngineMode`.
1296
+ #
1289
1297
  # @return [Types::CreateDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1290
1298
  #
1291
1299
  # * {Types::CreateDomainResponse#domain_status #domain_status} => Types::DomainStatus
@@ -1462,6 +1470,8 @@ module Aws::OpenSearchService
1462
1470
  # start_time: Time.now,
1463
1471
  # end_time: Time.now,
1464
1472
  # },
1473
+ # use_case: "SEARCH", # accepts SEARCH, VECTOR, OBSERVABILITY, MIXED
1474
+ # engine_mode: "GENERAL", # accepts GENERAL, OPTIMIZED
1465
1475
  # })
1466
1476
  #
1467
1477
  # @example Response structure
@@ -1591,6 +1601,8 @@ module Aws::OpenSearchService
1591
1601
  # resp.domain_status.automated_snapshot_pause_options.start_time #=> Time
1592
1602
  # resp.domain_status.automated_snapshot_pause_options.end_time #=> Time
1593
1603
  # resp.domain_status.automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
1604
+ # resp.domain_status.use_case #=> String, one of "SEARCH", "VECTOR", "OBSERVABILITY", "MIXED"
1605
+ # resp.domain_status.engine_mode #=> String, one of "GENERAL", "OPTIMIZED"
1594
1606
  #
1595
1607
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/CreateDomain AWS API Documentation
1596
1608
  #
@@ -2130,6 +2142,8 @@ module Aws::OpenSearchService
2130
2142
  # resp.domain_status.automated_snapshot_pause_options.start_time #=> Time
2131
2143
  # resp.domain_status.automated_snapshot_pause_options.end_time #=> Time
2132
2144
  # resp.domain_status.automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
2145
+ # resp.domain_status.use_case #=> String, one of "SEARCH", "VECTOR", "OBSERVABILITY", "MIXED"
2146
+ # resp.domain_status.engine_mode #=> String, one of "GENERAL", "OPTIMIZED"
2133
2147
  #
2134
2148
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteDomain AWS API Documentation
2135
2149
  #
@@ -2583,6 +2597,8 @@ module Aws::OpenSearchService
2583
2597
  # resp.domain_status.automated_snapshot_pause_options.start_time #=> Time
2584
2598
  # resp.domain_status.automated_snapshot_pause_options.end_time #=> Time
2585
2599
  # resp.domain_status.automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
2600
+ # resp.domain_status.use_case #=> String, one of "SEARCH", "VECTOR", "OBSERVABILITY", "MIXED"
2601
+ # resp.domain_status.engine_mode #=> String, one of "GENERAL", "OPTIMIZED"
2586
2602
  #
2587
2603
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomain AWS API Documentation
2588
2604
  #
@@ -2936,6 +2952,18 @@ module Aws::OpenSearchService
2936
2952
  # resp.domain_config.automated_snapshot_pause_options.status.update_version #=> Integer
2937
2953
  # resp.domain_config.automated_snapshot_pause_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
2938
2954
  # resp.domain_config.automated_snapshot_pause_options.status.pending_deletion #=> Boolean
2955
+ # resp.domain_config.use_case.options #=> String, one of "SEARCH", "VECTOR", "OBSERVABILITY", "MIXED"
2956
+ # resp.domain_config.use_case.status.creation_date #=> Time
2957
+ # resp.domain_config.use_case.status.update_date #=> Time
2958
+ # resp.domain_config.use_case.status.update_version #=> Integer
2959
+ # resp.domain_config.use_case.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
2960
+ # resp.domain_config.use_case.status.pending_deletion #=> Boolean
2961
+ # resp.domain_config.engine_mode.options #=> String, one of "GENERAL", "OPTIMIZED"
2962
+ # resp.domain_config.engine_mode.status.creation_date #=> Time
2963
+ # resp.domain_config.engine_mode.status.update_date #=> Time
2964
+ # resp.domain_config.engine_mode.status.update_version #=> Integer
2965
+ # resp.domain_config.engine_mode.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
2966
+ # resp.domain_config.engine_mode.status.pending_deletion #=> Boolean
2939
2967
  #
2940
2968
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomainConfig AWS API Documentation
2941
2969
  #
@@ -3190,6 +3218,8 @@ module Aws::OpenSearchService
3190
3218
  # resp.domain_status_list[0].automated_snapshot_pause_options.start_time #=> Time
3191
3219
  # resp.domain_status_list[0].automated_snapshot_pause_options.end_time #=> Time
3192
3220
  # resp.domain_status_list[0].automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
3221
+ # resp.domain_status_list[0].use_case #=> String, one of "SEARCH", "VECTOR", "OBSERVABILITY", "MIXED"
3222
+ # resp.domain_status_list[0].engine_mode #=> String, one of "GENERAL", "OPTIMIZED"
3193
3223
  #
3194
3224
  # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DescribeDomains AWS API Documentation
3195
3225
  #
@@ -3367,6 +3397,8 @@ module Aws::OpenSearchService
3367
3397
  # resp.dry_run_config.automated_snapshot_pause_options.start_time #=> Time
3368
3398
  # resp.dry_run_config.automated_snapshot_pause_options.end_time #=> Time
3369
3399
  # resp.dry_run_config.automated_snapshot_pause_options.state #=> String, one of "Active", "Completed", "Scheduled", "Disabled"
3400
+ # resp.dry_run_config.use_case #=> String, one of "SEARCH", "VECTOR", "OBSERVABILITY", "MIXED"
3401
+ # resp.dry_run_config.engine_mode #=> String, one of "GENERAL", "OPTIMIZED"
3370
3402
  # resp.dry_run_results.deployment_type #=> String
3371
3403
  # resp.dry_run_results.message #=> String
3372
3404
  #
@@ -4336,6 +4368,53 @@ module Aws::OpenSearchService
4336
4368
  req.send_request(options)
4337
4369
  end
4338
4370
 
4371
+ # Retrieves the current status and progress of a migration job,
4372
+ # including the number of exported and imported objects and error
4373
+ # details if the migration failed.
4374
+ #
4375
+ # @option params [required, String] :migration_id
4376
+ # The unique identifier of the migration job to retrieve.
4377
+ #
4378
+ # @return [Types::GetMigrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4379
+ #
4380
+ # * {Types::GetMigrationResponse#migration_id #migration_id} => String
4381
+ # * {Types::GetMigrationResponse#status #status} => String
4382
+ # * {Types::GetMigrationResponse#application_id #application_id} => String
4383
+ # * {Types::GetMigrationResponse#source #source} => Types::MigrationSource
4384
+ # * {Types::GetMigrationResponse#exported_count #exported_count} => Integer
4385
+ # * {Types::GetMigrationResponse#imported_count #imported_count} => Integer
4386
+ # * {Types::GetMigrationResponse#error #error} => Types::MigrationError
4387
+ # * {Types::GetMigrationResponse#created_at #created_at} => Time
4388
+ # * {Types::GetMigrationResponse#updated_at #updated_at} => Time
4389
+ #
4390
+ # @example Request syntax with placeholder values
4391
+ #
4392
+ # resp = client.get_migration({
4393
+ # migration_id: "String", # required
4394
+ # })
4395
+ #
4396
+ # @example Response structure
4397
+ #
4398
+ # resp.migration_id #=> String
4399
+ # resp.status #=> String
4400
+ # resp.application_id #=> String
4401
+ # resp.source.datasource_arn #=> String
4402
+ # resp.exported_count #=> Integer
4403
+ # resp.imported_count #=> Integer
4404
+ # resp.error.code #=> String
4405
+ # resp.error.message #=> String
4406
+ # resp.created_at #=> Time
4407
+ # resp.updated_at #=> Time
4408
+ #
4409
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/GetMigration AWS API Documentation
4410
+ #
4411
+ # @overload get_migration(params = {})
4412
+ # @param [Hash] params ({})
4413
+ def get_migration(params = {}, options = {})
4414
+ req = build_request(:get_migration, params)
4415
+ req.send_request(options)
4416
+ end
4417
+
4339
4418
  # Returns a list of Amazon OpenSearch Service package versions, along
4340
4419
  # with their creation time, commit message, and plugin properties (if
4341
4420
  # the package is a zip plugin package). For more information, see
@@ -4488,6 +4567,54 @@ module Aws::OpenSearchService
4488
4567
  req.send_request(options)
4489
4568
  end
4490
4569
 
4570
+ # Submits feedback for an existing insight in an Amazon OpenSearch
4571
+ # Service domain. Allows users to provide a thumbs up or thumbs down
4572
+ # rating and optional text feedback for a specific insight.
4573
+ #
4574
+ # @option params [required, Types::InsightFeedbackEntity] :entity
4575
+ # The entity for which to submit insight feedback. Specifies the type
4576
+ # and value of the entity, such as a domain name.
4577
+ #
4578
+ # @option params [required, String] :insight_id
4579
+ # The unique identifier of the insight for which to submit feedback.
4580
+ #
4581
+ # @option params [required, String] :thumbs
4582
+ # The thumbs up or thumbs down feedback for the insight. Possible values
4583
+ # are `Up` and `Down`.
4584
+ #
4585
+ # @option params [String] :feedback_text
4586
+ # Optional text feedback providing additional details about the insight.
4587
+ # Maximum length is 1000 characters.
4588
+ #
4589
+ # @return [Types::InsightFeedbackResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4590
+ #
4591
+ # * {Types::InsightFeedbackResponse#status #status} => String
4592
+ #
4593
+ # @example Request syntax with placeholder values
4594
+ #
4595
+ # resp = client.insight_feedback({
4596
+ # entity: { # required
4597
+ # type: "DomainName", # required, accepts DomainName
4598
+ # value: "InsightEntityValue", # required
4599
+ # },
4600
+ # insight_id: "GUID", # required
4601
+ # thumbs: "Up", # required, accepts Up, Down
4602
+ # feedback_text: "InsightFeedbackText",
4603
+ # })
4604
+ #
4605
+ # @example Response structure
4606
+ #
4607
+ # resp.status #=> String, one of "SUCCESS", "ERROR"
4608
+ #
4609
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/InsightFeedback AWS API Documentation
4610
+ #
4611
+ # @overload insight_feedback(params = {})
4612
+ # @param [Hash] params ({})
4613
+ def insight_feedback(params = {}, options = {})
4614
+ req = build_request(:insight_feedback, params)
4615
+ req.send_request(options)
4616
+ end
4617
+
4491
4618
  # Lists all OpenSearch applications under your account.
4492
4619
  #
4493
4620
  # @option params [String] :next_token
@@ -4964,6 +5091,63 @@ module Aws::OpenSearchService
4964
5091
  req.send_request(options)
4965
5092
  end
4966
5093
 
5094
+ # Lists migration jobs for an Amazon OpenSearch Service application. You
5095
+ # can filter results by migration status. Use pagination to ensure that
5096
+ # the operation returns quickly and successfully.
5097
+ #
5098
+ # @option params [required, String] :application_id
5099
+ # The unique identifier of the OpenSearch application to list migrations
5100
+ # for.
5101
+ #
5102
+ # @option params [String] :status
5103
+ # Filters the results by migration status. Valid values are `PENDING`,
5104
+ # `IN_PROGRESS`, `SUCCEEDED`, and `FAILED`.
5105
+ #
5106
+ # @option params [Integer] :max_results
5107
+ # The maximum number of results to return in a single call.
5108
+ #
5109
+ # @option params [String] :next_token
5110
+ # The pagination token from a previous call to retrieve the next set of
5111
+ # results.
5112
+ #
5113
+ # @return [Types::ListMigrationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5114
+ #
5115
+ # * {Types::ListMigrationsResponse#migrations #migrations} => Array<Types::MigrationSummary>
5116
+ # * {Types::ListMigrationsResponse#next_token #next_token} => String
5117
+ #
5118
+ # @example Request syntax with placeholder values
5119
+ #
5120
+ # resp = client.list_migrations({
5121
+ # application_id: "ApplicationId", # required
5122
+ # status: "String",
5123
+ # max_results: 1,
5124
+ # next_token: "String",
5125
+ # })
5126
+ #
5127
+ # @example Response structure
5128
+ #
5129
+ # resp.migrations #=> Array
5130
+ # resp.migrations[0].migration_id #=> String
5131
+ # resp.migrations[0].status #=> String
5132
+ # resp.migrations[0].application_id #=> String
5133
+ # resp.migrations[0].source.datasource_arn #=> String
5134
+ # resp.migrations[0].exported_count #=> Integer
5135
+ # resp.migrations[0].imported_count #=> Integer
5136
+ # resp.migrations[0].error.code #=> String
5137
+ # resp.migrations[0].error.message #=> String
5138
+ # resp.migrations[0].created_at #=> Time
5139
+ # resp.migrations[0].updated_at #=> Time
5140
+ # resp.next_token #=> String
5141
+ #
5142
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ListMigrations AWS API Documentation
5143
+ #
5144
+ # @overload list_migrations(params = {})
5145
+ # @param [Hash] params ({})
5146
+ def list_migrations(params = {}, options = {})
5147
+ req = build_request(:list_migrations, params)
5148
+ req.send_request(options)
5149
+ end
5150
+
4967
5151
  # Lists all packages associated with an Amazon OpenSearch Service
4968
5152
  # domain. For more information, see [Custom packages for Amazon
4969
5153
  # OpenSearch Service][1].
@@ -5614,6 +5798,76 @@ module Aws::OpenSearchService
5614
5798
  req.send_request(options)
5615
5799
  end
5616
5800
 
5801
+ # Initiates a migration job to migrate saved objects from a data source
5802
+ # to an Amazon OpenSearch Service application workspace. Saved objects
5803
+ # include dashboards, visualizations, index patterns, and searches. You
5804
+ # can specify export filters to control the scope of the migration and a
5805
+ # conflict resolution strategy for handling existing objects in the
5806
+ # target workspace.
5807
+ #
5808
+ # @option params [required, String] :application_id
5809
+ # The unique identifier of the OpenSearch application to migrate saved
5810
+ # objects into.
5811
+ #
5812
+ # @option params [required, Types::MigrationOptions] :migration_options
5813
+ # The configuration options for the migration, including the source data
5814
+ # source, target workspace, export filters, and conflict resolution
5815
+ # strategy.
5816
+ #
5817
+ # @option params [String] :client_token
5818
+ # A unique, case-sensitive identifier to ensure that the operation
5819
+ # completes no more than one time. If this token matches a previous
5820
+ # request, Amazon OpenSearch Service ignores the request but does not
5821
+ # return an error.
5822
+ #
5823
+ # @return [Types::StartMigrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5824
+ #
5825
+ # * {Types::StartMigrationResponse#migration_id #migration_id} => String
5826
+ # * {Types::StartMigrationResponse#status #status} => String
5827
+ #
5828
+ # @example Request syntax with placeholder values
5829
+ #
5830
+ # resp = client.start_migration({
5831
+ # application_id: "ApplicationId", # required
5832
+ # migration_options: { # required
5833
+ # source: { # required
5834
+ # datasource_arn: "ARN", # required
5835
+ # },
5836
+ # workspace: { # required
5837
+ # workspace_id: "String",
5838
+ # create_workspace: false,
5839
+ # name: "String",
5840
+ # type: "String",
5841
+ # },
5842
+ # export_options: {
5843
+ # types: ["String"],
5844
+ # objects: [
5845
+ # {
5846
+ # type: "String", # required
5847
+ # id: "String", # required
5848
+ # },
5849
+ # ],
5850
+ # include_references_deep: false,
5851
+ # },
5852
+ # conflict_resolution: "String",
5853
+ # },
5854
+ # client_token: "ClientToken",
5855
+ # })
5856
+ #
5857
+ # @example Response structure
5858
+ #
5859
+ # resp.migration_id #=> String
5860
+ # resp.status #=> String
5861
+ #
5862
+ # @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/StartMigration AWS API Documentation
5863
+ #
5864
+ # @overload start_migration(params = {})
5865
+ # @param [Hash] params ({})
5866
+ def start_migration(params = {}, options = {})
5867
+ req = build_request(:start_migration, params)
5868
+ req.send_request(options)
5869
+ end
5870
+
5617
5871
  # Schedules a service software update for an Amazon OpenSearch Service
5618
5872
  # domain. For more information, see [Service software updates in Amazon
5619
5873
  # OpenSearch Service][1].
@@ -6011,6 +6265,14 @@ module Aws::OpenSearchService
6011
6265
  #
6012
6266
  # Maximum suspension duration: 3 days.
6013
6267
  #
6268
+ # @option params [String] :use_case
6269
+ # The primary use case for the domain. For valid values, see
6270
+ # `DomainUseCase`.
6271
+ #
6272
+ # @option params [String] :engine_mode
6273
+ # The engine mode for the domain. The engine mode can't be changed
6274
+ # after the domain is created. For valid values, see `EngineMode`.
6275
+ #
6014
6276
  # @return [Types::UpdateDomainConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6015
6277
  #
6016
6278
  # * {Types::UpdateDomainConfigResponse#domain_config #domain_config} => Types::DomainConfig
@@ -6185,6 +6447,8 @@ module Aws::OpenSearchService
6185
6447
  # start_time: Time.now,
6186
6448
  # end_time: Time.now,
6187
6449
  # },
6450
+ # use_case: "SEARCH", # accepts SEARCH, VECTOR, OBSERVABILITY, MIXED
6451
+ # engine_mode: "GENERAL", # accepts GENERAL, OPTIMIZED
6188
6452
  # })
6189
6453
  #
6190
6454
  # @example Response structure
@@ -6404,6 +6668,18 @@ module Aws::OpenSearchService
6404
6668
  # resp.domain_config.automated_snapshot_pause_options.status.update_version #=> Integer
6405
6669
  # resp.domain_config.automated_snapshot_pause_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
6406
6670
  # resp.domain_config.automated_snapshot_pause_options.status.pending_deletion #=> Boolean
6671
+ # resp.domain_config.use_case.options #=> String, one of "SEARCH", "VECTOR", "OBSERVABILITY", "MIXED"
6672
+ # resp.domain_config.use_case.status.creation_date #=> Time
6673
+ # resp.domain_config.use_case.status.update_date #=> Time
6674
+ # resp.domain_config.use_case.status.update_version #=> Integer
6675
+ # resp.domain_config.use_case.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
6676
+ # resp.domain_config.use_case.status.pending_deletion #=> Boolean
6677
+ # resp.domain_config.engine_mode.options #=> String, one of "GENERAL", "OPTIMIZED"
6678
+ # resp.domain_config.engine_mode.status.creation_date #=> Time
6679
+ # resp.domain_config.engine_mode.status.update_date #=> Time
6680
+ # resp.domain_config.engine_mode.status.update_version #=> Integer
6681
+ # resp.domain_config.engine_mode.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
6682
+ # resp.domain_config.engine_mode.status.pending_deletion #=> Boolean
6407
6683
  # resp.dry_run_results.deployment_type #=> String
6408
6684
  # resp.dry_run_results.message #=> String
6409
6685
  # resp.dry_run_progress_status.dry_run_id #=> String
@@ -6821,7 +7097,7 @@ module Aws::OpenSearchService
6821
7097
  tracer: tracer
6822
7098
  )
6823
7099
  context[:gem_name] = 'aws-sdk-opensearchservice'
6824
- context[:gem_version] = '1.104.0'
7100
+ context[:gem_version] = '1.106.0'
6825
7101
  Seahorse::Client::Request.new(handlers, context)
6826
7102
  end
6827
7103