aws-sdk-core 2.11.416 → 2.11.417

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: cb5fed67b039b2e64b50843a014f7670a97eccda
4
- data.tar.gz: d025211505a07550337d3c094a07cb2ab0ae5bca
3
+ metadata.gz: 837ce876f8ca971f42def34e47bcd331e2d709c6
4
+ data.tar.gz: fe74c6dcd4730c92f8c8627c9817daeb940303bb
5
5
  SHA512:
6
- metadata.gz: 17984a49d0e087b6395ffde4451499a300c8ef769dfee5774ed1b823572eb889b72a4fa7ef5a220e5b6702371f809662114efa7b8be61c97d3939d37b991af84
7
- data.tar.gz: 36c8f198ea7e1d98b7d8e0d4638becda95415aa65b271997852ba018324fba44df65b4fac1fc2d12d7d0ead0ffe1569c1060ae2955587b1a6cb47d2485b95571
6
+ metadata.gz: 3d2c5169845d2e7708f152dc4d0d710ccf4053317a229e4082241bf693eded963998f42b88ecb64f80a5644576f00795a1c51f67b45db68184509d49469a1471
7
+ data.tar.gz: ccec2fbd8c4738ccfa5d1efec951a65e959eb332b6dfda6e71f66af97f1ffa5ab440b87d75ff6f628101afabfdc0d92a68fc7dbf51f09553c50ab31688555515
@@ -97,6 +97,40 @@
97
97
  {"shape":"TextSizeLimitExceededException"}
98
98
  ]
99
99
  },
100
+ "InferICD10CM":{
101
+ "name":"InferICD10CM",
102
+ "http":{
103
+ "method":"POST",
104
+ "requestUri":"/"
105
+ },
106
+ "input":{"shape":"InferICD10CMRequest"},
107
+ "output":{"shape":"InferICD10CMResponse"},
108
+ "errors":[
109
+ {"shape":"InternalServerException"},
110
+ {"shape":"ServiceUnavailableException"},
111
+ {"shape":"TooManyRequestsException"},
112
+ {"shape":"InvalidRequestException"},
113
+ {"shape":"InvalidEncodingException"},
114
+ {"shape":"TextSizeLimitExceededException"}
115
+ ]
116
+ },
117
+ "InferRxNorm":{
118
+ "name":"InferRxNorm",
119
+ "http":{
120
+ "method":"POST",
121
+ "requestUri":"/"
122
+ },
123
+ "input":{"shape":"InferRxNormRequest"},
124
+ "output":{"shape":"InferRxNormResponse"},
125
+ "errors":[
126
+ {"shape":"InternalServerException"},
127
+ {"shape":"ServiceUnavailableException"},
128
+ {"shape":"TooManyRequestsException"},
129
+ {"shape":"InvalidRequestException"},
130
+ {"shape":"InvalidEncodingException"},
131
+ {"shape":"TextSizeLimitExceededException"}
132
+ ]
133
+ },
100
134
  "ListEntitiesDetectionV2Jobs":{
101
135
  "name":"ListEntitiesDetectionV2Jobs",
102
136
  "http":{
@@ -404,12 +438,130 @@
404
438
  ]
405
439
  },
406
440
  "Float":{"type":"float"},
