@aws-sdk/client-datazone 3.908.0 → 3.910.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/endpoint/ruleset.js +2 -2
- package/dist-cjs/index.js +64 -32
- package/dist-es/commands/CreateProjectProfileCommand.js +1 -2
- package/dist-es/endpoint/ruleset.js +2 -2
- package/dist-es/models/models_0.js +17 -24
- package/dist-es/models/models_1.js +25 -8
- package/dist-es/models/models_2.js +9 -2
- package/dist-es/protocols/Aws_restJson1.js +15 -1
- package/dist-types/commands/CreateConnectionCommand.d.ts +17 -3
- package/dist-types/commands/CreateProjectProfileCommand.d.ts +1 -2
- package/dist-types/commands/GetConnectionCommand.d.ts +9 -2
- package/dist-types/commands/GetMetadataGenerationRunCommand.d.ts +1 -2
- package/dist-types/commands/ListConnectionsCommand.d.ts +12 -4
- package/dist-types/commands/ListTimeSeriesDataPointsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConnectionCommand.d.ts +14 -2
- package/dist-types/models/models_0.d.ts +179 -127
- package/dist-types/models/models_1.d.ts +136 -93
- package/dist-types/models/models_2.d.ts +98 -3
- package/dist-types/ts3.4/commands/CreateProjectProfileCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetMetadataGenerationRunCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListTimeSeriesDataPointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +93 -40
- package/dist-types/ts3.4/models/models_1.d.ts +46 -31
- package/dist-types/ts3.4/models/models_2.d.ts +32 -3
- package/package.json +34 -34
|
@@ -875,6 +875,21 @@ export interface AggregationOutput {
|
|
|
875
875
|
displayValue?: string | undefined;
|
|
876
876
|
items?: AggregationOutputItem[] | undefined;
|
|
877
877
|
}
|
|
878
|
+
export interface AmazonQPropertiesInput {
|
|
879
|
+
isEnabled: boolean | undefined;
|
|
880
|
+
profileArn?: string | undefined;
|
|
881
|
+
authMode?: string | undefined;
|
|
882
|
+
}
|
|
883
|
+
export interface AmazonQPropertiesOutput {
|
|
884
|
+
isEnabled: boolean | undefined;
|
|
885
|
+
profileArn?: string | undefined;
|
|
886
|
+
authMode?: string | undefined;
|
|
887
|
+
}
|
|
888
|
+
export interface AmazonQPropertiesPatch {
|
|
889
|
+
isEnabled: boolean | undefined;
|
|
890
|
+
profileArn?: string | undefined;
|
|
891
|
+
authMode?: string | undefined;
|
|
892
|
+
}
|
|
878
893
|
export declare const ListingStatus: {
|
|
879
894
|
readonly ACTIVE: "ACTIVE";
|
|
880
895
|
readonly CREATING: "CREATING";
|
|
@@ -1815,6 +1830,7 @@ export interface SparkGluePropertiesInput {
|
|
|
1815
1830
|
workerType?: string | undefined;
|
|
1816
1831
|
}
|
|
1817
1832
|
export type ConnectionPropertiesInput =
|
|
1833
|
+
| ConnectionPropertiesInput.AmazonQPropertiesMember
|
|
1818
1834
|
| ConnectionPropertiesInput.AthenaPropertiesMember
|
|
1819
1835
|
| ConnectionPropertiesInput.GluePropertiesMember
|
|
1820
1836
|
| ConnectionPropertiesInput.HyperPodPropertiesMember
|
|
@@ -1834,6 +1850,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1834
1850
|
sparkEmrProperties?: never;
|
|
1835
1851
|
sparkGlueProperties?: never;
|
|
1836
1852
|
s3Properties?: never;
|
|
1853
|
+
amazonQProperties?: never;
|
|
1837
1854
|
$unknown?: never;
|
|
1838
1855
|
}
|
|
1839
1856
|
interface GluePropertiesMember {
|
|
@@ -1845,6 +1862,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1845
1862
|
sparkEmrProperties?: never;
|
|
1846
1863
|
sparkGlueProperties?: never;
|
|
1847
1864
|
s3Properties?: never;
|
|
1865
|
+
amazonQProperties?: never;
|
|
1848
1866
|
$unknown?: never;
|
|
1849
1867
|
}
|
|
1850
1868
|
interface HyperPodPropertiesMember {
|
|
@@ -1856,6 +1874,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1856
1874
|
sparkEmrProperties?: never;
|
|
1857
1875
|
sparkGlueProperties?: never;
|
|
1858
1876
|
s3Properties?: never;
|
|
1877
|
+
amazonQProperties?: never;
|
|
1859
1878
|
$unknown?: never;
|
|
1860
1879
|
}
|
|
1861
1880
|
interface IamPropertiesMember {
|
|
@@ -1867,6 +1886,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1867
1886
|
sparkEmrProperties?: never;
|
|
1868
1887
|
sparkGlueProperties?: never;
|
|
1869
1888
|
s3Properties?: never;
|
|
1889
|
+
amazonQProperties?: never;
|
|
1870
1890
|
$unknown?: never;
|
|
1871
1891
|
}
|
|
1872
1892
|
interface RedshiftPropertiesMember {
|
|
@@ -1878,6 +1898,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1878
1898
|
sparkEmrProperties?: never;
|
|
1879
1899
|
sparkGlueProperties?: never;
|
|
1880
1900
|
s3Properties?: never;
|
|
1901
|
+
amazonQProperties?: never;
|
|
1881
1902
|
$unknown?: never;
|
|
1882
1903
|
}
|
|
1883
1904
|
interface SparkEmrPropertiesMember {
|
|
@@ -1889,6 +1910,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1889
1910
|
sparkEmrProperties: SparkEmrPropertiesInput;
|
|
1890
1911
|
sparkGlueProperties?: never;
|
|
1891
1912
|
s3Properties?: never;
|
|
1913
|
+
amazonQProperties?: never;
|
|
1892
1914
|
$unknown?: never;
|
|
1893
1915
|
}
|
|
1894
1916
|
interface SparkGluePropertiesMember {
|
|
@@ -1900,6 +1922,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1900
1922
|
sparkEmrProperties?: never;
|
|
1901
1923
|
sparkGlueProperties: SparkGluePropertiesInput;
|
|
1902
1924
|
s3Properties?: never;
|
|
1925
|
+
amazonQProperties?: never;
|
|
1903
1926
|
$unknown?: never;
|
|
1904
1927
|
}
|
|
1905
1928
|
interface S3PropertiesMember {
|
|
@@ -1911,6 +1934,19 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1911
1934
|
sparkEmrProperties?: never;
|
|
1912
1935
|
sparkGlueProperties?: never;
|
|
1913
1936
|
s3Properties: S3PropertiesInput;
|
|
1937
|
+
amazonQProperties?: never;
|
|
1938
|
+
$unknown?: never;
|
|
1939
|
+
}
|
|
1940
|
+
interface AmazonQPropertiesMember {
|
|
1941
|
+
athenaProperties?: never;
|
|
1942
|
+
glueProperties?: never;
|
|
1943
|
+
hyperPodProperties?: never;
|
|
1944
|
+
iamProperties?: never;
|
|
1945
|
+
redshiftProperties?: never;
|
|
1946
|
+
sparkEmrProperties?: never;
|
|
1947
|
+
sparkGlueProperties?: never;
|
|
1948
|
+
s3Properties?: never;
|
|
1949
|
+
amazonQProperties: AmazonQPropertiesInput;
|
|
1914
1950
|
$unknown?: never;
|
|
1915
1951
|
}
|
|
1916
1952
|
interface $UnknownMember {
|
|
@@ -1922,6 +1958,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1922
1958
|
sparkEmrProperties?: never;
|
|
1923
1959
|
sparkGlueProperties?: never;
|
|
1924
1960
|
s3Properties?: never;
|
|
1961
|
+
amazonQProperties?: never;
|
|
1925
1962
|
$unknown: [string, any];
|
|
1926
1963
|
}
|
|
1927
1964
|
interface Visitor<T> {
|
|
@@ -1933,6 +1970,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1933
1970
|
sparkEmrProperties: (value: SparkEmrPropertiesInput) => T;
|
|
1934
1971
|
sparkGlueProperties: (value: SparkGluePropertiesInput) => T;
|
|
1935
1972
|
s3Properties: (value: S3PropertiesInput) => T;
|
|
1973
|
+
amazonQProperties: (value: AmazonQPropertiesInput) => T;
|
|
1936
1974
|
_: (name: string, value: any) => T;
|
|
1937
1975
|
}
|
|
1938
1976
|
const visit: <T>(value: ConnectionPropertiesInput, visitor: Visitor<T>) => T;
|
|
@@ -2027,6 +2065,7 @@ export interface SparkGluePropertiesOutput {
|
|
|
2027
2065
|
workerType?: string | undefined;
|
|
2028
2066
|
}
|
|
2029
2067
|
export type ConnectionPropertiesOutput =
|
|
2068
|
+
| ConnectionPropertiesOutput.AmazonQPropertiesMember
|
|
2030
2069
|
| ConnectionPropertiesOutput.AthenaPropertiesMember
|
|
2031
2070
|
| ConnectionPropertiesOutput.GluePropertiesMember
|
|
2032
2071
|
| ConnectionPropertiesOutput.HyperPodPropertiesMember
|
|
@@ -2046,6 +2085,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2046
2085
|
sparkEmrProperties?: never;
|
|
2047
2086
|
sparkGlueProperties?: never;
|
|
2048
2087
|
s3Properties?: never;
|
|
2088
|
+
amazonQProperties?: never;
|
|
2049
2089
|
$unknown?: never;
|
|
2050
2090
|
}
|
|
2051
2091
|
interface GluePropertiesMember {
|
|
@@ -2057,6 +2097,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2057
2097
|
sparkEmrProperties?: never;
|
|
2058
2098
|
sparkGlueProperties?: never;
|
|
2059
2099
|
s3Properties?: never;
|
|
2100
|
+
amazonQProperties?: never;
|
|
2060
2101
|
$unknown?: never;
|
|
2061
2102
|
}
|
|
2062
2103
|
interface HyperPodPropertiesMember {
|
|
@@ -2068,6 +2109,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2068
2109
|
sparkEmrProperties?: never;
|
|
2069
2110
|
sparkGlueProperties?: never;
|
|
2070
2111
|
s3Properties?: never;
|
|
2112
|
+
amazonQProperties?: never;
|
|
2071
2113
|
$unknown?: never;
|
|
2072
2114
|
}
|
|
2073
2115
|
interface IamPropertiesMember {
|
|
@@ -2079,6 +2121,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2079
2121
|
sparkEmrProperties?: never;
|
|
2080
2122
|
sparkGlueProperties?: never;
|
|
2081
2123
|
s3Properties?: never;
|
|
2124
|
+
amazonQProperties?: never;
|
|
2082
2125
|
$unknown?: never;
|
|
2083
2126
|
}
|
|
2084
2127
|
interface RedshiftPropertiesMember {
|
|
@@ -2090,6 +2133,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2090
2133
|
sparkEmrProperties?: never;
|
|
2091
2134
|
sparkGlueProperties?: never;
|
|
2092
2135
|
s3Properties?: never;
|
|
2136
|
+
amazonQProperties?: never;
|
|
2093
2137
|
$unknown?: never;
|
|
2094
2138
|
}
|
|
2095
2139
|
interface SparkEmrPropertiesMember {
|
|
@@ -2101,6 +2145,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2101
2145
|
sparkEmrProperties: SparkEmrPropertiesOutput;
|
|
2102
2146
|
sparkGlueProperties?: never;
|
|
2103
2147
|
s3Properties?: never;
|
|
2148
|
+
amazonQProperties?: never;
|
|
2104
2149
|
$unknown?: never;
|
|
2105
2150
|
}
|
|
2106
2151
|
interface SparkGluePropertiesMember {
|
|
@@ -2112,6 +2157,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2112
2157
|
sparkEmrProperties?: never;
|
|
2113
2158
|
sparkGlueProperties: SparkGluePropertiesOutput;
|
|
2114
2159
|
s3Properties?: never;
|
|
2160
|
+
amazonQProperties?: never;
|
|
2115
2161
|
$unknown?: never;
|
|
2116
2162
|
}
|
|
2117
2163
|
interface S3PropertiesMember {
|
|
@@ -2123,6 +2169,19 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2123
2169
|
sparkEmrProperties?: never;
|
|
2124
2170
|
sparkGlueProperties?: never;
|
|
2125
2171
|
s3Properties: S3PropertiesOutput;
|
|
2172
|
+
amazonQProperties?: never;
|
|
2173
|
+
$unknown?: never;
|
|
2174
|
+
}
|
|
2175
|
+
interface AmazonQPropertiesMember {
|
|
2176
|
+
athenaProperties?: never;
|
|
2177
|
+
glueProperties?: never;
|
|
2178
|
+
hyperPodProperties?: never;
|
|
2179
|
+
iamProperties?: never;
|
|
2180
|
+
redshiftProperties?: never;
|
|
2181
|
+
sparkEmrProperties?: never;
|
|
2182
|
+
sparkGlueProperties?: never;
|
|
2183
|
+
s3Properties?: never;
|
|
2184
|
+
amazonQProperties: AmazonQPropertiesOutput;
|
|
2126
2185
|
$unknown?: never;
|
|
2127
2186
|
}
|
|
2128
2187
|
interface $UnknownMember {
|
|
@@ -2134,6 +2193,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2134
2193
|
sparkEmrProperties?: never;
|
|
2135
2194
|
sparkGlueProperties?: never;
|
|
2136
2195
|
s3Properties?: never;
|
|
2196
|
+
amazonQProperties?: never;
|
|
2137
2197
|
$unknown: [string, any];
|
|
2138
2198
|
}
|
|
2139
2199
|
interface Visitor<T> {
|
|
@@ -2145,6 +2205,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2145
2205
|
sparkEmrProperties: (value: SparkEmrPropertiesOutput) => T;
|
|
2146
2206
|
sparkGlueProperties: (value: SparkGluePropertiesOutput) => T;
|
|
2147
2207
|
s3Properties: (value: S3PropertiesOutput) => T;
|
|
2208
|
+
amazonQProperties: (value: AmazonQPropertiesOutput) => T;
|
|
2148
2209
|
_: (name: string, value: any) => T;
|
|
2149
2210
|
}
|
|
2150
2211
|
const visit: <T>(value: ConnectionPropertiesOutput, visitor: Visitor<T>) => T;
|
|
@@ -2183,6 +2244,7 @@ export interface SparkEmrPropertiesPatch {
|
|
|
2183
2244
|
managedEndpointArn?: string | undefined;
|
|
2184
2245
|
}
|
|
2185
2246
|
export type ConnectionPropertiesPatch =
|
|
2247
|
+
| ConnectionPropertiesPatch.AmazonQPropertiesMember
|
|
2186
2248
|
| ConnectionPropertiesPatch.AthenaPropertiesMember
|
|
2187
2249
|
| ConnectionPropertiesPatch.GluePropertiesMember
|
|
2188
2250
|
| ConnectionPropertiesPatch.IamPropertiesMember
|
|
@@ -2198,6 +2260,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2198
2260
|
redshiftProperties?: never;
|
|
2199
2261
|
sparkEmrProperties?: never;
|
|
2200
2262
|
s3Properties?: never;
|
|
2263
|
+
amazonQProperties?: never;
|
|
2201
2264
|
$unknown?: never;
|
|
2202
2265
|
}
|
|
2203
2266
|
interface GluePropertiesMember {
|
|
@@ -2207,6 +2270,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2207
2270
|
redshiftProperties?: never;
|
|
2208
2271
|
sparkEmrProperties?: never;
|
|
2209
2272
|
s3Properties?: never;
|
|
2273
|
+
amazonQProperties?: never;
|
|
2210
2274
|
$unknown?: never;
|
|
2211
2275
|
}
|
|
2212
2276
|
interface IamPropertiesMember {
|
|
@@ -2216,6 +2280,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2216
2280
|
redshiftProperties?: never;
|
|
2217
2281
|
sparkEmrProperties?: never;
|
|
2218
2282
|
s3Properties?: never;
|
|
2283
|
+
amazonQProperties?: never;
|
|
2219
2284
|
$unknown?: never;
|
|
2220
2285
|
}
|
|
2221
2286
|
interface RedshiftPropertiesMember {
|
|
@@ -2225,6 +2290,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2225
2290
|
redshiftProperties: RedshiftPropertiesPatch;
|
|
2226
2291
|
sparkEmrProperties?: never;
|
|
2227
2292
|
s3Properties?: never;
|
|
2293
|
+
amazonQProperties?: never;
|
|
2228
2294
|
$unknown?: never;
|
|
2229
2295
|
}
|
|
2230
2296
|
interface SparkEmrPropertiesMember {
|
|
@@ -2234,6 +2300,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2234
2300
|
redshiftProperties?: never;
|
|
2235
2301
|
sparkEmrProperties: SparkEmrPropertiesPatch;
|
|
2236
2302
|
s3Properties?: never;
|
|
2303
|
+
amazonQProperties?: never;
|
|
2237
2304
|
$unknown?: never;
|
|
2238
2305
|
}
|
|
2239
2306
|
interface S3PropertiesMember {
|
|
@@ -2243,6 +2310,17 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2243
2310
|
redshiftProperties?: never;
|
|
2244
2311
|
sparkEmrProperties?: never;
|
|
2245
2312
|
s3Properties: S3PropertiesPatch;
|
|
2313
|
+
amazonQProperties?: never;
|
|
2314
|
+
$unknown?: never;
|
|
2315
|
+
}
|
|
2316
|
+
interface AmazonQPropertiesMember {
|
|
2317
|
+
athenaProperties?: never;
|
|
2318
|
+
glueProperties?: never;
|
|
2319
|
+
iamProperties?: never;
|
|
2320
|
+
redshiftProperties?: never;
|
|
2321
|
+
sparkEmrProperties?: never;
|
|
2322
|
+
s3Properties?: never;
|
|
2323
|
+
amazonQProperties: AmazonQPropertiesPatch;
|
|
2246
2324
|
$unknown?: never;
|
|
2247
2325
|
}
|
|
2248
2326
|
interface $UnknownMember {
|
|
@@ -2252,6 +2330,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2252
2330
|
redshiftProperties?: never;
|
|
2253
2331
|
sparkEmrProperties?: never;
|
|
2254
2332
|
s3Properties?: never;
|
|
2333
|
+
amazonQProperties?: never;
|
|
2255
2334
|
$unknown: [string, any];
|
|
2256
2335
|
}
|
|
2257
2336
|
interface Visitor<T> {
|
|
@@ -2261,11 +2340,19 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2261
2340
|
redshiftProperties: (value: RedshiftPropertiesPatch) => T;
|
|
2262
2341
|
sparkEmrProperties: (value: SparkEmrPropertiesPatch) => T;
|
|
2263
2342
|
s3Properties: (value: S3PropertiesPatch) => T;
|
|
2343
|
+
amazonQProperties: (value: AmazonQPropertiesPatch) => T;
|
|
2264
2344
|
_: (name: string, value: any) => T;
|
|
2265
2345
|
}
|
|
2266
2346
|
const visit: <T>(value: ConnectionPropertiesPatch, visitor: Visitor<T>) => T;
|
|
2267
2347
|
}
|
|
2348
|
+
export declare const ConnectionScope: {
|
|
2349
|
+
readonly DOMAIN: "DOMAIN";
|
|
2350
|
+
readonly PROJECT: "PROJECT";
|
|
2351
|
+
};
|
|
2352
|
+
export type ConnectionScope =
|
|
2353
|
+
(typeof ConnectionScope)[keyof typeof ConnectionScope];
|
|
2268
2354
|
export declare const ConnectionType: {
|
|
2355
|
+
readonly AMAZON_Q: "AMAZON_Q";
|
|
2269
2356
|
readonly ATHENA: "ATHENA";
|
|
2270
2357
|
readonly BIGQUERY: "BIGQUERY";
|
|
2271
2358
|
readonly DATABRICKS: "DATABRICKS";
|
|
@@ -2323,6 +2410,7 @@ export interface PhysicalEndpoint {
|
|
|
2323
2410
|
awsLocation?: AwsLocation | undefined;
|
|
2324
2411
|
glueConnectionName?: string | undefined;
|
|
2325
2412
|
glueConnection?: GlueConnection | undefined;
|
|
2413
|
+
enableTrustedIdentityPropagation?: boolean | undefined;
|
|
2326
2414
|
host?: string | undefined;
|
|
2327
2415
|
port?: number | undefined;
|
|
2328
2416
|
protocol?: Protocol | undefined;
|
|
@@ -2338,6 +2426,7 @@ export interface ConnectionSummary {
|
|
|
2338
2426
|
projectId?: string | undefined;
|
|
2339
2427
|
props?: ConnectionPropertiesOutput | undefined;
|
|
2340
2428
|
type: ConnectionType | undefined;
|
|
2429
|
+
scope?: ConnectionScope | undefined;
|
|
2341
2430
|
}
|
|
2342
2431
|
export interface CreateAccountPoolInput {
|
|
2343
2432
|
domainIdentifier: string | undefined;
|
|
@@ -2364,9 +2453,11 @@ export interface CreateConnectionInput {
|
|
|
2364
2453
|
clientToken?: string | undefined;
|
|
2365
2454
|
description?: string | undefined;
|
|
2366
2455
|
domainIdentifier: string | undefined;
|
|
2367
|
-
environmentIdentifier
|
|
2456
|
+
environmentIdentifier?: string | undefined;
|
|
2368
2457
|
name: string | undefined;
|
|
2369
2458
|
props?: ConnectionPropertiesInput | undefined;
|
|
2459
|
+
enableTrustedIdentityPropagation?: boolean | undefined;
|
|
2460
|
+
scope?: ConnectionScope | undefined;
|
|
2370
2461
|
}
|
|
2371
2462
|
export interface CreateConnectionOutput {
|
|
2372
2463
|
connectionId: string | undefined;
|
|
@@ -2379,6 +2470,7 @@ export interface CreateConnectionOutput {
|
|
|
2379
2470
|
projectId?: string | undefined;
|
|
2380
2471
|
props?: ConnectionPropertiesOutput | undefined;
|
|
2381
2472
|
type: ConnectionType | undefined;
|
|
2473
|
+
scope?: ConnectionScope | undefined;
|
|
2382
2474
|
}
|
|
2383
2475
|
export declare const DataProductItemType: {
|
|
2384
2476
|
readonly ASSET: "ASSET";
|
|
@@ -3332,39 +3424,6 @@ export interface EnvironmentConfigurationParametersDetails {
|
|
|
3332
3424
|
parameterOverrides?: EnvironmentConfigurationParameter[] | undefined;
|
|
3333
3425
|
resolvedParameters?: EnvironmentConfigurationParameter[] | undefined;
|
|
3334
3426
|
}
|
|
3335
|
-
export declare const DeploymentMode: {
|
|
3336
|
-
readonly ON_CREATE: "ON_CREATE";
|
|
3337
|
-
readonly ON_DEMAND: "ON_DEMAND";
|
|
3338
|
-
};
|
|
3339
|
-
export type DeploymentMode =
|
|
3340
|
-
(typeof DeploymentMode)[keyof typeof DeploymentMode];
|
|
3341
|
-
export interface EnvironmentConfiguration {
|
|
3342
|
-
name: string | undefined;
|
|
3343
|
-
id?: string | undefined;
|
|
3344
|
-
environmentBlueprintId: string | undefined;
|
|
3345
|
-
description?: string | undefined;
|
|
3346
|
-
deploymentMode?: DeploymentMode | undefined;
|
|
3347
|
-
configurationParameters?:
|
|
3348
|
-
| EnvironmentConfigurationParametersDetails
|
|
3349
|
-
| undefined;
|
|
3350
|
-
awsAccount?: AwsAccount | undefined;
|
|
3351
|
-
accountPools?: string[] | undefined;
|
|
3352
|
-
awsRegion?: Region | undefined;
|
|
3353
|
-
deploymentOrder?: number | undefined;
|
|
3354
|
-
}
|
|
3355
|
-
export declare const Status: {
|
|
3356
|
-
readonly DISABLED: "DISABLED";
|
|
3357
|
-
readonly ENABLED: "ENABLED";
|
|
3358
|
-
};
|
|
3359
|
-
export type Status = (typeof Status)[keyof typeof Status];
|
|
3360
|
-
export interface CreateProjectProfileInput {
|
|
3361
|
-
domainIdentifier: string | undefined;
|
|
3362
|
-
name: string | undefined;
|
|
3363
|
-
description?: string | undefined;
|
|
3364
|
-
status?: Status | undefined;
|
|
3365
|
-
environmentConfigurations?: EnvironmentConfiguration[] | undefined;
|
|
3366
|
-
domainUnitIdentifier?: string | undefined;
|
|
3367
|
-
}
|
|
3368
3427
|
export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
|
|
3369
3428
|
export declare const AcceptPredictionsInputFilterSensitiveLog: (
|
|
3370
3429
|
obj: AcceptPredictionsInput
|
|
@@ -3609,9 +3668,3 @@ export declare const CreateProjectInputFilterSensitiveLog: (
|
|
|
3609
3668
|
export declare const CreateProjectOutputFilterSensitiveLog: (
|
|
3610
3669
|
obj: CreateProjectOutput
|
|
3611
3670
|
) => any;
|
|
3612
|
-
export declare const EnvironmentConfigurationFilterSensitiveLog: (
|
|
3613
|
-
obj: EnvironmentConfiguration
|
|
3614
|
-
) => any;
|
|
3615
|
-
export declare const CreateProjectProfileInputFilterSensitiveLog: (
|
|
3616
|
-
obj: CreateProjectProfileInput
|
|
3617
|
-
) => any;
|
|
@@ -9,9 +9,11 @@ import {
|
|
|
9
9
|
AssetScope,
|
|
10
10
|
AssetTargetNameMap,
|
|
11
11
|
AssetTypesForRule,
|
|
12
|
+
AwsAccount,
|
|
12
13
|
ConfigurableEnvironmentAction,
|
|
13
14
|
ConnectionCredentials,
|
|
14
15
|
ConnectionPropertiesOutput,
|
|
16
|
+
ConnectionScope,
|
|
15
17
|
ConnectionSummary,
|
|
16
18
|
ConnectionType,
|
|
17
19
|
CustomParameter,
|
|
@@ -30,7 +32,7 @@ import {
|
|
|
30
32
|
DomainUnitOwnerProperties,
|
|
31
33
|
DomainVersion,
|
|
32
34
|
EnableSetting,
|
|
33
|
-
|
|
35
|
+
EnvironmentConfigurationParametersDetails,
|
|
34
36
|
EnvironmentConfigurationUserParameter,
|
|
35
37
|
EnvironmentDeploymentDetails,
|
|
36
38
|
EnvironmentStatus,
|
|
@@ -55,21 +57,53 @@ import {
|
|
|
55
57
|
ProjectStatus,
|
|
56
58
|
ProvisioningProperties,
|
|
57
59
|
RecommendationConfiguration,
|
|
60
|
+
Region,
|
|
58
61
|
ResolutionStrategy,
|
|
59
62
|
Resource,
|
|
60
63
|
RuleScopeSelectionMode,
|
|
61
64
|
ScheduleConfiguration,
|
|
62
65
|
SingleSignOn,
|
|
63
|
-
Status,
|
|
64
66
|
SubscribedListing,
|
|
65
67
|
SubscribedPrincipal,
|
|
66
68
|
SubscriptionRequestStatus,
|
|
67
69
|
SubscriptionStatus,
|
|
68
70
|
TargetEntityType,
|
|
69
71
|
TermRelations,
|
|
70
|
-
TimeSeriesDataPointSummaryFormOutput,
|
|
71
72
|
UserDesignation,
|
|
72
73
|
} from "./models_0";
|
|
74
|
+
export declare const DeploymentMode: {
|
|
75
|
+
readonly ON_CREATE: "ON_CREATE";
|
|
76
|
+
readonly ON_DEMAND: "ON_DEMAND";
|
|
77
|
+
};
|
|
78
|
+
export type DeploymentMode =
|
|
79
|
+
(typeof DeploymentMode)[keyof typeof DeploymentMode];
|
|
80
|
+
export interface EnvironmentConfiguration {
|
|
81
|
+
name: string | undefined;
|
|
82
|
+
id?: string | undefined;
|
|
83
|
+
environmentBlueprintId: string | undefined;
|
|
84
|
+
description?: string | undefined;
|
|
85
|
+
deploymentMode?: DeploymentMode | undefined;
|
|
86
|
+
configurationParameters?:
|
|
87
|
+
| EnvironmentConfigurationParametersDetails
|
|
88
|
+
| undefined;
|
|
89
|
+
awsAccount?: AwsAccount | undefined;
|
|
90
|
+
accountPools?: string[] | undefined;
|
|
91
|
+
awsRegion?: Region | undefined;
|
|
92
|
+
deploymentOrder?: number | undefined;
|
|
93
|
+
}
|
|
94
|
+
export declare const Status: {
|
|
95
|
+
readonly DISABLED: "DISABLED";
|
|
96
|
+
readonly ENABLED: "ENABLED";
|
|
97
|
+
};
|
|
98
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
99
|
+
export interface CreateProjectProfileInput {
|
|
100
|
+
domainIdentifier: string | undefined;
|
|
101
|
+
name: string | undefined;
|
|
102
|
+
description?: string | undefined;
|
|
103
|
+
status?: Status | undefined;
|
|
104
|
+
environmentConfigurations?: EnvironmentConfiguration[] | undefined;
|
|
105
|
+
domainUnitIdentifier?: string | undefined;
|
|
106
|
+
}
|
|
73
107
|
export interface CreateProjectProfileOutput {
|
|
74
108
|
domainId: string | undefined;
|
|
75
109
|
id: string | undefined;
|
|
@@ -1200,6 +1234,7 @@ export interface GetConnectionOutput {
|
|
|
1200
1234
|
projectId?: string | undefined;
|
|
1201
1235
|
props?: ConnectionPropertiesOutput | undefined;
|
|
1202
1236
|
type: ConnectionType | undefined;
|
|
1237
|
+
scope?: ConnectionScope | undefined;
|
|
1203
1238
|
}
|
|
1204
1239
|
export interface GetEnvironmentInput {
|
|
1205
1240
|
domainIdentifier: string | undefined;
|
|
@@ -1707,8 +1742,9 @@ export interface ListConnectionsInput {
|
|
|
1707
1742
|
sortOrder?: SortOrder | undefined;
|
|
1708
1743
|
name?: string | undefined;
|
|
1709
1744
|
environmentIdentifier?: string | undefined;
|
|
1710
|
-
projectIdentifier
|
|
1745
|
+
projectIdentifier?: string | undefined;
|
|
1711
1746
|
type?: ConnectionType | undefined;
|
|
1747
|
+
scope?: ConnectionScope | undefined;
|
|
1712
1748
|
}
|
|
1713
1749
|
export interface ListConnectionsOutput {
|
|
1714
1750
|
items: ConnectionSummary[] | undefined;
|
|
@@ -2362,33 +2398,12 @@ export interface ListTagsForResourceRequest {
|
|
|
2362
2398
|
export interface ListTagsForResourceResponse {
|
|
2363
2399
|
tags?: Record<string, string> | undefined;
|
|
2364
2400
|
}
|
|
2365
|
-
export
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
endedAt?: Date | undefined;
|
|
2372
|
-
nextToken?: string | undefined;
|
|
2373
|
-
maxResults?: number | undefined;
|
|
2374
|
-
}
|
|
2375
|
-
export interface ListTimeSeriesDataPointsOutput {
|
|
2376
|
-
items?: TimeSeriesDataPointSummaryFormOutput[] | undefined;
|
|
2377
|
-
nextToken?: string | undefined;
|
|
2378
|
-
}
|
|
2379
|
-
export interface GetMetadataGenerationRunInput {
|
|
2380
|
-
domainIdentifier: string | undefined;
|
|
2381
|
-
identifier: string | undefined;
|
|
2382
|
-
}
|
|
2383
|
-
export declare const MetadataGenerationRunStatus: {
|
|
2384
|
-
readonly CANCELED: "CANCELED";
|
|
2385
|
-
readonly FAILED: "FAILED";
|
|
2386
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2387
|
-
readonly SUBMITTED: "SUBMITTED";
|
|
2388
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
2389
|
-
};
|
|
2390
|
-
export type MetadataGenerationRunStatus =
|
|
2391
|
-
(typeof MetadataGenerationRunStatus)[keyof typeof MetadataGenerationRunStatus];
|
|
2401
|
+
export declare const EnvironmentConfigurationFilterSensitiveLog: (
|
|
2402
|
+
obj: EnvironmentConfiguration
|
|
2403
|
+
) => any;
|
|
2404
|
+
export declare const CreateProjectProfileInputFilterSensitiveLog: (
|
|
2405
|
+
obj: CreateProjectProfileInput
|
|
2406
|
+
) => any;
|
|
2392
2407
|
export declare const CreateProjectProfileOutputFilterSensitiveLog: (
|
|
2393
2408
|
obj: CreateProjectProfileOutput
|
|
2394
2409
|
) => any;
|
|
@@ -11,12 +11,12 @@ import {
|
|
|
11
11
|
ConfigurableEnvironmentAction,
|
|
12
12
|
ConnectionPropertiesOutput,
|
|
13
13
|
ConnectionPropertiesPatch,
|
|
14
|
+
ConnectionScope,
|
|
14
15
|
ConnectionType,
|
|
15
16
|
CustomParameter,
|
|
16
17
|
DataZoneEntityType,
|
|
17
18
|
Deployment,
|
|
18
19
|
DeploymentProperties,
|
|
19
|
-
EnvironmentConfiguration,
|
|
20
20
|
EnvironmentConfigurationUserParameter,
|
|
21
21
|
EnvironmentDeploymentDetails,
|
|
22
22
|
EnvironmentParameter,
|
|
@@ -41,21 +41,21 @@ import {
|
|
|
41
41
|
ResolutionStrategy,
|
|
42
42
|
Resource,
|
|
43
43
|
RowFilterExpression,
|
|
44
|
-
Status,
|
|
45
44
|
SubscribedListing,
|
|
46
45
|
SubscribedPrincipal,
|
|
47
46
|
SubscriptionRequestStatus,
|
|
48
47
|
SubscriptionStatus,
|
|
49
48
|
TargetEntityType,
|
|
50
49
|
TermRelations,
|
|
50
|
+
TimeSeriesDataPointSummaryFormOutput,
|
|
51
51
|
} from "./models_0";
|
|
52
52
|
import {
|
|
53
53
|
DataProductListingItem,
|
|
54
54
|
DataProductResultItem,
|
|
55
|
+
EnvironmentConfiguration,
|
|
55
56
|
FailureCause,
|
|
56
57
|
GrantedEntity,
|
|
57
58
|
Import,
|
|
58
|
-
MetadataGenerationRunStatus,
|
|
59
59
|
RuleAction,
|
|
60
60
|
RuleDetail,
|
|
61
61
|
RuleScope,
|
|
@@ -63,6 +63,7 @@ import {
|
|
|
63
63
|
RuleTargetType,
|
|
64
64
|
RuleType,
|
|
65
65
|
SortOrder,
|
|
66
|
+
Status,
|
|
66
67
|
SubscribedAsset,
|
|
67
68
|
SubscriptionGrantOverallStatus,
|
|
68
69
|
SubscriptionGrantStatus,
|
|
@@ -73,6 +74,33 @@ import {
|
|
|
73
74
|
UserProfileStatus,
|
|
74
75
|
UserProfileType,
|
|
75
76
|
} from "./models_1";
|
|
77
|
+
export interface ListTimeSeriesDataPointsInput {
|
|
78
|
+
domainIdentifier: string | undefined;
|
|
79
|
+
entityIdentifier: string | undefined;
|
|
80
|
+
entityType: TimeSeriesEntityType | undefined;
|
|
81
|
+
formName: string | undefined;
|
|
82
|
+
startedAt?: Date | undefined;
|
|
83
|
+
endedAt?: Date | undefined;
|
|
84
|
+
nextToken?: string | undefined;
|
|
85
|
+
maxResults?: number | undefined;
|
|
86
|
+
}
|
|
87
|
+
export interface ListTimeSeriesDataPointsOutput {
|
|
88
|
+
items?: TimeSeriesDataPointSummaryFormOutput[] | undefined;
|
|
89
|
+
nextToken?: string | undefined;
|
|
90
|
+
}
|
|
91
|
+
export interface GetMetadataGenerationRunInput {
|
|
92
|
+
domainIdentifier: string | undefined;
|
|
93
|
+
identifier: string | undefined;
|
|
94
|
+
}
|
|
95
|
+
export declare const MetadataGenerationRunStatus: {
|
|
96
|
+
readonly CANCELED: "CANCELED";
|
|
97
|
+
readonly FAILED: "FAILED";
|
|
98
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
99
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
100
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
101
|
+
};
|
|
102
|
+
export type MetadataGenerationRunStatus =
|
|
103
|
+
(typeof MetadataGenerationRunStatus)[keyof typeof MetadataGenerationRunStatus];
|
|
76
104
|
export declare const MetadataGenerationTargetType: {
|
|
77
105
|
readonly ASSET: "ASSET";
|
|
78
106
|
};
|
|
@@ -651,6 +679,7 @@ export interface UpdateConnectionOutput {
|
|
|
651
679
|
projectId?: string | undefined;
|
|
652
680
|
props?: ConnectionPropertiesOutput | undefined;
|
|
653
681
|
type: ConnectionType | undefined;
|
|
682
|
+
scope?: ConnectionScope | undefined;
|
|
654
683
|
}
|
|
655
684
|
export interface UpdateEnvironmentInput {
|
|
656
685
|
domainIdentifier: string | undefined;
|
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.910.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,42 +20,42 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.3.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
37
|
-
"@smithy/hash-node": "^4.2.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
-
"@smithy/middleware-stack": "^4.2.
|
|
44
|
-
"@smithy/node-config-provider": "^4.3.
|
|
45
|
-
"@smithy/node-http-handler": "^4.
|
|
46
|
-
"@smithy/protocol-http": "^5.3.
|
|
47
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.2.
|
|
23
|
+
"@aws-sdk/core": "3.910.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.910.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.910.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.910.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.910.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.910.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.910.0",
|
|
30
|
+
"@aws-sdk/types": "3.910.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.910.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.910.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.910.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.3.2",
|
|
35
|
+
"@smithy/core": "^3.16.1",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.3.3",
|
|
37
|
+
"@smithy/hash-node": "^4.2.2",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.2.2",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.2.2",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.3",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.3",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.2",
|
|
43
|
+
"@smithy/middleware-stack": "^4.2.2",
|
|
44
|
+
"@smithy/node-config-provider": "^4.3.2",
|
|
45
|
+
"@smithy/node-http-handler": "^4.4.1",
|
|
46
|
+
"@smithy/protocol-http": "^5.3.2",
|
|
47
|
+
"@smithy/smithy-client": "^4.8.1",
|
|
48
|
+
"@smithy/types": "^4.7.1",
|
|
49
|
+
"@smithy/url-parser": "^4.2.2",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
-
"@smithy/util-endpoints": "^3.2.
|
|
56
|
-
"@smithy/util-middleware": "^4.2.
|
|
57
|
-
"@smithy/util-retry": "^4.2.
|
|
58
|
-
"@smithy/util-stream": "^4.5.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.2",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.3",
|
|
55
|
+
"@smithy/util-endpoints": "^3.2.2",
|
|
56
|
+
"@smithy/util-middleware": "^4.2.2",
|
|
57
|
+
"@smithy/util-retry": "^4.2.2",
|
|
58
|
+
"@smithy/util-stream": "^4.5.2",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.0",
|
|
60
60
|
"@smithy/uuid": "^1.1.0",
|
|
61
61
|
"tslib": "^2.6.2"
|