@aws-sdk/client-data-pipeline 3.933.0 → 3.935.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.
package/dist-cjs/index.js CHANGED
@@ -177,18 +177,6 @@ let TaskNotFoundException$1 = class TaskNotFoundException extends DataPipelineSe
177
177
  Object.setPrototypeOf(this, TaskNotFoundException.prototype);
178
178
  }
179
179
  };
180
- const OperatorType = {
181
- Between: "BETWEEN",
182
- Equal: "EQ",
183
- GreaterThanOrEqual: "GE",
184
- LessThanOrEqual: "LE",
185
- ReferenceEqual: "REF_EQ",
186
- };
187
- const TaskStatus = {
188
- FAILED: "FAILED",
189
- FALSE: "FALSE",
190
- FINISHED: "FINISHED",
191
- };
192
180
 
193
181
  const _AP = "ActivatePipeline";
194
182
  const _API = "ActivatePipelineInput";
@@ -890,6 +878,19 @@ const paginateListPipelines = core.createPaginator(DataPipelineClient, ListPipel
890
878
 
891
879
  const paginateQueryObjects = core.createPaginator(DataPipelineClient, QueryObjectsCommand, "marker", "marker", "limit");
892
880
 
881
+ const OperatorType = {
882
+ Between: "BETWEEN",
883
+ Equal: "EQ",
884
+ GreaterThanOrEqual: "GE",
885
+ LessThanOrEqual: "LE",
886
+ ReferenceEqual: "REF_EQ",
887
+ };
888
+ const TaskStatus = {
889
+ FAILED: "FAILED",
890
+ FALSE: "FALSE",
891
+ FINISHED: "FINISHED",
892
+ };
893
+
893
894
  Object.defineProperty(exports, "$Command", {
894
895
  enumerable: true,
895
896
  get: function () { return smithyClient.Command; }
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./DataPipelineClient";
2
2
  export * from "./DataPipeline";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
- export * from "./models";
5
+ export * from "./models/enums";
6
+ export * from "./models/errors";
6
7
  export { DataPipelineServiceException } from "./models/DataPipelineServiceException";
@@ -0,0 +1,12 @@
1
+ export const OperatorType = {
2
+ Between: "BETWEEN",
3
+ Equal: "EQ",
4
+ GreaterThanOrEqual: "GE",
5
+ LessThanOrEqual: "LE",
6
+ ReferenceEqual: "REF_EQ",
7
+ };
8
+ export const TaskStatus = {
9
+ FAILED: "FAILED",
10
+ FALSE: "FALSE",
11
+ FINISHED: "FINISHED",
12
+ };
@@ -0,0 +1,61 @@
1
+ import { DataPipelineServiceException as __BaseException } from "./DataPipelineServiceException";
2
+ export class InternalServiceError extends __BaseException {
3
+ name = "InternalServiceError";
4
+ $fault = "server";
5
+ constructor(opts) {
6
+ super({
7
+ name: "InternalServiceError",
8
+ $fault: "server",
9
+ ...opts,
10
+ });
11
+ Object.setPrototypeOf(this, InternalServiceError.prototype);
12
+ }
13
+ }
14
+ export class InvalidRequestException extends __BaseException {
15
+ name = "InvalidRequestException";
16
+ $fault = "client";
17
+ constructor(opts) {
18
+ super({
19
+ name: "InvalidRequestException",
20
+ $fault: "client",
21
+ ...opts,
22
+ });
23
+ Object.setPrototypeOf(this, InvalidRequestException.prototype);
24
+ }
25
+ }
26
+ export class PipelineDeletedException extends __BaseException {
27
+ name = "PipelineDeletedException";
28
+ $fault = "client";
29
+ constructor(opts) {
30
+ super({
31
+ name: "PipelineDeletedException",
32
+ $fault: "client",
33
+ ...opts,
34
+ });
35
+ Object.setPrototypeOf(this, PipelineDeletedException.prototype);
36
+ }
37
+ }
38
+ export class PipelineNotFoundException extends __BaseException {
39
+ name = "PipelineNotFoundException";
40
+ $fault = "client";
41
+ constructor(opts) {
42
+ super({
43
+ name: "PipelineNotFoundException",
44
+ $fault: "client",
45
+ ...opts,
46
+ });
47
+ Object.setPrototypeOf(this, PipelineNotFoundException.prototype);
48
+ }
49
+ }
50
+ export class TaskNotFoundException extends __BaseException {
51
+ name = "TaskNotFoundException";
52
+ $fault = "client";
53
+ constructor(opts) {
54
+ super({
55
+ name: "TaskNotFoundException",
56
+ $fault: "client",
57
+ ...opts,
58
+ });
59
+ Object.setPrototypeOf(this, TaskNotFoundException.prototype);
60
+ }
61
+ }
@@ -1,73 +1 @@
1
- import { DataPipelineServiceException as __BaseException } from "./DataPipelineServiceException";
2
- export class InternalServiceError extends __BaseException {
3
- name = "InternalServiceError";
4
- $fault = "server";
5
- constructor(opts) {
6
- super({
7
- name: "InternalServiceError",
8
- $fault: "server",
9
- ...opts,
10
- });
11
- Object.setPrototypeOf(this, InternalServiceError.prototype);
12
- }
13
- }
14
- export class InvalidRequestException extends __BaseException {
15
- name = "InvalidRequestException";
16
- $fault = "client";
17
- constructor(opts) {
18
- super({
19
- name: "InvalidRequestException",
20
- $fault: "client",
21
- ...opts,
22
- });
23
- Object.setPrototypeOf(this, InvalidRequestException.prototype);
24
- }
25
- }
26
- export class PipelineDeletedException extends __BaseException {
27
- name = "PipelineDeletedException";
28
- $fault = "client";
29
- constructor(opts) {
30
- super({
31
- name: "PipelineDeletedException",
32
- $fault: "client",
33
- ...opts,
34
- });
35
- Object.setPrototypeOf(this, PipelineDeletedException.prototype);
36
- }
37
- }
38
- export class PipelineNotFoundException extends __BaseException {
39
- name = "PipelineNotFoundException";
40
- $fault = "client";
41
- constructor(opts) {
42
- super({
43
- name: "PipelineNotFoundException",
44
- $fault: "client",
45
- ...opts,
46
- });
47
- Object.setPrototypeOf(this, PipelineNotFoundException.prototype);
48
- }
49
- }
50
- export class TaskNotFoundException extends __BaseException {
51
- name = "TaskNotFoundException";
52
- $fault = "client";
53
- constructor(opts) {
54
- super({
55
- name: "TaskNotFoundException",
56
- $fault: "client",
57
- ...opts,
58
- });
59
- Object.setPrototypeOf(this, TaskNotFoundException.prototype);
60
- }
61
- }
62
- export const OperatorType = {
63
- Between: "BETWEEN",
64
- Equal: "EQ",
65
- GreaterThanOrEqual: "GE",
66
- LessThanOrEqual: "LE",
67
- ReferenceEqual: "REF_EQ",
68
- };
69
- export const TaskStatus = {
70
- FAILED: "FAILED",
71
- FALSE: "FALSE",
72
- FINISHED: "FINISHED",
73
- };
1
+ export {};
@@ -153,7 +153,7 @@ const _wG = "workerGroup";
153
153
  const n0 = "com.amazonaws.datapipeline";
154
154
  import { TypeRegistry } from "@smithy/core/schema";
155
155
  import { DataPipelineServiceException as __DataPipelineServiceException } from "../models/DataPipelineServiceException";
156
- import { InternalServiceError as __InternalServiceError, InvalidRequestException as __InvalidRequestException, PipelineDeletedException as __PipelineDeletedException, PipelineNotFoundException as __PipelineNotFoundException, TaskNotFoundException as __TaskNotFoundException, } from "../models/index";
156
+ import { InternalServiceError as __InternalServiceError, InvalidRequestException as __InvalidRequestException, PipelineDeletedException as __PipelineDeletedException, PipelineNotFoundException as __PipelineNotFoundException, TaskNotFoundException as __TaskNotFoundException, } from "../models/errors";
157
157
  export var ActivatePipelineInput = [
158
158
  3,
159
159
  n0,
@@ -26,5 +26,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
26
26
  export type { DataPipelineExtensionConfiguration } from "./extensionConfiguration";
27
27
  export * from "./commands";
28
28
  export * from "./pagination";
29
- export * from "./models";
29
+ export * from "./models/enums";
30
+ export * from "./models/errors";
31
+ export type * from "./models/models_0";
30
32
  export { DataPipelineServiceException } from "./models/DataPipelineServiceException";
@@ -0,0 +1,28 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const OperatorType: {
6
+ readonly Between: "BETWEEN";
7
+ readonly Equal: "EQ";
8
+ readonly GreaterThanOrEqual: "GE";
9
+ readonly LessThanOrEqual: "LE";
10
+ readonly ReferenceEqual: "REF_EQ";
11
+ };
12
+ /**
13
+ * @public
14
+ */
15
+ export type OperatorType = (typeof OperatorType)[keyof typeof OperatorType];
16
+ /**
17
+ * @public
18
+ * @enum
19
+ */
20
+ export declare const TaskStatus: {
21
+ readonly FAILED: "FAILED";
22
+ readonly FALSE: "FALSE";
23
+ readonly FINISHED: "FINISHED";
24
+ };
25
+ /**
26
+ * @public
27
+ */
28
+ export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
@@ -0,0 +1,62 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { DataPipelineServiceException as __BaseException } from "./DataPipelineServiceException";
3
+ /**
4
+ * <p>An internal service error occurred.</p>
5
+ * @public
6
+ */
7
+ export declare class InternalServiceError extends __BaseException {
8
+ readonly name: "InternalServiceError";
9
+ readonly $fault: "server";
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
14
+ }
15
+ /**
16
+ * <p>The request was not valid. Verify that your request was properly formatted, that the signature was generated with the correct credentials, and that you haven't exceeded any of the service limits for your account.</p>
17
+ * @public
18
+ */
19
+ export declare class InvalidRequestException extends __BaseException {
20
+ readonly name: "InvalidRequestException";
21
+ readonly $fault: "client";
22
+ /**
23
+ * @internal
24
+ */
25
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
26
+ }
27
+ /**
28
+ * <p>The specified pipeline has been deleted.</p>
29
+ * @public
30
+ */
31
+ export declare class PipelineDeletedException extends __BaseException {
32
+ readonly name: "PipelineDeletedException";
33
+ readonly $fault: "client";
34
+ /**
35
+ * @internal
36
+ */
37
+ constructor(opts: __ExceptionOptionType<PipelineDeletedException, __BaseException>);
38
+ }
39
+ /**
40
+ * <p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>
41
+ * @public
42
+ */
43
+ export declare class PipelineNotFoundException extends __BaseException {
44
+ readonly name: "PipelineNotFoundException";
45
+ readonly $fault: "client";
46
+ /**
47
+ * @internal
48
+ */
49
+ constructor(opts: __ExceptionOptionType<PipelineNotFoundException, __BaseException>);
50
+ }
51
+ /**
52
+ * <p>The specified task was not found. </p>
53
+ * @public
54
+ */
55
+ export declare class TaskNotFoundException extends __BaseException {
56
+ readonly name: "TaskNotFoundException";
57
+ readonly $fault: "client";
58
+ /**
59
+ * @internal
60
+ */
61
+ constructor(opts: __ExceptionOptionType<TaskNotFoundException, __BaseException>);
62
+ }
@@ -1,5 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { DataPipelineServiceException as __BaseException } from "./DataPipelineServiceException";
1
+ import { OperatorType, TaskStatus } from "./enums";
3
2
  /**
4
3
  * <p>A value or list of parameter values. </p>
5
4
  * @public
@@ -43,54 +42,6 @@ export interface ActivatePipelineInput {
43
42
  */
44
43
  export interface ActivatePipelineOutput {
45
44
  }
46
- /**
47
- * <p>An internal service error occurred.</p>
48
- * @public
49
- */
50
- export declare class InternalServiceError extends __BaseException {
51
- readonly name: "InternalServiceError";
52
- readonly $fault: "server";
53
- /**
54
- * @internal
55
- */
56
- constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
57
- }
58
- /**
59
- * <p>The request was not valid. Verify that your request was properly formatted, that the signature was generated with the correct credentials, and that you haven't exceeded any of the service limits for your account.</p>
60
- * @public
61
- */
62
- export declare class InvalidRequestException extends __BaseException {
63
- readonly name: "InvalidRequestException";
64
- readonly $fault: "client";
65
- /**
66
- * @internal
67
- */
68
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
69
- }
70
- /**
71
- * <p>The specified pipeline has been deleted.</p>
72
- * @public
73
- */
74
- export declare class PipelineDeletedException extends __BaseException {
75
- readonly name: "PipelineDeletedException";
76
- readonly $fault: "client";
77
- /**
78
- * @internal
79
- */
80
- constructor(opts: __ExceptionOptionType<PipelineDeletedException, __BaseException>);
81
- }
82
- /**
83
- * <p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>
84
- * @public
85
- */
86
- export declare class PipelineNotFoundException extends __BaseException {
87
- readonly name: "PipelineNotFoundException";
88
- readonly $fault: "client";
89
- /**
90
- * @internal
91
- */
92
- constructor(opts: __ExceptionOptionType<PipelineNotFoundException, __BaseException>);
93
- }
94
45
  /**
95
46
  * <p>Tags are key/value pairs defined by a user and associated with a pipeline to control access. AWS Data Pipeline allows you to associate ten tags per pipeline.
96
47
  * For more information, see <a href="http://docs.aws.amazon.com/datapipeline/latest/DeveloperGuide/dp-control-access.html">Controlling User Access to Pipelines</a> in the <i>AWS Data Pipeline Developer Guide</i>.</p>
@@ -394,18 +345,6 @@ export interface EvaluateExpressionOutput {
394
345
  */
395
346
  evaluatedExpression: string | undefined;
396
347
  }
397
- /**
398
- * <p>The specified task was not found. </p>
399
- * @public
400
- */
401
- export declare class TaskNotFoundException extends __BaseException {
402
- readonly name: "TaskNotFoundException";
403
- readonly $fault: "client";
404
- /**
405
- * @internal
406
- */
407
- constructor(opts: __ExceptionOptionType<TaskNotFoundException, __BaseException>);
408
- }
409
348
  /**
410
349
  * <p>Contains the parameters for GetPipelineDefinition.</p>
411
350
  * @public
@@ -689,21 +628,6 @@ export interface PutPipelineDefinitionOutput {
689
628
  */
690
629
  errored: boolean | undefined;
691
630
  }
692
- /**
693
- * @public
694
- * @enum
695
- */
696
- export declare const OperatorType: {
697
- readonly Between: "BETWEEN";
698
- readonly Equal: "EQ";
699
- readonly GreaterThanOrEqual: "GE";
700
- readonly LessThanOrEqual: "LE";
701
- readonly ReferenceEqual: "REF_EQ";
702
- };
703
- /**
704
- * @public
705
- */
706
- export type OperatorType = (typeof OperatorType)[keyof typeof OperatorType];
707
631
  /**
708
632
  * <p>Contains a logical operation for comparing the value of a field with a specified value.</p>
709
633
  * @public
@@ -940,19 +864,6 @@ export interface SetStatusInput {
940
864
  */
941
865
  status: string | undefined;
942
866
  }
943
- /**
944
- * @public
945
- * @enum
946
- */
947
- export declare const TaskStatus: {
948
- readonly FAILED: "FAILED";
949
- readonly FALSE: "FALSE";
950
- readonly FINISHED: "FINISHED";
951
- };
952
- /**
953
- * @public
954
- */
955
- export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
956
867
  /**
957
868
  * <p>Contains the parameters for SetTaskStatus.</p>
958
869
  * @public
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { DataPipelineExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { DataPipelineServiceException } from "./models/DataPipelineServiceException";
@@ -0,0 +1,14 @@
1
+ export declare const OperatorType: {
2
+ readonly Between: "BETWEEN";
3
+ readonly Equal: "EQ";
4
+ readonly GreaterThanOrEqual: "GE";
5
+ readonly LessThanOrEqual: "LE";
6
+ readonly ReferenceEqual: "REF_EQ";
7
+ };
8
+ export type OperatorType = (typeof OperatorType)[keyof typeof OperatorType];
9
+ export declare const TaskStatus: {
10
+ readonly FAILED: "FAILED";
11
+ readonly FALSE: "FALSE";
12
+ readonly FINISHED: "FINISHED";
13
+ };
14
+ export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
@@ -0,0 +1,37 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { DataPipelineServiceException as __BaseException } from "./DataPipelineServiceException";
3
+ export declare class InternalServiceError extends __BaseException {
4
+ readonly name: "InternalServiceError";
5
+ readonly $fault: "server";
6
+ constructor(
7
+ opts: __ExceptionOptionType<InternalServiceError, __BaseException>
8
+ );
9
+ }
10
+ export declare class InvalidRequestException extends __BaseException {
11
+ readonly name: "InvalidRequestException";
12
+ readonly $fault: "client";
13
+ constructor(
14
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
15
+ );
16
+ }
17
+ export declare class PipelineDeletedException extends __BaseException {
18
+ readonly name: "PipelineDeletedException";
19
+ readonly $fault: "client";
20
+ constructor(
21
+ opts: __ExceptionOptionType<PipelineDeletedException, __BaseException>
22
+ );
23
+ }
24
+ export declare class PipelineNotFoundException extends __BaseException {
25
+ readonly name: "PipelineNotFoundException";
26
+ readonly $fault: "client";
27
+ constructor(
28
+ opts: __ExceptionOptionType<PipelineNotFoundException, __BaseException>
29
+ );
30
+ }
31
+ export declare class TaskNotFoundException extends __BaseException {
32
+ readonly name: "TaskNotFoundException";
33
+ readonly $fault: "client";
34
+ constructor(
35
+ opts: __ExceptionOptionType<TaskNotFoundException, __BaseException>
36
+ );
37
+ }
@@ -1,5 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { DataPipelineServiceException as __BaseException } from "./DataPipelineServiceException";
1
+ import { OperatorType, TaskStatus } from "./enums";
3
2
  export interface ParameterValue {
4
3
  id: string | undefined;
5
4
  stringValue: string | undefined;
@@ -10,34 +9,6 @@ export interface ActivatePipelineInput {
10
9
  startTimestamp?: Date | undefined;
11
10
  }
12
11
  export interface ActivatePipelineOutput {}
13
- export declare class InternalServiceError extends __BaseException {
14
- readonly name: "InternalServiceError";
15
- readonly $fault: "server";
16
- constructor(
17
- opts: __ExceptionOptionType<InternalServiceError, __BaseException>
18
- );
19
- }
20
- export declare class InvalidRequestException extends __BaseException {
21
- readonly name: "InvalidRequestException";
22
- readonly $fault: "client";
23
- constructor(
24
- opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
25
- );
26
- }
27
- export declare class PipelineDeletedException extends __BaseException {
28
- readonly name: "PipelineDeletedException";
29
- readonly $fault: "client";
30
- constructor(
31
- opts: __ExceptionOptionType<PipelineDeletedException, __BaseException>
32
- );
33
- }
34
- export declare class PipelineNotFoundException extends __BaseException {
35
- readonly name: "PipelineNotFoundException";
36
- readonly $fault: "client";
37
- constructor(
38
- opts: __ExceptionOptionType<PipelineNotFoundException, __BaseException>
39
- );
40
- }
41
12
  export interface Tag {
42
13
  key: string | undefined;
43
14
  value: string | undefined;
@@ -106,13 +77,6 @@ export interface EvaluateExpressionInput {
106
77
  export interface EvaluateExpressionOutput {
107
78
  evaluatedExpression: string | undefined;
108
79
  }
109
- export declare class TaskNotFoundException extends __BaseException {
110
- readonly name: "TaskNotFoundException";
111
- readonly $fault: "client";
112
- constructor(
113
- opts: __ExceptionOptionType<TaskNotFoundException, __BaseException>
114
- );
115
- }
116
80
  export interface GetPipelineDefinitionInput {
117
81
  pipelineId: string | undefined;
118
82
  version?: string | undefined;
@@ -179,14 +143,6 @@ export interface PutPipelineDefinitionOutput {
179
143
  validationWarnings?: ValidationWarning[] | undefined;
180
144
  errored: boolean | undefined;
181
145
  }
182
- export declare const OperatorType: {
183
- readonly Between: "BETWEEN";
184
- readonly Equal: "EQ";
185
- readonly GreaterThanOrEqual: "GE";
186
- readonly LessThanOrEqual: "LE";
187
- readonly ReferenceEqual: "REF_EQ";
188
- };
189
- export type OperatorType = (typeof OperatorType)[keyof typeof OperatorType];
190
146
  export interface Operator {
191
147
  type?: OperatorType | undefined;
192
148
  values?: string[] | undefined;
@@ -235,12 +191,6 @@ export interface SetStatusInput {
235
191
  objectIds: string[] | undefined;
236
192
  status: string | undefined;
237
193
  }
238
- export declare const TaskStatus: {
239
- readonly FAILED: "FAILED";
240
- readonly FALSE: "FALSE";
241
- readonly FINISHED: "FINISHED";
242
- };
243
- export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
244
194
  export interface SetTaskStatusInput {
245
195
  taskId: string | undefined;
246
196
  taskStatus: TaskStatus | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-data-pipeline",
3
3
  "description": "AWS SDK for JavaScript Data Pipeline Client for Node.js, Browser and React Native",
4
- "version": "3.933.0",
4
+ "version": "3.935.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-data-pipeline",
@@ -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.932.0",
24
- "@aws-sdk/credential-provider-node": "3.933.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.932.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.932.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";