@aws-sdk/client-opensearch 3.844.0 → 3.846.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.
Files changed (34) hide show
  1. package/dist-types/commands/AddDataSourceCommand.d.ts +2 -1
  2. package/dist-types/commands/AddDirectQueryDataSourceCommand.d.ts +2 -4
  3. package/dist-types/commands/AssociatePackageCommand.d.ts +1 -2
  4. package/dist-types/commands/AssociatePackagesCommand.d.ts +2 -1
  5. package/dist-types/commands/CreateApplicationCommand.d.ts +2 -1
  6. package/dist-types/commands/CreateDomainCommand.d.ts +6 -0
  7. package/dist-types/commands/DeleteDataSourceCommand.d.ts +2 -1
  8. package/dist-types/commands/DeleteDirectQueryDataSourceCommand.d.ts +1 -3
  9. package/dist-types/commands/DeleteDomainCommand.d.ts +3 -0
  10. package/dist-types/commands/DescribeDomainChangeProgressCommand.d.ts +2 -1
  11. package/dist-types/commands/DescribeDomainCommand.d.ts +3 -0
  12. package/dist-types/commands/DescribeDomainConfigCommand.d.ts +3 -0
  13. package/dist-types/commands/DescribeDomainHealthCommand.d.ts +2 -1
  14. package/dist-types/commands/DescribeDomainsCommand.d.ts +3 -0
  15. package/dist-types/commands/DescribeDryRunProgressCommand.d.ts +5 -2
  16. package/dist-types/commands/DescribeReservedInstanceOfferingsCommand.d.ts +2 -1
  17. package/dist-types/commands/GetDirectQueryDataSourceCommand.d.ts +2 -4
  18. package/dist-types/commands/GetPackageVersionHistoryCommand.d.ts +3 -2
  19. package/dist-types/commands/ListDataSourcesCommand.d.ts +3 -3
  20. package/dist-types/commands/ListDirectQueryDataSourcesCommand.d.ts +2 -4
  21. package/dist-types/commands/ListDomainsForPackageCommand.d.ts +2 -1
  22. package/dist-types/commands/ListScheduledActionsCommand.d.ts +1 -1
  23. package/dist-types/commands/StartDomainMaintenanceCommand.d.ts +2 -2
  24. package/dist-types/commands/UpdateDataSourceCommand.d.ts +2 -2
  25. package/dist-types/commands/UpdateDirectQueryDataSourceCommand.d.ts +2 -4
  26. package/dist-types/commands/UpdateDomainConfigCommand.d.ts +7 -2
  27. package/dist-types/commands/UpdatePackageScopeCommand.d.ts +2 -1
  28. package/dist-types/commands/UpdateScheduledActionCommand.d.ts +1 -1
  29. package/dist-types/models/models_0.d.ts +368 -331
  30. package/dist-types/models/models_1.d.ts +71 -60
  31. package/dist-types/ts3.4/commands/ListDomainsForPackageCommand.d.ts +2 -4
  32. package/dist-types/ts3.4/models/models_0.d.ts +5 -4
  33. package/dist-types/ts3.4/models/models_1.d.ts +4 -0
  34. package/package.json +11 -11
@@ -1,13 +1,32 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { ActionSeverity, ActionStatus, ActionType, AdvancedSecurityOptionsInput, AIMLOptionsInput, AppConfig, AuthorizedPrincipal, AutoTuneOptions, AWSServicePrincipal, ChangeProgressDetails, ClusterConfig, CognitoOptions, DataSource, DataSourceStatus, DataSourceType, DirectQueryDataSourceType, DomainConfig, DomainEndpointOptions, DomainPackageDetails, DryRunProgressStatus, DryRunResults, EBSOptions, EncryptionAtRestOptions, IamIdentityCenterOptions, IdentityCenterOptionsInput, InboundConnection, IPAddressType, LogPublishingOption, LogType, MaintenanceType, NodeToNodeEncryptionOptions, OffPeakWindowOptions, OpenSearchPartitionInstanceType, PackageConfiguration, PackageDetails, PackageEncryptionOptions, PackageSource, ServiceSoftwareOptions, SnapshotOptions, SoftwareUpdateOptions, Tag, VpcEndpoint, VpcEndpointSummary, VPCOptions } from "./models_0";
3
3
  import { OpenSearchServiceException as __BaseException } from "./OpenSearchServiceException";
