aws-sdk-core 2.11.157 → 2.11.158

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f35c800dff0c1d249b175616850591d8b4619691
4
- data.tar.gz: ad3eadf6c7bec96c58540a97500af56d171b8459
3
+ metadata.gz: 692c3174bc5f29986f01c761975bd5b71123cba9
4
+ data.tar.gz: 2765065b8acd0f1251333df40a2d2e6f880de441
5
5
  SHA512:
6
- metadata.gz: 8f32ab3c0f20d8756999df56d558bda0f112428f0ea32d4a33ff9f05bc5a9ff852fef01d73158ce0abd15f9c19d4eecd4bfc707ba53d0d58a418408b4e9578b8
7
- data.tar.gz: 0c8db523881ce1fb3f4795c5e8f0bb2fe759391e0ca2a54ec067818b2c374ffa273b726f9982e48883abd5e00033fea3fe67d7b498e7894ba3391ea82f235cb6
6
+ metadata.gz: 6e0bf99be09f0f372123675550fa5212b9eaac708857cad2a894768f9f7ef1c87db786de11321a61cb7d2228aaea9255181772f67d948f7c13b127f0e34dc73b
7
+ data.tar.gz: 874f3a6b3eb32f0ea77277b1ada4c114fcebbf6c2d96e7b52ea41e3a7c0436e965029aa9d9cc4ed7957e85b6dc270c239b227ed8b7ba3bc7abff2d3cdedfa3ce
@@ -214,6 +214,15 @@
214
214
  "input":{"shape":"CancelBundleTaskRequest"},
215
215
  "output":{"shape":"CancelBundleTaskResult"}
216
216
  },
