Skip to content

Commit

Permalink
Updated API models and rebuilt service gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS SDK for Ruby authored and Nobody committed Mar 2, 2020
1 parent 789c3ec commit c553a29
Show file tree
Hide file tree
Showing 75 changed files with 2,056 additions and 183 deletions.
35 changes: 33 additions & 2 deletions apis/comprehendmedical/2018-10-30/api-2.json
Expand Up @@ -228,10 +228,12 @@
"Type":{"shape":"EntitySubType"},
"Score":{"shape":"Float"},
"RelationshipScore":{"shape":"Float"},
"RelationshipType":{"shape":"RelationshipType"},
"Id":{"shape":"Integer"},
"BeginOffset":{"shape":"Integer"},
"EndOffset":{"shape":"Integer"},
"Text":{"shape":"String"},
"Category":{"shape":"EntityType"},
"Traits":{"shape":"TraitList"}
}
},
Expand Down Expand Up @@ -424,7 +426,13 @@
"SYSTEM_ORGAN_SITE",
"DIRECTION",
"QUALITY",
"QUANTITY"
"QUANTITY",
"TIME_EXPRESSION",
"TIME_TO_MEDICATION_NAME",
"TIME_TO_DX_NAME",
"TIME_TO_TEST_NAME",
"TIME_TO_PROCEDURE_NAME",
"TIME_TO_TREATMENT_NAME"
]
},
"EntityType":{
Expand All @@ -434,7 +442,8 @@
"MEDICAL_CONDITION",
"PROTECTED_HEALTH_INFORMATION",
"TEST_TREATMENT_PROCEDURE",
"ANATOMY"
"ANATOMY",
"TIME_EXPRESSION"
]
},
"Float":{"type":"float"},
Expand Down Expand Up @@ -681,6 +690,28 @@
"S3Key":{"shape":"S3Key"}
}
},
"RelationshipType":{
"type":"string",
"enum":[
"EVERY",
"WITH_DOSAGE",
"ADMINISTERED_VIA",
"FOR",
"NEGATIVE",
"OVERLAP",
"DOSAGE",
"ROUTE_OR_MODE",
"FORM",
"FREQUENCY",
"DURATION",
"STRENGTH",
"RATE",
"ACUITY",
"TEST_VALUE",
"TEST_UNITS",
"DIRECTION"
]
},
"ResourceNotFoundException":{
"type":"structure",
"members":{
Expand Down
17 changes: 12 additions & 5 deletions apis/comprehendmedical/2018-10-30/docs-2.json
Expand Up @@ -5,10 +5,10 @@
"DescribeEntitiesDetectionV2Job": "<p>Gets the properties associated with a medical entities detection job. Use this operation to get the status of a detection job.</p>",
"DescribePHIDetectionJob": "<p>Gets the properties associated with a protected health information (PHI) detection job. Use this operation to get the status of a detection job.</p>",
"DetectEntities": "<p>The <code>DetectEntities</code> operation is deprecated. You should use the <a>DetectEntitiesV2</a> operation instead.</p> <p> Inspects the clinical text for a variety of medical entities and returns specific information about them such as entity category, location, and confidence score on that information .</p>",
"DetectEntitiesV2": "<p>Inspects the clinical text for a variety of medical entities and returns specific information about them such as entity category, location, and confidence score on that information.</p> <p>The <code>DetectEntitiesV2</code> operation replaces the <a>DetectEntities</a> operation. This new action uses a different model for determining the entities in your medical text and changes the way that some entities are returned in the output. You should use the <code>DetectEntitiesV2</code> operation in all new applications.</p> <p>The <code>DetectEntitiesV2</code> operation returns the <code>Acuity</code> and <code>Direction</code> entities as attributes instead of types. </p>",
"DetectPHI": "<p> Inspects the clinical text for protected health information (PHI) entities and entity category, location, and confidence score on that information.</p>",
"InferICD10CM": "<p>InferICD10CM detects medical conditions as entities listed in a patient record and links those entities to normalized concept identifiers in the ICD-10-CM knowledge base from the Centers for Disease Control.</p>",
"InferRxNorm": "<p>InferRxNorm detects medications as entities listed in a patient record and links to the normalized concept identifiers in the RxNorm database from the National Library of Medicine.</p>",
"DetectEntitiesV2": "<p>Inspects the clinical text for a variety of medical entities and returns specific information about them such as entity category, location, and confidence score on that information. Amazon Comprehend Medical only detects medical entities in English language texts.</p> <p>The <code>DetectEntitiesV2</code> operation replaces the <a>DetectEntities</a> operation. This new action uses a different model for determining the entities in your medical text and changes the way that some entities are returned in the output. You should use the <code>DetectEntitiesV2</code> operation in all new applications.</p> <p>The <code>DetectEntitiesV2</code> operation returns the <code>Acuity</code> and <code>Direction</code> entities as attributes instead of types. </p>",
"DetectPHI": "<p> Inspects the clinical text for protected health information (PHI) entities and returns the entity category, location, and confidence score for each entity. Amazon Comprehend Medical only detects entities in English language texts.</p>",
"InferICD10CM": "<p>InferICD10CM detects medical conditions as entities listed in a patient record and links those entities to normalized concept identifiers in the ICD-10-CM knowledge base from the Centers for Disease Control. Amazon Comprehend Medical only detects medical entities in English language texts.</p>",
"InferRxNorm": "<p>InferRxNorm detects medications as entities listed in a patient record and links to the normalized concept identifiers in the RxNorm database from the National Library of Medicine. Amazon Comprehend Medical only detects medical entities in English language texts.</p>",
"ListEntitiesDetectionV2Jobs": "<p>Gets a list of medical entity detection jobs that you have submitted.</p>",
"ListPHIDetectionJobs": "<p>Gets a list of protected health information (PHI) detection jobs that you have submitted.</p>",
"StartEntitiesDetectionV2Job": "<p>Starts an asynchronous medical entity detection job for a collection of documents. Use the <code>DescribeEntitiesDetectionV2Job</code> operation to track the status of a job.</p>",
Expand Down Expand Up @@ -153,6 +153,7 @@
"EntityType": {
"base": null,
"refs": {
"Attribute$Category": "<p> The category of attribute. </p>",
"Entity$Category": "<p> The category of the entity.</p>",
"UnmappedAttribute$Type": "<p> The type of the attribute, could be one of the following values: \"MEDICATION\", \"MEDICAL_CONDITION\", \"ANATOMY\", \"TEST_AND_TREATMENT_PROCEDURE\" or \"PROTECTED_HEALTH_INFORMATION\". </p>"
}
Expand Down Expand Up @@ -278,7 +279,7 @@
}
},
"InputDataConfig": {
"base": "<p>The input properties for an entities detection job</p>",
"base": "<p>The input properties for an entities detection job.</p>",
"refs": {
"ComprehendMedicalAsyncJobProperties$InputDataConfig": "<p>The input data configuration that you supplied when you created the detection job.</p>",
"StartEntitiesDetectionV2JobRequest$InputDataConfig": "<p>Specifies the format and location of the input data for the job.</p>",
Expand Down Expand Up @@ -425,6 +426,12 @@
"StartPHIDetectionJobRequest$OutputDataConfig": "<p>Specifies where to send the output files.</p>"
}
},
"RelationshipType": {
"base": null,
"refs": {
"Attribute$RelationshipType": "<p>The type of relationship between the entity and attribute. Type for the relationship is <code>OVERLAP</code>, indicating that the entity occurred at the same time as the <code>Date_Expression</code>. </p>"
}
},
"ResourceNotFoundException": {
"base": "<p>The resource identified by the specified Amazon Resource Name (ARN) was not found. Check the ARN and try your request again.</p>",
"refs": {
Expand Down
90 changes: 89 additions & 1 deletion apis/monitoring/2010-08-01/api-2.json
Expand Up @@ -343,6 +343,17 @@
{"shape":"MissingRequiredParameterException"}
]
},
"PutCompositeAlarm":{
"name":"PutCompositeAlarm",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"PutCompositeAlarmInput"},
"errors":[
{"shape":"LimitExceededFault"}
]
},
"PutDashboard":{
"name":"PutDashboard",
"http":{
Expand Down Expand Up @@ -471,6 +482,7 @@
"type":"structure",
"members":{
"AlarmName":{"shape":"AlarmName"},
"AlarmType":{"shape":"AlarmType"},
"Timestamp":{"shape":"Timestamp"},
"HistoryItemType":{"shape":"HistoryItemType"},
"HistorySummary":{"shape":"HistorySummary"},
Expand All @@ -496,6 +508,22 @@
"member":{"shape":"AlarmName"},
"max":100
},
"AlarmRule":{
"type":"string",
"max":10240,
"min":1
},
"AlarmType":{
"type":"string",
"enum":[
"CompositeAlarm",
"MetricAlarm"
]
},
"AlarmTypes":{
"type":"list",
"member":{"shape":"AlarmType"}
},
"AmazonResourceName":{
"type":"string",
"max":1024,
Expand Down Expand Up @@ -553,6 +581,43 @@
"GreaterThanUpperThreshold"
]
},
"CompositeAlarm":{
"type":"structure",
"members":{
"ActionsEnabled":{"shape":"ActionsEnabled"},
"AlarmActions":{"shape":"ResourceList"},
"AlarmArn":{"shape":"AlarmArn"},
"AlarmConfigurationUpdatedTimestamp":{"shape":"Timestamp"},
"AlarmDescription":{"shape":"AlarmDescription"},
"AlarmName":{"shape":"AlarmName"},
"AlarmRule":{"shape":"AlarmRule"},
"InsufficientDataActions":{"shape":"ResourceList"},
"OKActions":{"shape":"ResourceList"},
"StateReason":{"shape":"StateReason"},
"StateReasonData":{"shape":"StateReasonData"},
"StateUpdatedTimestamp":{"shape":"Timestamp"},
"StateValue":{"shape":"StateValue"}
},
"xmlOrder":[
"ActionsEnabled",
"AlarmActions",
"AlarmArn",
"AlarmConfigurationUpdatedTimestamp",
"AlarmDescription",
"AlarmName",
"AlarmRule",
"InsufficientDataActions",
"OKActions",
"StateReason",
"StateReasonData",
"StateUpdatedTimestamp",
"StateValue"
]
},
"CompositeAlarms":{
"type":"list",
"member":{"shape":"CompositeAlarm"}
},
"ConcurrentModificationException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -723,11 +788,13 @@
"type":"structure",
"members":{
"AlarmName":{"shape":"AlarmName"},
"AlarmTypes":{"shape":"AlarmTypes"},
"HistoryItemType":{"shape":"HistoryItemType"},
"StartDate":{"shape":"Timestamp"},
"EndDate":{"shape":"Timestamp"},
"MaxRecords":{"shape":"MaxRecords"},
"NextToken":{"shape":"NextToken"}
"NextToken":{"shape":"NextToken"},
"ScanBy":{"shape":"ScanBy"}
}
},
"DescribeAlarmHistoryOutput":{
Expand Down Expand Up @@ -764,6 +831,9 @@
"members":{
"AlarmNames":{"shape":"AlarmNames"},
"AlarmNamePrefix":{"shape":"AlarmNamePrefix"},
"AlarmTypes":{"shape":"AlarmTypes"},
"ChildrenOfAlarmName":{"shape":"AlarmName"},
"ParentsOfAlarmName":{"shape":"AlarmName"},
"StateValue":{"shape":"StateValue"},
"ActionPrefix":{"shape":"ActionPrefix"},
"MaxRecords":{"shape":"MaxRecords"},
Expand All @@ -773,6 +843,7 @@
"DescribeAlarmsOutput":{
"type":"structure",
"members":{
"CompositeAlarms":{"shape":"CompositeAlarms"},
"MetricAlarms":{"shape":"MetricAlarms"},
"NextToken":{"shape":"NextToken"}
}
Expand Down Expand Up @@ -1550,6 +1621,23 @@
"members":{
}
},
"PutCompositeAlarmInput":{
"type":"structure",
"required":[
"AlarmName",
"AlarmRule"
],
"members":{
"ActionsEnabled":{"shape":"ActionsEnabled"},
"AlarmActions":{"shape":"ResourceList"},
"AlarmDescription":{"shape":"AlarmDescription"},
"AlarmName":{"shape":"AlarmName"},
"AlarmRule":{"shape":"AlarmRule"},
"InsufficientDataActions":{"shape":"ResourceList"},
"OKActions":{"shape":"ResourceList"},
"Tags":{"shape":"TagList"}
}
},
"PutDashboardInput":{
"type":"structure",
"required":[
Expand Down

0 comments on commit c553a29

Please sign in to comment.