aws-sdk-core 2.10.108 → 2.10.109
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be48f51e48bac4cd56a7bb133abffb7dd201dcbb
|
4
|
+
data.tar.gz: 0171847ed8e1c303220e0488c208593d2a5a8d89
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c55476fa83f9d5197b56f92064495bd7b0938ee53db780fa274dc14622028045021f731812ac7660e21f37953a983f6d08af40eb52abd4036eb295c3177d8a4
|
7
|
+
data.tar.gz: 69ce134677a0ddf9dbd1f221f3aa923d2dea7b7738c7bae22eb02983c57e671ab5b4ddf28f20430ac8263f8895d7c3a9b5092ac499899101e5000ef0cb3b4a98
|
@@ -804,7 +804,8 @@
|
|
804
804
|
"deploymentConfiguration":{"shape":"DeploymentConfiguration"},
|
805
805
|
"placementConstraints":{"shape":"PlacementConstraints"},
|
806
806
|
"placementStrategy":{"shape":"PlacementStrategies"},
|
807
|
-
"networkConfiguration":{"shape":"NetworkConfiguration"}
|
807
|
+
"networkConfiguration":{"shape":"NetworkConfiguration"},
|
808
|
+
"healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"}
|
808
809
|
}
|
809
810
|
},
|
810
811
|
"CreateServiceResponse":{
|
@@ -1519,7 +1520,8 @@
|
|
1519
1520
|
"createdAt":{"shape":"Timestamp"},
|
1520
1521
|
"placementConstraints":{"shape":"PlacementConstraints"},
|
1521
1522
|
"placementStrategy":{"shape":"PlacementStrategies"},
|
1522
|
-
"networkConfiguration":{"shape":"NetworkConfiguration"}
|
1523
|
+
"networkConfiguration":{"shape":"NetworkConfiguration"},
|
1524
|
+
"healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"}
|
1523
1525
|
}
|
1524
1526
|
},
|
1525
1527
|
"ServiceEvent":{
|
@@ -1846,7 +1848,8 @@
|
|
1846
1848
|
"deploymentConfiguration":{"shape":"DeploymentConfiguration"},
|
1847
1849
|
"networkConfiguration":{"shape":"NetworkConfiguration"},
|
1848
1850
|
"platformVersion":{"shape":"String"},
|
1849
|
-
"forceNewDeployment":{"shape":"Boolean"}
|
1851
|
+
"forceNewDeployment":{"shape":"Boolean"},
|
1852
|
+
"healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"}
|
1850
1853
|
}
|
1851
1854
|
},
|
1852
1855
|
"UpdateServiceResponse":{
|
@@ -576,7 +576,8 @@
|
|
576
576
|
"type":"string",
|
577
577
|
"enum":[
|
578
578
|
"HEALTHY",
|
579
|
-
"UNHEALTHY"
|
579
|
+
"UNHEALTHY",
|
580
|
+
"UNKNOWN"
|
580
581
|
]
|
581
582
|
},
|
582
583
|
"AgentHealthCode":{
|
@@ -617,8 +618,14 @@
|
|
617
618
|
"type":"structure",
|
618
619
|
"required":["agentId"],
|
619
620
|
"members":{
|
621
|
+
"hostname":{"shape":"Hostname"},
|
620
622
|
"agentId":{"shape":"AgentId"},
|
621
|
-
"autoScalingGroup":{"shape":"AutoScalingGroup"}
|
623
|
+
"autoScalingGroup":{"shape":"AutoScalingGroup"},
|
624
|
+
"agentHealth":{"shape":"AgentHealth"},
|
625
|
+
"agentVersion":{"shape":"AgentVersion"},
|
626
|
+
"operatingSystem":{"shape":"OperatingSystem"},
|
627
|
+
"kernelVersion":{"shape":"KernelVersion"},
|
628
|
+
"ipv4Address":{"shape":"Ipv4Address"}
|
622
629
|
}
|
623
630
|
},
|
624
631
|
"AgentPreviewList":{
|
@@ -627,6 +634,11 @@
|
|
627
634
|
"max":100,
|
628
635
|
"min":0
|
629
636
|
},
|
637
|
+
"AgentVersion":{
|
638
|
+
"type":"string",
|
639
|
+
"max":128,
|
640
|
+
"min":1
|
641
|
+
},
|
630
642
|
"AgentsAlreadyRunningAssessmentException":{
|
631
643
|
"type":"structure",
|
632
644
|
"required":[
|
@@ -1482,6 +1494,11 @@
|
|
1482
1494
|
"max":50,
|
1483
1495
|
"min":0
|
1484
1496
|
},
|
1497
|
+
"KernelVersion":{
|
1498
|
+
"type":"string",
|
1499
|
+
"max":128,
|
1500
|
+
"min":1
|
1501
|
+
},
|
1485
1502
|
"LimitExceededErrorCode":{
|
1486
1503
|
"type":"string",
|
1487
1504
|
"enum":[
|
@@ -1706,6 +1723,11 @@
|
|
1706
1723
|
"type":"integer",
|
1707
1724
|
"min":0
|
1708
1725
|
},
|
1726
|
+
"OperatingSystem":{
|
1727
|
+
"type":"string",
|
1728
|
+
"max":256,
|
1729
|
+
"min":1
|
1730
|
+
},
|
1709
1731
|
"PaginationToken":{
|
1710
1732
|
"type":"string",
|
1711
1733
|
"max":300,
|
@@ -372,11 +372,6 @@
|
|
372
372
|
"Environment":{"shape":"EnvironmentMap"}
|
373
373
|
}
|
374
374
|
},
|
375
|
-
"ContainerDefinitionList":{
|
376
|
-
"type":"list",
|
377
|
-
"member":{"shape":"ContainerDefinition"},
|
378
|
-
"max":5
|
379
|
-
},
|
380
375
|
"ContainerHostname":{
|
381
376
|
"type":"string",
|
382
377
|
"max":63,
|
@@ -434,7 +429,6 @@
|
|
434
429
|
"members":{
|
435
430
|
"ModelName":{"shape":"ModelName"},
|
436
431
|
"PrimaryContainer":{"shape":"ContainerDefinition"},
|
437
|
-
"SupplementalContainers":{"shape":"ContainerDefinitionList"},
|
438
432
|
"ExecutionRoleArn":{"shape":"RoleArn"},
|
439
433
|
"Tags":{"shape":"TagList"}
|
440
434
|
}
|
@@ -627,7 +621,6 @@
|
|
627
621
|
"required":[
|
628
622
|
"ModelName",
|
629
623
|
"PrimaryContainer",
|
630
|
-
"SupplementalContainers",
|
631
624
|
"ExecutionRoleArn",
|
632
625
|
"CreationTime",
|
633
626
|
"ModelArn"
|
@@ -635,7 +628,6 @@
|
|
635
628
|
"members":{
|
636
629
|
"ModelName":{"shape":"ModelName"},
|
637
630
|
"PrimaryContainer":{"shape":"ContainerDefinition"},
|
638
|
-
"SupplementalContainers":{"shape":"ContainerDefinitionList"},
|
639
631
|
"ExecutionRoleArn":{"shape":"RoleArn"},
|
640
632
|
"CreationTime":{"shape":"Timestamp"},
|
641
633
|
"ModelArn":{"shape":"ModelArn"}
|
data/lib/aws-sdk-core/version.rb
CHANGED
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.10.
|
4
|
+
version: 2.10.109
|
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: 2017-12-
|
11
|
+
date: 2017-12-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|