8000 Update azure_rm_servicebus related document by Fred-sun · Pull Request #58105 · ansible/ansible · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update azure_rm_servicebus related document #58105

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 21, 2019
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
22 changes: 11 additions & 11 deletions lib/ansible/modules/cloud/azure/azure_rm_servicebus.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,45 +17,43 @@
---
module: azure_rm_servicebus
version_added: "2.8"
short_description: Manage Azure Service Bus.
short_description: Manage Azure Service Bus
description:
- Create, update or delete an Azure Service Bus namespaces.
options:
resource_group:
description:
- name of resource group.
- Name of resource group.
required: true
name:
description:
- name of the servicebus namespace
- Name of the servicebus namespace.
required: true
state:
description:
- Assert the state of the route. Use 'present' to create or update and
'absent' to delete.
- Assert the state of the servicebus. Use C(present) to create or update and use C(absen) to delete.
default: present
choices:
- absent
- present
location:
description:
- Namespace location.
- The servicebus's location.
sku:
description:
- Namespace sku.
- Namespace SKU.
choices:
- standard
- basic
- premium
default:
standard
default: standard

extends_documentation_fragment:
- azure
- azure_tags

author:
- "Yuwei Zhou (@yuwzho)"
- Yuwei Zhou (@yuwzho)

'''

Expand All @@ -67,9 +65,11 @@
'''
RETURN = '''
id:
description: Current state of the service bus.
description:
- Current state of the service bus.
returned: success
type: str
sample: "/subscriptions/xxx...xxx/resourceGroups/myResourceGroup/providers/Microsoft.ServiceBus/namespaces/myServicebus"
'''

try:
Expand Down
Loading
0