@aws-sdk/client-bcm-data-exports 3.1002.0 → 3.1004.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/README.md +1 -8
- package/dist-cjs/endpoint/ruleset.js +2 -2
- package/dist-cjs/index.js +9 -9
- package/dist-cjs/models/errors.js +16 -1
- package/dist-cjs/schemas/schemas_0.js +9 -2
- package/dist-es/endpoint/ruleset.js +2 -2
- package/dist-es/models/enums.js +9 -9
- package/dist-es/models/errors.js +14 -0
- package/dist-es/schemas/schemas_0.js +8 -1
- package/dist-types/BCMDataExports.d.ts +1 -8
- package/dist-types/BCMDataExportsClient.d.ts +1 -8
- package/dist-types/commands/CreateExportCommand.d.ts +7 -23
- package/dist-types/commands/DeleteExportCommand.d.ts +2 -4
- package/dist-types/commands/GetExecutionCommand.d.ts +2 -4
- package/dist-types/commands/GetExportCommand.d.ts +2 -4
- package/dist-types/commands/GetTableCommand.d.ts +3 -6
- package/dist-types/commands/ListExecutionsCommand.d.ts +2 -4
- package/dist-types/commands/ListExportsCommand.d.ts +2 -4
- package/dist-types/commands/ListTablesCommand.d.ts +2 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +5 -4
- package/dist-types/commands/TagResourceCommand.d.ts +5 -4
- package/dist-types/commands/UntagResourceCommand.d.ts +5 -4
- package/dist-types/commands/UpdateExportCommand.d.ts +3 -6
- package/dist-types/endpoint/EndpointParameters.d.ts +2 -2
- package/dist-types/index.d.ts +1 -8
- package/dist-types/models/enums.d.ts +13 -13
- package/dist-types/models/errors.d.ts +18 -10
- package/dist-types/models/models_0.d.ts +125 -145
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +2 -2
- package/dist-types/ts3.4/models/enums.d.ts +13 -13
- package/dist-types/ts3.4/models/errors.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +34 -34
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +37 -37
|
@@ -59,35 +59,55 @@ export interface DeleteExportRequest {
|
|
|
59
59
|
export interface DeleteExportResponse {
|
|
60
60
|
ExportArn?: string | undefined;
|
|
61
61
|
}
|
|
62
|
-
export interface
|
|
62
|
+
export interface GetExportRequest {
|
|
63
63
|
ExportArn: string | undefined;
|
|
64
|
-
ExecutionId: string | undefined;
|
|
65
64
|
}
|
|
66
|
-
export interface
|
|
67
|
-
StatusCode?:
|
|
65
|
+
export interface ExportStatus {
|
|
66
|
+
StatusCode?: ExportStatusCode | undefined;
|
|
68
67
|
StatusReason?: ExecutionStatusReason | undefined;
|
|
69
68
|
CreatedAt?: Date | undefined;
|
|
70
|
-
CompletedAt?: Date | undefined;
|
|
71
69
|
LastUpdatedAt?: Date | undefined;
|
|
70
|
+
LastRefreshedAt?: Date | undefined;
|
|
72
71
|
}
|
|
73
|
-
export interface
|
|
74
|
-
ExecutionId?: string | undefined;
|
|
72
|
+
export interface GetExportResponse {
|
|
75
73
|
Export?: Export | undefined;
|
|
76
|
-
|
|
74
|
+
ExportStatus?: ExportStatus | undefined;
|
|
77
75
|
}
|
|
78
|
-
export interface
|
|
76
|
+
export interface ListExportsRequest {
|
|
77
|
+
MaxResults?: number | undefined;
|
|
78
|
+
NextToken?: string | undefined;
|
|
79
|
+
}
|
|
80
|
+
export interface ExportReference {
|
|
79
81
|
ExportArn: string | undefined;
|
|
82
|
+
ExportName: string | undefined;
|
|
83
|
+
ExportStatus: ExportStatus | undefined;
|
|
80
84
|
}
|
|
81
|
-
export interface
|
|
82
|
-
|
|
85
|
+
export interface ListExportsResponse {
|
|
86
|
+
Exports?: ExportReference[] | undefined;
|
|
87
|
+
NextToken?: string | undefined;
|
|
88
|
+
}
|
|
89
|
+
export interface UpdateExportRequest {
|
|
90
|
+
ExportArn: string | undefined;
|
|
91
|
+
Export: Export | undefined;
|
|
92
|
+
}
|
|
93
|
+
export interface UpdateExportResponse {
|
|
94
|
+
ExportArn?: string | undefined;
|
|
95
|
+
}
|
|
96
|
+
export interface GetExecutionRequest {
|
|
97
|
+
ExportArn: string | undefined;
|
|
98
|
+
ExecutionId: string | undefined;
|
|
99
|
+
}
|
|
100
|
+
export interface ExecutionStatus {
|
|
101
|
+
StatusCode?: ExecutionStatusCode | undefined;
|
|
83
102
|
StatusReason?: ExecutionStatusReason | undefined;
|
|
84
103
|
CreatedAt?: Date | undefined;
|
|
104
|
+
CompletedAt?: Date | undefined;
|
|
85
105
|
LastUpdatedAt?: Date | undefined;
|
|
86
|
-
LastRefreshedAt?: Date | undefined;
|
|
87
106
|
}
|
|
88
|
-
export interface
|
|
107
|
+
export interface GetExecutionResponse {
|
|
108
|
+
ExecutionId?: string | undefined;
|
|
89
109
|
Export?: Export | undefined;
|
|
90
|
-
|
|
110
|
+
ExecutionStatus?: ExecutionStatus | undefined;
|
|
91
111
|
}
|
|
92
112
|
export interface GetTableRequest {
|
|
93
113
|
TableName: string | undefined;
|
|
@@ -117,19 +137,6 @@ export interface ListExecutionsResponse {
|
|
|
117
137
|
Executions?: ExecutionReference[] | undefined;
|
|
118
138
|
NextToken?: string | undefined;
|
|
119
139
|
}
|
|
120
|
-
export interface ListExportsRequest {
|
|
121
|
-
MaxResults?: number | undefined;
|
|
122
|
-
NextToken?: string | undefined;
|
|
123
|
-
}
|
|
124
|
-
export interface ExportReference {
|
|
125
|
-
ExportArn: string | undefined;
|
|
126
|
-
ExportName: string | undefined;
|
|
127
|
-
ExportStatus: ExportStatus | undefined;
|
|
128
|
-
}
|
|
129
|
-
export interface ListExportsResponse {
|
|
130
|
-
Exports?: ExportReference[] | undefined;
|
|
131
|
-
NextToken?: string | undefined;
|
|
132
|
-
}
|
|
133
140
|
export interface ListTablesRequest {
|
|
134
141
|
NextToken?: string | undefined;
|
|
135
142
|
MaxResults?: number | undefined;
|
|
@@ -168,10 +175,3 @@ export interface UntagResourceRequest {
|
|
|
168
175
|
ResourceTagKeys: string[] | undefined;
|
|
169
176
|
}
|
|
170
177
|
export interface UntagResourceResponse {}
|
|
171
|
-
export interface UpdateExportRequest {
|
|
172
|
-
ExportArn: string | undefined;
|
|
173
|
-
Export: Export | undefined;
|
|
174
|
-
}
|
|
175
|
-
export interface UpdateExportResponse {
|
|
176
|
-
ExportArn?: string | undefined;
|
|
177
|
-
}
|
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
StaticStructureSchema,
|
|
6
6
|
} from "@smithy/types";
|
|
7
7
|
export declare var BCMDataExportsServiceException$: StaticErrorSchema;
|
|
8
|
+
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
8
9
|
export declare var InternalServerException$: StaticErrorSchema;
|
|
9
10
|
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
10
11
|
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bcm-data-exports",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bcm Data Exports Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1004.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bcm-data-exports",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
-
"@smithy/hash-node": "^4.2.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
47
|
-
"@smithy/protocol-http": "^5.3.
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
24
|
+
"@aws-sdk/core": "^3.973.18",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.18",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.7",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.7",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.7",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.19",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.7",
|
|
31
|
+
"@aws-sdk/types": "^3.973.5",
|
|
32
|
+
"@aws-sdk/util-endpoints": "^3.996.4",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.7",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.4",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.10",
|
|
36
|
+
"@smithy/core": "^3.23.8",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.13",
|
|
38
|
+
"@smithy/hash-node": "^4.2.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.11",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.22",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.39",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.12",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.11",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.11",
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.14",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.11",
|
|
48
|
+
"@smithy/smithy-client": "^4.12.2",
|
|
49
49
|
"@smithy/types": "^4.13.0",
|
|
50
|
-
"@smithy/url-parser": "^4.2.
|
|
51
|
-
"@smithy/util-base64": "^4.3.
|
|
52
|
-
"@smithy/util-body-length-browser": "^4.2.
|
|
53
|
-
"@smithy/util-body-length-node": "^4.2.
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
-
"@smithy/util-endpoints": "^3.3.
|
|
57
|
-
"@smithy/util-middleware": "^4.2.
|
|
58
|
-
"@smithy/util-retry": "^4.2.
|
|
59
|
-
"@smithy/util-utf8": "^4.2.
|
|
50
|
+
"@smithy/url-parser": "^4.2.11",
|
|
51
|
+
"@smithy/util-base64": "^4.3.2",
|
|
52
|
+
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
|
+
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.38",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.41",
|
|
56
|
+
"@smithy/util-endpoints": "^3.3.2",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.11",
|
|
58
|
+
"@smithy/util-retry": "^4.2.11",
|
|
59
|
+
"@smithy/util-utf8": "^4.2.2",
|
|
60
60
|
"tslib": "^2.6.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"node": ">=20.0.0"
|
|
72
72
|
},
|
|
73
73
|
"typesVersions": {
|
|
74
|
-
"<4.
|
|
74
|
+
"<4.5": {
|
|
75
75
|
"dist-types/*": [
|
|
76
76
|
"dist-types/ts3.4/*"
|
|
77
77
|
]
|