441
+ "ICD10CMAttribute":{
442
+ "type":"structure",
443
+ "members":{
444
+ "Type":{"shape":"ICD10CMAttributeType"},
445
+ "Score":{"shape":"Float"},
446
+ "RelationshipScore":{"shape":"Float"},
447
+ "Id":{"shape":"Integer"},
448
+ "BeginOffset":{"shape":"Integer"},
449
+ "EndOffset":{"shape":"Integer"},
450
+ "Text":{"shape":"String"},
451
+ "Traits":{"shape":"ICD10CMTraitList"}
452
+ }
453
+ },
454
+ "ICD10CMAttributeList":{
455
+ "type":"list",
456
+ "member":{"shape":"ICD10CMAttribute"}
457
+ },
458
+ "ICD10CMAttributeType":{
459
+ "type":"string",
460
+ "enum":[
461
+ "ACUITY",
462
+ "DIRECTION",
463
+ "SYSTEM_ORGAN_SITE",
464
+ "QUALITY",
465
+ "QUANTITY"
466
+ ]
467
+ },
468
+ "ICD10CMConcept":{
469
+ "type":"structure",
470
+ "members":{
471
+ "Description":{"shape":"String"},
472
+ "Code":{"shape":"String"},
473
+ "Score":{"shape":"Float"}
474
+ }
475
+ },
476
+ "ICD10CMConceptList":{
477
+ "type":"list",
478
+ "member":{"shape":"ICD10CMConcept"}
479
+ },
480
+ "ICD10CMEntity":{
481
+ "type":"structure",
482
+ "members":{
483
+ "Id":{"shape":"Integer"},
484
+ "Text":{"shape":"OntologyLinkingBoundedLengthString"},
485
+ "Category":{"shape":"ICD10CMEntityCategory"},
486
+ "Type":{"shape":"ICD10CMEntityType"},
487
+ "Score":{"shape":"Float"},
488
+ "BeginOffset":{"shape":"Integer"},
489
+ "EndOffset":{"shape":"Integer"},
490
+ "Attributes":{"shape":"ICD10CMAttributeList"},
491
+ "Traits":{"shape":"ICD10CMTraitList"},
492
+ "ICD10CMConcepts":{"shape":"ICD10CMConceptList"}
493
+ }
494
+ },
495
+ "ICD10CMEntityCategory":{
496
+ "type":"string",
497
+ "enum":["MEDICAL_CONDITION"]
498
+ },
499
+ "ICD10CMEntityList":{
500
+ "type":"list",
501
+ "member":{"shape":"ICD10CMEntity"}
502
+ },
503
+ "ICD10CMEntityType":{
504
+ "type":"string",
505
+ "enum":["DX_NAME"]
506
+ },
507
+ "ICD10CMTrait":{
508
+ "type":"structure",
509
+ "members":{
510
+ "Name":{"shape":"ICD10CMTraitName"},
511
+ "Score":{"shape":"Float"}
512
+ }
513
+ },
514
+ "ICD10CMTraitList":{
515
+ "type":"list",
516
+ "member":{"shape":"ICD10CMTrait"}
517
+ },
518
+ "ICD10CMTraitName":{
519
+ "type":"string",
520
+ "enum":[
521
+ "NEGATION",
522
+ "DIAGNOSIS",
523
+ "SIGN",
524
+ "SYMPTOM"
525
+ ]
526
+ },
407
527
  "IamRoleArn":{
408
528
  "type":"string",
409
529
  "max":2048,
410
530
  "min":20,
411
531
  "pattern":"arn:aws(-[^:]+)?:iam::[0-9]{12}:role/.+"
412
532
  },
533
+ "InferICD10CMRequest":{
534
+ "type":"structure",
535
+ "required":["Text"],
536
+ "members":{
537
+ "Text":{"shape":"OntologyLinkingBoundedLengthString"}
538
+ }
539
+ },
540
+ "InferICD10CMResponse":{
541
+ "type":"structure",
542
+ "required":["Entities"],
543
+ "members":{
544
+ "Entities":{"shape":"ICD10CMEntityList"},
545
+ "PaginationToken":{"shape":"String"},
546
+ "ModelVersion":{"shape":"String"}
547
+ }
548
+ },
549
+ "InferRxNormRequest":{
550
+ "type":"structure",
551
+ "required":["Text"],
552
+ "members":{
553
+ "Text":{"shape":"OntologyLinkingBoundedLengthString"}
554
+ }
555
+ },
556
+ "InferRxNormResponse":{
557
+ "type":"structure",
558
+ "required":["Entities"],
559
+ "members":{
560
+ "Entities":{"shape":"RxNormEntityList"},
561
+ "PaginationToken":{"shape":"String"},
562
+ "ModelVersion":{"shape":"String"}
563
+ }
564
+ },
413
565
  "InputDataConfig":{
414
566
  "type":"structure",
415
567
  "required":["S3Bucket"],
@@ -516,6 +668,11 @@
516
668
  "min":1
517
669
  },
