@aws-sdk/client-datazone 3.974.0 → 3.978.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 +7 -0
- package/dist-cjs/index.js +147 -75
- package/dist-es/DataZone.js +79 -1
- package/dist-es/commands/DeleteDataExportConfigurationCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +16 -0
- package/dist-types/DataZone.d.ts +267 -1
- package/dist-types/DataZoneClient.d.ts +3 -2
- package/dist-types/commands/DeleteDataExportConfigurationCommand.d.ts +93 -0
- package/dist-types/commands/PutDataExportConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_1.d.ts +16 -21
- package/dist-types/models/models_2.d.ts +20 -0
- package/dist-types/schemas/schemas_0.d.ts +3 -0
- package/dist-types/ts3.4/DataZone.d.ts +281 -1
- package/dist-types/ts3.4/DataZoneClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DeleteDataExportConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +4 -5
- package/dist-types/ts3.4/models/models_2.d.ts +5 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/package.json +17 -17
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
AcceptPredictionsCommandInput,
|
|
4
8
|
AcceptPredictionsCommandOutput,
|
|
@@ -171,6 +175,10 @@ import {
|
|
|
171
175
|
DeleteConnectionCommandInput,
|
|
172
176
|
DeleteConnectionCommandOutput,
|
|
173
177
|
} from "./commands/DeleteConnectionCommand";
|
|
178
|
+
import {
|
|
179
|
+
DeleteDataExportConfigurationCommandInput,
|
|
180
|
+
DeleteDataExportConfigurationCommandOutput,
|
|
181
|
+
} from "./commands/DeleteDataExportConfigurationCommand";
|
|
174
182
|
import {
|
|
175
183
|
DeleteDataProductCommandInput,
|
|
176
184
|
DeleteDataProductCommandOutput,
|
|
@@ -1256,6 +1264,19 @@ export interface DataZone {
|
|
|
1256
1264
|
options: __HttpHandlerOptions,
|
|
1257
1265
|
cb: (err: any, data?: DeleteConnectionCommandOutput) => void
|
|
1258
1266
|
): void;
|
|
1267
|
+
deleteDataExportConfiguration(
|
|
1268
|
+
args: DeleteDataExportConfigurationCommandInput,
|
|
1269
|
+
options?: __HttpHandlerOptions
|
|
1270
|
+
): Promise<DeleteDataExportConfigurationCommandOutput>;
|
|
1271
|
+
deleteDataExportConfiguration(
|
|
1272
|
+
args: DeleteDataExportConfigurationCommandInput,
|
|
1273
|
+
cb: (err: any, data?: DeleteDataExportConfigurationCommandOutput) => void
|
|
1274
|
+
): void;
|
|
1275
|
+
deleteDataExportConfiguration(
|
|
1276
|
+
args: DeleteDataExportConfigurationCommandInput,
|
|
1277
|
+
options: __HttpHandlerOptions,
|
|
1278
|
+
cb: (err: any, data?: DeleteDataExportConfigurationCommandOutput) => void
|
|
1279
|
+
): void;
|
|
1259
1280
|
deleteDataProduct(
|
|
1260
1281
|
args: DeleteDataProductCommandInput,
|
|
1261
1282
|
options?: __HttpHandlerOptions
|
|
@@ -2984,5 +3005,264 @@ export interface DataZone {
|
|
|
2984
3005
|
options: __HttpHandlerOptions,
|
|
2985
3006
|
cb: (err: any, data?: UpdateUserProfileCommandOutput) => void
|
|
2986
3007
|
): void;
|
|
3008
|
+
paginateListAccountPools(
|
|
3009
|
+
args: ListAccountPoolsCommandInput,
|
|
3010
|
+
paginationConfig?: Pick<
|
|
3011
|
+
PaginationConfiguration,
|
|
3012
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3013
|
+
>
|
|
3014
|
+
): Paginator<ListAccountPoolsCommandOutput>;
|
|
3015
|
+
paginateListAccountsInAccountPool(
|
|
3016
|
+
args: ListAccountsInAccountPoolCommandInput,
|
|
3017
|
+
paginationConfig?: Pick<
|
|
3018
|
+
PaginationConfiguration,
|
|
3019
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3020
|
+
>
|
|
3021
|
+
): Paginator<ListAccountsInAccountPoolCommandOutput>;
|
|
3022
|
+
paginateListAssetFilters(
|
|
3023
|
+
args: ListAssetFiltersCommandInput,
|
|
3024
|
+
paginationConfig?: Pick<
|
|
3025
|
+
PaginationConfiguration,
|
|
3026
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3027
|
+
>
|
|
3028
|
+
): Paginator<ListAssetFiltersCommandOutput>;
|
|
3029
|
+
paginateListAssetRevisions(
|
|
3030
|
+
args: ListAssetRevisionsCommandInput,
|
|
3031
|
+
paginationConfig?: Pick<
|
|
3032
|
+
PaginationConfiguration,
|
|
3033
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3034
|
+
>
|
|
3035
|
+
): Paginator<ListAssetRevisionsCommandOutput>;
|
|
3036
|
+
paginateListConnections(
|
|
3037
|
+
args: ListConnectionsCommandInput,
|
|
3038
|
+
paginationConfig?: Pick<
|
|
3039
|
+
PaginationConfiguration,
|
|
3040
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3041
|
+
>
|
|
3042
|
+
): Paginator<ListConnectionsCommandOutput>;
|
|
3043
|
+
paginateListDataProductRevisions(
|
|
3044
|
+
args: ListDataProductRevisionsCommandInput,
|
|
3045
|
+
paginationConfig?: Pick<
|
|
3046
|
+
PaginationConfiguration,
|
|
3047
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3048
|
+
>
|
|
3049
|
+
): Paginator<ListDataProductRevisionsCommandOutput>;
|
|
3050
|
+
paginateListDataSourceRunActivities(
|
|
3051
|
+
args: ListDataSourceRunActivitiesCommandInput,
|
|
3052
|
+
paginationConfig?: Pick<
|
|
3053
|
+
PaginationConfiguration,
|
|
3054
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3055
|
+
>
|
|
3056
|
+
): Paginator<ListDataSourceRunActivitiesCommandOutput>;
|
|
3057
|
+
paginateListDataSourceRuns(
|
|
3058
|
+
args: ListDataSourceRunsCommandInput,
|
|
3059
|
+
paginationConfig?: Pick<
|
|
3060
|
+
PaginationConfiguration,
|
|
3061
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3062
|
+
>
|
|
3063
|
+
): Paginator<ListDataSourceRunsCommandOutput>;
|
|
3064
|
+
paginateListDataSources(
|
|
3065
|
+
args: ListDataSourcesCommandInput,
|
|
3066
|
+
paginationConfig?: Pick<
|
|
3067
|
+
PaginationConfiguration,
|
|
3068
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3069
|
+
>
|
|
3070
|
+
): Paginator<ListDataSourcesCommandOutput>;
|
|
3071
|
+
paginateListDomains(
|
|
3072
|
+
args?: ListDomainsCommandInput,
|
|
3073
|
+
paginationConfig?: Pick<
|
|
3074
|
+
PaginationConfiguration,
|
|
3075
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3076
|
+
>
|
|
3077
|
+
): Paginator<ListDomainsCommandOutput>;
|
|
3078
|
+
paginateListDomainUnitsForParent(
|
|
3079
|
+
args: ListDomainUnitsForParentCommandInput,
|
|
3080
|
+
paginationConfig?: Pick<
|
|
3081
|
+
PaginationConfiguration,
|
|
3082
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3083
|
+
>
|
|
3084
|
+
): Paginator<ListDomainUnitsForParentCommandOutput>;
|
|
3085
|
+
paginateListEntityOwners(
|
|
3086
|
+
args: ListEntityOwnersCommandInput,
|
|
3087
|
+
paginationConfig?: Pick<
|
|
3088
|
+
PaginationConfiguration,
|
|
3089
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3090
|
+
>
|
|
3091
|
+
): Paginator<ListEntityOwnersCommandOutput>;
|
|
3092
|
+
paginateListEnvironmentActions(
|
|
3093
|
+
args: ListEnvironmentActionsCommandInput,
|
|
3094
|
+
paginationConfig?: Pick<
|
|
3095
|
+
PaginationConfiguration,
|
|
3096
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3097
|
+
>
|
|
3098
|
+
): Paginator<ListEnvironmentActionsCommandOutput>;
|
|
3099
|
+
paginateListEnvironmentBlueprintConfigurations(
|
|
3100
|
+
args: ListEnvironmentBlueprintConfigurationsCommandInput,
|
|
3101
|
+
paginationConfig?: Pick<
|
|
3102
|
+
PaginationConfiguration,
|
|
3103
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3104
|
+
>
|
|
3105
|
+
): Paginator<ListEnvironmentBlueprintConfigurationsCommandOutput>;
|
|
3106
|
+
paginateListEnvironmentBlueprints(
|
|
3107
|
+
args: ListEnvironmentBlueprintsCommandInput,
|
|
3108
|
+
paginationConfig?: Pick<
|
|
3109
|
+
PaginationConfiguration,
|
|
3110
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3111
|
+
>
|
|
3112
|
+
): Paginator<ListEnvironmentBlueprintsCommandOutput>;
|
|
3113
|
+
paginateListEnvironmentProfiles(
|
|
3114
|
+
args: ListEnvironmentProfilesCommandInput,
|
|
3115
|
+
paginationConfig?: Pick<
|
|
3116
|
+
PaginationConfiguration,
|
|
3117
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3118
|
+
>
|
|
3119
|
+
): Paginator<ListEnvironmentProfilesCommandOutput>;
|
|
3120
|
+
paginateListEnvironments(
|
|
3121
|
+
args: ListEnvironmentsCommandInput,
|
|
3122
|
+
paginationConfig?: Pick<
|
|
3123
|
+
PaginationConfiguration,
|
|
3124
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3125
|
+
>
|
|
3126
|
+
): Paginator<ListEnvironmentsCommandOutput>;
|
|
3127
|
+
paginateListJobRuns(
|
|
3128
|
+
args: ListJobRunsCommandInput,
|
|
3129
|
+
paginationConfig?: Pick<
|
|
3130
|
+
PaginationConfiguration,
|
|
3131
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3132
|
+
>
|
|
3133
|
+
): Paginator<ListJobRunsCommandOutput>;
|
|
3134
|
+
paginateListLineageEvents(
|
|
3135
|
+
args: ListLineageEventsCommandInput,
|
|
3136
|
+
paginationConfig?: Pick<
|
|
3137
|
+
PaginationConfiguration,
|
|
3138
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3139
|
+
>
|
|
3140
|
+
): Paginator<ListLineageEventsCommandOutput>;
|
|
3141
|
+
paginateListLineageNodeHistory(
|
|
3142
|
+
args: ListLineageNodeHistoryCommandInput,
|
|
3143
|
+
paginationConfig?: Pick<
|
|
3144
|
+
PaginationConfiguration,
|
|
3145
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3146
|
+
>
|
|
3147
|
+
): Paginator<ListLineageNodeHistoryCommandOutput>;
|
|
3148
|
+
paginateListMetadataGenerationRuns(
|
|
3149
|
+
args: ListMetadataGenerationRunsCommandInput,
|
|
3150
|
+
paginationConfig?: Pick<
|
|
3151
|
+
PaginationConfiguration,
|
|
3152
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3153
|
+
>
|
|
3154
|
+
): Paginator<ListMetadataGenerationRunsCommandOutput>;
|
|
3155
|
+
paginateListNotifications(
|
|
3156
|
+
args: ListNotificationsCommandInput,
|
|
3157
|
+
paginationConfig?: Pick<
|
|
3158
|
+
PaginationConfiguration,
|
|
3159
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3160
|
+
>
|
|
3161
|
+
): Paginator<ListNotificationsCommandOutput>;
|
|
3162
|
+
paginateListPolicyGrants(
|
|
3163
|
+
args: ListPolicyGrantsCommandInput,
|
|
3164
|
+
paginationConfig?: Pick<
|
|
3165
|
+
PaginationConfiguration,
|
|
3166
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3167
|
+
>
|
|
3168
|
+
): Paginator<ListPolicyGrantsCommandOutput>;
|
|
3169
|
+
paginateListProjectMemberships(
|
|
3170
|
+
args: ListProjectMembershipsCommandInput,
|
|
3171
|
+
paginationConfig?: Pick<
|
|
3172
|
+
PaginationConfiguration,
|
|
3173
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3174
|
+
>
|
|
3175
|
+
): Paginator<ListProjectMembershipsCommandOutput>;
|
|
3176
|
+
paginateListProjectProfiles(
|
|
3177
|
+
args: ListProjectProfilesCommandInput,
|
|
3178
|
+
paginationConfig?: Pick<
|
|
3179
|
+
PaginationConfiguration,
|
|
3180
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3181
|
+
>
|
|
3182
|
+
): Paginator<ListProjectProfilesCommandOutput>;
|
|
3183
|
+
paginateListProjects(
|
|
3184
|
+
args: ListProjectsCommandInput,
|
|
3185
|
+
paginationConfig?: Pick<
|
|
3186
|
+
PaginationConfiguration,
|
|
3187
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3188
|
+
>
|
|
3189
|
+
): Paginator<ListProjectsCommandOutput>;
|
|
3190
|
+
paginateListRules(
|
|
3191
|
+
args: ListRulesCommandInput,
|
|
3192
|
+
paginationConfig?: Pick<
|
|
3193
|
+
PaginationConfiguration,
|
|
3194
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3195
|
+
>
|
|
3196
|
+
): Paginator<ListRulesCommandOutput>;
|
|
3197
|
+
paginateListSubscriptionGrants(
|
|
3198
|
+
args: ListSubscriptionGrantsCommandInput,
|
|
3199
|
+
paginationConfig?: Pick<
|
|
3200
|
+
PaginationConfiguration,
|
|
3201
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3202
|
+
>
|
|
3203
|
+
): Paginator<ListSubscriptionGrantsCommandOutput>;
|
|
3204
|
+
paginateListSubscriptionRequests(
|
|
3205
|
+
args: ListSubscriptionRequestsCommandInput,
|
|
3206
|
+
paginationConfig?: Pick<
|
|
3207
|
+
PaginationConfiguration,
|
|
3208
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3209
|
+
>
|
|
3210
|
+
): Paginator<ListSubscriptionRequestsCommandOutput>;
|
|
3211
|
+
paginateListSubscriptions(
|
|
3212
|
+
args: ListSubscriptionsCommandInput,
|
|
3213
|
+
paginationConfig?: Pick<
|
|
3214
|
+
PaginationConfiguration,
|
|
3215
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3216
|
+
>
|
|
3217
|
+
): Paginator<ListSubscriptionsCommandOutput>;
|
|
3218
|
+
paginateListSubscriptionTargets(
|
|
3219
|
+
args: ListSubscriptionTargetsCommandInput,
|
|
3220
|
+
paginationConfig?: Pick<
|
|
3221
|
+
PaginationConfiguration,
|
|
3222
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3223
|
+
>
|
|
3224
|
+
): Paginator<ListSubscriptionTargetsCommandOutput>;
|
|
3225
|
+
paginateListTimeSeriesDataPoints(
|
|
3226
|
+
args: ListTimeSeriesDataPointsCommandInput,
|
|
3227
|
+
paginationConfig?: Pick<
|
|
3228
|
+
PaginationConfiguration,
|
|
3229
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3230
|
+
>
|
|
3231
|
+
): Paginator<ListTimeSeriesDataPointsCommandOutput>;
|
|
3232
|
+
paginateSearch(
|
|
3233
|
+
args: SearchCommandInput,
|
|
3234
|
+
paginationConfig?: Pick<
|
|
3235
|
+
PaginationConfiguration,
|
|
3236
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3237
|
+
>
|
|
3238
|
+
): Paginator<SearchCommandOutput>;
|
|
3239
|
+
paginateSearchGroupProfiles(
|
|
3240
|
+
args: SearchGroupProfilesCommandInput,
|
|
3241
|
+
paginationConfig?: Pick<
|
|
3242
|
+
PaginationConfiguration,
|
|
3243
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3244
|
+
>
|
|
3245
|
+
): Paginator<SearchGroupProfilesCommandOutput>;
|
|
3246
|
+
paginateSearchListings(
|
|
3247
|
+
args: SearchListingsCommandInput,
|
|
3248
|
+
paginationConfig?: Pick<
|
|
3249
|
+
PaginationConfiguration,
|
|
3250
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3251
|
+
>
|
|
3252
|
+
): Paginator<SearchListingsCommandOutput>;
|
|
3253
|
+
paginateSearchTypes(
|
|
3254
|
+
args: SearchTypesCommandInput,
|
|
3255
|
+
paginationConfig?: Pick<
|
|
3256
|
+
PaginationConfiguration,
|
|
3257
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3258
|
+
>
|
|
3259
|
+
): Paginator<SearchTypesCommandOutput>;
|
|
3260
|
+
paginateSearchUserProfiles(
|
|
3261
|
+
args: SearchUserProfilesCommandInput,
|
|
3262
|
+
paginationConfig?: Pick<
|
|
3263
|
+
PaginationConfiguration,
|
|
3264
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
3265
|
+
>
|
|
3266
|
+
): Paginator<SearchUserProfilesCommandOutput>;
|
|
2987
3267
|
}
|
|
2988
3268
|
export declare class DataZone extends DataZoneClient implements DataZone {}
|
|
@@ -217,6 +217,10 @@ import {
|
|
|
217
217
|
DeleteConnectionCommandInput,
|
|
218
218
|
DeleteConnectionCommandOutput,
|
|
219
219
|
} from "./commands/DeleteConnectionCommand";
|
|
220
|
+
import {
|
|
221
|
+
DeleteDataExportConfigurationCommandInput,
|
|
222
|
+
DeleteDataExportConfigurationCommandOutput,
|
|
223
|
+
} from "./commands/DeleteDataExportConfigurationCommand";
|
|
220
224
|
import {
|
|
221
225
|
DeleteDataProductCommandInput,
|
|
222
226
|
DeleteDataProductCommandOutput,
|
|
@@ -792,6 +796,7 @@ export type ServiceInputTypes =
|
|
|
792
796
|
| DeleteAssetFilterCommandInput
|
|
793
797
|
| DeleteAssetTypeCommandInput
|
|
794
798
|
| DeleteConnectionCommandInput
|
|
799
|
+
| DeleteDataExportConfigurationCommandInput
|
|
795
800
|
| DeleteDataProductCommandInput
|
|
796
801
|
| DeleteDataSourceCommandInput
|
|
797
802
|
| DeleteDomainCommandInput
|
|
@@ -967,6 +972,7 @@ export type ServiceOutputTypes =
|
|
|
967
972
|
| DeleteAssetFilterCommandOutput
|
|
968
973
|
| DeleteAssetTypeCommandOutput
|
|
969
974
|
| DeleteConnectionCommandOutput
|
|
975
|
+
| DeleteDataExportConfigurationCommandOutput
|
|
970
976
|
| DeleteDataProductCommandOutput
|
|
971
977
|
| DeleteDataSourceCommandOutput
|
|
972
978
|
| DeleteDomainCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteDataExportConfigurationInput,
|
|
10
|
+
DeleteDataExportConfigurationOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteDataExportConfigurationCommandInput
|
|
15
|
+
extends DeleteDataExportConfigurationInput {}
|
|
16
|
+
export interface DeleteDataExportConfigurationCommandOutput
|
|
17
|
+
extends DeleteDataExportConfigurationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteDataExportConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteDataExportConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteDataExportConfigurationCommandInput,
|
|
24
|
+
DeleteDataExportConfigurationCommandOutput,
|
|
25
|
+
DataZoneClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteDataExportConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteDataExportConfigurationCommandInput,
|
|
33
|
+
DeleteDataExportConfigurationCommandOutput,
|
|
34
|
+
DataZoneClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteDataExportConfigurationCommand extends DeleteDataExportConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteDataExportConfigurationInput;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteDataExportConfigurationCommandInput;
|
|
48
|
+
output: DeleteDataExportConfigurationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { TagResourceRequest, TagResourceResponse } from "../models/
|
|
8
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_2";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
@@ -41,6 +41,7 @@ export * from "./DeleteAssetCommand";
|
|
|
41
41
|
export * from "./DeleteAssetFilterCommand";
|
|
42
42
|
export * from "./DeleteAssetTypeCommand";
|
|
43
43
|
export * from "./DeleteConnectionCommand";
|
|
44
|
+
export * from "./DeleteDataExportConfigurationCommand";
|
|
44
45
|
export * from "./DeleteDataProductCommand";
|
|
45
46
|
export * from "./DeleteDataSourceCommand";
|
|
46
47
|
export * from "./DeleteDomainCommand";
|
|
@@ -479,6 +479,10 @@ export interface DeleteConnectionInput {
|
|
|
479
479
|
export interface DeleteConnectionOutput {
|
|
480
480
|
status?: string | undefined;
|
|
481
481
|
}
|
|
482
|
+
export interface DeleteDataExportConfigurationInput {
|
|
483
|
+
domainIdentifier: string | undefined;
|
|
484
|
+
}
|
|
485
|
+
export interface DeleteDataExportConfigurationOutput {}
|
|
482
486
|
export interface DeleteEnvironmentInput {
|
|
483
487
|
domainIdentifier: string | undefined;
|
|
484
488
|
identifier: string | undefined;
|
|
@@ -2455,8 +2459,3 @@ export interface SearchUserProfilesOutput {
|
|
|
2455
2459
|
items?: UserProfileSummary[] | undefined;
|
|
2456
2460
|
nextToken?: string | undefined;
|
|
2457
2461
|
}
|
|
2458
|
-
export interface TagResourceRequest {
|
|
2459
|
-
resourceArn: string | undefined;
|
|
2460
|
-
tags: Record<string, string> | undefined;
|
|
2461
|
-
}
|
|
2462
|
-
export interface TagResourceResponse {}
|
|
@@ -50,6 +50,11 @@ import {
|
|
|
50
50
|
SubscriptionTargetForm,
|
|
51
51
|
} from "./models_0";
|
|
52
52
|
import { SearchSort, Filter, SearchInItem } from "./models_1";
|
|
53
|
+
export interface TagResourceRequest {
|
|
54
|
+
resourceArn: string | undefined;
|
|
55
|
+
tags: Record<string, string> | undefined;
|
|
56
|
+
}
|
|
57
|
+
export interface TagResourceResponse {}
|
|
53
58
|
export interface UntagResourceRequest {
|
|
54
59
|
resourceArn: string | undefined;
|
|
55
60
|
tagKeys: string[] | undefined;
|
|
@@ -161,6 +161,8 @@ export declare var DeleteAssetTypeInput$: StaticStructureSchema;
|
|
|
161
161
|
export declare var DeleteAssetTypeOutput$: StaticStructureSchema;
|
|
162
162
|
export declare var DeleteConnectionInput$: StaticStructureSchema;
|
|
163
163
|
export declare var DeleteConnectionOutput$: StaticStructureSchema;
|
|
164
|
+
export declare var DeleteDataExportConfigurationInput$: StaticStructureSchema;
|
|
165
|
+
export declare var DeleteDataExportConfigurationOutput$: StaticStructureSchema;
|
|
164
166
|
export declare var DeleteDataProductInput$: StaticStructureSchema;
|
|
165
167
|
export declare var DeleteDataProductOutput$: StaticStructureSchema;
|
|
166
168
|
export declare var DeleteDataSourceInput$: StaticStructureSchema;
|
|
@@ -698,6 +700,7 @@ export declare var DeleteAsset$: StaticOperationSchema;
|
|
|
698
700
|
export declare var DeleteAssetFilter$: StaticOperationSchema;
|
|
699
701
|
export declare var DeleteAssetType$: StaticOperationSchema;
|
|
700
702
|
export declare var DeleteConnection$: StaticOperationSchema;
|
|
703
|
+
export declare var DeleteDataExportConfiguration$: StaticOperationSchema;
|
|
701
704
|
export declare var DeleteDataProduct$: StaticOperationSchema;
|
|
702
705
|
export declare var DeleteDataSource$: StaticOperationSchema;
|
|
703
706
|
export declare var DeleteDomain$: StaticOperationSchema;
|
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.978.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,38 +21,38 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|