@aws-sdk/client-redshift 3.936.0 → 3.939.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist-cjs/index.js +102 -27
- package/dist-es/Redshift.js +2 -0
- package/dist-es/commands/ModifyLakehouseConfigurationCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +16 -4
- package/dist-es/models/errors.js +12 -12
- package/dist-es/schemas/schemas_0.js +57 -11
- package/dist-types/Redshift.d.ts +7 -0
- package/dist-types/RedshiftClient.d.ts +3 -2
- package/dist-types/commands/CreateClusterCommand.d.ts +10 -0
- package/dist-types/commands/CreateRedshiftIdcApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +2 -0
- package/dist-types/commands/DescribeClustersCommand.d.ts +2 -0
- package/dist-types/commands/DescribeRedshiftIdcApplicationsCommand.d.ts +8 -0
- package/dist-types/commands/DisableSnapshotCopyCommand.d.ts +2 -0
- package/dist-types/commands/EnableSnapshotCopyCommand.d.ts +2 -0
- package/dist-types/commands/FailoverPrimaryComputeCommand.d.ts +2 -0
- package/dist-types/commands/ModifyClusterCommand.d.ts +2 -0
- package/dist-types/commands/ModifyClusterDbRevisionCommand.d.ts +2 -0
- package/dist-types/commands/ModifyClusterIamRolesCommand.d.ts +2 -0
- package/dist-types/commands/ModifyClusterMaintenanceCommand.d.ts +2 -0
- package/dist-types/commands/ModifyLakehouseConfigurationCommand.d.ts +106 -0
- package/dist-types/commands/ModifyRedshiftIdcApplicationCommand.d.ts +16 -1
- package/dist-types/commands/ModifyScheduledActionCommand.d.ts +2 -1
- package/dist-types/commands/ModifySnapshotCopyRetentionPeriodCommand.d.ts +2 -0
- package/dist-types/commands/PauseClusterCommand.d.ts +2 -0
- package/dist-types/commands/RebootClusterCommand.d.ts +2 -0
- package/dist-types/commands/ResizeClusterCommand.d.ts +2 -0
- package/dist-types/commands/RestoreFromClusterSnapshotCommand.d.ts +10 -0
- package/dist-types/commands/ResumeClusterCommand.d.ts +2 -0
- package/dist-types/commands/RotateEncryptionKeyCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +48 -12
- package/dist-types/models/errors.d.ts +12 -12
- package/dist-types/models/models_0.d.ts +124 -99
- package/dist-types/models/models_1.d.ts +170 -2
- package/dist-types/schemas/schemas_0.d.ts +6 -0
- package/dist-types/ts3.4/Redshift.d.ts +17 -0
- package/dist-types/ts3.4/RedshiftClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ModifyLakehouseConfigurationCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ModifyRedshiftIdcApplicationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyScheduledActionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +24 -6
- package/dist-types/ts3.4/models/errors.d.ts +10 -10
- package/dist-types/ts3.4/models/models_0.d.ts +43 -21
- package/dist-types/ts3.4/models/models_1.d.ts +37 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1175,6 +1175,14 @@ ModifyIntegration
|
|
|
1175
1175
|
|
|
1176
1176
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/redshift/command/ModifyIntegrationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-redshift/Interface/ModifyIntegrationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-redshift/Interface/ModifyIntegrationCommandOutput/)
|
|
1177
1177
|
|
|
1178
|
+
</details>
|
|
1179
|
+
<details>
|
|
1180
|
+
<summary>
|
|
1181
|
+
ModifyLakehouseConfiguration
|
|
1182
|
+
</summary>
|
|
1183
|
+
|
|
1184
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/redshift/command/ModifyLakehouseConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-redshift/Interface/ModifyLakehouseConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-redshift/Interface/ModifyLakehouseConfigurationCommandOutput/)
|
|
1185
|
+
|
|
1178
1186
|
</details>
|
|
1179
1187
|
<details>
|
|
1180
1188
|
<summary>
|
package/dist-cjs/index.js
CHANGED
|
@@ -742,6 +742,18 @@ let InvalidAuthenticationProfileRequestFault$1 = class InvalidAuthenticationProf
|
|
|
742
742
|
Object.setPrototypeOf(this, InvalidAuthenticationProfileRequestFault.prototype);
|
|
743
743
|
}
|
|
744
744
|
};
|
|
745
|
+
let DependentServiceAccessDeniedFault$1 = class DependentServiceAccessDeniedFault extends RedshiftServiceException$1 {
|
|
746
|
+
name = "DependentServiceAccessDeniedFault";
|
|
747
|
+
$fault = "client";
|
|
748
|
+
constructor(opts) {
|
|
749
|
+
super({
|
|
750
|
+
name: "DependentServiceAccessDeniedFault",
|
|
751
|
+
$fault: "client",
|
|
752
|
+
...opts,
|
|
753
|
+
});
|
|
754
|
+
Object.setPrototypeOf(this, DependentServiceAccessDeniedFault.prototype);
|
|
755
|
+
}
|
|
756
|
+
};
|
|
745
757
|
let HsmClientCertificateNotFoundFault$1 = class HsmClientCertificateNotFoundFault extends RedshiftServiceException$1 {
|
|
746
758
|
name = "HsmClientCertificateNotFoundFault";
|
|
747
759
|
$fault = "client";
|
|
@@ -1198,18 +1210,6 @@ let IntegrationTargetNotFoundFault$1 = class IntegrationTargetNotFoundFault exte
|
|
|
1198
1210
|
Object.setPrototypeOf(this, IntegrationTargetNotFoundFault.prototype);
|
|
1199
1211
|
}
|
|
1200
1212
|
};
|
|
1201
|
-
let DependentServiceAccessDeniedFault$1 = class DependentServiceAccessDeniedFault extends RedshiftServiceException$1 {
|
|
1202
|
-
name = "DependentServiceAccessDeniedFault";
|
|
1203
|
-
$fault = "client";
|
|
1204
|
-
constructor(opts) {
|
|
1205
|
-
super({
|
|
1206
|
-
name: "DependentServiceAccessDeniedFault",
|
|
1207
|
-
$fault: "client",
|
|
1208
|
-
...opts,
|
|
1209
|
-
});
|
|
1210
|
-
Object.setPrototypeOf(this, DependentServiceAccessDeniedFault.prototype);
|
|
1211
|
-
}
|
|
1212
|
-
};
|
|
1213
1213
|
let RedshiftIdcApplicationAlreadyExistsFault$1 = class RedshiftIdcApplicationAlreadyExistsFault extends RedshiftServiceException$1 {
|
|
1214
1214
|
name = "RedshiftIdcApplicationAlreadyExistsFault";
|
|
1215
1215
|
$fault = "client";
|
|
@@ -1892,11 +1892,12 @@ const _ASAM = "AuthorizeSnapshotAccessMessage";
|
|
|
1892
1892
|
const _ASAR = "AuthorizeSnapshotAccessResult";
|
|
1893
1893
|
const _ASRP = "AutomatedSnapshotRetentionPeriod";
|
|
1894
1894
|
const _ASp = "ApplyStatus";
|
|
1895
|
-
const _AT = "
|
|
1895
|
+
const _AT = "ApplicationType";
|
|
1896
1896
|
const _ATCDF = "AccessToClusterDeniedFault";
|
|
1897
1897
|
const _ATI = "AuthorizedTokenIssuer";
|
|
1898
1898
|
const _ATIL = "AuthorizedTokenIssuerList";
|
|
1899
1899
|
const _ATSDF = "AccessToSnapshotDeniedFault";
|
|
1900
|
+
const _ATc = "ActionType";
|
|
1900
1901
|
const _ATp = "ApplyType";
|
|
1901
1902
|
const _ATu = "AuthorizeTime";
|
|
1902
1903
|
const _AV = "AttributeValues";
|
|
@@ -1947,6 +1948,7 @@ const _CAPR = "CreateAuthenticationProfileResult";
|
|
|
1947
1948
|
const _CAS = "ClusterAvailabilityStatus";
|
|
1948
1949
|
const _CATS = "ClusterAssociatedToSchedule";
|
|
1949
1950
|
const _CAW = "ConsumerAcceptedWrites";
|
|
1951
|
+
const _CAa = "CatalogArn";
|
|
1950
1952
|
const _CAe = "CertificateAssociations";
|
|
1951
1953
|
const _CAer = "CertificateAssociation";
|
|
1952
1954
|
const _CAr = "CreatedAt";
|
|
@@ -2017,6 +2019,7 @@ const _CN = "ClusterNodes";
|
|
|
2017
2019
|
const _CNA = "ClusterNamespaceArn";
|
|
2018
2020
|
const _CNFF = "ClusterNotFoundFault";
|
|
2019
2021
|
const _CNL = "ClusterNodesList";
|
|
2022
|
+
const _CNa = "CatalogName";
|
|
2020
2023
|
const _CNl = "ClusterNode";
|
|
2021
2024
|
const _COLRF = "ClusterOnLatestRevisionFault";
|
|
2022
2025
|
const _CPG = "ClusterParameterGroups";
|
|
@@ -2090,7 +2093,8 @@ const _CVM = "ClusterVersionsMessage";
|
|
|
2090
2093
|
const _CVl = "ClusterVersions";
|
|
2091
2094
|
const _Cl = "Clusters";
|
|
2092
2095
|
const _Cla = "Classic";
|
|
2093
|
-
const _Co = "
|
|
2096
|
+
const _Co = "Connect";
|
|
2097
|
+
const _Com = "Command";
|
|
2094
2098
|
const _D = "Description";
|
|
2095
2099
|
const _DAA = "DescribeAccountAttributes";
|
|
2096
2100
|
const _DAAM = "DescribeAccountAttributesMessage";
|
|
@@ -2487,6 +2491,7 @@ const _K = "Key";
|
|
|
2487
2491
|
const _KKI = "KmsKeyId";
|
|
2488
2492
|
const _KMSKI = "KMSKeyId";
|
|
2489
2493
|
const _L = "Link";
|
|
2494
|
+
const _LC = "LakehouseConfiguration";
|
|
2490
2495
|
const _LDT = "LogDestinationType";
|
|
2491
2496
|
const _LE = "LogExports";
|
|
2492
2497
|
const _LEF = "LimitExceededFault";
|
|
@@ -2497,9 +2502,13 @@ const _LFQ = "LakeFormationQuery";
|
|
|
2497
2502
|
const _LFSI = "LakeFormationServiceIntegrations";
|
|
2498
2503
|
const _LFSU = "LakeFormationScopeUnion";
|
|
2499
2504
|
const _LFT = "LastFailureTime";
|
|
2500
|
-
const
|
|
2505
|
+
const _LIAA = "LakehouseIdcApplicationArn";
|
|
2506
|
+
const _LIR = "LakehouseIdcRegistration";
|
|
2507
|
+
const _LR = "LakehouseRegistration";
|
|
2501
2508
|
const _LRM = "ListRecommendationsMessage";
|
|
2502
2509
|
const _LRR = "ListRecommendationsResult";
|
|
2510
|
+
const _LRS = "LakehouseRegistrationStatus";
|
|
2511
|
+
const _LRi = "ListRecommendations";
|
|
2503
2512
|
const _LS = "LoggingStatus";
|
|
2504
2513
|
const _LSD = "LoadSampleData";
|
|
2505
2514
|
const _LSDT = "LastSuccessfulDeliveryTime";
|
|
@@ -2547,6 +2556,8 @@ const _MESR = "ModifyEventSubscriptionResult";
|
|
|
2547
2556
|
const _MEV = "MinimumEngineVersion";
|
|
2548
2557
|
const _MI = "ModifyIntegration";
|
|
2549
2558
|
const _MIM = "ModifyIntegrationMessage";
|
|
2559
|
+
const _MLC = "ModifyLakehouseConfiguration";
|
|
2560
|
+
const _MLCM = "ModifyLakehouseConfigurationMessage";
|
|
2550
2561
|
const _MMP = "ManageMasterPassword";
|
|
2551
2562
|
const _MPSA = "MasterPasswordSecretArn";
|
|
2552
2563
|
const _MPSKKI = "MasterPasswordSecretKmsKeyId";
|
|
@@ -2737,6 +2748,8 @@ const _RS = "RestoreStatus";
|
|
|
2737
2748
|
const _RSA = "RevokeSnapshotAccess";
|
|
2738
2749
|
const _RSAM = "RevokeSnapshotAccessMessage";
|
|
2739
2750
|
const _RSAR = "RevokeSnapshotAccessResult";
|
|
2751
|
+
const _RSI = "RedshiftServiceIntegrations";
|
|
2752
|
+
const _RSU = "RedshiftScopeUnion";
|
|
2740
2753
|
const _RT = "RevisionTargets";
|
|
2741
2754
|
const _RTFCS = "RestoreTableFromClusterSnapshot";
|
|
2742
2755
|
const _RTFCSM = "RestoreTableFromClusterSnapshotMessage";
|
|
@@ -2751,6 +2764,7 @@ const _RTev = "RevisionTarget";
|
|
|
2751
2764
|
const _RWA = "ReadWriteAccess";
|
|
2752
2765
|
const _Re = "Recommendations";
|
|
2753
2766
|
const _Rec = "Recommendation";
|
|
2767
|
+
const _Red = "Redshift";
|
|
2754
2768
|
const _S = "Snapshot";
|
|
2755
2769
|
const _SA = "SnapshotArn";
|
|
2756
2770
|
const _SAAEF = "ScheduledActionAlreadyExistsFault";
|
|
@@ -3289,6 +3303,8 @@ var Cluster = [
|
|
|
3289
3303
|
_IAT,
|
|
3290
3304
|
_MAZ,
|
|
3291
3305
|
_MAZS,
|
|
3306
|
+
_LRS,
|
|
3307
|
+
_CAa,
|
|
3292
3308
|
],
|
|
3293
3309
|
[
|
|
3294
3310
|
0,
|
|
@@ -3351,6 +3367,8 @@ var Cluster = [
|
|
|
3351
3367
|
0,
|
|
3352
3368
|
0,
|
|
3353
3369
|
() => SecondaryClusterInfo,
|
|
3370
|
+
0,
|
|
3371
|
+
0,
|
|
3354
3372
|
],
|
|
3355
3373
|
];
|
|
3356
3374
|
var ClusterAlreadyExistsFault = [
|
|
@@ -3700,6 +3718,7 @@ var ConflictPolicyUpdateFault = [
|
|
|
3700
3718
|
[0],
|
|
3701
3719
|
];
|
|
3702
3720
|
schema.TypeRegistry.for(n0).registerError(ConflictPolicyUpdateFault, ConflictPolicyUpdateFault$1);
|
|
3721
|
+
var Connect = [3, n0, _Co, 0, [_Au], [0]];
|
|
3703
3722
|
var CopyClusterSnapshotMessage = [
|
|
3704
3723
|
3,
|
|
3705
3724
|
n0,
|
|
@@ -3769,6 +3788,7 @@ var CreateClusterMessage = [
|
|
|
3769
3788
|
_IAT,
|
|
3770
3789
|
_MAZ,
|
|
3771
3790
|
_RIAA,
|
|
3791
|
+
_CNa,
|
|
3772
3792
|
],
|
|
3773
3793
|
[
|
|
3774
3794
|
0,
|
|
@@ -3810,6 +3830,7 @@ var CreateClusterMessage = [
|
|
|
3810
3830
|
0,
|
|
3811
3831
|
2,
|
|
3812
3832
|
0,
|
|
3833
|
+
0,
|
|
3813
3834
|
],
|
|
3814
3835
|
];
|
|
3815
3836
|
var CreateClusterParameterGroupMessage = [
|
|
@@ -3955,7 +3976,7 @@ var CreateRedshiftIdcApplicationMessage = [
|
|
|
3955
3976
|
n0,
|
|
3956
3977
|
_CRIAM,
|
|
3957
3978
|
0,
|
|
3958
|
-
[_IIA, _RIAN, _INd, _IDN, _IRA, _ATIL, _SIe, _T, _STK],
|
|
3979
|
+
[_IIA, _RIAN, _INd, _IDN, _IRA, _ATIL, _SIe, _AT, _T, _STK],
|
|
3959
3980
|
[
|
|
3960
3981
|
0,
|
|
3961
3982
|
0,
|
|
@@ -3964,6 +3985,7 @@ var CreateRedshiftIdcApplicationMessage = [
|
|
|
3964
3985
|
0,
|
|
3965
3986
|
() => AuthorizedTokenIssuerList,
|
|
3966
3987
|
() => ServiceIntegrationList,
|
|
3988
|
+
0,
|
|
3967
3989
|
[() => TagList, 0],
|
|
3968
3990
|
[() => TagKeyList, 0],
|
|
3969
3991
|
],
|
|
@@ -4368,7 +4390,7 @@ var DescribeNodeConfigurationOptionsMessage = [
|
|
|
4368
4390
|
n0,
|
|
4369
4391
|
_DNCOM,
|
|
4370
4392
|
0,
|
|
4371
|
-
[
|
|
4393
|
+
[_ATc, _CIl, _SI, _SA, _OA, _Fi, _M, _MR],
|
|
4372
4394
|
[
|
|
4373
4395
|
0,
|
|
4374
4396
|
0,
|
|
@@ -4755,7 +4777,7 @@ var GetReservedNodeExchangeConfigurationOptionsInputMessage = [
|
|
|
4755
4777
|
n0,
|
|
4756
4778
|
_GRNECOIM,
|
|
4757
4779
|
0,
|
|
4758
|
-
[
|
|
4780
|
+
[_ATc, _CIl, _SI, _MR, _M],
|
|
4759
4781
|
[0, 0, 0, 1, 0],
|
|
4760
4782
|
];
|
|
4761
4783
|
var GetReservedNodeExchangeConfigurationOptionsOutputMessage = [
|
|
@@ -5482,6 +5504,7 @@ var Ipv6CidrBlockNotFoundFault = [
|
|
|
5482
5504
|
];
|
|
5483
5505
|
schema.TypeRegistry.for(n0).registerError(Ipv6CidrBlockNotFoundFault, Ipv6CidrBlockNotFoundFault$1);
|
|
5484
5506
|
var LakeFormationQuery = [3, n0, _LFQ, 0, [_Au], [0]];
|
|
5507
|
+
var LakehouseConfiguration = [3, n0, _LC, 0, [_CIl, _LIAA, _LRS, _CAa], [0, 0, 0, 0]];
|
|
5485
5508
|
var LimitExceededFault = [
|
|
5486
5509
|
-3,
|
|
5487
5510
|
n0,
|
|
@@ -5688,6 +5711,14 @@ var ModifyEventSubscriptionResult = [
|
|
|
5688
5711
|
[[() => EventSubscription, 0]],
|
|
5689
5712
|
];
|
|
5690
5713
|
var ModifyIntegrationMessage = [3, n0, _MIM, 0, [_IA, _D, _IN], [0, 0, 0]];
|
|
5714
|
+
var ModifyLakehouseConfigurationMessage = [
|
|
5715
|
+
3,
|
|
5716
|
+
n0,
|
|
5717
|
+
_MLCM,
|
|
5718
|
+
0,
|
|
5719
|
+
[_CIl, _LR, _CNa, _LIR, _LIAA, _DRr],
|
|
5720
|
+
[0, 0, 0, 0, 0, 2],
|
|
5721
|
+
];
|
|
5691
5722
|
var ModifyRedshiftIdcApplicationMessage = [
|
|
5692
5723
|
3,
|
|
5693
5724
|
n0,
|
|
@@ -5877,14 +5908,14 @@ var Recommendation = [
|
|
|
5877
5908
|
[_Id, _CIl, _NA, _CAr, _RTec, _Ti, _D, _Ob, _IRm, _RTeco, _RAe, _RL],
|
|
5878
5909
|
[0, 0, 0, 4, 0, 0, 0, 0, 0, 0, [() => RecommendedActionList, 0], [() => ReferenceLinkList, 0]],
|
|
5879
5910
|
];
|
|
5880
|
-
var RecommendedAction = [3, n0, _RAec, 0, [_Te, _Dat,
|
|
5911
|
+
var RecommendedAction = [3, n0, _RAec, 0, [_Te, _Dat, _Com, _Ty], [0, 0, 0, 0]];
|
|
5881
5912
|
var RecurringCharge = [3, n0, _RC, 0, [_RCA, _RCF], [1, 0]];
|
|
5882
5913
|
var RedshiftIdcApplication = [
|
|
5883
5914
|
3,
|
|
5884
5915
|
n0,
|
|
5885
5916
|
_RIA,
|
|
5886
5917
|
0,
|
|
5887
|
-
[_IIA, _RIAN, _RIAA, _INd, _IDN, _IRA, _IMAA, _IOS, _ATIL, _SIe, _T, _STK],
|
|
5918
|
+
[_IIA, _RIAN, _RIAA, _INd, _IDN, _IRA, _IMAA, _IOS, _ATIL, _SIe, _AT, _T, _STK],
|
|
5888
5919
|
[
|
|
5889
5920
|
0,
|
|
5890
5921
|
0,
|
|
@@ -5896,6 +5927,7 @@ var RedshiftIdcApplication = [
|
|
|
5896
5927
|
0,
|
|
5897
5928
|
() => AuthorizedTokenIssuerList,
|
|
5898
5929
|
() => ServiceIntegrationList,
|
|
5930
|
+
0,
|
|
5899
5931
|
[() => TagList, 0],
|
|
5900
5932
|
[() => TagKeyList, 0],
|
|
5901
5933
|
],
|
|
@@ -6185,6 +6217,8 @@ var RestoreFromClusterSnapshotMessage = [
|
|
|
6185
6217
|
_MPSKKI,
|
|
6186
6218
|
_IAT,
|
|
6187
6219
|
_MAZ,
|
|
6220
|
+
_CNa,
|
|
6221
|
+
_RIAA,
|
|
6188
6222
|
],
|
|
6189
6223
|
[
|
|
6190
6224
|
0,
|
|
@@ -6224,6 +6258,8 @@ var RestoreFromClusterSnapshotMessage = [
|
|
|
6224
6258
|
0,
|
|
6225
6259
|
0,
|
|
6226
6260
|
2,
|
|
6261
|
+
0,
|
|
6262
|
+
0,
|
|
6227
6263
|
],
|
|
6228
6264
|
];
|
|
6229
6265
|
var RestoreFromClusterSnapshotResult = [3, n0, _RFCSR, 0, [_C], [[() => Cluster, 0]]];
|
|
@@ -7548,6 +7584,7 @@ var RecurringChargeList = [
|
|
|
7548
7584
|
],
|
|
7549
7585
|
];
|
|
7550
7586
|
var RedshiftIdcApplicationList = [1, n0, _RIAL, 0, [() => RedshiftIdcApplication, 0]];
|
|
7587
|
+
var RedshiftServiceIntegrations = [1, n0, _RSI, 0, () => RedshiftScopeUnion];
|
|
7551
7588
|
var ReferenceLinkList = [
|
|
7552
7589
|
1,
|
|
7553
7590
|
n0,
|
|
@@ -7956,14 +7993,15 @@ var NamespaceIdentifierUnion = [
|
|
|
7956
7993
|
[_SIer, _PI],
|
|
7957
7994
|
[() => ServerlessIdentifier, () => ProvisionedIdentifier],
|
|
7958
7995
|
];
|
|
7996
|
+
var RedshiftScopeUnion = [3, n0, _RSU, 0, [_Co], [() => Connect]];
|
|
7959
7997
|
var S3AccessGrantsScopeUnion = [3, n0, _SAGSU, 0, [_RWA], [() => ReadWriteAccess]];
|
|
7960
7998
|
var ServiceIntegrationsUnion = [
|
|
7961
7999
|
3,
|
|
7962
8000
|
n0,
|
|
7963
8001
|
_SIU,
|
|
7964
8002
|
0,
|
|
7965
|
-
[_LF, _SAG],
|
|
7966
|
-
[() => LakeFormationServiceIntegrations, () => S3AccessGrantsServiceIntegrations],
|
|
8003
|
+
[_LF, _SAG, _Red],
|
|
8004
|
+
[() => LakeFormationServiceIntegrations, () => S3AccessGrantsServiceIntegrations, () => RedshiftServiceIntegrations],
|
|
7967
8005
|
];
|
|
7968
8006
|
var AcceptReservedNodeExchange = [
|
|
7969
8007
|
9,
|
|
@@ -8744,7 +8782,7 @@ var GetResourcePolicy = [
|
|
|
8744
8782
|
var ListRecommendations = [
|
|
8745
8783
|
9,
|
|
8746
8784
|
n0,
|
|
8747
|
-
|
|
8785
|
+
_LRi,
|
|
8748
8786
|
0,
|
|
8749
8787
|
() => ListRecommendationsMessage,
|
|
8750
8788
|
() => ListRecommendationsResult,
|
|
@@ -8861,6 +8899,14 @@ var ModifyIntegration = [
|
|
|
8861
8899
|
() => ModifyIntegrationMessage,
|
|
8862
8900
|
() => Integration,
|
|
8863
8901
|
];
|
|
8902
|
+
var ModifyLakehouseConfiguration = [
|
|
8903
|
+
9,
|
|
8904
|
+
n0,
|
|
8905
|
+
_MLC,
|
|
8906
|
+
0,
|
|
8907
|
+
() => ModifyLakehouseConfigurationMessage,
|
|
8908
|
+
() => LakehouseConfiguration,
|
|
8909
|
+
];
|
|
8864
8910
|
var ModifyRedshiftIdcApplication = [
|
|
8865
8911
|
9,
|
|
8866
8912
|
n0,
|
|
@@ -10437,6 +10483,18 @@ class ModifyIntegrationCommand extends smithyClient.Command
|
|
|
10437
10483
|
.build() {
|
|
10438
10484
|
}
|
|
10439
10485
|
|
|
10486
|
+
class ModifyLakehouseConfigurationCommand extends smithyClient.Command
|
|
10487
|
+
.classBuilder()
|
|
10488
|
+
.ep(commonParams)
|
|
10489
|
+
.m(function (Command, cs, config, o) {
|
|
10490
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
10491
|
+
})
|
|
10492
|
+
.s("RedshiftServiceVersion20121201", "ModifyLakehouseConfiguration", {})
|
|
10493
|
+
.n("RedshiftClient", "ModifyLakehouseConfigurationCommand")
|
|
10494
|
+
.sc(ModifyLakehouseConfiguration)
|
|
10495
|
+
.build() {
|
|
10496
|
+
}
|
|
10497
|
+
|
|
10440
10498
|
class ModifyRedshiftIdcApplicationCommand extends smithyClient.Command
|
|
10441
10499
|
.classBuilder()
|
|
10442
10500
|
.ep(commonParams)
|
|
@@ -10809,6 +10867,7 @@ const commands = {
|
|
|
10809
10867
|
ModifyEndpointAccessCommand,
|
|
10810
10868
|
ModifyEventSubscriptionCommand,
|
|
10811
10869
|
ModifyIntegrationCommand,
|
|
10870
|
+
ModifyLakehouseConfigurationCommand,
|
|
10812
10871
|
ModifyRedshiftIdcApplicationCommand,
|
|
10813
10872
|
ModifyScheduledActionCommand,
|
|
10814
10873
|
ModifySnapshotCopyRetentionPeriodCommand,
|
|
@@ -11149,6 +11208,10 @@ const ActionType = {
|
|
|
11149
11208
|
RESIZE_CLUSTER: "resize-cluster",
|
|
11150
11209
|
RESTORE_CLUSTER: "restore-cluster",
|
|
11151
11210
|
};
|
|
11211
|
+
const ApplicationType = {
|
|
11212
|
+
LAKEHOUSE: "Lakehouse",
|
|
11213
|
+
NONE: "None",
|
|
11214
|
+
};
|
|
11152
11215
|
const AquaConfigurationStatus = {
|
|
11153
11216
|
AUTO: "auto",
|
|
11154
11217
|
DISABLED: "disabled",
|
|
@@ -11191,6 +11254,10 @@ const ParameterApplyType = {
|
|
|
11191
11254
|
dynamic: "dynamic",
|
|
11192
11255
|
static: "static",
|
|
11193
11256
|
};
|
|
11257
|
+
const ServiceAuthorization = {
|
|
11258
|
+
DISABLED: "Disabled",
|
|
11259
|
+
ENABLED: "Enabled",
|
|
11260
|
+
};
|
|
11194
11261
|
const ZeroETLIntegrationStatus = {
|
|
11195
11262
|
ACTIVE: "active",
|
|
11196
11263
|
CREATING: "creating",
|
|
@@ -11200,10 +11267,6 @@ const ZeroETLIntegrationStatus = {
|
|
|
11200
11267
|
NEEDS_ATTENTION: "needs_attention",
|
|
11201
11268
|
SYNCING: "syncing",
|
|
11202
11269
|
};
|
|
11203
|
-
const ServiceAuthorization = {
|
|
11204
|
-
DISABLED: "Disabled",
|
|
11205
|
-
ENABLED: "Enabled",
|
|
11206
|
-
};
|
|
11207
11270
|
const ScheduledActionState = {
|
|
11208
11271
|
ACTIVE: "ACTIVE",
|
|
11209
11272
|
DISABLED: "DISABLED",
|
|
@@ -11318,6 +11381,14 @@ const ImpactRankingType = {
|
|
|
11318
11381
|
LOW: "LOW",
|
|
11319
11382
|
MEDIUM: "MEDIUM",
|
|
11320
11383
|
};
|
|
11384
|
+
const LakehouseIdcRegistration = {
|
|
11385
|
+
ASSOCIATE: "Associate",
|
|
11386
|
+
DISASSOCIATE: "Disassociate",
|
|
11387
|
+
};
|
|
11388
|
+
const LakehouseRegistration = {
|
|
11389
|
+
DEREGISTER: "Deregister",
|
|
11390
|
+
REGISTER: "Register",
|
|
11391
|
+
};
|
|
11321
11392
|
const RecommendedActionType = {
|
|
11322
11393
|
CLI: "CLI",
|
|
11323
11394
|
SQL: "SQL",
|
|
@@ -11336,6 +11407,7 @@ exports.AccessToClusterDeniedFault = AccessToClusterDeniedFault$1;
|
|
|
11336
11407
|
exports.AccessToSnapshotDeniedFault = AccessToSnapshotDeniedFault$1;
|
|
11337
11408
|
exports.ActionType = ActionType;
|
|
11338
11409
|
exports.AddPartnerCommand = AddPartnerCommand;
|
|
11410
|
+
exports.ApplicationType = ApplicationType;
|
|
11339
11411
|
exports.AquaConfigurationStatus = AquaConfigurationStatus;
|
|
11340
11412
|
exports.AquaStatus = AquaStatus;
|
|
11341
11413
|
exports.AssociateDataShareConsumerCommand = AssociateDataShareConsumerCommand;
|
|
@@ -11537,6 +11609,8 @@ exports.InvalidTagFault = InvalidTagFault$1;
|
|
|
11537
11609
|
exports.InvalidUsageLimitFault = InvalidUsageLimitFault$1;
|
|
11538
11610
|
exports.InvalidVPCNetworkStateFault = InvalidVPCNetworkStateFault$1;
|
|
11539
11611
|
exports.Ipv6CidrBlockNotFoundFault = Ipv6CidrBlockNotFoundFault$1;
|
|
11612
|
+
exports.LakehouseIdcRegistration = LakehouseIdcRegistration;
|
|
11613
|
+
exports.LakehouseRegistration = LakehouseRegistration;
|
|
11540
11614
|
exports.LimitExceededFault = LimitExceededFault$1;
|
|
11541
11615
|
exports.ListRecommendationsCommand = ListRecommendationsCommand;
|
|
11542
11616
|
exports.LogDestinationType = LogDestinationType;
|
|
@@ -11555,6 +11629,7 @@ exports.ModifyCustomDomainAssociationCommand = ModifyCustomDomainAssociationComm
|
|
|
11555
11629
|
exports.ModifyEndpointAccessCommand = ModifyEndpointAccessCommand;
|
|
11556
11630
|
exports.ModifyEventSubscriptionCommand = ModifyEventSubscriptionCommand;
|
|
11557
11631
|
exports.ModifyIntegrationCommand = ModifyIntegrationCommand;
|
|
11632
|
+
exports.ModifyLakehouseConfigurationCommand = ModifyLakehouseConfigurationCommand;
|
|
11558
11633
|
exports.ModifyRedshiftIdcApplicationCommand = ModifyRedshiftIdcApplicationCommand;
|
|
11559
11634
|
exports.ModifyScheduledActionCommand = ModifyScheduledActionCommand;
|
|
11560
11635
|
exports.ModifySnapshotCopyRetentionPeriodCommand = ModifySnapshotCopyRetentionPeriodCommand;
|
package/dist-es/Redshift.js
CHANGED
|
@@ -118,6 +118,7 @@ import { ModifyCustomDomainAssociationCommand, } from "./commands/ModifyCustomDo
|
|
|
118
118
|
import { ModifyEndpointAccessCommand, } from "./commands/ModifyEndpointAccessCommand";
|
|
119
119
|
import { ModifyEventSubscriptionCommand, } from "./commands/ModifyEventSubscriptionCommand";
|
|
120
120
|
import { ModifyIntegrationCommand, } from "./commands/ModifyIntegrationCommand";
|
|
121
|
+
import { ModifyLakehouseConfigurationCommand, } from "./commands/ModifyLakehouseConfigurationCommand";
|
|
121
122
|
import { ModifyRedshiftIdcApplicationCommand, } from "./commands/ModifyRedshiftIdcApplicationCommand";
|
|
122
123
|
import { ModifyScheduledActionCommand, } from "./commands/ModifyScheduledActionCommand";
|
|
123
124
|
import { ModifySnapshotCopyRetentionPeriodCommand, } from "./commands/ModifySnapshotCopyRetentionPeriodCommand";
|
|
@@ -260,6 +261,7 @@ const commands = {
|
|
|
260
261
|
ModifyEndpointAccessCommand,
|
|
261
262
|
ModifyEventSubscriptionCommand,
|
|
262
263
|
ModifyIntegrationCommand,
|
|
264
|
+
ModifyLakehouseConfigurationCommand,
|
|
263
265
|
ModifyRedshiftIdcApplicationCommand,
|
|
264
266
|
ModifyScheduledActionCommand,
|
|
265
267
|
ModifySnapshotCopyRetentionPeriodCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ModifyLakehouseConfiguration } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ModifyLakehouseConfigurationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("RedshiftServiceVersion20121201", "ModifyLakehouseConfiguration", {})
|
|
13
|
+
.n("RedshiftClient", "ModifyLakehouseConfigurationCommand")
|
|
14
|
+
.sc(ModifyLakehouseConfiguration)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -117,6 +117,7 @@ export * from "./ModifyCustomDomainAssociationCommand";
|
|
|
117
117
|
export * from "./ModifyEndpointAccessCommand";
|
|
118
118
|
export * from "./ModifyEventSubscriptionCommand";
|
|
119
119
|
export * from "./ModifyIntegrationCommand";
|
|
120
|
+
export * from "./ModifyLakehouseConfigurationCommand";
|
|
120
121
|
export * from "./ModifyRedshiftIdcApplicationCommand";
|
|
121
122
|
export * from "./ModifyScheduledActionCommand";
|
|
122
123
|
export * from "./ModifySnapshotCopyRetentionPeriodCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -7,6 +7,10 @@ export const ActionType = {
|
|
|
7
7
|
RESIZE_CLUSTER: "resize-cluster",
|
|
8
8
|
RESTORE_CLUSTER: "restore-cluster",
|
|
9
9
|
};
|
|
10
|
+
export const ApplicationType = {
|
|
11
|
+
LAKEHOUSE: "Lakehouse",
|
|
12
|
+
NONE: "None",
|
|
13
|
+
};
|
|
10
14
|
export const AquaConfigurationStatus = {
|
|
11
15
|
AUTO: "auto",
|
|
12
16
|
DISABLED: "disabled",
|
|
@@ -49,6 +53,10 @@ export const ParameterApplyType = {
|
|
|
49
53
|
dynamic: "dynamic",
|
|
50
54
|
static: "static",
|
|
51
55
|
};
|
|
56
|
+
export const ServiceAuthorization = {
|
|
57
|
+
DISABLED: "Disabled",
|
|
58
|
+
ENABLED: "Enabled",
|
|
59
|
+
};
|
|
52
60
|
export const ZeroETLIntegrationStatus = {
|
|
53
61
|
ACTIVE: "active",
|
|
54
62
|
CREATING: "creating",
|
|
@@ -58,10 +66,6 @@ export const ZeroETLIntegrationStatus = {
|
|
|
58
66
|
NEEDS_ATTENTION: "needs_attention",
|
|
59
67
|
SYNCING: "syncing",
|
|
60
68
|
};
|
|
61
|
-
export const ServiceAuthorization = {
|
|
62
|
-
DISABLED: "Disabled",
|
|
63
|
-
ENABLED: "Enabled",
|
|
64
|
-
};
|
|
65
69
|
export const ScheduledActionState = {
|
|
66
70
|
ACTIVE: "ACTIVE",
|
|
67
71
|
DISABLED: "DISABLED",
|
|
@@ -176,6 +180,14 @@ export const ImpactRankingType = {
|
|
|
176
180
|
LOW: "LOW",
|
|
177
181
|
MEDIUM: "MEDIUM",
|
|
178
182
|
};
|
|
183
|
+
export const LakehouseIdcRegistration = {
|
|
184
|
+
ASSOCIATE: "Associate",
|
|
185
|
+
DISASSOCIATE: "Disassociate",
|
|
186
|
+
};
|
|
187
|
+
export const LakehouseRegistration = {
|
|
188
|
+
DEREGISTER: "Deregister",
|
|
189
|
+
REGISTER: "Register",
|
|
190
|
+
};
|
|
179
191
|
export const RecommendedActionType = {
|
|
180
192
|
CLI: "CLI",
|
|
181
193
|
SQL: "SQL",
|
package/dist-es/models/errors.js
CHANGED
|
@@ -623,6 +623,18 @@ export class InvalidAuthenticationProfileRequestFault extends __BaseException {
|
|
|
623
623
|
Object.setPrototypeOf(this, InvalidAuthenticationProfileRequestFault.prototype);
|
|
624
624
|
}
|
|
625
625
|
}
|
|
626
|
+
export class DependentServiceAccessDeniedFault extends __BaseException {
|
|
627
|
+
name = "DependentServiceAccessDeniedFault";
|
|
628
|
+
$fault = "client";
|
|
629
|
+
constructor(opts) {
|
|
630
|
+
super({
|
|
631
|
+
name: "DependentServiceAccessDeniedFault",
|
|
632
|
+
$fault: "client",
|
|
633
|
+
...opts,
|
|
634
|
+
});
|
|
635
|
+
Object.setPrototypeOf(this, DependentServiceAccessDeniedFault.prototype);
|
|
636
|
+
}
|
|
637
|
+
}
|
|
626
638
|
export class HsmClientCertificateNotFoundFault extends __BaseException {
|
|
627
639
|
name = "HsmClientCertificateNotFoundFault";
|
|
628
640
|
$fault = "client";
|
|
@@ -1079,18 +1091,6 @@ export class IntegrationTargetNotFoundFault extends __BaseException {
|
|
|
1079
1091
|
Object.setPrototypeOf(this, IntegrationTargetNotFoundFault.prototype);
|
|
1080
1092
|
}
|
|
1081
1093
|
}
|
|
1082
|
-
export class DependentServiceAccessDeniedFault extends __BaseException {
|
|
1083
|
-
name = "DependentServiceAccessDeniedFault";
|
|
1084
|
-
$fault = "client";
|
|
1085
|
-
constructor(opts) {
|
|
1086
|
-
super({
|
|
1087
|
-
name: "DependentServiceAccessDeniedFault",
|
|
1088
|
-
$fault: "client",
|
|
1089
|
-
...opts,
|
|
1090
|
-
});
|
|
1091
|
-
Object.setPrototypeOf(this, DependentServiceAccessDeniedFault.prototype);
|
|
1092
|
-
}
|
|
1093
|
-
}
|
|
1094
1094
|
export class RedshiftIdcApplicationAlreadyExistsFault extends __BaseException {
|
|
1095
1095
|
name = "RedshiftIdcApplicationAlreadyExistsFault";
|
|
1096
1096
|
$fault = "client";
|