518
670
  "ModelVersion":{"type":"string"},
671
+ "OntologyLinkingBoundedLengthString":{
672
+ "type":"string",
673
+ "max":10000,
674
+ "min":1
675
+ },
519
676
  "OutputDataConfig":{
520
677
  "type":"structure",
521
678
  "required":["S3Bucket"],
@@ -531,6 +688,92 @@
531
688
  },
532
689
  "exception":true
533
690
  },
691
+ "RxNormAttribute":{
692
+ "type":"structure",
693
+ "members":{
694
+ "Type":{"shape":"RxNormAttributeType"},
695
+ "Score":{"shape":"Float"},
696
+ "RelationshipScore":{"shape":"Float"},
697
+ "Id":{"shape":"Integer"},
698
+ "BeginOffset":{"shape":"Integer"},
699
+ "EndOffset":{"shape":"Integer"},
700
+ "Text":{"shape":"String"},
701
+ "Traits":{"shape":"RxNormTraitList"}
702
+ }
703
+ },
704
+ "RxNormAttributeList":{
705
+ "type":"list",
706
+ "member":{"shape":"RxNormAttribute"}
707
+ },
708
+ "RxNormAttributeType":{
709
+ "type":"string",
710
+ "enum":[
711
+ "DOSAGE",
712
+ "DURATION",
713
+ "FORM",
714
+ "FREQUENCY",
715
+ "RATE",
716
+ "ROUTE_OR_MODE",
717
+ "STRENGTH"
718
+ ]
719
+ },
720
+ "RxNormConcept":{
721
+ "type":"structure",
722
+ "members":{
723
+ "Description":{"shape":"String"},
724
+ "Code":{"shape":"String"},
725
+ "Score":{"shape":"Float"}
726
+ }
727
+ },
728
+ "RxNormConceptList":{
729
+ "type":"list",
730
+ "member":{"shape":"RxNormConcept"}
731
+ },
732
+ "RxNormEntity":{
733
+ "type":"structure",
734
+ "members":{
735
+ "Id":{"shape":"Integer"},
736
+ "Text":{"shape":"OntologyLinkingBoundedLengthString"},
737
+ "Category":{"shape":"RxNormEntityCategory"},
738
+ "Type":{"shape":"RxNormEntityType"},
739
+ "Score":{"shape":"Float"},
740
+ "BeginOffset":{"shape":"Integer"},
741
+ "EndOffset":{"shape":"Integer"},
742
+ "Attributes":{"shape":"RxNormAttributeList"},
743
+ "Traits":{"shape":"RxNormTraitList"},
744
+ "RxNormConcepts":{"shape":"RxNormConceptList"}
745
+ }
746
+ },
747
+ "RxNormEntityCategory":{
748
+ "type":"string",
749
+ "enum":["MEDICATION"]
750
+ },
751
+ "RxNormEntityList":{
752
+ "type":"list",
753
+ "member":{"shape":"RxNormEntity"}
754
+ },
755
+ "RxNormEntityType":{
756
+ "type":"string",
757
+ "enum":[
758
+ "BRAND_NAME",
759
+ "GENERIC_NAME"
760
+ ]
761
+ },
762
+ "RxNormTrait":{
763
+ "type":"structure",
764
+ "members":{
765
+ "Name":{"shape":"RxNormTraitName"},
766
+ "Score":{"shape":"Float"}
767
+ }
768
+ },
769
+ "RxNormTraitList":{
770
+ "type":"list",
771
+ "member":{"shape":"RxNormTrait"}
772
+ },
773
+ "RxNormTraitName":{
774
+ "type":"string",
775
+ "enum":["NEGATION"]
776
+ },
534
777
  "S3Bucket":{
535
778
  "type":"string",
536
779
  "max":63,
@@ -5330,6 +5330,21 @@
5330
5330
  "Linux with SQL Server Enterprise"
5331
5331
  ]
5332
5332
  },
