Skip to content

Commit

Permalink
required (Azure#30758)
Browse files Browse the repository at this point in the history
Co-authored-by: Laurent Mazuel <[email protected]>
  • Loading branch information
l0lawrence and lmazuel authored Dec 14, 2024
1 parent 495c999 commit 5874020
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ namespace Microsoft.EventGrid.SystemEvents {
timestamp: utcDateTime;

/** The hub of connected client connection. */
hubName?: string;
hubName: string;

/** The connection Id of connected client connection. */
connectionId?: string;
connectionId: string;

/** The user Id of connected client connection. */
userId?: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7372,7 +7372,11 @@
"type": "string",
"description": "The user Id of connected client connection."
}
}
},
"required": [
"hubName",
"connectionId"
]
},
"SignalRServiceClientConnectionDisconnectedEventData": {
"type": "object",
Expand All @@ -7399,7 +7403,11 @@
"type": "string",
"description": "The message of error that cause the client connection disconnected."
}
}
},
"required": [
"hubName",
"connectionId"
]
},
"StampKind": {
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7501,7 +7501,9 @@
}
},
"required": [
"timestamp"
"timestamp",
"hubName",
"connectionId"
]
},
"SignalRServiceClientConnectionDisconnectedEventData": {
Expand Down Expand Up @@ -7531,7 +7533,9 @@
}
},
"required": [
"timestamp"
"timestamp",
"hubName",
"connectionId"
]
},
"StampKind": {
Expand Down

0 comments on commit 5874020

Please sign in to comment.