@@ -387,6 +387,10 @@ public enum Concept
387387 "send-message-http-502" ,
388388 "Sending a message to the remote instance resulted in HTTP status 502"
389389 ),
390+ SEND_MESSAGE_HTTP_504 (
391+ "send-message-http-504" ,
392+ "Sending a message to the remote instance resulted in HTTP status 504"
393+ ),
390394 SEND_MESSAGE_HTTP_UNEXPECTED (
391395 "send-message-http-unexpected" ,
392396 "Sending a message to the remote instance resulted in an unexpected HTTP status code"
@@ -428,6 +432,10 @@ public enum Concept
428432 "receive-message-http-502" ,
429433 "Received a message and responded with HTTP status 502"
430434 ),
435+ RECEIVE_MESSAGE_HTTP_504 (
436+ "receive-message-http-504" ,
437+ "Received a message and responded with HTTP status 504"
438+ ),
431439 RECEIVE_MESSAGE_HTTP_UNEXPECTED (
432440 "receive-message-http-unexpected" ,
433441 "Received a message and responded with an unexpected HTTP status code"
@@ -477,6 +485,10 @@ public enum Concept
477485 "local-binary-delete-http-502" ,
478486 "Local instance encountered a HTTP status 502 trying to clean up the binary resource"
479487 ),
488+ LOCAL_BINARY_DELETE_HTTP_504 (
489+ "local-binary-delete-http-504" ,
490+ "Local instance encountered a HTTP status 504 trying to clean up the binary resource"
491+ ),
480492 LOCAL_BINARY_DELETE_HTTP_UNEXPECTED (
481493 "local-binary-delete-http-unexpected" ,
482494 "Local instance encountered an unexpected HTTP status code trying to clean up the binary resource"
@@ -510,6 +522,10 @@ public enum Concept
510522 "remote-binary-delete-http-502" ,
511523 "Remote instance encountered a HTTP status 502 trying to clean up the binary resource"
512524 ),
525+ REMOTE_BINARY_DELETE_HTTP_504 (
526+ "remote-binary-delete-http-504" ,
527+ "Remote instance encountered a HTTP status 504 trying to clean up the binary resource"
528+ ),
513529 REMOTE_BINARY_DELETE_HTTP_UNEXPECTED (
514530 "remote-binary-delete-http-unexpected" ,
515531 "Remote instance encountered an unexpected HTTP status code trying to clean up the binary resource"
@@ -535,6 +551,10 @@ public enum Concept
535551 "local-binary-post-http-502" ,
536552 "Local instance encountered a HTTP status 502 trying to post the binary resource to its own FHIR server"
537553 ),
554+ LOCAL_BINARY_POST_HTTP_504 (
555+ "local-binary-post-http-504" ,
556+ "Local instance encountered a HTTP status 504 trying to post the binary resource to its own FHIR server"
557+ ),
538558 LOCAL_BINARY_POST_HTTP_UNEXPECTED (
539559 "local-binary-post-http-unexpected" ,
540560 "Local instance encountered an unexpected HTTP status code trying to post the binary resource to its own FHIR server"
@@ -572,6 +592,10 @@ public enum Concept
572592 "remote-binary-post-http-502" ,
573593 "Remote instance encountered a HTTP status 502 trying to post the binary resource to its own FHIR server"
574594 ),
595+ REMOTE_BINARY_POST_HTTP_504 (
596+ "remote-binary-post-http-504" ,
597+ "Remote instance encountered a HTTP status 504 trying to post the binary resource to its own FHIR server"
598+ ),
575599 REMOTE_BINARY_POST_HTTP_UNEXPECTED (
576600 "remote-binary-post-http-unexpected" ,
577601 "Remote instance encountered an unexpected HTTP status code trying to post the binary resource to its own FHIR server"
@@ -626,6 +650,10 @@ public enum Concept
626650 "response-message-timeout-http-502" ,
627651 "Response message timed out. Received HTTP status 502 trying to check request status on the target"
628652 ),
653+ RESPONSE_MESSAGE_TIMEOUT_HTTP_504 (
654+ "response-message-timeout-http-504" ,
655+ "Response message timed out. Received HTTP status 504 trying to check request status on the target"
656+ ),
629657 RESPONSE_MESSAGE_TIMEOUT_HTTP_UNEXPECTED (
630658 "response-message-timeout-http-unexpected" ,
631659 "Response message timed out. Received an unexpected HTTP status code trying to check request status on the target"
@@ -654,7 +682,11 @@ public enum Concept
654682 ),
655683 LOCAL_BINARY_DOWNLOAD_HTTP_502 (
656684 "local-binary-download-http-502" ,
657- "Local instance received HTTP status 500 trying to download the binary resource from the target"
685+ "Local instance received HTTP status 502 trying to download the binary resource from the target"
686+ ),
687+ LOCAL_BINARY_DOWNLOAD_HTTP_504 (
688+ "local-binary-download-http-504" ,
689+ "Local instance received HTTP status 504 trying to download the binary resource from the target"
658690 ),
659691 LOCAL_BINARY_DOWNLOAD_HTTP_UNEXPECTED (
660692 "local-binary-download-http-unexpected" ,
@@ -697,6 +729,10 @@ public enum Concept
697729 "remote-binary-download-http-502" ,
698730 "Remote instance received HTTP status 502 trying to download the binary resource from this server"
699731 ),
732+ REMOTE_BINARY_DOWNLOAD_HTTP_504 (
733+ "remote-binary-download-http-504" ,
734+ "Remote instance received HTTP status 504 trying to download the binary resource from this server"
735+ ),
700736 REMOTE_BINARY_DOWNLOAD_HTTP_UNEXPECTED (
701737 "remote-binary-download-http-unexpected" ,
702738 "Remote instance received an unexpected HTTP status trying to download the binary resource from this server"
0 commit comments