Skip to content
Merged
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
Expand Up @@ -75,15 +75,15 @@
examples:
- name: Creates a new namespace.
text: az eventhubs namespace create --resource-group myresourcegroup --name mynamespace --location westus
--tags tag1=value1 tag2=value2 --sku Standard --is-auto-inflate-enabled False --maximum-throughput-units 30
--tags tag1=value1 tag2=value2 --sku Standard --enable-auto-inflate False --maximum-throughput-units 30
"""

helps['eventhubs namespace update'] = """
type: command
short-summary: Updates the Event Hubs Namespace
examples:
- name: Update a new namespace.
text: az eventhubs namespace update --resource-group myresourcegroup --name mynamespace --tags tag=value --is-auto-inflate-enabled True
text: az eventhubs namespace update --resource-group myresourcegroup --name mynamespace --tags tag=value --enable-auto-inflate True
"""

helps['eventhubs namespace show'] = """
Expand Down Expand Up @@ -174,15 +174,15 @@
short-summary: Creates the Event Hubs Eventhub
examples:
- name: Create a new Eventhub.
text: az eventhubs eventhub create --resource-group myresourcegroup --namespace-name mynamespace --name myeventhub --message-retention 4 ---partition-count 15
text: az eventhubs eventhub create --resource-group myresourcegroup --namespace-name mynamespace --name myeventhub --message-retention 4 --partition-count 15
"""

helps['eventhubs eventhub update'] = """
type: command
short-summary: Updates the Event Hubs Eventhub
examples:
- name: Updates a new Eventhub.
text: az eventhubs eventhub update --resource-group myresourcegroup --namespace-name mynamespace --name myeventhub --message-retention 3 ---partition-count 12
text: az eventhubs eventhub update --resource-group myresourcegroup --namespace-name mynamespace --name myeventhub --message-retention 3 --partition-count 12
"""

helps['eventhubs eventhub show'] = """
Expand Down