Skip to content

Commit 7dc07f8

Browse files
author
apexvss@microsoft.com
committed
1 parent bfa40a2 commit 7dc07f8

13 files changed

+93
-83
lines changed

docs-ref-autogen/azure-core/azure.core.messaging.CloudEvent.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ constructor:
4040
- <xref:object>
4141
- name: time
4242
description: Optional. The time (in UTC) the event was generated.
43-
defaultValue: <object object at 0x000001FF573A08B0>
43+
defaultValue: <object object at 0x000001A9498008B0>
4444
types:
4545
- <xref:datetime.datetime>
4646
- name: dataschema

docs-ref-autogen/azure-eventhub/azure.eventhub.EventData.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ examples:
2020
- "Create instances of EventData<!--[!code-python[Main](les\\sync_samples\\sample_code_eventhub.py\
2121
\ )]-->\n\n<!-- literal_block {\"ids\": [], \"classes\": [], \"names\": [], \"dupnames\"\
2222
: [], \"backrefs\": [], \"source\": \"C:\\\\hostedtoolcache\\\\windows\\\\Python\\\
23-
\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\\py2docfx\\\\dist_temp\\\\41\\\\azure-eventhub-5.12.1\\\
23+
\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\\py2docfx\\\\dist_temp\\\\41\\\\azure_eventhub-5.12.2\\\
2424
\\samples\\\\sync_samples\\\\sample_code_eventhub.py\", \"xml:space\": \"preserve\"\
2525
, \"force\": false, \"language\": \"python\", \"highlight_args\": {\"linenostart\"\
2626
: 1}, \"linenos\": false} -->\n\n````python\n\n from azure.eventhub import\