217
+ "CancelCapacityReservation":{
218
+ "name":"CancelCapacityReservation",
219
+ "http":{
220
+ "method":"POST",
221
+ "requestUri":"/"
222
+ },
223
+ "input":{"shape":"CancelCapacityReservationRequest"},
224
+ "output":{"shape":"CancelCapacityReservationResult"}
225
+ },
217
226
  "CancelConversionTask":{
218
227
  "name":"CancelConversionTask",
219
228
  "http":{
@@ -302,6 +311,15 @@
302
311
  "input":{"shape":"CopySnapshotRequest"},
303
312
  "output":{"shape":"CopySnapshotResult"}
304
313
  },
314
+ "CreateCapacityReservation":{
315
+ "name":"CreateCapacityReservation",
316
+ "http":{
317
+ "method":"POST",
318
+ "requestUri":"/"
319
+ },
320
+ "input":{"shape":"CreateCapacityReservationRequest"},
321
+ "output":{"shape":"CreateCapacityReservationResult"}
322
+ },
305
323
  "CreateCustomerGateway":{
306
324
  "name":"CreateCustomerGateway",
307
325
  "http":{
@@ -970,6 +988,15 @@
970
988
  "input":{"shape":"DescribeByoipCidrsRequest"},
971
989
  "output":{"shape":"DescribeByoipCidrsResult"}
972
990
  },
991
+ "DescribeCapacityReservations":{
992
+ "name":"DescribeCapacityReservations",
993
+ "http":{
994
+ "method":"POST",
995
+ "requestUri":"/"
996
+ },
997
+ "input":{"shape":"DescribeCapacityReservationsRequest"},
998
+ "output":{"shape":"DescribeCapacityReservationsResult"}
999
+ },
973
1000
  "DescribeClassicLinkInstances":{
974
1001
  "name":"DescribeClassicLinkInstances",
975
1002
  "http":{
@@ -1925,6 +1952,15 @@
1925
1952
  "input":{"shape":"ImportVolumeRequest"},
1926
1953
  "output":{"shape":"ImportVolumeResult"}
1927
1954
  },
1955
+ "ModifyCapacityReservation":{
1956
+ "name":"ModifyCapacityReservation",
1957
+ "http":{
1958
+ "method":"POST",
1959
+ "requestUri":"/"
1960
+ },
1961
+ "input":{"shape":"ModifyCapacityReservationRequest"},
1962
+ "output":{"shape":"ModifyCapacityReservationResult"}
1963
+ },
1928
1964
  "ModifyFleet":{
1929
1965
  "name":"ModifyFleet",
1930
1966
  "http":{
@@ -1984,6 +2020,15 @@
1984
2020
  },
1985
2021
  "input":{"shape":"ModifyInstanceAttributeRequest"}
1986
2022
  },
2023
+ "ModifyInstanceCapacityReservationAttributes":{
2024
+ "name":"ModifyInstanceCapacityReservationAttributes",
2025
+ "http":{
2026
+ "method":"POST",
2027
+ "requestUri":"/"
2028
+ },
2029
+ "input":{"shape":"ModifyInstanceCapacityReservationAttributesRequest"},
2030
+ "output":{"shape":"ModifyInstanceCapacityReservationAttributesResult"}
2031
+ },
1987
2032
  "ModifyInstanceCreditSpecification":{
1988
2033
  "name":"ModifyInstanceCreditSpecification",
1989
2034
  "http":{
@@ -3586,6 +3631,23 @@
3586
3631
  }
3587
3632
  }
3588
3633
  },
3634
+ "CancelCapacityReservationRequest":{
3635
+ "type":"structure",
3636
+ "required":["CapacityReservationId"],
3637
+ "members":{
3638
+ "CapacityReservationId":{"shape":"String"},
3639
+ "DryRun":{"shape":"Boolean"}
3640
+ }
3641
+ },
3642
+ "CancelCapacityReservationResult":{
3643
+ "type":"structure",
3644
+ "members":{
3645
+ "Return":{
3646
+ "shape":"Boolean",
3647
+ "locationName":"return"
3648
+ }
3649
+ }
3650
+ },
3589
3651
  "CancelConversionRequest":{
3590
3652
  "type":"structure",
3591
3653
  "required":["ConversionTaskId"],
@@ -3815,6 +3877,157 @@
3815
3877
  "locationName":"item"
3816
3878
  }
3817
3879
  },
3880
+ "CapacityReservation":{
3881
+ "type":"structure",
3882
+ "members":{
3883
+ "CapacityReservationId":{
3884
+ "shape":"String",
3885
+ "locationName":"capacityReservationId"
3886
+ },
3887
+ "InstanceType":{
3888
+ "shape":"String",
3889
+ "locationName":"instanceType"
3890
+ },
3891
+ "InstancePlatform":{
3892
+ "shape":"CapacityReservationInstancePlatform",
3893
+ "locationName":"instancePlatform"
3894
+ },
3895
+ "AvailabilityZone":{
3896
+ "shape":"String",
3897
+ "locationName":"availabilityZone"
3898
+ },
3899
+ "Tenancy":{
3900
+ "shape":"CapacityReservationTenancy",
3901
+ "locationName":"tenancy"
3902
+ },
3903
+ "TotalInstanceCount":{
3904
+ "shape":"Integer",
3905
+ "locationName":"totalInstanceCount"
3906
+ },
3907
+ "AvailableInstanceCount":{
3908
+ "shape":"Integer",
3909
+ "locationName":"availableInstanceCount"
3910
+ },
3911
+ "EbsOptimized":{
3912
+ "shape":"Boolean",
3913
+ "locationName":"ebsOptimized"
3914
+ },
3915
+ "EphemeralStorage":{
3916
+ "shape":"Boolean",
3917
+ "locationName":"ephemeralStorage"
3918
+ },
3919
+ "State":{
3920
+ "shape":"CapacityReservationState",
3921
+ "locationName":"state"
3922
+ },
3923
+ "EndDate":{
3924
+ "shape":"DateTime",
3925
+ "locationName":"endDate"
3926
+ },
3927
+ "EndDateType":{
3928
+ "shape":"EndDateType",
3929
+ "locationName":"endDateType"
3930
+ },
3931
+ "InstanceMatchCriteria":{
3932
+ "shape":"InstanceMatchCriteria",
3933
+ "locationName":"instanceMatchCriteria"
3934
+ },
3935
+ "CreateDate":{
3936
+ "shape":"DateTime",
3937
+ "locationName":"createDate"
3938
+ },
3939
+ "Tags":{
3940
+ "shape":"TagList",
3941
+ "locationName":"tagSet"
3942
+ }
3943
+ }
3944
+ },
3945
+ "CapacityReservationIdSet":{
3946
+ "type":"list",
3947
+ "member":{
3948
+ "shape":"String",
3949
+ "locationName":"item"
3950
+ }
3951
+ },
3952
+ "CapacityReservationInstancePlatform":{
3953
+ "type":"string",
3954
+ "enum":[
3955
+ "Linux/UNIX",
3956
+ "Red Hat Enterprise Linux",
3957
+ "SUSE Linux",
3958
+ "Windows",
3959
+ "Windows with SQL Server",
3960
+ "Windows with SQL Server Enterprise",
3961
+ "Windows with SQL Server Standard",
3962
+ "Windows with SQL Server Web"
3963
+ ]
3964
+ },
3965
+ "CapacityReservationPreference":{
3966
+ "type":"string",
3967
+ "enum":[
3968
+ "open",
3969
+ "none"
3970
+ ]
3971
+ },
3972
+ "CapacityReservationSet":{
3973
+ "type":"list",
3974
+ "member":{
3975
+ "shape":"CapacityReservation",
3976
+ "locationName":"item"
3977
+ }
3978
+ },
3979
+ "CapacityReservationSpecification":{
3980
+ "type":"structure",
3981
+ "members":{
3982
+ "CapacityReservationPreference":{"shape":"CapacityReservationPreference"},
3983
+ "CapacityReservationTarget":{"shape":"CapacityReservationTarget"}
3984
+ }
3985
+ },
3986
+ "CapacityReservationSpecificationResponse":{
3987
+ "type":"structure",
3988
+ "members":{
3989
+ "CapacityReservationPreference":{
3990
+ "shape":"CapacityReservationPreference",
3991
+ "locationName":"capacityReservationPreference"
3992
+ },
3993
+ "CapacityReservationTarget":{
3994
+ "shape":"CapacityReservationTargetResponse",
3995
+ "locationName":"capacityReservationTarget"
3996
+ }
3997
+ }
3998
+ },
3999
+ "CapacityReservationState":{
4000
+ "type":"string",
4001
+ "enum":[
4002
+ "active",
4003
+ "expired",
4004
+ "cancelled",
4005
+ "pending",
4006
+ "failed"
4007
+ ]
4008
+ },
4009
+ "CapacityReservationTarget":{
4010
+ "type":"structure",
4011
+ "members":{
4012
+ "CapacityReservationId":{"shape":"String"}
4013
+ }
4014
+ },
4015
+ "CapacityReservationTargetResponse":{
4016
+ "type":"structure",
4017
+ "members":{
4018
+ "CapacityReservationId":{
4019
+ "shape":"String",
4020
+ "locationName":"capacityReservationId"
4021
+ }
4022
+ }
4023
+ },
4024
+ "CapacityReservationTenancy":{
4025
+ "type":"string",
4026
+ "enum":[
4027
+ "default",
4028
+ "dedicated"
4029
+ ]
4030
+ },
3818
4031
  "CidrAuthorizationContext":{
3819
4032
  "type":"structure",
3820
4033
  "required":[
@@ -4181,6 +4394,39 @@
4181
4394
  "ThreadsPerCore":{"shape":"Integer"}
4182
4395
  }
4183
4396
  },
4397
+ "CreateCapacityReservationRequest":{
4398
+ "type":"structure",
4399
+ "required":[
4400
+ "InstanceType",
4401
+ "InstancePlatform",
4402
+ "AvailabilityZone",
4403
+ "InstanceCount"
4404
+ ],
4405
+ "members":{
4406
+ "ClientToken":{"shape":"String"},
4407
+ "InstanceType":{"shape":"String"},
4408
+ "InstancePlatform":{"shape":"CapacityReservationInstancePlatform"},
4409
+ "AvailabilityZone":{"shape":"String"},
4410
+ "Tenancy":{"shape":"CapacityReservationTenancy"},
4411
+ "InstanceCount":{"shape":"Integer"},
4412
+ "EbsOptimized":{"shape":"Boolean"},
4413
+ "EphemeralStorage":{"shape":"Boolean"},
4414
+ "EndDate":{"shape":"DateTime"},
4415
+ "EndDateType":{"shape":"EndDateType"},
4416
+ "InstanceMatchCriteria":{"shape":"InstanceMatchCriteria"},
4417
+ "TagSpecifications":{"shape":"TagSpecificationList"},
4418
+ "DryRun":{"shape":"Boolean"}
4419
+ }
4420
+ },
4421
+ "CreateCapacityReservationResult":{
4422
+ "type":"structure",
4423
+ "members":{
4424
+ "CapacityReservation":{
4425
+ "shape":"CapacityReservation",
4426
+ "locationName":"capacityReservation"
4427
+ }
4428
+ }
4429
+ },
4184
4430
  "CreateCustomerGatewayRequest":{
4185
4431
  "type":"structure",
4186
4432
  "required":[
@@ -6104,6 +6350,35 @@
6104
6350
  }
6105
6351
  }
6106
6352
  },
6353
+ "DescribeCapacityReservationsRequest":{
6354
+ "type":"structure",
6355
+ "members":{
6356
+ "CapacityReservationIds":{
6357
+ "shape":"CapacityReservationIdSet",
6358
+ "locationName":"CapacityReservationId"
6359
+ },
6360
+ "NextToken":{"shape":"String"},
6361
+ "MaxResults":{"shape":"Integer"},
6362
+ "Filters":{
6363
+ "shape":"FilterList",
6364
+ "locationName":"Filter"
6365
+ },
6366
+ "DryRun":{"shape":"Boolean"}
6367
+ }
6368
+ },
6369
+ "DescribeCapacityReservationsResult":{
6370
+ "type":"structure",
6371
+ "members":{
6372
+ "NextToken":{
6373
+ "shape":"String",
6374
+ "locationName":"nextToken"
6375
+ },
6376
+ "CapacityReservations":{
6377
+ "shape":"CapacityReservationSet",
6378
+ "locationName":"capacityReservationSet"
6379
+ }
6380
+ }
6381
+ },
6107
6382
  "DescribeClassicLinkInstancesRequest":{
6108
6383
  "type":"structure",
6109
6384
  "members":{
@@ -9153,6 +9428,13 @@
9153
9428
  }
9154
9429
  }
9155
9430
  },
9431
+ "EndDateType":{
9432
+ "type":"string",
9433
+ "enum":[
9434
+ "unlimited",
9435
+ "limited"
9436
+ ]
9437
+ },
9156
9438
  "EventCode":{
9157
9439
  "type":"string",
9158
9440
  "enum":[
@@ -11186,6 +11468,14 @@
11186
11468
  "CpuOptions":{
11187
11469
  "shape":"CpuOptions",
11188
11470
  "locationName":"cpuOptions"
11471
+ },
11472
+ "CapacityReservationId":{
11473
+ "shape":"String",
11474
+ "locationName":"capacityReservationId"
11475
+ },
11476
+ "CapacityReservationSpecification":{
11477
+ "shape":"CapacityReservationSpecificationResponse",
11478
+ "locationName":"capacityReservationSpecification"
11189
11479
  }
11190
11480
  }
11191
11481
  },
@@ -11484,6 +11774,13 @@
11484
11774
  "SpotOptions":{"shape":"SpotMarketOptions"}
11485
11775
  }
11486
11776
  },
11777
+ "InstanceMatchCriteria":{
11778
+ "type":"string",
11779
+ "enum":[
11780
+ "open",
11781
+ "targeted"
11782
+ ]
11783
+ },
11487
11784
  "InstanceMonitoring":{
11488
11785
  "type":"structure",
11489
11786
  "members":{
@@ -12403,6 +12700,26 @@
12403
12700
  "locationName":"BlockDeviceMapping"
12404
12701
  }
12405
12702
  },
12703
+ "LaunchTemplateCapacityReservationSpecificationRequest":{
12704
+ "type":"structure",
12705
+ "members":{
12706
+ "CapacityReservationPreference":{"shape":"CapacityReservationPreference"},
12707
+ "CapacityReservationTarget":{"shape":"CapacityReservationTarget"}
12708
+ }
12709
+ },
12710
+ "LaunchTemplateCapacityReservationSpecificationResponse":{
12711
+ "type":"structure",
12712
+ "members":{
12713
+ "CapacityReservationPreference":{
12714
+ "shape":"CapacityReservationPreference",
12715
+ "locationName":"capacityReservationPreference"
12716
+ },
12717
+ "CapacityReservationTarget":{
12718
+ "shape":"CapacityReservationTargetResponse",
12719
+ "locationName":"capacityReservationTarget"
12720
+ }
12721
+ }
12722
+ },
12406
12723
  "LaunchTemplateConfig":{
12407
12724
  "type":"structure",
12408
12725
  "members":{
@@ -12950,6 +13267,26 @@
12950
13267
  "max":255,
12951
13268
  "min":5
12952
13269
  },
13270
+ "ModifyCapacityReservationRequest":{
13271
+ "type":"structure",
13272
+ "required":["CapacityReservationId"],
13273
+ "members":{
13274
+ "CapacityReservationId":{"shape":"String"},
13275
+ "InstanceCount":{"shape":"Integer"},
13276
+ "EndDate":{"shape":"DateTime"},
13277
+ "EndDateType":{"shape":"EndDateType"},
13278
+ "DryRun":{"shape":"Boolean"}
13279
+ }
13280
+ },
13281
+ "ModifyCapacityReservationResult":{
13282
+ "type":"structure",
13283
+ "members":{
13284
+ "Return":{
13285
+ "shape":"Boolean",
13286
+ "locationName":"return"
13287
+ }
13288
+ }
13289
+ },
12953
13290
  "ModifyFleetRequest":{
12954
13291
  "type":"structure",
12955
13292
  "required":[
@@ -13164,6 +13501,27 @@
13164
13501
  }
13165
13502
  }
13166
13503
  },
13504
+ "ModifyInstanceCapacityReservationAttributesRequest":{
13505
+ "type":"structure",
13506
+ "required":[
13507
+ "InstanceId",
13508
+ "CapacityReservationSpecification"
13509
+ ],
13510
+ "members":{
13511
+ "InstanceId":{"shape":"String"},
13512
+ "CapacityReservationSpecification":{"shape":"CapacityReservationSpecification"},
13513
+ "DryRun":{"shape":"Boolean"}
13514
+ }
13515
+ },
13516
+ "ModifyInstanceCapacityReservationAttributesResult":{
13517
+ "type":"structure",
13518
+ "members":{
13519
+ "Return":{
13520
+ "shape":"Boolean",
13521
+ "locationName":"return"
13522
+ }
13523
+ }
13524
+ },
13167
13525
  "ModifyInstanceCreditSpecificationRequest":{
13168
13526
  "type":"structure",
13169
13527
  "required":["InstanceCreditSpecifications"],
@@ -15421,7 +15779,8 @@
15421
15779
  },
15422
15780
  "InstanceMarketOptions":{"shape":"LaunchTemplateInstanceMarketOptionsRequest"},
15423
15781
  "CreditSpecification":{"shape":"CreditSpecificationRequest"},
15424
- "CpuOptions":{"shape":"LaunchTemplateCpuOptionsRequest"}
15782
+ "CpuOptions":{"shape":"LaunchTemplateCpuOptionsRequest"},
15783
+ "CapacityReservationSpecification":{"shape":"LaunchTemplateCapacityReservationSpecificationRequest"}
15425
15784
  }
15426
15785
  },
15427
15786
  "RequestSpotFleetRequest":{
@@ -16264,6 +16623,10 @@
16264
16623
  "CpuOptions":{
16265
16624
  "shape":"LaunchTemplateCpuOptions",
16266
16625
  "locationName":"cpuOptions"
16626
+ },
16627
+ "CapacityReservationSpecification":{
16628
+ "shape":"LaunchTemplateCapacityReservationSpecificationResponse",
16629
+ "locationName":"capacityReservationSpecification"
16267
16630
  }
16268
16631
  }
16269
16632
  },
@@ -16593,7 +16956,8 @@
16593
16956
  "LaunchTemplate":{"shape":"LaunchTemplateSpecification"},
16594
16957
  "InstanceMarketOptions":{"shape":"InstanceMarketOptionsRequest"},
16595
16958
  "CreditSpecification":{"shape":"CreditSpecificationRequest"},
16596
- "CpuOptions":{"shape":"CpuOptionsRequest"}
16959
+ "CpuOptions":{"shape":"CpuOptionsRequest"},
16960
+ "CapacityReservationSpecification":{"shape":"CapacityReservationSpecification"}
16597
16961
  }
16598
16962
  },
16599
16963
  "RunScheduledInstancesRequest":{
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.157'
2
+ VERSION = '2.11.158'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.157
4
+ version: 2.11.158
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-24 00:00:00.000000000 Z
11
+ date: 2018-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath