@aws-sdk/client-datazone 3.614.0 → 3.617.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 +40 -0
- package/dist-cjs/index.js +578 -84
- package/dist-es/DataZone.js +10 -0
- package/dist-es/DataZoneClient.js +5 -5
- package/dist-es/commands/CreateAssetFilterCommand.js +25 -0
- package/dist-es/commands/DeleteAssetFilterCommand.js +24 -0
- package/dist-es/commands/GetAssetFilterCommand.js +25 -0
- package/dist-es/commands/GetListingCommand.js +1 -1
- package/dist-es/commands/ListAssetFiltersCommand.js +25 -0
- package/dist-es/commands/ListEnvironmentBlueprintsCommand.js +1 -1
- package/dist-es/commands/ListEnvironmentProfilesCommand.js +1 -1
- package/dist-es/commands/ListEnvironmentsCommand.js +1 -1
- package/dist-es/commands/ListNotificationsCommand.js +1 -1
- package/dist-es/commands/UpdateAssetFilterCommand.js +25 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +49 -64
- package/dist-es/models/models_1.js +118 -1
- package/dist-es/pagination/ListAssetFiltersPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +270 -1
- package/dist-types/DataZone.d.ts +35 -0
- package/dist-types/DataZoneClient.d.ts +9 -4
- package/dist-types/commands/CreateAssetFilterCommand.d.ts +357 -0
- package/dist-types/commands/DeleteAssetFilterCommand.d.ts +81 -0
- package/dist-types/commands/DeleteListingCommand.d.ts +1 -1
- package/dist-types/commands/GetAssetFilterCommand.d.ts +221 -0
- package/dist-types/commands/GetEnvironmentBlueprintConfigurationCommand.d.ts +10 -0
- package/dist-types/commands/GetListingCommand.d.ts +1 -1
- package/dist-types/commands/ListAssetFiltersCommand.d.ts +98 -0
- package/dist-types/commands/ListEnvironmentBlueprintConfigurationsCommand.d.ts +10 -0
- package/dist-types/commands/ListEnvironmentBlueprintsCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListLineageNodeHistoryCommand.d.ts +1 -1
- package/dist-types/commands/ListNotificationsCommand.d.ts +1 -2
- package/dist-types/commands/PutEnvironmentBlueprintConfigurationCommand.d.ts +20 -0
- package/dist-types/commands/UpdateAssetFilterCommand.d.ts +354 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +725 -829
- package/dist-types/models/models_1.d.ts +1199 -1
- package/dist-types/pagination/ListAssetFiltersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/DataZone.d.ts +85 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +32 -2
- package/dist-types/ts3.4/commands/CreateAssetFilterCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteAssetFilterCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteListingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetAssetFilterCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetListingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAssetFiltersCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListEnvironmentBlueprintsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEnvironmentProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListLineageNodeHistoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListNotificationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateAssetFilterCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +346 -204
- package/dist-types/ts3.4/models/models_1.d.ts +348 -3
- package/dist-types/ts3.4/pagination/ListAssetFiltersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +17 -17
|
@@ -55,6 +55,16 @@ declare const GetEnvironmentBlueprintConfigurationCommand_base: {
|
|
|
55
55
|
* // },
|
|
56
56
|
* // createdAt: new Date("TIMESTAMP"),
|
|
57
57
|
* // updatedAt: new Date("TIMESTAMP"),
|
|
58
|
+
* // provisioningConfigurations: [ // ProvisioningConfigurationList
|
|
59
|
+
* // { // ProvisioningConfiguration Union: only one key present
|
|
60
|
+
* // lakeFormationConfiguration: { // LakeFormationConfiguration
|
|
61
|
+
* // locationRegistrationRole: "STRING_VALUE",
|
|
62
|
+
* // locationRegistrationExcludeS3Locations: [ // S3LocationList
|
|
63
|
+
* // "STRING_VALUE",
|
|
64
|
+
* // ],
|
|
65
|
+
* // },
|
|
66
|
+
* // },
|
|
67
|
+
* // ],
|
|
58
68
|
* // };
|
|
59
69
|
*
|
|
60
70
|
* ```
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import { GetListingInput, GetListingOutput } from "../models/
|
|
4
|
+
import { GetListingInput, GetListingOutput } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
+
import { ListAssetFiltersInput, ListAssetFiltersOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListAssetFiltersCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListAssetFiltersCommandInput extends ListAssetFiltersInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListAssetFiltersCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListAssetFiltersCommandOutput extends ListAssetFiltersOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListAssetFiltersCommand_base: {
|
|
25
|
+
new (input: ListAssetFiltersCommandInput): import("@smithy/smithy-client").CommandImpl<ListAssetFiltersCommandInput, ListAssetFiltersCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: ListAssetFiltersCommandInput): import("@smithy/smithy-client").CommandImpl<ListAssetFiltersCommandInput, ListAssetFiltersCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Lists asset filters.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { DataZoneClient, ListAssetFiltersCommand } from "@aws-sdk/client-datazone"; // ES Modules import
|
|
35
|
+
* // const { DataZoneClient, ListAssetFiltersCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
|
|
36
|
+
* const client = new DataZoneClient(config);
|
|
37
|
+
* const input = { // ListAssetFiltersInput
|
|
38
|
+
* domainIdentifier: "STRING_VALUE", // required
|
|
39
|
+
* assetIdentifier: "STRING_VALUE", // required
|
|
40
|
+
* status: "VALID" || "INVALID",
|
|
41
|
+
* nextToken: "STRING_VALUE",
|
|
42
|
+
* maxResults: Number("int"),
|
|
43
|
+
* };
|
|
44
|
+
* const command = new ListAssetFiltersCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // ListAssetFiltersOutput
|
|
47
|
+
* // items: [ // AssetFilters // required
|
|
48
|
+
* // { // AssetFilterSummary
|
|
49
|
+
* // id: "STRING_VALUE", // required
|
|
50
|
+
* // domainId: "STRING_VALUE", // required
|
|
51
|
+
* // assetId: "STRING_VALUE", // required
|
|
52
|
+
* // name: "STRING_VALUE", // required
|
|
53
|
+
* // description: "STRING_VALUE",
|
|
54
|
+
* // status: "VALID" || "INVALID",
|
|
55
|
+
* // effectiveColumnNames: [ // ColumnNameList
|
|
56
|
+
* // "STRING_VALUE",
|
|
57
|
+
* // ],
|
|
58
|
+
* // effectiveRowFilter: "STRING_VALUE",
|
|
59
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
60
|
+
* // errorMessage: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // nextToken: "STRING_VALUE",
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
66
|
+
* ```
|
|
67
|
+
*
|
|
68
|
+
* @param ListAssetFiltersCommandInput - {@link ListAssetFiltersCommandInput}
|
|
69
|
+
* @returns {@link ListAssetFiltersCommandOutput}
|
|
70
|
+
* @see {@link ListAssetFiltersCommandInput} for command's `input` shape.
|
|
71
|
+
* @see {@link ListAssetFiltersCommandOutput} for command's `response` shape.
|
|
72
|
+
* @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
75
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link InternalServerException} (server fault)
|
|
78
|
+
* <p>The request has failed because of an unknown error, exception or failure.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
81
|
+
* <p>The specified resource cannot be found.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
84
|
+
* <p>The request was denied due to request throttling.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ValidationException} (client fault)
|
|
87
|
+
* <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
90
|
+
* <p>You do not have permission to perform this action.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link DataZoneServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from DataZone service.</p>
|
|
94
|
+
*
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
export declare class ListAssetFiltersCommand extends ListAssetFiltersCommand_base {
|
|
98
|
+
}
|
|
@@ -58,6 +58,16 @@ declare const ListEnvironmentBlueprintConfigurationsCommand_base: {
|
|
|
58
58
|
* // },
|
|
59
59
|
* // createdAt: new Date("TIMESTAMP"),
|
|
60
60
|
* // updatedAt: new Date("TIMESTAMP"),
|
|
61
|
+
* // provisioningConfigurations: [ // ProvisioningConfigurationList
|
|
62
|
+
* // { // ProvisioningConfiguration Union: only one key present
|
|
63
|
+
* // lakeFormationConfiguration: { // LakeFormationConfiguration
|
|
64
|
+
* // locationRegistrationRole: "STRING_VALUE",
|
|
65
|
+
* // locationRegistrationExcludeS3Locations: [ // S3LocationList
|
|
66
|
+
* // "STRING_VALUE",
|
|
67
|
+
* // ],
|
|
68
|
+
* // },
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
61
71
|
* // },
|
|
62
72
|
* // ],
|
|
63
73
|
* // nextToken: "STRING_VALUE",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import { ListEnvironmentBlueprintsInput, ListEnvironmentBlueprintsOutput } from "../models/
|
|
4
|
+
import { ListEnvironmentBlueprintsInput, ListEnvironmentBlueprintsOutput } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import { ListEnvironmentProfilesInput, ListEnvironmentProfilesOutput } from "../models/
|
|
4
|
+
import { ListEnvironmentProfilesInput, ListEnvironmentProfilesOutput } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import { ListEnvironmentsInput, ListEnvironmentsOutput } from "../models/
|
|
4
|
+
import { ListEnvironmentsInput, ListEnvironmentsOutput } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import { ListLineageNodeHistoryInput, ListLineageNodeHistoryOutput } from "../models/
|
|
4
|
+
import { ListLineageNodeHistoryInput, ListLineageNodeHistoryOutput } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import { ListNotificationsInput } from "../models/
|
|
5
|
-
import { ListNotificationsOutput } from "../models/models_1";
|
|
4
|
+
import { ListNotificationsInput, ListNotificationsOutput } from "../models/models_1";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -47,6 +47,16 @@ declare const PutEnvironmentBlueprintConfigurationCommand_base: {
|
|
|
47
47
|
* "<keys>": "STRING_VALUE",
|
|
48
48
|
* },
|
|
49
49
|
* },
|
|
50
|
+
* provisioningConfigurations: [ // ProvisioningConfigurationList
|
|
51
|
+
* { // ProvisioningConfiguration Union: only one key present
|
|
52
|
+
* lakeFormationConfiguration: { // LakeFormationConfiguration
|
|
53
|
+
* locationRegistrationRole: "STRING_VALUE",
|
|
54
|
+
* locationRegistrationExcludeS3Locations: [ // S3LocationList
|
|
55
|
+
* "STRING_VALUE",
|
|
56
|
+
* ],
|
|
57
|
+
* },
|
|
58
|
+
* },
|
|
59
|
+
* ],
|
|
50
60
|
* };
|
|
51
61
|
* const command = new PutEnvironmentBlueprintConfigurationCommand(input);
|
|
52
62
|
* const response = await client.send(command);
|
|
@@ -65,6 +75,16 @@ declare const PutEnvironmentBlueprintConfigurationCommand_base: {
|
|
|
65
75
|
* // },
|
|
66
76
|
* // createdAt: new Date("TIMESTAMP"),
|
|
67
77
|
* // updatedAt: new Date("TIMESTAMP"),
|
|
78
|
+
* // provisioningConfigurations: [ // ProvisioningConfigurationList
|
|
79
|
+
* // { // ProvisioningConfiguration Union: only one key present
|
|
80
|
+
* // lakeFormationConfiguration: { // LakeFormationConfiguration
|
|
81
|
+
* // locationRegistrationRole: "STRING_VALUE",
|
|
82
|
+
* // locationRegistrationExcludeS3Locations: [ // S3LocationList
|
|
83
|
+
* // "STRING_VALUE",
|
|
84
|
+
* // ],
|
|
85
|
+
* // },
|
|
86
|
+
* // },
|
|
87
|
+
* // ],
|
|
68
88
|
* // };
|
|
69
89
|
*
|
|
70
90
|
* ```
|
|
@@ -0,0 +1,354 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
+
import { UpdateAssetFilterInput, UpdateAssetFilterOutput } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateAssetFilterCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateAssetFilterCommandInput extends UpdateAssetFilterInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateAssetFilterCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateAssetFilterCommandOutput extends UpdateAssetFilterOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateAssetFilterCommand_base: {
|
|
25
|
+
new (input: UpdateAssetFilterCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateAssetFilterCommandInput, UpdateAssetFilterCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: UpdateAssetFilterCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateAssetFilterCommandInput, UpdateAssetFilterCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Updates an asset filter.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { DataZoneClient, UpdateAssetFilterCommand } from "@aws-sdk/client-datazone"; // ES Modules import
|
|
35
|
+
* // const { DataZoneClient, UpdateAssetFilterCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
|
|
36
|
+
* const client = new DataZoneClient(config);
|
|
37
|
+
* const input = { // UpdateAssetFilterInput
|
|
38
|
+
* domainIdentifier: "STRING_VALUE", // required
|
|
39
|
+
* assetIdentifier: "STRING_VALUE", // required
|
|
40
|
+
* identifier: "STRING_VALUE", // required
|
|
41
|
+
* name: "STRING_VALUE",
|
|
42
|
+
* description: "STRING_VALUE",
|
|
43
|
+
* configuration: { // AssetFilterConfiguration Union: only one key present
|
|
44
|
+
* columnConfiguration: { // ColumnFilterConfiguration
|
|
45
|
+
* includedColumnNames: [ // ColumnNameList
|
|
46
|
+
* "STRING_VALUE",
|
|
47
|
+
* ],
|
|
48
|
+
* },
|
|
49
|
+
* rowConfiguration: { // RowFilterConfiguration
|
|
50
|
+
* rowFilter: { // RowFilter Union: only one key present
|
|
51
|
+
* expression: { // RowFilterExpression Union: only one key present
|
|
52
|
+
* equalTo: { // EqualToExpression
|
|
53
|
+
* columnName: "STRING_VALUE", // required
|
|
54
|
+
* value: "STRING_VALUE", // required
|
|
55
|
+
* },
|
|
56
|
+
* notEqualTo: { // NotEqualToExpression
|
|
57
|
+
* columnName: "STRING_VALUE", // required
|
|
58
|
+
* value: "STRING_VALUE", // required
|
|
59
|
+
* },
|
|
60
|
+
* greaterThan: { // GreaterThanExpression
|
|
61
|
+
* columnName: "STRING_VALUE", // required
|
|
62
|
+
* value: "STRING_VALUE", // required
|
|
63
|
+
* },
|
|
64
|
+
* lessThan: { // LessThanExpression
|
|
65
|
+
* columnName: "STRING_VALUE", // required
|
|
66
|
+
* value: "STRING_VALUE", // required
|
|
67
|
+
* },
|
|
68
|
+
* greaterThanOrEqualTo: { // GreaterThanOrEqualToExpression
|
|
69
|
+
* columnName: "STRING_VALUE", // required
|
|
70
|
+
* value: "STRING_VALUE", // required
|
|
71
|
+
* },
|
|
72
|
+
* lessThanOrEqualTo: { // LessThanOrEqualToExpression
|
|
73
|
+
* columnName: "STRING_VALUE", // required
|
|
74
|
+
* value: "STRING_VALUE", // required
|
|
75
|
+
* },
|
|
76
|
+
* isNull: { // IsNullExpression
|
|
77
|
+
* columnName: "STRING_VALUE", // required
|
|
78
|
+
* },
|
|
79
|
+
* isNotNull: { // IsNotNullExpression
|
|
80
|
+
* columnName: "STRING_VALUE", // required
|
|
81
|
+
* },
|
|
82
|
+
* in: { // InExpression
|
|
83
|
+
* columnName: "STRING_VALUE", // required
|
|
84
|
+
* values: [ // StringList // required
|
|
85
|
+
* "STRING_VALUE",
|
|
86
|
+
* ],
|
|
87
|
+
* },
|
|
88
|
+
* notIn: { // NotInExpression
|
|
89
|
+
* columnName: "STRING_VALUE", // required
|
|
90
|
+
* values: [ // required
|
|
91
|
+
* "STRING_VALUE",
|
|
92
|
+
* ],
|
|
93
|
+
* },
|
|
94
|
+
* like: { // LikeExpression
|
|
95
|
+
* columnName: "STRING_VALUE", // required
|
|
96
|
+
* value: "STRING_VALUE", // required
|
|
97
|
+
* },
|
|
98
|
+
* notLike: { // NotLikeExpression
|
|
99
|
+
* columnName: "STRING_VALUE", // required
|
|
100
|
+
* value: "STRING_VALUE", // required
|
|
101
|
+
* },
|
|
102
|
+
* },
|
|
103
|
+
* and: [ // RowFilterList
|
|
104
|
+
* {// Union: only one key present
|
|
105
|
+
* expression: {// Union: only one key present
|
|
106
|
+
* equalTo: {
|
|
107
|
+
* columnName: "STRING_VALUE", // required
|
|
108
|
+
* value: "STRING_VALUE", // required
|
|
109
|
+
* },
|
|
110
|
+
* notEqualTo: {
|
|
111
|
+
* columnName: "STRING_VALUE", // required
|
|
112
|
+
* value: "STRING_VALUE", // required
|
|
113
|
+
* },
|
|
114
|
+
* greaterThan: {
|
|
115
|
+
* columnName: "STRING_VALUE", // required
|
|
116
|
+
* value: "STRING_VALUE", // required
|
|
117
|
+
* },
|
|
118
|
+
* lessThan: {
|
|
119
|
+
* columnName: "STRING_VALUE", // required
|
|
120
|
+
* value: "STRING_VALUE", // required
|
|
121
|
+
* },
|
|
122
|
+
* greaterThanOrEqualTo: {
|
|
123
|
+
* columnName: "STRING_VALUE", // required
|
|
124
|
+
* value: "STRING_VALUE", // required
|
|
125
|
+
* },
|
|
126
|
+
* lessThanOrEqualTo: {
|
|
127
|
+
* columnName: "STRING_VALUE", // required
|
|
128
|
+
* value: "STRING_VALUE", // required
|
|
129
|
+
* },
|
|
130
|
+
* isNull: {
|
|
131
|
+
* columnName: "STRING_VALUE", // required
|
|
132
|
+
* },
|
|
133
|
+
* isNotNull: {
|
|
134
|
+
* columnName: "STRING_VALUE", // required
|
|
135
|
+
* },
|
|
136
|
+
* in: {
|
|
137
|
+
* columnName: "STRING_VALUE", // required
|
|
138
|
+
* values: [ // required
|
|
139
|
+
* "STRING_VALUE",
|
|
140
|
+
* ],
|
|
141
|
+
* },
|
|
142
|
+
* notIn: {
|
|
143
|
+
* columnName: "STRING_VALUE", // required
|
|
144
|
+
* values: [ // required
|
|
145
|
+
* "STRING_VALUE",
|
|
146
|
+
* ],
|
|
147
|
+
* },
|
|
148
|
+
* like: {
|
|
149
|
+
* columnName: "STRING_VALUE", // required
|
|
150
|
+
* value: "STRING_VALUE", // required
|
|
151
|
+
* },
|
|
152
|
+
* notLike: {
|
|
153
|
+
* columnName: "STRING_VALUE", // required
|
|
154
|
+
* value: "STRING_VALUE", // required
|
|
155
|
+
* },
|
|
156
|
+
* },
|
|
157
|
+
* and: [
|
|
158
|
+
* "<RowFilter>",
|
|
159
|
+
* ],
|
|
160
|
+
* or: [
|
|
161
|
+
* "<RowFilter>",
|
|
162
|
+
* ],
|
|
163
|
+
* },
|
|
164
|
+
* ],
|
|
165
|
+
* or: [
|
|
166
|
+
* "<RowFilter>",
|
|
167
|
+
* ],
|
|
168
|
+
* },
|
|
169
|
+
* sensitive: true || false,
|
|
170
|
+
* },
|
|
171
|
+
* },
|
|
172
|
+
* };
|
|
173
|
+
* const command = new UpdateAssetFilterCommand(input);
|
|
174
|
+
* const response = await client.send(command);
|
|
175
|
+
* // { // UpdateAssetFilterOutput
|
|
176
|
+
* // id: "STRING_VALUE", // required
|
|
177
|
+
* // domainId: "STRING_VALUE", // required
|
|
178
|
+
* // assetId: "STRING_VALUE", // required
|
|
179
|
+
* // name: "STRING_VALUE", // required
|
|
180
|
+
* // description: "STRING_VALUE",
|
|
181
|
+
* // status: "VALID" || "INVALID",
|
|
182
|
+
* // configuration: { // AssetFilterConfiguration Union: only one key present
|
|
183
|
+
* // columnConfiguration: { // ColumnFilterConfiguration
|
|
184
|
+
* // includedColumnNames: [ // ColumnNameList
|
|
185
|
+
* // "STRING_VALUE",
|
|
186
|
+
* // ],
|
|
187
|
+
* // },
|
|
188
|
+
* // rowConfiguration: { // RowFilterConfiguration
|
|
189
|
+
* // rowFilter: { // RowFilter Union: only one key present
|
|
190
|
+
* // expression: { // RowFilterExpression Union: only one key present
|
|
191
|
+
* // equalTo: { // EqualToExpression
|
|
192
|
+
* // columnName: "STRING_VALUE", // required
|
|
193
|
+
* // value: "STRING_VALUE", // required
|
|
194
|
+
* // },
|
|
195
|
+
* // notEqualTo: { // NotEqualToExpression
|
|
196
|
+
* // columnName: "STRING_VALUE", // required
|
|
197
|
+
* // value: "STRING_VALUE", // required
|
|
198
|
+
* // },
|
|
199
|
+
* // greaterThan: { // GreaterThanExpression
|
|
200
|
+
* // columnName: "STRING_VALUE", // required
|
|
201
|
+
* // value: "STRING_VALUE", // required
|
|
202
|
+
* // },
|
|
203
|
+
* // lessThan: { // LessThanExpression
|
|
204
|
+
* // columnName: "STRING_VALUE", // required
|
|
205
|
+
* // value: "STRING_VALUE", // required
|
|
206
|
+
* // },
|
|
207
|
+
* // greaterThanOrEqualTo: { // GreaterThanOrEqualToExpression
|
|
208
|
+
* // columnName: "STRING_VALUE", // required
|
|
209
|
+
* // value: "STRING_VALUE", // required
|
|
210
|
+
* // },
|
|
211
|
+
* // lessThanOrEqualTo: { // LessThanOrEqualToExpression
|
|
212
|
+
* // columnName: "STRING_VALUE", // required
|
|
213
|
+
* // value: "STRING_VALUE", // required
|
|
214
|
+
* // },
|
|
215
|
+
* // isNull: { // IsNullExpression
|
|
216
|
+
* // columnName: "STRING_VALUE", // required
|
|
217
|
+
* // },
|
|
218
|
+
* // isNotNull: { // IsNotNullExpression
|
|
219
|
+
* // columnName: "STRING_VALUE", // required
|
|
220
|
+
* // },
|
|
221
|
+
* // in: { // InExpression
|
|
222
|
+
* // columnName: "STRING_VALUE", // required
|
|
223
|
+
* // values: [ // StringList // required
|
|
224
|
+
* // "STRING_VALUE",
|
|
225
|
+
* // ],
|
|
226
|
+
* // },
|
|
227
|
+
* // notIn: { // NotInExpression
|
|
228
|
+
* // columnName: "STRING_VALUE", // required
|
|
229
|
+
* // values: [ // required
|
|
230
|
+
* // "STRING_VALUE",
|
|
231
|
+
* // ],
|
|
232
|
+
* // },
|
|
233
|
+
* // like: { // LikeExpression
|
|
234
|
+
* // columnName: "STRING_VALUE", // required
|
|
235
|
+
* // value: "STRING_VALUE", // required
|
|
236
|
+
* // },
|
|
237
|
+
* // notLike: { // NotLikeExpression
|
|
238
|
+
* // columnName: "STRING_VALUE", // required
|
|
239
|
+
* // value: "STRING_VALUE", // required
|
|
240
|
+
* // },
|
|
241
|
+
* // },
|
|
242
|
+
* // and: [ // RowFilterList
|
|
243
|
+
* // {// Union: only one key present
|
|
244
|
+
* // expression: {// Union: only one key present
|
|
245
|
+
* // equalTo: {
|
|
246
|
+
* // columnName: "STRING_VALUE", // required
|
|
247
|
+
* // value: "STRING_VALUE", // required
|
|
248
|
+
* // },
|
|
249
|
+
* // notEqualTo: {
|
|
250
|
+
* // columnName: "STRING_VALUE", // required
|
|
251
|
+
* // value: "STRING_VALUE", // required
|
|
252
|
+
* // },
|
|
253
|
+
* // greaterThan: {
|
|
254
|
+
* // columnName: "STRING_VALUE", // required
|
|
255
|
+
* // value: "STRING_VALUE", // required
|
|
256
|
+
* // },
|
|
257
|
+
* // lessThan: {
|
|
258
|
+
* // columnName: "STRING_VALUE", // required
|
|
259
|
+
* // value: "STRING_VALUE", // required
|
|
260
|
+
* // },
|
|
261
|
+
* // greaterThanOrEqualTo: {
|
|
262
|
+
* // columnName: "STRING_VALUE", // required
|
|
263
|
+
* // value: "STRING_VALUE", // required
|
|
264
|
+
* // },
|
|
265
|
+
* // lessThanOrEqualTo: {
|
|
266
|
+
* // columnName: "STRING_VALUE", // required
|
|
267
|
+
* // value: "STRING_VALUE", // required
|
|
268
|
+
* // },
|
|
269
|
+
* // isNull: {
|
|
270
|
+
* // columnName: "STRING_VALUE", // required
|
|
271
|
+
* // },
|
|
272
|
+
* // isNotNull: {
|
|
273
|
+
* // columnName: "STRING_VALUE", // required
|
|
274
|
+
* // },
|
|
275
|
+
* // in: {
|
|
276
|
+
* // columnName: "STRING_VALUE", // required
|
|
277
|
+
* // values: [ // required
|
|
278
|
+
* // "STRING_VALUE",
|
|
279
|
+
* // ],
|
|
280
|
+
* // },
|
|
281
|
+
* // notIn: {
|
|
282
|
+
* // columnName: "STRING_VALUE", // required
|
|
283
|
+
* // values: [ // required
|
|
284
|
+
* // "STRING_VALUE",
|
|
285
|
+
* // ],
|
|
286
|
+
* // },
|
|
287
|
+
* // like: {
|
|
288
|
+
* // columnName: "STRING_VALUE", // required
|
|
289
|
+
* // value: "STRING_VALUE", // required
|
|
290
|
+
* // },
|
|
291
|
+
* // notLike: {
|
|
292
|
+
* // columnName: "STRING_VALUE", // required
|
|
293
|
+
* // value: "STRING_VALUE", // required
|
|
294
|
+
* // },
|
|
295
|
+
* // },
|
|
296
|
+
* // and: [
|
|
297
|
+
* // "<RowFilter>",
|
|
298
|
+
* // ],
|
|
299
|
+
* // or: [
|
|
300
|
+
* // "<RowFilter>",
|
|
301
|
+
* // ],
|
|
302
|
+
* // },
|
|
303
|
+
* // ],
|
|
304
|
+
* // or: [
|
|
305
|
+
* // "<RowFilter>",
|
|
306
|
+
* // ],
|
|
307
|
+
* // },
|
|
308
|
+
* // sensitive: true || false,
|
|
309
|
+
* // },
|
|
310
|
+
* // },
|
|
311
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
312
|
+
* // errorMessage: "STRING_VALUE",
|
|
313
|
+
* // effectiveColumnNames: [
|
|
314
|
+
* // "STRING_VALUE",
|
|
315
|
+
* // ],
|
|
316
|
+
* // effectiveRowFilter: "STRING_VALUE",
|
|
317
|
+
* // };
|
|
318
|
+
*
|
|
319
|
+
* ```
|
|
320
|
+
*
|
|
321
|
+
* @param UpdateAssetFilterCommandInput - {@link UpdateAssetFilterCommandInput}
|
|
322
|
+
* @returns {@link UpdateAssetFilterCommandOutput}
|
|
323
|
+
* @see {@link UpdateAssetFilterCommandInput} for command's `input` shape.
|
|
324
|
+
* @see {@link UpdateAssetFilterCommandOutput} for command's `response` shape.
|
|
325
|
+
* @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
|
|
326
|
+
*
|
|
327
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
328
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
329
|
+
*
|
|
330
|
+
* @throws {@link ConflictException} (client fault)
|
|
331
|
+
* <p>There is a conflict while performing this action.</p>
|
|
332
|
+
*
|
|
333
|
+
* @throws {@link InternalServerException} (server fault)
|
|
334
|
+
* <p>The request has failed because of an unknown error, exception or failure.</p>
|
|
335
|
+
*
|
|
336
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
337
|
+
* <p>The specified resource cannot be found.</p>
|
|
338
|
+
*
|
|
339
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
340
|
+
* <p>The request was denied due to request throttling.</p>
|
|
341
|
+
*
|
|
342
|
+
* @throws {@link ValidationException} (client fault)
|
|
343
|
+
* <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
|
|
344
|
+
*
|
|
345
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
346
|
+
* <p>You do not have permission to perform this action.</p>
|
|
347
|
+
*
|
|
348
|
+
* @throws {@link DataZoneServiceException}
|
|
349
|
+
* <p>Base exception class for all service exceptions from DataZone service.</p>
|
|
350
|
+
*
|
|
351
|
+
* @public
|
|
352
|
+
*/
|
|
353
|
+
export declare class UpdateAssetFilterCommand extends UpdateAssetFilterCommand_base {
|
|
354
|
+
}
|
|
@@ -4,6 +4,7 @@ export * from "./AssociateEnvironmentRoleCommand";
|
|
|
4
4
|
export * from "./CancelMetadataGenerationRunCommand";
|
|
5
5
|
export * from "./CancelSubscriptionCommand";
|
|
6
6
|
export * from "./CreateAssetCommand";
|
|
7
|
+
export * from "./CreateAssetFilterCommand";
|
|
7
8
|
export * from "./CreateAssetRevisionCommand";
|
|
8
9
|
export * from "./CreateAssetTypeCommand";
|
|
9
10
|
export * from "./CreateDataSourceCommand";
|
|
@@ -23,6 +24,7 @@ export * from "./CreateSubscriptionRequestCommand";
|
|
|
23
24
|
export * from "./CreateSubscriptionTargetCommand";
|
|
24
25
|
export * from "./CreateUserProfileCommand";
|
|
25
26
|
export * from "./DeleteAssetCommand";
|
|
27
|
+
export * from "./DeleteAssetFilterCommand";
|
|
26
28
|
export * from "./DeleteAssetTypeCommand";
|
|
27
29
|
export * from "./DeleteDataSourceCommand";
|
|
28
30
|
export * from "./DeleteDomainCommand";
|
|
@@ -42,6 +44,7 @@ export * from "./DeleteSubscriptionTargetCommand";
|
|
|
42
44
|
export * from "./DeleteTimeSeriesDataPointsCommand";
|
|
43
45
|
export * from "./DisassociateEnvironmentRoleCommand";
|
|
44
46
|
export * from "./GetAssetCommand";
|
|
47
|
+
export * from "./GetAssetFilterCommand";
|
|
45
48
|
export * from "./GetAssetTypeCommand";
|
|
46
49
|
export * from "./GetDataSourceCommand";
|
|
47
50
|
export * from "./GetDataSourceRunCommand";
|
|
@@ -66,6 +69,7 @@ export * from "./GetSubscriptionRequestDetailsCommand";
|
|
|
66
69
|
export * from "./GetSubscriptionTargetCommand";
|
|
67
70
|
export * from "./GetTimeSeriesDataPointCommand";
|
|
68
71
|
export * from "./GetUserProfileCommand";
|
|
72
|
+
export * from "./ListAssetFiltersCommand";
|
|
69
73
|
export * from "./ListAssetRevisionsCommand";
|
|
70
74
|
export * from "./ListDataSourceRunActivitiesCommand";
|
|
71
75
|
export * from "./ListDataSourceRunsCommand";
|
|
@@ -102,6 +106,7 @@ export * from "./StartDataSourceRunCommand";
|
|
|
102
106
|
export * from "./StartMetadataGenerationRunCommand";
|
|
103
107
|
export * from "./TagResourceCommand";
|
|
104
108
|
export * from "./UntagResourceCommand";
|
|
109
|
+
export * from "./UpdateAssetFilterCommand";
|
|
105
110
|
export * from "./UpdateDataSourceCommand";
|
|
106
111
|
export * from "./UpdateDomainCommand";
|
|
107
112
|
export * from "./UpdateEnvironmentActionCommand";
|