5333
+ "CapacityReservationOptions":{
5334
+ "type":"structure",
5335
+ "members":{
5336
+ "UsageStrategy":{
5337
+ "shape":"FleetCapacityReservationUsageStrategy",
5338
+ "locationName":"usageStrategy"
5339
+ }
5340
+ }
5341
+ },
5342
+ "CapacityReservationOptionsRequest":{
5343
+ "type":"structure",
5344
+ "members":{
5345
+ "UsageStrategy":{"shape":"FleetCapacityReservationUsageStrategy"}
5346
+ }
5347
+ },
5333
5348
  "CapacityReservationPreference":{
5334
5349
  "type":"string",
5335
5350
  "enum":[
@@ -14145,6 +14160,10 @@
14145
14160
  "fulfilled"
14146
14161
  ]
14147
14162
  },
14163
+ "FleetCapacityReservationUsageStrategy":{
14164
+ "type":"string",
14165
+ "enum":["use-capacity-reservations-first"]
14166
+ },
14148
14167
  "FleetData":{
14149
14168
  "type":"structure",
14150
14169
  "members":{
@@ -20907,6 +20926,10 @@
20907
20926
  "shape":"FleetOnDemandAllocationStrategy",
20908
20927
  "locationName":"allocationStrategy"
20909
20928
  },
20929
+ "CapacityReservationOptions":{
20930
+ "shape":"CapacityReservationOptions",
20931
+ "locationName":"capacityReservationOptions"
20932
+ },
20910
20933
  "SingleInstanceType":{
20911
20934
  "shape":"Boolean",
20912
20935
  "locationName":"singleInstanceType"
@@ -20929,6 +20952,7 @@
20929
20952
  "type":"structure",
20930
20953
  "members":{
20931
20954
  "AllocationStrategy":{"shape":"FleetOnDemandAllocationStrategy"},
20955
+ "CapacityReservationOptions":{"shape":"CapacityReservationOptionsRequest"},
20932
20956
  "SingleInstanceType":{"shape":"Boolean"},
20933
20957
  "SingleAvailabilityZone":{"shape":"Boolean"},
20934
20958
  "MinTargetCapacity":{"shape":"Integer"},
@@ -603,6 +603,14 @@
603
603
  "shape" : "__string",
604
604
  "locationName" : "hostInstanceType"
605
605
  },
606
+ "StorageType" : {
607
+ "shape" : "BrokerStorageType",
608
+ "locationName" : "storageType"
609
+ },
610
+ "SupportedDeploymentModes" : {
611
+ "shape" : "__listOfDeploymentMode",
612
+ "locationName" : "supportedDeploymentModes"
613
+ },
606
614
  "SupportedEngineVersions" : {
607
615
  "shape" : "__listOf__string",
608
616
  "locationName" : "supportedEngineVersions"
@@ -630,6 +638,10 @@
630
638
  "type" : "string",
631
639
  "enum" : [ "CREATION_IN_PROGRESS", "CREATION_FAILED", "DELETION_IN_PROGRESS", "RUNNING", "REBOOT_IN_PROGRESS" ]
632
640
  },
641
+ "BrokerStorageType" : {
642
+ "type" : "string",
643
+ "enum" : [ "EBS", "EFS" ]
644
+ },
633
645
  "BrokerSummary" : {
634
646
  "type" : "structure",
635
647
  "members" : {
@@ -828,6 +840,10 @@
828
840
  "shape" : "__listOf__string",
829
841
  "locationName" : "securityGroups"
830
842
  },
843
+ "StorageType" : {
844
+ "shape" : "BrokerStorageType",
845
+ "locationName" : "storageType"
846
+ },
831
847
  "SubnetIds" : {
832
848
  "shape" : "__listOf__string",
833
849
  "locationName" : "subnetIds"
@@ -911,6 +927,10 @@
911
927
  "shape" : "__listOf__string",
912
928
  "locationName" : "securityGroups"
913
929
  },
930
+ "StorageType" : {
931
+ "shape" : "BrokerStorageType",
932
+ "locationName" : "storageType"
933
+ },
914
934
  "SubnetIds" : {
915
935
  "shape" : "__listOf__string",
916
936
  "locationName" : "subnetIds"
@@ -1226,6 +1246,11 @@
1226
1246
  "shape" : "__string",
1227
1247
  "location" : "querystring",
1228
1248
  "locationName" : "nextToken"
1249
+ },
1250
+ "StorageType" : {
1251
+ "shape" : "__string",
1252
+ "location" : "querystring",
1253
+ "locationName" : "storageType"
1229
1254
  }
1230
1255
  }
1231
1256
  },
@@ -1313,14 +1338,14 @@
1313
1338
  "shape" : "__string",
1314
1339
  "locationName" : "pendingEngineVersion"
1315
1340
  },
