Skip to content

Commit 9f29ad6

Browse files
authored
Merge pull request #36 from asun-ps/alan-fix-branch
This commit contains changes for releasing v1.12.1 of the Python REST SDK
2 parents 78fb981 + df56e2c commit 9f29ad6

11 files changed

Lines changed: 36 additions & 16 deletions

File tree

PKG-INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Metadata-Version: 1.12.0
1+
Metadata-Version: 1.12.1
22
Name: purity_fb
3-
Version: 1.12.0
3+
Version: 1.12.1
44
Summary: Pure Storage FlashBlade REST 1.12 Python SDK.
55
License: Apache 2.0

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,19 @@ Pure Storage FlashBlade REST 1.12 Python SDK. Compatible with REST API versions
44
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
55

66
- API version: 1.12
7-
- Package version: 1.12.0
7+
- Package version: 1.12.1
88
- Build package: io.swagger.codegen.languages.PythonClientCodegen
99

1010
For more information, please visit [http://www.purestorage.com](http://www.purestorage.com)
1111

1212
## Release Notes
1313

14+
### Package version 1.12.1
15+
- This release of the purity_fb Python REST SDK accompanies the 3.2.0 release of Purity//FB.
16+
17+
#### Fixes
18+
- Added 1.12 as a supported version for purity_fb.
19+
1420
### Package version 1.12.0
1521
- This release of the purity_fb Python REST SDK accompanies the 3.2.0 release of Purity//FB.
1622

docs/index.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,19 @@ Pure Storage FlashBlade REST 1.12 Python SDK. Compatible with REST API versions
44
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
55

66
- API version: 1.12
7-
- Package version: 1.12.0
7+
- Package version: 1.12.1
88
- Build package: io.swagger.codegen.languages.PythonClientCodegen
99

1010
For more information, please visit [http://www.purestorage.com](http://www.purestorage.com)
1111

1212
## Release Notes
1313

14+
### Package version 1.12.1
15+
- This release of the purity_fb Python REST SDK accompanies the 3.2.0 release of Purity//FB.
16+
17+
#### Fixes
18+
- Added 1.12 as a supported version for purity_fb.
19+
1420
### Package version 1.12.0
1521
- This release of the purity_fb Python REST SDK accompanies the 3.2.0 release of Purity//FB.
1622

purity_fb/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,19 @@ Pure Storage FlashBlade REST 1.12 Python SDK. Compatible with REST API versions
44
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
55

66
- API version: 1.12
7-
- Package version: 1.12.0
7+
- Package version: 1.12.1
88
- Build package: io.swagger.codegen.languages.PythonClientCodegen
99

1010
For more information, please visit [http://www.purestorage.com](http://www.purestorage.com)
1111

1212
## Release Notes
1313

14+
### Package version 1.12.1
15+
- This release of the purity_fb Python REST SDK accompanies the 3.2.0 release of Purity//FB.
16+
17+
#### Fixes
18+
- Added 1.12 as a supported version for purity_fb.
19+
1420
### Package version 1.12.0
1521
- This release of the purity_fb Python REST SDK accompanies the 3.2.0 release of Purity//FB.
1622

purity_fb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from .fb_client import PurityFb
22
from .api_client import *
3-
from .purity_fb_1dot11.models import *
3+
from .purity_fb_1dot12.models import *

purity_fb/api_client/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# coding: utf-8
22
"""
3-
Pure Storage FlashBlade REST 1.11 Python SDK
3+
Pure Storage FlashBlade REST 1.12 Python SDK
44
5-
Pure Storage FlashBlade REST 1.11 Python SDK. Compatible with REST API versions 1.0 - 1.11. Developed by [Pure Storage, Inc](http://www.purestorage.com/). Documentations can be found at [purity-fb.readthedocs.io](http://purity-fb.readthedocs.io/).
5+
Pure Storage FlashBlade REST 1.12 Python SDK. Compatible with REST API versions 1.0 - 1.12. Developed by [Pure Storage, Inc](http://www.purestorage.com/). Documentations can be found at [purity-fb.readthedocs.io](http://purity-fb.readthedocs.io/).
66
77
OpenAPI spec version: 1.3
88
Contact: info@purestorage.com

purity_fb/api_client/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# coding: utf-8
22

33
"""
4-
Pure Storage FlashBlade REST 1.11 Python SDK
4+
Pure Storage FlashBlade REST 1.12 Python SDK
55
6-
Pure Storage FlashBlade REST 1.11 Python SDK. Compatible with REST API versions 1.0 - 1.11. Developed by [Pure Storage, Inc](http://www.purestorage.com/). Documentations can be found at [purity-fb.readthedocs.io](http://purity-fb.readthedocs.io/).
6+
Pure Storage FlashBlade REST 1.12 Python SDK. Compatible with REST API versions 1.0 - 1.12. Developed by [Pure Storage, Inc](http://www.purestorage.com/). Documentations can be found at [purity-fb.readthedocs.io](http://purity-fb.readthedocs.io/).
77
88
OpenAPI spec version: 1.3
99
Contact: info@purestorage.com

purity_fb/api_client/rest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# coding: utf-8
22

33
"""
4-
Pure Storage FlashBlade REST 1.11 Python SDK
4+
Pure Storage FlashBlade REST 1.12 Python SDK
55
6-
Pure Storage FlashBlade REST 1.11 Python SDK. Compatible with REST API versions 1.0 - 1.11. Developed by [Pure Storage, Inc](http://www.purestorage.com/). Documentations can be found at [purity-fb.readthedocs.io](http://purity-fb.readthedocs.io/).
6+
Pure Storage FlashBlade REST 1.12 Python SDK. Compatible with REST API versions 1.0 - 1.12. Developed by [Pure Storage, Inc](http://www.purestorage.com/). Documentations can be found at [purity-fb.readthedocs.io](http://purity-fb.readthedocs.io/).
77
88
OpenAPI spec version: 1.3
99
Contact: info@purestorage.com

purity_fb/api_client/version_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# coding: utf-8
22

33
"""
4-
Pure Storage FlashBlade REST 1.11 Python SDK
4+
Pure Storage FlashBlade REST 1.12 Python SDK
55
6-
Pure Storage FlashBlade REST 1.11 Python SDK. Compatible with REST API versions 1.0 - 1.11. Developed by [Pure Storage, Inc](http://www.purestorage.com/). Documentations can be found at [purity-fb.readthedocs.io](http://purity-fb.readthedocs.io/).
6+
Pure Storage FlashBlade REST 1.12 Python SDK. Compatible with REST API versions 1.0 - 1.12. Developed by [Pure Storage, Inc](http://www.purestorage.com/). Documentations can be found at [purity-fb.readthedocs.io](http://purity-fb.readthedocs.io/).
77
88
OpenAPI spec version: 1.3
99
Contact: info@purestorage.com

purity_fb/fb_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@
2121
from . import purity_fb_1dot9
2222
from . import purity_fb_1dot10
2323
from . import purity_fb_1dot11
24+
from . import purity_fb_1dot12
2425

25-
SUPPORTED_VERSIONS = ['1.0', '1.1', '1.2', '1.3', '1.4', '1.5', '1.6', '1.7', '1.8', '1.8.1', '1.9', '1.10', '1.11']
26+
SUPPORTED_VERSIONS = ['1.0', '1.1', '1.2', '1.3', '1.4', '1.5', '1.6', '1.7', '1.8', '1.8.1', '1.9', '1.10', '1.11', '1.12']
2627

2728
version_module_dict = {
2829
'1.0': purity_fb_1dot0,
@@ -38,6 +39,7 @@
3839
'1.9': purity_fb_1dot9,
3940
'1.10': purity_fb_1dot10,
4041
'1.11': purity_fb_1dot11,
42+
'1.12': purity_fb_1dot12,
4143
}
4244

4345

0 commit comments

Comments
 (0)