@aws-sdk/client-datazone 3.940.0 → 3.943.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 +16 -0
- package/dist-cjs/index.js +127 -22
- package/dist-es/DataZone.js +4 -0
- package/dist-es/commands/GetDataExportConfigurationCommand.js +16 -0
- package/dist-es/commands/PutDataExportConfigurationCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +10 -3
- package/dist-es/schemas/schemas_0.js +89 -19
- package/dist-types/DataZone.d.ts +14 -0
- package/dist-types/DataZoneClient.d.ts +4 -2
- package/dist-types/commands/GetDataExportConfigurationCommand.d.ts +100 -0
- package/dist-types/commands/GetMetadataGenerationRunCommand.d.ts +13 -2
- package/dist-types/commands/ListMetadataGenerationRunsCommand.d.ts +8 -4
- package/dist-types/commands/PutDataExportConfigurationCommand.d.ts +102 -0
- package/dist-types/commands/StartMetadataGenerationRunCommand.d.ts +10 -4
- package/dist-types/commands/UpdateAccountPoolCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConnectionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/enums.d.ts +26 -11
- package/dist-types/models/models_1.d.ts +158 -343
- package/dist-types/models/models_2.d.ts +342 -2
- package/dist-types/schemas/schemas_0.d.ts +11 -1
- package/dist-types/ts3.4/DataZone.d.ts +34 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetDataExportConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutDataExportConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateAccountPoolCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateConnectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +14 -5
- package/dist-types/ts3.4/models/models_1.d.ts +36 -78
- package/dist-types/ts3.4/models/models_2.d.ts +86 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -1
- package/package.json +5 -5
|
@@ -136,6 +136,12 @@ export declare const ConfigurableActionTypeAuthorization: {
|
|
|
136
136
|
};
|
|
137
137
|
export type ConfigurableActionTypeAuthorization =
|
|
138
138
|
(typeof ConfigurableActionTypeAuthorization)[keyof typeof ConfigurableActionTypeAuthorization];
|
|
139
|
+
export declare const ConfigurationStatus: {
|
|
140
|
+
readonly COMPLETED: "COMPLETED";
|
|
141
|
+
readonly FAILED: "FAILED";
|
|
142
|
+
};
|
|
143
|
+
export type ConfigurationStatus =
|
|
144
|
+
(typeof ConfigurationStatus)[keyof typeof ConfigurationStatus];
|
|
139
145
|
export declare const GlueConnectionType: {
|
|
140
146
|
readonly BIGQUERY: "BIGQUERY";
|
|
141
147
|
readonly DOCUMENTDB: "DOCUMENTDB";
|
|
@@ -665,10 +671,18 @@ export declare const SortKey: {
|
|
|
665
671
|
readonly UPDATED_AT: "UPDATED_AT";
|
|
666
672
|
};
|
|
667
673
|
export type SortKey = (typeof SortKey)[keyof typeof SortKey];
|
|
674
|
+
export declare const MetadataGenerationRunType: {
|
|
675
|
+
readonly BUSINESS_DESCRIPTIONS: "BUSINESS_DESCRIPTIONS";
|
|
676
|
+
readonly BUSINESS_GLOSSARY_ASSOCIATIONS: "BUSINESS_GLOSSARY_ASSOCIATIONS";
|
|
677
|
+
readonly BUSINESS_NAMES: "BUSINESS_NAMES";
|
|
678
|
+
};
|
|
679
|
+
export type MetadataGenerationRunType =
|
|
680
|
+
(typeof MetadataGenerationRunType)[keyof typeof MetadataGenerationRunType];
|
|
668
681
|
export declare const MetadataGenerationRunStatus: {
|
|
669
682
|
readonly CANCELED: "CANCELED";
|
|
670
683
|
readonly FAILED: "FAILED";
|
|
671
684
|
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
685
|
+
readonly PARTIALLY_SUCCEEDED: "PARTIALLY_SUCCEEDED";
|
|
672
686
|
readonly SUBMITTED: "SUBMITTED";
|
|
673
687
|
readonly SUCCEEDED: "SUCCEEDED";
|
|
674
688
|
};
|
|
@@ -679,11 +693,6 @@ export declare const MetadataGenerationTargetType: {
|
|
|
679
693
|
};
|
|
680
694
|
export type MetadataGenerationTargetType =
|
|
681
695
|
(typeof MetadataGenerationTargetType)[keyof typeof MetadataGenerationTargetType];
|
|
682
|
-
export declare const MetadataGenerationRunType: {
|
|
683
|
-
readonly BUSINESS_DESCRIPTIONS: "BUSINESS_DESCRIPTIONS";
|
|
684
|
-
};
|
|
685
|
-
export type MetadataGenerationRunType =
|
|
686
|
-
(typeof MetadataGenerationRunType)[keyof typeof MetadataGenerationRunType];
|
|
687
696
|
export declare const RejectRuleBehavior: {
|
|
688
697
|
readonly ALL: "ALL";
|
|
689
698
|
readonly NONE: "NONE";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
+
ConfigurationStatus,
|
|
2
3
|
ConnectionScope,
|
|
3
4
|
ConnectionType,
|
|
4
5
|
DataAssetActivityStatus,
|
|
@@ -69,11 +70,9 @@ import {
|
|
|
69
70
|
AssetListingItem,
|
|
70
71
|
AssetRevision,
|
|
71
72
|
AssetTypeItem,
|
|
72
|
-
AwsLocation,
|
|
73
73
|
ConfigurableEnvironmentAction,
|
|
74
74
|
ConnectionCredentials,
|
|
75
75
|
ConnectionPropertiesOutput,
|
|
76
|
-
ConnectionPropertiesPatch,
|
|
77
76
|
ConnectionSummary,
|
|
78
77
|
CustomParameter,
|
|
79
78
|
DataSourceConfigurationInput,
|
|
@@ -86,7 +85,6 @@ import {
|
|
|
86
85
|
EnvironmentConfiguration,
|
|
87
86
|
EnvironmentConfigurationUserParameter,
|
|
88
87
|
EnvironmentDeploymentDetails,
|
|
89
|
-
EnvironmentParameter,
|
|
90
88
|
FormEntryOutput,
|
|
91
89
|
FormInput,
|
|
92
90
|
FormOutput,
|
|
@@ -815,6 +813,21 @@ export interface GetConnectionOutput {
|
|
|
815
813
|
type: ConnectionType | undefined;
|
|
816
814
|
scope?: ConnectionScope | undefined;
|
|
817
815
|
}
|
|
816
|
+
export interface GetDataExportConfigurationInput {
|
|
817
|
+
domainIdentifier: string | undefined;
|
|
818
|
+
}
|
|
819
|
+
export interface EncryptionConfiguration {
|
|
820
|
+
kmsKeyArn?: string | undefined;
|
|
821
|
+
sseAlgorithm?: string | undefined;
|
|
822
|
+
}
|
|
823
|
+
export interface GetDataExportConfigurationOutput {
|
|
824
|
+
isExportEnabled?: boolean | undefined;
|
|
825
|
+
status?: ConfigurationStatus | undefined;
|
|
826
|
+
encryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
827
|
+
s3TableBucketArn?: string | undefined;
|
|
828
|
+
createdAt?: Date | undefined;
|
|
829
|
+
updatedAt?: Date | undefined;
|
|
830
|
+
}
|
|
818
831
|
export interface GetEnvironmentInput {
|
|
819
832
|
domainIdentifier: string | undefined;
|
|
820
833
|
identifier: string | undefined;
|
|
@@ -1916,21 +1929,29 @@ export interface ListTimeSeriesDataPointsOutput {
|
|
|
1916
1929
|
export interface GetMetadataGenerationRunInput {
|
|
1917
1930
|
domainIdentifier: string | undefined;
|
|
1918
1931
|
identifier: string | undefined;
|
|
1932
|
+
type?: MetadataGenerationRunType | undefined;
|
|
1919
1933
|
}
|
|
1920
1934
|
export interface MetadataGenerationRunTarget {
|
|
1921
1935
|
type: MetadataGenerationTargetType | undefined;
|
|
1922
1936
|
identifier: string | undefined;
|
|
1923
1937
|
revision?: string | undefined;
|
|
1924
1938
|
}
|
|
1939
|
+
export interface MetadataGenerationRunTypeStat {
|
|
1940
|
+
type: MetadataGenerationRunType | undefined;
|
|
1941
|
+
status: MetadataGenerationRunStatus | undefined;
|
|
1942
|
+
errorMessage?: string | undefined;
|
|
1943
|
+
}
|
|
1925
1944
|
export interface GetMetadataGenerationRunOutput {
|
|
1926
1945
|
domainId: string | undefined;
|
|
1927
1946
|
id: string | undefined;
|
|
1928
1947
|
target?: MetadataGenerationRunTarget | undefined;
|
|
1929
1948
|
status?: MetadataGenerationRunStatus | undefined;
|
|
1930
1949
|
type?: MetadataGenerationRunType | undefined;
|
|
1950
|
+
types?: MetadataGenerationRunType[] | undefined;
|
|
1931
1951
|
createdAt?: Date | undefined;
|
|
1932
1952
|
createdBy?: string | undefined;
|
|
1933
1953
|
owningProjectId: string | undefined;
|
|
1954
|
+
typeStats?: MetadataGenerationRunTypeStat[] | undefined;
|
|
1934
1955
|
}
|
|
1935
1956
|
export interface ListMetadataGenerationRunsInput {
|
|
1936
1957
|
domainIdentifier: string | undefined;
|
|
@@ -1938,6 +1959,7 @@ export interface ListMetadataGenerationRunsInput {
|
|
|
1938
1959
|
type?: MetadataGenerationRunType | undefined;
|
|
1939
1960
|
nextToken?: string | undefined;
|
|
1940
1961
|
maxResults?: number | undefined;
|
|
1962
|
+
targetIdentifier?: string | undefined;
|
|
1941
1963
|
}
|
|
1942
1964
|
export interface MetadataGenerationRunItem {
|
|
1943
1965
|
domainId: string | undefined;
|
|
@@ -1945,6 +1967,7 @@ export interface MetadataGenerationRunItem {
|
|
|
1945
1967
|
target?: MetadataGenerationRunTarget | undefined;
|
|
1946
1968
|
status?: MetadataGenerationRunStatus | undefined;
|
|
1947
1969
|
type?: MetadataGenerationRunType | undefined;
|
|
1970
|
+
types?: MetadataGenerationRunType[] | undefined;
|
|
1948
1971
|
createdAt?: Date | undefined;
|
|
1949
1972
|
createdBy?: string | undefined;
|
|
1950
1973
|
owningProjectId: string | undefined;
|
|
@@ -1955,7 +1978,8 @@ export interface ListMetadataGenerationRunsOutput {
|
|
|
1955
1978
|
}
|
|
1956
1979
|
export interface StartMetadataGenerationRunInput {
|
|
1957
1980
|
domainIdentifier: string | undefined;
|
|
1958
|
-
type
|
|
1981
|
+
type?: MetadataGenerationRunType | undefined;
|
|
1982
|
+
types?: MetadataGenerationRunType[] | undefined;
|
|
1959
1983
|
target: MetadataGenerationRunTarget | undefined;
|
|
1960
1984
|
clientToken?: string | undefined;
|
|
1961
1985
|
owningProjectIdentifier: string | undefined;
|
|
@@ -1965,6 +1989,7 @@ export interface StartMetadataGenerationRunOutput {
|
|
|
1965
1989
|
id: string | undefined;
|
|
1966
1990
|
status?: MetadataGenerationRunStatus | undefined;
|
|
1967
1991
|
type?: MetadataGenerationRunType | undefined;
|
|
1992
|
+
types?: MetadataGenerationRunType[] | undefined;
|
|
1968
1993
|
createdAt?: Date | undefined;
|
|
1969
1994
|
createdBy?: string | undefined;
|
|
1970
1995
|
owningProjectId?: string | undefined;
|
|
@@ -1998,6 +2023,13 @@ export interface PostTimeSeriesDataPointsOutput {
|
|
|
1998
2023
|
entityType?: TimeSeriesEntityType | undefined;
|
|
1999
2024
|
forms?: TimeSeriesDataPointFormOutput[] | undefined;
|
|
2000
2025
|
}
|
|
2026
|
+
export interface PutDataExportConfigurationInput {
|
|
2027
|
+
domainIdentifier: string | undefined;
|
|
2028
|
+
enableExport: boolean | undefined;
|
|
2029
|
+
encryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
2030
|
+
clientToken?: string | undefined;
|
|
2031
|
+
}
|
|
2032
|
+
export interface PutDataExportConfigurationOutput {}
|
|
2001
2033
|
export interface RejectChoice {
|
|
2002
2034
|
predictionTarget: string | undefined;
|
|
2003
2035
|
predictionChoices?: number[] | undefined;
|
|
@@ -2401,77 +2433,3 @@ export interface UntagResourceRequest {
|
|
|
2401
2433
|
tagKeys: string[] | undefined;
|
|
2402
2434
|
}
|
|
2403
2435
|
export interface UntagResourceResponse {}
|
|
2404
|
-
export interface UpdateAccountPoolInput {
|
|
2405
|
-
domainIdentifier: string | undefined;
|
|
2406
|
-
identifier: string | undefined;
|
|
2407
|
-
name?: string | undefined;
|
|
2408
|
-
description?: string | undefined;
|
|
2409
|
-
resolutionStrategy?: ResolutionStrategy | undefined;
|
|
2410
|
-
accountSource?: AccountSource | undefined;
|
|
2411
|
-
}
|
|
2412
|
-
export interface UpdateAccountPoolOutput {
|
|
2413
|
-
domainId?: string | undefined;
|
|
2414
|
-
name?: string | undefined;
|
|
2415
|
-
id?: string | undefined;
|
|
2416
|
-
description?: string | undefined;
|
|
2417
|
-
resolutionStrategy?: ResolutionStrategy | undefined;
|
|
2418
|
-
accountSource: AccountSource | undefined;
|
|
2419
|
-
createdBy: string | undefined;
|
|
2420
|
-
createdAt?: Date | undefined;
|
|
2421
|
-
lastUpdatedAt?: Date | undefined;
|
|
2422
|
-
updatedBy?: string | undefined;
|
|
2423
|
-
domainUnitId?: string | undefined;
|
|
2424
|
-
}
|
|
2425
|
-
export interface UpdateConnectionInput {
|
|
2426
|
-
domainIdentifier: string | undefined;
|
|
2427
|
-
identifier: string | undefined;
|
|
2428
|
-
description?: string | undefined;
|
|
2429
|
-
awsLocation?: AwsLocation | undefined;
|
|
2430
|
-
props?: ConnectionPropertiesPatch | undefined;
|
|
2431
|
-
}
|
|
2432
|
-
export interface UpdateConnectionOutput {
|
|
2433
|
-
connectionId: string | undefined;
|
|
2434
|
-
description?: string | undefined;
|
|
2435
|
-
domainId: string | undefined;
|
|
2436
|
-
domainUnitId: string | undefined;
|
|
2437
|
-
environmentId?: string | undefined;
|
|
2438
|
-
name: string | undefined;
|
|
2439
|
-
physicalEndpoints: PhysicalEndpoint[] | undefined;
|
|
2440
|
-
projectId?: string | undefined;
|
|
2441
|
-
props?: ConnectionPropertiesOutput | undefined;
|
|
2442
|
-
type: ConnectionType | undefined;
|
|
2443
|
-
scope?: ConnectionScope | undefined;
|
|
2444
|
-
}
|
|
2445
|
-
export interface UpdateEnvironmentInput {
|
|
2446
|
-
domainIdentifier: string | undefined;
|
|
2447
|
-
identifier: string | undefined;
|
|
2448
|
-
name?: string | undefined;
|
|
2449
|
-
description?: string | undefined;
|
|
2450
|
-
glossaryTerms?: string[] | undefined;
|
|
2451
|
-
blueprintVersion?: string | undefined;
|
|
2452
|
-
userParameters?: EnvironmentParameter[] | undefined;
|
|
2453
|
-
}
|
|
2454
|
-
export interface UpdateEnvironmentOutput {
|
|
2455
|
-
projectId: string | undefined;
|
|
2456
|
-
id?: string | undefined;
|
|
2457
|
-
domainId: string | undefined;
|
|
2458
|
-
createdBy: string | undefined;
|
|
2459
|
-
createdAt?: Date | undefined;
|
|
2460
|
-
updatedAt?: Date | undefined;
|
|
2461
|
-
name: string | undefined;
|
|
2462
|
-
description?: string | undefined;
|
|
2463
|
-
environmentProfileId?: string | undefined;
|
|
2464
|
-
awsAccountId?: string | undefined;
|
|
2465
|
-
awsAccountRegion?: string | undefined;
|
|
2466
|
-
provider: string | undefined;
|
|
2467
|
-
provisionedResources?: Resource[] | undefined;
|
|
2468
|
-
status?: EnvironmentStatus | undefined;
|
|
2469
|
-
environmentActions?: ConfigurableEnvironmentAction[] | undefined;
|
|
2470
|
-
glossaryTerms?: string[] | undefined;
|
|
2471
|
-
userParameters?: CustomParameter[] | undefined;
|
|
2472
|
-
lastDeployment?: Deployment | undefined;
|
|
2473
|
-
provisioningProperties?: ProvisioningProperties | undefined;
|
|
2474
|
-
deploymentProperties?: DeploymentProperties | undefined;
|
|
2475
|
-
environmentBlueprintId?: string | undefined;
|
|
2476
|
-
environmentConfigurationId?: string | undefined;
|
|
2477
|
-
}
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
|
+
ConnectionScope,
|
|
3
|
+
ConnectionType,
|
|
4
|
+
EnvironmentStatus,
|
|
2
5
|
FilterStatus,
|
|
3
6
|
GroupProfileStatus,
|
|
4
7
|
InventorySearchScope,
|
|
5
8
|
ProjectStatus,
|
|
9
|
+
ResolutionStrategy,
|
|
6
10
|
SearchOutputAdditionalAttribute,
|
|
7
11
|
Status,
|
|
8
12
|
SubscriptionGrantOverallStatus,
|
|
@@ -13,10 +17,16 @@ import {
|
|
|
13
17
|
UserProfileType,
|
|
14
18
|
} from "./enums";
|
|
15
19
|
import {
|
|
20
|
+
AccountSource,
|
|
16
21
|
ActionParameters,
|
|
17
22
|
AggregationListItem,
|
|
23
|
+
AwsLocation,
|
|
18
24
|
ColumnFilterConfiguration,
|
|
25
|
+
ConfigurableEnvironmentAction,
|
|
26
|
+
ConnectionPropertiesOutput,
|
|
27
|
+
ConnectionPropertiesPatch,
|
|
19
28
|
CustomParameter,
|
|
29
|
+
Deployment,
|
|
20
30
|
DeploymentProperties,
|
|
21
31
|
EnvironmentConfiguration,
|
|
22
32
|
EnvironmentConfigurationUserParameter,
|
|
@@ -25,8 +35,10 @@ import {
|
|
|
25
35
|
FailureCause,
|
|
26
36
|
FormOutput,
|
|
27
37
|
GrantedEntity,
|
|
38
|
+
PhysicalEndpoint,
|
|
28
39
|
ProjectDeletionError,
|
|
29
40
|
ProvisioningProperties,
|
|
41
|
+
Resource,
|
|
30
42
|
ResourceTag,
|
|
31
43
|
ResourceTagParameter,
|
|
32
44
|
RowFilterExpression,
|
|
@@ -37,6 +49,80 @@ import {
|
|
|
37
49
|
UserProfileDetails,
|
|
38
50
|
} from "./models_0";
|
|
39
51
|
import { Filter, SearchInItem, SearchSort } from "./models_1";
|
|
52
|
+
export interface UpdateAccountPoolInput {
|
|
53
|
+
domainIdentifier: string | undefined;
|
|
54
|
+
identifier: string | undefined;
|
|
55
|
+
name?: string | undefined;
|
|
56
|
+
description?: string | undefined;
|
|
57
|
+
resolutionStrategy?: ResolutionStrategy | undefined;
|
|
58
|
+
accountSource?: AccountSource | undefined;
|
|
59
|
+
}
|
|
60
|
+
export interface UpdateAccountPoolOutput {
|
|
61
|
+
domainId?: string | undefined;
|
|
62
|
+
name?: string | undefined;
|
|
63
|
+
id?: string | undefined;
|
|
64
|
+
description?: string | undefined;
|
|
65
|
+
resolutionStrategy?: ResolutionStrategy | undefined;
|
|
66
|
+
accountSource: AccountSource | undefined;
|
|
67
|
+
createdBy: string | undefined;
|
|
68
|
+
createdAt?: Date | undefined;
|
|
69
|
+
lastUpdatedAt?: Date | undefined;
|
|
70
|
+
updatedBy?: string | undefined;
|
|
71
|
+
domainUnitId?: string | undefined;
|
|
72
|
+
}
|
|
73
|
+
export interface UpdateConnectionInput {
|
|
74
|
+
domainIdentifier: string | undefined;
|
|
75
|
+
identifier: string | undefined;
|
|
76
|
+
description?: string | undefined;
|
|
77
|
+
awsLocation?: AwsLocation | undefined;
|
|
78
|
+
props?: ConnectionPropertiesPatch | undefined;
|
|
79
|
+
}
|
|
80
|
+
export interface UpdateConnectionOutput {
|
|
81
|
+
connectionId: string | undefined;
|
|
82
|
+
description?: string | undefined;
|
|
83
|
+
domainId: string | undefined;
|
|
84
|
+
domainUnitId: string | undefined;
|
|
85
|
+
environmentId?: string | undefined;
|
|
86
|
+
name: string | undefined;
|
|
87
|
+
physicalEndpoints: PhysicalEndpoint[] | undefined;
|
|
88
|
+
projectId?: string | undefined;
|
|
89
|
+
props?: ConnectionPropertiesOutput | undefined;
|
|
90
|
+
type: ConnectionType | undefined;
|
|
91
|
+
scope?: ConnectionScope | undefined;
|
|
92
|
+
}
|
|
93
|
+
export interface UpdateEnvironmentInput {
|
|
94
|
+
domainIdentifier: string | undefined;
|
|
95
|
+
identifier: string | undefined;
|
|
96
|
+
name?: string | undefined;
|
|
97
|
+
description?: string | undefined;
|
|
98
|
+
glossaryTerms?: string[] | undefined;
|
|
99
|
+
blueprintVersion?: string | undefined;
|
|
100
|
+
userParameters?: EnvironmentParameter[] | undefined;
|
|
101
|
+
}
|
|
102
|
+
export interface UpdateEnvironmentOutput {
|
|
103
|
+
projectId: string | undefined;
|
|
104
|
+
id?: string | undefined;
|
|
105
|
+
domainId: string | undefined;
|
|
106
|
+
createdBy: string | undefined;
|
|
107
|
+
createdAt?: Date | undefined;
|
|
108
|
+
updatedAt?: Date | undefined;
|
|
109
|
+
name: string | undefined;
|
|
110
|
+
description?: string | undefined;
|
|
111
|
+
environmentProfileId?: string | undefined;
|
|
112
|
+
awsAccountId?: string | undefined;
|
|
113
|
+
awsAccountRegion?: string | undefined;
|
|
114
|
+
provider: string | undefined;
|
|
115
|
+
provisionedResources?: Resource[] | undefined;
|
|
116
|
+
status?: EnvironmentStatus | undefined;
|
|
117
|
+
environmentActions?: ConfigurableEnvironmentAction[] | undefined;
|
|
118
|
+
glossaryTerms?: string[] | undefined;
|
|
119
|
+
userParameters?: CustomParameter[] | undefined;
|
|
120
|
+
lastDeployment?: Deployment | undefined;
|
|
121
|
+
provisioningProperties?: ProvisioningProperties | undefined;
|
|
122
|
+
deploymentProperties?: DeploymentProperties | undefined;
|
|
123
|
+
environmentBlueprintId?: string | undefined;
|
|
124
|
+
environmentConfigurationId?: string | undefined;
|
|
125
|
+
}
|
|
40
126
|
export interface UpdateEnvironmentActionInput {
|
|
41
127
|
domainIdentifier: string | undefined;
|
|
42
128
|
environmentIdentifier: string | undefined;
|
|
@@ -253,6 +253,7 @@ export declare var DomainUnitPolicyGrantPrincipal: StaticStructureSchema;
|
|
|
253
253
|
export declare var DomainUnitSummary: StaticStructureSchema;
|
|
254
254
|
export declare var DomainUnitTarget: StaticStructureSchema;
|
|
255
255
|
export declare var DomainUnitUserProperties: StaticStructureSchema;
|
|
256
|
+
export declare var EncryptionConfiguration: StaticStructureSchema;
|
|
256
257
|
export declare var EnvironmentActionSummary: StaticStructureSchema;
|
|
257
258
|
export declare var EnvironmentBlueprintConfigurationItem: StaticStructureSchema;
|
|
258
259
|
export declare var EnvironmentBlueprintSummary: StaticStructureSchema;
|
|
@@ -285,6 +286,8 @@ export declare var GetAssetTypeInput: StaticStructureSchema;
|
|
|
285
286
|
export declare var GetAssetTypeOutput: StaticStructureSchema;
|
|
286
287
|
export declare var GetConnectionInput: StaticStructureSchema;
|
|
287
288
|
export declare var GetConnectionOutput: StaticStructureSchema;
|
|
289
|
+
export declare var GetDataExportConfigurationInput: StaticStructureSchema;
|
|
290
|
+
export declare var GetDataExportConfigurationOutput: StaticStructureSchema;
|
|
288
291
|
export declare var GetDataProductInput: StaticStructureSchema;
|
|
289
292
|
export declare var GetDataProductOutput: StaticStructureSchema;
|
|
290
293
|
export declare var GetDataSourceInput: StaticStructureSchema;
|
|
@@ -466,6 +469,7 @@ export declare var MetadataFormReference: StaticStructureSchema;
|
|
|
466
469
|
export declare var MetadataFormSummary: StaticStructureSchema;
|
|
467
470
|
export declare var MetadataGenerationRunItem: StaticStructureSchema;
|
|
468
471
|
export declare var MetadataGenerationRunTarget: StaticStructureSchema;
|
|
472
|
+
export declare var MetadataGenerationRunTypeStat: StaticStructureSchema;
|
|
469
473
|
export declare var MlflowPropertiesInput: StaticStructureSchema;
|
|
470
474
|
export declare var MlflowPropertiesOutput: StaticStructureSchema;
|
|
471
475
|
export declare var MlflowPropertiesPatch: StaticStructureSchema;
|
|
@@ -498,6 +502,8 @@ export declare var ProjectPolicyGrantPrincipal: StaticStructureSchema;
|
|
|
498
502
|
export declare var ProjectProfileSummary: StaticStructureSchema;
|
|
499
503
|
export declare var ProjectsForRule: StaticStructureSchema;
|
|
500
504
|
export declare var ProjectSummary: StaticStructureSchema;
|
|
505
|
+
export declare var PutDataExportConfigurationInput: StaticStructureSchema;
|
|
506
|
+
export declare var PutDataExportConfigurationOutput: StaticStructureSchema;
|
|
501
507
|
export declare var PutEnvironmentBlueprintConfigurationInput: StaticStructureSchema;
|
|
502
508
|
export declare var PutEnvironmentBlueprintConfigurationOutput: StaticStructureSchema;
|
|
503
509
|
export declare var RecommendationConfiguration: StaticStructureSchema;
|
|
@@ -591,7 +597,7 @@ export declare var TimeSeriesDataPointFormOutput: StaticStructureSchema;
|
|
|
591
597
|
export declare var TimeSeriesDataPointSummaryFormOutput: StaticStructureSchema;
|
|
592
598
|
export declare var Topic: StaticStructureSchema;
|
|
593
599
|
export declare var UnauthorizedException: StaticErrorSchema;
|
|
594
|
-
export declare var
|
|
600
|
+
export declare var Unit_n0: StaticStructureSchema;
|
|
595
601
|
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
596
602
|
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
597
603
|
export declare var UpdateAccountPoolInput: StaticStructureSchema;
|
|
@@ -721,6 +727,8 @@ export declare var MetadataFormInputs: StaticListSchema;
|
|
|
721
727
|
export declare var MetadataForms: StaticListSchema;
|
|
722
728
|
export declare var MetadataFormsSummary: StaticListSchema;
|
|
723
729
|
export declare var MetadataGenerationRuns: StaticListSchema;
|
|
730
|
+
export declare var MetadataGenerationRunTypes: number;
|
|
731
|
+
export declare var MetadataGenerationRunTypeStats: StaticListSchema;
|
|
724
732
|
export declare var NameIdentifiers: StaticListSchema;
|
|
725
733
|
export declare var NotificationsList: StaticListSchema;
|
|
726
734
|
export declare var NotificationSubjects: number;
|
|
@@ -902,6 +910,7 @@ export declare var GetAsset: StaticOperationSchema;
|
|
|
902
910
|
export declare var GetAssetFilter: StaticOperationSchema;
|
|
903
911
|
export declare var GetAssetType: StaticOperationSchema;
|
|
904
912
|
export declare var GetConnection: StaticOperationSchema;
|
|
913
|
+
export declare var GetDataExportConfiguration: StaticOperationSchema;
|
|
905
914
|
export declare var GetDataProduct: StaticOperationSchema;
|
|
906
915
|
export declare var GetDataSource: StaticOperationSchema;
|
|
907
916
|
export declare var GetDataSourceRun: StaticOperationSchema;
|
|
@@ -967,6 +976,7 @@ export declare var ListTagsForResource: StaticOperationSchema;
|
|
|
967
976
|
export declare var ListTimeSeriesDataPoints: StaticOperationSchema;
|
|
968
977
|
export declare var PostLineageEvent: StaticOperationSchema;
|
|
969
978
|
export declare var PostTimeSeriesDataPoints: StaticOperationSchema;
|
|
979
|
+
export declare var PutDataExportConfiguration: StaticOperationSchema;
|
|
970
980
|
export declare var PutEnvironmentBlueprintConfiguration: StaticOperationSchema;
|
|
971
981
|
export declare var RejectPredictions: StaticOperationSchema;
|
|
972
982
|
export declare var RejectSubscriptionRequest: 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.943.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-datazone",
|
|
@@ -20,17 +20,17 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/core": "3.943.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.943.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.943.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
30
|
"@aws-sdk/types": "3.936.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.943.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|