@aws-sdk/client-datazone 3.1035.0 → 3.1037.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/schemas/schemas_0.js +42 -23
- package/dist-es/schemas/schemas_0.js +31 -12
- package/dist-types/commands/CreateConnectionCommand.d.ts +6 -0
- package/dist-types/commands/CreateSubscriptionRequestCommand.d.ts +1 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +3 -0
- package/dist-types/commands/ListConnectionsCommand.d.ts +3 -0
- package/dist-types/commands/SearchCommand.d.ts +1 -2
- package/dist-types/commands/SearchGroupProfilesCommand.d.ts +1 -2
- package/dist-types/commands/UpdateConnectionCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +130 -198
- package/dist-types/models/models_1.d.ts +197 -127
- package/dist-types/models/models_2.d.ts +128 -3
- package/dist-types/schemas/schemas_0.d.ts +3 -0
- package/dist-types/ts3.4/commands/CreateSubscriptionRequestCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/SearchGroupProfilesCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +94 -76
- package/dist-types/ts3.4/models/models_1.d.ts +83 -64
- package/dist-types/ts3.4/models/models_2.d.ts +67 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/package.json +15 -15
|
@@ -1721,6 +1721,9 @@ export interface HyperPodPropertiesInput {
|
|
|
1721
1721
|
export interface IamPropertiesInput {
|
|
1722
1722
|
glueLineageSyncEnabled?: boolean | undefined;
|
|
1723
1723
|
}
|
|
1724
|
+
export interface LakehousePropertiesInput {
|
|
1725
|
+
glueLineageSyncEnabled?: boolean | undefined;
|
|
1726
|
+
}
|
|
1724
1727
|
export interface MlflowPropertiesInput {
|
|
1725
1728
|
trackingServerArn?: string | undefined;
|
|
1726
1729
|
}
|
|
@@ -1834,6 +1837,7 @@ export type ConnectionPropertiesInput =
|
|
|
1834
1837
|
| ConnectionPropertiesInput.GluePropertiesMember
|
|
1835
1838
|
| ConnectionPropertiesInput.HyperPodPropertiesMember
|
|
1836
1839
|
| ConnectionPropertiesInput.IamPropertiesMember
|
|
1840
|
+
| ConnectionPropertiesInput.LakehousePropertiesMember
|
|
1837
1841
|
| ConnectionPropertiesInput.MlflowPropertiesMember
|
|
1838
1842
|
| ConnectionPropertiesInput.RedshiftPropertiesMember
|
|
1839
1843
|
| ConnectionPropertiesInput.S3PropertiesMember
|
|
@@ -1856,6 +1860,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1856
1860
|
mlflowProperties?: never;
|
|
1857
1861
|
workflowsMwaaProperties?: never;
|
|
1858
1862
|
workflowsServerlessProperties?: never;
|
|
1863
|
+
lakehouseProperties?: never;
|
|
1859
1864
|
$unknown?: never;
|
|
1860
1865
|
}
|
|
1861
1866
|
interface GluePropertiesMember {
|
|
@@ -1871,6 +1876,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1871
1876
|
mlflowProperties?: never;
|
|
1872
1877
|
workflowsMwaaProperties?: never;
|
|
1873
1878
|
workflowsServerlessProperties?: never;
|
|
1879
|
+
lakehouseProperties?: never;
|
|
1874
1880
|
$unknown?: never;
|
|
1875
1881
|
}
|
|
1876
1882
|
interface HyperPodPropertiesMember {
|
|
@@ -1886,6 +1892,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1886
1892
|
mlflowProperties?: never;
|
|
1887
1893
|
workflowsMwaaProperties?: never;
|
|
1888
1894
|
workflowsServerlessProperties?: never;
|
|
1895
|
+
lakehouseProperties?: never;
|
|
1889
1896
|
$unknown?: never;
|
|
1890
1897
|
}
|
|
1891
1898
|
interface IamPropertiesMember {
|
|
@@ -1901,6 +1908,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1901
1908
|
mlflowProperties?: never;
|
|
1902
1909
|
workflowsMwaaProperties?: never;
|
|
1903
1910
|
workflowsServerlessProperties?: never;
|
|
1911
|
+
lakehouseProperties?: never;
|
|
1904
1912
|
$unknown?: never;
|
|
1905
1913
|
}
|
|
1906
1914
|
interface RedshiftPropertiesMember {
|
|
@@ -1916,6 +1924,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1916
1924
|
mlflowProperties?: never;
|
|
1917
1925
|
workflowsMwaaProperties?: never;
|
|
1918
1926
|
workflowsServerlessProperties?: never;
|
|
1927
|
+
lakehouseProperties?: never;
|
|
1919
1928
|
$unknown?: never;
|
|
1920
1929
|
}
|
|
1921
1930
|
interface SparkEmrPropertiesMember {
|
|
@@ -1931,6 +1940,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1931
1940
|
mlflowProperties?: never;
|
|
1932
1941
|
workflowsMwaaProperties?: never;
|
|
1933
1942
|
workflowsServerlessProperties?: never;
|
|
1943
|
+
lakehouseProperties?: never;
|
|
1934
1944
|
$unknown?: never;
|
|
1935
1945
|
}
|
|
1936
1946
|
interface SparkGluePropertiesMember {
|
|
@@ -1946,6 +1956,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1946
1956
|
mlflowProperties?: never;
|
|
1947
1957
|
workflowsMwaaProperties?: never;
|
|
1948
1958
|
workflowsServerlessProperties?: never;
|
|
1959
|
+
lakehouseProperties?: never;
|
|
1949
1960
|
$unknown?: never;
|
|
1950
1961
|
}
|
|
1951
1962
|
interface S3PropertiesMember {
|
|
@@ -1961,6 +1972,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1961
1972
|
mlflowProperties?: never;
|
|
1962
1973
|
workflowsMwaaProperties?: never;
|
|
1963
1974
|
workflowsServerlessProperties?: never;
|
|
1975
|
+
lakehouseProperties?: never;
|
|
1964
1976
|
$unknown?: never;
|
|
1965
1977
|
}
|
|
1966
1978
|
interface AmazonQPropertiesMember {
|
|
@@ -1976,6 +1988,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1976
1988
|
mlflowProperties?: never;
|
|
1977
1989
|
workflowsMwaaProperties?: never;
|
|
1978
1990
|
workflowsServerlessProperties?: never;
|
|
1991
|
+
lakehouseProperties?: never;
|
|
1979
1992
|
$unknown?: never;
|
|
1980
1993
|
}
|
|
1981
1994
|
interface MlflowPropertiesMember {
|
|
@@ -1991,6 +2004,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1991
2004
|
mlflowProperties: MlflowPropertiesInput;
|
|
1992
2005
|
workflowsMwaaProperties?: never;
|
|
1993
2006
|
workflowsServerlessProperties?: never;
|
|
2007
|
+
lakehouseProperties?: never;
|
|
1994
2008
|
$unknown?: never;
|
|
1995
2009
|
}
|
|
1996
2010
|
interface WorkflowsMwaaPropertiesMember {
|
|
@@ -2006,6 +2020,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
2006
2020
|
mlflowProperties?: never;
|
|
2007
2021
|
workflowsMwaaProperties: WorkflowsMwaaPropertiesInput;
|
|
2008
2022
|
workflowsServerlessProperties?: never;
|
|
2023
|
+
lakehouseProperties?: never;
|
|
2009
2024
|
$unknown?: never;
|
|
2010
2025
|
}
|
|
2011
2026
|
interface WorkflowsServerlessPropertiesMember {
|
|
@@ -2021,6 +2036,23 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
2021
2036
|
mlflowProperties?: never;
|
|
2022
2037
|
workflowsMwaaProperties?: never;
|
|
2023
2038
|
workflowsServerlessProperties: WorkflowsServerlessPropertiesInput;
|
|
2039
|
+
lakehouseProperties?: never;
|
|
2040
|
+
$unknown?: never;
|
|
2041
|
+
}
|
|
2042
|
+
interface LakehousePropertiesMember {
|
|
2043
|
+
athenaProperties?: never;
|
|
2044
|
+
glueProperties?: never;
|
|
2045
|
+
hyperPodProperties?: never;
|
|
2046
|
+
iamProperties?: never;
|
|
2047
|
+
redshiftProperties?: never;
|
|
2048
|
+
sparkEmrProperties?: never;
|
|
2049
|
+
sparkGlueProperties?: never;
|
|
2050
|
+
s3Properties?: never;
|
|
2051
|
+
amazonQProperties?: never;
|
|
2052
|
+
mlflowProperties?: never;
|
|
2053
|
+
workflowsMwaaProperties?: never;
|
|
2054
|
+
workflowsServerlessProperties?: never;
|
|
2055
|
+
lakehouseProperties: LakehousePropertiesInput;
|
|
2024
2056
|
$unknown?: never;
|
|
2025
2057
|
}
|
|
2026
2058
|
interface $UnknownMember {
|
|
@@ -2036,6 +2068,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
2036
2068
|
mlflowProperties?: never;
|
|
2037
2069
|
workflowsMwaaProperties?: never;
|
|
2038
2070
|
workflowsServerlessProperties?: never;
|
|
2071
|
+
lakehouseProperties?: never;
|
|
2039
2072
|
$unknown: [string, any];
|
|
2040
2073
|
}
|
|
2041
2074
|
interface Visitor<T> {
|
|
@@ -2053,6 +2086,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
2053
2086
|
workflowsServerlessProperties: (
|
|
2054
2087
|
value: WorkflowsServerlessPropertiesInput
|
|
2055
2088
|
) => T;
|
|
2089
|
+
lakehouseProperties: (value: LakehousePropertiesInput) => T;
|
|
2056
2090
|
_: (name: string, value: any) => T;
|
|
2057
2091
|
}
|
|
2058
2092
|
}
|
|
@@ -2069,6 +2103,9 @@ export interface IamPropertiesOutput {
|
|
|
2069
2103
|
environmentId?: string | undefined;
|
|
2070
2104
|
glueLineageSyncEnabled?: boolean | undefined;
|
|
2071
2105
|
}
|
|
2106
|
+
export interface LakehousePropertiesOutput {
|
|
2107
|
+
glueLineageSyncEnabled?: boolean | undefined;
|
|
2108
|
+
}
|
|
2072
2109
|
export interface MlflowPropertiesOutput {
|
|
2073
2110
|
trackingServerArn?: string | undefined;
|
|
2074
2111
|
}
|
|
@@ -2136,6 +2173,7 @@ export type ConnectionPropertiesOutput =
|
|
|
2136
2173
|
| ConnectionPropertiesOutput.GluePropertiesMember
|
|
2137
2174
|
| ConnectionPropertiesOutput.HyperPodPropertiesMember
|
|
2138
2175
|
| ConnectionPropertiesOutput.IamPropertiesMember
|
|
2176
|
+
| ConnectionPropertiesOutput.LakehousePropertiesMember
|
|
2139
2177
|
| ConnectionPropertiesOutput.MlflowPropertiesMember
|
|
2140
2178
|
| ConnectionPropertiesOutput.RedshiftPropertiesMember
|
|
2141
2179
|
| ConnectionPropertiesOutput.S3PropertiesMember
|
|
@@ -2158,6 +2196,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2158
2196
|
mlflowProperties?: never;
|
|
2159
2197
|
workflowsMwaaProperties?: never;
|
|
2160
2198
|
workflowsServerlessProperties?: never;
|
|
2199
|
+
lakehouseProperties?: never;
|
|
2161
2200
|
$unknown?: never;
|
|
2162
2201
|
}
|
|
2163
2202
|
interface GluePropertiesMember {
|
|
@@ -2173,6 +2212,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2173
2212
|
mlflowProperties?: never;
|
|
2174
2213
|
workflowsMwaaProperties?: never;
|
|
2175
2214
|
workflowsServerlessProperties?: never;
|
|
2215
|
+
lakehouseProperties?: never;
|
|
2176
2216
|
$unknown?: never;
|
|
2177
2217
|
}
|
|
2178
2218
|
interface HyperPodPropertiesMember {
|
|
@@ -2188,6 +2228,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2188
2228
|
mlflowProperties?: never;
|
|
2189
2229
|
workflowsMwaaProperties?: never;
|
|
2190
2230
|
workflowsServerlessProperties?: never;
|
|
2231
|
+
lakehouseProperties?: never;
|
|
2191
2232
|
$unknown?: never;
|
|
2192
2233
|
}
|
|
2193
2234
|
interface IamPropertiesMember {
|
|
@@ -2203,6 +2244,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2203
2244
|
mlflowProperties?: never;
|
|
2204
2245
|
workflowsMwaaProperties?: never;
|
|
2205
2246
|
workflowsServerlessProperties?: never;
|
|
2247
|
+
lakehouseProperties?: never;
|
|
2206
2248
|
$unknown?: never;
|
|
2207
2249
|
}
|
|
2208
2250
|
interface RedshiftPropertiesMember {
|
|
@@ -2218,6 +2260,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2218
2260
|
mlflowProperties?: never;
|
|
2219
2261
|
workflowsMwaaProperties?: never;
|
|
2220
2262
|
workflowsServerlessProperties?: never;
|
|
2263
|
+
lakehouseProperties?: never;
|
|
2221
2264
|
$unknown?: never;
|
|
2222
2265
|
}
|
|
2223
2266
|
interface SparkEmrPropertiesMember {
|
|
@@ -2233,6 +2276,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2233
2276
|
mlflowProperties?: never;
|
|
2234
2277
|
workflowsMwaaProperties?: never;
|
|
2235
2278
|
workflowsServerlessProperties?: never;
|
|
2279
|
+
lakehouseProperties?: never;
|
|
2236
2280
|
$unknown?: never;
|
|
2237
2281
|
}
|
|
2238
2282
|
interface SparkGluePropertiesMember {
|
|
@@ -2248,6 +2292,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2248
2292
|
mlflowProperties?: never;
|
|
2249
2293
|
workflowsMwaaProperties?: never;
|
|
2250
2294
|
workflowsServerlessProperties?: never;
|
|
2295
|
+
lakehouseProperties?: never;
|
|
2251
2296
|
$unknown?: never;
|
|
2252
2297
|
}
|
|
2253
2298
|
interface S3PropertiesMember {
|
|
@@ -2263,6 +2308,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2263
2308
|
mlflowProperties?: never;
|
|
2264
2309
|
workflowsMwaaProperties?: never;
|
|
2265
2310
|
workflowsServerlessProperties?: never;
|
|
2311
|
+
lakehouseProperties?: never;
|
|
2266
2312
|
$unknown?: never;
|
|
2267
2313
|
}
|
|
2268
2314
|
interface AmazonQPropertiesMember {
|
|
@@ -2278,6 +2324,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2278
2324
|
mlflowProperties?: never;
|
|
2279
2325
|
workflowsMwaaProperties?: never;
|
|
2280
2326
|
workflowsServerlessProperties?: never;
|
|
2327
|
+
lakehouseProperties?: never;
|
|
2281
2328
|
$unknown?: never;
|
|
2282
2329
|
}
|
|
2283
2330
|
interface MlflowPropertiesMember {
|
|
@@ -2293,6 +2340,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2293
2340
|
mlflowProperties: MlflowPropertiesOutput;
|
|
2294
2341
|
workflowsMwaaProperties?: never;
|
|
2295
2342
|
workflowsServerlessProperties?: never;
|
|
2343
|
+
lakehouseProperties?: never;
|
|
2296
2344
|
$unknown?: never;
|
|
2297
2345
|
}
|
|
2298
2346
|
interface WorkflowsMwaaPropertiesMember {
|
|
@@ -2308,6 +2356,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2308
2356
|
mlflowProperties?: never;
|
|
2309
2357
|
workflowsMwaaProperties: WorkflowsMwaaPropertiesOutput;
|
|
2310
2358
|
workflowsServerlessProperties?: never;
|
|
2359
|
+
lakehouseProperties?: never;
|
|
2311
2360
|
$unknown?: never;
|
|
2312
2361
|
}
|
|
2313
2362
|
interface WorkflowsServerlessPropertiesMember {
|
|
@@ -2323,6 +2372,23 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2323
2372
|
mlflowProperties?: never;
|
|
2324
2373
|
workflowsMwaaProperties?: never;
|
|
2325
2374
|
workflowsServerlessProperties: WorkflowsServerlessPropertiesOutput;
|
|
2375
|
+
lakehouseProperties?: never;
|
|
2376
|
+
$unknown?: never;
|
|
2377
|
+
}
|
|
2378
|
+
interface LakehousePropertiesMember {
|
|
2379
|
+
athenaProperties?: never;
|
|
2380
|
+
glueProperties?: never;
|
|
2381
|
+
hyperPodProperties?: never;
|
|
2382
|
+
iamProperties?: never;
|
|
2383
|
+
redshiftProperties?: never;
|
|
2384
|
+
sparkEmrProperties?: never;
|
|
2385
|
+
sparkGlueProperties?: never;
|
|
2386
|
+
s3Properties?: never;
|
|
2387
|
+
amazonQProperties?: never;
|
|
2388
|
+
mlflowProperties?: never;
|
|
2389
|
+
workflowsMwaaProperties?: never;
|
|
2390
|
+
workflowsServerlessProperties?: never;
|
|
2391
|
+
lakehouseProperties: LakehousePropertiesOutput;
|
|
2326
2392
|
$unknown?: never;
|
|
2327
2393
|
}
|
|
2328
2394
|
interface $UnknownMember {
|
|
@@ -2338,6 +2404,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2338
2404
|
mlflowProperties?: never;
|
|
2339
2405
|
workflowsMwaaProperties?: never;
|
|
2340
2406
|
workflowsServerlessProperties?: never;
|
|
2407
|
+
lakehouseProperties?: never;
|
|
2341
2408
|
$unknown: [string, any];
|
|
2342
2409
|
}
|
|
2343
2410
|
interface Visitor<T> {
|
|
@@ -2355,6 +2422,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2355
2422
|
workflowsServerlessProperties: (
|
|
2356
2423
|
value: WorkflowsServerlessPropertiesOutput
|
|
2357
2424
|
) => T;
|
|
2425
|
+
lakehouseProperties: (value: LakehousePropertiesOutput) => T;
|
|
2358
2426
|
_: (name: string, value: any) => T;
|
|
2359
2427
|
}
|
|
2360
2428
|
}
|
|
@@ -2369,6 +2437,9 @@ export interface GluePropertiesPatch {
|
|
|
2369
2437
|
export interface IamPropertiesPatch {
|
|
2370
2438
|
glueLineageSyncEnabled?: boolean | undefined;
|
|
2371
2439
|
}
|
|
2440
|
+
export interface LakehousePropertiesPatch {
|
|
2441
|
+
glueLineageSyncEnabled?: boolean | undefined;
|
|
2442
|
+
}
|
|
2372
2443
|
export interface MlflowPropertiesPatch {
|
|
2373
2444
|
trackingServerArn?: string | undefined;
|
|
2374
2445
|
}
|
|
@@ -2400,6 +2471,7 @@ export type ConnectionPropertiesPatch =
|
|
|
2400
2471
|
| ConnectionPropertiesPatch.AthenaPropertiesMember
|
|
2401
2472
|
| ConnectionPropertiesPatch.GluePropertiesMember
|
|
2402
2473
|
| ConnectionPropertiesPatch.IamPropertiesMember
|
|
2474
|
+
| ConnectionPropertiesPatch.LakehousePropertiesMember
|
|
2403
2475
|
| ConnectionPropertiesPatch.MlflowPropertiesMember
|
|
2404
2476
|
| ConnectionPropertiesPatch.RedshiftPropertiesMember
|
|
2405
2477
|
| ConnectionPropertiesPatch.S3PropertiesMember
|
|
@@ -2415,6 +2487,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2415
2487
|
s3Properties?: never;
|
|
2416
2488
|
amazonQProperties?: never;
|
|
2417
2489
|
mlflowProperties?: never;
|
|
2490
|
+
lakehouseProperties?: never;
|
|
2418
2491
|
$unknown?: never;
|
|
2419
2492
|
}
|
|
2420
2493
|
interface GluePropertiesMember {
|
|
@@ -2426,6 +2499,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2426
2499
|
s3Properties?: never;
|
|
2427
2500
|
amazonQProperties?: never;
|
|
2428
2501
|
mlflowProperties?: never;
|
|
2502
|
+
lakehouseProperties?: never;
|
|
2429
2503
|
$unknown?: never;
|
|
2430
2504
|
}
|
|
2431
2505
|
interface IamPropertiesMember {
|
|
@@ -2437,6 +2511,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2437
2511
|
s3Properties?: never;
|
|
2438
2512
|
amazonQProperties?: never;
|
|
2439
2513
|
mlflowProperties?: never;
|
|
2514
|
+
lakehouseProperties?: never;
|
|
2440
2515
|
$unknown?: never;
|
|
2441
2516
|
}
|
|
2442
2517
|
interface RedshiftPropertiesMember {
|
|
@@ -2448,6 +2523,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2448
2523
|
s3Properties?: never;
|
|
2449
2524
|
amazonQProperties?: never;
|
|
2450
2525
|
mlflowProperties?: never;
|
|
2526
|
+
lakehouseProperties?: never;
|
|
2451
2527
|
$unknown?: never;
|
|
2452
2528
|
}
|
|
2453
2529
|
interface SparkEmrPropertiesMember {
|
|
@@ -2459,6 +2535,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2459
2535
|
s3Properties?: never;
|
|
2460
2536
|
amazonQProperties?: never;
|
|
2461
2537
|
mlflowProperties?: never;
|
|
2538
|
+
lakehouseProperties?: never;
|
|
2462
2539
|
$unknown?: never;
|
|
2463
2540
|
}
|
|
2464
2541
|
interface S3PropertiesMember {
|
|
@@ -2470,6 +2547,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2470
2547
|
s3Properties: S3PropertiesPatch;
|
|
2471
2548
|
amazonQProperties?: never;
|
|
2472
2549
|
mlflowProperties?: never;
|
|
2550
|
+
lakehouseProperties?: never;
|
|
2473
2551
|
$unknown?: never;
|
|
2474
2552
|
}
|
|
2475
2553
|
interface AmazonQPropertiesMember {
|
|
@@ -2481,6 +2559,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2481
2559
|
s3Properties?: never;
|
|
2482
2560
|
amazonQProperties: AmazonQPropertiesPatch;
|
|
2483
2561
|
mlflowProperties?: never;
|
|
2562
|
+
lakehouseProperties?: never;
|
|
2484
2563
|
$unknown?: never;
|
|
2485
2564
|
}
|
|
2486
2565
|
interface MlflowPropertiesMember {
|
|
@@ -2492,6 +2571,19 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2492
2571
|
s3Properties?: never;
|
|
2493
2572
|
amazonQProperties?: never;
|
|
2494
2573
|
mlflowProperties: MlflowPropertiesPatch;
|
|
2574
|
+
lakehouseProperties?: never;
|
|
2575
|
+
$unknown?: never;
|
|
2576
|
+
}
|
|
2577
|
+
interface LakehousePropertiesMember {
|
|
2578
|
+
athenaProperties?: never;
|
|
2579
|
+
glueProperties?: never;
|
|
2580
|
+
iamProperties?: never;
|
|
2581
|
+
redshiftProperties?: never;
|
|
2582
|
+
sparkEmrProperties?: never;
|
|
2583
|
+
s3Properties?: never;
|
|
2584
|
+
amazonQProperties?: never;
|
|
2585
|
+
mlflowProperties?: never;
|
|
2586
|
+
lakehouseProperties: LakehousePropertiesPatch;
|
|
2495
2587
|
$unknown?: never;
|
|
2496
2588
|
}
|
|
2497
2589
|
interface $UnknownMember {
|
|
@@ -2503,6 +2595,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2503
2595
|
s3Properties?: never;
|
|
2504
2596
|
amazonQProperties?: never;
|
|
2505
2597
|
mlflowProperties?: never;
|
|
2598
|
+
lakehouseProperties?: never;
|
|
2506
2599
|
$unknown: [string, any];
|
|
2507
2600
|
}
|
|
2508
2601
|
interface Visitor<T> {
|
|
@@ -2514,6 +2607,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2514
2607
|
s3Properties: (value: S3PropertiesPatch) => T;
|
|
2515
2608
|
amazonQProperties: (value: AmazonQPropertiesPatch) => T;
|
|
2516
2609
|
mlflowProperties: (value: MlflowPropertiesPatch) => T;
|
|
2610
|
+
lakehouseProperties: (value: LakehousePropertiesPatch) => T;
|
|
2517
2611
|
_: (name: string, value: any) => T;
|
|
2518
2612
|
}
|
|
2519
2613
|
}
|
|
@@ -3557,79 +3651,3 @@ export interface SubscribedProjectInput {
|
|
|
3557
3651
|
export interface SubscribedUserInput {
|
|
3558
3652
|
identifier?: string | undefined;
|
|
3559
3653
|
}
|
|
3560
|
-
export type SubscribedPrincipalInput =
|
|
3561
|
-
| SubscribedPrincipalInput.GroupMember
|
|
3562
|
-
| SubscribedPrincipalInput.IamMember
|
|
3563
|
-
| SubscribedPrincipalInput.ProjectMember
|
|
3564
|
-
| SubscribedPrincipalInput.UserMember
|
|
3565
|
-
| SubscribedPrincipalInput.$UnknownMember;
|
|
3566
|
-
export declare namespace SubscribedPrincipalInput {
|
|
3567
|
-
interface ProjectMember {
|
|
3568
|
-
project: SubscribedProjectInput;
|
|
3569
|
-
user?: never;
|
|
3570
|
-
group?: never;
|
|
3571
|
-
iam?: never;
|
|
3572
|
-
$unknown?: never;
|
|
3573
|
-
}
|
|
3574
|
-
interface UserMember {
|
|
3575
|
-
project?: never;
|
|
3576
|
-
user: SubscribedUserInput;
|
|
3577
|
-
group?: never;
|
|
3578
|
-
iam?: never;
|
|
3579
|
-
$unknown?: never;
|
|
3580
|
-
}
|
|
3581
|
-
interface GroupMember {
|
|
3582
|
-
project?: never;
|
|
3583
|
-
user?: never;
|
|
3584
|
-
group: SubscribedGroupInput;
|
|
3585
|
-
iam?: never;
|
|
3586
|
-
$unknown?: never;
|
|
3587
|
-
}
|
|
3588
|
-
interface IamMember {
|
|
3589
|
-
project?: never;
|
|
3590
|
-
user?: never;
|
|
3591
|
-
group?: never;
|
|
3592
|
-
iam: SubscribedIamPrincipalInput;
|
|
3593
|
-
$unknown?: never;
|
|
3594
|
-
}
|
|
3595
|
-
interface $UnknownMember {
|
|
3596
|
-
project?: never;
|
|
3597
|
-
user?: never;
|
|
3598
|
-
group?: never;
|
|
3599
|
-
iam?: never;
|
|
3600
|
-
$unknown: [string, any];
|
|
3601
|
-
}
|
|
3602
|
-
interface Visitor<T> {
|
|
3603
|
-
project: (value: SubscribedProjectInput) => T;
|
|
3604
|
-
user: (value: SubscribedUserInput) => T;
|
|
3605
|
-
group: (value: SubscribedGroupInput) => T;
|
|
3606
|
-
iam: (value: SubscribedIamPrincipalInput) => T;
|
|
3607
|
-
_: (name: string, value: any) => T;
|
|
3608
|
-
}
|
|
3609
|
-
}
|
|
3610
|
-
export interface CreateSubscriptionRequestInput {
|
|
3611
|
-
domainIdentifier: string | undefined;
|
|
3612
|
-
subscribedPrincipals: SubscribedPrincipalInput[] | undefined;
|
|
3613
|
-
subscribedListings: SubscribedListingInput[] | undefined;
|
|
3614
|
-
requestReason: string | undefined;
|
|
3615
|
-
clientToken?: string | undefined;
|
|
3616
|
-
metadataForms?: FormInput[] | undefined;
|
|
3617
|
-
assetPermissions?: AssetPermission[] | undefined;
|
|
3618
|
-
assetScopes?: AcceptedAssetScope[] | undefined;
|
|
3619
|
-
}
|
|
3620
|
-
export interface CreateSubscriptionRequestOutput {
|
|
3621
|
-
id: string | undefined;
|
|
3622
|
-
createdBy: string | undefined;
|
|
3623
|
-
updatedBy?: string | undefined;
|
|
3624
|
-
domainId: string | undefined;
|
|
3625
|
-
status: SubscriptionRequestStatus | undefined;
|
|
3626
|
-
createdAt: Date | undefined;
|
|
3627
|
-
updatedAt: Date | undefined;
|
|
3628
|
-
requestReason: string | undefined;
|
|
3629
|
-
subscribedPrincipals: SubscribedPrincipal[] | undefined;
|
|
3630
|
-
subscribedListings: SubscribedListing[] | undefined;
|
|
3631
|
-
reviewerId?: string | undefined;
|
|
3632
|
-
decisionComment?: string | undefined;
|
|
3633
|
-
existingSubscriptionId?: string | undefined;
|
|
3634
|
-
metadataForms?: FormOutput[] | undefined;
|
|
3635
|
-
}
|
|
@@ -21,7 +21,6 @@ import {
|
|
|
21
21
|
GlossaryUsageRestriction,
|
|
22
22
|
GovernedEntityType,
|
|
23
23
|
GroupProfileStatus,
|
|
24
|
-
GroupSearchType,
|
|
25
24
|
JobRunMode,
|
|
26
25
|
JobRunStatus,
|
|
27
26
|
JobType,
|
|
@@ -64,13 +63,14 @@ import {
|
|
|
64
63
|
UserType,
|
|
65
64
|
} from "./enums";
|
|
66
65
|
import {
|
|
66
|
+
AcceptedAssetScope,
|
|
67
67
|
AccountInfo,
|
|
68
68
|
AccountPoolSummary,
|
|
69
69
|
AccountSource,
|
|
70
70
|
ActionParameters,
|
|
71
71
|
AssetFilterSummary,
|
|
72
|
-
AssetItem,
|
|
73
72
|
AssetListing,
|
|
73
|
+
AssetPermission,
|
|
74
74
|
AssetRevision,
|
|
75
75
|
ConfigurableEnvironmentAction,
|
|
76
76
|
Configuration,
|
|
@@ -111,12 +111,93 @@ import {
|
|
|
111
111
|
ScheduleConfiguration,
|
|
112
112
|
SingleSignOn,
|
|
113
113
|
SubscribedAsset,
|
|
114
|
+
SubscribedGroupInput,
|
|
115
|
+
SubscribedIamPrincipalInput,
|
|
114
116
|
SubscribedListing,
|
|
117
|
+
SubscribedListingInput,
|
|
115
118
|
SubscribedPrincipal,
|
|
119
|
+
SubscribedProjectInput,
|
|
120
|
+
SubscribedUserInput,
|
|
116
121
|
TermRelations,
|
|
117
122
|
TimeSeriesDataPointSummaryFormOutput,
|
|
118
123
|
UserProfileDetails,
|
|
119
124
|
} from "./models_0";
|
|
125
|
+
export type SubscribedPrincipalInput =
|
|
126
|
+
| SubscribedPrincipalInput.GroupMember
|
|
127
|
+
| SubscribedPrincipalInput.IamMember
|
|
128
|
+
| SubscribedPrincipalInput.ProjectMember
|
|
129
|
+
| SubscribedPrincipalInput.UserMember
|
|
130
|
+
| SubscribedPrincipalInput.$UnknownMember;
|
|
131
|
+
export declare namespace SubscribedPrincipalInput {
|
|
132
|
+
interface ProjectMember {
|
|
133
|
+
project: SubscribedProjectInput;
|
|
134
|
+
user?: never;
|
|
135
|
+
group?: never;
|
|
136
|
+
iam?: never;
|
|
137
|
+
$unknown?: never;
|
|
138
|
+
}
|
|
139
|
+
interface UserMember {
|
|
140
|
+
project?: never;
|
|
141
|
+
user: SubscribedUserInput;
|
|
142
|
+
group?: never;
|
|
143
|
+
iam?: never;
|
|
144
|
+
$unknown?: never;
|
|
145
|
+
}
|
|
146
|
+
interface GroupMember {
|
|
147
|
+
project?: never;
|
|
148
|
+
user?: never;
|
|
149
|
+
group: SubscribedGroupInput;
|
|
150
|
+
iam?: never;
|
|
151
|
+
$unknown?: never;
|
|
152
|
+
}
|
|
153
|
+
interface IamMember {
|
|
154
|
+
project?: never;
|
|
155
|
+
user?: never;
|
|
156
|
+
group?: never;
|
|
157
|
+
iam: SubscribedIamPrincipalInput;
|
|
158
|
+
$unknown?: never;
|
|
159
|
+
}
|
|
160
|
+
interface $UnknownMember {
|
|
161
|
+
project?: never;
|
|
162
|
+
user?: never;
|
|
163
|
+
group?: never;
|
|
164
|
+
iam?: never;
|
|
165
|
+
$unknown: [string, any];
|
|
166
|
+
}
|
|
167
|
+
interface Visitor<T> {
|
|
168
|
+
project: (value: SubscribedProjectInput) => T;
|
|
169
|
+
user: (value: SubscribedUserInput) => T;
|
|
170
|
+
group: (value: SubscribedGroupInput) => T;
|
|
171
|
+
iam: (value: SubscribedIamPrincipalInput) => T;
|
|
172
|
+
_: (name: string, value: any) => T;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
export interface CreateSubscriptionRequestInput {
|
|
176
|
+
domainIdentifier: string | undefined;
|
|
177
|
+
subscribedPrincipals: SubscribedPrincipalInput[] | undefined;
|
|
178
|
+
subscribedListings: SubscribedListingInput[] | undefined;
|
|
179
|
+
requestReason: string | undefined;
|
|
180
|
+
clientToken?: string | undefined;
|
|
181
|
+
metadataForms?: FormInput[] | undefined;
|
|
182
|
+
assetPermissions?: AssetPermission[] | undefined;
|
|
183
|
+
assetScopes?: AcceptedAssetScope[] | undefined;
|
|
184
|
+
}
|
|
185
|
+
export interface CreateSubscriptionRequestOutput {
|
|
186
|
+
id: string | undefined;
|
|
187
|
+
createdBy: string | undefined;
|
|
188
|
+
updatedBy?: string | undefined;
|
|
189
|
+
domainId: string | undefined;
|
|
190
|
+
status: SubscriptionRequestStatus | undefined;
|
|
191
|
+
createdAt: Date | undefined;
|
|
192
|
+
updatedAt: Date | undefined;
|
|
193
|
+
requestReason: string | undefined;
|
|
194
|
+
subscribedPrincipals: SubscribedPrincipal[] | undefined;
|
|
195
|
+
subscribedListings: SubscribedListing[] | undefined;
|
|
196
|
+
reviewerId?: string | undefined;
|
|
197
|
+
decisionComment?: string | undefined;
|
|
198
|
+
existingSubscriptionId?: string | undefined;
|
|
199
|
+
metadataForms?: FormOutput[] | undefined;
|
|
200
|
+
}
|
|
120
201
|
export interface SubscriptionTargetForm {
|
|
121
202
|
formName: string | undefined;
|
|
122
203
|
content: string | undefined;
|
|
@@ -2374,65 +2455,3 @@ export interface GlossaryTermItem {
|
|
|
2374
2455
|
updatedBy?: string | undefined;
|
|
2375
2456
|
additionalAttributes?: GlossaryTermItemAdditionalAttributes | undefined;
|
|
2376
2457
|
}
|
|
2377
|
-
export type SearchInventoryResultItem =
|
|
2378
|
-
| SearchInventoryResultItem.AssetItemMember
|
|
2379
|
-
| SearchInventoryResultItem.DataProductItemMember
|
|
2380
|
-
| SearchInventoryResultItem.GlossaryItemMember
|
|
2381
|
-
| SearchInventoryResultItem.GlossaryTermItemMember
|
|
2382
|
-
| SearchInventoryResultItem.$UnknownMember;
|
|
2383
|
-
export declare namespace SearchInventoryResultItem {
|
|
2384
|
-
interface GlossaryItemMember {
|
|
2385
|
-
glossaryItem: GlossaryItem;
|
|
2386
|
-
glossaryTermItem?: never;
|
|
2387
|
-
assetItem?: never;
|
|
2388
|
-
dataProductItem?: never;
|
|
2389
|
-
$unknown?: never;
|
|
2390
|
-
}
|
|
2391
|
-
interface GlossaryTermItemMember {
|
|
2392
|
-
glossaryItem?: never;
|
|
2393
|
-
glossaryTermItem: GlossaryTermItem;
|
|
2394
|
-
assetItem?: never;
|
|
2395
|
-
dataProductItem?: never;
|
|
2396
|
-
$unknown?: never;
|
|
2397
|
-
}
|
|
2398
|
-
interface AssetItemMember {
|
|
2399
|
-
glossaryItem?: never;
|
|
2400
|
-
glossaryTermItem?: never;
|
|
2401
|
-
assetItem: AssetItem;
|
|
2402
|
-
dataProductItem?: never;
|
|
2403
|
-
$unknown?: never;
|
|
2404
|
-
}
|
|
2405
|
-
interface DataProductItemMember {
|
|
2406
|
-
glossaryItem?: never;
|
|
2407
|
-
glossaryTermItem?: never;
|
|
2408
|
-
assetItem?: never;
|
|
2409
|
-
dataProductItem: DataProductResultItem;
|
|
2410
|
-
$unknown?: never;
|
|
2411
|
-
}
|
|
2412
|
-
interface $UnknownMember {
|
|
2413
|
-
glossaryItem?: never;
|
|
2414
|
-
glossaryTermItem?: never;
|
|
2415
|
-
assetItem?: never;
|
|
2416
|
-
dataProductItem?: never;
|
|
2417
|
-
$unknown: [string, any];
|
|
2418
|
-
}
|
|
2419
|
-
interface Visitor<T> {
|
|
2420
|
-
glossaryItem: (value: GlossaryItem) => T;
|
|
2421
|
-
glossaryTermItem: (value: GlossaryTermItem) => T;
|
|
2422
|
-
assetItem: (value: AssetItem) => T;
|
|
2423
|
-
dataProductItem: (value: DataProductResultItem) => T;
|
|
2424
|
-
_: (name: string, value: any) => T;
|
|
2425
|
-
}
|
|
2426
|
-
}
|
|
2427
|
-
export interface SearchOutput {
|
|
2428
|
-
items?: SearchInventoryResultItem[] | undefined;
|
|
2429
|
-
nextToken?: string | undefined;
|
|
2430
|
-
totalMatchCount?: number | undefined;
|
|
2431
|
-
}
|
|
2432
|
-
export interface SearchGroupProfilesInput {
|
|
2433
|
-
domainIdentifier: string | undefined;
|
|
2434
|
-
groupType: GroupSearchType | undefined;
|
|
2435
|
-
searchText?: string | undefined;
|
|
2436
|
-
maxResults?: number | undefined;
|
|
2437
|
-
nextToken?: string | undefined;
|
|
2438
|
-
}
|