Skip to content
Draft
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
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"apiVersion": "2024-12-01"
"apiVersion": "2024-12-01",
"apiVersions": {
"WebPubSubService": "2024-12-01"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"azure.messaging.webpubsubservice.aio.WebPubSubServiceClient.add_connections_to_groups": "WebPubSubService.addConnectionsToGroups",
"azure.messaging.webpubsubservice.WebPubSubServiceClient.close_all_connections": "WebPubSubService.closeAllConnections",
"azure.messaging.webpubsubservice.aio.WebPubSubServiceClient.close_all_connections": "WebPubSubService.closeAllConnections",
"azure.messaging.webpubsubservice.WebPubSubServiceClient.get_client_access_token": "WebPubSubService.getClientAccessToken",
"azure.messaging.webpubsubservice.aio.WebPubSubServiceClient.get_client_access_token": "WebPubSubService.getClientAccessToken",
"azure.messaging.webpubsubservice.WebPubSubServiceClient.generate_client_token": "WebPubSubService.generateClientToken",
"azure.messaging.webpubsubservice.aio.WebPubSubServiceClient.generate_client_token": "WebPubSubService.generateClientToken",
"azure.messaging.webpubsubservice.WebPubSubServiceClient.remove_connections_from_groups": "WebPubSubService.removeConnectionsFromGroups",
"azure.messaging.webpubsubservice.aio.WebPubSubServiceClient.remove_connections_from_groups": "WebPubSubService.removeConnectionsFromGroups",
"azure.messaging.webpubsubservice.WebPubSubServiceClient.send_to_all": "WebPubSubService.sendToAll",
Expand All @@ -35,16 +35,16 @@
"azure.messaging.webpubsubservice.aio.WebPubSubServiceClient.close_group_connections": "WebPubSubService.closeGroupConnections",
"azure.messaging.webpubsubservice.WebPubSubServiceClient.send_to_group": "WebPubSubService.sendToGroup",
"azure.messaging.webpubsubservice.aio.WebPubSubServiceClient.send_to_group": "WebPubSubService.sendToGroup",
"azure.messaging.webpubsubservice.WebPubSubServiceClient.list_connections": "WebPubSubService.listConnections",
"azure.messaging.webpubsubservice.aio.WebPubSubServiceClient.list_connections": "WebPubSubService.listConnections",
"azure.messaging.webpubsubservice.WebPubSubServiceClient.list_connections_in_group": "WebPubSubService.listConnectionsInGroup",
"azure.messaging.webpubsubservice.aio.WebPubSubServiceClient.list_connections_in_group": "WebPubSubService.listConnectionsInGroup",
"azure.messaging.webpubsubservice.WebPubSubServiceClient.remove_connection_from_group": "WebPubSubService.removeConnectionFromGroup",
"azure.messaging.webpubsubservice.aio.WebPubSubServiceClient.remove_connection_from_group": "WebPubSubService.removeConnectionFromGroup",
"azure.messaging.webpubsubservice.WebPubSubServiceClient.add_connection_to_group": "WebPubSubService.addConnectionToGroup",
"azure.messaging.webpubsubservice.aio.WebPubSubServiceClient.add_connection_to_group": "WebPubSubService.addConnectionToGroup",
"azure.messaging.webpubsubservice.WebPubSubServiceClient.revoke_permission": "WebPubSubService.revokePermission",
"azure.messaging.webpubsubservice.aio.WebPubSubServiceClient.revoke_permission": "WebPubSubService.revokePermission",
"azure.messaging.webpubsubservice.WebPubSubServiceClient.has_permission": "WebPubSubService.hasPermission",
"azure.messaging.webpubsubservice.aio.WebPubSubServiceClient.has_permission": "WebPubSubService.hasPermission",
"azure.messaging.webpubsubservice.WebPubSubServiceClient.check_permission": "WebPubSubService.checkPermission",
"azure.messaging.webpubsubservice.aio.WebPubSubServiceClient.check_permission": "WebPubSubService.checkPermission",
"azure.messaging.webpubsubservice.WebPubSubServiceClient.grant_permission": "WebPubSubService.grantPermission",
"azure.messaging.webpubsubservice.aio.WebPubSubServiceClient.grant_permission": "WebPubSubService.grantPermission",
"azure.messaging.webpubsubservice.WebPubSubServiceClient.user_exists": "WebPubSubService.userExists",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "python",
"TagPrefix": "python/webpubsub/azure-messaging-webpubsubservice",
"Tag": "python/webpubsub/azure-messaging-webpubsubservice_34edba9a6b"
"Tag": "python/webpubsub/azure-messaging-webpubsubservice_447df314c8"
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ class WebPubSubServiceClient(_WebPubSubServiceClientOperationsMixin):
:param credential: Credential used to authenticate requests to the service. Required.
:type credential: ~azure.core.credentials.TokenCredential
:param hub: Target hub name, which should start with alphabetic characters and only contain
alpha-numeric characters or underscore. Required.
alpha-numeric characters or underscore. Required.
:type hub: str
:keyword api_version: The API version to use for this operation. Default value is "2024-12-01".
Note that overriding this default value may result in unsupported behavior.
:keyword api_version: The API version to use for this operation. Known values are "2024-12-01".
Default value is "2024-12-01". Note that overriding this default value may result in
unsupported behavior.
:paramtype api_version: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ class WebPubSubServiceClientConfiguration: # pylint: disable=too-many-instance-
:param credential: Credential used to authenticate requests to the service. Required.
:type credential: ~azure.core.credentials.TokenCredential
:param hub: Target hub name, which should start with alphabetic characters and only contain
alpha-numeric characters or underscore. Required.
alpha-numeric characters or underscore. Required.
:type hub: str
:keyword api_version: The API version to use for this operation. Default value is "2024-12-01".
Note that overriding this default value may result in unsupported behavior.
:keyword api_version: The API version to use for this operation. Known values are "2024-12-01".
Default value is "2024-12-01". Note that overriding this default value may result in
unsupported behavior.
:paramtype api_version: str
"""

Expand Down
Loading
Loading