Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/coverage/azure/queuestorage.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,17 @@ AzureQueueStorage is the Azure-specific Queue Storage data-plane surface,
| `SetQueueMetadata` | SetQueueMetadata replaces the queue's user metadata. |
| `UpdateMessage` | UpdateMessage updates a message's content (when body is non-nil) and its |

### AzureSessionQueue

AzureSessionQueue is the optional Azure Service Bus session surface, discovered

| Operation | Description |
| --- | --- |
| `GetSessionState` | GetSessionState and SetSessionState read and write a session's opaque state. |
| `ReceiveSession` | ReceiveSession returns up to maxMessages currently-visible messages for a |
| `RenewSessionLock` | RenewSessionLock extends the session lock held by lockOwner. |
| `SetSessionState` | |

## Not in scope

_Not documented yet. See the [emulator boundary](../../../README.md) for cloudemu-wide non-goals._
21 changes: 21 additions & 0 deletions docs/coverage/coverage.json
Original file line number Diff line number Diff line change
Expand Up @@ -6845,6 +6845,27 @@
"doc": "UpdateMessage updates a message's content (when body is non-nil) and its"
}
]
},
{
"name": "AzureSessionQueue",
"doc": "AzureSessionQueue is the optional Azure Service Bus session surface, discovered",
"operations": [
{
"name": "GetSessionState",
"doc": "GetSessionState and SetSessionState read and write a session's opaque state."
},
{
"name": "ReceiveSession",
"doc": "ReceiveSession returns up to maxMessages currently-visible messages for a"
},
{
"name": "RenewSessionLock",
"doc": "RenewSessionLock extends the session lock held by lockOwner."
},
{
"name": "SetSessionState"
}
]
}
],
"providers": {
Expand Down
Loading