@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
package/dist-cjs/index.js
CHANGED
|
@@ -10,9 +10,10 @@ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CON
|
|
|
10
10
|
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
11
|
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
12
|
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
-
const { toUtf8, fromUtf8, toBase64, fromBase64,
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
14
|
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
15
|
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
16
17
|
|
|
17
18
|
const defaultDataZoneHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
19
|
return {
|
|
@@ -65,7 +66,7 @@ const commonParams = {
|
|
|
65
66
|
Region: { type: "builtInParams", name: "region" },
|
|
66
67
|
};
|
|
67
68
|
|
|
68
|
-
var version = "3.
|
|
69
|
+
var version = "3.1076.0";
|
|
69
70
|
var packageInfo = {
|
|
70
71
|
version: version};
|
|
71
72
|
|
|
@@ -404,7 +405,7 @@ const _CN = "CreateNotebook";
|
|
|
404
405
|
const _CNI = "CreateNotebookInput";
|
|
405
406
|
const _CNO = "CreateNotebookOutput";
|
|
406
407
|
const _CO = "CellOrder";
|
|
407
|
-
const _CP = "
|
|
408
|
+
const _CP = "ConnectivityProperties";
|
|
408
409
|
const _CPFPPPGD = "CreateProjectFromProjectProfilePolicyGrantDetail";
|
|
409
410
|
const _CPI = "CreateProjectInput";
|
|
410
411
|
const _CPIo = "ConnectionPropertiesInput";
|
|
@@ -414,12 +415,14 @@ const _CPMI = "CreateProjectMembershipInput";
|
|
|
414
415
|
const _CPMO = "CreateProjectMembershipOutput";
|
|
415
416
|
const _CPO = "CreateProjectOutput";
|
|
416
417
|
const _CPOo = "ConnectionPropertiesOutput";
|
|
417
|
-
const _CPP = "
|
|
418
|
+
const _CPP = "ConnectivityPropertiesPatch";
|
|
418
419
|
const _CPPGD = "CreateProjectPolicyGrantDetail";
|
|
419
420
|
const _CPPI = "CreateProjectProfileInput";
|
|
420
421
|
const _CPPO = "CreateProjectProfileOutput";
|
|
422
|
+
const _CPPo = "ConnectionPropertiesPatch";
|
|
421
423
|
const _CPPr = "CreateProjectProfile";
|
|
422
424
|
const _CPr = "CreateProject";
|
|
425
|
+
const _CPu = "CustomParameter";
|
|
423
426
|
const _CR = "CreateRule";
|
|
424
427
|
const _CRI = "CreateRuleInput";
|
|
425
428
|
const _CRO = "CreateRuleOutput";
|
|
@@ -777,6 +780,7 @@ const _HPPO = "HyperPodPropertiesOutput";
|
|
|
777
780
|
const _I = "Id";
|
|
778
781
|
const _IE = "InExpression";
|
|
779
782
|
const _IL = "ImportList";
|
|
783
|
+
const _IM = "IdentityMapping";
|
|
780
784
|
const _INE = "IsNullExpression";
|
|
781
785
|
const _INNE = "IsNotNullExpression";
|
|
782
786
|
const _IPI = "IamPropertiesInput";
|
|
@@ -902,10 +906,12 @@ const _LS = "ListingSummary";
|
|
|
902
906
|
const _LSG = "ListSubscriptionGrants";
|
|
903
907
|
const _LSGI = "ListSubscriptionGrantsInput";
|
|
904
908
|
const _LSGO = "ListSubscriptionGrantsOutput";
|
|
905
|
-
const _LSI = "
|
|
906
|
-
const _LSIi = "
|
|
907
|
-
const _LSIis = "
|
|
908
|
-
const
|
|
909
|
+
const _LSI = "LineageSyncInput";
|
|
910
|
+
const _LSIi = "ListingSummaryItem";
|
|
911
|
+
const _LSIis = "ListSubscriptionsInput";
|
|
912
|
+
const _LSIist = "ListingSummaryItems";
|
|
913
|
+
const _LSO = "LineageSyncOutput";
|
|
914
|
+
const _LSOi = "ListSubscriptionsOutput";
|
|
909
915
|
const _LSQRD = "LineageSqlQueryRunDetails";
|
|
910
916
|
const _LSR = "ListSubscriptionRequests";
|
|
911
917
|
const _LSRI = "ListSubscriptionRequestsInput";
|
|
@@ -1154,12 +1160,15 @@ const _SNRt = "StopNotebookRun";
|
|
|
1154
1160
|
const _SO = "SearchOutput";
|
|
1155
1161
|
const _SP = "SubscribedProject";
|
|
1156
1162
|
const _SPI = "S3PropertiesInput";
|
|
1163
|
+
const _SPIn = "SnowflakePropertiesInput";
|
|
1157
1164
|
const _SPIu = "SubscribedProjectInput";
|
|
1158
1165
|
const _SPIub = "SubscribedPrincipalInputs";
|
|
1159
1166
|
const _SPIubs = "SubscribedPrincipalInput";
|
|
1160
1167
|
const _SPL = "SubscribedProductListing";
|
|
1161
1168
|
const _SPO = "S3PropertiesOutput";
|
|
1169
|
+
const _SPOn = "SnowflakePropertiesOutput";
|
|
1162
1170
|
const _SPP = "S3PropertiesPatch";
|
|
1171
|
+
const _SPPn = "SnowflakePropertiesPatch";
|
|
1163
1172
|
const _SPu = "SubscribedPrincipals";
|
|
1164
1173
|
const _SPub = "SubscribedPrincipal";
|
|
1165
1174
|
const _SQEE = "ServiceQuotaExceededException";
|
|
@@ -1396,9 +1405,11 @@ const _cNa = "catalogName";
|
|
|
1396
1405
|
const _cNl = "clusterName";
|
|
1397
1406
|
const _cO = "cellOrder";
|
|
1398
1407
|
const _cOu = "currentOwner";
|
|
1399
|
-
const _cP = "
|
|
1408
|
+
const _cP = "connectionProperties";
|
|
1400
1409
|
const _cPFPP = "createProjectFromProjectProfile";
|
|
1401
|
-
const
|
|
1410
|
+
const _cPP = "connectivityPropertiesPatch";
|
|
1411
|
+
const _cPo = "configurationParameters";
|
|
1412
|
+
const _cPon = "connectivityProperties";
|
|
1402
1413
|
const _cPr = "createProject";
|
|
1403
1414
|
const _cS = "contentSummary";
|
|
1404
1415
|
const _cSV = "connectionSchemaVersion";
|
|
@@ -1587,6 +1598,7 @@ const _iE = "isEnabled";
|
|
|
1587
1598
|
const _iEE = "isExportEnabled";
|
|
1588
1599
|
const _iEs = "isEditable";
|
|
1589
1600
|
const _iIA = "idcInstanceArn";
|
|
1601
|
+
const _iM = "identityMapping";
|
|
1590
1602
|
const _iN = "isNull";
|
|
1591
1603
|
const _iNN = "isNotNull";
|
|
1592
1604
|
const _iO = "isOptional";
|
|
@@ -1750,11 +1762,11 @@ const _pL = "productListing";
|
|
|
1750
1762
|
const _pM = "packageManager";
|
|
1751
1763
|
const _pO = "parameterOverrides";
|
|
1752
1764
|
const _pOI = "publishOnImport";
|
|
1753
|
-
const _pP = "
|
|
1765
|
+
const _pP = "pythonProperties";
|
|
1754
1766
|
const _pPI = "projectProfileId";
|
|
1755
1767
|
const _pPV = "projectProfileVersion";
|
|
1756
|
-
const _pPr = "
|
|
1757
|
-
const
|
|
1768
|
+
const _pPr = "provisioningProperties";
|
|
1769
|
+
const _pPro = "projectProfiles";
|
|
1758
1770
|
const _pR = "provisionedResources";
|
|
1759
1771
|
const _pRA = "provisioningRoleArn";
|
|
1760
1772
|
const _pRT = "projectResourceTags";
|
|
@@ -1772,6 +1784,7 @@ const _par = "parameters";
|
|
|
1772
1784
|
const _pe = "permissions";
|
|
1773
1785
|
const _po = "port";
|
|
1774
1786
|
const _pr = "properties";
|
|
1787
|
+
const _pre = "prefix";
|
|
1775
1788
|
const _pro = "props";
|
|
1776
1789
|
const _proj = "project";
|
|
1777
1790
|
const _prot = "protocol";
|
|
@@ -1870,6 +1883,7 @@ const _sNc = "schemaName";
|
|
|
1870
1883
|
const _sO = "sortOrder";
|
|
1871
1884
|
const _sOt = "startOffset";
|
|
1872
1885
|
const _sP = "subscribedPrincipals";
|
|
1886
|
+
const _sPn = "snowflakeProperties";
|
|
1873
1887
|
const _sPp = "sparkProperties";
|
|
1874
1888
|
const _sPpe = "specificProjects";
|
|
1875
1889
|
const _sPr = "s3Properties";
|
|
@@ -1880,6 +1894,7 @@ const _sR = "supportedRegions";
|
|
|
1880
1894
|
const _sRI = "subscriptionRequestId";
|
|
1881
1895
|
const _sRIu = "subscriptionRequestIdentifier";
|
|
1882
1896
|
const _sRe = "serviceRole";
|
|
1897
|
+
const _sRn = "snowflakeRole";
|
|
1883
1898
|
const _sRt = "statusReason";
|
|
1884
1899
|
const _sS = "searchScope";
|
|
1885
1900
|
const _sSO = "singleSignOn";
|
|
@@ -1948,7 +1963,8 @@ const _typ = "types";
|
|
|
1948
1963
|
const _u = "uri";
|
|
1949
1964
|
const _uA = "updatedAt";
|
|
1950
1965
|
const _uAT = "useAssetType";
|
|
1951
|
-
const _uAs = "
|
|
1966
|
+
const _uAs = "usernameAttribute";
|
|
1967
|
+
const _uAse = "userAssignment";
|
|
1952
1968
|
const _uB = "updatedBy";
|
|
1953
1969
|
const _uI = "userIdentifier";
|
|
1954
1970
|
const _uIs = "userId";
|
|
@@ -2443,6 +2459,16 @@ var ConnectionSummary$ = [3, n0, _CS,
|
|
|
2443
2459
|
[_cI, _dIo, _dUI, _n, _pE, _ty, _con, _eInvi, _pI, _pro, _sc],
|
|
2444
2460
|
[0, 0, 0, 0, [() => PhysicalEndpoints, 0], 0, () => Configurations, 0, 0, [() => ConnectionPropertiesOutput$, 0], 0], 6
|
|
2445
2461
|
];
|
|
2462
|
+
var ConnectivityProperties$ = [3, n0, _CP,
|
|
2463
|
+
0,
|
|
2464
|
+
[_cP, _pCR, _n, _de, _vC, _vFCE, _sPp, _aPt, _pP, _aCut],
|
|
2465
|
+
[128 | 0, () => PhysicalConnectionRequirements$, 0, 0, 2, 64 | 0, 128 | 0, 128 | 0, 128 | 0, [() => AuthenticationConfigurationInput$, 0]]
|
|
2466
|
+
];
|
|
2467
|
+
var ConnectivityPropertiesPatch$ = [3, n0, _CPP,
|
|
2468
|
+
0,
|
|
2469
|
+
[_de, _cP, _aCut],
|
|
2470
|
+
[0, 128 | 0, [() => AuthenticationConfigurationPatch$, 0]]
|
|
2471
|
+
];
|
|
2446
2472
|
var CreateAccountPoolInput$ = [3, n0, _CAPI,
|
|
2447
2473
|
0,
|
|
2448
2474
|
[_dI, _n, _rS, _aSc, _de],
|
|
@@ -2575,12 +2601,12 @@ var CreateEnvironmentActionOutput$ = [3, n0, _CEAO,
|
|
|
2575
2601
|
];
|
|
2576
2602
|
var CreateEnvironmentBlueprintInput$ = [3, n0, _CEBI,
|
|
2577
2603
|
0,
|
|
2578
|
-
[_dI, _n,
|
|
2604
|
+
[_dI, _n, _pPr, _de, _uP],
|
|
2579
2605
|
[[0, 1], 0, () => ProvisioningProperties$, [() => Description, 0], [() => CustomParameterList, 0]], 3
|
|
2580
2606
|
];
|
|
2581
2607
|
var CreateEnvironmentBlueprintOutput$ = [3, n0, _CEBO,
|
|
2582
2608
|
0,
|
|
2583
|
-
[_id, _n, _prov,
|
|
2609
|
+
[_id, _n, _prov, _pPr, _de, _dP, _uP, _gT, _cA, _uA],
|
|
2584
2610
|
[0, 0, 0, () => ProvisioningProperties$, [() => Description, 0], () => DeploymentProperties$, [() => CustomParameterList, 0], 64 | 0, 5, 5], 4
|
|
2585
2611
|
];
|
|
2586
2612
|
var CreateEnvironmentInput$ = [3, n0, _CEI,
|
|
@@ -2590,7 +2616,7 @@ var CreateEnvironmentInput$ = [3, n0, _CEI,
|
|
|
2590
2616
|
];
|
|
2591
2617
|
var CreateEnvironmentOutput$ = [3, n0, _CEO,
|
|
2592
2618
|
0,
|
|
2593
|
-
[_pI, _dIo, _cB, _n, _prov, _id, _cA, _uA, _de, _ePIn, _aAI, _aAR, _pR, _st, _eA, _gT, _uP, _lD,
|
|
2619
|
+
[_pI, _dIo, _cB, _n, _prov, _id, _cA, _uA, _de, _ePIn, _aAI, _aAR, _pR, _st, _eA, _gT, _uP, _lD, _pPr, _dP, _eBIn, _eCI, _eCNn],
|
|
2594
2620
|
[0, 0, 0, [() => EnvironmentName, 0], 0, 0, 5, 5, [() => Description, 0], 0, 0, 0, () => ResourceList, 0, () => EnvironmentActionList, 64 | 0, [() => CustomParameterList, 0], () => Deployment$, () => ProvisioningProperties$, () => DeploymentProperties$, 0, [() => EnvironmentConfigurationId, 0], [() => EnvironmentConfigurationName, 0]], 5
|
|
2595
2621
|
];
|
|
2596
2622
|
var CreateEnvironmentProfileInput$ = [3, n0, _CEPI,
|
|
@@ -2680,7 +2706,7 @@ var CreateNotebookOutput$ = [3, n0, _CNO,
|
|
|
2680
2706
|
];
|
|
2681
2707
|
var CreateProjectFromProjectProfilePolicyGrantDetail$ = [3, n0, _CPFPPPGD,
|
|
2682
2708
|
0,
|
|
2683
|
-
[_iCDU,
|
|
2709
|
+
[_iCDU, _pPro],
|
|
2684
2710
|
[2, 64 | 0]
|
|
2685
2711
|
];
|
|
2686
2712
|
var CreateProjectInput$ = [3, n0, _CPI,
|
|
@@ -2773,7 +2799,7 @@ var CustomAccountPoolHandler$ = [3, n0, _CAPH,
|
|
|
2773
2799
|
[_lFA, _lERA],
|
|
2774
2800
|
[0, 0], 1
|
|
2775
2801
|
];
|
|
2776
|
-
var CustomParameter$ = [3, n0,
|
|
2802
|
+
var CustomParameter$ = [3, n0, _CPu,
|
|
2777
2803
|
0,
|
|
2778
2804
|
[_kN, _fT, _de, _dVe, _iEs, _iO, _iUS],
|
|
2779
2805
|
[0, 0, [() => Description, 0], 0, 2, 2, 2], 2
|
|
@@ -3185,7 +3211,7 @@ var EnvironmentBlueprintConfigurationItem$ = [3, n0, _EBCI,
|
|
|
3185
3211
|
];
|
|
3186
3212
|
var EnvironmentBlueprintSummary$ = [3, n0, _EBS,
|
|
3187
3213
|
0,
|
|
3188
|
-
[_id, _n, _prov,
|
|
3214
|
+
[_id, _n, _prov, _pPr, _de, _cA, _uA],
|
|
3189
3215
|
[0, 0, 0, () => ProvisioningProperties$, [() => Description, 0], 5, 5], 4
|
|
3190
3216
|
];
|
|
3191
3217
|
var EnvironmentConfig$ = [3, n0, _ECn,
|
|
@@ -3195,7 +3221,7 @@ var EnvironmentConfig$ = [3, n0, _ECn,
|
|
|
3195
3221
|
];
|
|
3196
3222
|
var EnvironmentConfiguration$ = [3, n0, _ECnv,
|
|
3197
3223
|
0,
|
|
3198
|
-
[_n, _eBIn, _id, _de, _dM,
|
|
3224
|
+
[_n, _eBIn, _id, _de, _dM, _cPo, _aAw, _aPc, _aRw, _dO],
|
|
3199
3225
|
[[() => EnvironmentConfigurationName, 0], 0, [() => EnvironmentConfigurationId, 0], [() => Description, 0], 0, () => EnvironmentConfigurationParametersDetails$, () => AwsAccount$, 64 | 0, () => Region$, 1], 2
|
|
3200
3226
|
];
|
|
3201
3227
|
var EnvironmentConfigurationParameter$ = [3, n0, _ECP,
|
|
@@ -3425,7 +3451,7 @@ var GetEnvironmentBlueprintInput$ = [3, n0, _GEBI,
|
|
|
3425
3451
|
];
|
|
3426
3452
|
var GetEnvironmentBlueprintOutput$ = [3, n0, _GEBO,
|
|
3427
3453
|
0,
|
|
3428
|
-
[_id, _n, _prov,
|
|
3454
|
+
[_id, _n, _prov, _pPr, _de, _dP, _uP, _gT, _cA, _uA],
|
|
3429
3455
|
[0, 0, 0, () => ProvisioningProperties$, [() => Description, 0], () => DeploymentProperties$, [() => CustomParameterList, 0], 64 | 0, 5, 5], 4
|
|
3430
3456
|
];
|
|
3431
3457
|
var GetEnvironmentCredentialsInput$ = [3, n0, _GECI,
|
|
@@ -3445,7 +3471,7 @@ var GetEnvironmentInput$ = [3, n0, _GEI,
|
|
|
3445
3471
|
];
|
|
3446
3472
|
var GetEnvironmentOutput$ = [3, n0, _GEO,
|
|
3447
3473
|
0,
|
|
3448
|
-
[_pI, _dIo, _cB, _n, _prov, _id, _cA, _uA, _de, _ePIn, _aAI, _aAR, _pR, _st, _eA, _gT, _uP, _lD,
|
|
3474
|
+
[_pI, _dIo, _cB, _n, _prov, _id, _cA, _uA, _de, _ePIn, _aAI, _aAR, _pR, _st, _eA, _gT, _uP, _lD, _pPr, _dP, _eBIn, _eCI, _eCNn],
|
|
3449
3475
|
[0, 0, 0, [() => EnvironmentName, 0], 0, 0, 5, 5, [() => Description, 0], 0, 0, 0, () => ResourceList, 0, () => EnvironmentActionList, 64 | 0, [() => CustomParameterList, 0], () => Deployment$, () => ProvisioningProperties$, () => DeploymentProperties$, 0, [() => EnvironmentConfigurationId, 0], [() => EnvironmentConfigurationName, 0]], 5
|
|
3450
3476
|
];
|
|
3451
3477
|
var GetEnvironmentProfileInput$ = [3, n0, _GEPI,
|
|
@@ -3705,17 +3731,17 @@ var GlossaryTermItemAdditionalAttributes$ = [3, n0, _GTIAA,
|
|
|
3705
3731
|
];
|
|
3706
3732
|
var GlueConnection$ = [3, n0, _GC,
|
|
3707
3733
|
0,
|
|
3708
|
-
[_n, _de, _cTo, _mC,
|
|
3734
|
+
[_n, _de, _cTo, _mC, _cP, _sPp, _aPt, _pP, _pCR, _cTr, _lUT, _lUBa, _st, _sRt, _lCVT, _aCut, _cSV, _cCE],
|
|
3709
3735
|
[0, 0, 0, 64 | 0, 128 | 0, 128 | 0, 128 | 0, 128 | 0, () => PhysicalConnectionRequirements$, 4, 4, 0, 0, 0, 4, [() => AuthenticationConfiguration$, 0], 1, 64 | 0]
|
|
3710
3736
|
];
|
|
3711
3737
|
var GlueConnectionInput$ = [3, n0, _GCIl,
|
|
3712
3738
|
0,
|
|
3713
|
-
[
|
|
3739
|
+
[_cP, _pCR, _n, _de, _cTo, _mC, _vC, _vFCE, _sPp, _aPt, _pP, _aCut],
|
|
3714
3740
|
[128 | 0, () => PhysicalConnectionRequirements$, 0, 0, 0, 0, 2, 64 | 0, 128 | 0, 128 | 0, 128 | 0, [() => AuthenticationConfigurationInput$, 0]]
|
|
3715
3741
|
];
|
|
3716
3742
|
var GlueConnectionPatch$ = [3, n0, _GCP,
|
|
3717
3743
|
0,
|
|
3718
|
-
[_de,
|
|
3744
|
+
[_de, _cP, _aCut],
|
|
3719
3745
|
[0, 128 | 0, [() => AuthenticationConfigurationPatch$, 0]]
|
|
3720
3746
|
];
|
|
3721
3747
|
var GlueOAuth2Credentials$ = [3, n0, _GOAC,
|
|
@@ -3803,6 +3829,11 @@ var IamUserProfileDetails$ = [3, n0, _IUPD,
|
|
|
3803
3829
|
[_ar, _pIri, _sN, _gPI],
|
|
3804
3830
|
[0, 0, 0, 0]
|
|
3805
3831
|
];
|
|
3832
|
+
var IdentityMapping$ = [3, n0, _IM,
|
|
3833
|
+
0,
|
|
3834
|
+
[_uAs, _pre],
|
|
3835
|
+
[0, 0], 1
|
|
3836
|
+
];
|
|
3806
3837
|
var Import$ = [3, n0, _Im,
|
|
3807
3838
|
0,
|
|
3808
3839
|
[_n, _r],
|
|
@@ -3908,6 +3939,16 @@ var LineageSqlQueryRunDetails$ = [3, n0, _LSQRD,
|
|
|
3908
3939
|
[_qST, _qET, _tQP, _nQF, _eMr],
|
|
3909
3940
|
[4, 4, 1, 1, 64 | 0]
|
|
3910
3941
|
];
|
|
3942
|
+
var LineageSyncInput$ = [3, n0, _LSI,
|
|
3943
|
+
0,
|
|
3944
|
+
[_en, _tim, _sch],
|
|
3945
|
+
[2, 0, 0], 1
|
|
3946
|
+
];
|
|
3947
|
+
var LineageSyncOutput$ = [3, n0, _LSO,
|
|
3948
|
+
0,
|
|
3949
|
+
[_lJI, _tim, _en, _sch],
|
|
3950
|
+
[0, 0, 2, 0]
|
|
3951
|
+
];
|
|
3911
3952
|
var LineageSyncSchedule$ = [3, n0, _LSS,
|
|
3912
3953
|
0,
|
|
3913
3954
|
[_sch],
|
|
@@ -4098,7 +4139,7 @@ var ListingSummary$ = [3, n0, _LS,
|
|
|
4098
4139
|
[_lI, _lR, _gT],
|
|
4099
4140
|
[0, 0, [() => DetailedGlossaryTerms, 0]]
|
|
4100
4141
|
];
|
|
4101
|
-
var ListingSummaryItem$ = [3, n0,
|
|
4142
|
+
var ListingSummaryItem$ = [3, n0, _LSIi,
|
|
4102
4143
|
0,
|
|
4103
4144
|
[_lI, _lR, _gT],
|
|
4104
4145
|
[0, 0, [() => DetailedGlossaryTerms, 0]]
|
|
@@ -4243,12 +4284,12 @@ var ListSubscriptionRequestsOutput$ = [3, n0, _LSRO,
|
|
|
4243
4284
|
[_it, _nT],
|
|
4244
4285
|
[[() => SubscriptionRequests, 0], 0], 1
|
|
4245
4286
|
];
|
|
4246
|
-
var ListSubscriptionsInput$ = [3, n0,
|
|
4287
|
+
var ListSubscriptionsInput$ = [3, n0, _LSIis,
|
|
4247
4288
|
0,
|
|
4248
4289
|
[_dI, _sRIu, _st, _sLI, _oPI, _oIPA, _oUI, _oGI, _aPI, _sB, _sO, _mRa, _nT],
|
|
4249
4290
|
[[0, 1], [0, { [_hQ]: _sRIu }], [0, { [_hQ]: _st }], [0, { [_hQ]: _sLI }], [0, { [_hQ]: _oPI }], [0, { [_hQ]: _oIPA }], [0, { [_hQ]: _oUI }], [0, { [_hQ]: _oGI }], [0, { [_hQ]: _aPI }], [0, { [_hQ]: _sB }], [0, { [_hQ]: _sO }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
4250
4291
|
];
|
|
4251
|
-
var ListSubscriptionsOutput$ = [3, n0,
|
|
4292
|
+
var ListSubscriptionsOutput$ = [3, n0, _LSOi,
|
|
4252
4293
|
0,
|
|
4253
4294
|
[_it, _nT],
|
|
4254
4295
|
[[() => Subscriptions, 0], 0], 1
|
|
@@ -4830,9 +4871,24 @@ var SelfGrantStatusDetail$ = [3, n0, _SGSD,
|
|
|
4830
4871
|
];
|
|
4831
4872
|
var SingleSignOn$ = [3, n0, _SSO,
|
|
4832
4873
|
0,
|
|
4833
|
-
[_ty,
|
|
4874
|
+
[_ty, _uAse, _iIA],
|
|
4834
4875
|
[0, 0, 0]
|
|
4835
4876
|
];
|
|
4877
|
+
var SnowflakePropertiesInput$ = [3, n0, _SPIn,
|
|
4878
|
+
0,
|
|
4879
|
+
[_sRn, _iM, _cPon, _lSin],
|
|
4880
|
+
[0, () => IdentityMapping$, [() => ConnectivityProperties$, 0], () => LineageSyncInput$], 2
|
|
4881
|
+
];
|
|
4882
|
+
var SnowflakePropertiesOutput$ = [3, n0, _SPOn,
|
|
4883
|
+
0,
|
|
4884
|
+
[_sRn, _iM, _lSin, _st, _eM],
|
|
4885
|
+
[0, () => IdentityMapping$, () => LineageSyncOutput$, 0, 0], 4
|
|
4886
|
+
];
|
|
4887
|
+
var SnowflakePropertiesPatch$ = [3, n0, _SPPn,
|
|
4888
|
+
0,
|
|
4889
|
+
[_cPP, _sRn, _lSin],
|
|
4890
|
+
[[() => ConnectivityPropertiesPatch$, 0], 0, () => LineageSyncInput$]
|
|
4891
|
+
];
|
|
4836
4892
|
var SparkEmrPropertiesInput$ = [3, n0, _SEPI,
|
|
4837
4893
|
0,
|
|
4838
4894
|
[_cAom, _iPA, _jVE, _lU, _pVE, _rRu, _tCSU, _mEA],
|
|
@@ -5160,12 +5216,12 @@ var UpdateEnvironmentActionOutput$ = [3, n0, _UEAO,
|
|
|
5160
5216
|
];
|
|
5161
5217
|
var UpdateEnvironmentBlueprintInput$ = [3, n0, _UEBI,
|
|
5162
5218
|
0,
|
|
5163
|
-
[_dI, _i, _de,
|
|
5219
|
+
[_dI, _i, _de, _pPr, _uP],
|
|
5164
5220
|
[[0, 1], [0, 1], 0, () => ProvisioningProperties$, [() => CustomParameterList, 0]], 2
|
|
5165
5221
|
];
|
|
5166
5222
|
var UpdateEnvironmentBlueprintOutput$ = [3, n0, _UEBO,
|
|
5167
5223
|
0,
|
|
5168
|
-
[_id, _n, _prov,
|
|
5224
|
+
[_id, _n, _prov, _pPr, _de, _dP, _uP, _gT, _cA, _uA],
|
|
5169
5225
|
[0, 0, 0, () => ProvisioningProperties$, [() => Description, 0], () => DeploymentProperties$, [() => CustomParameterList, 0], 64 | 0, 5, 5], 4
|
|
5170
5226
|
];
|
|
5171
5227
|
var UpdateEnvironmentInput$ = [3, n0, _UEI,
|
|
@@ -5175,7 +5231,7 @@ var UpdateEnvironmentInput$ = [3, n0, _UEI,
|
|
|
5175
5231
|
];
|
|
5176
5232
|
var UpdateEnvironmentOutput$ = [3, n0, _UEO,
|
|
5177
5233
|
0,
|
|
5178
|
-
[_pI, _dIo, _cB, _n, _prov, _id, _cA, _uA, _de, _ePIn, _aAI, _aAR, _pR, _st, _eA, _gT, _uP, _lD,
|
|
5234
|
+
[_pI, _dIo, _cB, _n, _prov, _id, _cA, _uA, _de, _ePIn, _aAI, _aAR, _pR, _st, _eA, _gT, _uP, _lD, _pPr, _dP, _eBIn, _eCI, _eCNn],
|
|
5179
5235
|
[0, 0, 0, [() => EnvironmentName, 0], 0, 0, 5, 5, [() => Description, 0], 0, 0, 0, () => ResourceList, 0, () => EnvironmentActionList, 64 | 0, [() => CustomParameterList, 0], () => Deployment$, () => ProvisioningProperties$, () => DeploymentProperties$, 0, [() => EnvironmentConfigurationId, 0], [() => EnvironmentConfigurationName, 0]], 5
|
|
5180
5236
|
];
|
|
5181
5237
|
var UpdateEnvironmentProfileInput$ = [3, n0, _UEPI,
|
|
@@ -5548,7 +5604,7 @@ var ListingSummaries = [1, n0, _LSi,
|
|
|
5548
5604
|
0, [() => ListingSummary$,
|
|
5549
5605
|
0]
|
|
5550
5606
|
];
|
|
5551
|
-
var ListingSummaryItems = [1, n0,
|
|
5607
|
+
var ListingSummaryItems = [1, n0, _LSIist,
|
|
5552
5608
|
0, [() => ListingSummaryItem$,
|
|
5553
5609
|
0]
|
|
5554
5610
|
];
|
|
@@ -5767,18 +5823,18 @@ var AwsAccount$ = [4, n0, _AAw,
|
|
|
5767
5823
|
];
|
|
5768
5824
|
var ConnectionPropertiesInput$ = [4, n0, _CPIo,
|
|
5769
5825
|
0,
|
|
5770
|
-
[_aPt, _gPl, _hPP, _iP, _rPed, _sEP, _sGP, _sPr, _aQP, _mP, _wMP, _wSP, _lP, _vP],
|
|
5771
|
-
[() => AthenaPropertiesInput$, [() => GluePropertiesInput$, 0], () => HyperPodPropertiesInput$, () => IamPropertiesInput$, [() => RedshiftPropertiesInput$, 0], () => SparkEmrPropertiesInput$, () => SparkGluePropertiesInput$, () => S3PropertiesInput$, () => AmazonQPropertiesInput$, () => MlflowPropertiesInput$, () => WorkflowsMwaaPropertiesInput$, () => WorkflowsServerlessPropertiesInput$, () => LakehousePropertiesInput$, () => VpcPropertiesInput$]
|
|
5826
|
+
[_aPt, _gPl, _hPP, _iP, _rPed, _sEP, _sGP, _sPr, _sPn, _aQP, _mP, _wMP, _wSP, _lP, _vP],
|
|
5827
|
+
[() => AthenaPropertiesInput$, [() => GluePropertiesInput$, 0], () => HyperPodPropertiesInput$, () => IamPropertiesInput$, [() => RedshiftPropertiesInput$, 0], () => SparkEmrPropertiesInput$, () => SparkGluePropertiesInput$, () => S3PropertiesInput$, [() => SnowflakePropertiesInput$, 0], () => AmazonQPropertiesInput$, () => MlflowPropertiesInput$, () => WorkflowsMwaaPropertiesInput$, () => WorkflowsServerlessPropertiesInput$, () => LakehousePropertiesInput$, () => VpcPropertiesInput$]
|
|
5772
5828
|
];
|
|
5773
5829
|
var ConnectionPropertiesOutput$ = [4, n0, _CPOo,
|
|
5774
5830
|
0,
|
|
5775
|
-
[_aPt, _gPl, _hPP, _iP, _rPed, _sEP, _sGP, _sPr, _aQP, _mP, _wMP, _wSP, _lP, _vP],
|
|
5776
|
-
[() => AthenaPropertiesOutput$, () => GluePropertiesOutput$, () => HyperPodPropertiesOutput$, () => IamPropertiesOutput$, [() => RedshiftPropertiesOutput$, 0], [() => SparkEmrPropertiesOutput$, 0], () => SparkGluePropertiesOutput$, () => S3PropertiesOutput$, () => AmazonQPropertiesOutput$, () => MlflowPropertiesOutput$, () => WorkflowsMwaaPropertiesOutput$, () => WorkflowsServerlessPropertiesOutput$, () => LakehousePropertiesOutput$, () => VpcPropertiesOutput$]
|
|
5831
|
+
[_aPt, _gPl, _hPP, _iP, _rPed, _sEP, _sGP, _sPr, _sPn, _aQP, _mP, _wMP, _wSP, _lP, _vP],
|
|
5832
|
+
[() => AthenaPropertiesOutput$, () => GluePropertiesOutput$, () => HyperPodPropertiesOutput$, () => IamPropertiesOutput$, [() => RedshiftPropertiesOutput$, 0], [() => SparkEmrPropertiesOutput$, 0], () => SparkGluePropertiesOutput$, () => S3PropertiesOutput$, () => SnowflakePropertiesOutput$, () => AmazonQPropertiesOutput$, () => MlflowPropertiesOutput$, () => WorkflowsMwaaPropertiesOutput$, () => WorkflowsServerlessPropertiesOutput$, () => LakehousePropertiesOutput$, () => VpcPropertiesOutput$]
|
|
5777
5833
|
];
|
|
5778
|
-
var ConnectionPropertiesPatch$ = [4, n0,
|
|
5834
|
+
var ConnectionPropertiesPatch$ = [4, n0, _CPPo,
|
|
5779
5835
|
0,
|
|
5780
|
-
[_aPt, _gPl, _iP, _rPed, _sEP, _sPr, _aQP, _mP, _lP, _vP],
|
|
5781
|
-
[() => AthenaPropertiesPatch$, [() => GluePropertiesPatch$, 0], () => IamPropertiesPatch$, [() => RedshiftPropertiesPatch$, 0], () => SparkEmrPropertiesPatch$, () => S3PropertiesPatch$, () => AmazonQPropertiesPatch$, () => MlflowPropertiesPatch$, () => LakehousePropertiesPatch$, () => VpcPropertiesPatch$]
|
|
5836
|
+
[_aPt, _gPl, _iP, _rPed, _sEP, _sPr, _sPn, _aQP, _mP, _lP, _vP],
|
|
5837
|
+
[() => AthenaPropertiesPatch$, [() => GluePropertiesPatch$, 0], () => IamPropertiesPatch$, [() => RedshiftPropertiesPatch$, 0], () => SparkEmrPropertiesPatch$, () => S3PropertiesPatch$, [() => SnowflakePropertiesPatch$, 0], () => AmazonQPropertiesPatch$, () => MlflowPropertiesPatch$, () => LakehousePropertiesPatch$, () => VpcPropertiesPatch$]
|
|
5782
5838
|
];
|
|
5783
5839
|
var DataSourceConfigurationInput$ = [4, n0, _DSCI,
|
|
5784
5840
|
0,
|
|
@@ -6593,6 +6649,7 @@ const getRuntimeConfig$1 = (config) => {
|
|
|
6593
6649
|
serviceTarget: "DataZone",
|
|
6594
6650
|
},
|
|
6595
6651
|
serviceId: config?.serviceId ?? "DataZone",
|
|
6652
|
+
sha256: config?.sha256 ?? Sha256,
|
|
6596
6653
|
urlParser: config?.urlParser ?? parseUrl,
|
|
6597
6654
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
6598
6655
|
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
@@ -6626,7 +6683,6 @@ const getRuntimeConfig = (config) => {
|
|
|
6626
6683
|
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
6627
6684
|
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
6628
6685
|
}, config),
|
|
6629
|
-
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
6630
6686
|
streamCollector: config?.streamCollector ?? streamCollector,
|
|
6631
6687
|
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
6632
6688
|
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
@@ -9419,6 +9475,72 @@ const GlueConnectionType = {
|
|
|
9419
9475
|
TERADATA: "TERADATA",
|
|
9420
9476
|
VERTICA: "VERTICA",
|
|
9421
9477
|
};
|
|
9478
|
+
const Timezone = {
|
|
9479
|
+
AFRICA_JOHANNESBURG: "AFRICA_JOHANNESBURG",
|
|
9480
|
+
AMERICA_MONTREAL: "AMERICA_MONTREAL",
|
|
9481
|
+
AMERICA_SAO_PAULO: "AMERICA_SAO_PAULO",
|
|
9482
|
+
ASIA_BAHRAIN: "ASIA_BAHRAIN",
|
|
9483
|
+
ASIA_BANGKOK: "ASIA_BANGKOK",
|
|
9484
|
+
ASIA_CALCUTTA: "ASIA_CALCUTTA",
|
|
9485
|
+
ASIA_DUBAI: "ASIA_DUBAI",
|
|
9486
|
+
ASIA_HONG_KONG: "ASIA_HONG_KONG",
|
|
9487
|
+
ASIA_JAKARTA: "ASIA_JAKARTA",
|
|
9488
|
+
ASIA_KUALA_LUMPUR: "ASIA_KUALA_LUMPUR",
|
|
9489
|
+
ASIA_SEOUL: "ASIA_SEOUL",
|
|
9490
|
+
ASIA_SHANGHAI: "ASIA_SHANGHAI",
|
|
9491
|
+
ASIA_SINGAPORE: "ASIA_SINGAPORE",
|
|
9492
|
+
ASIA_TAIPEI: "ASIA_TAIPEI",
|
|
9493
|
+
ASIA_TOKYO: "ASIA_TOKYO",
|
|
9494
|
+
AUSTRALIA_MELBOURNE: "AUSTRALIA_MELBOURNE",
|
|
9495
|
+
AUSTRALIA_SYDNEY: "AUSTRALIA_SYDNEY",
|
|
9496
|
+
CANADA_CENTRAL: "CANADA_CENTRAL",
|
|
9497
|
+
CET: "CET",
|
|
9498
|
+
CST6CDT: "CST6CDT",
|
|
9499
|
+
ETC_GMT: "ETC_GMT",
|
|
9500
|
+
ETC_GMT0: "ETC_GMT0",
|
|
9501
|
+
ETC_GMT_ADD_0: "ETC_GMT_ADD_0",
|
|
9502
|
+
ETC_GMT_ADD_1: "ETC_GMT_ADD_1",
|
|
9503
|
+
ETC_GMT_ADD_10: "ETC_GMT_ADD_10",
|
|
9504
|
+
ETC_GMT_ADD_11: "ETC_GMT_ADD_11",
|
|
9505
|
+
ETC_GMT_ADD_12: "ETC_GMT_ADD_12",
|
|
9506
|
+
ETC_GMT_ADD_2: "ETC_GMT_ADD_2",
|
|
9507
|
+
ETC_GMT_ADD_3: "ETC_GMT_ADD_3",
|
|
9508
|
+
ETC_GMT_ADD_4: "ETC_GMT_ADD_4",
|
|
9509
|
+
ETC_GMT_ADD_5: "ETC_GMT_ADD_5",
|
|
9510
|
+
ETC_GMT_ADD_6: "ETC_GMT_ADD_6",
|
|
9511
|
+
ETC_GMT_ADD_7: "ETC_GMT_ADD_7",
|
|
9512
|
+
ETC_GMT_ADD_8: "ETC_GMT_ADD_8",
|
|
9513
|
+
ETC_GMT_ADD_9: "ETC_GMT_ADD_9",
|
|
9514
|
+
ETC_GMT_NEG_0: "ETC_GMT_NEG_0",
|
|
9515
|
+
ETC_GMT_NEG_1: "ETC_GMT_NEG_1",
|
|
9516
|
+
ETC_GMT_NEG_10: "ETC_GMT_NEG_10",
|
|
9517
|
+
ETC_GMT_NEG_11: "ETC_GMT_NEG_11",
|
|
9518
|
+
ETC_GMT_NEG_12: "ETC_GMT_NEG_12",
|
|
9519
|
+
ETC_GMT_NEG_13: "ETC_GMT_NEG_13",
|
|
9520
|
+
ETC_GMT_NEG_14: "ETC_GMT_NEG_14",
|
|
9521
|
+
ETC_GMT_NEG_2: "ETC_GMT_NEG_2",
|
|
9522
|
+
ETC_GMT_NEG_3: "ETC_GMT_NEG_3",
|
|
9523
|
+
ETC_GMT_NEG_4: "ETC_GMT_NEG_4",
|
|
9524
|
+
ETC_GMT_NEG_5: "ETC_GMT_NEG_5",
|
|
9525
|
+
ETC_GMT_NEG_6: "ETC_GMT_NEG_6",
|
|
9526
|
+
ETC_GMT_NEG_7: "ETC_GMT_NEG_7",
|
|
9527
|
+
ETC_GMT_NEG_8: "ETC_GMT_NEG_8",
|
|
9528
|
+
ETC_GMT_NEG_9: "ETC_GMT_NEG_9",
|
|
9529
|
+
EUROPE_DUBLIN: "EUROPE_DUBLIN",
|
|
9530
|
+
EUROPE_LONDON: "EUROPE_LONDON",
|
|
9531
|
+
EUROPE_PARIS: "EUROPE_PARIS",
|
|
9532
|
+
EUROPE_STOCKHOLM: "EUROPE_STOCKHOLM",
|
|
9533
|
+
EUROPE_ZURICH: "EUROPE_ZURICH",
|
|
9534
|
+
ISRAEL: "ISRAEL",
|
|
9535
|
+
MEXICO_GENERAL: "MEXICO_GENERAL",
|
|
9536
|
+
MST7MDT: "MST7MDT",
|
|
9537
|
+
PACIFIC_AUCKLAND: "PACIFIC_AUCKLAND",
|
|
9538
|
+
US_CENTRAL: "US_CENTRAL",
|
|
9539
|
+
US_EASTERN: "US_EASTERN",
|
|
9540
|
+
US_MOUNTAIN: "US_MOUNTAIN",
|
|
9541
|
+
US_PACIFIC: "US_PACIFIC",
|
|
9542
|
+
UTC: "UTC",
|
|
9543
|
+
};
|
|
9422
9544
|
const ConnectionStatus = {
|
|
9423
9545
|
CREATE_FAILED: "CREATE_FAILED",
|
|
9424
9546
|
CREATING: "CREATING",
|
|
@@ -9491,72 +9613,6 @@ const EnableSetting = {
|
|
|
9491
9613
|
DISABLED: "DISABLED",
|
|
9492
9614
|
ENABLED: "ENABLED",
|
|
9493
9615
|
};
|
|
9494
|
-
const Timezone = {
|
|
9495
|
-
AFRICA_JOHANNESBURG: "AFRICA_JOHANNESBURG",
|
|
9496
|
-
AMERICA_MONTREAL: "AMERICA_MONTREAL",
|
|
9497
|
-
AMERICA_SAO_PAULO: "AMERICA_SAO_PAULO",
|
|
9498
|
-
ASIA_BAHRAIN: "ASIA_BAHRAIN",
|
|
9499
|
-
ASIA_BANGKOK: "ASIA_BANGKOK",
|
|
9500
|
-
ASIA_CALCUTTA: "ASIA_CALCUTTA",
|
|
9501
|
-
ASIA_DUBAI: "ASIA_DUBAI",
|
|
9502
|
-
ASIA_HONG_KONG: "ASIA_HONG_KONG",
|
|
9503
|
-
ASIA_JAKARTA: "ASIA_JAKARTA",
|
|
9504
|
-
ASIA_KUALA_LUMPUR: "ASIA_KUALA_LUMPUR",
|
|
9505
|
-
ASIA_SEOUL: "ASIA_SEOUL",
|
|
9506
|
-
ASIA_SHANGHAI: "ASIA_SHANGHAI",
|
|
9507
|
-
ASIA_SINGAPORE: "ASIA_SINGAPORE",
|
|
9508
|
-
ASIA_TAIPEI: "ASIA_TAIPEI",
|
|
9509
|
-
ASIA_TOKYO: "ASIA_TOKYO",
|
|
9510
|
-
AUSTRALIA_MELBOURNE: "AUSTRALIA_MELBOURNE",
|
|
9511
|
-
AUSTRALIA_SYDNEY: "AUSTRALIA_SYDNEY",
|
|
9512
|
-
CANADA_CENTRAL: "CANADA_CENTRAL",
|
|
9513
|
-
CET: "CET",
|
|
9514
|
-
CST6CDT: "CST6CDT",
|
|
9515
|
-
ETC_GMT: "ETC_GMT",
|
|
9516
|
-
ETC_GMT0: "ETC_GMT0",
|
|
9517
|
-
ETC_GMT_ADD_0: "ETC_GMT_ADD_0",
|
|
9518
|
-
ETC_GMT_ADD_1: "ETC_GMT_ADD_1",
|
|
9519
|
-
ETC_GMT_ADD_10: "ETC_GMT_ADD_10",
|
|
9520
|
-
ETC_GMT_ADD_11: "ETC_GMT_ADD_11",
|
|
9521
|
-
ETC_GMT_ADD_12: "ETC_GMT_ADD_12",
|
|
9522
|
-
ETC_GMT_ADD_2: "ETC_GMT_ADD_2",
|
|
9523
|
-
ETC_GMT_ADD_3: "ETC_GMT_ADD_3",
|
|
9524
|
-
ETC_GMT_ADD_4: "ETC_GMT_ADD_4",
|
|
9525
|
-
ETC_GMT_ADD_5: "ETC_GMT_ADD_5",
|
|
9526
|
-
ETC_GMT_ADD_6: "ETC_GMT_ADD_6",
|
|
9527
|
-
ETC_GMT_ADD_7: "ETC_GMT_ADD_7",
|
|
9528
|
-
ETC_GMT_ADD_8: "ETC_GMT_ADD_8",
|
|
9529
|
-
ETC_GMT_ADD_9: "ETC_GMT_ADD_9",
|
|
9530
|
-
ETC_GMT_NEG_0: "ETC_GMT_NEG_0",
|
|
9531
|
-
ETC_GMT_NEG_1: "ETC_GMT_NEG_1",
|
|
9532
|
-
ETC_GMT_NEG_10: "ETC_GMT_NEG_10",
|
|
9533
|
-
ETC_GMT_NEG_11: "ETC_GMT_NEG_11",
|
|
9534
|
-
ETC_GMT_NEG_12: "ETC_GMT_NEG_12",
|
|
9535
|
-
ETC_GMT_NEG_13: "ETC_GMT_NEG_13",
|
|
9536
|
-
ETC_GMT_NEG_14: "ETC_GMT_NEG_14",
|
|
9537
|
-
ETC_GMT_NEG_2: "ETC_GMT_NEG_2",
|
|
9538
|
-
ETC_GMT_NEG_3: "ETC_GMT_NEG_3",
|
|
9539
|
-
ETC_GMT_NEG_4: "ETC_GMT_NEG_4",
|
|
9540
|
-
ETC_GMT_NEG_5: "ETC_GMT_NEG_5",
|
|
9541
|
-
ETC_GMT_NEG_6: "ETC_GMT_NEG_6",
|
|
9542
|
-
ETC_GMT_NEG_7: "ETC_GMT_NEG_7",
|
|
9543
|
-
ETC_GMT_NEG_8: "ETC_GMT_NEG_8",
|
|
9544
|
-
ETC_GMT_NEG_9: "ETC_GMT_NEG_9",
|
|
9545
|
-
EUROPE_DUBLIN: "EUROPE_DUBLIN",
|
|
9546
|
-
EUROPE_LONDON: "EUROPE_LONDON",
|
|
9547
|
-
EUROPE_PARIS: "EUROPE_PARIS",
|
|
9548
|
-
EUROPE_STOCKHOLM: "EUROPE_STOCKHOLM",
|
|
9549
|
-
EUROPE_ZURICH: "EUROPE_ZURICH",
|
|
9550
|
-
ISRAEL: "ISRAEL",
|
|
9551
|
-
MEXICO_GENERAL: "MEXICO_GENERAL",
|
|
9552
|
-
MST7MDT: "MST7MDT",
|
|
9553
|
-
PACIFIC_AUCKLAND: "PACIFIC_AUCKLAND",
|
|
9554
|
-
US_CENTRAL: "US_CENTRAL",
|
|
9555
|
-
US_EASTERN: "US_EASTERN",
|
|
9556
|
-
US_MOUNTAIN: "US_MOUNTAIN",
|
|
9557
|
-
US_PACIFIC: "US_PACIFIC",
|
|
9558
|
-
UTC: "UTC",
|
|
9559
|
-
};
|
|
9560
9616
|
const DataSourceErrorType = {
|
|
9561
9617
|
ACCESS_DENIED_EXCEPTION: "ACCESS_DENIED_EXCEPTION",
|
|
9562
9618
|
CONFLICT_EXCEPTION: "CONFLICT_EXCEPTION",
|
|
@@ -10050,6 +10106,8 @@ exports.ConnectionScope = ConnectionScope;
|
|
|
10050
10106
|
exports.ConnectionStatus = ConnectionStatus;
|
|
10051
10107
|
exports.ConnectionSummary$ = ConnectionSummary$;
|
|
10052
10108
|
exports.ConnectionType = ConnectionType;
|
|
10109
|
+
exports.ConnectivityProperties$ = ConnectivityProperties$;
|
|
10110
|
+
exports.ConnectivityPropertiesPatch$ = ConnectivityPropertiesPatch$;
|
|
10053
10111
|
exports.CreateAccountPool$ = CreateAccountPool$;
|
|
10054
10112
|
exports.CreateAccountPoolCommand = CreateAccountPoolCommand;
|
|
10055
10113
|
exports.CreateAccountPoolInput$ = CreateAccountPoolInput$;
|
|
@@ -10566,6 +10624,7 @@ exports.IamPropertiesInput$ = IamPropertiesInput$;
|
|
|
10566
10624
|
exports.IamPropertiesOutput$ = IamPropertiesOutput$;
|
|
10567
10625
|
exports.IamPropertiesPatch$ = IamPropertiesPatch$;
|
|
10568
10626
|
exports.IamUserProfileDetails$ = IamUserProfileDetails$;
|
|
10627
|
+
exports.IdentityMapping$ = IdentityMapping$;
|
|
10569
10628
|
exports.Import$ = Import$;
|
|
10570
10629
|
exports.InExpression$ = InExpression$;
|
|
10571
10630
|
exports.InternalServerException = InternalServerException;
|
|
@@ -10596,6 +10655,8 @@ exports.LineageNodeSummary$ = LineageNodeSummary$;
|
|
|
10596
10655
|
exports.LineageNodeTypeItem$ = LineageNodeTypeItem$;
|
|
10597
10656
|
exports.LineageRunDetails$ = LineageRunDetails$;
|
|
10598
10657
|
exports.LineageSqlQueryRunDetails$ = LineageSqlQueryRunDetails$;
|
|
10658
|
+
exports.LineageSyncInput$ = LineageSyncInput$;
|
|
10659
|
+
exports.LineageSyncOutput$ = LineageSyncOutput$;
|
|
10599
10660
|
exports.LineageSyncSchedule$ = LineageSyncSchedule$;
|
|
10600
10661
|
exports.ListAccountPools$ = ListAccountPools$;
|
|
10601
10662
|
exports.ListAccountPoolsCommand = ListAccountPoolsCommand;
|
|
@@ -10944,6 +11005,9 @@ exports.SelfGrantStatusOutput$ = SelfGrantStatusOutput$;
|
|
|
10944
11005
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
10945
11006
|
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
10946
11007
|
exports.SingleSignOn$ = SingleSignOn$;
|
|
11008
|
+
exports.SnowflakePropertiesInput$ = SnowflakePropertiesInput$;
|
|
11009
|
+
exports.SnowflakePropertiesOutput$ = SnowflakePropertiesOutput$;
|
|
11010
|
+
exports.SnowflakePropertiesPatch$ = SnowflakePropertiesPatch$;
|
|
10947
11011
|
exports.SortFieldAccountPool = SortFieldAccountPool;
|
|
10948
11012
|
exports.SortFieldConnection = SortFieldConnection;
|
|
10949
11013
|
exports.SortFieldProject = SortFieldProject;
|