@aws-sdk/client-glue 3.839.0 → 3.844.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-types/commands/CreateIntegrationCommand.d.ts +6 -0
- package/dist-types/commands/DescribeInboundIntegrationsCommand.d.ts +3 -0
- package/dist-types/commands/DescribeIntegrationsCommand.d.ts +3 -0
- package/dist-types/models/models_1.d.ts +8 -0
- package/dist-types/ts3.4/models/models_1.d.ts +1 -0
- package/package.json +20 -20
|
@@ -52,6 +52,9 @@ declare const CreateIntegrationCommand_base: {
|
|
|
52
52
|
* ],
|
|
53
53
|
* IntegrationConfig: { // IntegrationConfig
|
|
54
54
|
* RefreshInterval: "STRING_VALUE",
|
|
55
|
+
* SourceProperties: { // IntegrationSourcePropertiesMap
|
|
56
|
+
* "<keys>": "STRING_VALUE",
|
|
57
|
+
* },
|
|
55
58
|
* },
|
|
56
59
|
* };
|
|
57
60
|
* const command = new CreateIntegrationCommand(input);
|
|
@@ -83,6 +86,9 @@ declare const CreateIntegrationCommand_base: {
|
|
|
83
86
|
* // DataFilter: "STRING_VALUE",
|
|
84
87
|
* // IntegrationConfig: { // IntegrationConfig
|
|
85
88
|
* // RefreshInterval: "STRING_VALUE",
|
|
89
|
+
* // SourceProperties: { // IntegrationSourcePropertiesMap
|
|
90
|
+
* // "<keys>": "STRING_VALUE",
|
|
91
|
+
* // },
|
|
86
92
|
* // },
|
|
87
93
|
* // };
|
|
88
94
|
*
|
|
@@ -52,6 +52,9 @@ declare const DescribeInboundIntegrationsCommand_base: {
|
|
|
52
52
|
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
53
53
|
* // IntegrationConfig: { // IntegrationConfig
|
|
54
54
|
* // RefreshInterval: "STRING_VALUE",
|
|
55
|
+
* // SourceProperties: { // IntegrationSourcePropertiesMap
|
|
56
|
+
* // "<keys>": "STRING_VALUE",
|
|
57
|
+
* // },
|
|
55
58
|
* // },
|
|
56
59
|
* // Errors: [ // IntegrationErrorList
|
|
57
60
|
* // { // IntegrationError
|
|
@@ -71,6 +71,9 @@ declare const DescribeIntegrationsCommand_base: {
|
|
|
71
71
|
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
72
72
|
* // IntegrationConfig: { // IntegrationConfig
|
|
73
73
|
* // RefreshInterval: "STRING_VALUE",
|
|
74
|
+
* // SourceProperties: { // IntegrationSourcePropertiesMap
|
|
75
|
+
* // "<keys>": "STRING_VALUE",
|
|
76
|
+
* // },
|
|
74
77
|
* // },
|
|
75
78
|
* // Errors: [ // IntegrationErrorList
|
|
76
79
|
* // { // IntegrationError
|
|
@@ -2109,6 +2109,14 @@ export interface IntegrationConfig {
|
|
|
2109
2109
|
* @public
|
|
2110
2110
|
*/
|
|
2111
2111
|
RefreshInterval?: string | undefined;
|
|
2112
|
+
/**
|
|
2113
|
+
* <p>
|
|
2114
|
+
* A collection of key-value pairs that specify additional properties for the integration source. These properties provide configuration options that
|
|
2115
|
+
* can be used to customize the behavior of the ODB source during data integration operations.
|
|
2116
|
+
* </p>
|
|
2117
|
+
* @public
|
|
2118
|
+
*/
|
|
2119
|
+
SourceProperties?: Record<string, string> | undefined;
|
|
2112
2120
|
}
|
|
2113
2121
|
/**
|
|
2114
2122
|
* <p>The <code>Tag</code> object represents a label that you can assign to an Amazon Web Services resource. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
@@ -604,6 +604,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
604
604
|
}
|
|
605
605
|
export interface IntegrationConfig {
|
|
606
606
|
RefreshInterval?: string | undefined;
|
|
607
|
+
SourceProperties?: Record<string, string> | undefined;
|
|
607
608
|
}
|
|
608
609
|
export interface Tag {
|
|
609
610
|
key?: string | undefined;
|
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.
|
|
4
|
+
"version": "3.844.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,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.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.844.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.844.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.840.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.840.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.840.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.844.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.840.0",
|
|
30
|
+
"@aws-sdk/types": "3.840.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.844.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.840.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.844.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.4",
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.0
|
|
35
|
+
"@smithy/core": "^3.7.0",
|
|
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.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.14",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.15",
|
|
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
|
-
"@smithy/node-http-handler": "^4.0
|
|
45
|
+
"@smithy/node-http-handler": "^4.1.0",
|
|
46
46
|
"@smithy/protocol-http": "^5.1.2",
|
|
47
|
-
"@smithy/smithy-client": "^4.4.
|
|
47
|
+
"@smithy/smithy-client": "^4.4.6",
|
|
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.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.22",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.22",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.6",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.4",
|
|
57
57
|
"@smithy/util-retry": "^4.0.6",
|