Skip to content

Commit 19ae466

Browse files
Merge pull request #289 from HewlettPackard/PR
OV9.0 Validation
2 parents 31dc28b + f0b70d0 commit 19ae466

File tree

8 files changed

+508
-441
lines changed

8 files changed

+508
-441
lines changed

.github/workflows/createtagandrelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
env:
1818
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1919
WITH_V: true
20-
CUSTOM_TAG: "v8.9.0"
20+
CUSTOM_TAG: "v9.0.0"
2121
- name: Display
2222
run: echo ${{ steps.tag_and_prepare_release.outputs.new_tag }}
2323
- uses: actions/checkout@v2

.github/workflows/dockerimage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ jobs:
3535
- name: Login to Docker Hub
3636
run: echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
3737
- name: Build the tagged Docker image
38-
run: docker build . --file Dockerfile --tag hewlettpackardenterprise/hpe-oneview-sdk-for-python:${{ env.GITHUB_REF }}-OV8.9
38+
run: docker build . --file Dockerfile --tag hewlettpackardenterprise/hpe-oneview-sdk-for-python:${{ env.GITHUB_REF }}-OV9.0
3939
- name: Push the tagged Docker image
40-
run: docker push hewlettpackardenterprise/hpe-oneview-sdk-for-python:${{ env.GITHUB_REF }}-OV8.9
40+
run: docker push hewlettpackardenterprise/hpe-oneview-sdk-for-python:${{ env.GITHUB_REF }}-OV9.0

CHANGELOG.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,70 @@
1+
# 9.0.0
2+
#### Notes
3+
Extends Support Of The Sdk To Oneview Rest Api Version 6600 (Oneview V9.0.0)
4+
5+
##### Features Supported With The Current Release
6+
- Appliance Configuration Timeconfig
7+
- Appliance Health Status
8+
- Appliance Network Interfaces
9+
- Appliance Node Information
10+
- Appliance Proxy Configuration
11+
- Appliance Snmpv1 Trap Destinations
12+
- Appliance Snmpv3 Trap Destinations
13+
- Appliance Snmpv3 Users
14+
- Appliance Ssh Access
15+
- Appliance Time And Locale Configuration
16+
- Certificates Server
17+
- Drive Enclosures
18+
- Connection Templates
19+
- Enclosure Groups
20+
- Enclosures
21+
- Ethernet Networks
22+
- Fc Networks
23+
- Fcoe Networks
24+
- Firmware Bundles
25+
- Firmware Drivers
26+
- Ha Nodes
27+
- Hypervisor Cluster Profiles
28+
- Hypervisor Managers
29+
- Id Pool Ipv4 Range
30+
- Id Pool Ipv4 Subnets
31+
- Id Pools
32+
- Index Resources
33+
- Interconnect Types
34+
- Interconnects
35+
- Labels
36+
- Logical Enclosures
37+
- Logical Interconnect Groups
38+
- Logical Interconnects
39+
- Network Sets
40+
- Rack Managers
41+
- Repositories
42+
- Restores
43+
- San Managers
44+
- San Providers
45+
- Sas Interconnects
46+
- Sas Interconnect Types
47+
- Sas Logical Interconnect Groups
48+
- Sas Logical Interconnects
49+
- Sas Logical Jbods
50+
- Sas Logical Jbod Attachments
51+
- Scopes
52+
- Server Hardware
53+
- Server Hardware Types
54+
- Server Profile Templates
55+
- Server Profiles
56+
- Storage Pools
57+
- Storage Systems
58+
- Storage Templates
59+
- Storage Volume
60+
- Storage Volume Attachments
61+
- Storage Volume Templates
62+
- Tasks
63+
- Uplink Sets
64+
- Users
65+
- Version
66+
- Volumes
67+
168
# 8.9.0
269
#### Notes
370
Extends Support Of The Sdk To Oneview Rest Api Version 6400 (Oneview V8.9.0)

README.md

Lines changed: 7 additions & 7 deletions
Large diffs are not rendered by default.

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@
7171
# built documents.
7272
#
7373
# The short X.Y version.
74-
version = u'8.9.0'
74+
version = u'9.0.0'
7575
# The full version, including alpha/beta/rc tags.
76-
release = u'8.9.0'
76+
release = u'9.0.0'
7777

7878
# The language for content autogenerated by Sphinx. Refer to documentation
7979
# for a list of supported languages.

endpoints-support.md

Lines changed: 427 additions & 427 deletions
Large diffs are not rendered by default.

hpeOneView/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
standard_library.install_aliases()
1515

1616
__title__ = 'hpeOneView'
17-
__version__ = '8.9.0'
17+
__version__ = '9.0.0'
1818
__copyright__ = '(C) Copyright (2012-2024) Hewlett Packard Enterprise Development LP'
1919
__license__ = 'Apache'
2020

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from setuptools import setup
2121

2222
setup(name='hpeOneView',
23-
version='8.9.0',
23+
version='9.0.0',
2424
description='HPE OneView Python Library',
2525
url='https://github.com/HewlettPackard/oneview-python',
2626
download_url="https://github.com/HewlettPackard/oneview-python/tarball/v8.6.0",

0 commit comments

Comments
 (0)