@aws-sdk/client-datazone 3.1076.0 → 3.1077.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/index.js +172 -108
- package/dist-es/models/enums.js +66 -66
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +94 -39
- package/dist-types/commands/CreateConnectionCommand.d.ts +86 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +1 -1
- package/dist-types/commands/CreateSubscriptionGrantCommand.d.ts +1 -2
- package/dist-types/commands/GetConnectionCommand.d.ts +15 -0
- package/dist-types/commands/GetNotebookRunCommand.d.ts +2 -1
- package/dist-types/commands/ListConnectionsCommand.d.ts +15 -0
- package/dist-types/commands/ListNotebookRunsCommand.d.ts +1 -2
- package/dist-types/commands/UpdateConnectionCommand.d.ts +36 -0
- package/dist-types/models/enums.d.ts +74 -74
- package/dist-types/models/models_0.d.ts +329 -264
- package/dist-types/models/models_1.d.ts +261 -313
- package/dist-types/models/models_2.d.ts +314 -3
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +8 -0
- package/dist-types/ts3.4/commands/CreateRuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateSubscriptionGrantCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetNotebookRunCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListNotebookRunsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +67 -67
- package/dist-types/ts3.4/models/models_0.d.ts +147 -81
- package/dist-types/ts3.4/models/models_1.d.ts +85 -73
- package/dist-types/ts3.4/models/models_2.d.ts +73 -8
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -0
- package/package.json +6 -8
|
@@ -46,10 +46,7 @@ import {
|
|
|
46
46
|
Protocol,
|
|
47
47
|
ResolutionStrategy,
|
|
48
48
|
ResourceTagSource,
|
|
49
|
-
RuleAction,
|
|
50
49
|
RuleScopeSelectionMode,
|
|
51
|
-
RuleTargetType,
|
|
52
|
-
RuleType,
|
|
53
50
|
S3Permission,
|
|
54
51
|
Status,
|
|
55
52
|
SubscriptionRequestStatus,
|
|
@@ -1808,6 +1805,33 @@ export interface S3PropertiesInput {
|
|
|
1808
1805
|
s3AccessGrantLocationId?: string | undefined;
|
|
1809
1806
|
registerS3AccessGrantLocation?: boolean | undefined;
|
|
1810
1807
|
}
|
|
1808
|
+
export interface ConnectivityProperties {
|
|
1809
|
+
connectionProperties?: Record<string, string> | undefined;
|
|
1810
|
+
physicalConnectionRequirements?: PhysicalConnectionRequirements | undefined;
|
|
1811
|
+
name?: string | undefined;
|
|
1812
|
+
description?: string | undefined;
|
|
1813
|
+
validateCredentials?: boolean | undefined;
|
|
1814
|
+
validateForComputeEnvironments?: ComputeEnvironments[] | undefined;
|
|
1815
|
+
sparkProperties?: Record<string, string> | undefined;
|
|
1816
|
+
athenaProperties?: Record<string, string> | undefined;
|
|
1817
|
+
pythonProperties?: Record<string, string> | undefined;
|
|
1818
|
+
authenticationConfiguration?: AuthenticationConfigurationInput | undefined;
|
|
1819
|
+
}
|
|
1820
|
+
export interface IdentityMapping {
|
|
1821
|
+
usernameAttribute: string | undefined;
|
|
1822
|
+
prefix?: string | undefined;
|
|
1823
|
+
}
|
|
1824
|
+
export interface LineageSyncInput {
|
|
1825
|
+
timezone?: Timezone | undefined;
|
|
1826
|
+
enabled: boolean | undefined;
|
|
1827
|
+
schedule?: string | undefined;
|
|
1828
|
+
}
|
|
1829
|
+
export interface SnowflakePropertiesInput {
|
|
1830
|
+
connectivityProperties?: ConnectivityProperties | undefined;
|
|
1831
|
+
snowflakeRole: string | undefined;
|
|
1832
|
+
identityMapping: IdentityMapping | undefined;
|
|
1833
|
+
lineageSync?: LineageSyncInput | undefined;
|
|
1834
|
+
}
|
|
1811
1835
|
export interface SparkEmrPropertiesInput {
|
|
1812
1836
|
computeArn?: string | undefined;
|
|
1813
1837
|
instanceProfileArn?: string | undefined;
|
|
@@ -1851,6 +1875,7 @@ export type ConnectionPropertiesInput =
|
|
|
1851
1875
|
| ConnectionPropertiesInput.MlflowPropertiesMember
|
|
1852
1876
|
| ConnectionPropertiesInput.RedshiftPropertiesMember
|
|
1853
1877
|
| ConnectionPropertiesInput.S3PropertiesMember
|
|
1878
|
+
| ConnectionPropertiesInput.SnowflakePropertiesMember
|
|
1854
1879
|
| ConnectionPropertiesInput.SparkEmrPropertiesMember
|
|
1855
1880
|
| ConnectionPropertiesInput.SparkGluePropertiesMember
|
|
1856
1881
|
| ConnectionPropertiesInput.VpcPropertiesMember
|
|
@@ -1867,6 +1892,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1867
1892
|
sparkEmrProperties?: never;
|
|
1868
1893
|
sparkGlueProperties?: never;
|
|
1869
1894
|
s3Properties?: never;
|
|
1895
|
+
snowflakeProperties?: never;
|
|
1870
1896
|
amazonQProperties?: never;
|
|
1871
1897
|
mlflowProperties?: never;
|
|
1872
1898
|
workflowsMwaaProperties?: never;
|
|
@@ -1884,6 +1910,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1884
1910
|
sparkEmrProperties?: never;
|
|
1885
1911
|
sparkGlueProperties?: never;
|
|
1886
1912
|
s3Properties?: never;
|
|
1913
|
+
snowflakeProperties?: never;
|
|
1887
1914
|
amazonQProperties?: never;
|
|
1888
1915
|
mlflowProperties?: never;
|
|
1889
1916
|
workflowsMwaaProperties?: never;
|
|
@@ -1901,6 +1928,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1901
1928
|
sparkEmrProperties?: never;
|
|
1902
1929
|
sparkGlueProperties?: never;
|
|
1903
1930
|
s3Properties?: never;
|
|
1931
|
+
snowflakeProperties?: never;
|
|
1904
1932
|
amazonQProperties?: never;
|
|
1905
1933
|
mlflowProperties?: never;
|
|
1906
1934
|
workflowsMwaaProperties?: never;
|
|
@@ -1918,6 +1946,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1918
1946
|
sparkEmrProperties?: never;
|
|
1919
1947
|
sparkGlueProperties?: never;
|
|
1920
1948
|
s3Properties?: never;
|
|
1949
|
+
snowflakeProperties?: never;
|
|
1921
1950
|
amazonQProperties?: never;
|
|
1922
1951
|
mlflowProperties?: never;
|
|
1923
1952
|
workflowsMwaaProperties?: never;
|
|
@@ -1935,6 +1964,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1935
1964
|
sparkEmrProperties?: never;
|
|
1936
1965
|
sparkGlueProperties?: never;
|
|
1937
1966
|
s3Properties?: never;
|
|
1967
|
+
snowflakeProperties?: never;
|
|
1938
1968
|
amazonQProperties?: never;
|
|
1939
1969
|
mlflowProperties?: never;
|
|
1940
1970
|
workflowsMwaaProperties?: never;
|
|
@@ -1952,6 +1982,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1952
1982
|
sparkEmrProperties: SparkEmrPropertiesInput;
|
|
1953
1983
|
sparkGlueProperties?: never;
|
|
1954
1984
|
s3Properties?: never;
|
|
1985
|
+
snowflakeProperties?: never;
|
|
1955
1986
|
amazonQProperties?: never;
|
|
1956
1987
|
mlflowProperties?: never;
|
|
1957
1988
|
workflowsMwaaProperties?: never;
|
|
@@ -1969,6 +2000,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1969
2000
|
sparkEmrProperties?: never;
|
|
1970
2001
|
sparkGlueProperties: SparkGluePropertiesInput;
|
|
1971
2002
|
s3Properties?: never;
|
|
2003
|
+
snowflakeProperties?: never;
|
|
1972
2004
|
amazonQProperties?: never;
|
|
1973
2005
|
mlflowProperties?: never;
|
|
1974
2006
|
workflowsMwaaProperties?: never;
|
|
@@ -1986,6 +2018,25 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1986
2018
|
sparkEmrProperties?: never;
|
|
1987
2019
|
sparkGlueProperties?: never;
|
|
1988
2020
|
s3Properties: S3PropertiesInput;
|
|
2021
|
+
snowflakeProperties?: never;
|
|
2022
|
+
amazonQProperties?: never;
|
|
2023
|
+
mlflowProperties?: never;
|
|
2024
|
+
workflowsMwaaProperties?: never;
|
|
2025
|
+
workflowsServerlessProperties?: never;
|
|
2026
|
+
lakehouseProperties?: never;
|
|
2027
|
+
vpcProperties?: never;
|
|
2028
|
+
$unknown?: never;
|
|
2029
|
+
}
|
|
2030
|
+
interface SnowflakePropertiesMember {
|
|
2031
|
+
athenaProperties?: never;
|
|
2032
|
+
glueProperties?: never;
|
|
2033
|
+
hyperPodProperties?: never;
|
|
2034
|
+
iamProperties?: never;
|
|
2035
|
+
redshiftProperties?: never;
|
|
2036
|
+
sparkEmrProperties?: never;
|
|
2037
|
+
sparkGlueProperties?: never;
|
|
2038
|
+
s3Properties?: never;
|
|
2039
|
+
snowflakeProperties: SnowflakePropertiesInput;
|
|
1989
2040
|
amazonQProperties?: never;
|
|
1990
2041
|
mlflowProperties?: never;
|
|
1991
2042
|
workflowsMwaaProperties?: never;
|
|
@@ -2003,6 +2054,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
2003
2054
|
sparkEmrProperties?: never;
|
|
2004
2055
|
sparkGlueProperties?: never;
|
|
2005
2056
|
s3Properties?: never;
|
|
2057
|
+
snowflakeProperties?: never;
|
|
2006
2058
|
amazonQProperties: AmazonQPropertiesInput;
|
|
2007
2059
|
mlflowProperties?: never;
|
|
2008
2060
|
workflowsMwaaProperties?: never;
|
|
@@ -2020,6 +2072,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
2020
2072
|
sparkEmrProperties?: never;
|
|
2021
2073
|
sparkGlueProperties?: never;
|
|
2022
2074
|
s3Properties?: never;
|
|
2075
|
+
snowflakeProperties?: never;
|
|
2023
2076
|
amazonQProperties?: never;
|
|
2024
2077
|
mlflowProperties: MlflowPropertiesInput;
|
|
2025
2078
|
workflowsMwaaProperties?: never;
|
|
@@ -2037,6 +2090,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
2037
2090
|
sparkEmrProperties?: never;
|
|
2038
2091
|
sparkGlueProperties?: never;
|
|
2039
2092
|
s3Properties?: never;
|
|
2093
|
+
snowflakeProperties?: never;
|
|
2040
2094
|
amazonQProperties?: never;
|
|
2041
2095
|
mlflowProperties?: never;
|
|
2042
2096
|
workflowsMwaaProperties: WorkflowsMwaaPropertiesInput;
|
|
@@ -2054,6 +2108,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
2054
2108
|
sparkEmrProperties?: never;
|
|
2055
2109
|
sparkGlueProperties?: never;
|
|
2056
2110
|
s3Properties?: never;
|
|
2111
|
+
snowflakeProperties?: never;
|
|
2057
2112
|
amazonQProperties?: never;
|
|
2058
2113
|
mlflowProperties?: never;
|
|
2059
2114
|
workflowsMwaaProperties?: never;
|
|
@@ -2071,6 +2126,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
2071
2126
|
sparkEmrProperties?: never;
|
|
2072
2127
|
sparkGlueProperties?: never;
|
|
2073
2128
|
s3Properties?: never;
|
|
2129
|
+
snowflakeProperties?: never;
|
|
2074
2130
|
amazonQProperties?: never;
|
|
2075
2131
|
mlflowProperties?: never;
|
|
2076
2132
|
workflowsMwaaProperties?: never;
|
|
@@ -2088,6 +2144,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
2088
2144
|
sparkEmrProperties?: never;
|
|
2089
2145
|
sparkGlueProperties?: never;
|
|
2090
2146
|
s3Properties?: never;
|
|
2147
|
+
snowflakeProperties?: never;
|
|
2091
2148
|
amazonQProperties?: never;
|
|
2092
2149
|
mlflowProperties?: never;
|
|
2093
2150
|
workflowsMwaaProperties?: never;
|
|
@@ -2105,6 +2162,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
2105
2162
|
sparkEmrProperties?: never;
|
|
2106
2163
|
sparkGlueProperties?: never;
|
|
2107
2164
|
s3Properties?: never;
|
|
2165
|
+
snowflakeProperties?: never;
|
|
2108
2166
|
amazonQProperties?: never;
|
|
2109
2167
|
mlflowProperties?: never;
|
|
2110
2168
|
workflowsMwaaProperties?: never;
|
|
@@ -2122,6 +2180,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
2122
2180
|
sparkEmrProperties: (value: SparkEmrPropertiesInput) => T;
|
|
2123
2181
|
sparkGlueProperties: (value: SparkGluePropertiesInput) => T;
|
|
2124
2182
|
s3Properties: (value: S3PropertiesInput) => T;
|
|
2183
|
+
snowflakeProperties: (value: SnowflakePropertiesInput) => T;
|
|
2125
2184
|
amazonQProperties: (value: AmazonQPropertiesInput) => T;
|
|
2126
2185
|
mlflowProperties: (value: MlflowPropertiesInput) => T;
|
|
2127
2186
|
workflowsMwaaProperties: (value: WorkflowsMwaaPropertiesInput) => T;
|
|
@@ -2175,6 +2234,19 @@ export interface S3PropertiesOutput {
|
|
|
2175
2234
|
status?: ConnectionStatus | undefined;
|
|
2176
2235
|
errorMessage?: string | undefined;
|
|
2177
2236
|
}
|
|
2237
|
+
export interface LineageSyncOutput {
|
|
2238
|
+
lineageJobId?: string | undefined;
|
|
2239
|
+
timezone?: Timezone | undefined;
|
|
2240
|
+
enabled?: boolean | undefined;
|
|
2241
|
+
schedule?: string | undefined;
|
|
2242
|
+
}
|
|
2243
|
+
export interface SnowflakePropertiesOutput {
|
|
2244
|
+
snowflakeRole: string | undefined;
|
|
2245
|
+
identityMapping: IdentityMapping | undefined;
|
|
2246
|
+
lineageSync: LineageSyncOutput | undefined;
|
|
2247
|
+
status: ConnectionStatus | undefined;
|
|
2248
|
+
errorMessage?: string | undefined;
|
|
2249
|
+
}
|
|
2178
2250
|
export interface ManagedEndpointCredentials {
|
|
2179
2251
|
id?: string | undefined;
|
|
2180
2252
|
token?: string | undefined;
|
|
@@ -2227,6 +2299,7 @@ export type ConnectionPropertiesOutput =
|
|
|
2227
2299
|
| ConnectionPropertiesOutput.MlflowPropertiesMember
|
|
2228
2300
|
| ConnectionPropertiesOutput.RedshiftPropertiesMember
|
|
2229
2301
|
| ConnectionPropertiesOutput.S3PropertiesMember
|
|
2302
|
+
| ConnectionPropertiesOutput.SnowflakePropertiesMember
|
|
2230
2303
|
| ConnectionPropertiesOutput.SparkEmrPropertiesMember
|
|
2231
2304
|
| ConnectionPropertiesOutput.SparkGluePropertiesMember
|
|
2232
2305
|
| ConnectionPropertiesOutput.VpcPropertiesMember
|
|
@@ -2243,6 +2316,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2243
2316
|
sparkEmrProperties?: never;
|
|
2244
2317
|
sparkGlueProperties?: never;
|
|
2245
2318
|
s3Properties?: never;
|
|
2319
|
+
snowflakeProperties?: never;
|
|
2246
2320
|
amazonQProperties?: never;
|
|
2247
2321
|
mlflowProperties?: never;
|
|
2248
2322
|
workflowsMwaaProperties?: never;
|
|
@@ -2260,6 +2334,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2260
2334
|
sparkEmrProperties?: never;
|
|
2261
2335
|
sparkGlueProperties?: never;
|
|
2262
2336
|
s3Properties?: never;
|
|
2337
|
+
snowflakeProperties?: never;
|
|
2263
2338
|
amazonQProperties?: never;
|
|
2264
2339
|
mlflowProperties?: never;
|
|
2265
2340
|
workflowsMwaaProperties?: never;
|
|
@@ -2277,6 +2352,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2277
2352
|
sparkEmrProperties?: never;
|
|
2278
2353
|
sparkGlueProperties?: never;
|
|
2279
2354
|
s3Properties?: never;
|
|
2355
|
+
snowflakeProperties?: never;
|
|
2280
2356
|
amazonQProperties?: never;
|
|
2281
2357
|
mlflowProperties?: never;
|
|
2282
2358
|
workflowsMwaaProperties?: never;
|
|
@@ -2294,6 +2370,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2294
2370
|
sparkEmrProperties?: never;
|
|
2295
2371
|
sparkGlueProperties?: never;
|
|
2296
2372
|
s3Properties?: never;
|
|
2373
|
+
snowflakeProperties?: never;
|
|
2297
2374
|
amazonQProperties?: never;
|
|
2298
2375
|
mlflowProperties?: never;
|
|
2299
2376
|
workflowsMwaaProperties?: never;
|
|
@@ -2311,6 +2388,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2311
2388
|
sparkEmrProperties?: never;
|
|
2312
2389
|
sparkGlueProperties?: never;
|
|
2313
2390
|
s3Properties?: never;
|
|
2391
|
+
snowflakeProperties?: never;
|
|
2314
2392
|
amazonQProperties?: never;
|
|
2315
2393
|
mlflowProperties?: never;
|
|
2316
2394
|
workflowsMwaaProperties?: never;
|
|
@@ -2328,6 +2406,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2328
2406
|
sparkEmrProperties: SparkEmrPropertiesOutput;
|
|
2329
2407
|
sparkGlueProperties?: never;
|
|
2330
2408
|
s3Properties?: never;
|
|
2409
|
+
snowflakeProperties?: never;
|
|
2331
2410
|
amazonQProperties?: never;
|
|
2332
2411
|
mlflowProperties?: never;
|
|
2333
2412
|
workflowsMwaaProperties?: never;
|
|
@@ -2345,6 +2424,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2345
2424
|
sparkEmrProperties?: never;
|
|
2346
2425
|
sparkGlueProperties: SparkGluePropertiesOutput;
|
|
2347
2426
|
s3Properties?: never;
|
|
2427
|
+
snowflakeProperties?: never;
|
|
2348
2428
|
amazonQProperties?: never;
|
|
2349
2429
|
mlflowProperties?: never;
|
|
2350
2430
|
workflowsMwaaProperties?: never;
|
|
@@ -2362,6 +2442,25 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2362
2442
|
sparkEmrProperties?: never;
|
|
2363
2443
|
sparkGlueProperties?: never;
|
|
2364
2444
|
s3Properties: S3PropertiesOutput;
|
|
2445
|
+
snowflakeProperties?: never;
|
|
2446
|
+
amazonQProperties?: never;
|
|
2447
|
+
mlflowProperties?: never;
|
|
2448
|
+
workflowsMwaaProperties?: never;
|
|
2449
|
+
workflowsServerlessProperties?: never;
|
|
2450
|
+
lakehouseProperties?: never;
|
|
2451
|
+
vpcProperties?: never;
|
|
2452
|
+
$unknown?: never;
|
|
2453
|
+
}
|
|
2454
|
+
interface SnowflakePropertiesMember {
|
|
2455
|
+
athenaProperties?: never;
|
|
2456
|
+
glueProperties?: never;
|
|
2457
|
+
hyperPodProperties?: never;
|
|
2458
|
+
iamProperties?: never;
|
|
2459
|
+
redshiftProperties?: never;
|
|
2460
|
+
sparkEmrProperties?: never;
|
|
2461
|
+
sparkGlueProperties?: never;
|
|
2462
|
+
s3Properties?: never;
|
|
2463
|
+
snowflakeProperties: SnowflakePropertiesOutput;
|
|
2365
2464
|
amazonQProperties?: never;
|
|
2366
2465
|
mlflowProperties?: never;
|
|
2367
2466
|
workflowsMwaaProperties?: never;
|
|
@@ -2379,6 +2478,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2379
2478
|
sparkEmrProperties?: never;
|
|
2380
2479
|
sparkGlueProperties?: never;
|
|
2381
2480
|
s3Properties?: never;
|
|
2481
|
+
snowflakeProperties?: never;
|
|
2382
2482
|
amazonQProperties: AmazonQPropertiesOutput;
|
|
2383
2483
|
mlflowProperties?: never;
|
|
2384
2484
|
workflowsMwaaProperties?: never;
|
|
@@ -2396,6 +2496,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2396
2496
|
sparkEmrProperties?: never;
|
|
2397
2497
|
sparkGlueProperties?: never;
|
|
2398
2498
|
s3Properties?: never;
|
|
2499
|
+
snowflakeProperties?: never;
|
|
2399
2500
|
amazonQProperties?: never;
|
|
2400
2501
|
mlflowProperties: MlflowPropertiesOutput;
|
|
2401
2502
|
workflowsMwaaProperties?: never;
|
|
@@ -2413,6 +2514,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2413
2514
|
sparkEmrProperties?: never;
|
|
2414
2515
|
sparkGlueProperties?: never;
|
|
2415
2516
|
s3Properties?: never;
|
|
2517
|
+
snowflakeProperties?: never;
|
|
2416
2518
|
amazonQProperties?: never;
|
|
2417
2519
|
mlflowProperties?: never;
|
|
2418
2520
|
workflowsMwaaProperties: WorkflowsMwaaPropertiesOutput;
|
|
@@ -2430,6 +2532,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2430
2532
|
sparkEmrProperties?: never;
|
|
2431
2533
|
sparkGlueProperties?: never;
|
|
2432
2534
|
s3Properties?: never;
|
|
2535
|
+
snowflakeProperties?: never;
|
|
2433
2536
|
amazonQProperties?: never;
|
|
2434
2537
|
mlflowProperties?: never;
|
|
2435
2538
|
workflowsMwaaProperties?: never;
|
|
@@ -2447,6 +2550,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2447
2550
|
sparkEmrProperties?: never;
|
|
2448
2551
|
sparkGlueProperties?: never;
|
|
2449
2552
|
s3Properties?: never;
|
|
2553
|
+
snowflakeProperties?: never;
|
|
2450
2554
|
amazonQProperties?: never;
|
|
2451
2555
|
mlflowProperties?: never;
|
|
2452
2556
|
workflowsMwaaProperties?: never;
|
|
@@ -2464,6 +2568,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2464
2568
|
sparkEmrProperties?: never;
|
|
2465
2569
|
sparkGlueProperties?: never;
|
|
2466
2570
|
s3Properties?: never;
|
|
2571
|
+
snowflakeProperties?: never;
|
|
2467
2572
|
amazonQProperties?: never;
|
|
2468
2573
|
mlflowProperties?: never;
|
|
2469
2574
|
workflowsMwaaProperties?: never;
|
|
@@ -2481,6 +2586,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2481
2586
|
sparkEmrProperties?: never;
|
|
2482
2587
|
sparkGlueProperties?: never;
|
|
2483
2588
|
s3Properties?: never;
|
|
2589
|
+
snowflakeProperties?: never;
|
|
2484
2590
|
amazonQProperties?: never;
|
|
2485
2591
|
mlflowProperties?: never;
|
|
2486
2592
|
workflowsMwaaProperties?: never;
|
|
@@ -2498,6 +2604,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2498
2604
|
sparkEmrProperties: (value: SparkEmrPropertiesOutput) => T;
|
|
2499
2605
|
sparkGlueProperties: (value: SparkGluePropertiesOutput) => T;
|
|
2500
2606
|
s3Properties: (value: S3PropertiesOutput) => T;
|
|
2607
|
+
snowflakeProperties: (value: SnowflakePropertiesOutput) => T;
|
|
2501
2608
|
amazonQProperties: (value: AmazonQPropertiesOutput) => T;
|
|
2502
2609
|
mlflowProperties: (value: MlflowPropertiesOutput) => T;
|
|
2503
2610
|
workflowsMwaaProperties: (value: WorkflowsMwaaPropertiesOutput) => T;
|
|
@@ -2539,6 +2646,16 @@ export interface S3PropertiesPatch {
|
|
|
2539
2646
|
s3AccessGrantLocationId?: string | undefined;
|
|
2540
2647
|
registerS3AccessGrantLocation?: boolean | undefined;
|
|
2541
2648
|
}
|
|
2649
|
+
export interface ConnectivityPropertiesPatch {
|
|
2650
|
+
description?: string | undefined;
|
|
2651
|
+
connectionProperties?: Record<string, string> | undefined;
|
|
2652
|
+
authenticationConfiguration?: AuthenticationConfigurationPatch | undefined;
|
|
2653
|
+
}
|
|
2654
|
+
export interface SnowflakePropertiesPatch {
|
|
2655
|
+
connectivityPropertiesPatch?: ConnectivityPropertiesPatch | undefined;
|
|
2656
|
+
snowflakeRole?: string | undefined;
|
|
2657
|
+
lineageSync?: LineageSyncInput | undefined;
|
|
2658
|
+
}
|
|
2542
2659
|
export interface SparkEmrPropertiesPatch {
|
|
2543
2660
|
computeArn?: string | undefined;
|
|
2544
2661
|
instanceProfileArn?: string | undefined;
|
|
@@ -2563,6 +2680,7 @@ export type ConnectionPropertiesPatch =
|
|
|
2563
2680
|
| ConnectionPropertiesPatch.MlflowPropertiesMember
|
|
2564
2681
|
| ConnectionPropertiesPatch.RedshiftPropertiesMember
|
|
2565
2682
|
| ConnectionPropertiesPatch.S3PropertiesMember
|
|
2683
|
+
| ConnectionPropertiesPatch.SnowflakePropertiesMember
|
|
2566
2684
|
| ConnectionPropertiesPatch.SparkEmrPropertiesMember
|
|
2567
2685
|
| ConnectionPropertiesPatch.VpcPropertiesMember
|
|
2568
2686
|
| ConnectionPropertiesPatch.$UnknownMember;
|
|
@@ -2574,6 +2692,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2574
2692
|
redshiftProperties?: never;
|
|
2575
2693
|
sparkEmrProperties?: never;
|
|
2576
2694
|
s3Properties?: never;
|
|
2695
|
+
snowflakeProperties?: never;
|
|
2577
2696
|
amazonQProperties?: never;
|
|
2578
2697
|
mlflowProperties?: never;
|
|
2579
2698
|
lakehouseProperties?: never;
|
|
@@ -2587,6 +2706,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2587
2706
|
redshiftProperties?: never;
|
|
2588
2707
|
sparkEmrProperties?: never;
|
|
2589
2708
|
s3Properties?: never;
|
|
2709
|
+
snowflakeProperties?: never;
|
|
2590
2710
|
amazonQProperties?: never;
|
|
2591
2711
|
mlflowProperties?: never;
|
|
2592
2712
|
lakehouseProperties?: never;
|
|
@@ -2600,6 +2720,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2600
2720
|
redshiftProperties?: never;
|
|
2601
2721
|
sparkEmrProperties?: never;
|
|
2602
2722
|
s3Properties?: never;
|
|
2723
|
+
snowflakeProperties?: never;
|
|
2603
2724
|
amazonQProperties?: never;
|
|
2604
2725
|
mlflowProperties?: never;
|
|
2605
2726
|
lakehouseProperties?: never;
|
|
@@ -2613,6 +2734,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2613
2734
|
redshiftProperties: RedshiftPropertiesPatch;
|
|
2614
2735
|
sparkEmrProperties?: never;
|
|
2615
2736
|
s3Properties?: never;
|
|
2737
|
+
snowflakeProperties?: never;
|
|
2616
2738
|
amazonQProperties?: never;
|
|
2617
2739
|
mlflowProperties?: never;
|
|
2618
2740
|
lakehouseProperties?: never;
|
|
@@ -2626,6 +2748,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2626
2748
|
redshiftProperties?: never;
|
|
2627
2749
|
sparkEmrProperties: SparkEmrPropertiesPatch;
|
|
2628
2750
|
s3Properties?: never;
|
|
2751
|
+
snowflakeProperties?: never;
|
|
2629
2752
|
amazonQProperties?: never;
|
|
2630
2753
|
mlflowProperties?: never;
|
|
2631
2754
|
lakehouseProperties?: never;
|
|
@@ -2639,6 +2762,21 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2639
2762
|
redshiftProperties?: never;
|
|
2640
2763
|
sparkEmrProperties?: never;
|
|
2641
2764
|
s3Properties: S3PropertiesPatch;
|
|
2765
|
+
snowflakeProperties?: never;
|
|
2766
|
+
amazonQProperties?: never;
|
|
2767
|
+
mlflowProperties?: never;
|
|
2768
|
+
lakehouseProperties?: never;
|
|
2769
|
+
vpcProperties?: never;
|
|
2770
|
+
$unknown?: never;
|
|
2771
|
+
}
|
|
2772
|
+
interface SnowflakePropertiesMember {
|
|
2773
|
+
athenaProperties?: never;
|
|
2774
|
+
glueProperties?: never;
|
|
2775
|
+
iamProperties?: never;
|
|
2776
|
+
redshiftProperties?: never;
|
|
2777
|
+
sparkEmrProperties?: never;
|
|
2778
|
+
s3Properties?: never;
|
|
2779
|
+
snowflakeProperties: SnowflakePropertiesPatch;
|
|
2642
2780
|
amazonQProperties?: never;
|
|
2643
2781
|
mlflowProperties?: never;
|
|
2644
2782
|
lakehouseProperties?: never;
|
|
@@ -2652,6 +2790,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2652
2790
|
redshiftProperties?: never;
|
|
2653
2791
|
sparkEmrProperties?: never;
|
|
2654
2792
|
s3Properties?: never;
|
|
2793
|
+
snowflakeProperties?: never;
|
|
2655
2794
|
amazonQProperties: AmazonQPropertiesPatch;
|
|
2656
2795
|
mlflowProperties?: never;
|
|
2657
2796
|
lakehouseProperties?: never;
|
|
@@ -2665,6 +2804,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2665
2804
|
redshiftProperties?: never;
|
|
2666
2805
|
sparkEmrProperties?: never;
|
|
2667
2806
|
s3Properties?: never;
|
|
2807
|
+
snowflakeProperties?: never;
|
|
2668
2808
|
amazonQProperties?: never;
|
|
2669
2809
|
mlflowProperties: MlflowPropertiesPatch;
|
|
2670
2810
|
lakehouseProperties?: never;
|
|
@@ -2678,6 +2818,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2678
2818
|
redshiftProperties?: never;
|
|
2679
2819
|
sparkEmrProperties?: never;
|
|
2680
2820
|
s3Properties?: never;
|
|
2821
|
+
snowflakeProperties?: never;
|
|
2681
2822
|
amazonQProperties?: never;
|
|
2682
2823
|
mlflowProperties?: never;
|
|
2683
2824
|
lakehouseProperties: LakehousePropertiesPatch;
|
|
@@ -2691,6 +2832,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2691
2832
|
redshiftProperties?: never;
|
|
2692
2833
|
sparkEmrProperties?: never;
|
|
2693
2834
|
s3Properties?: never;
|
|
2835
|
+
snowflakeProperties?: never;
|
|
2694
2836
|
amazonQProperties?: never;
|
|
2695
2837
|
mlflowProperties?: never;
|
|
2696
2838
|
lakehouseProperties?: never;
|
|
@@ -2704,6 +2846,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2704
2846
|
redshiftProperties?: never;
|
|
2705
2847
|
sparkEmrProperties?: never;
|
|
2706
2848
|
s3Properties?: never;
|
|
2849
|
+
snowflakeProperties?: never;
|
|
2707
2850
|
amazonQProperties?: never;
|
|
2708
2851
|
mlflowProperties?: never;
|
|
2709
2852
|
lakehouseProperties?: never;
|
|
@@ -2717,6 +2860,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2717
2860
|
redshiftProperties: (value: RedshiftPropertiesPatch) => T;
|
|
2718
2861
|
sparkEmrProperties: (value: SparkEmrPropertiesPatch) => T;
|
|
2719
2862
|
s3Properties: (value: S3PropertiesPatch) => T;
|
|
2863
|
+
snowflakeProperties: (value: SnowflakePropertiesPatch) => T;
|
|
2720
2864
|
amazonQProperties: (value: AmazonQPropertiesPatch) => T;
|
|
2721
2865
|
mlflowProperties: (value: MlflowPropertiesPatch) => T;
|
|
2722
2866
|
lakehouseProperties: (value: LakehousePropertiesPatch) => T;
|
|
@@ -3663,81 +3807,3 @@ export interface ProjectsForRule {
|
|
|
3663
3807
|
selectionMode: RuleScopeSelectionMode | undefined;
|
|
3664
3808
|
specificProjects?: string[] | undefined;
|
|
3665
3809
|
}
|
|
3666
|
-
export interface RuleScope {
|
|
3667
|
-
assetType?: AssetTypesForRule | undefined;
|
|
3668
|
-
dataProduct?: boolean | undefined;
|
|
3669
|
-
project?: ProjectsForRule | undefined;
|
|
3670
|
-
}
|
|
3671
|
-
export interface DomainUnitTarget {
|
|
3672
|
-
domainUnitId: string | undefined;
|
|
3673
|
-
includeChildDomainUnits?: boolean | undefined;
|
|
3674
|
-
}
|
|
3675
|
-
export type RuleTarget =
|
|
3676
|
-
| RuleTarget.DomainUnitTargetMember
|
|
3677
|
-
| RuleTarget.$UnknownMember;
|
|
3678
|
-
export declare namespace RuleTarget {
|
|
3679
|
-
interface DomainUnitTargetMember {
|
|
3680
|
-
domainUnitTarget: DomainUnitTarget;
|
|
3681
|
-
$unknown?: never;
|
|
3682
|
-
}
|
|
3683
|
-
interface $UnknownMember {
|
|
3684
|
-
domainUnitTarget?: never;
|
|
3685
|
-
$unknown: [string, any];
|
|
3686
|
-
}
|
|
3687
|
-
interface Visitor<T> {
|
|
3688
|
-
domainUnitTarget: (value: DomainUnitTarget) => T;
|
|
3689
|
-
_: (name: string, value: any) => T;
|
|
3690
|
-
}
|
|
3691
|
-
}
|
|
3692
|
-
export interface CreateRuleInput {
|
|
3693
|
-
domainIdentifier: string | undefined;
|
|
3694
|
-
name: string | undefined;
|
|
3695
|
-
target: RuleTarget | undefined;
|
|
3696
|
-
action: RuleAction | undefined;
|
|
3697
|
-
scope: RuleScope | undefined;
|
|
3698
|
-
detail: RuleDetail | undefined;
|
|
3699
|
-
description?: string | undefined;
|
|
3700
|
-
clientToken?: string | undefined;
|
|
3701
|
-
}
|
|
3702
|
-
export interface CreateRuleOutput {
|
|
3703
|
-
identifier: string | undefined;
|
|
3704
|
-
name: string | undefined;
|
|
3705
|
-
ruleType: RuleType | undefined;
|
|
3706
|
-
target: RuleTarget | undefined;
|
|
3707
|
-
action: RuleAction | undefined;
|
|
3708
|
-
scope: RuleScope | undefined;
|
|
3709
|
-
detail: RuleDetail | undefined;
|
|
3710
|
-
targetType?: RuleTargetType | undefined;
|
|
3711
|
-
description?: string | undefined;
|
|
3712
|
-
createdAt: Date | undefined;
|
|
3713
|
-
createdBy: string | undefined;
|
|
3714
|
-
}
|
|
3715
|
-
export interface ListingRevisionInput {
|
|
3716
|
-
identifier: string | undefined;
|
|
3717
|
-
revision: string | undefined;
|
|
3718
|
-
}
|
|
3719
|
-
export type GrantedEntityInput =
|
|
3720
|
-
| GrantedEntityInput.ListingMember
|
|
3721
|
-
| GrantedEntityInput.$UnknownMember;
|
|
3722
|
-
export declare namespace GrantedEntityInput {
|
|
3723
|
-
interface ListingMember {
|
|
3724
|
-
listing: ListingRevisionInput;
|
|
3725
|
-
$unknown?: never;
|
|
3726
|
-
}
|
|
3727
|
-
interface $UnknownMember {
|
|
3728
|
-
listing?: never;
|
|
3729
|
-
$unknown: [string, any];
|
|
3730
|
-
}
|
|
3731
|
-
interface Visitor<T> {
|
|
3732
|
-
listing: (value: ListingRevisionInput) => T;
|
|
3733
|
-
_: (name: string, value: any) => T;
|
|
3734
|
-
}
|
|
3735
|
-
}
|
|
3736
|
-
export interface CreateSubscriptionGrantInput {
|
|
3737
|
-
domainIdentifier: string | undefined;
|
|
3738
|
-
environmentIdentifier: string | undefined;
|
|
3739
|
-
subscriptionTargetIdentifier?: string | undefined;
|
|
3740
|
-
grantedEntity: GrantedEntityInput | undefined;
|
|
3741
|
-
assetTargetNames?: AssetTargetNameMap[] | undefined;
|
|
3742
|
-
clientToken?: string | undefined;
|
|
3743
|
-
}
|