|
| 1 | +# -------------------------------------------------------------------------- |
| 2 | +# Copyright (c) Microsoft Corporation. All rights reserved. |
| 3 | +# Licensed under the MIT License. See License.txt in the project root for |
| 4 | +# license information. |
| 5 | +# |
| 6 | +# Code generated by Microsoft (R) AutoRest Code Generator. |
| 7 | +# Changes may cause incorrect behavior and will be lost if the code is |
| 8 | +# regenerated. |
| 9 | +# -------------------------------------------------------------------------- |
| 10 | +# pylint: disable=too-many-lines |
| 11 | + |
| 12 | +from knack.help_files import helps |
| 13 | + |
| 14 | + |
| 15 | +helps['healthbot'] = """ |
| 16 | + type: group |
| 17 | + short-summary: Manage bot with healthbot |
| 18 | +""" |
| 19 | + |
| 20 | +helps['healthbot list'] = """ |
| 21 | + type: command |
| 22 | + short-summary: "Returns all the resources of a particular type belonging to a resource group And Returns all the \ |
| 23 | +resources of a particular type belonging to a subscription." |
| 24 | + examples: |
| 25 | + - name: List Bots by Resource Group |
| 26 | + text: |- |
| 27 | + az healthbot list --resource-group "OneResourceGroupName" |
| 28 | + - name: List Bots by Subscription |
| 29 | + text: |- |
| 30 | + az healthbot list |
| 31 | +""" |
| 32 | + |
| 33 | +helps['healthbot show'] = """ |
| 34 | + type: command |
| 35 | + short-summary: "Get a HealthBot." |
| 36 | + examples: |
| 37 | + - name: ResourceInfoGet |
| 38 | + text: |- |
| 39 | + az healthbot show --name "samplebotname" --resource-group "healthbotClient" |
| 40 | +""" |
| 41 | + |
| 42 | +helps['healthbot create'] = """ |
| 43 | + type: command |
| 44 | + short-summary: "Create a new HealthBot." |
| 45 | + examples: |
| 46 | + - name: BotCreate |
| 47 | + text: |- |
| 48 | + az healthbot create --name "samplebotname" --location "East US" --sku "F0" --resource-group \ |
| 49 | +"healthbotClient" |
| 50 | +""" |
| 51 | + |
| 52 | +helps['healthbot update'] = """ |
| 53 | + type: command |
| 54 | + short-summary: "Patch a HealthBot." |
| 55 | + examples: |
| 56 | + - name: BotUpdate |
| 57 | + text: |- |
| 58 | + az healthbot update --bot-name "samplebotname" --name "F0" --resource-group "healthbotClient" |
| 59 | +""" |
| 60 | + |
| 61 | +helps['healthbot delete'] = """ |
| 62 | + type: command |
| 63 | + short-summary: "Delete a HealthBot." |
| 64 | + examples: |
| 65 | + - name: BotDelete |
| 66 | + text: |- |
| 67 | + az healthbot delete --name "samplebotname" --resource-group "healthbotClient" |
| 68 | +""" |
| 69 | + |
| 70 | +helps['healthbot wait'] = """ |
| 71 | + type: command |
| 72 | + short-summary: Place the CLI in a waiting state until a condition of the healthbot is met. |
| 73 | + examples: |
| 74 | + - name: Pause executing next line of CLI script until the healthbot is successfully created. |
| 75 | + text: |- |
| 76 | + az healthbot wait --name "samplebotname" --resource-group "healthbotClient" --created |
| 77 | + - name: Pause executing next line of CLI script until the healthbot is successfully deleted. |
| 78 | + text: |- |
| 79 | + az healthbot wait --name "samplebotname" --resource-group "healthbotClient" --deleted |
| 80 | +""" |
0 commit comments