@aws-sdk/client-docdb 3.201.0 → 3.202.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/CHANGELOG.md +11 -0
- package/dist-cjs/protocols/Aws_query.js +150 -0
- package/dist-es/protocols/Aws_query.js +150 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.202.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.201.0...v3.202.0) (2022-11-02)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **codegen:** aws-query protocol, distinguish explicit empty list ([#4003](https://github.com/aws/aws-sdk-js-v3/issues/4003)) ([8e10769](https://github.com/aws/aws-sdk-js-v3/commit/8e10769b6146f93c0674686fa547290292714917))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.201.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.200.0...v3.201.0) (2022-11-01)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -3440,6 +3440,9 @@ const serializeAws_queryAddTagsToResourceMessage = (input, context) => {
|
|
|
3440
3440
|
}
|
|
3441
3441
|
if (input.Tags != null) {
|
|
3442
3442
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3443
|
+
if (input.Tags?.length === 0) {
|
|
3444
|
+
entries.Tags = [];
|
|
3445
|
+
}
|
|
3443
3446
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3444
3447
|
const loc = `Tags.${key}`;
|
|
3445
3448
|
entries[loc] = value;
|
|
@@ -3488,6 +3491,9 @@ const serializeAws_queryCloudwatchLogsExportConfiguration = (input, context) =>
|
|
|
3488
3491
|
const entries = {};
|
|
3489
3492
|
if (input.EnableLogTypes != null) {
|
|
3490
3493
|
const memberEntries = serializeAws_queryLogTypeList(input.EnableLogTypes, context);
|
|
3494
|
+
if (input.EnableLogTypes?.length === 0) {
|
|
3495
|
+
entries.EnableLogTypes = [];
|
|
3496
|
+
}
|
|
3491
3497
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3492
3498
|
const loc = `EnableLogTypes.${key}`;
|
|
3493
3499
|
entries[loc] = value;
|
|
@@ -3495,6 +3501,9 @@ const serializeAws_queryCloudwatchLogsExportConfiguration = (input, context) =>
|
|
|
3495
3501
|
}
|
|
3496
3502
|
if (input.DisableLogTypes != null) {
|
|
3497
3503
|
const memberEntries = serializeAws_queryLogTypeList(input.DisableLogTypes, context);
|
|
3504
|
+
if (input.DisableLogTypes?.length === 0) {
|
|
3505
|
+
entries.DisableLogTypes = [];
|
|
3506
|
+
}
|
|
3498
3507
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3499
3508
|
const loc = `DisableLogTypes.${key}`;
|
|
3500
3509
|
entries[loc] = value;
|
|
@@ -3515,6 +3524,9 @@ const serializeAws_queryCopyDBClusterParameterGroupMessage = (input, context) =>
|
|
|
3515
3524
|
}
|
|
3516
3525
|
if (input.Tags != null) {
|
|
3517
3526
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3527
|
+
if (input.Tags?.length === 0) {
|
|
3528
|
+
entries.Tags = [];
|
|
3529
|
+
}
|
|
3518
3530
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3519
3531
|
const loc = `Tags.${key}`;
|
|
3520
3532
|
entries[loc] = value;
|
|
@@ -3541,6 +3553,9 @@ const serializeAws_queryCopyDBClusterSnapshotMessage = (input, context) => {
|
|
|
3541
3553
|
}
|
|
3542
3554
|
if (input.Tags != null) {
|
|
3543
3555
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3556
|
+
if (input.Tags?.length === 0) {
|
|
3557
|
+
entries.Tags = [];
|
|
3558
|
+
}
|
|
3544
3559
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3545
3560
|
const loc = `Tags.${key}`;
|
|
3546
3561
|
entries[loc] = value;
|
|
@@ -3552,6 +3567,9 @@ const serializeAws_queryCreateDBClusterMessage = (input, context) => {
|
|
|
3552
3567
|
const entries = {};
|
|
3553
3568
|
if (input.AvailabilityZones != null) {
|
|
3554
3569
|
const memberEntries = serializeAws_queryAvailabilityZones(input.AvailabilityZones, context);
|
|
3570
|
+
if (input.AvailabilityZones?.length === 0) {
|
|
3571
|
+
entries.AvailabilityZones = [];
|
|
3572
|
+
}
|
|
3555
3573
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3556
3574
|
const loc = `AvailabilityZones.${key}`;
|
|
3557
3575
|
entries[loc] = value;
|
|
@@ -3568,6 +3586,9 @@ const serializeAws_queryCreateDBClusterMessage = (input, context) => {
|
|
|
3568
3586
|
}
|
|
3569
3587
|
if (input.VpcSecurityGroupIds != null) {
|
|
3570
3588
|
const memberEntries = serializeAws_queryVpcSecurityGroupIdList(input.VpcSecurityGroupIds, context);
|
|
3589
|
+
if (input.VpcSecurityGroupIds?.length === 0) {
|
|
3590
|
+
entries.VpcSecurityGroupIds = [];
|
|
3591
|
+
}
|
|
3571
3592
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3572
3593
|
const loc = `VpcSecurityGroupIds.${key}`;
|
|
3573
3594
|
entries[loc] = value;
|
|
@@ -3599,6 +3620,9 @@ const serializeAws_queryCreateDBClusterMessage = (input, context) => {
|
|
|
3599
3620
|
}
|
|
3600
3621
|
if (input.Tags != null) {
|
|
3601
3622
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3623
|
+
if (input.Tags?.length === 0) {
|
|
3624
|
+
entries.Tags = [];
|
|
3625
|
+
}
|
|
3602
3626
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3603
3627
|
const loc = `Tags.${key}`;
|
|
3604
3628
|
entries[loc] = value;
|
|
@@ -3615,6 +3639,9 @@ const serializeAws_queryCreateDBClusterMessage = (input, context) => {
|
|
|
3615
3639
|
}
|
|
3616
3640
|
if (input.EnableCloudwatchLogsExports != null) {
|
|
3617
3641
|
const memberEntries = serializeAws_queryLogTypeList(input.EnableCloudwatchLogsExports, context);
|
|
3642
|
+
if (input.EnableCloudwatchLogsExports?.length === 0) {
|
|
3643
|
+
entries.EnableCloudwatchLogsExports = [];
|
|
3644
|
+
}
|
|
3618
3645
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3619
3646
|
const loc = `EnableCloudwatchLogsExports.${key}`;
|
|
3620
3647
|
entries[loc] = value;
|
|
@@ -3641,6 +3668,9 @@ const serializeAws_queryCreateDBClusterParameterGroupMessage = (input, context)
|
|
|
3641
3668
|
}
|
|
3642
3669
|
if (input.Tags != null) {
|
|
3643
3670
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3671
|
+
if (input.Tags?.length === 0) {
|
|
3672
|
+
entries.Tags = [];
|
|
3673
|
+
}
|
|
3644
3674
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3645
3675
|
const loc = `Tags.${key}`;
|
|
3646
3676
|
entries[loc] = value;
|
|
@@ -3658,6 +3688,9 @@ const serializeAws_queryCreateDBClusterSnapshotMessage = (input, context) => {
|
|
|
3658
3688
|
}
|
|
3659
3689
|
if (input.Tags != null) {
|
|
3660
3690
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3691
|
+
if (input.Tags?.length === 0) {
|
|
3692
|
+
entries.Tags = [];
|
|
3693
|
+
}
|
|
3661
3694
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3662
3695
|
const loc = `Tags.${key}`;
|
|
3663
3696
|
entries[loc] = value;
|
|
@@ -3687,6 +3720,9 @@ const serializeAws_queryCreateDBInstanceMessage = (input, context) => {
|
|
|
3687
3720
|
}
|
|
3688
3721
|
if (input.Tags != null) {
|
|
3689
3722
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3723
|
+
if (input.Tags?.length === 0) {
|
|
3724
|
+
entries.Tags = [];
|
|
3725
|
+
}
|
|
3690
3726
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3691
3727
|
const loc = `Tags.${key}`;
|
|
3692
3728
|
entries[loc] = value;
|
|
@@ -3719,6 +3755,9 @@ const serializeAws_queryCreateDBSubnetGroupMessage = (input, context) => {
|
|
|
3719
3755
|
}
|
|
3720
3756
|
if (input.SubnetIds != null) {
|
|
3721
3757
|
const memberEntries = serializeAws_querySubnetIdentifierList(input.SubnetIds, context);
|
|
3758
|
+
if (input.SubnetIds?.length === 0) {
|
|
3759
|
+
entries.SubnetIds = [];
|
|
3760
|
+
}
|
|
3722
3761
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3723
3762
|
const loc = `SubnetIds.${key}`;
|
|
3724
3763
|
entries[loc] = value;
|
|
@@ -3726,6 +3765,9 @@ const serializeAws_queryCreateDBSubnetGroupMessage = (input, context) => {
|
|
|
3726
3765
|
}
|
|
3727
3766
|
if (input.Tags != null) {
|
|
3728
3767
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3768
|
+
if (input.Tags?.length === 0) {
|
|
3769
|
+
entries.Tags = [];
|
|
3770
|
+
}
|
|
3729
3771
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3730
3772
|
const loc = `Tags.${key}`;
|
|
3731
3773
|
entries[loc] = value;
|
|
@@ -3746,6 +3788,9 @@ const serializeAws_queryCreateEventSubscriptionMessage = (input, context) => {
|
|
|
3746
3788
|
}
|
|
3747
3789
|
if (input.EventCategories != null) {
|
|
3748
3790
|
const memberEntries = serializeAws_queryEventCategoriesList(input.EventCategories, context);
|
|
3791
|
+
if (input.EventCategories?.length === 0) {
|
|
3792
|
+
entries.EventCategories = [];
|
|
3793
|
+
}
|
|
3749
3794
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3750
3795
|
const loc = `EventCategories.${key}`;
|
|
3751
3796
|
entries[loc] = value;
|
|
@@ -3753,6 +3798,9 @@ const serializeAws_queryCreateEventSubscriptionMessage = (input, context) => {
|
|
|
3753
3798
|
}
|
|
3754
3799
|
if (input.SourceIds != null) {
|
|
3755
3800
|
const memberEntries = serializeAws_querySourceIdsList(input.SourceIds, context);
|
|
3801
|
+
if (input.SourceIds?.length === 0) {
|
|
3802
|
+
entries.SourceIds = [];
|
|
3803
|
+
}
|
|
3756
3804
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3757
3805
|
const loc = `SourceIds.${key}`;
|
|
3758
3806
|
entries[loc] = value;
|
|
@@ -3763,6 +3811,9 @@ const serializeAws_queryCreateEventSubscriptionMessage = (input, context) => {
|
|
|
3763
3811
|
}
|
|
3764
3812
|
if (input.Tags != null) {
|
|
3765
3813
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3814
|
+
if (input.Tags?.length === 0) {
|
|
3815
|
+
entries.Tags = [];
|
|
3816
|
+
}
|
|
3766
3817
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3767
3818
|
const loc = `Tags.${key}`;
|
|
3768
3819
|
entries[loc] = value;
|
|
@@ -3857,6 +3908,9 @@ const serializeAws_queryDescribeCertificatesMessage = (input, context) => {
|
|
|
3857
3908
|
}
|
|
3858
3909
|
if (input.Filters != null) {
|
|
3859
3910
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
3911
|
+
if (input.Filters?.length === 0) {
|
|
3912
|
+
entries.Filters = [];
|
|
3913
|
+
}
|
|
3860
3914
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3861
3915
|
const loc = `Filters.${key}`;
|
|
3862
3916
|
entries[loc] = value;
|
|
@@ -3877,6 +3931,9 @@ const serializeAws_queryDescribeDBClusterParameterGroupsMessage = (input, contex
|
|
|
3877
3931
|
}
|
|
3878
3932
|
if (input.Filters != null) {
|
|
3879
3933
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
3934
|
+
if (input.Filters?.length === 0) {
|
|
3935
|
+
entries.Filters = [];
|
|
3936
|
+
}
|
|
3880
3937
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3881
3938
|
const loc = `Filters.${key}`;
|
|
3882
3939
|
entries[loc] = value;
|
|
@@ -3900,6 +3957,9 @@ const serializeAws_queryDescribeDBClusterParametersMessage = (input, context) =>
|
|
|
3900
3957
|
}
|
|
3901
3958
|
if (input.Filters != null) {
|
|
3902
3959
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
3960
|
+
if (input.Filters?.length === 0) {
|
|
3961
|
+
entries.Filters = [];
|
|
3962
|
+
}
|
|
3903
3963
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3904
3964
|
const loc = `Filters.${key}`;
|
|
3905
3965
|
entries[loc] = value;
|
|
@@ -3920,6 +3980,9 @@ const serializeAws_queryDescribeDBClustersMessage = (input, context) => {
|
|
|
3920
3980
|
}
|
|
3921
3981
|
if (input.Filters != null) {
|
|
3922
3982
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
3983
|
+
if (input.Filters?.length === 0) {
|
|
3984
|
+
entries.Filters = [];
|
|
3985
|
+
}
|
|
3923
3986
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3924
3987
|
const loc = `Filters.${key}`;
|
|
3925
3988
|
entries[loc] = value;
|
|
@@ -3953,6 +4016,9 @@ const serializeAws_queryDescribeDBClusterSnapshotsMessage = (input, context) =>
|
|
|
3953
4016
|
}
|
|
3954
4017
|
if (input.Filters != null) {
|
|
3955
4018
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4019
|
+
if (input.Filters?.length === 0) {
|
|
4020
|
+
entries.Filters = [];
|
|
4021
|
+
}
|
|
3956
4022
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3957
4023
|
const loc = `Filters.${key}`;
|
|
3958
4024
|
entries[loc] = value;
|
|
@@ -3985,6 +4051,9 @@ const serializeAws_queryDescribeDBEngineVersionsMessage = (input, context) => {
|
|
|
3985
4051
|
}
|
|
3986
4052
|
if (input.Filters != null) {
|
|
3987
4053
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4054
|
+
if (input.Filters?.length === 0) {
|
|
4055
|
+
entries.Filters = [];
|
|
4056
|
+
}
|
|
3988
4057
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3989
4058
|
const loc = `Filters.${key}`;
|
|
3990
4059
|
entries[loc] = value;
|
|
@@ -4014,6 +4083,9 @@ const serializeAws_queryDescribeDBInstancesMessage = (input, context) => {
|
|
|
4014
4083
|
}
|
|
4015
4084
|
if (input.Filters != null) {
|
|
4016
4085
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4086
|
+
if (input.Filters?.length === 0) {
|
|
4087
|
+
entries.Filters = [];
|
|
4088
|
+
}
|
|
4017
4089
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4018
4090
|
const loc = `Filters.${key}`;
|
|
4019
4091
|
entries[loc] = value;
|
|
@@ -4034,6 +4106,9 @@ const serializeAws_queryDescribeDBSubnetGroupsMessage = (input, context) => {
|
|
|
4034
4106
|
}
|
|
4035
4107
|
if (input.Filters != null) {
|
|
4036
4108
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4109
|
+
if (input.Filters?.length === 0) {
|
|
4110
|
+
entries.Filters = [];
|
|
4111
|
+
}
|
|
4037
4112
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4038
4113
|
const loc = `Filters.${key}`;
|
|
4039
4114
|
entries[loc] = value;
|
|
@@ -4054,6 +4129,9 @@ const serializeAws_queryDescribeEngineDefaultClusterParametersMessage = (input,
|
|
|
4054
4129
|
}
|
|
4055
4130
|
if (input.Filters != null) {
|
|
4056
4131
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4132
|
+
if (input.Filters?.length === 0) {
|
|
4133
|
+
entries.Filters = [];
|
|
4134
|
+
}
|
|
4057
4135
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4058
4136
|
const loc = `Filters.${key}`;
|
|
4059
4137
|
entries[loc] = value;
|
|
@@ -4074,6 +4152,9 @@ const serializeAws_queryDescribeEventCategoriesMessage = (input, context) => {
|
|
|
4074
4152
|
}
|
|
4075
4153
|
if (input.Filters != null) {
|
|
4076
4154
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4155
|
+
if (input.Filters?.length === 0) {
|
|
4156
|
+
entries.Filters = [];
|
|
4157
|
+
}
|
|
4077
4158
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4078
4159
|
const loc = `Filters.${key}`;
|
|
4079
4160
|
entries[loc] = value;
|
|
@@ -4100,6 +4181,9 @@ const serializeAws_queryDescribeEventsMessage = (input, context) => {
|
|
|
4100
4181
|
}
|
|
4101
4182
|
if (input.EventCategories != null) {
|
|
4102
4183
|
const memberEntries = serializeAws_queryEventCategoriesList(input.EventCategories, context);
|
|
4184
|
+
if (input.EventCategories?.length === 0) {
|
|
4185
|
+
entries.EventCategories = [];
|
|
4186
|
+
}
|
|
4103
4187
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4104
4188
|
const loc = `EventCategories.${key}`;
|
|
4105
4189
|
entries[loc] = value;
|
|
@@ -4107,6 +4191,9 @@ const serializeAws_queryDescribeEventsMessage = (input, context) => {
|
|
|
4107
4191
|
}
|
|
4108
4192
|
if (input.Filters != null) {
|
|
4109
4193
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4194
|
+
if (input.Filters?.length === 0) {
|
|
4195
|
+
entries.Filters = [];
|
|
4196
|
+
}
|
|
4110
4197
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4111
4198
|
const loc = `Filters.${key}`;
|
|
4112
4199
|
entries[loc] = value;
|
|
@@ -4127,6 +4214,9 @@ const serializeAws_queryDescribeEventSubscriptionsMessage = (input, context) =>
|
|
|
4127
4214
|
}
|
|
4128
4215
|
if (input.Filters != null) {
|
|
4129
4216
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4217
|
+
if (input.Filters?.length === 0) {
|
|
4218
|
+
entries.Filters = [];
|
|
4219
|
+
}
|
|
4130
4220
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4131
4221
|
const loc = `Filters.${key}`;
|
|
4132
4222
|
entries[loc] = value;
|
|
@@ -4147,6 +4237,9 @@ const serializeAws_queryDescribeGlobalClustersMessage = (input, context) => {
|
|
|
4147
4237
|
}
|
|
4148
4238
|
if (input.Filters != null) {
|
|
4149
4239
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4240
|
+
if (input.Filters?.length === 0) {
|
|
4241
|
+
entries.Filters = [];
|
|
4242
|
+
}
|
|
4150
4243
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4151
4244
|
const loc = `Filters.${key}`;
|
|
4152
4245
|
entries[loc] = value;
|
|
@@ -4179,6 +4272,9 @@ const serializeAws_queryDescribeOrderableDBInstanceOptionsMessage = (input, cont
|
|
|
4179
4272
|
}
|
|
4180
4273
|
if (input.Filters != null) {
|
|
4181
4274
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4275
|
+
if (input.Filters?.length === 0) {
|
|
4276
|
+
entries.Filters = [];
|
|
4277
|
+
}
|
|
4182
4278
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4183
4279
|
const loc = `Filters.${key}`;
|
|
4184
4280
|
entries[loc] = value;
|
|
@@ -4199,6 +4295,9 @@ const serializeAws_queryDescribePendingMaintenanceActionsMessage = (input, conte
|
|
|
4199
4295
|
}
|
|
4200
4296
|
if (input.Filters != null) {
|
|
4201
4297
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4298
|
+
if (input.Filters?.length === 0) {
|
|
4299
|
+
entries.Filters = [];
|
|
4300
|
+
}
|
|
4202
4301
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4203
4302
|
const loc = `Filters.${key}`;
|
|
4204
4303
|
entries[loc] = value;
|
|
@@ -4241,6 +4340,9 @@ const serializeAws_queryFilter = (input, context) => {
|
|
|
4241
4340
|
}
|
|
4242
4341
|
if (input.Values != null) {
|
|
4243
4342
|
const memberEntries = serializeAws_queryFilterValueList(input.Values, context);
|
|
4343
|
+
if (input.Values?.length === 0) {
|
|
4344
|
+
entries.Values = [];
|
|
4345
|
+
}
|
|
4244
4346
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4245
4347
|
const loc = `Values.${key}`;
|
|
4246
4348
|
entries[loc] = value;
|
|
@@ -4294,6 +4396,9 @@ const serializeAws_queryListTagsForResourceMessage = (input, context) => {
|
|
|
4294
4396
|
}
|
|
4295
4397
|
if (input.Filters != null) {
|
|
4296
4398
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4399
|
+
if (input.Filters?.length === 0) {
|
|
4400
|
+
entries.Filters = [];
|
|
4401
|
+
}
|
|
4297
4402
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4298
4403
|
const loc = `Filters.${key}`;
|
|
4299
4404
|
entries[loc] = value;
|
|
@@ -4332,6 +4437,9 @@ const serializeAws_queryModifyDBClusterMessage = (input, context) => {
|
|
|
4332
4437
|
}
|
|
4333
4438
|
if (input.VpcSecurityGroupIds != null) {
|
|
4334
4439
|
const memberEntries = serializeAws_queryVpcSecurityGroupIdList(input.VpcSecurityGroupIds, context);
|
|
4440
|
+
if (input.VpcSecurityGroupIds?.length === 0) {
|
|
4441
|
+
entries.VpcSecurityGroupIds = [];
|
|
4442
|
+
}
|
|
4335
4443
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4336
4444
|
const loc = `VpcSecurityGroupIds.${key}`;
|
|
4337
4445
|
entries[loc] = value;
|
|
@@ -4371,6 +4479,9 @@ const serializeAws_queryModifyDBClusterParameterGroupMessage = (input, context)
|
|
|
4371
4479
|
}
|
|
4372
4480
|
if (input.Parameters != null) {
|
|
4373
4481
|
const memberEntries = serializeAws_queryParametersList(input.Parameters, context);
|
|
4482
|
+
if (input.Parameters?.length === 0) {
|
|
4483
|
+
entries.Parameters = [];
|
|
4484
|
+
}
|
|
4374
4485
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4375
4486
|
const loc = `Parameters.${key}`;
|
|
4376
4487
|
entries[loc] = value;
|
|
@@ -4388,6 +4499,9 @@ const serializeAws_queryModifyDBClusterSnapshotAttributeMessage = (input, contex
|
|
|
4388
4499
|
}
|
|
4389
4500
|
if (input.ValuesToAdd != null) {
|
|
4390
4501
|
const memberEntries = serializeAws_queryAttributeValueList(input.ValuesToAdd, context);
|
|
4502
|
+
if (input.ValuesToAdd?.length === 0) {
|
|
4503
|
+
entries.ValuesToAdd = [];
|
|
4504
|
+
}
|
|
4391
4505
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4392
4506
|
const loc = `ValuesToAdd.${key}`;
|
|
4393
4507
|
entries[loc] = value;
|
|
@@ -4395,6 +4509,9 @@ const serializeAws_queryModifyDBClusterSnapshotAttributeMessage = (input, contex
|
|
|
4395
4509
|
}
|
|
4396
4510
|
if (input.ValuesToRemove != null) {
|
|
4397
4511
|
const memberEntries = serializeAws_queryAttributeValueList(input.ValuesToRemove, context);
|
|
4512
|
+
if (input.ValuesToRemove?.length === 0) {
|
|
4513
|
+
entries.ValuesToRemove = [];
|
|
4514
|
+
}
|
|
4398
4515
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4399
4516
|
const loc = `ValuesToRemove.${key}`;
|
|
4400
4517
|
entries[loc] = value;
|
|
@@ -4449,6 +4566,9 @@ const serializeAws_queryModifyDBSubnetGroupMessage = (input, context) => {
|
|
|
4449
4566
|
}
|
|
4450
4567
|
if (input.SubnetIds != null) {
|
|
4451
4568
|
const memberEntries = serializeAws_querySubnetIdentifierList(input.SubnetIds, context);
|
|
4569
|
+
if (input.SubnetIds?.length === 0) {
|
|
4570
|
+
entries.SubnetIds = [];
|
|
4571
|
+
}
|
|
4452
4572
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4453
4573
|
const loc = `SubnetIds.${key}`;
|
|
4454
4574
|
entries[loc] = value;
|
|
@@ -4469,6 +4589,9 @@ const serializeAws_queryModifyEventSubscriptionMessage = (input, context) => {
|
|
|
4469
4589
|
}
|
|
4470
4590
|
if (input.EventCategories != null) {
|
|
4471
4591
|
const memberEntries = serializeAws_queryEventCategoriesList(input.EventCategories, context);
|
|
4592
|
+
if (input.EventCategories?.length === 0) {
|
|
4593
|
+
entries.EventCategories = [];
|
|
4594
|
+
}
|
|
4472
4595
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4473
4596
|
const loc = `EventCategories.${key}`;
|
|
4474
4597
|
entries[loc] = value;
|
|
@@ -4578,6 +4701,9 @@ const serializeAws_queryRemoveTagsFromResourceMessage = (input, context) => {
|
|
|
4578
4701
|
}
|
|
4579
4702
|
if (input.TagKeys != null) {
|
|
4580
4703
|
const memberEntries = serializeAws_queryKeyList(input.TagKeys, context);
|
|
4704
|
+
if (input.TagKeys?.length === 0) {
|
|
4705
|
+
entries.TagKeys = [];
|
|
4706
|
+
}
|
|
4581
4707
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4582
4708
|
const loc = `TagKeys.${key}`;
|
|
4583
4709
|
entries[loc] = value;
|
|
@@ -4595,6 +4721,9 @@ const serializeAws_queryResetDBClusterParameterGroupMessage = (input, context) =
|
|
|
4595
4721
|
}
|
|
4596
4722
|
if (input.Parameters != null) {
|
|
4597
4723
|
const memberEntries = serializeAws_queryParametersList(input.Parameters, context);
|
|
4724
|
+
if (input.Parameters?.length === 0) {
|
|
4725
|
+
entries.Parameters = [];
|
|
4726
|
+
}
|
|
4598
4727
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4599
4728
|
const loc = `Parameters.${key}`;
|
|
4600
4729
|
entries[loc] = value;
|
|
@@ -4606,6 +4735,9 @@ const serializeAws_queryRestoreDBClusterFromSnapshotMessage = (input, context) =
|
|
|
4606
4735
|
const entries = {};
|
|
4607
4736
|
if (input.AvailabilityZones != null) {
|
|
4608
4737
|
const memberEntries = serializeAws_queryAvailabilityZones(input.AvailabilityZones, context);
|
|
4738
|
+
if (input.AvailabilityZones?.length === 0) {
|
|
4739
|
+
entries.AvailabilityZones = [];
|
|
4740
|
+
}
|
|
4609
4741
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4610
4742
|
const loc = `AvailabilityZones.${key}`;
|
|
4611
4743
|
entries[loc] = value;
|
|
@@ -4631,6 +4763,9 @@ const serializeAws_queryRestoreDBClusterFromSnapshotMessage = (input, context) =
|
|
|
4631
4763
|
}
|
|
4632
4764
|
if (input.VpcSecurityGroupIds != null) {
|
|
4633
4765
|
const memberEntries = serializeAws_queryVpcSecurityGroupIdList(input.VpcSecurityGroupIds, context);
|
|
4766
|
+
if (input.VpcSecurityGroupIds?.length === 0) {
|
|
4767
|
+
entries.VpcSecurityGroupIds = [];
|
|
4768
|
+
}
|
|
4634
4769
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4635
4770
|
const loc = `VpcSecurityGroupIds.${key}`;
|
|
4636
4771
|
entries[loc] = value;
|
|
@@ -4638,6 +4773,9 @@ const serializeAws_queryRestoreDBClusterFromSnapshotMessage = (input, context) =
|
|
|
4638
4773
|
}
|
|
4639
4774
|
if (input.Tags != null) {
|
|
4640
4775
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
4776
|
+
if (input.Tags?.length === 0) {
|
|
4777
|
+
entries.Tags = [];
|
|
4778
|
+
}
|
|
4641
4779
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4642
4780
|
const loc = `Tags.${key}`;
|
|
4643
4781
|
entries[loc] = value;
|
|
@@ -4648,6 +4786,9 @@ const serializeAws_queryRestoreDBClusterFromSnapshotMessage = (input, context) =
|
|
|
4648
4786
|
}
|
|
4649
4787
|
if (input.EnableCloudwatchLogsExports != null) {
|
|
4650
4788
|
const memberEntries = serializeAws_queryLogTypeList(input.EnableCloudwatchLogsExports, context);
|
|
4789
|
+
if (input.EnableCloudwatchLogsExports?.length === 0) {
|
|
4790
|
+
entries.EnableCloudwatchLogsExports = [];
|
|
4791
|
+
}
|
|
4651
4792
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4652
4793
|
const loc = `EnableCloudwatchLogsExports.${key}`;
|
|
4653
4794
|
entries[loc] = value;
|
|
@@ -4683,6 +4824,9 @@ const serializeAws_queryRestoreDBClusterToPointInTimeMessage = (input, context)
|
|
|
4683
4824
|
}
|
|
4684
4825
|
if (input.VpcSecurityGroupIds != null) {
|
|
4685
4826
|
const memberEntries = serializeAws_queryVpcSecurityGroupIdList(input.VpcSecurityGroupIds, context);
|
|
4827
|
+
if (input.VpcSecurityGroupIds?.length === 0) {
|
|
4828
|
+
entries.VpcSecurityGroupIds = [];
|
|
4829
|
+
}
|
|
4686
4830
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4687
4831
|
const loc = `VpcSecurityGroupIds.${key}`;
|
|
4688
4832
|
entries[loc] = value;
|
|
@@ -4690,6 +4834,9 @@ const serializeAws_queryRestoreDBClusterToPointInTimeMessage = (input, context)
|
|
|
4690
4834
|
}
|
|
4691
4835
|
if (input.Tags != null) {
|
|
4692
4836
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
4837
|
+
if (input.Tags?.length === 0) {
|
|
4838
|
+
entries.Tags = [];
|
|
4839
|
+
}
|
|
4693
4840
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4694
4841
|
const loc = `Tags.${key}`;
|
|
4695
4842
|
entries[loc] = value;
|
|
@@ -4700,6 +4847,9 @@ const serializeAws_queryRestoreDBClusterToPointInTimeMessage = (input, context)
|
|
|
4700
4847
|
}
|
|
4701
4848
|
if (input.EnableCloudwatchLogsExports != null) {
|
|
4702
4849
|
const memberEntries = serializeAws_queryLogTypeList(input.EnableCloudwatchLogsExports, context);
|
|
4850
|
+
if (input.EnableCloudwatchLogsExports?.length === 0) {
|
|
4851
|
+
entries.EnableCloudwatchLogsExports = [];
|
|
4852
|
+
}
|
|
4703
4853
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4704
4854
|
const loc = `EnableCloudwatchLogsExports.${key}`;
|
|
4705
4855
|
entries[loc] = value;
|
|
@@ -3329,6 +3329,9 @@ const serializeAws_queryAddTagsToResourceMessage = (input, context) => {
|
|
|
3329
3329
|
}
|
|
3330
3330
|
if (input.Tags != null) {
|
|
3331
3331
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3332
|
+
if (input.Tags?.length === 0) {
|
|
3333
|
+
entries.Tags = [];
|
|
3334
|
+
}
|
|
3332
3335
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3333
3336
|
const loc = `Tags.${key}`;
|
|
3334
3337
|
entries[loc] = value;
|
|
@@ -3377,6 +3380,9 @@ const serializeAws_queryCloudwatchLogsExportConfiguration = (input, context) =>
|
|
|
3377
3380
|
const entries = {};
|
|
3378
3381
|
if (input.EnableLogTypes != null) {
|
|
3379
3382
|
const memberEntries = serializeAws_queryLogTypeList(input.EnableLogTypes, context);
|
|
3383
|
+
if (input.EnableLogTypes?.length === 0) {
|
|
3384
|
+
entries.EnableLogTypes = [];
|
|
3385
|
+
}
|
|
3380
3386
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3381
3387
|
const loc = `EnableLogTypes.${key}`;
|
|
3382
3388
|
entries[loc] = value;
|
|
@@ -3384,6 +3390,9 @@ const serializeAws_queryCloudwatchLogsExportConfiguration = (input, context) =>
|
|
|
3384
3390
|
}
|
|
3385
3391
|
if (input.DisableLogTypes != null) {
|
|
3386
3392
|
const memberEntries = serializeAws_queryLogTypeList(input.DisableLogTypes, context);
|
|
3393
|
+
if (input.DisableLogTypes?.length === 0) {
|
|
3394
|
+
entries.DisableLogTypes = [];
|
|
3395
|
+
}
|
|
3387
3396
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3388
3397
|
const loc = `DisableLogTypes.${key}`;
|
|
3389
3398
|
entries[loc] = value;
|
|
@@ -3404,6 +3413,9 @@ const serializeAws_queryCopyDBClusterParameterGroupMessage = (input, context) =>
|
|
|
3404
3413
|
}
|
|
3405
3414
|
if (input.Tags != null) {
|
|
3406
3415
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3416
|
+
if (input.Tags?.length === 0) {
|
|
3417
|
+
entries.Tags = [];
|
|
3418
|
+
}
|
|
3407
3419
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3408
3420
|
const loc = `Tags.${key}`;
|
|
3409
3421
|
entries[loc] = value;
|
|
@@ -3430,6 +3442,9 @@ const serializeAws_queryCopyDBClusterSnapshotMessage = (input, context) => {
|
|
|
3430
3442
|
}
|
|
3431
3443
|
if (input.Tags != null) {
|
|
3432
3444
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3445
|
+
if (input.Tags?.length === 0) {
|
|
3446
|
+
entries.Tags = [];
|
|
3447
|
+
}
|
|
3433
3448
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3434
3449
|
const loc = `Tags.${key}`;
|
|
3435
3450
|
entries[loc] = value;
|
|
@@ -3441,6 +3456,9 @@ const serializeAws_queryCreateDBClusterMessage = (input, context) => {
|
|
|
3441
3456
|
const entries = {};
|
|
3442
3457
|
if (input.AvailabilityZones != null) {
|
|
3443
3458
|
const memberEntries = serializeAws_queryAvailabilityZones(input.AvailabilityZones, context);
|
|
3459
|
+
if (input.AvailabilityZones?.length === 0) {
|
|
3460
|
+
entries.AvailabilityZones = [];
|
|
3461
|
+
}
|
|
3444
3462
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3445
3463
|
const loc = `AvailabilityZones.${key}`;
|
|
3446
3464
|
entries[loc] = value;
|
|
@@ -3457,6 +3475,9 @@ const serializeAws_queryCreateDBClusterMessage = (input, context) => {
|
|
|
3457
3475
|
}
|
|
3458
3476
|
if (input.VpcSecurityGroupIds != null) {
|
|
3459
3477
|
const memberEntries = serializeAws_queryVpcSecurityGroupIdList(input.VpcSecurityGroupIds, context);
|
|
3478
|
+
if (input.VpcSecurityGroupIds?.length === 0) {
|
|
3479
|
+
entries.VpcSecurityGroupIds = [];
|
|
3480
|
+
}
|
|
3460
3481
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3461
3482
|
const loc = `VpcSecurityGroupIds.${key}`;
|
|
3462
3483
|
entries[loc] = value;
|
|
@@ -3488,6 +3509,9 @@ const serializeAws_queryCreateDBClusterMessage = (input, context) => {
|
|
|
3488
3509
|
}
|
|
3489
3510
|
if (input.Tags != null) {
|
|
3490
3511
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3512
|
+
if (input.Tags?.length === 0) {
|
|
3513
|
+
entries.Tags = [];
|
|
3514
|
+
}
|
|
3491
3515
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3492
3516
|
const loc = `Tags.${key}`;
|
|
3493
3517
|
entries[loc] = value;
|
|
@@ -3504,6 +3528,9 @@ const serializeAws_queryCreateDBClusterMessage = (input, context) => {
|
|
|
3504
3528
|
}
|
|
3505
3529
|
if (input.EnableCloudwatchLogsExports != null) {
|
|
3506
3530
|
const memberEntries = serializeAws_queryLogTypeList(input.EnableCloudwatchLogsExports, context);
|
|
3531
|
+
if (input.EnableCloudwatchLogsExports?.length === 0) {
|
|
3532
|
+
entries.EnableCloudwatchLogsExports = [];
|
|
3533
|
+
}
|
|
3507
3534
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3508
3535
|
const loc = `EnableCloudwatchLogsExports.${key}`;
|
|
3509
3536
|
entries[loc] = value;
|
|
@@ -3530,6 +3557,9 @@ const serializeAws_queryCreateDBClusterParameterGroupMessage = (input, context)
|
|
|
3530
3557
|
}
|
|
3531
3558
|
if (input.Tags != null) {
|
|
3532
3559
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3560
|
+
if (input.Tags?.length === 0) {
|
|
3561
|
+
entries.Tags = [];
|
|
3562
|
+
}
|
|
3533
3563
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3534
3564
|
const loc = `Tags.${key}`;
|
|
3535
3565
|
entries[loc] = value;
|
|
@@ -3547,6 +3577,9 @@ const serializeAws_queryCreateDBClusterSnapshotMessage = (input, context) => {
|
|
|
3547
3577
|
}
|
|
3548
3578
|
if (input.Tags != null) {
|
|
3549
3579
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3580
|
+
if (input.Tags?.length === 0) {
|
|
3581
|
+
entries.Tags = [];
|
|
3582
|
+
}
|
|
3550
3583
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3551
3584
|
const loc = `Tags.${key}`;
|
|
3552
3585
|
entries[loc] = value;
|
|
@@ -3576,6 +3609,9 @@ const serializeAws_queryCreateDBInstanceMessage = (input, context) => {
|
|
|
3576
3609
|
}
|
|
3577
3610
|
if (input.Tags != null) {
|
|
3578
3611
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3612
|
+
if (input.Tags?.length === 0) {
|
|
3613
|
+
entries.Tags = [];
|
|
3614
|
+
}
|
|
3579
3615
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3580
3616
|
const loc = `Tags.${key}`;
|
|
3581
3617
|
entries[loc] = value;
|
|
@@ -3608,6 +3644,9 @@ const serializeAws_queryCreateDBSubnetGroupMessage = (input, context) => {
|
|
|
3608
3644
|
}
|
|
3609
3645
|
if (input.SubnetIds != null) {
|
|
3610
3646
|
const memberEntries = serializeAws_querySubnetIdentifierList(input.SubnetIds, context);
|
|
3647
|
+
if (input.SubnetIds?.length === 0) {
|
|
3648
|
+
entries.SubnetIds = [];
|
|
3649
|
+
}
|
|
3611
3650
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3612
3651
|
const loc = `SubnetIds.${key}`;
|
|
3613
3652
|
entries[loc] = value;
|
|
@@ -3615,6 +3654,9 @@ const serializeAws_queryCreateDBSubnetGroupMessage = (input, context) => {
|
|
|
3615
3654
|
}
|
|
3616
3655
|
if (input.Tags != null) {
|
|
3617
3656
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3657
|
+
if (input.Tags?.length === 0) {
|
|
3658
|
+
entries.Tags = [];
|
|
3659
|
+
}
|
|
3618
3660
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3619
3661
|
const loc = `Tags.${key}`;
|
|
3620
3662
|
entries[loc] = value;
|
|
@@ -3635,6 +3677,9 @@ const serializeAws_queryCreateEventSubscriptionMessage = (input, context) => {
|
|
|
3635
3677
|
}
|
|
3636
3678
|
if (input.EventCategories != null) {
|
|
3637
3679
|
const memberEntries = serializeAws_queryEventCategoriesList(input.EventCategories, context);
|
|
3680
|
+
if (input.EventCategories?.length === 0) {
|
|
3681
|
+
entries.EventCategories = [];
|
|
3682
|
+
}
|
|
3638
3683
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3639
3684
|
const loc = `EventCategories.${key}`;
|
|
3640
3685
|
entries[loc] = value;
|
|
@@ -3642,6 +3687,9 @@ const serializeAws_queryCreateEventSubscriptionMessage = (input, context) => {
|
|
|
3642
3687
|
}
|
|
3643
3688
|
if (input.SourceIds != null) {
|
|
3644
3689
|
const memberEntries = serializeAws_querySourceIdsList(input.SourceIds, context);
|
|
3690
|
+
if (input.SourceIds?.length === 0) {
|
|
3691
|
+
entries.SourceIds = [];
|
|
3692
|
+
}
|
|
3645
3693
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3646
3694
|
const loc = `SourceIds.${key}`;
|
|
3647
3695
|
entries[loc] = value;
|
|
@@ -3652,6 +3700,9 @@ const serializeAws_queryCreateEventSubscriptionMessage = (input, context) => {
|
|
|
3652
3700
|
}
|
|
3653
3701
|
if (input.Tags != null) {
|
|
3654
3702
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
3703
|
+
if (input.Tags?.length === 0) {
|
|
3704
|
+
entries.Tags = [];
|
|
3705
|
+
}
|
|
3655
3706
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3656
3707
|
const loc = `Tags.${key}`;
|
|
3657
3708
|
entries[loc] = value;
|
|
@@ -3746,6 +3797,9 @@ const serializeAws_queryDescribeCertificatesMessage = (input, context) => {
|
|
|
3746
3797
|
}
|
|
3747
3798
|
if (input.Filters != null) {
|
|
3748
3799
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
3800
|
+
if (input.Filters?.length === 0) {
|
|
3801
|
+
entries.Filters = [];
|
|
3802
|
+
}
|
|
3749
3803
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3750
3804
|
const loc = `Filters.${key}`;
|
|
3751
3805
|
entries[loc] = value;
|
|
@@ -3766,6 +3820,9 @@ const serializeAws_queryDescribeDBClusterParameterGroupsMessage = (input, contex
|
|
|
3766
3820
|
}
|
|
3767
3821
|
if (input.Filters != null) {
|
|
3768
3822
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
3823
|
+
if (input.Filters?.length === 0) {
|
|
3824
|
+
entries.Filters = [];
|
|
3825
|
+
}
|
|
3769
3826
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3770
3827
|
const loc = `Filters.${key}`;
|
|
3771
3828
|
entries[loc] = value;
|
|
@@ -3789,6 +3846,9 @@ const serializeAws_queryDescribeDBClusterParametersMessage = (input, context) =>
|
|
|
3789
3846
|
}
|
|
3790
3847
|
if (input.Filters != null) {
|
|
3791
3848
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
3849
|
+
if (input.Filters?.length === 0) {
|
|
3850
|
+
entries.Filters = [];
|
|
3851
|
+
}
|
|
3792
3852
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3793
3853
|
const loc = `Filters.${key}`;
|
|
3794
3854
|
entries[loc] = value;
|
|
@@ -3809,6 +3869,9 @@ const serializeAws_queryDescribeDBClustersMessage = (input, context) => {
|
|
|
3809
3869
|
}
|
|
3810
3870
|
if (input.Filters != null) {
|
|
3811
3871
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
3872
|
+
if (input.Filters?.length === 0) {
|
|
3873
|
+
entries.Filters = [];
|
|
3874
|
+
}
|
|
3812
3875
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3813
3876
|
const loc = `Filters.${key}`;
|
|
3814
3877
|
entries[loc] = value;
|
|
@@ -3842,6 +3905,9 @@ const serializeAws_queryDescribeDBClusterSnapshotsMessage = (input, context) =>
|
|
|
3842
3905
|
}
|
|
3843
3906
|
if (input.Filters != null) {
|
|
3844
3907
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
3908
|
+
if (input.Filters?.length === 0) {
|
|
3909
|
+
entries.Filters = [];
|
|
3910
|
+
}
|
|
3845
3911
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3846
3912
|
const loc = `Filters.${key}`;
|
|
3847
3913
|
entries[loc] = value;
|
|
@@ -3874,6 +3940,9 @@ const serializeAws_queryDescribeDBEngineVersionsMessage = (input, context) => {
|
|
|
3874
3940
|
}
|
|
3875
3941
|
if (input.Filters != null) {
|
|
3876
3942
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
3943
|
+
if (input.Filters?.length === 0) {
|
|
3944
|
+
entries.Filters = [];
|
|
3945
|
+
}
|
|
3877
3946
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3878
3947
|
const loc = `Filters.${key}`;
|
|
3879
3948
|
entries[loc] = value;
|
|
@@ -3903,6 +3972,9 @@ const serializeAws_queryDescribeDBInstancesMessage = (input, context) => {
|
|
|
3903
3972
|
}
|
|
3904
3973
|
if (input.Filters != null) {
|
|
3905
3974
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
3975
|
+
if (input.Filters?.length === 0) {
|
|
3976
|
+
entries.Filters = [];
|
|
3977
|
+
}
|
|
3906
3978
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3907
3979
|
const loc = `Filters.${key}`;
|
|
3908
3980
|
entries[loc] = value;
|
|
@@ -3923,6 +3995,9 @@ const serializeAws_queryDescribeDBSubnetGroupsMessage = (input, context) => {
|
|
|
3923
3995
|
}
|
|
3924
3996
|
if (input.Filters != null) {
|
|
3925
3997
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
3998
|
+
if (input.Filters?.length === 0) {
|
|
3999
|
+
entries.Filters = [];
|
|
4000
|
+
}
|
|
3926
4001
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3927
4002
|
const loc = `Filters.${key}`;
|
|
3928
4003
|
entries[loc] = value;
|
|
@@ -3943,6 +4018,9 @@ const serializeAws_queryDescribeEngineDefaultClusterParametersMessage = (input,
|
|
|
3943
4018
|
}
|
|
3944
4019
|
if (input.Filters != null) {
|
|
3945
4020
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4021
|
+
if (input.Filters?.length === 0) {
|
|
4022
|
+
entries.Filters = [];
|
|
4023
|
+
}
|
|
3946
4024
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3947
4025
|
const loc = `Filters.${key}`;
|
|
3948
4026
|
entries[loc] = value;
|
|
@@ -3963,6 +4041,9 @@ const serializeAws_queryDescribeEventCategoriesMessage = (input, context) => {
|
|
|
3963
4041
|
}
|
|
3964
4042
|
if (input.Filters != null) {
|
|
3965
4043
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4044
|
+
if (input.Filters?.length === 0) {
|
|
4045
|
+
entries.Filters = [];
|
|
4046
|
+
}
|
|
3966
4047
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3967
4048
|
const loc = `Filters.${key}`;
|
|
3968
4049
|
entries[loc] = value;
|
|
@@ -3989,6 +4070,9 @@ const serializeAws_queryDescribeEventsMessage = (input, context) => {
|
|
|
3989
4070
|
}
|
|
3990
4071
|
if (input.EventCategories != null) {
|
|
3991
4072
|
const memberEntries = serializeAws_queryEventCategoriesList(input.EventCategories, context);
|
|
4073
|
+
if (input.EventCategories?.length === 0) {
|
|
4074
|
+
entries.EventCategories = [];
|
|
4075
|
+
}
|
|
3992
4076
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
3993
4077
|
const loc = `EventCategories.${key}`;
|
|
3994
4078
|
entries[loc] = value;
|
|
@@ -3996,6 +4080,9 @@ const serializeAws_queryDescribeEventsMessage = (input, context) => {
|
|
|
3996
4080
|
}
|
|
3997
4081
|
if (input.Filters != null) {
|
|
3998
4082
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4083
|
+
if (input.Filters?.length === 0) {
|
|
4084
|
+
entries.Filters = [];
|
|
4085
|
+
}
|
|
3999
4086
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4000
4087
|
const loc = `Filters.${key}`;
|
|
4001
4088
|
entries[loc] = value;
|
|
@@ -4016,6 +4103,9 @@ const serializeAws_queryDescribeEventSubscriptionsMessage = (input, context) =>
|
|
|
4016
4103
|
}
|
|
4017
4104
|
if (input.Filters != null) {
|
|
4018
4105
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4106
|
+
if (input.Filters?.length === 0) {
|
|
4107
|
+
entries.Filters = [];
|
|
4108
|
+
}
|
|
4019
4109
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4020
4110
|
const loc = `Filters.${key}`;
|
|
4021
4111
|
entries[loc] = value;
|
|
@@ -4036,6 +4126,9 @@ const serializeAws_queryDescribeGlobalClustersMessage = (input, context) => {
|
|
|
4036
4126
|
}
|
|
4037
4127
|
if (input.Filters != null) {
|
|
4038
4128
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4129
|
+
if (input.Filters?.length === 0) {
|
|
4130
|
+
entries.Filters = [];
|
|
4131
|
+
}
|
|
4039
4132
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4040
4133
|
const loc = `Filters.${key}`;
|
|
4041
4134
|
entries[loc] = value;
|
|
@@ -4068,6 +4161,9 @@ const serializeAws_queryDescribeOrderableDBInstanceOptionsMessage = (input, cont
|
|
|
4068
4161
|
}
|
|
4069
4162
|
if (input.Filters != null) {
|
|
4070
4163
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4164
|
+
if (input.Filters?.length === 0) {
|
|
4165
|
+
entries.Filters = [];
|
|
4166
|
+
}
|
|
4071
4167
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4072
4168
|
const loc = `Filters.${key}`;
|
|
4073
4169
|
entries[loc] = value;
|
|
@@ -4088,6 +4184,9 @@ const serializeAws_queryDescribePendingMaintenanceActionsMessage = (input, conte
|
|
|
4088
4184
|
}
|
|
4089
4185
|
if (input.Filters != null) {
|
|
4090
4186
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4187
|
+
if (input.Filters?.length === 0) {
|
|
4188
|
+
entries.Filters = [];
|
|
4189
|
+
}
|
|
4091
4190
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4092
4191
|
const loc = `Filters.${key}`;
|
|
4093
4192
|
entries[loc] = value;
|
|
@@ -4130,6 +4229,9 @@ const serializeAws_queryFilter = (input, context) => {
|
|
|
4130
4229
|
}
|
|
4131
4230
|
if (input.Values != null) {
|
|
4132
4231
|
const memberEntries = serializeAws_queryFilterValueList(input.Values, context);
|
|
4232
|
+
if (input.Values?.length === 0) {
|
|
4233
|
+
entries.Values = [];
|
|
4234
|
+
}
|
|
4133
4235
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4134
4236
|
const loc = `Values.${key}`;
|
|
4135
4237
|
entries[loc] = value;
|
|
@@ -4183,6 +4285,9 @@ const serializeAws_queryListTagsForResourceMessage = (input, context) => {
|
|
|
4183
4285
|
}
|
|
4184
4286
|
if (input.Filters != null) {
|
|
4185
4287
|
const memberEntries = serializeAws_queryFilterList(input.Filters, context);
|
|
4288
|
+
if (input.Filters?.length === 0) {
|
|
4289
|
+
entries.Filters = [];
|
|
4290
|
+
}
|
|
4186
4291
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4187
4292
|
const loc = `Filters.${key}`;
|
|
4188
4293
|
entries[loc] = value;
|
|
@@ -4221,6 +4326,9 @@ const serializeAws_queryModifyDBClusterMessage = (input, context) => {
|
|
|
4221
4326
|
}
|
|
4222
4327
|
if (input.VpcSecurityGroupIds != null) {
|
|
4223
4328
|
const memberEntries = serializeAws_queryVpcSecurityGroupIdList(input.VpcSecurityGroupIds, context);
|
|
4329
|
+
if (input.VpcSecurityGroupIds?.length === 0) {
|
|
4330
|
+
entries.VpcSecurityGroupIds = [];
|
|
4331
|
+
}
|
|
4224
4332
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4225
4333
|
const loc = `VpcSecurityGroupIds.${key}`;
|
|
4226
4334
|
entries[loc] = value;
|
|
@@ -4260,6 +4368,9 @@ const serializeAws_queryModifyDBClusterParameterGroupMessage = (input, context)
|
|
|
4260
4368
|
}
|
|
4261
4369
|
if (input.Parameters != null) {
|
|
4262
4370
|
const memberEntries = serializeAws_queryParametersList(input.Parameters, context);
|
|
4371
|
+
if (input.Parameters?.length === 0) {
|
|
4372
|
+
entries.Parameters = [];
|
|
4373
|
+
}
|
|
4263
4374
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4264
4375
|
const loc = `Parameters.${key}`;
|
|
4265
4376
|
entries[loc] = value;
|
|
@@ -4277,6 +4388,9 @@ const serializeAws_queryModifyDBClusterSnapshotAttributeMessage = (input, contex
|
|
|
4277
4388
|
}
|
|
4278
4389
|
if (input.ValuesToAdd != null) {
|
|
4279
4390
|
const memberEntries = serializeAws_queryAttributeValueList(input.ValuesToAdd, context);
|
|
4391
|
+
if (input.ValuesToAdd?.length === 0) {
|
|
4392
|
+
entries.ValuesToAdd = [];
|
|
4393
|
+
}
|
|
4280
4394
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4281
4395
|
const loc = `ValuesToAdd.${key}`;
|
|
4282
4396
|
entries[loc] = value;
|
|
@@ -4284,6 +4398,9 @@ const serializeAws_queryModifyDBClusterSnapshotAttributeMessage = (input, contex
|
|
|
4284
4398
|
}
|
|
4285
4399
|
if (input.ValuesToRemove != null) {
|
|
4286
4400
|
const memberEntries = serializeAws_queryAttributeValueList(input.ValuesToRemove, context);
|
|
4401
|
+
if (input.ValuesToRemove?.length === 0) {
|
|
4402
|
+
entries.ValuesToRemove = [];
|
|
4403
|
+
}
|
|
4287
4404
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4288
4405
|
const loc = `ValuesToRemove.${key}`;
|
|
4289
4406
|
entries[loc] = value;
|
|
@@ -4338,6 +4455,9 @@ const serializeAws_queryModifyDBSubnetGroupMessage = (input, context) => {
|
|
|
4338
4455
|
}
|
|
4339
4456
|
if (input.SubnetIds != null) {
|
|
4340
4457
|
const memberEntries = serializeAws_querySubnetIdentifierList(input.SubnetIds, context);
|
|
4458
|
+
if (input.SubnetIds?.length === 0) {
|
|
4459
|
+
entries.SubnetIds = [];
|
|
4460
|
+
}
|
|
4341
4461
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4342
4462
|
const loc = `SubnetIds.${key}`;
|
|
4343
4463
|
entries[loc] = value;
|
|
@@ -4358,6 +4478,9 @@ const serializeAws_queryModifyEventSubscriptionMessage = (input, context) => {
|
|
|
4358
4478
|
}
|
|
4359
4479
|
if (input.EventCategories != null) {
|
|
4360
4480
|
const memberEntries = serializeAws_queryEventCategoriesList(input.EventCategories, context);
|
|
4481
|
+
if (input.EventCategories?.length === 0) {
|
|
4482
|
+
entries.EventCategories = [];
|
|
4483
|
+
}
|
|
4361
4484
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4362
4485
|
const loc = `EventCategories.${key}`;
|
|
4363
4486
|
entries[loc] = value;
|
|
@@ -4467,6 +4590,9 @@ const serializeAws_queryRemoveTagsFromResourceMessage = (input, context) => {
|
|
|
4467
4590
|
}
|
|
4468
4591
|
if (input.TagKeys != null) {
|
|
4469
4592
|
const memberEntries = serializeAws_queryKeyList(input.TagKeys, context);
|
|
4593
|
+
if (input.TagKeys?.length === 0) {
|
|
4594
|
+
entries.TagKeys = [];
|
|
4595
|
+
}
|
|
4470
4596
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4471
4597
|
const loc = `TagKeys.${key}`;
|
|
4472
4598
|
entries[loc] = value;
|
|
@@ -4484,6 +4610,9 @@ const serializeAws_queryResetDBClusterParameterGroupMessage = (input, context) =
|
|
|
4484
4610
|
}
|
|
4485
4611
|
if (input.Parameters != null) {
|
|
4486
4612
|
const memberEntries = serializeAws_queryParametersList(input.Parameters, context);
|
|
4613
|
+
if (input.Parameters?.length === 0) {
|
|
4614
|
+
entries.Parameters = [];
|
|
4615
|
+
}
|
|
4487
4616
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4488
4617
|
const loc = `Parameters.${key}`;
|
|
4489
4618
|
entries[loc] = value;
|
|
@@ -4495,6 +4624,9 @@ const serializeAws_queryRestoreDBClusterFromSnapshotMessage = (input, context) =
|
|
|
4495
4624
|
const entries = {};
|
|
4496
4625
|
if (input.AvailabilityZones != null) {
|
|
4497
4626
|
const memberEntries = serializeAws_queryAvailabilityZones(input.AvailabilityZones, context);
|
|
4627
|
+
if (input.AvailabilityZones?.length === 0) {
|
|
4628
|
+
entries.AvailabilityZones = [];
|
|
4629
|
+
}
|
|
4498
4630
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4499
4631
|
const loc = `AvailabilityZones.${key}`;
|
|
4500
4632
|
entries[loc] = value;
|
|
@@ -4520,6 +4652,9 @@ const serializeAws_queryRestoreDBClusterFromSnapshotMessage = (input, context) =
|
|
|
4520
4652
|
}
|
|
4521
4653
|
if (input.VpcSecurityGroupIds != null) {
|
|
4522
4654
|
const memberEntries = serializeAws_queryVpcSecurityGroupIdList(input.VpcSecurityGroupIds, context);
|
|
4655
|
+
if (input.VpcSecurityGroupIds?.length === 0) {
|
|
4656
|
+
entries.VpcSecurityGroupIds = [];
|
|
4657
|
+
}
|
|
4523
4658
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4524
4659
|
const loc = `VpcSecurityGroupIds.${key}`;
|
|
4525
4660
|
entries[loc] = value;
|
|
@@ -4527,6 +4662,9 @@ const serializeAws_queryRestoreDBClusterFromSnapshotMessage = (input, context) =
|
|
|
4527
4662
|
}
|
|
4528
4663
|
if (input.Tags != null) {
|
|
4529
4664
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
4665
|
+
if (input.Tags?.length === 0) {
|
|
4666
|
+
entries.Tags = [];
|
|
4667
|
+
}
|
|
4530
4668
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4531
4669
|
const loc = `Tags.${key}`;
|
|
4532
4670
|
entries[loc] = value;
|
|
@@ -4537,6 +4675,9 @@ const serializeAws_queryRestoreDBClusterFromSnapshotMessage = (input, context) =
|
|
|
4537
4675
|
}
|
|
4538
4676
|
if (input.EnableCloudwatchLogsExports != null) {
|
|
4539
4677
|
const memberEntries = serializeAws_queryLogTypeList(input.EnableCloudwatchLogsExports, context);
|
|
4678
|
+
if (input.EnableCloudwatchLogsExports?.length === 0) {
|
|
4679
|
+
entries.EnableCloudwatchLogsExports = [];
|
|
4680
|
+
}
|
|
4540
4681
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4541
4682
|
const loc = `EnableCloudwatchLogsExports.${key}`;
|
|
4542
4683
|
entries[loc] = value;
|
|
@@ -4572,6 +4713,9 @@ const serializeAws_queryRestoreDBClusterToPointInTimeMessage = (input, context)
|
|
|
4572
4713
|
}
|
|
4573
4714
|
if (input.VpcSecurityGroupIds != null) {
|
|
4574
4715
|
const memberEntries = serializeAws_queryVpcSecurityGroupIdList(input.VpcSecurityGroupIds, context);
|
|
4716
|
+
if (input.VpcSecurityGroupIds?.length === 0) {
|
|
4717
|
+
entries.VpcSecurityGroupIds = [];
|
|
4718
|
+
}
|
|
4575
4719
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4576
4720
|
const loc = `VpcSecurityGroupIds.${key}`;
|
|
4577
4721
|
entries[loc] = value;
|
|
@@ -4579,6 +4723,9 @@ const serializeAws_queryRestoreDBClusterToPointInTimeMessage = (input, context)
|
|
|
4579
4723
|
}
|
|
4580
4724
|
if (input.Tags != null) {
|
|
4581
4725
|
const memberEntries = serializeAws_queryTagList(input.Tags, context);
|
|
4726
|
+
if (input.Tags?.length === 0) {
|
|
4727
|
+
entries.Tags = [];
|
|
4728
|
+
}
|
|
4582
4729
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4583
4730
|
const loc = `Tags.${key}`;
|
|
4584
4731
|
entries[loc] = value;
|
|
@@ -4589,6 +4736,9 @@ const serializeAws_queryRestoreDBClusterToPointInTimeMessage = (input, context)
|
|
|
4589
4736
|
}
|
|
4590
4737
|
if (input.EnableCloudwatchLogsExports != null) {
|
|
4591
4738
|
const memberEntries = serializeAws_queryLogTypeList(input.EnableCloudwatchLogsExports, context);
|
|
4739
|
+
if (input.EnableCloudwatchLogsExports?.length === 0) {
|
|
4740
|
+
entries.EnableCloudwatchLogsExports = [];
|
|
4741
|
+
}
|
|
4592
4742
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4593
4743
|
const loc = `EnableCloudwatchLogsExports.${key}`;
|
|
4594
4744
|
entries[loc] = value;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-docdb",
|
|
3
3
|
"description": "AWS SDK for JavaScript Docdb Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.202.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.202.0",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.201.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.202.0",
|
|
25
25
|
"@aws-sdk/fetch-http-handler": "3.201.0",
|
|
26
26
|
"@aws-sdk/hash-node": "3.201.0",
|
|
27
27
|
"@aws-sdk/invalid-dependency": "3.201.0",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.201.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.201.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.201.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.202.0",
|
|
52
52
|
"@aws-sdk/util-user-agent-browser": "3.201.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-node": "3.201.0",
|
|
54
54
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|