You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: codegen/amqp0-9-1.extended.xml
+30
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@
4
4
WARNING: Modified from the official 0-9-1 specification XML by
5
5
the addition of:
6
6
confirm.select and confirm.select-ok,
7
+
connection.update-secret and connection.update-secret-ok,
7
8
exchange.bind and exchange.bind-ok,
8
9
exchange.unbind and exchange.unbind-ok,
9
10
basic.nack,
@@ -914,6 +915,35 @@
914
915
<chassis name = "server" implement = "MUST"/>
915
916
<chassis name = "client" implement = "MUST"/>
916
917
</method>
918
+
919
+
<method name = "update-secret" synchronous = "1" index = "70" label = "update secret">
920
+
<doc>
921
+
This method updates the secret used to authenticate this connection. It is used when secrets have an expiration date and need to be renewed, like OAuth 2 tokens.
922
+
</doc>
923
+
924
+
<chassis name = "client" implement = "MUST" />
925
+
<response name = "update-secret-ok" />
926
+
927
+
<field name = "secret" domain = "longstr">
928
+
<doc>
929
+
The new secret.
930
+
</doc>
931
+
</field>
932
+
933
+
<field name = "reason" domain = "shortstr">
934
+
<doc>
935
+
The reason for the secret update.
936
+
</doc>
937
+
</field>
938
+
</method>
939
+
940
+
<method name = "update-secret-ok" synchronous = "1" index = "71" label = "update secret response">
0 commit comments