Skip to content
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
6 changes: 5 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@ Release History

0.0.2 (2020-11-17)
++++++++++++++++++
- fix the delete command so that it won't error out when called if the user has the correct permissions
- fix the delete command so that it won't error out when called if the user has the correct permissions

1.0.0 (2021-11-11)
++++++++++++++++++
- point list/update operations to new GA API version
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ def list_by_subscription(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
api_version = "2020-08-06-preview"
api_version = "2021-08-09"
accept = "application/json"

def prepare_request(next_link=None):
Expand Down Expand Up @@ -453,7 +453,7 @@ def list(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
api_version = "2020-08-06-preview"
api_version = "2021-08-09"
accept = "application/json"

def prepare_request(next_link=None):
Expand Down Expand Up @@ -531,7 +531,7 @@ def get(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
api_version = "2020-08-06-preview"
api_version = "2021-08-09"
accept = "application/json"

# Construct URL
Expand Down Expand Up @@ -705,7 +705,7 @@ def update(
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
}
error_map.update(kwargs.pop('error_map', {}))
api_version = "2020-08-06-preview"
api_version = "2021-08-09"
content_type = kwargs.pop("content_type", "application/json")
accept = "application/json"

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from codecs import open
from setuptools import setup, find_packages

VERSION = "0.0.2"
VERSION = "1.0.0"

CLASSIFIERS = [
'Development Status :: 4 - Beta',
Expand Down