aws-sdk-ec2 1.562.0 → 1.563.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +726 -133
- data/lib/aws-sdk-ec2/client_api.rb +303 -0
- data/lib/aws-sdk-ec2/instance.rb +1 -1
- data/lib/aws-sdk-ec2/resource.rb +17 -17
- data/lib/aws-sdk-ec2/security_group.rb +2 -2
- data/lib/aws-sdk-ec2/snapshot.rb +1 -1
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +832 -36
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- data/lib/aws-sdk-ec2/vpc.rb +5 -5
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +266 -102
- data/sig/instance.rbs +1 -1
- data/sig/resource.rbs +17 -17
- data/sig/security_group.rbs +2 -2
- data/sig/snapshot.rbs +1 -1
- data/sig/subnet.rbs +2 -2
- data/sig/tag.rbs +1 -1
- data/sig/types.rbs +200 -6
- data/sig/volume.rbs +1 -1
- data/sig/vpc.rbs +5 -5
- metadata +1 -1
@@ -252,6 +252,7 @@ module Aws::EC2
|
|
252
252
|
BootModeType = Shapes::StringShape.new(name: 'BootModeType')
|
253
253
|
BootModeTypeList = Shapes::ListShape.new(name: 'BootModeTypeList')
|
254
254
|
BootModeValues = Shapes::StringShape.new(name: 'BootModeValues')
|
255
|
+
BoxedBoolean = Shapes::BooleanShape.new(name: 'BoxedBoolean')
|
255
256
|
BoxedDouble = Shapes::FloatShape.new(name: 'BoxedDouble')
|
256
257
|
BoxedInteger = Shapes::IntegerShape.new(name: 'BoxedInteger')
|
257
258
|
BoxedLong = Shapes::IntegerShape.new(name: 'BoxedLong')
|
@@ -320,6 +321,15 @@ module Aws::EC2
|
|
320
321
|
CapacityBlockSet = Shapes::ListShape.new(name: 'CapacityBlockSet')
|
321
322
|
CapacityBlockStatus = Shapes::StructureShape.new(name: 'CapacityBlockStatus')
|
322
323
|
CapacityBlockStatusSet = Shapes::ListShape.new(name: 'CapacityBlockStatusSet')
|
324
|
+
CapacityManagerCondition = Shapes::StructureShape.new(name: 'CapacityManagerCondition')
|
325
|
+
CapacityManagerConditionSet = Shapes::ListShape.new(name: 'CapacityManagerConditionSet')
|
326
|
+
CapacityManagerDataExportId = Shapes::StringShape.new(name: 'CapacityManagerDataExportId')
|
327
|
+
CapacityManagerDataExportIdSet = Shapes::ListShape.new(name: 'CapacityManagerDataExportIdSet')
|
328
|
+
CapacityManagerDataExportResponse = Shapes::StructureShape.new(name: 'CapacityManagerDataExportResponse')
|
329
|
+
CapacityManagerDataExportResponseSet = Shapes::ListShape.new(name: 'CapacityManagerDataExportResponseSet')
|
330
|
+
CapacityManagerDataExportStatus = Shapes::StringShape.new(name: 'CapacityManagerDataExportStatus')
|
331
|
+
CapacityManagerDimension = Shapes::StructureShape.new(name: 'CapacityManagerDimension')
|
332
|
+
CapacityManagerStatus = Shapes::StringShape.new(name: 'CapacityManagerStatus')
|
323
333
|
CapacityReservation = Shapes::StructureShape.new(name: 'CapacityReservation')
|
324
334
|
CapacityReservationBillingRequest = Shapes::StructureShape.new(name: 'CapacityReservationBillingRequest')
|
325
335
|
CapacityReservationBillingRequestSet = Shapes::ListShape.new(name: 'CapacityReservationBillingRequestSet')
|
@@ -353,6 +363,7 @@ module Aws::EC2
|
|
353
363
|
CapacityReservationTargetResponse = Shapes::StructureShape.new(name: 'CapacityReservationTargetResponse')
|
354
364
|
CapacityReservationTenancy = Shapes::StringShape.new(name: 'CapacityReservationTenancy')
|
355
365
|
CapacityReservationType = Shapes::StringShape.new(name: 'CapacityReservationType')
|
366
|
+
CapacityTenancy = Shapes::StringShape.new(name: 'CapacityTenancy')
|
356
367
|
CarrierGateway = Shapes::StructureShape.new(name: 'CarrierGateway')
|
357
368
|
CarrierGatewayId = Shapes::StringShape.new(name: 'CarrierGatewayId')
|
358
369
|
CarrierGatewayIdSet = Shapes::ListShape.new(name: 'CarrierGatewayIdSet')
|
@@ -417,8 +428,10 @@ module Aws::EC2
|
|
417
428
|
CoipPoolIdSet = Shapes::ListShape.new(name: 'CoipPoolIdSet')
|
418
429
|
CoipPoolMaxResults = Shapes::IntegerShape.new(name: 'CoipPoolMaxResults')
|
419
430
|
CoipPoolSet = Shapes::ListShape.new(name: 'CoipPoolSet')
|
431
|
+
Comparison = Shapes::StringShape.new(name: 'Comparison')
|
420
432
|
ComponentAccount = Shapes::StringShape.new(name: 'ComponentAccount')
|
421
433
|
ComponentRegion = Shapes::StringShape.new(name: 'ComponentRegion')
|
434
|
+
ConditionValueList = Shapes::ListShape.new(name: 'ConditionValueList')
|
422
435
|
ConfirmProductInstanceRequest = Shapes::StructureShape.new(name: 'ConfirmProductInstanceRequest')
|
423
436
|
ConfirmProductInstanceResult = Shapes::StructureShape.new(name: 'ConfirmProductInstanceResult')
|
424
437
|
ConnectionLogOptions = Shapes::StructureShape.new(name: 'ConnectionLogOptions')
|
@@ -461,6 +474,8 @@ module Aws::EC2
|
|
461
474
|
CpuOptionsRequest = Shapes::StructureShape.new(name: 'CpuOptionsRequest')
|
462
475
|
CpuPerformanceFactor = Shapes::StructureShape.new(name: 'CpuPerformanceFactor')
|
463
476
|
CpuPerformanceFactorRequest = Shapes::StructureShape.new(name: 'CpuPerformanceFactorRequest')
|
477
|
+
CreateCapacityManagerDataExportRequest = Shapes::StructureShape.new(name: 'CreateCapacityManagerDataExportRequest')
|
478
|
+
CreateCapacityManagerDataExportResult = Shapes::StructureShape.new(name: 'CreateCapacityManagerDataExportResult')
|
464
479
|
CreateCapacityReservationBySplittingRequest = Shapes::StructureShape.new(name: 'CreateCapacityReservationBySplittingRequest')
|
465
480
|
CreateCapacityReservationBySplittingResult = Shapes::StructureShape.new(name: 'CreateCapacityReservationBySplittingResult')
|
466
481
|
CreateCapacityReservationFleetRequest = Shapes::StructureShape.new(name: 'CreateCapacityReservationFleetRequest')
|
@@ -695,6 +710,8 @@ module Aws::EC2
|
|
695
710
|
DefaultRouteTablePropagationValue = Shapes::StringShape.new(name: 'DefaultRouteTablePropagationValue')
|
696
711
|
DefaultTargetCapacityType = Shapes::StringShape.new(name: 'DefaultTargetCapacityType')
|
697
712
|
DefaultingDhcpOptionsId = Shapes::StringShape.new(name: 'DefaultingDhcpOptionsId')
|
713
|
+
DeleteCapacityManagerDataExportRequest = Shapes::StructureShape.new(name: 'DeleteCapacityManagerDataExportRequest')
|
714
|
+
DeleteCapacityManagerDataExportResult = Shapes::StructureShape.new(name: 'DeleteCapacityManagerDataExportResult')
|
698
715
|
DeleteCarrierGatewayRequest = Shapes::StructureShape.new(name: 'DeleteCarrierGatewayRequest')
|
699
716
|
DeleteCarrierGatewayResult = Shapes::StructureShape.new(name: 'DeleteCarrierGatewayResult')
|
700
717
|
DeleteClientVpnEndpointRequest = Shapes::StructureShape.new(name: 'DeleteClientVpnEndpointRequest')
|
@@ -910,6 +927,9 @@ module Aws::EC2
|
|
910
927
|
DescribeCapacityBlocksMaxResults = Shapes::IntegerShape.new(name: 'DescribeCapacityBlocksMaxResults')
|
911
928
|
DescribeCapacityBlocksRequest = Shapes::StructureShape.new(name: 'DescribeCapacityBlocksRequest')
|
912
929
|
DescribeCapacityBlocksResult = Shapes::StructureShape.new(name: 'DescribeCapacityBlocksResult')
|
930
|
+
DescribeCapacityManagerDataExportsRequest = Shapes::StructureShape.new(name: 'DescribeCapacityManagerDataExportsRequest')
|
931
|
+
DescribeCapacityManagerDataExportsRequestMaxResults = Shapes::IntegerShape.new(name: 'DescribeCapacityManagerDataExportsRequestMaxResults')
|
932
|
+
DescribeCapacityManagerDataExportsResult = Shapes::StructureShape.new(name: 'DescribeCapacityManagerDataExportsResult')
|
913
933
|
DescribeCapacityReservationBillingRequestsRequest = Shapes::StructureShape.new(name: 'DescribeCapacityReservationBillingRequestsRequest')
|
914
934
|
DescribeCapacityReservationBillingRequestsRequestMaxResults = Shapes::IntegerShape.new(name: 'DescribeCapacityReservationBillingRequestsRequestMaxResults')
|
915
935
|
DescribeCapacityReservationBillingRequestsResult = Shapes::StructureShape.new(name: 'DescribeCapacityReservationBillingRequestsResult')
|
@@ -1320,6 +1340,7 @@ module Aws::EC2
|
|
1320
1340
|
DhcpOptionsId = Shapes::StringShape.new(name: 'DhcpOptionsId')
|
1321
1341
|
DhcpOptionsIdStringList = Shapes::ListShape.new(name: 'DhcpOptionsIdStringList')
|
1322
1342
|
DhcpOptionsList = Shapes::ListShape.new(name: 'DhcpOptionsList')
|
1343
|
+
DimensionCondition = Shapes::StructureShape.new(name: 'DimensionCondition')
|
1323
1344
|
DirectoryServiceAuthentication = Shapes::StructureShape.new(name: 'DirectoryServiceAuthentication')
|
1324
1345
|
DirectoryServiceAuthenticationRequest = Shapes::StructureShape.new(name: 'DirectoryServiceAuthenticationRequest')
|
1325
1346
|
DisableAddressTransferRequest = Shapes::StructureShape.new(name: 'DisableAddressTransferRequest')
|
@@ -1328,6 +1349,8 @@ module Aws::EC2
|
|
1328
1349
|
DisableAllowedImagesSettingsResult = Shapes::StructureShape.new(name: 'DisableAllowedImagesSettingsResult')
|
1329
1350
|
DisableAwsNetworkPerformanceMetricSubscriptionRequest = Shapes::StructureShape.new(name: 'DisableAwsNetworkPerformanceMetricSubscriptionRequest')
|
1330
1351
|
DisableAwsNetworkPerformanceMetricSubscriptionResult = Shapes::StructureShape.new(name: 'DisableAwsNetworkPerformanceMetricSubscriptionResult')
|
1352
|
+
DisableCapacityManagerRequest = Shapes::StructureShape.new(name: 'DisableCapacityManagerRequest')
|
1353
|
+
DisableCapacityManagerResult = Shapes::StructureShape.new(name: 'DisableCapacityManagerResult')
|
1331
1354
|
DisableEbsEncryptionByDefaultRequest = Shapes::StructureShape.new(name: 'DisableEbsEncryptionByDefaultRequest')
|
1332
1355
|
DisableEbsEncryptionByDefaultResult = Shapes::StructureShape.new(name: 'DisableEbsEncryptionByDefaultResult')
|
1333
1356
|
DisableFastLaunchRequest = Shapes::StructureShape.new(name: 'DisableFastLaunchRequest')
|
@@ -1480,6 +1503,8 @@ module Aws::EC2
|
|
1480
1503
|
EnableAllowedImagesSettingsResult = Shapes::StructureShape.new(name: 'EnableAllowedImagesSettingsResult')
|
1481
1504
|
EnableAwsNetworkPerformanceMetricSubscriptionRequest = Shapes::StructureShape.new(name: 'EnableAwsNetworkPerformanceMetricSubscriptionRequest')
|
1482
1505
|
EnableAwsNetworkPerformanceMetricSubscriptionResult = Shapes::StructureShape.new(name: 'EnableAwsNetworkPerformanceMetricSubscriptionResult')
|
1506
|
+
EnableCapacityManagerRequest = Shapes::StructureShape.new(name: 'EnableCapacityManagerRequest')
|
1507
|
+
EnableCapacityManagerResult = Shapes::StructureShape.new(name: 'EnableCapacityManagerResult')
|
1483
1508
|
EnableEbsEncryptionByDefaultRequest = Shapes::StructureShape.new(name: 'EnableEbsEncryptionByDefaultRequest')
|
1484
1509
|
EnableEbsEncryptionByDefaultResult = Shapes::StructureShape.new(name: 'EnableEbsEncryptionByDefaultResult')
|
1485
1510
|
EnableFastLaunchRequest = Shapes::StructureShape.new(name: 'EnableFastLaunchRequest')
|
@@ -1576,6 +1601,7 @@ module Aws::EC2
|
|
1576
1601
|
FederatedAuthentication = Shapes::StructureShape.new(name: 'FederatedAuthentication')
|
1577
1602
|
FederatedAuthenticationRequest = Shapes::StructureShape.new(name: 'FederatedAuthenticationRequest')
|
1578
1603
|
Filter = Shapes::StructureShape.new(name: 'Filter')
|
1604
|
+
FilterByDimension = Shapes::StringShape.new(name: 'FilterByDimension')
|
1579
1605
|
FilterList = Shapes::ListShape.new(name: 'FilterList')
|
1580
1606
|
FilterPortRange = Shapes::StructureShape.new(name: 'FilterPortRange')
|
1581
1607
|
FindingsFound = Shapes::StringShape.new(name: 'FindingsFound')
|
@@ -1652,6 +1678,12 @@ module Aws::EC2
|
|
1652
1678
|
GetAssociatedIpv6PoolCidrsResult = Shapes::StructureShape.new(name: 'GetAssociatedIpv6PoolCidrsResult')
|
1653
1679
|
GetAwsNetworkPerformanceDataRequest = Shapes::StructureShape.new(name: 'GetAwsNetworkPerformanceDataRequest')
|
1654
1680
|
GetAwsNetworkPerformanceDataResult = Shapes::StructureShape.new(name: 'GetAwsNetworkPerformanceDataResult')
|
1681
|
+
GetCapacityManagerAttributesRequest = Shapes::StructureShape.new(name: 'GetCapacityManagerAttributesRequest')
|
1682
|
+
GetCapacityManagerAttributesResult = Shapes::StructureShape.new(name: 'GetCapacityManagerAttributesResult')
|
1683
|
+
GetCapacityManagerMetricDataRequest = Shapes::StructureShape.new(name: 'GetCapacityManagerMetricDataRequest')
|
1684
|
+
GetCapacityManagerMetricDataResult = Shapes::StructureShape.new(name: 'GetCapacityManagerMetricDataResult')
|
1685
|
+
GetCapacityManagerMetricDimensionsRequest = Shapes::StructureShape.new(name: 'GetCapacityManagerMetricDimensionsRequest')
|
1686
|
+
GetCapacityManagerMetricDimensionsResult = Shapes::StructureShape.new(name: 'GetCapacityManagerMetricDimensionsResult')
|
1655
1687
|
GetCapacityReservationUsageRequest = Shapes::StructureShape.new(name: 'GetCapacityReservationUsageRequest')
|
1656
1688
|
GetCapacityReservationUsageRequestMaxResults = Shapes::IntegerShape.new(name: 'GetCapacityReservationUsageRequestMaxResults')
|
1657
1689
|
GetCapacityReservationUsageResult = Shapes::StructureShape.new(name: 'GetCapacityReservationUsageResult')
|
@@ -1770,6 +1802,8 @@ module Aws::EC2
|
|
1770
1802
|
GpuDeviceMemorySize = Shapes::IntegerShape.new(name: 'GpuDeviceMemorySize')
|
1771
1803
|
GpuDeviceName = Shapes::StringShape.new(name: 'GpuDeviceName')
|
1772
1804
|
GpuInfo = Shapes::StructureShape.new(name: 'GpuInfo')
|
1805
|
+
GroupBy = Shapes::StringShape.new(name: 'GroupBy')
|
1806
|
+
GroupBySet = Shapes::ListShape.new(name: 'GroupBySet')
|
1773
1807
|
GroupIdStringList = Shapes::ListShape.new(name: 'GroupIdStringList')
|
1774
1808
|
GroupIdentifier = Shapes::StructureShape.new(name: 'GroupIdentifier')
|
1775
1809
|
GroupIdentifierList = Shapes::ListShape.new(name: 'GroupIdentifierList')
|
@@ -1907,6 +1941,7 @@ module Aws::EC2
|
|
1907
1941
|
InferenceDeviceMemoryInfo = Shapes::StructureShape.new(name: 'InferenceDeviceMemoryInfo')
|
1908
1942
|
InferenceDeviceMemorySize = Shapes::IntegerShape.new(name: 'InferenceDeviceMemorySize')
|
1909
1943
|
InferenceDeviceName = Shapes::StringShape.new(name: 'InferenceDeviceName')
|
1944
|
+
IngestionStatus = Shapes::StringShape.new(name: 'IngestionStatus')
|
1910
1945
|
InitializationStatusDetails = Shapes::StructureShape.new(name: 'InitializationStatusDetails')
|
1911
1946
|
InitializationType = Shapes::StringShape.new(name: 'InitializationType')
|
1912
1947
|
InsideCidrBlocksStringList = Shapes::ListShape.new(name: 'InsideCidrBlocksStringList')
|
@@ -2377,9 +2412,16 @@ module Aws::EC2
|
|
2377
2412
|
MemoryMiBRequest = Shapes::StructureShape.new(name: 'MemoryMiBRequest')
|
2378
2413
|
MemorySize = Shapes::IntegerShape.new(name: 'MemorySize')
|
2379
2414
|
MetadataDefaultHttpTokensState = Shapes::StringShape.new(name: 'MetadataDefaultHttpTokensState')
|
2415
|
+
Metric = Shapes::StringShape.new(name: 'Metric')
|
2416
|
+
MetricDataResult = Shapes::StructureShape.new(name: 'MetricDataResult')
|
2417
|
+
MetricDataResultSet = Shapes::ListShape.new(name: 'MetricDataResultSet')
|
2418
|
+
MetricDimensionResultSet = Shapes::ListShape.new(name: 'MetricDimensionResultSet')
|
2380
2419
|
MetricPoint = Shapes::StructureShape.new(name: 'MetricPoint')
|
2381
2420
|
MetricPoints = Shapes::ListShape.new(name: 'MetricPoints')
|
2421
|
+
MetricSet = Shapes::ListShape.new(name: 'MetricSet')
|
2382
2422
|
MetricType = Shapes::StringShape.new(name: 'MetricType')
|
2423
|
+
MetricValue = Shapes::StructureShape.new(name: 'MetricValue')
|
2424
|
+
MetricValueSet = Shapes::ListShape.new(name: 'MetricValueSet')
|
2383
2425
|
MillisecondDateTime = Shapes::TimestampShape.new(name: 'MillisecondDateTime')
|
2384
2426
|
ModifyAddressAttributeRequest = Shapes::StructureShape.new(name: 'ModifyAddressAttributeRequest')
|
2385
2427
|
ModifyAddressAttributeResult = Shapes::StructureShape.new(name: 'ModifyAddressAttributeResult')
|
@@ -2654,6 +2696,7 @@ module Aws::EC2
|
|
2654
2696
|
OutpostLagIdSet = Shapes::ListShape.new(name: 'OutpostLagIdSet')
|
2655
2697
|
OutpostLagMaxResults = Shapes::IntegerShape.new(name: 'OutpostLagMaxResults')
|
2656
2698
|
OutpostLagSet = Shapes::ListShape.new(name: 'OutpostLagSet')
|
2699
|
+
OutputFormat = Shapes::StringShape.new(name: 'OutputFormat')
|
2657
2700
|
OwnerStringList = Shapes::ListShape.new(name: 'OwnerStringList')
|
2658
2701
|
PacketHeaderStatement = Shapes::StructureShape.new(name: 'PacketHeaderStatement')
|
2659
2702
|
PacketHeaderStatementRequest = Shapes::StructureShape.new(name: 'PacketHeaderStatementRequest')
|
@@ -2677,6 +2720,7 @@ module Aws::EC2
|
|
2677
2720
|
PerformanceFactorReferenceRequest = Shapes::StructureShape.new(name: 'PerformanceFactorReferenceRequest')
|
2678
2721
|
PerformanceFactorReferenceSet = Shapes::ListShape.new(name: 'PerformanceFactorReferenceSet')
|
2679
2722
|
PerformanceFactorReferenceSetRequest = Shapes::ListShape.new(name: 'PerformanceFactorReferenceSetRequest')
|
2723
|
+
Period = Shapes::IntegerShape.new(name: 'Period')
|
2680
2724
|
PeriodType = Shapes::StringShape.new(name: 'PeriodType')
|
2681
2725
|
PermissionGroup = Shapes::StringShape.new(name: 'PermissionGroup')
|
2682
2726
|
Phase1DHGroupNumbersList = Shapes::ListShape.new(name: 'Phase1DHGroupNumbersList')
|
@@ -2897,11 +2941,13 @@ module Aws::EC2
|
|
2897
2941
|
RequestSpotLaunchSpecificationSecurityGroupIdList = Shapes::ListShape.new(name: 'RequestSpotLaunchSpecificationSecurityGroupIdList')
|
2898
2942
|
RequestSpotLaunchSpecificationSecurityGroupList = Shapes::ListShape.new(name: 'RequestSpotLaunchSpecificationSecurityGroupList')
|
2899
2943
|
Reservation = Shapes::StructureShape.new(name: 'Reservation')
|
2944
|
+
ReservationEndDateType = Shapes::StringShape.new(name: 'ReservationEndDateType')
|
2900
2945
|
ReservationFleetInstanceSpecification = Shapes::StructureShape.new(name: 'ReservationFleetInstanceSpecification')
|
2901
2946
|
ReservationFleetInstanceSpecificationList = Shapes::ListShape.new(name: 'ReservationFleetInstanceSpecificationList')
|
2902
2947
|
ReservationId = Shapes::StringShape.new(name: 'ReservationId')
|
2903
2948
|
ReservationList = Shapes::ListShape.new(name: 'ReservationList')
|
2904
2949
|
ReservationState = Shapes::StringShape.new(name: 'ReservationState')
|
2950
|
+
ReservationType = Shapes::StringShape.new(name: 'ReservationType')
|
2905
2951
|
ReservationValue = Shapes::StructureShape.new(name: 'ReservationValue')
|
2906
2952
|
ReservedInstanceIdSet = Shapes::ListShape.new(name: 'ReservedInstanceIdSet')
|
2907
2953
|
ReservedInstanceLimitPrice = Shapes::StructureShape.new(name: 'ReservedInstanceLimitPrice')
|
@@ -3052,6 +3098,7 @@ module Aws::EC2
|
|
3052
3098
|
S3StorageUploadPolicy = Shapes::StringShape.new(name: 'S3StorageUploadPolicy')
|
3053
3099
|
S3StorageUploadPolicySignature = Shapes::StringShape.new(name: 'S3StorageUploadPolicySignature')
|
3054
3100
|
SSEType = Shapes::StringShape.new(name: 'SSEType')
|
3101
|
+
Schedule = Shapes::StringShape.new(name: 'Schedule')
|
3055
3102
|
ScheduledInstance = Shapes::StructureShape.new(name: 'ScheduledInstance')
|
3056
3103
|
ScheduledInstanceAvailability = Shapes::StructureShape.new(name: 'ScheduledInstanceAvailability')
|
3057
3104
|
ScheduledInstanceAvailabilitySet = Shapes::ListShape.new(name: 'ScheduledInstanceAvailabilitySet')
|
@@ -3445,6 +3492,8 @@ module Aws::EC2
|
|
3445
3492
|
UnsuccessfulItemError = Shapes::StructureShape.new(name: 'UnsuccessfulItemError')
|
3446
3493
|
UnsuccessfulItemList = Shapes::ListShape.new(name: 'UnsuccessfulItemList')
|
3447
3494
|
UnsuccessfulItemSet = Shapes::ListShape.new(name: 'UnsuccessfulItemSet')
|
3495
|
+
UpdateCapacityManagerOrganizationsAccessRequest = Shapes::StructureShape.new(name: 'UpdateCapacityManagerOrganizationsAccessRequest')
|
3496
|
+
UpdateCapacityManagerOrganizationsAccessResult = Shapes::StructureShape.new(name: 'UpdateCapacityManagerOrganizationsAccessResult')
|
3448
3497
|
UpdateSecurityGroupRuleDescriptionsEgressRequest = Shapes::StructureShape.new(name: 'UpdateSecurityGroupRuleDescriptionsEgressRequest')
|
3449
3498
|
UpdateSecurityGroupRuleDescriptionsEgressResult = Shapes::StructureShape.new(name: 'UpdateSecurityGroupRuleDescriptionsEgressResult')
|
3450
3499
|
UpdateSecurityGroupRuleDescriptionsIngressRequest = Shapes::StructureShape.new(name: 'UpdateSecurityGroupRuleDescriptionsIngressRequest')
|
@@ -4713,6 +4762,47 @@ module Aws::EC2
|
|
4713
4762
|
|
4714
4763
|
CapacityBlockStatusSet.member = Shapes::ShapeRef.new(shape: CapacityBlockStatus, location_name: "item")
|
4715
4764
|
|
4765
|
+
CapacityManagerCondition.add_member(:dimension_condition, Shapes::ShapeRef.new(shape: DimensionCondition, location_name: "DimensionCondition"))
|
4766
|
+
CapacityManagerCondition.struct_class = Types::CapacityManagerCondition
|
4767
|
+
|
4768
|
+
CapacityManagerConditionSet.member = Shapes::ShapeRef.new(shape: CapacityManagerCondition, location_name: "item")
|
4769
|
+
|
4770
|
+
CapacityManagerDataExportIdSet.member = Shapes::ShapeRef.new(shape: CapacityManagerDataExportId, location_name: "item")
|
4771
|
+
|
4772
|
+
CapacityManagerDataExportResponse.add_member(:capacity_manager_data_export_id, Shapes::ShapeRef.new(shape: CapacityManagerDataExportId, location_name: "capacityManagerDataExportId"))
|
4773
|
+
CapacityManagerDataExportResponse.add_member(:s3_bucket_name, Shapes::ShapeRef.new(shape: String, location_name: "s3BucketName"))
|
4774
|
+
CapacityManagerDataExportResponse.add_member(:s3_bucket_prefix, Shapes::ShapeRef.new(shape: String, location_name: "s3BucketPrefix"))
|
4775
|
+
CapacityManagerDataExportResponse.add_member(:schedule, Shapes::ShapeRef.new(shape: Schedule, location_name: "schedule"))
|
4776
|
+
CapacityManagerDataExportResponse.add_member(:output_format, Shapes::ShapeRef.new(shape: OutputFormat, location_name: "outputFormat"))
|
4777
|
+
CapacityManagerDataExportResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "createTime"))
|
4778
|
+
CapacityManagerDataExportResponse.add_member(:latest_delivery_status, Shapes::ShapeRef.new(shape: CapacityManagerDataExportStatus, location_name: "latestDeliveryStatus"))
|
4779
|
+
CapacityManagerDataExportResponse.add_member(:latest_delivery_status_message, Shapes::ShapeRef.new(shape: String, location_name: "latestDeliveryStatusMessage"))
|
4780
|
+
CapacityManagerDataExportResponse.add_member(:latest_delivery_s3_location_uri, Shapes::ShapeRef.new(shape: String, location_name: "latestDeliveryS3LocationUri"))
|
4781
|
+
CapacityManagerDataExportResponse.add_member(:latest_delivery_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "latestDeliveryTime"))
|
4782
|
+
CapacityManagerDataExportResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
4783
|
+
CapacityManagerDataExportResponse.struct_class = Types::CapacityManagerDataExportResponse
|
4784
|
+
|
4785
|
+
CapacityManagerDataExportResponseSet.member = Shapes::ShapeRef.new(shape: CapacityManagerDataExportResponse, location_name: "item")
|
4786
|
+
|
4787
|
+
CapacityManagerDimension.add_member(:resource_region, Shapes::ShapeRef.new(shape: String, location_name: "resourceRegion"))
|
4788
|
+
CapacityManagerDimension.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZoneId"))
|
4789
|
+
CapacityManagerDimension.add_member(:account_id, Shapes::ShapeRef.new(shape: String, location_name: "accountId"))
|
4790
|
+
CapacityManagerDimension.add_member(:instance_family, Shapes::ShapeRef.new(shape: String, location_name: "instanceFamily"))
|
4791
|
+
CapacityManagerDimension.add_member(:instance_type, Shapes::ShapeRef.new(shape: String, location_name: "instanceType"))
|
4792
|
+
CapacityManagerDimension.add_member(:instance_platform, Shapes::ShapeRef.new(shape: String, location_name: "instancePlatform"))
|
4793
|
+
CapacityManagerDimension.add_member(:reservation_arn, Shapes::ShapeRef.new(shape: String, location_name: "reservationArn"))
|
4794
|
+
CapacityManagerDimension.add_member(:reservation_id, Shapes::ShapeRef.new(shape: String, location_name: "reservationId"))
|
4795
|
+
CapacityManagerDimension.add_member(:reservation_type, Shapes::ShapeRef.new(shape: ReservationType, location_name: "reservationType"))
|
4796
|
+
CapacityManagerDimension.add_member(:reservation_create_timestamp, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "reservationCreateTimestamp"))
|
4797
|
+
CapacityManagerDimension.add_member(:reservation_start_timestamp, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "reservationStartTimestamp"))
|
4798
|
+
CapacityManagerDimension.add_member(:reservation_end_timestamp, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "reservationEndTimestamp"))
|
4799
|
+
CapacityManagerDimension.add_member(:reservation_end_date_type, Shapes::ShapeRef.new(shape: ReservationEndDateType, location_name: "reservationEndDateType"))
|
4800
|
+
CapacityManagerDimension.add_member(:tenancy, Shapes::ShapeRef.new(shape: CapacityTenancy, location_name: "tenancy"))
|
4801
|
+
CapacityManagerDimension.add_member(:reservation_state, Shapes::ShapeRef.new(shape: ReservationState, location_name: "reservationState"))
|
4802
|
+
CapacityManagerDimension.add_member(:reservation_instance_match_criteria, Shapes::ShapeRef.new(shape: String, location_name: "reservationInstanceMatchCriteria"))
|
4803
|
+
CapacityManagerDimension.add_member(:reservation_unused_financial_owner, Shapes::ShapeRef.new(shape: String, location_name: "reservationUnusedFinancialOwner"))
|
4804
|
+
CapacityManagerDimension.struct_class = Types::CapacityManagerDimension
|
4805
|
+
|
4716
4806
|
CapacityReservation.add_member(:capacity_reservation_id, Shapes::ShapeRef.new(shape: String, location_name: "capacityReservationId"))
|
4717
4807
|
CapacityReservation.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
4718
4808
|
CapacityReservation.add_member(:capacity_reservation_arn, Shapes::ShapeRef.new(shape: String, location_name: "capacityReservationArn"))
|
@@ -5043,6 +5133,8 @@ module Aws::EC2
|
|
5043
5133
|
|
5044
5134
|
CoipPoolSet.member = Shapes::ShapeRef.new(shape: CoipPool, location_name: "item")
|
5045
5135
|
|
5136
|
+
ConditionValueList.member = Shapes::ShapeRef.new(shape: String, location_name: "item")
|
5137
|
+
|
5046
5138
|
ConfirmProductInstanceRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
5047
5139
|
ConfirmProductInstanceRequest.add_member(:product_code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ProductCode"))
|
5048
5140
|
ConfirmProductInstanceRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
@@ -5189,6 +5281,18 @@ module Aws::EC2
|
|
5189
5281
|
CpuPerformanceFactorRequest.add_member(:references, Shapes::ShapeRef.new(shape: PerformanceFactorReferenceSetRequest, location_name: "Reference"))
|
5190
5282
|
CpuPerformanceFactorRequest.struct_class = Types::CpuPerformanceFactorRequest
|
5191
5283
|
|
5284
|
+
CreateCapacityManagerDataExportRequest.add_member(:s3_bucket_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "S3BucketName"))
|
5285
|
+
CreateCapacityManagerDataExportRequest.add_member(:s3_bucket_prefix, Shapes::ShapeRef.new(shape: String, location_name: "S3BucketPrefix"))
|
5286
|
+
CreateCapacityManagerDataExportRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: Schedule, required: true, location_name: "Schedule"))
|
5287
|
+
CreateCapacityManagerDataExportRequest.add_member(:output_format, Shapes::ShapeRef.new(shape: OutputFormat, required: true, location_name: "OutputFormat"))
|
5288
|
+
CreateCapacityManagerDataExportRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
5289
|
+
CreateCapacityManagerDataExportRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
5290
|
+
CreateCapacityManagerDataExportRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
5291
|
+
CreateCapacityManagerDataExportRequest.struct_class = Types::CreateCapacityManagerDataExportRequest
|
5292
|
+
|
5293
|
+
CreateCapacityManagerDataExportResult.add_member(:capacity_manager_data_export_id, Shapes::ShapeRef.new(shape: CapacityManagerDataExportId, location_name: "capacityManagerDataExportId"))
|
5294
|
+
CreateCapacityManagerDataExportResult.struct_class = Types::CreateCapacityManagerDataExportResult
|
5295
|
+
|
5192
5296
|
CreateCapacityReservationBySplittingRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
5193
5297
|
CreateCapacityReservationBySplittingRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
5194
5298
|
CreateCapacityReservationBySplittingRequest.add_member(:source_capacity_reservation_id, Shapes::ShapeRef.new(shape: CapacityReservationId, required: true, location_name: "SourceCapacityReservationId"))
|
@@ -6497,6 +6601,13 @@ module Aws::EC2
|
|
6497
6601
|
|
6498
6602
|
DedicatedHostIdList.member = Shapes::ShapeRef.new(shape: DedicatedHostId, location_name: "item")
|
6499
6603
|
|
6604
|
+
DeleteCapacityManagerDataExportRequest.add_member(:capacity_manager_data_export_id, Shapes::ShapeRef.new(shape: CapacityManagerDataExportId, required: true, location_name: "CapacityManagerDataExportId"))
|
6605
|
+
DeleteCapacityManagerDataExportRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
6606
|
+
DeleteCapacityManagerDataExportRequest.struct_class = Types::DeleteCapacityManagerDataExportRequest
|
6607
|
+
|
6608
|
+
DeleteCapacityManagerDataExportResult.add_member(:capacity_manager_data_export_id, Shapes::ShapeRef.new(shape: CapacityManagerDataExportId, location_name: "capacityManagerDataExportId"))
|
6609
|
+
DeleteCapacityManagerDataExportResult.struct_class = Types::DeleteCapacityManagerDataExportResult
|
6610
|
+
|
6500
6611
|
DeleteCarrierGatewayRequest.add_member(:carrier_gateway_id, Shapes::ShapeRef.new(shape: CarrierGatewayId, required: true, location_name: "CarrierGatewayId"))
|
6501
6612
|
DeleteCarrierGatewayRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
6502
6613
|
DeleteCarrierGatewayRequest.struct_class = Types::DeleteCarrierGatewayRequest
|
@@ -7312,6 +7423,17 @@ module Aws::EC2
|
|
7312
7423
|
DescribeCapacityBlocksResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
7313
7424
|
DescribeCapacityBlocksResult.struct_class = Types::DescribeCapacityBlocksResult
|
7314
7425
|
|
7426
|
+
DescribeCapacityManagerDataExportsRequest.add_member(:capacity_manager_data_export_ids, Shapes::ShapeRef.new(shape: CapacityManagerDataExportIdSet, location_name: "CapacityManagerDataExportId"))
|
7427
|
+
DescribeCapacityManagerDataExportsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeCapacityManagerDataExportsRequestMaxResults, location_name: "MaxResults"))
|
7428
|
+
DescribeCapacityManagerDataExportsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
7429
|
+
DescribeCapacityManagerDataExportsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
7430
|
+
DescribeCapacityManagerDataExportsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filter"))
|
7431
|
+
DescribeCapacityManagerDataExportsRequest.struct_class = Types::DescribeCapacityManagerDataExportsRequest
|
7432
|
+
|
7433
|
+
DescribeCapacityManagerDataExportsResult.add_member(:capacity_manager_data_exports, Shapes::ShapeRef.new(shape: CapacityManagerDataExportResponseSet, location_name: "capacityManagerDataExportSet"))
|
7434
|
+
DescribeCapacityManagerDataExportsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
7435
|
+
DescribeCapacityManagerDataExportsResult.struct_class = Types::DescribeCapacityManagerDataExportsResult
|
7436
|
+
|
7315
7437
|
DescribeCapacityReservationBillingRequestsRequest.add_member(:capacity_reservation_ids, Shapes::ShapeRef.new(shape: CapacityReservationIdSet, location_name: "CapacityReservationId"))
|
7316
7438
|
DescribeCapacityReservationBillingRequestsRequest.add_member(:role, Shapes::ShapeRef.new(shape: CallerRole, required: true, location_name: "Role"))
|
7317
7439
|
DescribeCapacityReservationBillingRequestsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
@@ -9150,6 +9272,11 @@ module Aws::EC2
|
|
9150
9272
|
|
9151
9273
|
DhcpOptionsList.member = Shapes::ShapeRef.new(shape: DhcpOptions, location_name: "item")
|
9152
9274
|
|
9275
|
+
DimensionCondition.add_member(:dimension, Shapes::ShapeRef.new(shape: FilterByDimension, location_name: "Dimension"))
|
9276
|
+
DimensionCondition.add_member(:comparison, Shapes::ShapeRef.new(shape: Comparison, location_name: "Comparison"))
|
9277
|
+
DimensionCondition.add_member(:values, Shapes::ShapeRef.new(shape: ConditionValueList, location_name: "Value"))
|
9278
|
+
DimensionCondition.struct_class = Types::DimensionCondition
|
9279
|
+
|
9153
9280
|
DirectoryServiceAuthentication.add_member(:directory_id, Shapes::ShapeRef.new(shape: String, location_name: "directoryId"))
|
9154
9281
|
DirectoryServiceAuthentication.struct_class = Types::DirectoryServiceAuthentication
|
9155
9282
|
|
@@ -9179,6 +9306,14 @@ module Aws::EC2
|
|
9179
9306
|
DisableAwsNetworkPerformanceMetricSubscriptionResult.add_member(:output, Shapes::ShapeRef.new(shape: Boolean, location_name: "output"))
|
9180
9307
|
DisableAwsNetworkPerformanceMetricSubscriptionResult.struct_class = Types::DisableAwsNetworkPerformanceMetricSubscriptionResult
|
9181
9308
|
|
9309
|
+
DisableCapacityManagerRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
9310
|
+
DisableCapacityManagerRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
9311
|
+
DisableCapacityManagerRequest.struct_class = Types::DisableCapacityManagerRequest
|
9312
|
+
|
9313
|
+
DisableCapacityManagerResult.add_member(:capacity_manager_status, Shapes::ShapeRef.new(shape: CapacityManagerStatus, location_name: "capacityManagerStatus"))
|
9314
|
+
DisableCapacityManagerResult.add_member(:organizations_access, Shapes::ShapeRef.new(shape: Boolean, location_name: "organizationsAccess"))
|
9315
|
+
DisableCapacityManagerResult.struct_class = Types::DisableCapacityManagerResult
|
9316
|
+
|
9182
9317
|
DisableEbsEncryptionByDefaultRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
9183
9318
|
DisableEbsEncryptionByDefaultRequest.struct_class = Types::DisableEbsEncryptionByDefaultRequest
|
9184
9319
|
|
@@ -9693,6 +9828,15 @@ module Aws::EC2
|
|
9693
9828
|
EnableAwsNetworkPerformanceMetricSubscriptionResult.add_member(:output, Shapes::ShapeRef.new(shape: Boolean, location_name: "output"))
|
9694
9829
|
EnableAwsNetworkPerformanceMetricSubscriptionResult.struct_class = Types::EnableAwsNetworkPerformanceMetricSubscriptionResult
|
9695
9830
|
|
9831
|
+
EnableCapacityManagerRequest.add_member(:organizations_access, Shapes::ShapeRef.new(shape: Boolean, location_name: "OrganizationsAccess"))
|
9832
|
+
EnableCapacityManagerRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
9833
|
+
EnableCapacityManagerRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
9834
|
+
EnableCapacityManagerRequest.struct_class = Types::EnableCapacityManagerRequest
|
9835
|
+
|
9836
|
+
EnableCapacityManagerResult.add_member(:capacity_manager_status, Shapes::ShapeRef.new(shape: CapacityManagerStatus, location_name: "capacityManagerStatus"))
|
9837
|
+
EnableCapacityManagerResult.add_member(:organizations_access, Shapes::ShapeRef.new(shape: Boolean, location_name: "organizationsAccess"))
|
9838
|
+
EnableCapacityManagerResult.struct_class = Types::EnableCapacityManagerResult
|
9839
|
+
|
9696
9840
|
EnableEbsEncryptionByDefaultRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
9697
9841
|
EnableEbsEncryptionByDefaultRequest.struct_class = Types::EnableEbsEncryptionByDefaultRequest
|
9698
9842
|
|
@@ -10344,6 +10488,47 @@ module Aws::EC2
|
|
10344
10488
|
GetAwsNetworkPerformanceDataResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
10345
10489
|
GetAwsNetworkPerformanceDataResult.struct_class = Types::GetAwsNetworkPerformanceDataResult
|
10346
10490
|
|
10491
|
+
GetCapacityManagerAttributesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
10492
|
+
GetCapacityManagerAttributesRequest.struct_class = Types::GetCapacityManagerAttributesRequest
|
10493
|
+
|
10494
|
+
GetCapacityManagerAttributesResult.add_member(:capacity_manager_status, Shapes::ShapeRef.new(shape: CapacityManagerStatus, location_name: "capacityManagerStatus"))
|
10495
|
+
GetCapacityManagerAttributesResult.add_member(:organizations_access, Shapes::ShapeRef.new(shape: Boolean, location_name: "organizationsAccess"))
|
10496
|
+
GetCapacityManagerAttributesResult.add_member(:data_export_count, Shapes::ShapeRef.new(shape: Integer, location_name: "dataExportCount"))
|
10497
|
+
GetCapacityManagerAttributesResult.add_member(:ingestion_status, Shapes::ShapeRef.new(shape: IngestionStatus, location_name: "ingestionStatus"))
|
10498
|
+
GetCapacityManagerAttributesResult.add_member(:ingestion_status_message, Shapes::ShapeRef.new(shape: String, location_name: "ingestionStatusMessage"))
|
10499
|
+
GetCapacityManagerAttributesResult.add_member(:earliest_datapoint_timestamp, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "earliestDatapointTimestamp"))
|
10500
|
+
GetCapacityManagerAttributesResult.add_member(:latest_datapoint_timestamp, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "latestDatapointTimestamp"))
|
10501
|
+
GetCapacityManagerAttributesResult.struct_class = Types::GetCapacityManagerAttributesResult
|
10502
|
+
|
10503
|
+
GetCapacityManagerMetricDataRequest.add_member(:metric_names, Shapes::ShapeRef.new(shape: MetricSet, required: true, location_name: "MetricName"))
|
10504
|
+
GetCapacityManagerMetricDataRequest.add_member(:start_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, required: true, location_name: "StartTime"))
|
10505
|
+
GetCapacityManagerMetricDataRequest.add_member(:end_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, required: true, location_name: "EndTime"))
|
10506
|
+
GetCapacityManagerMetricDataRequest.add_member(:period, Shapes::ShapeRef.new(shape: Period, required: true, location_name: "Period"))
|
10507
|
+
GetCapacityManagerMetricDataRequest.add_member(:group_by, Shapes::ShapeRef.new(shape: GroupBySet, location_name: "GroupBy"))
|
10508
|
+
GetCapacityManagerMetricDataRequest.add_member(:filter_by, Shapes::ShapeRef.new(shape: CapacityManagerConditionSet, location_name: "FilterBy"))
|
10509
|
+
GetCapacityManagerMetricDataRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
10510
|
+
GetCapacityManagerMetricDataRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
10511
|
+
GetCapacityManagerMetricDataRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
10512
|
+
GetCapacityManagerMetricDataRequest.struct_class = Types::GetCapacityManagerMetricDataRequest
|
10513
|
+
|
10514
|
+
GetCapacityManagerMetricDataResult.add_member(:metric_data_results, Shapes::ShapeRef.new(shape: MetricDataResultSet, location_name: "metricDataResultSet"))
|
10515
|
+
GetCapacityManagerMetricDataResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
10516
|
+
GetCapacityManagerMetricDataResult.struct_class = Types::GetCapacityManagerMetricDataResult
|
10517
|
+
|
10518
|
+
GetCapacityManagerMetricDimensionsRequest.add_member(:group_by, Shapes::ShapeRef.new(shape: GroupBySet, required: true, location_name: "GroupBy"))
|
10519
|
+
GetCapacityManagerMetricDimensionsRequest.add_member(:filter_by, Shapes::ShapeRef.new(shape: CapacityManagerConditionSet, location_name: "FilterBy"))
|
10520
|
+
GetCapacityManagerMetricDimensionsRequest.add_member(:start_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, required: true, location_name: "StartTime"))
|
10521
|
+
GetCapacityManagerMetricDimensionsRequest.add_member(:end_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, required: true, location_name: "EndTime"))
|
10522
|
+
GetCapacityManagerMetricDimensionsRequest.add_member(:metric_names, Shapes::ShapeRef.new(shape: MetricSet, required: true, location_name: "MetricName"))
|
10523
|
+
GetCapacityManagerMetricDimensionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
10524
|
+
GetCapacityManagerMetricDimensionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
10525
|
+
GetCapacityManagerMetricDimensionsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
10526
|
+
GetCapacityManagerMetricDimensionsRequest.struct_class = Types::GetCapacityManagerMetricDimensionsRequest
|
10527
|
+
|
10528
|
+
GetCapacityManagerMetricDimensionsResult.add_member(:metric_dimension_results, Shapes::ShapeRef.new(shape: MetricDimensionResultSet, location_name: "metricDimensionResultSet"))
|
10529
|
+
GetCapacityManagerMetricDimensionsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
10530
|
+
GetCapacityManagerMetricDimensionsResult.struct_class = Types::GetCapacityManagerMetricDimensionsResult
|
10531
|
+
|
10347
10532
|
GetCapacityReservationUsageRequest.add_member(:capacity_reservation_id, Shapes::ShapeRef.new(shape: CapacityReservationId, required: true, location_name: "CapacityReservationId"))
|
10348
10533
|
GetCapacityReservationUsageRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
10349
10534
|
GetCapacityReservationUsageRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: GetCapacityReservationUsageRequestMaxResults, location_name: "MaxResults"))
|
@@ -10891,6 +11076,8 @@ module Aws::EC2
|
|
10891
11076
|
GpuInfo.add_member(:total_gpu_memory_in_mi_b, Shapes::ShapeRef.new(shape: totalGpuMemory, location_name: "totalGpuMemoryInMiB"))
|
10892
11077
|
GpuInfo.struct_class = Types::GpuInfo
|
10893
11078
|
|
11079
|
+
GroupBySet.member = Shapes::ShapeRef.new(shape: GroupBy, location_name: "item")
|
11080
|
+
|
10894
11081
|
GroupIdStringList.member = Shapes::ShapeRef.new(shape: SecurityGroupId, location_name: "groupId")
|
10895
11082
|
|
10896
11083
|
GroupIdentifier.add_member(:group_id, Shapes::ShapeRef.new(shape: String, location_name: "groupId"))
|
@@ -12992,6 +13179,15 @@ module Aws::EC2
|
|
12992
13179
|
MemoryMiBRequest.add_member(:max, Shapes::ShapeRef.new(shape: Integer, location_name: "Max"))
|
12993
13180
|
MemoryMiBRequest.struct_class = Types::MemoryMiBRequest
|
12994
13181
|
|
13182
|
+
MetricDataResult.add_member(:dimension, Shapes::ShapeRef.new(shape: CapacityManagerDimension, location_name: "dimension"))
|
13183
|
+
MetricDataResult.add_member(:timestamp, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "timestamp"))
|
13184
|
+
MetricDataResult.add_member(:metric_values, Shapes::ShapeRef.new(shape: MetricValueSet, location_name: "metricValueSet"))
|
13185
|
+
MetricDataResult.struct_class = Types::MetricDataResult
|
13186
|
+
|
13187
|
+
MetricDataResultSet.member = Shapes::ShapeRef.new(shape: MetricDataResult, location_name: "item")
|
13188
|
+
|
13189
|
+
MetricDimensionResultSet.member = Shapes::ShapeRef.new(shape: CapacityManagerDimension, location_name: "item")
|
13190
|
+
|
12995
13191
|
MetricPoint.add_member(:start_date, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "startDate"))
|
12996
13192
|
MetricPoint.add_member(:end_date, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "endDate"))
|
12997
13193
|
MetricPoint.add_member(:value, Shapes::ShapeRef.new(shape: Float, location_name: "value"))
|
@@ -13000,6 +13196,14 @@ module Aws::EC2
|
|
13000
13196
|
|
13001
13197
|
MetricPoints.member = Shapes::ShapeRef.new(shape: MetricPoint, location_name: "item")
|
13002
13198
|
|
13199
|
+
MetricSet.member = Shapes::ShapeRef.new(shape: Metric, location_name: "item")
|
13200
|
+
|
13201
|
+
MetricValue.add_member(:metric, Shapes::ShapeRef.new(shape: Metric, location_name: "metric"))
|
13202
|
+
MetricValue.add_member(:value, Shapes::ShapeRef.new(shape: Double, location_name: "value"))
|
13203
|
+
MetricValue.struct_class = Types::MetricValue
|
13204
|
+
|
13205
|
+
MetricValueSet.member = Shapes::ShapeRef.new(shape: MetricValue, location_name: "item")
|
13206
|
+
|
13003
13207
|
ModifyAddressAttributeRequest.add_member(:allocation_id, Shapes::ShapeRef.new(shape: AllocationId, required: true, location_name: "AllocationId"))
|
13004
13208
|
ModifyAddressAttributeRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainName"))
|
13005
13209
|
ModifyAddressAttributeRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
@@ -17190,6 +17394,15 @@ module Aws::EC2
|
|
17190
17394
|
|
17191
17395
|
UnsuccessfulItemSet.member = Shapes::ShapeRef.new(shape: UnsuccessfulItem, location_name: "item")
|
17192
17396
|
|
17397
|
+
UpdateCapacityManagerOrganizationsAccessRequest.add_member(:organizations_access, Shapes::ShapeRef.new(shape: BoxedBoolean, required: true, location_name: "OrganizationsAccess"))
|
17398
|
+
UpdateCapacityManagerOrganizationsAccessRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
17399
|
+
UpdateCapacityManagerOrganizationsAccessRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
17400
|
+
UpdateCapacityManagerOrganizationsAccessRequest.struct_class = Types::UpdateCapacityManagerOrganizationsAccessRequest
|
17401
|
+
|
17402
|
+
UpdateCapacityManagerOrganizationsAccessResult.add_member(:capacity_manager_status, Shapes::ShapeRef.new(shape: CapacityManagerStatus, location_name: "capacityManagerStatus"))
|
17403
|
+
UpdateCapacityManagerOrganizationsAccessResult.add_member(:organizations_access, Shapes::ShapeRef.new(shape: Boolean, location_name: "organizationsAccess"))
|
17404
|
+
UpdateCapacityManagerOrganizationsAccessResult.struct_class = Types::UpdateCapacityManagerOrganizationsAccessResult
|
17405
|
+
|
17193
17406
|
UpdateSecurityGroupRuleDescriptionsEgressRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
17194
17407
|
UpdateSecurityGroupRuleDescriptionsEgressRequest.add_member(:group_id, Shapes::ShapeRef.new(shape: SecurityGroupId, location_name: "GroupId"))
|
17195
17408
|
UpdateSecurityGroupRuleDescriptionsEgressRequest.add_member(:group_name, Shapes::ShapeRef.new(shape: SecurityGroupName, location_name: "GroupName"))
|
@@ -18439,6 +18652,14 @@ module Aws::EC2
|
|
18439
18652
|
o.output = Shapes::ShapeRef.new(shape: CopyVolumesResult)
|
18440
18653
|
end)
|
18441
18654
|
|
18655
|
+
api.add_operation(:create_capacity_manager_data_export, Seahorse::Model::Operation.new.tap do |o|
|
18656
|
+
o.name = "CreateCapacityManagerDataExport"
|
18657
|
+
o.http_method = "POST"
|
18658
|
+
o.http_request_uri = "/"
|
18659
|
+
o.input = Shapes::ShapeRef.new(shape: CreateCapacityManagerDataExportRequest)
|
18660
|
+
o.output = Shapes::ShapeRef.new(shape: CreateCapacityManagerDataExportResult)
|
18661
|
+
end)
|
18662
|
+
|
18442
18663
|
api.add_operation(:create_capacity_reservation, Seahorse::Model::Operation.new.tap do |o|
|
18443
18664
|
o.name = "CreateCapacityReservation"
|
18444
18665
|
o.http_method = "POST"
|
@@ -19183,6 +19404,14 @@ module Aws::EC2
|
|
19183
19404
|
o.output = Shapes::ShapeRef.new(shape: CreateVpnGatewayResult)
|
19184
19405
|
end)
|
19185
19406
|
|
19407
|
+
api.add_operation(:delete_capacity_manager_data_export, Seahorse::Model::Operation.new.tap do |o|
|
19408
|
+
o.name = "DeleteCapacityManagerDataExport"
|
19409
|
+
o.http_method = "POST"
|
19410
|
+
o.http_request_uri = "/"
|
19411
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteCapacityManagerDataExportRequest)
|
19412
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteCapacityManagerDataExportResult)
|
19413
|
+
end)
|
19414
|
+
|
19186
19415
|
api.add_operation(:delete_carrier_gateway, Seahorse::Model::Operation.new.tap do |o|
|
19187
19416
|
o.name = "DeleteCarrierGateway"
|
19188
19417
|
o.http_method = "POST"
|
@@ -20069,6 +20298,20 @@ module Aws::EC2
|
|
20069
20298
|
)
|
20070
20299
|
end)
|
20071
20300
|
|
20301
|
+
api.add_operation(:describe_capacity_manager_data_exports, Seahorse::Model::Operation.new.tap do |o|
|
20302
|
+
o.name = "DescribeCapacityManagerDataExports"
|
20303
|
+
o.http_method = "POST"
|
20304
|
+
o.http_request_uri = "/"
|
20305
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeCapacityManagerDataExportsRequest)
|
20306
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeCapacityManagerDataExportsResult)
|
20307
|
+
o[:pager] = Aws::Pager.new(
|
20308
|
+
limit_key: "max_results",
|
20309
|
+
tokens: {
|
20310
|
+
"next_token" => "next_token"
|
20311
|
+
}
|
20312
|
+
)
|
20313
|
+
end)
|
20314
|
+
|
20072
20315
|
api.add_operation(:describe_capacity_reservation_billing_requests, Seahorse::Model::Operation.new.tap do |o|
|
20073
20316
|
o.name = "DescribeCapacityReservationBillingRequests"
|
20074
20317
|
o.http_method = "POST"
|
@@ -22118,6 +22361,14 @@ module Aws::EC2
|
|
22118
22361
|
o.output = Shapes::ShapeRef.new(shape: DisableAwsNetworkPerformanceMetricSubscriptionResult)
|
22119
22362
|
end)
|
22120
22363
|
|
22364
|
+
api.add_operation(:disable_capacity_manager, Seahorse::Model::Operation.new.tap do |o|
|
22365
|
+
o.name = "DisableCapacityManager"
|
22366
|
+
o.http_method = "POST"
|
22367
|
+
o.http_request_uri = "/"
|
22368
|
+
o.input = Shapes::ShapeRef.new(shape: DisableCapacityManagerRequest)
|
22369
|
+
o.output = Shapes::ShapeRef.new(shape: DisableCapacityManagerResult)
|
22370
|
+
end)
|
22371
|
+
|
22121
22372
|
api.add_operation(:disable_ebs_encryption_by_default, Seahorse::Model::Operation.new.tap do |o|
|
22122
22373
|
o.name = "DisableEbsEncryptionByDefault"
|
22123
22374
|
o.http_method = "POST"
|
@@ -22406,6 +22657,14 @@ module Aws::EC2
|
|
22406
22657
|
o.output = Shapes::ShapeRef.new(shape: EnableAwsNetworkPerformanceMetricSubscriptionResult)
|
22407
22658
|
end)
|
22408
22659
|
|
22660
|
+
api.add_operation(:enable_capacity_manager, Seahorse::Model::Operation.new.tap do |o|
|
22661
|
+
o.name = "EnableCapacityManager"
|
22662
|
+
o.http_method = "POST"
|
22663
|
+
o.http_request_uri = "/"
|
22664
|
+
o.input = Shapes::ShapeRef.new(shape: EnableCapacityManagerRequest)
|
22665
|
+
o.output = Shapes::ShapeRef.new(shape: EnableCapacityManagerResult)
|
22666
|
+
end)
|
22667
|
+
|
22409
22668
|
api.add_operation(:enable_ebs_encryption_by_default, Seahorse::Model::Operation.new.tap do |o|
|
22410
22669
|
o.name = "EnableEbsEncryptionByDefault"
|
22411
22670
|
o.http_method = "POST"
|
@@ -22634,6 +22893,42 @@ module Aws::EC2
|
|
22634
22893
|
)
|
22635
22894
|
end)
|
22636
22895
|
|
22896
|
+
api.add_operation(:get_capacity_manager_attributes, Seahorse::Model::Operation.new.tap do |o|
|
22897
|
+
o.name = "GetCapacityManagerAttributes"
|
22898
|
+
o.http_method = "POST"
|
22899
|
+
o.http_request_uri = "/"
|
22900
|
+
o.input = Shapes::ShapeRef.new(shape: GetCapacityManagerAttributesRequest)
|
22901
|
+
o.output = Shapes::ShapeRef.new(shape: GetCapacityManagerAttributesResult)
|
22902
|
+
end)
|
22903
|
+
|
22904
|
+
api.add_operation(:get_capacity_manager_metric_data, Seahorse::Model::Operation.new.tap do |o|
|
22905
|
+
o.name = "GetCapacityManagerMetricData"
|
22906
|
+
o.http_method = "POST"
|
22907
|
+
o.http_request_uri = "/"
|
22908
|
+
o.input = Shapes::ShapeRef.new(shape: GetCapacityManagerMetricDataRequest)
|
22909
|
+
o.output = Shapes::ShapeRef.new(shape: GetCapacityManagerMetricDataResult)
|
22910
|
+
o[:pager] = Aws::Pager.new(
|
22911
|
+
limit_key: "max_results",
|
22912
|
+
tokens: {
|
22913
|
+
"next_token" => "next_token"
|
22914
|
+
}
|
22915
|
+
)
|
22916
|
+
end)
|
22917
|
+
|
22918
|
+
api.add_operation(:get_capacity_manager_metric_dimensions, Seahorse::Model::Operation.new.tap do |o|
|
22919
|
+
o.name = "GetCapacityManagerMetricDimensions"
|
22920
|
+
o.http_method = "POST"
|
22921
|
+
o.http_request_uri = "/"
|
22922
|
+
o.input = Shapes::ShapeRef.new(shape: GetCapacityManagerMetricDimensionsRequest)
|
22923
|
+
o.output = Shapes::ShapeRef.new(shape: GetCapacityManagerMetricDimensionsResult)
|
22924
|
+
o[:pager] = Aws::Pager.new(
|
22925
|
+
limit_key: "max_results",
|
22926
|
+
tokens: {
|
22927
|
+
"next_token" => "next_token"
|
22928
|
+
}
|
22929
|
+
)
|
22930
|
+
end)
|
22931
|
+
|
22637
22932
|
api.add_operation(:get_capacity_reservation_usage, Seahorse::Model::Operation.new.tap do |o|
|
22638
22933
|
o.name = "GetCapacityReservationUsage"
|
22639
22934
|
o.http_method = "POST"
|
@@ -24410,6 +24705,14 @@ module Aws::EC2
|
|
24410
24705
|
o.output = Shapes::ShapeRef.new(shape: UnmonitorInstancesResult)
|
24411
24706
|
end)
|
24412
24707
|
|
24708
|
+
api.add_operation(:update_capacity_manager_organizations_access, Seahorse::Model::Operation.new.tap do |o|
|
24709
|
+
o.name = "UpdateCapacityManagerOrganizationsAccess"
|
24710
|
+
o.http_method = "POST"
|
24711
|
+
o.http_request_uri = "/"
|
24712
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateCapacityManagerOrganizationsAccessRequest)
|
24713
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateCapacityManagerOrganizationsAccessResult)
|
24714
|
+
end)
|
24715
|
+
|
24413
24716
|
api.add_operation(:update_security_group_rule_descriptions_egress, Seahorse::Model::Operation.new.tap do |o|
|
24414
24717
|
o.name = "UpdateSecurityGroupRuleDescriptionsEgress"
|
24415
24718
|
o.http_method = "POST"
|
data/lib/aws-sdk-ec2/instance.rb
CHANGED
@@ -785,7 +785,7 @@ module Aws::EC2
|
|
785
785
|
# image = instance.create_image({
|
786
786
|
# tag_specifications: [
|
787
787
|
# {
|
788
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task
|
788
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, capacity-manager-data-export
|
789
789
|
# tags: [
|
790
790
|
# {
|
791
791
|
# key: "String",
|