1316
- "PendingSecurityGroups" : {
1317
- "shape": "__listOf__string",
1318
- "locationName": "pendingSecurityGroups"
1319
- },
1320
1341
  "PendingHostInstanceType" : {
1321
1342
  "shape" : "__string",
1322
1343
  "locationName" : "pendingHostInstanceType"
1323
1344
  },
1345
+ "PendingSecurityGroups" : {
1346
+ "shape" : "__listOf__string",
1347
+ "locationName" : "pendingSecurityGroups"
1348
+ },
1324
1349
  "PubliclyAccessible" : {
1325
1350
  "shape" : "__boolean",
1326
1351
  "locationName" : "publiclyAccessible"
@@ -1329,6 +1354,10 @@
1329
1354
  "shape" : "__listOf__string",
1330
1355
  "locationName" : "securityGroups"
1331
1356
  },
1357
+ "StorageType" : {
1358
+ "shape" : "BrokerStorageType",
1359
+ "locationName" : "storageType"
1360
+ },
1332
1361
  "SubnetIds" : {
1333
1362
  "shape" : "__listOf__string",
1334
1363
  "locationName" : "subnetIds"
@@ -1421,13 +1450,13 @@
1421
1450
  "shape" : "__string",
1422
1451
  "locationName" : "pendingEngineVersion"
1423
1452
  },
1453
+ "PendingHostInstanceType" : {
1454
+ "shape" : "__string",
1455
+ "locationName" : "pendingHostInstanceType"
1456
+ },
1424
1457
  "PendingSecurityGroups" : {
1425
1458
  "shape" : "__listOf__string",
1426
1459
  "locationName" : "pendingSecurityGroups"
1427
- },
1428
- "PendingHostInstanceType" : {
1429
- "shape" : "__string",
1430
- "locationName" : "pendingHostInstanceType"
1431
1460
  },
1432
1461
  "PubliclyAccessible" : {
1433
1462
  "shape" : "__boolean",
@@ -1437,6 +1466,10 @@
1437
1466
  "shape" : "__listOf__string",
1438
1467
  "locationName" : "securityGroups"
1439
1468
  },
1469
+ "StorageType" : {
1470
+ "shape" : "BrokerStorageType",
1471
+ "locationName" : "storageType"
1472
+ },
1440
1473
  "SubnetIds" : {
1441
1474
  "shape" : "__listOf__string",
1442
1475
  "locationName" : "subnetIds"
@@ -2471,6 +2504,12 @@
2471
2504
  "shape" : "ConfigurationRevision"
2472
2505
  }
2473
2506
  },
2507
+ "__listOfDeploymentMode" : {
2508
+ "type" : "list",
2509
+ "member" : {
2510
+ "shape" : "DeploymentMode"
2511
+ }
2512
+ },
2474
2513
  "__listOfEngineVersion" : {
2475
2514
  "type" : "list",
2476
2515
  "member" : {
@@ -2535,4 +2574,4 @@
2535
2574
  }
2536
2575
  }
2537
2576
  }
2538
- }
2577
+ }
@@ -4359,6 +4359,12 @@
4359
4359
  }
4360
4360
  }
4361
4361
  },
4362
+ "secretsmanager" : {
4363
+ "endpoints" : {
4364
+ "cn-north-1" : { },
4365
+ "cn-northwest-1" : { }
4366
+ }
4367
+ },
4362
4368
  "sms" : {
4363
4369
  "endpoints" : {
4364
4370
  "cn-north-1" : { },
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.416'
2
+ VERSION = '2.11.417'
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.416
4
+ version: 2.11.417
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: 2019-12-13 00:00:00.000000000 Z
11
+ date: 2019-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath