aws-sdk-core 2.11.432 → 2.11.433

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 85df8b25fb3d591086738060a2cad73cec054c7b
4
- data.tar.gz: db95baf67ab8c5c3e0216b1a3746c36706ead431
3
+ metadata.gz: 23048842422bcb3c8ade6f3e6860dbc8311e5017
4
+ data.tar.gz: ebe79d72150f15160601556860147c00f7f82cd5
5
5
  SHA512:
6
- metadata.gz: 83468f1331222aeaaabcc1f469ac7d92f7559aa56706498deb46ce0d0503aa4a46d32790653ba241414c505d04fef82d7ff871fcc1a7a975ccb2ffa61ba23b17
7
- data.tar.gz: e40f901ffe1f1fb3e35ccb56cc864f104cbf5a7a0932048b2d1406bc266eb149f622e5b62c4aeb8c80121e263169a5d10abb6ee1d5911513013b8f4795f5e602
6
+ metadata.gz: eeaa615063323123ede3034024bc6f984cce8b14256769a2737868147c739aa8da66ec577a6b596abc9a22879c1b6665ad68cad9b2d541dc8b0e5f10605d16a2
7
+ data.tar.gz: 6ab9fdf0ee9bfdc733e58e865c641234484d094fdc37c160f472b1be319805aadc0d98c89bd6916f3e97b1a2923220336e4e973fec0c9f268bcf465e96be36bb
@@ -1508,6 +1508,7 @@
1508
1508
  "OFFLINE"
1509
1509
  ]
1510
1510
  },
1511
+ "ConnectionStatusUpdatedTime":{"type":"timestamp"},
1511
1512
  "Contact":{
1512
1513
  "type":"structure",
1513
1514
  "members":{
@@ -2063,9 +2064,11 @@
2063
2064
  "NetworkProfileName":{"shape":"NetworkProfileName"},
2064
2065
  "RoomArn":{"shape":"Arn"},
2065
2066
  "RoomName":{"shape":"RoomName"},
2066
- "DeviceStatusInfo":{"shape":"DeviceStatusInfo"}
2067
+ "DeviceStatusInfo":{"shape":"DeviceStatusInfo"},
2068
+ "CreatedTime":{"shape":"DeviceDataCreatedTime"}
2067
2069
  }
2068
2070
  },
2071
+ "DeviceDataCreatedTime":{"type":"timestamp"},
2069
2072
  "DeviceDataList":{
2070
2073
  "type":"list",
2071
2074
  "member":{"shape":"DeviceData"}
@@ -2170,7 +2173,8 @@
2170
2173
  "type":"structure",
2171
2174
  "members":{
2172
2175
  "DeviceStatusDetails":{"shape":"DeviceStatusDetails"},
2173
- "ConnectionStatus":{"shape":"ConnectionStatus"}
2176
+ "ConnectionStatus":{"shape":"ConnectionStatus"},
2177
+ "ConnectionStatusUpdatedTime":{"shape":"ConnectionStatusUpdatedTime"}
2174
2178
  }
2175
2179
  },
2176
2180
  "DeviceType":{
@@ -243,6 +243,20 @@
243
243
  {"shape":"InternalServerException"}
244
244
  ]
245
245
  },
246
+ "ListConfigurationHistory":{
247
+ "name":"ListConfigurationHistory",
248
+ "http":{
249
+ "method":"POST",
250
+ "requestUri":"/"
251
+ },
252
+ "input":{"shape":"ListConfigurationHistoryRequest"},
253
+ "output":{"shape":"ListConfigurationHistoryResponse"},
254
+ "errors":[
255
+ {"shape":"ValidationException"},
256
+ {"shape":"ResourceNotFoundException"},
257
+ {"shape":"InternalServerException"}
258
+ ]
259
+ },
246
260
  "ListLogPatternSets":{
247
261
  "name":"ListLogPatternSets",
248
262
  "http":{
@@ -431,6 +445,41 @@
431
445
  "min":1
432
446
  },
433
447
  "ComponentName":{"type":"string"},
448
+ "ConfigurationEvent":{
449
+ "type":"structure",
450
+ "members":{
451
+ "MonitoredResourceARN":{"shape":"ConfigurationEventMonitoredResourceARN"},
452
+ "EventStatus":{"shape":"ConfigurationEventStatus"},
453
+ "EventResourceType":{"shape":"ConfigurationEventResourceType"},
454
+ "EventTime":{"shape":"ConfigurationEventTime"},
455
+ "EventDetail":{"shape":"ConfigurationEventDetail"},
456
+ "EventResourceName":{"shape":"ConfigurationEventResourceName"}
457
+ }
458
+ },
459
+ "ConfigurationEventDetail":{"type":"string"},
460
+ "ConfigurationEventList":{
461
+ "type":"list",
462
+ "member":{"shape":"ConfigurationEvent"}
463
+ },
464
+ "ConfigurationEventMonitoredResourceARN":{"type":"string"},
465
+ "ConfigurationEventResourceName":{"type":"string"},
466
+ "ConfigurationEventResourceType":{
467
+ "type":"string",
468
+ "enum":[
469
+ "CLOUDWATCH_ALARM",
470
+ "CLOUDFORMATION",
471
+ "SSM_ASSOCIATION"
472
+ ]
473
+ },
474
+ "ConfigurationEventStatus":{
475
+ "type":"string",
476
+ "enum":[
477
+ "INFO",
478
+ "WARN",
479
+ "ERROR"
480
+ ]
481
+ },
482
+ "ConfigurationEventTime":{"type":"timestamp"},
434
483
  "CreateApplicationRequest":{
435
484
  "type":"structure",
436
485
  "required":["ResourceGroupName"],
@@ -724,6 +773,24 @@
724
773
  "NextToken":{"shape":"PaginationToken"}
725
774
  }
726
775
  },
776
+ "ListConfigurationHistoryRequest":{
777
+ "type":"structure",
778
+ "members":{
779
+ "ResourceGroupName":{"shape":"ResourceGroupName"},
780
+ "StartTime":{"shape":"StartTime"},
781
+ "EndTime":{"shape":"EndTime"},
782
+ "EventStatus":{"shape":"ConfigurationEventStatus"},
783
+ "MaxResults":{"shape":"MaxEntities"},
784
+ "NextToken":{"shape":"PaginationToken"}
785
+ }
786
+ },
787
+ "ListConfigurationHistoryResponse":{
788
+ "type":"structure",
789
+ "members":{
790
+ "EventList":{"shape":"ConfigurationEventList"},
791
+ "NextToken":{"shape":"PaginationToken"}
792
+ }
793
+ },
727
794
  "ListLogPatternSetsRequest":{
728
795
  "type":"structure",
729
796
  "required":["ResourceGroupName"],
@@ -10,6 +10,11 @@
10
10
  "output_token": "NextToken",
11
11
  "limit_key": "MaxResults"
12
12
  },
13
+ "ListConfigurationHistory": {
14
+ "input_token": "NextToken",
15
+ "output_token": "NextToken",
16
+ "limit_key": "MaxResults"
17
+ },
13
18
  "ListLogPatternSets": {
14
19
  "input_token": "NextToken",
15
20
  "output_token": "NextToken",
@@ -1691,6 +1691,15 @@
1691
1691
  "input":{"shape":"DescribeInternetGatewaysRequest"},
1692
1692
  "output":{"shape":"DescribeInternetGatewaysResult"}
1693
1693
  },
1694
+ "DescribeIpv6Pools":{
1695
+ "name":"DescribeIpv6Pools",
1696
+ "http":{
1697
+ "method":"POST",
1698
+ "requestUri":"/"
1699
+ },
1700
+ "input":{"shape":"DescribeIpv6PoolsRequest"},
1701
+ "output":{"shape":"DescribeIpv6PoolsResult"}
1702
+ },
1694
1703
  "DescribeKeyPairs":{
1695
1704
  "name":"DescribeKeyPairs",
1696
1705
  "http":{
@@ -2547,6 +2556,15 @@
2547
2556
  "input":{"shape":"ExportTransitGatewayRoutesRequest"},
2548
2557
  "output":{"shape":"ExportTransitGatewayRoutesResult"}
2549
2558
  },
2559
+ "GetAssociatedIpv6PoolCidrs":{
2560
+ "name":"GetAssociatedIpv6PoolCidrs",
2561
+ "http":{
2562
+ "method":"POST",
2563
+ "requestUri":"/"
2564
+ },
2565
+ "input":{"shape":"GetAssociatedIpv6PoolCidrsRequest"},
2566
+ "output":{"shape":"GetAssociatedIpv6PoolCidrsResult"}
2567
+ },
2550
2568
  "GetCapacityReservationUsage":{
2551
2569
  "name":"GetCapacityReservationUsage",
2552
2570
  "http":{
@@ -4292,6 +4310,8 @@
4292
4310
  "shape":"VpcId",
4293
4311
  "locationName":"vpcId"
4294
4312
  },
4313
+ "Ipv6Pool":{"shape":"String"},
4314
+ "Ipv6CidrBlock":{"shape":"String"},
4295
4315
  "Ipv6CidrBlockNetworkBorderGroup":{"shape":"String"}
4296
4316
  }
4297
4317
  },
@@ -7749,6 +7769,8 @@
7749
7769
  "shape":"Boolean",
7750
7770
  "locationName":"amazonProvidedIpv6CidrBlock"
7751
7771
  },
7772
+ "Ipv6Pool":{"shape":"String"},
7773
+ "Ipv6CidrBlock":{"shape":"String"},
7752
7774
  "DryRun":{
7753
7775
  "shape":"Boolean",
7754
7776
  "locationName":"dryRun"
@@ -10395,6 +10417,35 @@
10395
10417
  }
10396
10418
  }
10397
10419
  },
10420
+ "DescribeIpv6PoolsRequest":{
10421
+ "type":"structure",
10422
+ "members":{
10423
+ "PoolIds":{
10424
+ "shape":"ValueStringList",
10425
+ "locationName":"PoolId"
10426
+ },
10427
+ "NextToken":{"shape":"NextToken"},
10428
+ "MaxResults":{"shape":"Ipv6PoolMaxResults"},
10429
+ "DryRun":{"shape":"Boolean"},
10430
+ "Filters":{
10431
+ "shape":"FilterList",
10432
+ "locationName":"Filter"
10433
+ }
10434
+ }
10435
+ },
10436
+ "DescribeIpv6PoolsResult":{
10437
+ "type":"structure",
10438
+ "members":{
10439
+ "Ipv6Pools":{
10440
+ "shape":"Ipv6PoolSet",
10441
+ "locationName":"ipv6PoolSet"
10442
+ },
10443
+ "NextToken":{
10444
+ "shape":"NextToken",
10445
+ "locationName":"nextToken"
10446
+ }
10447
+ }
10448
+ },
10398
10449
  "DescribeKeyPairsRequest":{
10399
10450
  "type":"structure",
10400
10451
  "members":{
@@ -14741,6 +14792,29 @@
14741
14792
  "type":"string",
14742
14793
  "enum":["ipsec.1"]
14743
14794
  },
14795
+ "GetAssociatedIpv6PoolCidrsRequest":{
14796
+ "type":"structure",
14797
+ "required":["PoolId"],
14798
+ "members":{
14799
+ "PoolId":{"shape":"String"},
14800
+ "NextToken":{"shape":"NextToken"},
14801
+ "MaxResults":{"shape":"Ipv6PoolMaxResults"},
14802
+ "DryRun":{"shape":"Boolean"}
14803
+ }
14804
+ },
14805
+ "GetAssociatedIpv6PoolCidrsResult":{
14806
+ "type":"structure",
14807
+ "members":{
14808
+ "Ipv6CidrAssociations":{
14809
+ "shape":"Ipv6CidrAssociationSet",
14810
+ "locationName":"ipv6CidrAssociationSet"
14811
+ },
14812
+ "NextToken":{
14813
+ "shape":"String",
14814
+ "locationName":"nextToken"
14815
+ }
14816
+ }
14817
+ },
14744
14818
  "GetCapacityReservationUsageRequest":{
14745
14819
  "type":"structure",
14746
14820
  "required":["CapacityReservationId"],
@@ -18020,6 +18094,26 @@
18020
18094
  "locationName":"item"
18021
18095
  }
18022
18096
  },
18097
+ "Ipv6CidrAssociation":{
18098
+ "type":"structure",
18099
+ "members":{
18100
+ "Ipv6Cidr":{
18101
+ "shape":"String",
18102
+ "locationName":"ipv6Cidr"
18103
+ },
18104
+ "AssociatedResource":{
18105
+ "shape":"String",
18106
+ "locationName":"associatedResource"
18107
+ }
18108
+ }
18109
+ },
18110
+ "Ipv6CidrAssociationSet":{
18111
+ "type":"list",
18112
+ "member":{
18113
+ "shape":"Ipv6CidrAssociation",
18114
+ "locationName":"item"
18115
+ }
18116
+ },
18023
18117
  "Ipv6CidrBlock":{
18024
18118
  "type":"structure",
18025
18119
  "members":{
@@ -18037,6 +18131,39 @@
18037
18131
  }
18038
18132
  },
18039
18133
  "Ipv6Flag":{"type":"boolean"},
18134
+ "Ipv6Pool":{
18135
+ "type":"structure",
18136
+ "members":{
18137
+ "PoolId":{
18138
+ "shape":"String",
18139
+ "locationName":"poolId"
18140
+ },
18141
+ "Description":{
18142
+ "shape":"String",
18143
+ "locationName":"description"
18144
+ },
18145
+ "PoolCidrBlocks":{
18146
+ "shape":"PoolCidrBlocksSet",
18147
+ "locationName":"poolCidrBlockSet"
18148
+ },
18149
+ "Tags":{
18150
+ "shape":"TagList",
18151
+ "locationName":"tagSet"
18152
+ }
18153
+ }
18154
+ },
18155
+ "Ipv6PoolMaxResults":{
18156
+ "type":"integer",
18157
+ "max":1000,
18158
+ "min":1
18159
+ },
18160
+ "Ipv6PoolSet":{
18161
+ "type":"list",
18162
+ "member":{
18163
+ "shape":"Ipv6Pool",
18164
+ "locationName":"item"
18165
+ }
18166
+ },
18040
18167
  "Ipv6Range":{
18041
18168
  "type":"structure",
18042
18169
  "members":{
@@ -21539,6 +21666,22 @@
21539
21666
  "type":"string",
21540
21667
  "enum":["Windows"]
21541
21668
  },
21669
+ "PoolCidrBlock":{
21670
+ "type":"structure",
21671
+ "members":{
21672
+ "Cidr":{
21673
+ "shape":"String",
21674
+ "locationName":"poolCidrBlock"
21675
+ }
21676
+ }
21677
+ },
21678
+ "PoolCidrBlocksSet":{
21679
+ "type":"list",
21680
+ "member":{
21681
+ "shape":"PoolCidrBlock",
21682
+ "locationName":"item"
21683
+ }
21684
+ },
21542
21685
  "PoolMaxResults":{
21543
21686
  "type":"integer",
21544
21687
  "max":10,
@@ -21840,6 +21983,7 @@
21840
21983
  "members":{
21841
21984
  "Cidr":{"shape":"String"},
21842
21985
  "CidrAuthorizationContext":{"shape":"CidrAuthorizationContext"},
21986
+ "PubliclyAdvertisable":{"shape":"Boolean"},
21843
21987
  "Description":{"shape":"String"},
21844
21988
  "DryRun":{"shape":"Boolean"}
21845
21989
  }
@@ -28537,6 +28681,10 @@
28537
28681
  "shape":"VpcCidrBlockState",
28538
28682
  "locationName":"ipv6CidrBlockState"
28539
28683
  },
28684
+ "Ipv6Pool":{
28685
+ "shape":"String",
28686
+ "locationName":"ipv6Pool"
28687
+ },
28540
28688
  "NetworkBorderGroup":{
28541
28689
  "shape":"String",
28542
28690
  "locationName":"networkBorderGroup"
@@ -174,6 +174,12 @@
174
174
  "output_token": "NextToken",
175
175
  "result_key": "InternetGateways"
176
176
  },
177
+ "DescribeIpv6Pools": {
178
+ "input_token": "NextToken",
179
+ "limit_key": "MaxResults",
180
+ "output_token": "NextToken",
181
+ "result_key": "Ipv6Pools"
182
+ },
177
183
  "DescribeKeyPairs": {
178
184
  "result_key": "KeyPairs"
179
185
  },
@@ -440,6 +446,12 @@
440
446
  "DescribeVpnGateways": {
441
447
  "result_key": "VpnGateways"
442
448
  },
449
+ "GetAssociatedIpv6PoolCidrs": {
450
+ "input_token": "NextToken",
451
+ "limit_key": "MaxResults",
452
+ "output_token": "NextToken",
453
+ "result_key": "Ipv6CidrAssociations"
454
+ },
443
455
  "GetTransitGatewayAttachmentPropagations": {
444
456
  "input_token": "NextToken",
445
457
  "limit_key": "MaxResults",
@@ -915,7 +915,9 @@
915
915
  "NETWORK_ERRORS",
916
916
  "INTERNAL_ERROR",
917
917
  "INSUFFICIENT_CLOUDHSM_HSMS",
918
- "USER_LOCKED_OUT"
918
+ "USER_LOCKED_OUT",
919
+ "USER_NOT_FOUND",
920
+ "USER_LOGGED_IN"
919
921
  ]
920
922
  },
921
923
  "ConnectionStateType":{
@@ -1696,7 +1698,8 @@
1696
1698
  },
1697
1699
  "KeyStorePasswordType":{
1698
1700
  "type":"string",
1699
- "min":1,
1701
+ "max":32,
1702
+ "min":7,
1700
1703
  "sensitive":true
1701
1704
  },
1702
1705
  "KeyUnavailableException":{
@@ -721,7 +721,8 @@
721
721
  {"shape":"ServiceException"},
722
722
  {"shape":"ResourceNotFoundException"},
723
723
  {"shape":"InvalidParameterValueException"},
724
- {"shape":"TooManyRequestsException"}
724
+ {"shape":"TooManyRequestsException"},
725
+ {"shape":"ResourceConflictException"}
725
726
  ]
726
727
  },
727
728
  "UntagResource":{
@@ -736,7 +737,8 @@
736
737
  {"shape":"ServiceException"},
737
738
  {"shape":"ResourceNotFoundException"},
738
739
  {"shape":"InvalidParameterValueException"},
739
- {"shape":"TooManyRequestsException"}
740
+ {"shape":"TooManyRequestsException"},
741
+ {"shape":"ResourceConflictException"}
740
742
  ]
741
743
  },
742
744
  "UpdateAlias":{
@@ -1841,7 +1843,10 @@
1841
1843
  "EniLimitExceeded",
1842
1844
  "InsufficientRolePermissions",
1843
1845
  "InvalidConfiguration",
1844
- "InternalError"
1846
+ "InternalError",
1847
+ "SubnetOutOfIPAddresses",
1848
+ "InvalidSubnet",
1849
+ "InvalidSecurityGroup"
1845
1850
  ]
1846
1851
  },
1847
1852
  "Layer":{
@@ -2670,7 +2675,9 @@
2670
2675
  "InsufficientRolePermissions",
2671
2676
  "InvalidConfiguration",
2672
2677
  "InternalError",
2673
- "SubnetOutOfIPAddresses"
2678
+ "SubnetOutOfIPAddresses",
2679
+ "InvalidSubnet",
2680
+ "InvalidSecurityGroup"
2674
2681
  ]
2675
2682
  },
2676
2683
  "StatementId":{
@@ -508,7 +508,8 @@
508
508
  "MetricName":{"shape":"MetricName"},
509
509
  "Dimensions":{"shape":"Dimensions"},
510
510
  "Stat":{"shape":"Stat"},
511
- "Configuration":{"shape":"AnomalyDetectorConfiguration"}
511
+ "Configuration":{"shape":"AnomalyDetectorConfiguration"},
512
+ "StateValue":{"shape":"AnomalyDetectorStateValue"}
512
513
  }
513
514
  },
514
515
  "AnomalyDetectorConfiguration":{
@@ -523,6 +524,14 @@
523
524
  "member":{"shape":"Range"}
524
525
  },
525
526
  "AnomalyDetectorMetricTimezone":{"type":"string"},
527
+ "AnomalyDetectorStateValue":{
528
+ "type":"string",
529
+ "enum":[
530
+ "PENDING_TRAINING",
531
+ "TRAINED_INSUFFICIENT_DATA",
532
+ "TRAINED"
533
+ ]
534
+ },
526
535
  "AnomalyDetectors":{
527
536
  "type":"list",
528
537
  "member":{"shape":"AnomalyDetector"}
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.432'
2
+ VERSION = '2.11.433'
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.432
4
+ version: 2.11.433
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: 2020-01-17 00:00:00.000000000 Z
11
+ date: 2020-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath