@aws-sdk/client-bcm-data-exports 3.1094.0 → 3.1096.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 +3 -1
- package/dist-es/models/enums.js +2 -0
- package/dist-types/commands/CreateExportCommand.d.ts +1 -1
- package/dist-types/commands/GetExecutionCommand.d.ts +2 -2
- package/dist-types/commands/GetExportCommand.d.ts +2 -2
- package/dist-types/commands/ListExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListExportsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateExportCommand.d.ts +1 -1
- package/dist-types/models/enums.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +6 -6
package/dist-cjs/index.js
CHANGED
|
@@ -67,7 +67,7 @@ const commonParams = {
|
|
|
67
67
|
Region: { type: "builtInParams", name: "region" },
|
|
68
68
|
};
|
|
69
69
|
|
|
70
|
-
var version = "3.
|
|
70
|
+
var version = "3.1095.0";
|
|
71
71
|
var packageInfo = {
|
|
72
72
|
version: version};
|
|
73
73
|
|
|
@@ -867,6 +867,7 @@ createAggregatedClient(commands, BCMDataExports, { paginators });
|
|
|
867
867
|
const CompressionOption = {
|
|
868
868
|
GZIP: "GZIP",
|
|
869
869
|
PARQUET: "PARQUET",
|
|
870
|
+
ZIP: "ZIP",
|
|
870
871
|
};
|
|
871
872
|
const FormatOption = {
|
|
872
873
|
PARQUET: "PARQUET",
|
|
@@ -896,6 +897,7 @@ const ExportStatusCode = {
|
|
|
896
897
|
};
|
|
897
898
|
const ExecutionStatusReason = {
|
|
898
899
|
BILL_OWNER_CHANGED: "BILL_OWNER_CHANGED",
|
|
900
|
+
DEPRECATED: "DEPRECATED",
|
|
899
901
|
INSUFFICIENT_PERMISSION: "INSUFFICIENT_PERMISSION",
|
|
900
902
|
INTERNAL_FAILURE: "INTERNAL_FAILURE",
|
|
901
903
|
};
|
package/dist-es/models/enums.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export const CompressionOption = {
|
|
2
2
|
GZIP: "GZIP",
|
|
3
3
|
PARQUET: "PARQUET",
|
|
4
|
+
ZIP: "ZIP",
|
|
4
5
|
};
|
|
5
6
|
export const FormatOption = {
|
|
6
7
|
PARQUET: "PARQUET",
|
|
@@ -30,6 +31,7 @@ export const ExportStatusCode = {
|
|
|
30
31
|
};
|
|
31
32
|
export const ExecutionStatusReason = {
|
|
32
33
|
BILL_OWNER_CHANGED: "BILL_OWNER_CHANGED",
|
|
34
|
+
DEPRECATED: "DEPRECATED",
|
|
33
35
|
INSUFFICIENT_PERMISSION: "INSUFFICIENT_PERMISSION",
|
|
34
36
|
INTERNAL_FAILURE: "INTERNAL_FAILURE",
|
|
35
37
|
};
|
|
@@ -55,7 +55,7 @@ declare const CreateExportCommand_base: {
|
|
|
55
55
|
* S3OutputConfigurations: { // S3OutputConfigurations
|
|
56
56
|
* OutputType: "CUSTOM" || "ATHENA" || "REDSHIFT", // required
|
|
57
57
|
* Format: "TEXT_OR_CSV" || "PARQUET", // required
|
|
58
|
-
* Compression: "GZIP" || "PARQUET", // required
|
|
58
|
+
* Compression: "GZIP" || "PARQUET" || "ZIP", // required
|
|
59
59
|
* Overwrite: "CREATE_NEW_REPORT" || "OVERWRITE_REPORT", // required
|
|
60
60
|
* },
|
|
61
61
|
* },
|
|
@@ -62,7 +62,7 @@ declare const GetExecutionCommand_base: {
|
|
|
62
62
|
* // S3OutputConfigurations: { // S3OutputConfigurations
|
|
63
63
|
* // OutputType: "CUSTOM" || "ATHENA" || "REDSHIFT", // required
|
|
64
64
|
* // Format: "TEXT_OR_CSV" || "PARQUET", // required
|
|
65
|
-
* // Compression: "GZIP" || "PARQUET", // required
|
|
65
|
+
* // Compression: "GZIP" || "PARQUET" || "ZIP", // required
|
|
66
66
|
* // Overwrite: "CREATE_NEW_REPORT" || "OVERWRITE_REPORT", // required
|
|
67
67
|
* // },
|
|
68
68
|
* // },
|
|
@@ -73,7 +73,7 @@ declare const GetExecutionCommand_base: {
|
|
|
73
73
|
* // },
|
|
74
74
|
* // ExecutionStatus: { // ExecutionStatus
|
|
75
75
|
* // StatusCode: "INITIATION_IN_PROCESS" || "QUERY_QUEUED" || "QUERY_IN_PROCESS" || "QUERY_FAILURE" || "DELIVERY_IN_PROCESS" || "DELIVERY_SUCCESS" || "DELIVERY_FAILURE",
|
|
76
|
-
* // StatusReason: "INSUFFICIENT_PERMISSION" || "BILL_OWNER_CHANGED" || "INTERNAL_FAILURE",
|
|
76
|
+
* // StatusReason: "INSUFFICIENT_PERMISSION" || "BILL_OWNER_CHANGED" || "INTERNAL_FAILURE" || "DEPRECATED",
|
|
77
77
|
* // CreatedAt: new Date("TIMESTAMP"),
|
|
78
78
|
* // CompletedAt: new Date("TIMESTAMP"),
|
|
79
79
|
* // LastUpdatedAt: new Date("TIMESTAMP"),
|
|
@@ -60,7 +60,7 @@ declare const GetExportCommand_base: {
|
|
|
60
60
|
* // S3OutputConfigurations: { // S3OutputConfigurations
|
|
61
61
|
* // OutputType: "CUSTOM" || "ATHENA" || "REDSHIFT", // required
|
|
62
62
|
* // Format: "TEXT_OR_CSV" || "PARQUET", // required
|
|
63
|
-
* // Compression: "GZIP" || "PARQUET", // required
|
|
63
|
+
* // Compression: "GZIP" || "PARQUET" || "ZIP", // required
|
|
64
64
|
* // Overwrite: "CREATE_NEW_REPORT" || "OVERWRITE_REPORT", // required
|
|
65
65
|
* // },
|
|
66
66
|
* // },
|
|
@@ -71,7 +71,7 @@ declare const GetExportCommand_base: {
|
|
|
71
71
|
* // },
|
|
72
72
|
* // ExportStatus: { // ExportStatus
|
|
73
73
|
* // StatusCode: "HEALTHY" || "UNHEALTHY",
|
|
74
|
-
* // StatusReason: "INSUFFICIENT_PERMISSION" || "BILL_OWNER_CHANGED" || "INTERNAL_FAILURE",
|
|
74
|
+
* // StatusReason: "INSUFFICIENT_PERMISSION" || "BILL_OWNER_CHANGED" || "INTERNAL_FAILURE" || "DEPRECATED",
|
|
75
75
|
* // CreatedAt: new Date("TIMESTAMP"),
|
|
76
76
|
* // LastUpdatedAt: new Date("TIMESTAMP"),
|
|
77
77
|
* // LastRefreshedAt: new Date("TIMESTAMP"),
|
|
@@ -46,7 +46,7 @@ declare const ListExecutionsCommand_base: {
|
|
|
46
46
|
* // ExecutionId: "STRING_VALUE", // required
|
|
47
47
|
* // ExecutionStatus: { // ExecutionStatus
|
|
48
48
|
* // StatusCode: "INITIATION_IN_PROCESS" || "QUERY_QUEUED" || "QUERY_IN_PROCESS" || "QUERY_FAILURE" || "DELIVERY_IN_PROCESS" || "DELIVERY_SUCCESS" || "DELIVERY_FAILURE",
|
|
49
|
-
* // StatusReason: "INSUFFICIENT_PERMISSION" || "BILL_OWNER_CHANGED" || "INTERNAL_FAILURE",
|
|
49
|
+
* // StatusReason: "INSUFFICIENT_PERMISSION" || "BILL_OWNER_CHANGED" || "INTERNAL_FAILURE" || "DEPRECATED",
|
|
50
50
|
* // CreatedAt: new Date("TIMESTAMP"),
|
|
51
51
|
* // CompletedAt: new Date("TIMESTAMP"),
|
|
52
52
|
* // LastUpdatedAt: new Date("TIMESTAMP"),
|
|
@@ -46,7 +46,7 @@ declare const ListExportsCommand_base: {
|
|
|
46
46
|
* // ExportName: "STRING_VALUE", // required
|
|
47
47
|
* // ExportStatus: { // ExportStatus
|
|
48
48
|
* // StatusCode: "HEALTHY" || "UNHEALTHY",
|
|
49
|
-
* // StatusReason: "INSUFFICIENT_PERMISSION" || "BILL_OWNER_CHANGED" || "INTERNAL_FAILURE",
|
|
49
|
+
* // StatusReason: "INSUFFICIENT_PERMISSION" || "BILL_OWNER_CHANGED" || "INTERNAL_FAILURE" || "DEPRECATED",
|
|
50
50
|
* // CreatedAt: new Date("TIMESTAMP"),
|
|
51
51
|
* // LastUpdatedAt: new Date("TIMESTAMP"),
|
|
52
52
|
* // LastRefreshedAt: new Date("TIMESTAMP"),
|
|
@@ -56,7 +56,7 @@ declare const UpdateExportCommand_base: {
|
|
|
56
56
|
* S3OutputConfigurations: { // S3OutputConfigurations
|
|
57
57
|
* OutputType: "CUSTOM" || "ATHENA" || "REDSHIFT", // required
|
|
58
58
|
* Format: "TEXT_OR_CSV" || "PARQUET", // required
|
|
59
|
-
* Compression: "GZIP" || "PARQUET", // required
|
|
59
|
+
* Compression: "GZIP" || "PARQUET" || "ZIP", // required
|
|
60
60
|
* Overwrite: "CREATE_NEW_REPORT" || "OVERWRITE_REPORT", // required
|
|
61
61
|
* },
|
|
62
62
|
* },
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
export declare const CompressionOption: {
|
|
6
6
|
readonly GZIP: "GZIP";
|
|
7
7
|
readonly PARQUET: "PARQUET";
|
|
8
|
+
readonly ZIP: "ZIP";
|
|
8
9
|
};
|
|
9
10
|
/**
|
|
10
11
|
* @public
|
|
@@ -90,6 +91,7 @@ export type ExportStatusCode = (typeof ExportStatusCode)[keyof typeof ExportStat
|
|
|
90
91
|
*/
|
|
91
92
|
export declare const ExecutionStatusReason: {
|
|
92
93
|
readonly BILL_OWNER_CHANGED: "BILL_OWNER_CHANGED";
|
|
94
|
+
readonly DEPRECATED: "DEPRECATED";
|
|
93
95
|
readonly INSUFFICIENT_PERMISSION: "INSUFFICIENT_PERMISSION";
|
|
94
96
|
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
95
97
|
};
|
|
@@ -52,7 +52,7 @@ export interface S3Destination {
|
|
|
52
52
|
*/
|
|
53
53
|
S3Bucket: string | undefined;
|
|
54
54
|
/**
|
|
55
|
-
* <p>The
|
|
55
|
+
* <p>The Amazon Web Services account ID that owns the S3 bucket used as the destination for the data export.</p>
|
|
56
56
|
* @public
|
|
57
57
|
*/
|
|
58
58
|
S3BucketOwner?: string | undefined;
|
|
@@ -42,6 +42,7 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
42
42
|
logger?: import("@smithy/types").Logger;
|
|
43
43
|
}) => import("@smithy/types").EndpointV2;
|
|
44
44
|
tls?: boolean;
|
|
45
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
45
46
|
serviceConfiguredEndpoint?: never;
|
|
46
47
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
47
48
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
@@ -52,4 +53,5 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
52
53
|
systemClockOffset?: number;
|
|
53
54
|
signingRegion?: string;
|
|
54
55
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
56
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
55
57
|
};
|
|
@@ -43,6 +43,7 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
43
43
|
logger?: import("@smithy/types").Logger;
|
|
44
44
|
}) => import("@smithy/types").EndpointV2;
|
|
45
45
|
tls?: boolean;
|
|
46
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
46
47
|
serviceConfiguredEndpoint?: never;
|
|
47
48
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
48
49
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BCMDataExportsHttpAuthSchemeProvider;
|
|
@@ -52,4 +53,5 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
52
53
|
systemClockOffset?: number;
|
|
53
54
|
signingRegion?: string;
|
|
54
55
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
56
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
55
57
|
};
|
|
@@ -41,6 +41,7 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
41
41
|
logger?: import("@smithy/types").Logger;
|
|
42
42
|
}) => import("@smithy/types").EndpointV2;
|
|
43
43
|
tls?: boolean;
|
|
44
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
44
45
|
serviceConfiguredEndpoint?: never;
|
|
45
46
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
46
47
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
@@ -51,4 +52,5 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
51
52
|
systemClockOffset?: number;
|
|
52
53
|
signingRegion?: string;
|
|
53
54
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
55
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
54
56
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export declare const CompressionOption: {
|
|
2
2
|
readonly GZIP: "GZIP";
|
|
3
3
|
readonly PARQUET: "PARQUET";
|
|
4
|
+
readonly ZIP: "ZIP";
|
|
4
5
|
};
|
|
5
6
|
export type CompressionOption = (typeof CompressionOption)[keyof typeof CompressionOption];
|
|
6
7
|
export declare const FormatOption: {
|
|
@@ -38,6 +39,7 @@ export declare const ExportStatusCode: {
|
|
|
38
39
|
export type ExportStatusCode = (typeof ExportStatusCode)[keyof typeof ExportStatusCode];
|
|
39
40
|
export declare const ExecutionStatusReason: {
|
|
40
41
|
readonly BILL_OWNER_CHANGED: "BILL_OWNER_CHANGED";
|
|
42
|
+
readonly DEPRECATED: "DEPRECATED";
|
|
41
43
|
readonly INSUFFICIENT_PERMISSION: "INSUFFICIENT_PERMISSION";
|
|
42
44
|
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
43
45
|
};
|
|
@@ -71,6 +71,7 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
71
71
|
},
|
|
72
72
|
) => import("@smithy/types").EndpointV2;
|
|
73
73
|
tls?: boolean;
|
|
74
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
74
75
|
serviceConfiguredEndpoint?: never;
|
|
75
76
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
76
77
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
@@ -90,4 +91,5 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
90
91
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
91
92
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
92
93
|
) => import("@smithy/types").RequestSigner;
|
|
94
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
93
95
|
};
|
|
@@ -72,6 +72,7 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
72
72
|
},
|
|
73
73
|
) => import("@smithy/types").EndpointV2;
|
|
74
74
|
tls?: boolean;
|
|
75
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
75
76
|
serviceConfiguredEndpoint?: never;
|
|
76
77
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
77
78
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BCMDataExportsHttpAuthSchemeProvider;
|
|
@@ -90,4 +91,5 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
90
91
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
91
92
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
92
93
|
) => import("@smithy/types").RequestSigner;
|
|
94
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
93
95
|
};
|
|
@@ -75,6 +75,7 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
75
75
|
},
|
|
76
76
|
) => import("@smithy/types").EndpointV2;
|
|
77
77
|
tls?: boolean;
|
|
78
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
78
79
|
serviceConfiguredEndpoint?: never;
|
|
79
80
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
80
81
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
@@ -94,4 +95,5 @@ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
|
|
|
94
95
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
95
96
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
96
97
|
) => import("@smithy/types").RequestSigner;
|
|
98
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
97
99
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bcm-data-exports",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1096.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Bcm Data Exports Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-bcm-data-exports",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@aws-sdk/core": "^3.
|
|
50
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
49
|
+
"@aws-sdk/core": "^3.977.1",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.73",
|
|
51
51
|
"@aws-sdk/types": "^3.974.2",
|
|
52
|
-
"@smithy/core": "^3.29.
|
|
53
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
54
|
-
"@smithy/node-http-handler": "^4.9.
|
|
52
|
+
"@smithy/core": "^3.29.8",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.6.10",
|
|
54
|
+
"@smithy/node-http-handler": "^4.9.10",
|
|
55
55
|
"@smithy/types": "^4.16.1",
|
|
56
56
|
"tslib": "^2.6.2"
|
|
57
57
|
},
|