@aws-sdk/client-ec2 3.421.0 → 3.422.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/protocols/Aws_ec2.js +77 -0
- package/dist-es/protocols/Aws_ec2.js +77 -0
- package/dist-types/commands/AttachVerifiedAccessTrustProviderCommand.d.ts +4 -0
- package/dist-types/commands/CreatePlacementGroupCommand.d.ts +2 -1
- package/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +8 -0
- package/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +8 -0
- package/dist-types/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +8 -0
- package/dist-types/commands/DeletePublicIpv4PoolCommand.d.ts +2 -1
- package/dist-types/commands/DeleteQueuedReservedInstancesCommand.d.ts +1 -2
- package/dist-types/commands/DeleteVerifiedAccessEndpointCommand.d.ts +4 -0
- package/dist-types/commands/DeleteVerifiedAccessGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteVerifiedAccessTrustProviderCommand.d.ts +4 -0
- package/dist-types/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +4 -0
- package/dist-types/commands/DescribeVerifiedAccessGroupsCommand.d.ts +5 -1
- package/dist-types/commands/DescribeVerifiedAccessTrustProvidersCommand.d.ts +4 -0
- package/dist-types/commands/DetachVerifiedAccessTrustProviderCommand.d.ts +4 -0
- package/dist-types/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +1 -1
- package/dist-types/commands/ModifyVerifiedAccessEndpointCommand.d.ts +4 -0
- package/dist-types/commands/ModifyVerifiedAccessEndpointPolicyCommand.d.ts +9 -1
- package/dist-types/commands/ModifyVerifiedAccessGroupCommand.d.ts +4 -0
- package/dist-types/commands/ModifyVerifiedAccessGroupPolicyCommand.d.ts +9 -1
- package/dist-types/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +32 -15
- package/dist-types/models/models_1.d.ts +13 -11
- package/dist-types/models/models_2.d.ts +72 -32
- package/dist-types/models/models_3.d.ts +27 -63
- package/dist-types/models/models_4.d.ts +65 -55
- package/dist-types/models/models_5.d.ts +54 -33
- package/dist-types/models/models_6.d.ts +71 -47
- package/dist-types/models/models_7.d.ts +44 -1
- package/dist-types/ts3.4/commands/CreatePlacementGroupCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DeletePublicIpv4PoolCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DeleteQueuedReservedInstancesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeVerifiedAccessGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +5 -3
- package/dist-types/ts3.4/models/models_1.d.ts +3 -4
- package/dist-types/ts3.4/models/models_2.d.ts +14 -7
- package/dist-types/ts3.4/models/models_3.d.ts +7 -12
- package/dist-types/ts3.4/models/models_4.d.ts +12 -15
- package/dist-types/ts3.4/models/models_5.d.ts +13 -8
- package/dist-types/ts3.4/models/models_6.d.ts +17 -10
- package/dist-types/ts3.4/models/models_7.d.ts +8 -2
- package/package.json +1 -1
|
@@ -26909,6 +26909,13 @@ const se_CreateVerifiedAccessEndpointRequest = (input, context) => {
|
|
|
26909
26909
|
if (input.DryRun != null) {
|
|
26910
26910
|
entries["DryRun"] = input.DryRun;
|
|
26911
26911
|
}
|
|
26912
|
+
if (input.SseSpecification != null) {
|
|
26913
|
+
const memberEntries = se_VerifiedAccessSseSpecificationRequest(input.SseSpecification, context);
|
|
26914
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
26915
|
+
const loc = `SseSpecification.${key}`;
|
|
26916
|
+
entries[loc] = value;
|
|
26917
|
+
});
|
|
26918
|
+
}
|
|
26912
26919
|
return entries;
|
|
26913
26920
|
};
|
|
26914
26921
|
const se_CreateVerifiedAccessEndpointSubnetIdList = (input, context) => {
|
|
@@ -26953,6 +26960,13 @@ const se_CreateVerifiedAccessGroupRequest = (input, context) => {
|
|
|
26953
26960
|
if (input.DryRun != null) {
|
|
26954
26961
|
entries["DryRun"] = input.DryRun;
|
|
26955
26962
|
}
|
|
26963
|
+
if (input.SseSpecification != null) {
|
|
26964
|
+
const memberEntries = se_VerifiedAccessSseSpecificationRequest(input.SseSpecification, context);
|
|
26965
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
26966
|
+
const loc = `SseSpecification.${key}`;
|
|
26967
|
+
entries[loc] = value;
|
|
26968
|
+
});
|
|
26969
|
+
}
|
|
26956
26970
|
return entries;
|
|
26957
26971
|
};
|
|
26958
26972
|
const se_CreateVerifiedAccessInstanceRequest = (input, context) => {
|
|
@@ -27066,6 +27080,13 @@ const se_CreateVerifiedAccessTrustProviderRequest = (input, context) => {
|
|
|
27066
27080
|
if (input.DryRun != null) {
|
|
27067
27081
|
entries["DryRun"] = input.DryRun;
|
|
27068
27082
|
}
|
|
27083
|
+
if (input.SseSpecification != null) {
|
|
27084
|
+
const memberEntries = se_VerifiedAccessSseSpecificationRequest(input.SseSpecification, context);
|
|
27085
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
27086
|
+
const loc = `SseSpecification.${key}`;
|
|
27087
|
+
entries[loc] = value;
|
|
27088
|
+
});
|
|
27089
|
+
}
|
|
27069
27090
|
return entries;
|
|
27070
27091
|
};
|
|
27071
27092
|
const se_CreateVolumePermission = (input, context) => {
|
|
@@ -39109,6 +39130,13 @@ const se_ModifyVerifiedAccessEndpointPolicyRequest = (input, context) => {
|
|
|
39109
39130
|
if (input.DryRun != null) {
|
|
39110
39131
|
entries["DryRun"] = input.DryRun;
|
|
39111
39132
|
}
|
|
39133
|
+
if (input.SseSpecification != null) {
|
|
39134
|
+
const memberEntries = se_VerifiedAccessSseSpecificationRequest(input.SseSpecification, context);
|
|
39135
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
39136
|
+
const loc = `SseSpecification.${key}`;
|
|
39137
|
+
entries[loc] = value;
|
|
39138
|
+
});
|
|
39139
|
+
}
|
|
39112
39140
|
return entries;
|
|
39113
39141
|
};
|
|
39114
39142
|
const se_ModifyVerifiedAccessEndpointRequest = (input, context) => {
|
|
@@ -39179,6 +39207,13 @@ const se_ModifyVerifiedAccessGroupPolicyRequest = (input, context) => {
|
|
|
39179
39207
|
if (input.DryRun != null) {
|
|
39180
39208
|
entries["DryRun"] = input.DryRun;
|
|
39181
39209
|
}
|
|
39210
|
+
if (input.SseSpecification != null) {
|
|
39211
|
+
const memberEntries = se_VerifiedAccessSseSpecificationRequest(input.SseSpecification, context);
|
|
39212
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
39213
|
+
const loc = `SseSpecification.${key}`;
|
|
39214
|
+
entries[loc] = value;
|
|
39215
|
+
});
|
|
39216
|
+
}
|
|
39182
39217
|
return entries;
|
|
39183
39218
|
};
|
|
39184
39219
|
const se_ModifyVerifiedAccessGroupRequest = (input, context) => {
|
|
@@ -39294,6 +39329,13 @@ const se_ModifyVerifiedAccessTrustProviderRequest = (input, context) => {
|
|
|
39294
39329
|
if (input.ClientToken != null) {
|
|
39295
39330
|
entries["ClientToken"] = input.ClientToken;
|
|
39296
39331
|
}
|
|
39332
|
+
if (input.SseSpecification != null) {
|
|
39333
|
+
const memberEntries = se_VerifiedAccessSseSpecificationRequest(input.SseSpecification, context);
|
|
39334
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
39335
|
+
const loc = `SseSpecification.${key}`;
|
|
39336
|
+
entries[loc] = value;
|
|
39337
|
+
});
|
|
39338
|
+
}
|
|
39297
39339
|
return entries;
|
|
39298
39340
|
};
|
|
39299
39341
|
const se_ModifyVolumeAttributeRequest = (input, context) => {
|
|
@@ -44674,6 +44716,16 @@ const se_VerifiedAccessLogS3DestinationOptions = (input, context) => {
|
|
|
44674
44716
|
}
|
|
44675
44717
|
return entries;
|
|
44676
44718
|
};
|
|
44719
|
+
const se_VerifiedAccessSseSpecificationRequest = (input, context) => {
|
|
44720
|
+
const entries = {};
|
|
44721
|
+
if (input.CustomerManagedKeyEnabled != null) {
|
|
44722
|
+
entries["CustomerManagedKeyEnabled"] = input.CustomerManagedKeyEnabled;
|
|
44723
|
+
}
|
|
44724
|
+
if (input.KmsKeyArn != null) {
|
|
44725
|
+
entries["KmsKeyArn"] = input.KmsKeyArn;
|
|
44726
|
+
}
|
|
44727
|
+
return entries;
|
|
44728
|
+
};
|
|
44677
44729
|
const se_VerifiedAccessTrustProviderIdList = (input, context) => {
|
|
44678
44730
|
const entries = {};
|
|
44679
44731
|
let counter = 1;
|
|
@@ -57729,6 +57781,9 @@ const de_ModifyVerifiedAccessEndpointPolicyResult = (output, context) => {
|
|
|
57729
57781
|
if (output["policyDocument"] !== undefined) {
|
|
57730
57782
|
contents.PolicyDocument = (0, smithy_client_1.expectString)(output["policyDocument"]);
|
|
57731
57783
|
}
|
|
57784
|
+
if (output["sseSpecification"] !== undefined) {
|
|
57785
|
+
contents.SseSpecification = de_VerifiedAccessSseSpecificationResponse(output["sseSpecification"], context);
|
|
57786
|
+
}
|
|
57732
57787
|
return contents;
|
|
57733
57788
|
};
|
|
57734
57789
|
const de_ModifyVerifiedAccessEndpointResult = (output, context) => {
|
|
@@ -57746,6 +57801,9 @@ const de_ModifyVerifiedAccessGroupPolicyResult = (output, context) => {
|
|
|
57746
57801
|
if (output["policyDocument"] !== undefined) {
|
|
57747
57802
|
contents.PolicyDocument = (0, smithy_client_1.expectString)(output["policyDocument"]);
|
|
57748
57803
|
}
|
|
57804
|
+
if (output["sseSpecification"] !== undefined) {
|
|
57805
|
+
contents.SseSpecification = de_VerifiedAccessSseSpecificationResponse(output["sseSpecification"], context);
|
|
57806
|
+
}
|
|
57749
57807
|
return contents;
|
|
57750
57808
|
};
|
|
57751
57809
|
const de_ModifyVerifiedAccessGroupResult = (output, context) => {
|
|
@@ -64203,6 +64261,9 @@ const de_VerifiedAccessEndpoint = (output, context) => {
|
|
|
64203
64261
|
else if (output["tagSet"] !== undefined && output["tagSet"]["item"] !== undefined) {
|
|
64204
64262
|
contents.Tags = de_TagList((0, smithy_client_1.getArrayIfSingleItem)(output["tagSet"]["item"]), context);
|
|
64205
64263
|
}
|
|
64264
|
+
if (output["sseSpecification"] !== undefined) {
|
|
64265
|
+
contents.SseSpecification = de_VerifiedAccessSseSpecificationResponse(output["sseSpecification"], context);
|
|
64266
|
+
}
|
|
64206
64267
|
return contents;
|
|
64207
64268
|
};
|
|
64208
64269
|
const de_VerifiedAccessEndpointEniOptions = (output, context) => {
|
|
@@ -64293,6 +64354,9 @@ const de_VerifiedAccessGroup = (output, context) => {
|
|
|
64293
64354
|
else if (output["tagSet"] !== undefined && output["tagSet"]["item"] !== undefined) {
|
|
64294
64355
|
contents.Tags = de_TagList((0, smithy_client_1.getArrayIfSingleItem)(output["tagSet"]["item"]), context);
|
|
64295
64356
|
}
|
|
64357
|
+
if (output["sseSpecification"] !== undefined) {
|
|
64358
|
+
contents.SseSpecification = de_VerifiedAccessSseSpecificationResponse(output["sseSpecification"], context);
|
|
64359
|
+
}
|
|
64296
64360
|
return contents;
|
|
64297
64361
|
};
|
|
64298
64362
|
const de_VerifiedAccessGroupList = (output, context) => {
|
|
@@ -64432,6 +64496,16 @@ const de_VerifiedAccessLogS3Destination = (output, context) => {
|
|
|
64432
64496
|
}
|
|
64433
64497
|
return contents;
|
|
64434
64498
|
};
|
|
64499
|
+
const de_VerifiedAccessSseSpecificationResponse = (output, context) => {
|
|
64500
|
+
const contents = {};
|
|
64501
|
+
if (output["customerManagedKeyEnabled"] !== undefined) {
|
|
64502
|
+
contents.CustomerManagedKeyEnabled = (0, smithy_client_1.parseBoolean)(output["customerManagedKeyEnabled"]);
|
|
64503
|
+
}
|
|
64504
|
+
if (output["kmsKeyArn"] !== undefined) {
|
|
64505
|
+
contents.KmsKeyArn = (0, smithy_client_1.expectString)(output["kmsKeyArn"]);
|
|
64506
|
+
}
|
|
64507
|
+
return contents;
|
|
64508
|
+
};
|
|
64435
64509
|
const de_VerifiedAccessTrustProvider = (output, context) => {
|
|
64436
64510
|
const contents = {};
|
|
64437
64511
|
if (output["verifiedAccessTrustProviderId"] !== undefined) {
|
|
@@ -64470,6 +64544,9 @@ const de_VerifiedAccessTrustProvider = (output, context) => {
|
|
|
64470
64544
|
else if (output["tagSet"] !== undefined && output["tagSet"]["item"] !== undefined) {
|
|
64471
64545
|
contents.Tags = de_TagList((0, smithy_client_1.getArrayIfSingleItem)(output["tagSet"]["item"]), context);
|
|
64472
64546
|
}
|
|
64547
|
+
if (output["sseSpecification"] !== undefined) {
|
|
64548
|
+
contents.SseSpecification = de_VerifiedAccessSseSpecificationResponse(output["sseSpecification"], context);
|
|
64549
|
+
}
|
|
64473
64550
|
return contents;
|
|
64474
64551
|
};
|
|
64475
64552
|
const de_VerifiedAccessTrustProviderCondensed = (output, context) => {
|
|
@@ -25689,6 +25689,13 @@ const se_CreateVerifiedAccessEndpointRequest = (input, context) => {
|
|
|
25689
25689
|
if (input.DryRun != null) {
|
|
25690
25690
|
entries["DryRun"] = input.DryRun;
|
|
25691
25691
|
}
|
|
25692
|
+
if (input.SseSpecification != null) {
|
|
25693
|
+
const memberEntries = se_VerifiedAccessSseSpecificationRequest(input.SseSpecification, context);
|
|
25694
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
25695
|
+
const loc = `SseSpecification.${key}`;
|
|
25696
|
+
entries[loc] = value;
|
|
25697
|
+
});
|
|
25698
|
+
}
|
|
25692
25699
|
return entries;
|
|
25693
25700
|
};
|
|
25694
25701
|
const se_CreateVerifiedAccessEndpointSubnetIdList = (input, context) => {
|
|
@@ -25733,6 +25740,13 @@ const se_CreateVerifiedAccessGroupRequest = (input, context) => {
|
|
|
25733
25740
|
if (input.DryRun != null) {
|
|
25734
25741
|
entries["DryRun"] = input.DryRun;
|
|
25735
25742
|
}
|
|
25743
|
+
if (input.SseSpecification != null) {
|
|
25744
|
+
const memberEntries = se_VerifiedAccessSseSpecificationRequest(input.SseSpecification, context);
|
|
25745
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
25746
|
+
const loc = `SseSpecification.${key}`;
|
|
25747
|
+
entries[loc] = value;
|
|
25748
|
+
});
|
|
25749
|
+
}
|
|
25736
25750
|
return entries;
|
|
25737
25751
|
};
|
|
25738
25752
|
const se_CreateVerifiedAccessInstanceRequest = (input, context) => {
|
|
@@ -25846,6 +25860,13 @@ const se_CreateVerifiedAccessTrustProviderRequest = (input, context) => {
|
|
|
25846
25860
|
if (input.DryRun != null) {
|
|
25847
25861
|
entries["DryRun"] = input.DryRun;
|
|
25848
25862
|
}
|
|
25863
|
+
if (input.SseSpecification != null) {
|
|
25864
|
+
const memberEntries = se_VerifiedAccessSseSpecificationRequest(input.SseSpecification, context);
|
|
25865
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
25866
|
+
const loc = `SseSpecification.${key}`;
|
|
25867
|
+
entries[loc] = value;
|
|
25868
|
+
});
|
|
25869
|
+
}
|
|
25849
25870
|
return entries;
|
|
25850
25871
|
};
|
|
25851
25872
|
const se_CreateVolumePermission = (input, context) => {
|
|
@@ -37889,6 +37910,13 @@ const se_ModifyVerifiedAccessEndpointPolicyRequest = (input, context) => {
|
|
|
37889
37910
|
if (input.DryRun != null) {
|
|
37890
37911
|
entries["DryRun"] = input.DryRun;
|
|
37891
37912
|
}
|
|
37913
|
+
if (input.SseSpecification != null) {
|
|
37914
|
+
const memberEntries = se_VerifiedAccessSseSpecificationRequest(input.SseSpecification, context);
|
|
37915
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
37916
|
+
const loc = `SseSpecification.${key}`;
|
|
37917
|
+
entries[loc] = value;
|
|
37918
|
+
});
|
|
37919
|
+
}
|
|
37892
37920
|
return entries;
|
|
37893
37921
|
};
|
|
37894
37922
|
const se_ModifyVerifiedAccessEndpointRequest = (input, context) => {
|
|
@@ -37959,6 +37987,13 @@ const se_ModifyVerifiedAccessGroupPolicyRequest = (input, context) => {
|
|
|
37959
37987
|
if (input.DryRun != null) {
|
|
37960
37988
|
entries["DryRun"] = input.DryRun;
|
|
37961
37989
|
}
|
|
37990
|
+
if (input.SseSpecification != null) {
|
|
37991
|
+
const memberEntries = se_VerifiedAccessSseSpecificationRequest(input.SseSpecification, context);
|
|
37992
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
37993
|
+
const loc = `SseSpecification.${key}`;
|
|
37994
|
+
entries[loc] = value;
|
|
37995
|
+
});
|
|
37996
|
+
}
|
|
37962
37997
|
return entries;
|
|
37963
37998
|
};
|
|
37964
37999
|
const se_ModifyVerifiedAccessGroupRequest = (input, context) => {
|
|
@@ -38074,6 +38109,13 @@ const se_ModifyVerifiedAccessTrustProviderRequest = (input, context) => {
|
|
|
38074
38109
|
if (input.ClientToken != null) {
|
|
38075
38110
|
entries["ClientToken"] = input.ClientToken;
|
|
38076
38111
|
}
|
|
38112
|
+
if (input.SseSpecification != null) {
|
|
38113
|
+
const memberEntries = se_VerifiedAccessSseSpecificationRequest(input.SseSpecification, context);
|
|
38114
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
38115
|
+
const loc = `SseSpecification.${key}`;
|
|
38116
|
+
entries[loc] = value;
|
|
38117
|
+
});
|
|
38118
|
+
}
|
|
38077
38119
|
return entries;
|
|
38078
38120
|
};
|
|
38079
38121
|
const se_ModifyVolumeAttributeRequest = (input, context) => {
|
|
@@ -43454,6 +43496,16 @@ const se_VerifiedAccessLogS3DestinationOptions = (input, context) => {
|
|
|
43454
43496
|
}
|
|
43455
43497
|
return entries;
|
|
43456
43498
|
};
|
|
43499
|
+
const se_VerifiedAccessSseSpecificationRequest = (input, context) => {
|
|
43500
|
+
const entries = {};
|
|
43501
|
+
if (input.CustomerManagedKeyEnabled != null) {
|
|
43502
|
+
entries["CustomerManagedKeyEnabled"] = input.CustomerManagedKeyEnabled;
|
|
43503
|
+
}
|
|
43504
|
+
if (input.KmsKeyArn != null) {
|
|
43505
|
+
entries["KmsKeyArn"] = input.KmsKeyArn;
|
|
43506
|
+
}
|
|
43507
|
+
return entries;
|
|
43508
|
+
};
|
|
43457
43509
|
const se_VerifiedAccessTrustProviderIdList = (input, context) => {
|
|
43458
43510
|
const entries = {};
|
|
43459
43511
|
let counter = 1;
|
|
@@ -56509,6 +56561,9 @@ const de_ModifyVerifiedAccessEndpointPolicyResult = (output, context) => {
|
|
|
56509
56561
|
if (output["policyDocument"] !== undefined) {
|
|
56510
56562
|
contents.PolicyDocument = __expectString(output["policyDocument"]);
|
|
56511
56563
|
}
|
|
56564
|
+
if (output["sseSpecification"] !== undefined) {
|
|
56565
|
+
contents.SseSpecification = de_VerifiedAccessSseSpecificationResponse(output["sseSpecification"], context);
|
|
56566
|
+
}
|
|
56512
56567
|
return contents;
|
|
56513
56568
|
};
|
|
56514
56569
|
const de_ModifyVerifiedAccessEndpointResult = (output, context) => {
|
|
@@ -56526,6 +56581,9 @@ const de_ModifyVerifiedAccessGroupPolicyResult = (output, context) => {
|
|
|
56526
56581
|
if (output["policyDocument"] !== undefined) {
|
|
56527
56582
|
contents.PolicyDocument = __expectString(output["policyDocument"]);
|
|
56528
56583
|
}
|
|
56584
|
+
if (output["sseSpecification"] !== undefined) {
|
|
56585
|
+
contents.SseSpecification = de_VerifiedAccessSseSpecificationResponse(output["sseSpecification"], context);
|
|
56586
|
+
}
|
|
56529
56587
|
return contents;
|
|
56530
56588
|
};
|
|
56531
56589
|
const de_ModifyVerifiedAccessGroupResult = (output, context) => {
|
|
@@ -62983,6 +63041,9 @@ const de_VerifiedAccessEndpoint = (output, context) => {
|
|
|
62983
63041
|
else if (output["tagSet"] !== undefined && output["tagSet"]["item"] !== undefined) {
|
|
62984
63042
|
contents.Tags = de_TagList(__getArrayIfSingleItem(output["tagSet"]["item"]), context);
|
|
62985
63043
|
}
|
|
63044
|
+
if (output["sseSpecification"] !== undefined) {
|
|
63045
|
+
contents.SseSpecification = de_VerifiedAccessSseSpecificationResponse(output["sseSpecification"], context);
|
|
63046
|
+
}
|
|
62986
63047
|
return contents;
|
|
62987
63048
|
};
|
|
62988
63049
|
const de_VerifiedAccessEndpointEniOptions = (output, context) => {
|
|
@@ -63073,6 +63134,9 @@ const de_VerifiedAccessGroup = (output, context) => {
|
|
|
63073
63134
|
else if (output["tagSet"] !== undefined && output["tagSet"]["item"] !== undefined) {
|
|
63074
63135
|
contents.Tags = de_TagList(__getArrayIfSingleItem(output["tagSet"]["item"]), context);
|
|
63075
63136
|
}
|
|
63137
|
+
if (output["sseSpecification"] !== undefined) {
|
|
63138
|
+
contents.SseSpecification = de_VerifiedAccessSseSpecificationResponse(output["sseSpecification"], context);
|
|
63139
|
+
}
|
|
63076
63140
|
return contents;
|
|
63077
63141
|
};
|
|
63078
63142
|
const de_VerifiedAccessGroupList = (output, context) => {
|
|
@@ -63212,6 +63276,16 @@ const de_VerifiedAccessLogS3Destination = (output, context) => {
|
|
|
63212
63276
|
}
|
|
63213
63277
|
return contents;
|
|
63214
63278
|
};
|
|
63279
|
+
const de_VerifiedAccessSseSpecificationResponse = (output, context) => {
|
|
63280
|
+
const contents = {};
|
|
63281
|
+
if (output["customerManagedKeyEnabled"] !== undefined) {
|
|
63282
|
+
contents.CustomerManagedKeyEnabled = __parseBoolean(output["customerManagedKeyEnabled"]);
|
|
63283
|
+
}
|
|
63284
|
+
if (output["kmsKeyArn"] !== undefined) {
|
|
63285
|
+
contents.KmsKeyArn = __expectString(output["kmsKeyArn"]);
|
|
63286
|
+
}
|
|
63287
|
+
return contents;
|
|
63288
|
+
};
|
|
63215
63289
|
const de_VerifiedAccessTrustProvider = (output, context) => {
|
|
63216
63290
|
const contents = {};
|
|
63217
63291
|
if (output["verifiedAccessTrustProviderId"] !== undefined) {
|
|
@@ -63250,6 +63324,9 @@ const de_VerifiedAccessTrustProvider = (output, context) => {
|
|
|
63250
63324
|
else if (output["tagSet"] !== undefined && output["tagSet"]["item"] !== undefined) {
|
|
63251
63325
|
contents.Tags = de_TagList(__getArrayIfSingleItem(output["tagSet"]["item"]), context);
|
|
63252
63326
|
}
|
|
63327
|
+
if (output["sseSpecification"] !== undefined) {
|
|
63328
|
+
contents.SseSpecification = de_VerifiedAccessSseSpecificationResponse(output["sseSpecification"], context);
|
|
63329
|
+
}
|
|
63253
63330
|
return contents;
|
|
63254
63331
|
};
|
|
63255
63332
|
const de_VerifiedAccessTrustProviderCondensed = (output, context) => {
|
|
@@ -66,6 +66,10 @@ export interface AttachVerifiedAccessTrustProviderCommandOutput extends AttachVe
|
|
|
66
66
|
* // Value: "STRING_VALUE",
|
|
67
67
|
* // },
|
|
68
68
|
* // ],
|
|
69
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
70
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
71
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
69
73
|
* // },
|
|
70
74
|
* // VerifiedAccessInstance: { // VerifiedAccessInstance
|
|
71
75
|
* // VerifiedAccessInstanceId: "STRING_VALUE",
|
|
@@ -2,7 +2,8 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
5
|
-
import { CreatePlacementGroupRequest
|
|
5
|
+
import { CreatePlacementGroupRequest } from "../models/models_1";
|
|
6
|
+
import { CreatePlacementGroupResult } from "../models/models_2";
|
|
6
7
|
/**
|
|
7
8
|
* @public
|
|
8
9
|
*/
|
|
@@ -68,6 +68,10 @@ export interface CreateVerifiedAccessEndpointCommandOutput extends CreateVerifie
|
|
|
68
68
|
* ],
|
|
69
69
|
* ClientToken: "STRING_VALUE",
|
|
70
70
|
* DryRun: true || false,
|
|
71
|
+
* SseSpecification: { // VerifiedAccessSseSpecificationRequest
|
|
72
|
+
* CustomerManagedKeyEnabled: true || false,
|
|
73
|
+
* KmsKeyArn: "STRING_VALUE",
|
|
74
|
+
* },
|
|
71
75
|
* };
|
|
72
76
|
* const command = new CreateVerifiedAccessEndpointCommand(input);
|
|
73
77
|
* const response = await client.send(command);
|
|
@@ -112,6 +116,10 @@ export interface CreateVerifiedAccessEndpointCommandOutput extends CreateVerifie
|
|
|
112
116
|
* // Value: "STRING_VALUE",
|
|
113
117
|
* // },
|
|
114
118
|
* // ],
|
|
119
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
120
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
121
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
122
|
+
* // },
|
|
115
123
|
* // },
|
|
116
124
|
* // };
|
|
117
125
|
*
|
|
@@ -50,6 +50,10 @@ export interface CreateVerifiedAccessGroupCommandOutput extends CreateVerifiedAc
|
|
|
50
50
|
* ],
|
|
51
51
|
* ClientToken: "STRING_VALUE",
|
|
52
52
|
* DryRun: true || false,
|
|
53
|
+
* SseSpecification: { // VerifiedAccessSseSpecificationRequest
|
|
54
|
+
* CustomerManagedKeyEnabled: true || false,
|
|
55
|
+
* KmsKeyArn: "STRING_VALUE",
|
|
56
|
+
* },
|
|
53
57
|
* };
|
|
54
58
|
* const command = new CreateVerifiedAccessGroupCommand(input);
|
|
55
59
|
* const response = await client.send(command);
|
|
@@ -69,6 +73,10 @@ export interface CreateVerifiedAccessGroupCommandOutput extends CreateVerifiedAc
|
|
|
69
73
|
* // Value: "STRING_VALUE",
|
|
70
74
|
* // },
|
|
71
75
|
* // ],
|
|
76
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
77
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
78
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
79
|
+
* // },
|
|
72
80
|
* // },
|
|
73
81
|
* // };
|
|
74
82
|
*
|
|
@@ -64,6 +64,10 @@ export interface CreateVerifiedAccessTrustProviderCommandOutput extends CreateVe
|
|
|
64
64
|
* ],
|
|
65
65
|
* ClientToken: "STRING_VALUE",
|
|
66
66
|
* DryRun: true || false,
|
|
67
|
+
* SseSpecification: { // VerifiedAccessSseSpecificationRequest
|
|
68
|
+
* CustomerManagedKeyEnabled: true || false,
|
|
69
|
+
* KmsKeyArn: "STRING_VALUE",
|
|
70
|
+
* },
|
|
67
71
|
* };
|
|
68
72
|
* const command = new CreateVerifiedAccessTrustProviderCommand(input);
|
|
69
73
|
* const response = await client.send(command);
|
|
@@ -95,6 +99,10 @@ export interface CreateVerifiedAccessTrustProviderCommandOutput extends CreateVe
|
|
|
95
99
|
* // Value: "STRING_VALUE",
|
|
96
100
|
* // },
|
|
97
101
|
* // ],
|
|
102
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
103
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
104
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
105
|
+
* // },
|
|
98
106
|
* // },
|
|
99
107
|
* // };
|
|
100
108
|
*
|
|
@@ -2,7 +2,8 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
5
|
-
import { DeletePublicIpv4PoolRequest
|
|
5
|
+
import { DeletePublicIpv4PoolRequest } from "../models/models_2";
|
|
6
|
+
import { DeletePublicIpv4PoolResult } from "../models/models_3";
|
|
6
7
|
/**
|
|
7
8
|
* @public
|
|
8
9
|
*/
|
|
@@ -2,8 +2,7 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
5
|
-
import { DeleteQueuedReservedInstancesRequest } from "../models/
|
|
6
|
-
import { DeleteQueuedReservedInstancesResult } from "../models/models_3";
|
|
5
|
+
import { DeleteQueuedReservedInstancesRequest, DeleteQueuedReservedInstancesResult } from "../models/models_3";
|
|
7
6
|
/**
|
|
8
7
|
* @public
|
|
9
8
|
*/
|
|
@@ -78,6 +78,10 @@ export interface DeleteVerifiedAccessEndpointCommandOutput extends DeleteVerifie
|
|
|
78
78
|
* // Value: "STRING_VALUE",
|
|
79
79
|
* // },
|
|
80
80
|
* // ],
|
|
81
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
82
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
83
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
84
|
+
* // },
|
|
81
85
|
* // },
|
|
82
86
|
* // };
|
|
83
87
|
*
|
|
@@ -53,6 +53,10 @@ export interface DeleteVerifiedAccessGroupCommandOutput extends DeleteVerifiedAc
|
|
|
53
53
|
* // Value: "STRING_VALUE",
|
|
54
54
|
* // },
|
|
55
55
|
* // ],
|
|
56
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
57
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
58
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
59
|
+
* // },
|
|
56
60
|
* // },
|
|
57
61
|
* // };
|
|
58
62
|
*
|
|
@@ -65,6 +65,10 @@ export interface DeleteVerifiedAccessTrustProviderCommandOutput extends DeleteVe
|
|
|
65
65
|
* // Value: "STRING_VALUE",
|
|
66
66
|
* // },
|
|
67
67
|
* // ],
|
|
68
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
69
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
70
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
71
|
+
* // },
|
|
68
72
|
* // },
|
|
69
73
|
* // };
|
|
70
74
|
*
|
|
@@ -92,6 +92,10 @@ export interface DescribeVerifiedAccessEndpointsCommandOutput extends DescribeVe
|
|
|
92
92
|
* // Value: "STRING_VALUE",
|
|
93
93
|
* // },
|
|
94
94
|
* // ],
|
|
95
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
96
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
97
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
98
|
+
* // },
|
|
95
99
|
* // },
|
|
96
100
|
* // ],
|
|
97
101
|
* // NextToken: "STRING_VALUE",
|
|
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
5
|
-
import { DescribeVerifiedAccessGroupsRequest, DescribeVerifiedAccessGroupsResult } from "../models/
|
|
5
|
+
import { DescribeVerifiedAccessGroupsRequest, DescribeVerifiedAccessGroupsResult } from "../models/models_5";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
@@ -66,6 +66,10 @@ export interface DescribeVerifiedAccessGroupsCommandOutput extends DescribeVerif
|
|
|
66
66
|
* // Value: "STRING_VALUE",
|
|
67
67
|
* // },
|
|
68
68
|
* // ],
|
|
69
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
70
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
71
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
69
73
|
* // },
|
|
70
74
|
* // ],
|
|
71
75
|
* // NextToken: "STRING_VALUE",
|
|
@@ -77,6 +77,10 @@ export interface DescribeVerifiedAccessTrustProvidersCommandOutput extends Descr
|
|
|
77
77
|
* // Value: "STRING_VALUE",
|
|
78
78
|
* // },
|
|
79
79
|
* // ],
|
|
80
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
81
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
82
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
83
|
+
* // },
|
|
80
84
|
* // },
|
|
81
85
|
* // ],
|
|
82
86
|
* // NextToken: "STRING_VALUE",
|
|
@@ -66,6 +66,10 @@ export interface DetachVerifiedAccessTrustProviderCommandOutput extends DetachVe
|
|
|
66
66
|
* // Value: "STRING_VALUE",
|
|
67
67
|
* // },
|
|
68
68
|
* // ],
|
|
69
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
70
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
71
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
69
73
|
* // },
|
|
70
74
|
* // VerifiedAccessInstance: { // VerifiedAccessInstance
|
|
71
75
|
* // VerifiedAccessInstanceId: "STRING_VALUE",
|
|
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
4
|
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
5
|
-
import { GetVerifiedAccessGroupPolicyRequest, GetVerifiedAccessGroupPolicyResult } from "../models/
|
|
5
|
+
import { GetVerifiedAccessGroupPolicyRequest, GetVerifiedAccessGroupPolicyResult } from "../models/models_6";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
@@ -91,6 +91,10 @@ export interface ModifyVerifiedAccessEndpointCommandOutput extends ModifyVerifie
|
|
|
91
91
|
* // Value: "STRING_VALUE",
|
|
92
92
|
* // },
|
|
93
93
|
* // ],
|
|
94
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
95
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
96
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
97
|
+
* // },
|
|
94
98
|
* // },
|
|
95
99
|
* // };
|
|
96
100
|
*
|
|
@@ -32,16 +32,24 @@ export interface ModifyVerifiedAccessEndpointPolicyCommandOutput extends ModifyV
|
|
|
32
32
|
* const client = new EC2Client(config);
|
|
33
33
|
* const input = { // ModifyVerifiedAccessEndpointPolicyRequest
|
|
34
34
|
* VerifiedAccessEndpointId: "STRING_VALUE", // required
|
|
35
|
-
* PolicyEnabled: true || false,
|
|
35
|
+
* PolicyEnabled: true || false,
|
|
36
36
|
* PolicyDocument: "STRING_VALUE",
|
|
37
37
|
* ClientToken: "STRING_VALUE",
|
|
38
38
|
* DryRun: true || false,
|
|
39
|
+
* SseSpecification: { // VerifiedAccessSseSpecificationRequest
|
|
40
|
+
* CustomerManagedKeyEnabled: true || false,
|
|
41
|
+
* KmsKeyArn: "STRING_VALUE",
|
|
42
|
+
* },
|
|
39
43
|
* };
|
|
40
44
|
* const command = new ModifyVerifiedAccessEndpointPolicyCommand(input);
|
|
41
45
|
* const response = await client.send(command);
|
|
42
46
|
* // { // ModifyVerifiedAccessEndpointPolicyResult
|
|
43
47
|
* // PolicyEnabled: true || false,
|
|
44
48
|
* // PolicyDocument: "STRING_VALUE",
|
|
49
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
50
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
51
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
45
53
|
* // };
|
|
46
54
|
*
|
|
47
55
|
* ```
|
|
@@ -55,6 +55,10 @@ export interface ModifyVerifiedAccessGroupCommandOutput extends ModifyVerifiedAc
|
|
|
55
55
|
* // Value: "STRING_VALUE",
|
|
56
56
|
* // },
|
|
57
57
|
* // ],
|
|
58
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
59
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
60
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
58
62
|
* // },
|
|
59
63
|
* // };
|
|
60
64
|
*
|
|
@@ -32,16 +32,24 @@ export interface ModifyVerifiedAccessGroupPolicyCommandOutput extends ModifyVeri
|
|
|
32
32
|
* const client = new EC2Client(config);
|
|
33
33
|
* const input = { // ModifyVerifiedAccessGroupPolicyRequest
|
|
34
34
|
* VerifiedAccessGroupId: "STRING_VALUE", // required
|
|
35
|
-
* PolicyEnabled: true || false,
|
|
35
|
+
* PolicyEnabled: true || false,
|
|
36
36
|
* PolicyDocument: "STRING_VALUE",
|
|
37
37
|
* ClientToken: "STRING_VALUE",
|
|
38
38
|
* DryRun: true || false,
|
|
39
|
+
* SseSpecification: { // VerifiedAccessSseSpecificationRequest
|
|
40
|
+
* CustomerManagedKeyEnabled: true || false,
|
|
41
|
+
* KmsKeyArn: "STRING_VALUE",
|
|
42
|
+
* },
|
|
39
43
|
* };
|
|
40
44
|
* const command = new ModifyVerifiedAccessGroupPolicyCommand(input);
|
|
41
45
|
* const response = await client.send(command);
|
|
42
46
|
* // { // ModifyVerifiedAccessGroupPolicyResult
|
|
43
47
|
* // PolicyEnabled: true || false,
|
|
44
48
|
* // PolicyDocument: "STRING_VALUE",
|
|
49
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
50
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
51
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
45
53
|
* // };
|
|
46
54
|
*
|
|
47
55
|
* ```
|
|
@@ -44,6 +44,10 @@ export interface ModifyVerifiedAccessTrustProviderCommandOutput extends ModifyVe
|
|
|
44
44
|
* Description: "STRING_VALUE",
|
|
45
45
|
* DryRun: true || false,
|
|
46
46
|
* ClientToken: "STRING_VALUE",
|
|
47
|
+
* SseSpecification: { // VerifiedAccessSseSpecificationRequest
|
|
48
|
+
* CustomerManagedKeyEnabled: true || false,
|
|
49
|
+
* KmsKeyArn: "STRING_VALUE",
|
|
50
|
+
* },
|
|
47
51
|
* };
|
|
48
52
|
* const command = new ModifyVerifiedAccessTrustProviderCommand(input);
|
|
49
53
|
* const response = await client.send(command);
|
|
@@ -75,6 +79,10 @@ export interface ModifyVerifiedAccessTrustProviderCommandOutput extends ModifyVe
|
|
|
75
79
|
* // Value: "STRING_VALUE",
|
|
76
80
|
* // },
|
|
77
81
|
* // ],
|
|
82
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
83
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
84
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
85
|
+
* // },
|
|
78
86
|
* // },
|
|
79
87
|
* // };
|
|
80
88
|
*
|