Skip to content
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

add azure_rm_webapp #40005

Merged
merged 37 commits into from Aug 7, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
7176939
add azure_rm_webapp
yungezz May 11, 2018
47c5f29
fix lint error
yungezz May 12, 2018
611837e
resolve comments
yungezz May 14, 2018
4a86592
fix lint
yungezz May 14, 2018
29b61e8
fix lint
yungezz May 14, 2018
a160fb1
fix lint
yungezz May 14, 2018
433bfc6
fix lint
yungezz May 15, 2018
62c0244
fix test failure
yungezz May 15, 2018
74eee24
fix test
yungezz May 15, 2018
fb9bc6f
fix test
yungezz May 15, 2018
176d0a1
fix test
yungezz May 15, 2018
5f8dcc6
refine ux
yungezz May 28, 2018
890c57c
resolve comments
yungezz May 28, 2018
3845e4a
fix lint and test
yungezz May 28, 2018
1592986
fix lint
yungezz May 28, 2018
4711462
code cleanup
yungezz May 30, 2018
b05053c
combine windows_frameworks/linux_framework to one
yungezz Jun 5, 2018
360b286
fix lint in doc
yungezz Jun 5, 2018
054d431
fix l int
yungezz Jun 5, 2018
b3f902e
fix lint
yungezz Jun 5, 2018
932bdf0
fix bug
yungezz Jun 6, 2018
b0d8b67
fix bug
yungezz Jun 8, 2018
1baeac0
fix bug
yungezz Jun 11, 2018
1c0bb13
fix bug
yungezz Jun 11, 2018
f45a214
fix syntax error
yungezz Jun 11, 2018
7a2329e
fix lint error
yungezz Jun 11, 2018
b7bae22
fix bug of wrong indent
yungezz Jun 11, 2018
3a38640
fix test issue
yungezz Jun 12, 2018
6bb3c1a
update java framework parameter
yungezz Jun 15, 2018
46ba481
fix lint error
yungezz Jun 15, 2018
da7c0c0
resolve comments
yungezz Jul 25, 2018
01623f6
fix lint
yungezz Jul 25, 2018
36d3979
resolve comments
yungezz Jul 26, 2018
e701582
fix bug
yungezz Jul 27, 2018
7038771
update test
yungezz Jul 27, 2018
413d2a4
fix lint
yungezz Jul 27, 2018
d453d8a
fix test
yungezz Jul 27, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions lib/ansible/module_utils/azure_rm_common.py
Expand Up @@ -67,7 +67,8 @@
),
'NetworkManagementClient': '2017-11-01',
'ResourceManagementClient': '2017-05-10',
'StorageManagementClient': '2017-10-01'
'StorageManagementClient': '2017-10-01',
'WebsiteManagementClient': '2016-08-01'
},

'2017-03-09-profile': {
Expand Down Expand Up @@ -1047,7 +1048,8 @@ def web_client(self):
self.log('Getting web client')
if not self._web_client:
self._web_client = self.get_mgmt_svc_client(WebSiteManagementClient,
base_url=self._cloud_environment.endpoints.resource_manager)
base_url=self._cloud_environment.endpoints.resource_manager,
api_version='2016-08-01')
return self._web_client

@property
Expand Down