@aws-sdk/client-glue 3.682.0 → 3.686.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 (62) hide show
  1. package/README.md +49 -1
  2. package/dist-cjs/index.js +298 -33
  3. package/dist-es/Glue.js +12 -0
  4. package/dist-es/commands/CreateColumnStatisticsTaskSettingsCommand.js +22 -0
  5. package/dist-es/commands/DeleteColumnStatisticsTaskSettingsCommand.js +22 -0
  6. package/dist-es/commands/GetColumnStatisticsTaskSettingsCommand.js +22 -0
  7. package/dist-es/commands/StartColumnStatisticsTaskRunScheduleCommand.js +22 -0
  8. package/dist-es/commands/StopColumnStatisticsTaskRunScheduleCommand.js +22 -0
  9. package/dist-es/commands/UpdateColumnStatisticsTaskSettingsCommand.js +22 -0
  10. package/dist-es/commands/index.js +6 -0
  11. package/dist-es/models/models_1.js +17 -9
  12. package/dist-es/models/models_2.js +9 -13
  13. package/dist-es/protocols/Aws_json1_1.js +162 -5
  14. package/dist-types/Glue.d.ts +42 -0
  15. package/dist-types/GlueClient.d.ts +8 -2
  16. package/dist-types/commands/CreateColumnStatisticsTaskSettingsCommand.d.ts +102 -0
  17. package/dist-types/commands/DeleteColumnStatisticsTaskSettingsCommand.d.ts +79 -0
  18. package/dist-types/commands/GetColumnStatisticsTaskRunCommand.d.ts +1 -0
  19. package/dist-types/commands/GetColumnStatisticsTaskRunsCommand.d.ts +1 -0
  20. package/dist-types/commands/GetColumnStatisticsTaskSettingsCommand.d.ts +95 -0
  21. package/dist-types/commands/GetMLTaskRunCommand.d.ts +2 -1
  22. package/dist-types/commands/GetMLTaskRunsCommand.d.ts +1 -1
  23. package/dist-types/commands/StartColumnStatisticsTaskRunScheduleCommand.d.ts +82 -0
  24. package/dist-types/commands/StopColumnStatisticsTaskRunScheduleCommand.d.ts +79 -0
  25. package/dist-types/commands/UpdateColumnStatisticsTaskSettingsCommand.d.ts +93 -0
  26. package/dist-types/commands/UpdateDevEndpointCommand.d.ts +1 -1
  27. package/dist-types/commands/UpdateJobCommand.d.ts +1 -2
  28. package/dist-types/commands/UpdateJobFromSourceControlCommand.d.ts +1 -1
  29. package/dist-types/commands/UpdateMLTransformCommand.d.ts +1 -1
  30. package/dist-types/commands/UpdatePartitionCommand.d.ts +1 -1
  31. package/dist-types/commands/UpdateRegistryCommand.d.ts +1 -1
  32. package/dist-types/commands/UpdateSchemaCommand.d.ts +1 -1
  33. package/dist-types/commands/UpdateSourceControlFromJobCommand.d.ts +1 -2
  34. package/dist-types/commands/index.d.ts +6 -0
  35. package/dist-types/models/models_1.d.ts +181 -259
  36. package/dist-types/models/models_2.d.ts +374 -444
  37. package/dist-types/models/models_3.d.ts +404 -3
  38. package/dist-types/protocols/Aws_json1_1.d.ts +54 -0
  39. package/dist-types/ts3.4/Glue.d.ts +132 -0
  40. package/dist-types/ts3.4/GlueClient.d.ts +36 -0
  41. package/dist-types/ts3.4/commands/CreateColumnStatisticsTaskSettingsCommand.d.ts +51 -0
  42. package/dist-types/ts3.4/commands/DeleteColumnStatisticsTaskSettingsCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/GetColumnStatisticsTaskSettingsCommand.d.ts +51 -0
  44. package/dist-types/ts3.4/commands/GetMLTaskRunCommand.d.ts +2 -1
  45. package/dist-types/ts3.4/commands/GetMLTaskRunsCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/StartColumnStatisticsTaskRunScheduleCommand.d.ts +51 -0
  47. package/dist-types/ts3.4/commands/StopColumnStatisticsTaskRunScheduleCommand.d.ts +51 -0
  48. package/dist-types/ts3.4/commands/UpdateColumnStatisticsTaskSettingsCommand.d.ts +51 -0
  49. package/dist-types/ts3.4/commands/UpdateDevEndpointCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +1 -2
  51. package/dist-types/ts3.4/commands/UpdateJobFromSourceControlCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/UpdateMLTransformCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/UpdatePartitionCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/UpdateSchemaCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/UpdateSourceControlFromJobCommand.d.ts +4 -2
  57. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  58. package/dist-types/ts3.4/models/models_1.d.ts +53 -65
  59. package/dist-types/ts3.4/models/models_2.d.ts +91 -97
  60. package/dist-types/ts3.4/models/models_3.d.ts +91 -0
  61. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +72 -0
  62. package/package.json +35 -35