4
+ /**
5
+ * <p>Container for the response parameters to the <code>ListDomainsForPackage</code>
6
+ * operation.</p>
7
+ * @public
8
+ */
9
+ export interface ListDomainsForPackageResponse {
10
+ /**
11
+ * <p>Information about all domains associated with a package.</p>
12
+ * @public
13
+ */
14
+ DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
15
+ /**
16
+ * <p>When <code>nextToken</code> is returned, there are more results available. The value of
17
+ * <code>nextToken</code> is a unique pagination token for each page. Send the request again using
18
+ * the returned token to retrieve the next page.</p>
19
+ * @public
20
+ */
21
+ NextToken?: string | undefined;
22
+ }
4
23
  /**
5
24
  * @public
6
25
  */
7
26
  export interface ListInstanceTypeDetailsRequest {
8
27
  /**
9
- * <p>The version of OpenSearch or Elasticsearch, in the format Elasticsearch_X.Y or OpenSearch_X.Y.
10
- * Defaults to the latest version of OpenSearch.</p>
28
+ * <p>The version of OpenSearch or Elasticsearch, in the format Elasticsearch_X.Y or
29
+ * OpenSearch_X.Y. Defaults to the latest version of OpenSearch.</p>
11
30
  * @public
12
31
  */
13
32
  EngineVersion: string | undefined;
@@ -101,14 +120,15 @@ export interface ListInstanceTypeDetailsResponse {
101
120
  InstanceTypeDetails?: InstanceTypeDetails[] | undefined;
102
121
  /**
103
122
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
104
- * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
105
- * returned token to retrieve the next page.</p>
123
+ * <code>nextToken</code> is a unique pagination token for each page. Send the request again using
124
+ * the returned token to retrieve the next page.</p>
106
125
  * @public
107
126
  */
108
127
  NextToken?: string | undefined;
109
128
  }
110
129
  /**
111
- * <p>Container for the request parameters to the <code>ListPackagesForDomain</code> operation.</p>
130
+ * <p>Container for the request parameters to the <code>ListPackagesForDomain</code>
131
+ * operation.</p>
112
132
  * @public
113
133
  */
114
134
  export interface ListPackagesForDomainRequest {
@@ -132,7 +152,8 @@ export interface ListPackagesForDomainRequest {
132
152
  NextToken?: string | undefined;
133
153
  }
134
154
  /**
135
- * <p>Container for the response parameters to the <code>ListPackagesForDomain</code> operation.</p>
155
+ * <p>Container for the response parameters to the <code>ListPackagesForDomain</code>
156
+ * operation.</p>
136
157
  * @public
137
158
  */
138
159
  export interface ListPackagesForDomainResponse {
@@ -143,8 +164,8 @@ export interface ListPackagesForDomainResponse {
143
164
  DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
144
165
  /**
145
166
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
146
- * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
147
- * returned token to retrieve the next page.</p>
167
+ * <code>nextToken</code> is a unique pagination token for each page. Send the request again using
168
+ * the returned token to retrieve the next page.</p>
148
169
  * @public
149
170
  */
150
171
  NextToken?: string | undefined;
@@ -160,14 +181,14 @@ export interface ListScheduledActionsRequest {
160
181
  DomainName: string | undefined;
161
182
  /**
162
183
  * <p>An optional parameter that specifies the maximum number of results to return. You can use
163
- * <code>nextToken</code> to get the next page of results.</p>
184
+ * <code>nextToken</code> to get the next page of results.</p>
164
185
  * @public
165
186
  */
166
187
  MaxResults?: number | undefined;
167
188
  /**
168
- * <p>If your initial <code>ListScheduledActions</code> operation returns a <code>nextToken</code>, you
169
- * can include the returned <code>nextToken</code> in subsequent <code>ListScheduledActions</code>
170
- * operations, which returns results in the next page.</p>
189
+ * <p>If your initial <code>ListScheduledActions</code> operation returns a
190
+ * <code>nextToken</code>, you can include the returned <code>nextToken</code> in subsequent
191
+ * <code>ListScheduledActions</code> operations, which returns results in the next page.</p>
171
192
  * @public
172
193
  */
173
194
  NextToken?: string | undefined;
@@ -218,7 +239,8 @@ export interface ScheduledAction {
218
239
  */
219
240
  Description?: string | undefined;
220
241
  /**
221
- * <p>Whether the action was scheduled manually (<code>CUSTOMER</code>, or by OpenSearch Service automatically (<code>SYSTEM</code>).</p>
242
+ * <p>Whether the action was scheduled manually (<code>CUSTOMER</code>, or by OpenSearch Service
243
+ * automatically (<code>SYSTEM</code>).</p>
222
244
  * @public
223
245
  */
224
246
  ScheduledBy?: ScheduledBy | undefined;
@@ -249,8 +271,8 @@ export interface ListScheduledActionsResponse {
249
271
  ScheduledActions?: ScheduledAction[] | undefined;
250
272
  /**
251
273
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
252
- * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
253
- * returned token to retrieve the next page.</p>
274
+ * <code>nextToken</code> is a unique pagination token for each page. Send the request again using
275
+ * the returned token to retrieve the next page.</p>
254
276
  * @public
255
277
  */
256
278
  NextToken?: string | undefined;
@@ -312,8 +334,8 @@ export interface ListVersionsResponse {
312
334
  Versions?: string[] | undefined;
313
335
  /**
314
336
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
315
- * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
316
- * returned token to retrieve the next page.</p>
337
+ * <code>nextToken</code> is a unique pagination token for each page. Send the request again using
338
+ * the returned token to retrieve the next page.</p>
317
339
  * @public
318
340
  */
319
341
  NextToken?: string | undefined;
@@ -347,8 +369,8 @@ export interface ListVpcEndpointAccessResponse {
347
369
  AuthorizedPrincipalList: AuthorizedPrincipal[] | undefined;
348
370
  /**
349
371
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
350
- * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
351
- * returned token to retrieve the next page.</p>
372
+ * <code>nextToken</code> is a unique pagination token for each page. Send the request again using
373
+ * the returned token to retrieve the next page.</p>
352
374
  * @public
353
375
  */
354
376
  NextToken: string | undefined;
@@ -376,8 +398,8 @@ export interface ListVpcEndpointsResponse {
376
398
  VpcEndpointSummaryList: VpcEndpointSummary[] | undefined;
377
399
  /**
378
400
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
379
- * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
380
- * returned token to retrieve the next page.</p>
401
+ * <code>nextToken</code> is a unique pagination token for each page. Send the request again using
402
+ * the returned token to retrieve the next page.</p>
381
403
  * @public
382
404
  */
383
405
  NextToken: string | undefined;
@@ -410,8 +432,8 @@ export interface ListVpcEndpointsForDomainResponse {
410
432
  VpcEndpointSummaryList: VpcEndpointSummary[] | undefined;
411
433
  /**
412
434
  * <p>When <code>nextToken</code> is returned, there are more results available. The value of
413
- * <code>nextToken</code> is a unique pagination token for each page. Send the request again using the
414
- * returned token to retrieve the next page.</p>
435
+ * <code>nextToken</code> is a unique pagination token for each page. Send the request again using
436
+ * the returned token to retrieve the next page.</p>
415
437
  * @public
416
438
  */
417
439
  NextToken: string | undefined;
@@ -455,7 +477,8 @@ export interface PurchaseReservedInstanceOfferingResponse {
455
477
  ReservationName?: string | undefined;
456
478
  }
457
479
  /**
458
- * <p>Container for the request parameters to the <code>RejectInboundConnection</code> operation.</p>
480
+ * <p>Container for the request parameters to the <code>RejectInboundConnection</code>
481
+ * operation.</p>
459
482
  * @public
460
483
  */
461
484
  export interface RejectInboundConnectionRequest {
@@ -519,8 +542,7 @@ export interface RevokeVpcEndpointAccessRequest {
519
542
  export interface RevokeVpcEndpointAccessResponse {
520
543
  }
521
544
  /**
522
- * <p>Container for the parameters to the <code>StartDomainMaintenance</code>
523
- * operation.</p>
545
+ * <p>Container for the parameters to the <code>StartDomainMaintenance</code> operation.</p>
524
546
  * @public
525
547
  */
526
548
  export interface StartDomainMaintenanceRequest {
@@ -541,7 +563,8 @@ export interface StartDomainMaintenanceRequest {
541
563
  NodeId?: string | undefined;
542
564
  }
543
565
  /**
544
- * <p>The result of a <code>StartDomainMaintenance</code> request that information about the requested action. </p>
566
+ * <p>The result of a <code>StartDomainMaintenance</code> request that information about the
567
+ * requested action. </p>
545
568
  * @public
546
569
  */
547
570
  export interface StartDomainMaintenanceResponse {
@@ -654,9 +677,8 @@ export interface UpdateApplicationResponse {
654
677
  */
655
678
  name?: string | undefined;
656
679
  /**
657
- * <p>The Amazon Resource Name (ARN) of the domain. See <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html">Identifiers for IAM Entities
658
- * </a> in <i>Using Amazon Web Services Identity and Access Management</i> for more information.
659
- * </p>
680
+ * <p>The Amazon Resource Name (ARN) of the domain. See <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/index.html">Identifiers for IAM Entities </a> in <i>Using
681
+ * Amazon Web Services Identity and Access Management</i> for more information. </p>
660
682
  * @public
661
683
  */
662
684
  arn?: string | undefined;
@@ -687,8 +709,7 @@ export interface UpdateApplicationResponse {
687
709
  lastUpdatedAt?: Date | undefined;
688
710
  }
689
711
  /**
690
- * <p>Container for the parameters to the <code>UpdateDataSource</code>
691
- * operation.</p>
712
+ * <p>Container for the parameters to the <code>UpdateDataSource</code> operation.</p>
692
713
  * @public
693
714
  */
694
715
  export interface UpdateDataSourceRequest {
@@ -734,34 +755,26 @@ export interface UpdateDataSourceResponse {
734
755
  */
735
756
  export interface UpdateDirectQueryDataSourceRequest {
736
757
  /**
737
- * <p>
738
- * A unique, user-defined label to identify the data
739
- * source within your OpenSearch Service environment.
740
- * </p>
758
+ * <p> A unique, user-defined label to identify the data source within your OpenSearch Service
759
+ * environment. </p>
741
760
  * @public
742
761
  */
743
762
  DataSourceName: string | undefined;
744
763
  /**
745
- * <p>
746
- * The supported Amazon Web Services service that you want to use as the source for
747
- * direct queries in OpenSearch Service.
748
- * </p>
764
+ * <p> The supported Amazon Web Services service that you want to use as the source for direct
765
+ * queries in OpenSearch Service. </p>
749
766
  * @public
750
767
  */
751
768
  DataSourceType: DirectQueryDataSourceType | undefined;
752
769
  /**
753
- * <p>
754
- * An optional text field for providing additional context and
755
- * details about the data source.
770
+ * <p> An optional text field for providing additional context and details about the data source.
756
771
  * </p>
757
772
  * @public
758
773
  */
759
774
  Description?: string | undefined;
760
775
  /**
761
- * <p>
762
- * A list of Amazon Resource Names (ARNs) for the OpenSearch
763
- * collections that are associated with the direct query data source.
764
- * </p>
776
+ * <p> A list of Amazon Resource Names (ARNs) for the OpenSearch collections that are associated
777
+ * with the direct query data source. </p>
765
778
  * @public
766
779
  */
767
780
  OpenSearchArns: string[] | undefined;
@@ -771,9 +784,7 @@ export interface UpdateDirectQueryDataSourceRequest {
771
784
  */
772
785
  export interface UpdateDirectQueryDataSourceResponse {
773
786
  /**
774
- * <p>
775
- * The unique, system-generated identifier that represents the data source.
776
- * </p>
787
+ * <p> The unique, system-generated identifier that represents the data source. </p>
777
788
  * @public
778
789
  */
779
790
  DataSourceArn?: string | undefined;
@@ -812,8 +823,8 @@ export interface UpdateDomainConfigRequest {
812
823
  */
813
824
  EBSOptions?: EBSOptions | undefined;
814
825
  /**
815
- * <p>Option to set the time, in UTC format, for the daily automated snapshot. Default value is <code>0</code> hours.
816
- * </p>
826
+ * <p>Option to set the time, in UTC format, for the daily automated snapshot. Default value is
827
+ * <code>0</code> hours. </p>
817
828
  * @public
818
829
  */
819
830
  SnapshotOptions?: SnapshotOptions | undefined;
@@ -852,7 +863,7 @@ export interface UpdateDomainConfigRequest {
852
863
  * <code>"indices.query.bool.max_clause_count": "1024"</code> - Note the use of a string
853
864
  * rather than a boolean. Specifies the maximum number of clauses allowed in a Lucene boolean
854
865
  * query. Default is 1,024. Queries with more than the permitted number of clauses result in a
855
- * <code>TooManyClauses</code> error.</p>
866
+ * <code>TooManyClauses</code> error.</p>
856
867
  * </li>
857
868
  * </ul>
858
869
  * <p>For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/createupdatedomains.html#createdomain-configure-advanced-options">Advanced cluster parameters</a>.</p>
@@ -865,10 +876,9 @@ export interface UpdateDomainConfigRequest {
865
876
  */
866
877
  AccessPolicies?: string | undefined;
867
878
  /**
868
- * <p>Specify either dual stack or IPv4 as your IP address type. Dual stack allows you to share domain resources across
869
- * IPv4 and IPv6 address types, and is the recommended option.
870
- * If your IP address type is currently set to dual stack, you can't change it.
871
- * </p>
879
+ * <p>Specify either dual stack or IPv4 as your IP address type. Dual stack allows you to share
880
+ * domain resources across IPv4 and IPv6 address types, and is the recommended option. If your IP
881
+ * address type is currently set to dual stack, you can't change it. </p>
872
882
  * @public
873
883
  */
874
884
  IPAddressType?: IPAddressType | undefined;
@@ -920,8 +930,8 @@ export interface UpdateDomainConfigRequest {
920
930
  * <ul>
921
931
  * <li>
922
932
  * <p>
923
- * <code>Basic</code> only returns the type of deployment (blue/green or dynamic) that the update
924
- * will cause.</p>
933
+ * <code>Basic</code> only returns the type of deployment (blue/green or dynamic) that the
934
+ * update will cause.</p>
925
935
  * </li>
926
936
  * <li>
927
937
  * <p>
@@ -1104,7 +1114,8 @@ export interface UpdateScheduledActionRequest {
1104
1114
  ActionID: string | undefined;
1105
1115
  /**
1106
1116
  * <p>The type of action to reschedule. Can be one of <code>SERVICE_SOFTWARE_UPDATE</code>,
1107
- * <code>JVM_HEAP_SIZE_TUNING</code>, or <code>JVM_YOUNG_GEN_TUNING</code>. To retrieve this value, send a <a href="https://docs.aws.amazon.com/opensearch-service/latest/APIReference/API_ListScheduledActions.html">ListScheduledActions</a> request.</p>
1117
+ * <code>JVM_HEAP_SIZE_TUNING</code>, or <code>JVM_YOUNG_GEN_TUNING</code>. To retrieve this value,
1118
+ * send a <a href="https://docs.aws.amazon.com/opensearch-service/latest/APIReference/API_ListScheduledActions.html">ListScheduledActions</a> request.</p>
1108
1119
  * @public
1109
1120
  */
1110
1121
  ActionType: ActionType | undefined;
@@ -1,9 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ListDomainsForPackageRequest,
5
- ListDomainsForPackageResponse,
6
- } from "../models/models_0";
3
+ import { ListDomainsForPackageRequest } from "../models/models_0";
4
+ import { ListDomainsForPackageResponse } from "../models/models_1";
7
5
  import {
8
6
  OpenSearchClientResolvedConfig,
9
7
  ServiceInputTypes,
@@ -289,10 +289,14 @@ export type NaturalLanguageQueryGenerationDesiredState =
289
289
  export interface NaturalLanguageQueryGenerationOptionsInput {
290
290
  DesiredState?: NaturalLanguageQueryGenerationDesiredState | undefined;
291
291
  }
292
+ export interface S3VectorsEngine {
293
+ Enabled?: boolean | undefined;
294
+ }
292
295
  export interface AIMLOptionsInput {
293
296
  NaturalLanguageQueryGenerationOptions?:
294
297
  | NaturalLanguageQueryGenerationOptionsInput
295
298
  | undefined;
299
+ S3VectorsEngine?: S3VectorsEngine | undefined;
296
300
  }
297
301
  export declare const NaturalLanguageQueryGenerationCurrentState: {
298
302
  readonly DisableComplete: "DISABLE_COMPLETE";
@@ -313,6 +317,7 @@ export interface AIMLOptionsOutput {
313
317
  NaturalLanguageQueryGenerationOptions?:
314
318
  | NaturalLanguageQueryGenerationOptionsOutput
315
319
  | undefined;
320
+ S3VectorsEngine?: S3VectorsEngine | undefined;
316
321
  }
317
322
  export interface AIMLOptionsStatus {
318
323
  Options?: AIMLOptionsOutput | undefined;
@@ -1826,10 +1831,6 @@ export interface ListDomainsForPackageRequest {
1826
1831
  MaxResults?: number | undefined;
1827
1832
  NextToken?: string | undefined;
1828
1833
  }
1829
- export interface ListDomainsForPackageResponse {
1830
- DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
1831
- NextToken?: string | undefined;
1832
- }
1833
1834
  export declare const MasterUserOptionsFilterSensitiveLog: (
1834
1835
  obj: MasterUserOptions
1835
1836
  ) => any;
@@ -46,6 +46,10 @@ import {
46
46
  VPCOptions,
47
47
  } from "./models_0";
48
48
  import { OpenSearchServiceException as __BaseException } from "./OpenSearchServiceException";
49
+ export interface ListDomainsForPackageResponse {
50
+ DomainPackageDetailsList?: DomainPackageDetails[] | undefined;
51
+ NextToken?: string | undefined;
52
+ }
49
53
  export interface ListInstanceTypeDetailsRequest {
50
54
  EngineVersion: string | undefined;
51
55
  DomainName?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-opensearch",
3
3
  "description": "AWS SDK for JavaScript Opensearch Client for Node.js, Browser and React Native",
4
- "version": "3.844.0",
4
+ "version": "3.846.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-opensearch",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.844.0",
24
- "@aws-sdk/credential-provider-node": "3.844.0",
23
+ "@aws-sdk/core": "3.846.0",
24
+ "@aws-sdk/credential-provider-node": "3.846.0",
25
25
  "@aws-sdk/middleware-host-header": "3.840.0",
26
26
  "@aws-sdk/middleware-logger": "3.840.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.840.0",
28
- "@aws-sdk/middleware-user-agent": "3.844.0",
28
+ "@aws-sdk/middleware-user-agent": "3.846.0",
29
29
  "@aws-sdk/region-config-resolver": "3.840.0",
30
30
  "@aws-sdk/types": "3.840.0",
31
- "@aws-sdk/util-endpoints": "3.844.0",
31
+ "@aws-sdk/util-endpoints": "3.845.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.840.0",
33
- "@aws-sdk/util-user-agent-node": "3.844.0",
33
+ "@aws-sdk/util-user-agent-node": "3.846.0",
34
34
  "@smithy/config-resolver": "^4.1.4",
35
35
  "@smithy/core": "^3.7.0",
36
36
  "@smithy/fetch-http-handler": "^5.1.0",
37
37
  "@smithy/hash-node": "^4.0.4",
38
38
  "@smithy/invalid-dependency": "^4.0.4",
39
39
  "@smithy/middleware-content-length": "^4.0.4",
40
- "@smithy/middleware-endpoint": "^4.1.14",
41
- "@smithy/middleware-retry": "^4.1.15",
40
+ "@smithy/middleware-endpoint": "^4.1.15",
41
+ "@smithy/middleware-retry": "^4.1.16",
42
42
  "@smithy/middleware-serde": "^4.0.8",
43
43
  "@smithy/middleware-stack": "^4.0.4",
44
44
  "@smithy/node-config-provider": "^4.1.3",
45
45
  "@smithy/node-http-handler": "^4.1.0",
46
46
  "@smithy/protocol-http": "^5.1.2",
47
- "@smithy/smithy-client": "^4.4.6",
47
+ "@smithy/smithy-client": "^4.4.7",
48
48
  "@smithy/types": "^4.3.1",
49
49
  "@smithy/url-parser": "^4.0.4",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.22",
54
- "@smithy/util-defaults-mode-node": "^4.0.22",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.23",
54
+ "@smithy/util-defaults-mode-node": "^4.0.23",
55
55
  "@smithy/util-endpoints": "^3.0.6",
56
56
  "@smithy/util-middleware": "^4.0.4",
57
57
  "@smithy/util-retry": "^4.0.6",