docs-ref-autogen/azure-eventhub/azure.eventhub.EventHubConsumerClient.yml

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ examples:
291291
sync_samples\\sample_code_eventhub.py )]-->\n\n<!-- literal_block {\"ids\": [],\
292292
\ \"classes\": [], \"names\": [], \"dupnames\": [], \"backrefs\": [], \"source\"\
293293
: \"C:\\\\hostedtoolcache\\\\windows\\\\Python\\\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\
294-
\\py2docfx\\\\dist_temp\\\\41\\\\azure-eventhub-5.12.1\\\\samples\\\\sync_samples\\\
294+
\\py2docfx\\\\dist_temp\\\\41\\\\azure_eventhub-5.12.2\\\\samples\\\\sync_samples\\\
295295
\\sample_code_eventhub.py\", \"xml:space\": \"preserve\", \"force\": false, \"language\"\
296296
: \"python\", \"highlight_args\": {\"linenostart\": 1}, \"linenos\": false} -->\n\
297297
\n````python\n\n import os\n from azure.eventhub import EventHubConsumerClient,\
@@ -315,15 +315,16 @@ methods:
315315
\ )]-->\n\n<!-- literal_block {\"ids\": [], \"classes\": [], \"names\": [], \"\
316316
dupnames\": [], \"backrefs\": [], \"source\": \"C:\\\\hostedtoolcache\\\\windows\\\
317317
\\Python\\\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\\py2docfx\\\\dist_temp\\\\\
318-
41\\\\azure-eventhub-5.12.1\\\\samples\\\\sync_samples\\\\sample_code_eventhub.py\"\
318+
41\\\\azure_eventhub-5.12.2\\\\samples\\\\sync_samples\\\\sample_code_eventhub.py\"\
319319
, \"xml:space\": \"preserve\", \"force\": false, \"language\": \"python\", \"\
320320
highlight_args\": {\"linenostart\": 1}, \"linenos\": false} -->\n\n````python\n\
321-
\n import os\n import threading\n\n event_hub_connection_str = os.environ['EVENT_HUB_CONN_STR']\n\
321+
\n import os\n import threading\n from azure.identity import DefaultAzureCredential\n\
322+
\n eventhub_fully_qualified_namespace = os.environ[\"EVENT_HUB_HOSTNAME\"]\n\
322323
\ eventhub_name = os.environ['EVENT_HUB_NAME']\n\n from azure.eventhub import\
323-
\ EventHubConsumerClient\n consumer = EventHubConsumerClient.from_connection_string(\n\
324-
\ conn_str=event_hub_connection_str,\n consumer_group=\"$Default\"\
325-
,\n eventhub_name=eventhub_name # EventHub name should be specified if\
326-
\ it doesn't show up in connection string.\n )\n\n logger = logging.getLogger(\"\
324+
\ EventHubConsumerClient\n consumer = EventHubConsumerClient(\n fully_qualified_namespace=eventhub_fully_qualified_namespace,\n\
325+
\ consumer_group=\"$Default\",\n eventhub_name=eventhub_name, # EventHub\
326+
\ name should be specified if it doesn't show up in connection string.\n \
327+
\ credential=DefaultAzureCredential()\n )\n\n logger = logging.getLogger(\"\
327328
azure.eventhub\")\n\n def on_event(partition_context, event):\n # Put\
328329
\ your code here.\n # If the operation is i/o intensive, multi-thread will\
329330
\ have better performance.\n logger.info(\"Received event from partition:\
@@ -574,15 +575,16 @@ methods:
574575
sync_samples\\sample_code_eventhub.py )]-->\n\n<!-- literal_block {\"ids\": [],\
575576
\ \"classes\": [], \"names\": [], \"dupnames\": [], \"backrefs\": [], \"source\"\
576577
: \"C:\\\\hostedtoolcache\\\\windows\\\\Python\\\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\
577-
\\py2docfx\\\\dist_temp\\\\41\\\\azure-eventhub-5.12.1\\\\samples\\\\sync_samples\\\
578+
\\py2docfx\\\\dist_temp\\\\41\\\\azure_eventhub-5.12.2\\\\samples\\\\sync_samples\\\
578579
\\sample_code_eventhub.py\", \"xml:space\": \"preserve\", \"force\": false, \"\
579580
language\": \"python\", \"highlight_args\": {\"linenostart\": 1}, \"linenos\"\
580581
: false} -->\n\n````python\n\n import os\n from azure.eventhub import EventHubConsumerClient\n\
581-
\ event_hub_connection_str = os.environ['EVENT_HUB_CONN_STR']\n eventhub_name\
582-
\ = os.environ['EVENT_HUB_NAME']\n consumer = EventHubConsumerClient.from_connection_string(\n\
583-
\ conn_str=event_hub_connection_str,\n consumer_group='$Default',\n\
584-
\ eventhub_name=eventhub_name # EventHub name should be specified if it\
585-
\ doesn't show up in connection string.\n )\n\n ````\n"
582+
\ from azure.identity import DefaultAzureCredential\n\n eventhub_fully_qualified_namespace\
583+
\ = os.environ[\"EVENT_HUB_HOSTNAME\"]\n eventhub_name = os.environ['EVENT_HUB_NAME']\n\
584+
\ consumer = EventHubConsumerClient(\n fully_qualified_namespace=eventhub_fully_qualified_namespace,\n\
585+
\ consumer_group='$Default',\n eventhub_name=eventhub_name, # EventHub\
586+
\ name should be specified if it doesn't show up in connection string.\n \
587+
\ credential=DefaultAzureCredential()\n )\n\n ````\n"
586588
- uid: azure.eventhub.EventHubConsumerClient.get_eventhub_properties
587589
name: get_eventhub_properties
588590
summary: "Get properties of the Event Hub.\n\nKeys in the returned dictionary include:\n\
@@ -805,7 +807,7 @@ methods:
805807
sample_code_eventhub.py )]-->\n\n<!-- literal_block {\"ids\": [], \"classes\"\
806808
: [], \"names\": [], \"dupnames\": [], \"backrefs\": [], \"source\": \"C:\\\\\
807809
hostedtoolcache\\\\windows\\\\Python\\\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\
808-
\\py2docfx\\\\dist_temp\\\\41\\\\azure-eventhub-5.12.1\\\\samples\\\\sync_samples\\\
810+
\\py2docfx\\\\dist_temp\\\\41\\\\azure_eventhub-5.12.2\\\\samples\\\\sync_samples\\\
809811
\\sample_code_eventhub.py\", \"xml:space\": \"preserve\", \"force\": false, \"\
810812
language\": \"python\", \"highlight_args\": {\"linenostart\": 1}, \"linenos\"\
811813
: false} -->\n\n````python\n\n logger = logging.getLogger(\"azure.eventhub\"\
@@ -1008,7 +1010,7 @@ methods:
10081010
sample_code_eventhub.py )]-->\n\n<!-- literal_block {\"ids\": [], \"classes\"\
10091011
: [], \"names\": [], \"dupnames\": [], \"backrefs\": [], \"source\": \"C:\\\\\
10101012
hostedtoolcache\\\\windows\\\\Python\\\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\
1011-
\\py2docfx\\\\dist_temp\\\\41\\\\azure-eventhub-5.12.1\\\\samples\\\\sync_samples\\\
1013+
\\py2docfx\\\\dist_temp\\\\41\\\\azure_eventhub-5.12.2\\\\samples\\\\sync_samples\\\
10121014
\\sample_code_eventhub.py\", \"xml:space\": \"preserve\", \"force\": false, \"\
10131015
language\": \"python\", \"highlight_args\": {\"linenostart\": 1}, \"linenos\"\
10141016
: false} -->\n\n````python\n\n logger = logging.getLogger(\"azure.eventhub\"\

docs-ref-autogen/azure-eventhub/azure.eventhub.EventHubProducerClient.yml

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ examples:
265265
sync_samples\\sample_code_eventhub.py )]-->\n\n<!-- literal_block {\"ids\": [],\
266266
\ \"classes\": [], \"names\": [], \"dupnames\": [], \"backrefs\": [], \"source\"\
267267
: \"C:\\\\hostedtoolcache\\\\windows\\\\Python\\\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\
268-
\\py2docfx\\\\dist_temp\\\\41\\\\azure-eventhub-5.12.1\\\\samples\\\\sync_samples\\\
268+
\\py2docfx\\\\dist_temp\\\\41\\\\azure_eventhub-5.12.2\\\\samples\\\\sync_samples\\\
269269
\\sample_code_eventhub.py\", \"xml:space\": \"preserve\", \"force\": false, \"language\"\
270270
: \"python\", \"highlight_args\": {\"linenostart\": 1}, \"linenos\": false} -->\n\
271271
\n````python\n\n import os\n from azure.eventhub import EventHubProducerClient,\
@@ -312,14 +312,15 @@ methods:
312312
\ )]-->\n\n<!-- literal_block {\"ids\": [], \"classes\": [], \"names\": [], \"\
313313
dupnames\": [], \"backrefs\": [], \"source\": \"C:\\\\hostedtoolcache\\\\windows\\\
314314
\\Python\\\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\\py2docfx\\\\dist_temp\\\\\
315-
41\\\\azure-eventhub-5.12.1\\\\samples\\\\sync_samples\\\\sample_code_eventhub.py\"\
315+
41\\\\azure_eventhub-5.12.2\\\\samples\\\\sync_samples\\\\sample_code_eventhub.py\"\
316316
, \"xml:space\": \"preserve\", \"force\": false, \"language\": \"python\", \"\
317317
highlight_args\": {\"linenostart\": 1}, \"linenos\": false} -->\n\n````python\n\
318318
\n import os\n from azure.eventhub import EventHubProducerClient, EventData\n\
319-
\n event_hub_connection_str = os.environ['EVENT_HUB_CONN_STR']\n eventhub_name\
320-
\ = os.environ['EVENT_HUB_NAME']\n\n producer = EventHubProducerClient.from_connection_string(\n\
321-
\ conn_str=event_hub_connection_str,\n eventhub_name=eventhub_name\
322-
\ # EventHub name should be specified if it doesn't show up in connection string.\n\
319+
\ from azure.identity import DefaultAzureCredential\n\n eventhub_fully_qualified_namespace\
320+
\ = os.environ[\"EVENT_HUB_HOSTNAME\"]\n eventhub_name = os.environ['EVENT_HUB_NAME']\n\
321+
\n producer = EventHubProducerClient(\n fully_qualified_namespace=eventhub_fully_qualified_namespace,\n\
322+
\ eventhub_name=eventhub_name, # EventHub name should be specified if it\
323+
\ doesn't show up in connection string.\n credential=DefaultAzureCredential()\n\
323324
\ )\n try:\n event_data_batch = producer.create_batch()\n\n while\
324325
\ True:\n try:\n event_data_batch.add(EventData('Message\
325326
\ inside EventBatchData'))\n except ValueError:\n # EventDataBatch\
@@ -352,7 +353,7 @@ methods:
352353
sync_samples\\sample_code_eventhub.py )]-->\n\n<!-- literal_block {\"ids\": [],\
353354
\ \"classes\": [], \"names\": [], \"dupnames\": [], \"backrefs\": [], \"source\"\
354355
: \"C:\\\\hostedtoolcache\\\\windows\\\\Python\\\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\
355-
\\py2docfx\\\\dist_temp\\\\41\\\\azure-eventhub-5.12.1\\\\samples\\\\sync_samples\\\
356+
\\py2docfx\\\\dist_temp\\\\41\\\\azure_eventhub-5.12.2\\\\samples\\\\sync_samples\\\
356357
\\sample_code_eventhub.py\", \"xml:space\": \"preserve\", \"force\": false, \"\
357358
language\": \"python\", \"highlight_args\": {\"linenostart\": 1}, \"linenos\"\
358359
: false} -->\n\n````python\n\n event_data_batch = producer.create_batch()\n\
@@ -625,14 +626,15 @@ methods:
625626
sync_samples\\sample_code_eventhub.py )]-->\n\n<!-- literal_block {\"ids\": [],\
626627
\ \"classes\": [], \"names\": [], \"dupnames\": [], \"backrefs\": [], \"source\"\
627628
: \"C:\\\\hostedtoolcache\\\\windows\\\\Python\\\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\
628-
\\py2docfx\\\\dist_temp\\\\41\\\\azure-eventhub-5.12.1\\\\samples\\\\sync_samples\\\
629+
\\py2docfx\\\\dist_temp\\\\41\\\\azure_eventhub-5.12.2\\\\samples\\\\sync_samples\\\
629630
\\sample_code_eventhub.py\", \"xml:space\": \"preserve\", \"force\": false, \"\
630631
language\": \"python\", \"highlight_args\": {\"linenostart\": 1}, \"linenos\"\
631-
: false} -->\n\n````python\n\n import os\n from azure.eventhub import EventHubProducerClient\n\
632-
\ event_hub_connection_str = os.environ['EVENT_HUB_CONN_STR']\n eventhub_name\
633-
\ = os.environ['EVENT_HUB_NAME']\n producer = EventHubProducerClient.from_connection_string(\n\
634-
\ conn_str=event_hub_connection_str,\n eventhub_name=eventhub_name\
635-
\ # EventHub name should be specified if it doesn't show up in connection string.\n\
632+
: false} -->\n\n````python\n\n import os\n from azure.identity import DefaultAzureCredential\n\
633+
\n eventhub_fully_qualified_namespace = os.environ[\"EVENT_HUB_HOSTNAME\"]\n\
634+
\ eventhub_name = os.environ['EVENT_HUB_NAME']\n producer = EventHubProducerClient(\n\
635+
\ fully_qualified_namespace=eventhub_fully_qualified_namespace,\n \
636+
\ eventhub_name=eventhub_name, # EventHub name should be specified if it doesn't\
637+
\ show up in connection string.\n credential=DefaultAzureCredential()\n\
636638
\ )\n\n ````\n"
637639
- uid: azure.eventhub.EventHubProducerClient.get_buffered_event_count
638640
name: get_buffered_event_count
@@ -807,7 +809,7 @@ methods:
807809
\ )]-->\n\n<!-- literal_block {\"ids\": [], \"classes\": [], \"names\": [], \"\
808810
dupnames\": [], \"backrefs\": [], \"source\": \"C:\\\\hostedtoolcache\\\\windows\\\
809811
\\Python\\\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\\py2docfx\\\\dist_temp\\\\\
810-
41\\\\azure-eventhub-5.12.1\\\\samples\\\\sync_samples\\\\sample_code_eventhub.py\"\
812+
41\\\\azure_eventhub-5.12.2\\\\samples\\\\sync_samples\\\\sample_code_eventhub.py\"\
811813
, \"xml:space\": \"preserve\", \"force\": false, \"language\": \"python\", \"\
812814
highlight_args\": {\"linenostart\": 1}, \"linenos\": false} -->\n\n````python\n\
813815
\n with producer:\n event_data_batch = producer.create_batch()\n\

docs-ref-autogen/azure-eventhub/azure.eventhub.aio.EventHubConsumerClient.yml

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ examples:
283283
async_samples\\sample_code_eventhub_async.py )]-->\n\n<!-- literal_block {\"ids\"\
284284
: [], \"classes\": [], \"names\": [], \"dupnames\": [], \"backrefs\": [], \"source\"\
285285
: \"C:\\\\hostedtoolcache\\\\windows\\\\Python\\\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\
286-
\\py2docfx\\\\dist_temp\\\\41\\\\azure-eventhub-5.12.1\\\\samples\\\\async_samples\\\
286+
\\py2docfx\\\\dist_temp\\\\41\\\\azure_eventhub-5.12.2\\\\samples\\\\async_samples\\\
287287
\\sample_code_eventhub_async.py\", \"xml:space\": \"preserve\", \"force\": false,\
288288
\ \"language\": \"python\", \"highlight_args\": {\"linenostart\": 1}, \"linenos\"\
289289
: false} -->\n\n````python\n\n import os\n from azure.eventhub.aio import EventHubConsumerClient,\
@@ -308,15 +308,16 @@ methods:
308308
\ )]-->\n\n<!-- literal_block {\"ids\": [], \"classes\": [], \"names\": [], \"\
309309
dupnames\": [], \"backrefs\": [], \"source\": \"C:\\\\hostedtoolcache\\\\windows\\\
310310
\\Python\\\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\\py2docfx\\\\dist_temp\\\\\
311-
41\\\\azure-eventhub-5.12.1\\\\samples\\\\async_samples\\\\sample_code_eventhub_async.py\"\
311+
41\\\\azure_eventhub-5.12.2\\\\samples\\\\async_samples\\\\sample_code_eventhub_async.py\"\
312312
, \"xml:space\": \"preserve\", \"force\": false, \"language\": \"python\", \"\
313313
highlight_args\": {\"linenostart\": 1}, \"linenos\": false} -->\n\n````python\n\
314-
\n import os\n\n event_hub_connection_str = os.environ['EVENT_HUB_CONN_STR']\n\
315-
\ eventhub_name = os.environ['EVENT_HUB_NAME']\n\n from azure.eventhub.aio\
316-
\ import EventHubConsumerClient\n consumer = EventHubConsumerClient.from_connection_string(\n\
317-
\ conn_str=event_hub_connection_str,\n consumer_group='$Default',\n\
318-
\ eventhub_name=eventhub_name # EventHub name should be specified if it\
319-
\ doesn't show up in connection string.\n )\n\n logger = logging.getLogger(\"\
314+
\n import os\n from azure.identity.aio import DefaultAzureCredential\n\n \
315+
\ fully_qualified_namespace = os.environ[\"EVENT_HUB_HOSTNAME\"]\n eventhub_name\
316+
\ = os.environ['EVENT_HUB_NAME']\n\n from azure.eventhub.aio import EventHubConsumerClient\n\
317+
\ consumer = EventHubConsumerClient(\n fully_qualified_namespace=fully_qualified_namespace,\n\
318+
\ consumer_group='$Default',\n eventhub_name=eventhub_name, # EventHub\
319+
\ name should be specified if it doesn't show up in connection string.\n \
320+
\ credential=DefaultAzureCredential()\n )\n\n logger = logging.getLogger(\"\
320321
azure.eventhub\")\n\n async def on_event(partition_context, event):\n \
321322
\ # Put your code here.\n # If the operation is i/o intensive, async will\
322323
\ have better performance.\n logger.info(\"Received event from partition:\
@@ -563,15 +564,17 @@ methods:
563564
async_samples\\sample_code_eventhub_async.py )]-->\n\n<!-- literal_block {\"ids\"\
564565
: [], \"classes\": [], \"names\": [], \"dupnames\": [], \"backrefs\": [], \"source\"\
565566
: \"C:\\\\hostedtoolcache\\\\windows\\\\Python\\\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\
566-
\\py2docfx\\\\dist_temp\\\\41\\\\azure-eventhub-5.12.1\\\\samples\\\\async_samples\\\
567+
\\py2docfx\\\\dist_temp\\\\41\\\\azure_eventhub-5.12.2\\\\samples\\\\async_samples\\\
567568
\\sample_code_eventhub_async.py\", \"xml:space\": \"preserve\", \"force\": false,\
568569
\ \"language\": \"python\", \"highlight_args\": {\"linenostart\": 1}, \"linenos\"\
569570
: false} -->\n\n````python\n\n import os\n from azure.eventhub.aio import\
570-
\ EventHubConsumerClient\n event_hub_connection_str = os.environ['EVENT_HUB_CONN_STR']\n\
571-
\ eventhub_name = os.environ['EVENT_HUB_NAME']\n consumer = EventHubConsumerClient.from_connection_string(\n\
572-
\ conn_str=event_hub_connection_str,\n consumer_group='$Default',\n\
573-
\ eventhub_name=eventhub_name # EventHub name should be specified if it\
574-
\ doesn't show up in connection string.\n )\n\n ````\n"
571+
\ EventHubConsumerClient\n from azure.identity.aio import DefaultAzureCredential\n\
572+
\n fully_qualified_namespace = os.environ[\"EVENT_HUB_HOSTNAME\"]\n eventhub_name\
573+
\ = os.environ['EVENT_HUB_NAME']\n consumer = EventHubConsumerClient(\n \
574+
\ fully_qualified_namespace=fully_qualified_namespace,\n credential=DefaultAzureCredential(),\n\
575+
\ consumer_group='$Default',\n eventhub_name=eventhub_name # EventHub\
576+
\ name should be specified if it doesn't show up in connection string.\n )\n\
577+
\n ````\n"
575578
- uid: azure.eventhub.aio.EventHubConsumerClient.get_eventhub_properties
576579
name: get_eventhub_properties
577580
summary: "Get properties of the Event Hub.\n\nKeys in the returned dictionary include:\n\
@@ -792,7 +795,7 @@ methods:
792795
sample_code_eventhub_async.py )]-->\n\n<!-- literal_block {\"ids\": [], \"classes\"\
793796
: [], \"names\": [], \"dupnames\": [], \"backrefs\": [], \"source\": \"C:\\\\\
794797
hostedtoolcache\\\\windows\\\\Python\\\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\
795-
\\py2docfx\\\\dist_temp\\\\41\\\\azure-eventhub-5.12.1\\\\samples\\\\async_samples\\\
798+
\\py2docfx\\\\dist_temp\\\\41\\\\azure_eventhub-5.12.2\\\\samples\\\\async_samples\\\
796799
\\sample_code_eventhub_async.py\", \"xml:space\": \"preserve\", \"force\": false,\
797800
\ \"language\": \"python\", \"highlight_args\": {\"linenostart\": 1}, \"linenos\"\
798801
: false} -->\n\n````python\n\n logger = logging.getLogger(\"azure.eventhub\"\
@@ -1000,7 +1003,7 @@ methods:
10001003
sample_code_eventhub_async.py )]-->\n\n<!-- literal_block {\"ids\": [], \"classes\"\
10011004
: [], \"names\": [], \"dupnames\": [], \"backrefs\": [], \"source\": \"C:\\\\\
10021005
hostedtoolcache\\\\windows\\\\Python\\\\3.11.9\\\\x64\\\\Lib\\\\site-packages\\\
1003-
\\py2docfx\\\\dist_temp\\\\41\\\\azure-eventhub-5.12.1\\\\samples\\\\async_samples\\\
1006+
\\py2docfx\\\\dist_temp\\\\41\\\\azure_eventhub-5.12.2\\\\samples\\\\async_samples\\\
10041007
\\sample_code_eventhub_async.py\", \"xml:space\": \"preserve\", \"force\": false,\
10051008
\ \"language\": \"python\", \"highlight_args\": {\"linenostart\": 1}, \"linenos\"\
10061009
: false} -->\n\n````python\n\n logger = logging.getLogger(\"azure.eventhub\"\

0 commit comments

Comments
 (0)