@@ -46,6 +46,7 @@ import {
46
46
  NotificationProperty,
47
47
  OracleSQLCatalogSource,
48
48
  OracleSQLCatalogTarget,
49
+ PartitionInput,
49
50
  PIIDetection,
50
51
  PostgreSQLCatalogSource,
51
52
  PostgreSQLCatalogTarget,
@@ -70,11 +71,14 @@ import {
70
71
  S3HudiSource,
71
72
  S3JsonSource,
72
73
  S3ParquetSource,
74
+ SchemaId,
73
75
  SelectFields,
74
76
  SelectFromCollection,
75
77
  SnowflakeSource,
76
78
  SnowflakeTarget,
79
+ SourceControlAuthStrategy,
77
80
  SourceControlDetails,
81
+ SourceControlProvider,
78
82
  SparkConnectorSource,
79
83
  SparkConnectorTarget,
80
84
  SparkSQL,
@@ -88,20 +92,107 @@ import {
88
92
  WorkerType,
89
93
  } from "./models_0";
90
94
  import {
95
+ Compatibility,
91
96
  Permission,
92
97
  ProfileConfiguration,
98
+ RegistryId,
93
99
  TableIdentifier,
94
100
  TableInput,
101
+ TransformParameters,
95
102
  UserDefinedFunctionInput,
96
103
  } from "./models_1";
97
104
  import {
98
105
  ColumnRowFilter,
106
+ DevEndpointCustomLibraries,
99
107
  FederatedTable,
100
108
  ResourceAction,
101
109
  ResourceState,
110
+ SchemaVersionNumber,
102
111
  ViewDefinition,
103
112
  ViewValidation,
104
113
  } from "./models_2";
114
+ export interface UpdateDevEndpointRequest {
115
+ EndpointName: string | undefined;
116
+ PublicKey?: string;
117
+ AddPublicKeys?: string[];
118
+ DeletePublicKeys?: string[];
119
+ CustomLibraries?: DevEndpointCustomLibraries;
120
+ UpdateEtlLibraries?: boolean;
121
+ DeleteArguments?: string[];
122
+ AddArguments?: Record<string, string>;
123
+ }
124
+ export interface UpdateDevEndpointResponse {}
125
+ export interface UpdateJobResponse {
126
+ JobName?: string;
127
+ }
128
+ export interface UpdateJobFromSourceControlRequest {
129
+ JobName?: string;
130
+ Provider?: SourceControlProvider;
131
+ RepositoryName?: string;
132
+ RepositoryOwner?: string;
133
+ BranchName?: string;
134
+ Folder?: string;
135
+ CommitId?: string;
136
+ AuthStrategy?: SourceControlAuthStrategy;
137
+ AuthToken?: string;
138
+ }
139
+ export interface UpdateJobFromSourceControlResponse {
140
+ JobName?: string;
141
+ }
142
+ export interface UpdateMLTransformRequest {
143
+ TransformId: string | undefined;
144
+ Name?: string;
145
+ Description?: string;
146
+ Parameters?: TransformParameters;
147
+ Role?: string;
148
+ GlueVersion?: string;
149
+ MaxCapacity?: number;
150
+ WorkerType?: WorkerType;
151
+ NumberOfWorkers?: number;
152
+ Timeout?: number;
153
+ MaxRetries?: number;
154
+ }
155
+ export interface UpdateMLTransformResponse {
156
+ TransformId?: string;
157
+ }
158
+ export interface UpdatePartitionRequest {
159
+ CatalogId?: string;
160
+ DatabaseName: string | undefined;
161
+ TableName: string | undefined;
162
+ PartitionValueList: string[] | undefined;
163
+ PartitionInput: PartitionInput | undefined;
164
+ }
165
+ export interface UpdatePartitionResponse {}
166
+ export interface UpdateRegistryInput {
167
+ RegistryId: RegistryId | undefined;
168
+ Description: string | undefined;
169
+ }
170
+ export interface UpdateRegistryResponse {
171
+ RegistryName?: string;
172
+ RegistryArn?: string;
173
+ }
174
+ export interface UpdateSchemaInput {
175
+ SchemaId: SchemaId | undefined;
176
+ SchemaVersionNumber?: SchemaVersionNumber;
177
+ Compatibility?: Compatibility;
178
+ Description?: string;
179
+ }
180
+ export interface UpdateSchemaResponse {
181
+ SchemaArn?: string;
182
+ SchemaName?: string;
183
+ RegistryName?: string;
184
+ }
185
+ export interface UpdateSourceControlFromJobRequest {
186
+ JobName?: string;
187
+ Provider?: SourceControlProvider;
188
+ RepositoryName?: string;
189
+ RepositoryOwner?: string;
190
+ BranchName?: string;
191
+ Folder?: string;
192
+ CommitId?: string;
193
+ AuthStrategy?: SourceControlAuthStrategy;
194
+ AuthToken?: string;
195
+ }
105
196
  export interface UpdateSourceControlFromJobResponse {
106
197
  JobName?: string;
107
198
  }
@@ -103,6 +103,10 @@ import {
103
103
  CreateClassifierCommandInput,
104
104
  CreateClassifierCommandOutput,
105
105
  } from "../commands/CreateClassifierCommand";
106
+ import {
107
+ CreateColumnStatisticsTaskSettingsCommandInput,
108
+ CreateColumnStatisticsTaskSettingsCommandOutput,
109
+ } from "../commands/CreateColumnStatisticsTaskSettingsCommand";
106
110
  import {
107
111
  CreateConnectionCommandInput,
108
112
  CreateConnectionCommandOutput,
@@ -203,6 +207,10 @@ import {
203
207
  DeleteColumnStatisticsForTableCommandInput,
204
208
  DeleteColumnStatisticsForTableCommandOutput,
205
209
  } from "../commands/DeleteColumnStatisticsForTableCommand";
210
+ import {
211
+ DeleteColumnStatisticsTaskSettingsCommandInput,
212
+ DeleteColumnStatisticsTaskSettingsCommandOutput,
213
+ } from "../commands/DeleteColumnStatisticsTaskSettingsCommand";
206
214
  import {
207
215
  DeleteConnectionCommandInput,
208
216
  DeleteConnectionCommandOutput,
@@ -335,6 +343,10 @@ import {
335
343
  GetColumnStatisticsTaskRunsCommandInput,
336
344
  GetColumnStatisticsTaskRunsCommandOutput,
337
345
  } from "../commands/GetColumnStatisticsTaskRunsCommand";
346
+ import {
347
+ GetColumnStatisticsTaskSettingsCommandInput,
348
+ GetColumnStatisticsTaskSettingsCommandOutput,
349
+ } from "../commands/GetColumnStatisticsTaskSettingsCommand";
338
350
  import {
339
351
  GetConnectionCommandInput,
340
352
  GetConnectionCommandOutput,
@@ -731,6 +743,10 @@ import {
731
743
  StartColumnStatisticsTaskRunCommandInput,
732
744
  StartColumnStatisticsTaskRunCommandOutput,
733
745
  } from "../commands/StartColumnStatisticsTaskRunCommand";
746
+ import {
747
+ StartColumnStatisticsTaskRunScheduleCommandInput,
748
+ StartColumnStatisticsTaskRunScheduleCommandOutput,
749
+ } from "../commands/StartColumnStatisticsTaskRunScheduleCommand";
734
750
  import {
735
751
  StartCrawlerCommandInput,
736
752
  StartCrawlerCommandOutput,
@@ -779,6 +795,10 @@ import {
779
795
  StopColumnStatisticsTaskRunCommandInput,
780
796
  StopColumnStatisticsTaskRunCommandOutput,
781
797
  } from "../commands/StopColumnStatisticsTaskRunCommand";
798
+ import {
799
+ StopColumnStatisticsTaskRunScheduleCommandInput,
800
+ StopColumnStatisticsTaskRunScheduleCommandOutput,
801
+ } from "../commands/StopColumnStatisticsTaskRunScheduleCommand";
782
802
  import {
783
803
  StopCrawlerCommandInput,
784
804
  StopCrawlerCommandOutput,
@@ -827,6 +847,10 @@ import {
827
847
  UpdateColumnStatisticsForTableCommandInput,
828
848
  UpdateColumnStatisticsForTableCommandOutput,
829
849
  } from "../commands/UpdateColumnStatisticsForTableCommand";
850
+ import {
851
+ UpdateColumnStatisticsTaskSettingsCommandInput,
852
+ UpdateColumnStatisticsTaskSettingsCommandOutput,
853
+ } from "../commands/UpdateColumnStatisticsTaskSettingsCommand";
830
854
  import {
831
855
  UpdateConnectionCommandInput,
832
856
  UpdateConnectionCommandOutput,
@@ -1003,6 +1027,10 @@ export declare const se_CreateClassifierCommand: (
1003
1027
  input: CreateClassifierCommandInput,
1004
1028
  context: __SerdeContext
1005
1029
  ) => Promise<__HttpRequest>;
1030
+ export declare const se_CreateColumnStatisticsTaskSettingsCommand: (
1031
+ input: CreateColumnStatisticsTaskSettingsCommandInput,
1032
+ context: __SerdeContext
1033
+ ) => Promise<__HttpRequest>;
1006
1034
  export declare const se_CreateConnectionCommand: (
1007
1035
  input: CreateConnectionCommandInput,
1008
1036
  context: __SerdeContext
@@ -1103,6 +1131,10 @@ export declare const se_DeleteColumnStatisticsForTableCommand: (
1103
1131
  input: DeleteColumnStatisticsForTableCommandInput,
1104
1132
  context: __SerdeContext
1105
1133
  ) => Promise<__HttpRequest>;
1134
+ export declare const se_DeleteColumnStatisticsTaskSettingsCommand: (
1135
+ input: DeleteColumnStatisticsTaskSettingsCommandInput,
1136
+ context: __SerdeContext
1137
+ ) => Promise<__HttpRequest>;
1106
1138
  export declare const se_DeleteConnectionCommand: (
1107
1139
  input: DeleteConnectionCommandInput,
1108
1140
  context: __SerdeContext
@@ -1235,6 +1267,10 @@ export declare const se_GetColumnStatisticsTaskRunsCommand: (
1235
1267
  input: GetColumnStatisticsTaskRunsCommandInput,
1236
1268
  context: __SerdeContext
1237
1269
  ) => Promise<__HttpRequest>;
1270
+ export declare const se_GetColumnStatisticsTaskSettingsCommand: (
1271
+ input: GetColumnStatisticsTaskSettingsCommandInput,
1272
+ context: __SerdeContext
1273
+ ) => Promise<__HttpRequest>;
1238
1274
  export declare const se_GetConnectionCommand: (
1239
1275
  input: GetConnectionCommandInput,
1240
1276
  context: __SerdeContext
@@ -1631,6 +1667,10 @@ export declare const se_StartColumnStatisticsTaskRunCommand: (
1631
1667
  input: StartColumnStatisticsTaskRunCommandInput,
1632
1668
  context: __SerdeContext
1633
1669
  ) => Promise<__HttpRequest>;
1670
+ export declare const se_StartColumnStatisticsTaskRunScheduleCommand: (
1671
+ input: StartColumnStatisticsTaskRunScheduleCommandInput,
1672
+ context: __SerdeContext
1673
+ ) => Promise<__HttpRequest>;
1634
1674
  export declare const se_StartCrawlerCommand: (
1635
1675
  input: StartCrawlerCommandInput,
1636
1676
  context: __SerdeContext
@@ -1679,6 +1719,10 @@ export declare const se_StopColumnStatisticsTaskRunCommand: (
1679
1719
  input: StopColumnStatisticsTaskRunCommandInput,
1680
1720
  context: __SerdeContext
1681
1721
  ) => Promise<__HttpRequest>;
1722
+ export declare const se_StopColumnStatisticsTaskRunScheduleCommand: (
1723
+ input: StopColumnStatisticsTaskRunScheduleCommandInput,
1724
+ context: __SerdeContext
1725
+ ) => Promise<__HttpRequest>;
1682
1726
  export declare const se_StopCrawlerCommand: (
1683
1727
  input: StopCrawlerCommandInput,
1684
1728
  context: __SerdeContext
@@ -1727,6 +1771,10 @@ export declare const se_UpdateColumnStatisticsForTableCommand: (
1727
1771
  input: UpdateColumnStatisticsForTableCommandInput,
1728
1772
  context: __SerdeContext
1729
1773
  ) => Promise<__HttpRequest>;
1774
+ export declare const se_UpdateColumnStatisticsTaskSettingsCommand: (
1775
+ input: UpdateColumnStatisticsTaskSettingsCommandInput,
1776
+ context: __SerdeContext
1777
+ ) => Promise<__HttpRequest>;
1730
1778
  export declare const se_UpdateConnectionCommand: (
1731
1779
  input: UpdateConnectionCommandInput,
1732
1780
  context: __SerdeContext
@@ -1903,6 +1951,10 @@ export declare const de_CreateClassifierCommand: (
1903
1951
  output: __HttpResponse,
1904
1952
  context: __SerdeContext
1905
1953
  ) => Promise<CreateClassifierCommandOutput>;
1954
+ export declare const de_CreateColumnStatisticsTaskSettingsCommand: (
1955
+ output: __HttpResponse,
1956
+ context: __SerdeContext
1957
+ ) => Promise<CreateColumnStatisticsTaskSettingsCommandOutput>;
1906
1958
  export declare const de_CreateConnectionCommand: (
1907
1959
  output: __HttpResponse,
1908
1960
  context: __SerdeContext
@@ -2003,6 +2055,10 @@ export declare const de_DeleteColumnStatisticsForTableCommand: (
2003
2055
  output: __HttpResponse,
2004
2056
  context: __SerdeContext
2005
2057
  ) => Promise<DeleteColumnStatisticsForTableCommandOutput>;
2058
+ export declare const de_DeleteColumnStatisticsTaskSettingsCommand: (
2059
+ output: __HttpResponse,
2060
+ context: __SerdeContext
2061
+ ) => Promise<DeleteColumnStatisticsTaskSettingsCommandOutput>;
2006
2062
  export declare const de_DeleteConnectionCommand: (
2007
2063
  output: __HttpResponse,
2008
2064
  context: __SerdeContext
@@ -2135,6 +2191,10 @@ export declare const de_GetColumnStatisticsTaskRunsCommand: (
2135
2191
  output: __HttpResponse,
2136
2192
  context: __SerdeContext
2137
2193
  ) => Promise<GetColumnStatisticsTaskRunsCommandOutput>;
2194
+ export declare const de_GetColumnStatisticsTaskSettingsCommand: (
2195
+ output: __HttpResponse,
2196
+ context: __SerdeContext
2197
+ ) => Promise<GetColumnStatisticsTaskSettingsCommandOutput>;
2138
2198
  export declare const de_GetConnectionCommand: (
2139
2199
  output: __HttpResponse,
2140
2200
  context: __SerdeContext
@@ -2531,6 +2591,10 @@ export declare const de_StartColumnStatisticsTaskRunCommand: (
2531
2591
  output: __HttpResponse,
2532
2592
  context: __SerdeContext
2533
2593
  ) => Promise<StartColumnStatisticsTaskRunCommandOutput>;
2594
+ export declare const de_StartColumnStatisticsTaskRunScheduleCommand: (
2595
+ output: __HttpResponse,
2596
+ context: __SerdeContext
2597
+ ) => Promise<StartColumnStatisticsTaskRunScheduleCommandOutput>;
2534
2598
  export declare const de_StartCrawlerCommand: (
2535
2599
  output: __HttpResponse,
2536
2600
  context: __SerdeContext
@@ -2579,6 +2643,10 @@ export declare const de_StopColumnStatisticsTaskRunCommand: (
2579
2643
  output: __HttpResponse,
2580
2644
  context: __SerdeContext
2581
2645
  ) => Promise<StopColumnStatisticsTaskRunCommandOutput>;
2646
+ export declare const de_StopColumnStatisticsTaskRunScheduleCommand: (
2647
+ output: __HttpResponse,
2648
+ context: __SerdeContext
2649
+ ) => Promise<StopColumnStatisticsTaskRunScheduleCommandOutput>;
2582
2650
  export declare const de_StopCrawlerCommand: (
2583
2651
  output: __HttpResponse,
2584
2652
  context: __SerdeContext
@@ -2627,6 +2695,10 @@ export declare const de_UpdateColumnStatisticsForTableCommand: (
2627
2695
  output: __HttpResponse,
2628
2696
  context: __SerdeContext
2629
2697
  ) => Promise<UpdateColumnStatisticsForTableCommandOutput>;
2698
+ export declare const de_UpdateColumnStatisticsTaskSettingsCommand: (
2699
+ output: __HttpResponse,
2700
+ context: __SerdeContext
2701
+ ) => Promise<UpdateColumnStatisticsTaskSettingsCommandOutput>;
2630
2702
  export declare const de_UpdateConnectionCommand: (
2631
2703
  output: __HttpResponse,
2632
2704
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-glue",
3
3
  "description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
4
- "version": "3.682.0",
4
+ "version": "3.686.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-glue",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.682.0",
24
- "@aws-sdk/client-sts": "3.682.0",
25
- "@aws-sdk/core": "3.679.0",
26
- "@aws-sdk/credential-provider-node": "3.682.0",
27
- "@aws-sdk/middleware-host-header": "3.679.0",
28
- "@aws-sdk/middleware-logger": "3.679.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.679.0",
30
- "@aws-sdk/middleware-user-agent": "3.682.0",
31
- "@aws-sdk/region-config-resolver": "3.679.0",
32
- "@aws-sdk/types": "3.679.0",
33
- "@aws-sdk/util-endpoints": "3.679.0",
34
- "@aws-sdk/util-user-agent-browser": "3.679.0",
35
- "@aws-sdk/util-user-agent-node": "3.682.0",
36
- "@smithy/config-resolver": "^3.0.9",
37
- "@smithy/core": "^2.4.8",
38
- "@smithy/fetch-http-handler": "^3.2.9",
39
- "@smithy/hash-node": "^3.0.7",
40
- "@smithy/invalid-dependency": "^3.0.7",
41
- "@smithy/middleware-content-length": "^3.0.9",
42
- "@smithy/middleware-endpoint": "^3.1.4",
43
- "@smithy/middleware-retry": "^3.0.23",
44
- "@smithy/middleware-serde": "^3.0.7",
45
- "@smithy/middleware-stack": "^3.0.7",
46
- "@smithy/node-config-provider": "^3.1.8",
47
- "@smithy/node-http-handler": "^3.2.4",
48
- "@smithy/protocol-http": "^4.1.4",
49
- "@smithy/smithy-client": "^3.4.0",
50
- "@smithy/types": "^3.5.0",
51
- "@smithy/url-parser": "^3.0.7",
23
+ "@aws-sdk/client-sso-oidc": "3.686.0",
24
+ "@aws-sdk/client-sts": "3.686.0",
25
+ "@aws-sdk/core": "3.686.0",
26
+ "@aws-sdk/credential-provider-node": "3.686.0",
27
+ "@aws-sdk/middleware-host-header": "3.686.0",
28
+ "@aws-sdk/middleware-logger": "3.686.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.686.0",
31
+ "@aws-sdk/region-config-resolver": "3.686.0",
32
+ "@aws-sdk/types": "3.686.0",
33
+ "@aws-sdk/util-endpoints": "3.686.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.686.0",
36
+ "@smithy/config-resolver": "^3.0.10",
37
+ "@smithy/core": "^2.5.1",
38
+ "@smithy/fetch-http-handler": "^4.0.0",
39
+ "@smithy/hash-node": "^3.0.8",
40
+ "@smithy/invalid-dependency": "^3.0.8",
41
+ "@smithy/middleware-content-length": "^3.0.10",
42
+ "@smithy/middleware-endpoint": "^3.2.1",
43
+ "@smithy/middleware-retry": "^3.0.25",
44
+ "@smithy/middleware-serde": "^3.0.8",
45
+ "@smithy/middleware-stack": "^3.0.8",
46
+ "@smithy/node-config-provider": "^3.1.9",
47
+ "@smithy/node-http-handler": "^3.2.5",
48
+ "@smithy/protocol-http": "^4.1.5",
49
+ "@smithy/smithy-client": "^3.4.2",
50
+ "@smithy/types": "^3.6.0",
51
+ "@smithy/url-parser": "^3.0.8",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.23",
56
- "@smithy/util-defaults-mode-node": "^3.0.23",
57
- "@smithy/util-endpoints": "^2.1.3",
58
- "@smithy/util-middleware": "^3.0.7",
59
- "@smithy/util-retry": "^3.0.7",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.25",
56
+ "@smithy/util-defaults-mode-node": "^3.0.25",
57
+ "@smithy/util-endpoints": "^2.1.4",
58
+ "@smithy/util-middleware": "^3.0.8",
59
+ "@smithy/util-retry": "^3.0.8",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },