@aws-sdk/client-datazone 3.1035.0 → 3.1036.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/schemas/schemas_0.js +42 -23
- package/dist-es/schemas/schemas_0.js +31 -12
- package/dist-types/commands/CreateConnectionCommand.d.ts +6 -0
- package/dist-types/commands/CreateSubscriptionRequestCommand.d.ts +1 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +3 -0
- package/dist-types/commands/ListConnectionsCommand.d.ts +3 -0
- package/dist-types/commands/SearchCommand.d.ts +1 -2
- package/dist-types/commands/SearchGroupProfilesCommand.d.ts +1 -2
- package/dist-types/commands/UpdateConnectionCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +130 -198
- package/dist-types/models/models_1.d.ts +197 -127
- package/dist-types/models/models_2.d.ts +128 -3
- package/dist-types/schemas/schemas_0.d.ts +3 -0
- package/dist-types/ts3.4/commands/CreateSubscriptionRequestCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/SearchGroupProfilesCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +94 -76
- package/dist-types/ts3.4/models/models_1.d.ts +83 -64
- package/dist-types/ts3.4/models/models_2.d.ts +67 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/package.json +15 -15
|
@@ -6,6 +6,7 @@ import {
|
|
|
6
6
|
FormTypeStatus,
|
|
7
7
|
GraphEntityType,
|
|
8
8
|
GroupProfileStatus,
|
|
9
|
+
GroupSearchType,
|
|
9
10
|
InventorySearchScope,
|
|
10
11
|
ProjectStatus,
|
|
11
12
|
ResolutionStrategy,
|
|
@@ -26,6 +27,7 @@ import {
|
|
|
26
27
|
AdditionalAttributes,
|
|
27
28
|
AggregationListItem,
|
|
28
29
|
AggregationOutput,
|
|
30
|
+
AssetItem,
|
|
29
31
|
AssetListingItem,
|
|
30
32
|
AssetTypeItem,
|
|
31
33
|
AwsLocation,
|
|
@@ -60,13 +62,78 @@ import {
|
|
|
60
62
|
} from "./models_0";
|
|
61
63
|
import {
|
|
62
64
|
DataProductListingItem,
|
|
65
|
+
DataProductResultItem,
|
|
63
66
|
Filter,
|
|
67
|
+
GlossaryItem,
|
|
68
|
+
GlossaryTermItem,
|
|
64
69
|
Import,
|
|
65
70
|
RelationPattern,
|
|
66
71
|
SearchInItem,
|
|
67
72
|
SearchSort,
|
|
68
73
|
SubscriptionTargetForm,
|
|
69
74
|
} from "./models_1";
|
|
75
|
+
export type SearchInventoryResultItem =
|
|
76
|
+
| SearchInventoryResultItem.AssetItemMember
|
|
77
|
+
| SearchInventoryResultItem.DataProductItemMember
|
|
78
|
+
| SearchInventoryResultItem.GlossaryItemMember
|
|
79
|
+
| SearchInventoryResultItem.GlossaryTermItemMember
|
|
80
|
+
| SearchInventoryResultItem.$UnknownMember;
|
|
81
|
+
export declare namespace SearchInventoryResultItem {
|
|
82
|
+
interface GlossaryItemMember {
|
|
83
|
+
glossaryItem: GlossaryItem;
|
|
84
|
+
glossaryTermItem?: never;
|
|
85
|
+
assetItem?: never;
|
|
86
|
+
dataProductItem?: never;
|
|
87
|
+
$unknown?: never;
|
|
88
|
+
}
|
|
89
|
+
interface GlossaryTermItemMember {
|
|
90
|
+
glossaryItem?: never;
|
|
91
|
+
glossaryTermItem: GlossaryTermItem;
|
|
92
|
+
assetItem?: never;
|
|
93
|
+
dataProductItem?: never;
|
|
94
|
+
$unknown?: never;
|
|
95
|
+
}
|
|
96
|
+
interface AssetItemMember {
|
|
97
|
+
glossaryItem?: never;
|
|
98
|
+
glossaryTermItem?: never;
|
|
99
|
+
assetItem: AssetItem;
|
|
100
|
+
dataProductItem?: never;
|
|
101
|
+
$unknown?: never;
|
|
102
|
+
}
|
|
103
|
+
interface DataProductItemMember {
|
|
104
|
+
glossaryItem?: never;
|
|
105
|
+
glossaryTermItem?: never;
|
|
106
|
+
assetItem?: never;
|
|
107
|
+
dataProductItem: DataProductResultItem;
|
|
108
|
+
$unknown?: never;
|
|
109
|
+
}
|
|
110
|
+
interface $UnknownMember {
|
|
111
|
+
glossaryItem?: never;
|
|
112
|
+
glossaryTermItem?: never;
|
|
113
|
+
assetItem?: never;
|
|
114
|
+
dataProductItem?: never;
|
|
115
|
+
$unknown: [string, any];
|
|
116
|
+
}
|
|
117
|
+
interface Visitor<T> {
|
|
118
|
+
glossaryItem: (value: GlossaryItem) => T;
|
|
119
|
+
glossaryTermItem: (value: GlossaryTermItem) => T;
|
|
120
|
+
assetItem: (value: AssetItem) => T;
|
|
121
|
+
dataProductItem: (value: DataProductResultItem) => T;
|
|
122
|
+
_: (name: string, value: any) => T;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
export interface SearchOutput {
|
|
126
|
+
items?: SearchInventoryResultItem[] | undefined;
|
|
127
|
+
nextToken?: string | undefined;
|
|
128
|
+
totalMatchCount?: number | undefined;
|
|
129
|
+
}
|
|
130
|
+
export interface SearchGroupProfilesInput {
|
|
131
|
+
domainIdentifier: string | undefined;
|
|
132
|
+
groupType: GroupSearchType | undefined;
|
|
133
|
+
searchText?: string | undefined;
|
|
134
|
+
maxResults?: number | undefined;
|
|
135
|
+
nextToken?: string | undefined;
|
|
136
|
+
}
|
|
70
137
|
export interface GroupProfileSummary {
|
|
71
138
|
domainId?: string | undefined;
|
|
72
139
|
id?: string | undefined;
|
|
@@ -352,6 +352,9 @@ export declare var IsNullExpression$: StaticStructureSchema;
|
|
|
352
352
|
export declare var JobRunError$: StaticStructureSchema;
|
|
353
353
|
export declare var JobRunSummary$: StaticStructureSchema;
|
|
354
354
|
export declare var LakeFormationConfiguration$: StaticStructureSchema;
|
|
355
|
+
export declare var LakehousePropertiesInput$: StaticStructureSchema;
|
|
356
|
+
export declare var LakehousePropertiesOutput$: StaticStructureSchema;
|
|
357
|
+
export declare var LakehousePropertiesPatch$: StaticStructureSchema;
|
|
355
358
|
export declare var LessThanExpression$: StaticStructureSchema;
|
|
356
359
|
export declare var LessThanOrEqualToExpression$: StaticStructureSchema;
|
|
357
360
|
export declare var LikeExpression$: StaticStructureSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-datazone",
|
|
3
3
|
"description": "AWS SDK for JavaScript Datazone Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1036.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-datazone",
|
|
@@ -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.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.974.5",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.36",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.35",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
31
31
|
"@aws-sdk/types": "^3.973.8",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.21",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.17",
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
36
|
+
"@smithy/core": "^3.23.17",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
38
38
|
"@smithy/hash-node": "^4.2.14",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.14",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.14",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.5.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.32",
|
|
42
|
+
"@smithy/middleware-retry": "^4.5.5",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.20",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.14",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.14",
|
|
46
|
-
"@smithy/node-http-handler": "^4.6.
|
|
46
|
+
"@smithy/node-http-handler": "^4.6.1",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.14",
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
48
|
+
"@smithy/smithy-client": "^4.12.13",
|
|
49
49
|
"@smithy/types": "^4.14.1",
|
|
50
50
|
"@smithy/url-parser": "^4.2.14",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.49",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
56
56
|
"@smithy/util-endpoints": "^3.4.2",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.14",
|
|
58
|
-
"@smithy/util-retry": "^4.3.
|
|
59
|
-
"@smithy/util-stream": "^4.5.
|
|
58
|
+
"@smithy/util-retry": "^4.3.4",
|
|
59
|
+
"@smithy/util-stream": "^4.5.25",
|
|
60
60
|
"@smithy/util-utf8": "^4.2.2",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|