From f1bd8d942590606a24f03a49e997fc4fafaea8b1 Mon Sep 17 00:00:00 2001 From: Priyanka Sood Date: Fri, 14 Feb 2020 00:17:29 +0530 Subject: [PATCH 1/5] Adding support to firmware driver for api800/1000/1200 --- .../resource/api1000/c7000/firmware_driver.rb | 22 +++++++++++++++++++ .../api1000/synergy/firmware_driver.rb | 22 +++++++++++++++++++ .../resource/api1200/c7000/firmware_driver.rb | 22 +++++++++++++++++++ .../api1200/synergy/firmware_driver.rb | 22 +++++++++++++++++++ .../resource/api800/c7000/firmware_driver.rb | 22 +++++++++++++++++++ .../api800/synergy/firmware_driver.rb | 22 +++++++++++++++++++ 6 files changed, 132 insertions(+) create mode 100644 lib/oneview-sdk/resource/api1000/c7000/firmware_driver.rb create mode 100644 lib/oneview-sdk/resource/api1000/synergy/firmware_driver.rb create mode 100644 lib/oneview-sdk/resource/api1200/c7000/firmware_driver.rb create mode 100644 lib/oneview-sdk/resource/api1200/synergy/firmware_driver.rb create mode 100644 lib/oneview-sdk/resource/api800/c7000/firmware_driver.rb create mode 100644 lib/oneview-sdk/resource/api800/synergy/firmware_driver.rb diff --git a/lib/oneview-sdk/resource/api1000/c7000/firmware_driver.rb b/lib/oneview-sdk/resource/api1000/c7000/firmware_driver.rb new file mode 100644 index 000000000..5d9e11f25 --- /dev/null +++ b/lib/oneview-sdk/resource/api1000/c7000/firmware_driver.rb @@ -0,0 +1,22 @@ +# (C) Copyright 2017 Hewlett Packard Enterprise Development LP +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# You may not use this file except in compliance with the License. +# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed +# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +# CONDITIONS OF ANY KIND, either express or implied. See the License for the specific +# language governing permissions and limitations under the License. + +require_relative '../../api300/c7000/firmware_driver' + +module OneviewSDK + module API1000 + module C7000 + # FirmwareDriver resource implementation for API600 C7000 + class FirmwareDriver < OneviewSDK::API300::C7000::FirmwareDriver + end + end + end +end diff --git a/lib/oneview-sdk/resource/api1000/synergy/firmware_driver.rb b/lib/oneview-sdk/resource/api1000/synergy/firmware_driver.rb new file mode 100644 index 000000000..ff5362d6a --- /dev/null +++ b/lib/oneview-sdk/resource/api1000/synergy/firmware_driver.rb @@ -0,0 +1,22 @@ +# (C) Copyright 2017 Hewlett Packard Enterprise Development LP +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# You may not use this file except in compliance with the License. +# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed +# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +# CONDITIONS OF ANY KIND, either express or implied. See the License for the specific +# language governing permissions and limitations under the License. + +require_relative '../../api300/synergy/firmware_driver' + +module OneviewSDK + module API1000 + module Synergy + # FirmwareDriver resource implementation for API600 Synergy + class FirmwareDriver < OneviewSDK::API300::Synergy::FirmwareDriver + end + end + end +end diff --git a/lib/oneview-sdk/resource/api1200/c7000/firmware_driver.rb b/lib/oneview-sdk/resource/api1200/c7000/firmware_driver.rb new file mode 100644 index 000000000..1141f909d --- /dev/null +++ b/lib/oneview-sdk/resource/api1200/c7000/firmware_driver.rb @@ -0,0 +1,22 @@ +# (C) Copyright 2017 Hewlett Packard Enterprise Development LP +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# You may not use this file except in compliance with the License. +# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed +# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +# CONDITIONS OF ANY KIND, either express or implied. See the License for the specific +# language governing permissions and limitations under the License. + +require_relative '../../api300/c7000/firmware_driver' + +module OneviewSDK + module API1200 + module C7000 + # FirmwareDriver resource implementation for API600 C7000 + class FirmwareDriver < OneviewSDK::API300::C7000::FirmwareDriver + end + end + end +end diff --git a/lib/oneview-sdk/resource/api1200/synergy/firmware_driver.rb b/lib/oneview-sdk/resource/api1200/synergy/firmware_driver.rb new file mode 100644 index 000000000..33108cb99 --- /dev/null +++ b/lib/oneview-sdk/resource/api1200/synergy/firmware_driver.rb @@ -0,0 +1,22 @@ +# (C) Copyright 2017 Hewlett Packard Enterprise Development LP +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# You may not use this file except in compliance with the License. +# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed +# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +# CONDITIONS OF ANY KIND, either express or implied. See the License for the specific +# language governing permissions and limitations under the License. + +require_relative '../../api300/synergy/firmware_driver' + +module OneviewSDK + module API1200 + module Synergy + # FirmwareDriver resource implementation for API600 Synergy + class FirmwareDriver < OneviewSDK::API300::Synergy::FirmwareDriver + end + end + end +end diff --git a/lib/oneview-sdk/resource/api800/c7000/firmware_driver.rb b/lib/oneview-sdk/resource/api800/c7000/firmware_driver.rb new file mode 100644 index 000000000..749f5daf6 --- /dev/null +++ b/lib/oneview-sdk/resource/api800/c7000/firmware_driver.rb @@ -0,0 +1,22 @@ +# (C) Copyright 2017 Hewlett Packard Enterprise Development LP +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# You may not use this file except in compliance with the License. +# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed +# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +# CONDITIONS OF ANY KIND, either express or implied. See the License for the specific +# language governing permissions and limitations under the License. + +require_relative '../../api300/c7000/firmware_driver' + +module OneviewSDK + module API800 + module C7000 + # FirmwareDriver resource implementation for API600 C7000 + class FirmwareDriver < OneviewSDK::API300::C7000::FirmwareDriver + end + end + end +end diff --git a/lib/oneview-sdk/resource/api800/synergy/firmware_driver.rb b/lib/oneview-sdk/resource/api800/synergy/firmware_driver.rb new file mode 100644 index 000000000..fa74a8993 --- /dev/null +++ b/lib/oneview-sdk/resource/api800/synergy/firmware_driver.rb @@ -0,0 +1,22 @@ +# (C) Copyright 2017 Hewlett Packard Enterprise Development LP +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# You may not use this file except in compliance with the License. +# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed +# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +# CONDITIONS OF ANY KIND, either express or implied. See the License for the specific +# language governing permissions and limitations under the License. + +require_relative '../../api300/synergy/firmware_driver' + +module OneviewSDK + module API800 + module Synergy + # FirmwareDriver resource implementation for API600 Synergy + class FirmwareDriver < OneviewSDK::API300::Synergy::FirmwareDriver + end + end + end +end From bf4180bc6b7751d90192a21ca36a8a22a5f554e6 Mon Sep 17 00:00:00 2001 From: Priyanka Sood Date: Fri, 14 Feb 2020 00:26:36 +0530 Subject: [PATCH 2/5] Adding documentation for firmware driver --- CHANGELOG.md | 9 +++++++++ endpoints-support.md | 8 ++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3304a1791..24ec4907e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## v5.9.0(unreleased) + +#### Notes +- This release supports OneView Rest API versions 800/1000/1200 minimally where we can use OneView v4.10/v4.20/v5.0 with this SDK. No new fields are added/deleted to support OneView Rest API 800/1000/1200. Complete support will be done in next releases. + +#### Features Supported +This release adds support to OneView Rest API version 800/1000/1200 for the hardware variants C7000 and Synergy to the already existing features: +- Firmware Driver + ## v5.8.0 #### Notes diff --git a/endpoints-support.md b/endpoints-support.md index 16a988506..2071afdfd 100644 --- a/endpoints-support.md +++ b/endpoints-support.md @@ -109,10 +109,10 @@ OneviewSDK::Datacenter.find_by(@client, width: 11000).map(&:remove) | **Firmware Bundles** | |/rest/firmware-bundles | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: | | **Firmware Drivers** | -|/rest/firmware-drivers | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: | -|/rest/firmware-drivers | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: | -|/rest/firmware-drivers/{id} | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: | -|/rest/firmware-drivers/{id} | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: | +|/rest/firmware-drivers | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | +|/rest/firmware-drivers | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: | :heavy_multiplication_x: | +|/rest/firmware-drivers/{id} | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | +|/rest/firmware-drivers/{id} | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: | :heavy_multiplication_x: | | **Hypervisor Managers** | |/rest/hypervisor-managers | GET | :heavy_minus_sign: | :heavy_minus_sign: | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: | |/rest/hypervisor-managers | POST | :heavy_minus_sign: | :heavy_minus_sign: | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: | From 8a734776955bef659d9d38251d8acb6a5c6fc8c7 Mon Sep 17 00:00:00 2001 From: Priyanka Sood Date: Fri, 14 Feb 2020 00:30:23 +0530 Subject: [PATCH 3/5] Modified versions as per API's --- lib/oneview-sdk/resource/api1000/c7000/firmware_driver.rb | 6 +++--- lib/oneview-sdk/resource/api1000/synergy/firmware_driver.rb | 6 +++--- lib/oneview-sdk/resource/api1200/c7000/firmware_driver.rb | 6 +++--- lib/oneview-sdk/resource/api1200/synergy/firmware_driver.rb | 6 +++--- lib/oneview-sdk/resource/api800/c7000/firmware_driver.rb | 6 +++--- lib/oneview-sdk/resource/api800/synergy/firmware_driver.rb | 6 +++--- 6 files changed, 18 insertions(+), 18 deletions(-) diff --git a/lib/oneview-sdk/resource/api1000/c7000/firmware_driver.rb b/lib/oneview-sdk/resource/api1000/c7000/firmware_driver.rb index 5d9e11f25..f9083ee6f 100644 --- a/lib/oneview-sdk/resource/api1000/c7000/firmware_driver.rb +++ b/lib/oneview-sdk/resource/api1000/c7000/firmware_driver.rb @@ -9,13 +9,13 @@ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. -require_relative '../../api300/c7000/firmware_driver' +require_relative '../../api800/c7000/firmware_driver' module OneviewSDK module API1000 module C7000 - # FirmwareDriver resource implementation for API600 C7000 - class FirmwareDriver < OneviewSDK::API300::C7000::FirmwareDriver + # FirmwareDriver resource implementation for API1000 C7000 + class FirmwareDriver < OneviewSDK::API800::C7000::FirmwareDriver end end end diff --git a/lib/oneview-sdk/resource/api1000/synergy/firmware_driver.rb b/lib/oneview-sdk/resource/api1000/synergy/firmware_driver.rb index ff5362d6a..6c9f523b3 100644 --- a/lib/oneview-sdk/resource/api1000/synergy/firmware_driver.rb +++ b/lib/oneview-sdk/resource/api1000/synergy/firmware_driver.rb @@ -9,13 +9,13 @@ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. -require_relative '../../api300/synergy/firmware_driver' +require_relative '../../api800/synergy/firmware_driver' module OneviewSDK module API1000 module Synergy - # FirmwareDriver resource implementation for API600 Synergy - class FirmwareDriver < OneviewSDK::API300::Synergy::FirmwareDriver + # FirmwareDriver resource implementation for API1000 Synergy + class FirmwareDriver < OneviewSDK::API800::Synergy::FirmwareDriver end end end diff --git a/lib/oneview-sdk/resource/api1200/c7000/firmware_driver.rb b/lib/oneview-sdk/resource/api1200/c7000/firmware_driver.rb index 1141f909d..cf3bd0a66 100644 --- a/lib/oneview-sdk/resource/api1200/c7000/firmware_driver.rb +++ b/lib/oneview-sdk/resource/api1200/c7000/firmware_driver.rb @@ -9,13 +9,13 @@ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. -require_relative '../../api300/c7000/firmware_driver' +require_relative '../../api1000/c7000/firmware_driver' module OneviewSDK module API1200 module C7000 - # FirmwareDriver resource implementation for API600 C7000 - class FirmwareDriver < OneviewSDK::API300::C7000::FirmwareDriver + # FirmwareDriver resource implementation for API1200 C7000 + class FirmwareDriver < OneviewSDK::API1000::C7000::FirmwareDriver end end end diff --git a/lib/oneview-sdk/resource/api1200/synergy/firmware_driver.rb b/lib/oneview-sdk/resource/api1200/synergy/firmware_driver.rb index 33108cb99..8261e2327 100644 --- a/lib/oneview-sdk/resource/api1200/synergy/firmware_driver.rb +++ b/lib/oneview-sdk/resource/api1200/synergy/firmware_driver.rb @@ -9,13 +9,13 @@ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. -require_relative '../../api300/synergy/firmware_driver' +require_relative '../../api1000/synergy/firmware_driver' module OneviewSDK module API1200 module Synergy - # FirmwareDriver resource implementation for API600 Synergy - class FirmwareDriver < OneviewSDK::API300::Synergy::FirmwareDriver + # FirmwareDriver resource implementation for API1200 Synergy + class FirmwareDriver < OneviewSDK::API1000::Synergy::FirmwareDriver end end end diff --git a/lib/oneview-sdk/resource/api800/c7000/firmware_driver.rb b/lib/oneview-sdk/resource/api800/c7000/firmware_driver.rb index 749f5daf6..9612b70e1 100644 --- a/lib/oneview-sdk/resource/api800/c7000/firmware_driver.rb +++ b/lib/oneview-sdk/resource/api800/c7000/firmware_driver.rb @@ -9,13 +9,13 @@ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. -require_relative '../../api300/c7000/firmware_driver' +require_relative '../../api600/c7000/firmware_driver' module OneviewSDK module API800 module C7000 - # FirmwareDriver resource implementation for API600 C7000 - class FirmwareDriver < OneviewSDK::API300::C7000::FirmwareDriver + # FirmwareDriver resource implementation for API800 C7000 + class FirmwareDriver < OneviewSDK::API600::C7000::FirmwareDriver end end end diff --git a/lib/oneview-sdk/resource/api800/synergy/firmware_driver.rb b/lib/oneview-sdk/resource/api800/synergy/firmware_driver.rb index fa74a8993..18bdccc39 100644 --- a/lib/oneview-sdk/resource/api800/synergy/firmware_driver.rb +++ b/lib/oneview-sdk/resource/api800/synergy/firmware_driver.rb @@ -9,13 +9,13 @@ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. -require_relative '../../api300/synergy/firmware_driver' +require_relative '../../api600/synergy/firmware_driver' module OneviewSDK module API800 module Synergy - # FirmwareDriver resource implementation for API600 Synergy - class FirmwareDriver < OneviewSDK::API300::Synergy::FirmwareDriver + # FirmwareDriver resource implementation for API800 Synergy + class FirmwareDriver < OneviewSDK::API600::Synergy::FirmwareDriver end end end From b03bb914ef44ac92d3854ae462f96da8a73abed7 Mon Sep 17 00:00:00 2001 From: Priyanka Sood Date: Mon, 17 Feb 2020 13:33:19 +0530 Subject: [PATCH 4/5] Updated GET endpoint firmware driver support to 800/1000/1200 --- endpoints-support.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/endpoints-support.md b/endpoints-support.md index 2071afdfd..f51aa6434 100644 --- a/endpoints-support.md +++ b/endpoints-support.md @@ -109,10 +109,10 @@ OneviewSDK::Datacenter.find_by(@client, width: 11000).map(&:remove) | **Firmware Bundles** | |/rest/firmware-bundles | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: | | **Firmware Drivers** | -|/rest/firmware-drivers | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | -|/rest/firmware-drivers | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: | :heavy_multiplication_x: | -|/rest/firmware-drivers/{id} | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | -|/rest/firmware-drivers/{id} | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: | :heavy_multiplication_x: | +|/rest/firmware-drivers | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | +|/rest/firmware-drivers | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: | :heavy_multiplication_x: | :heavy_multiplication_x: | :heavy_multiplication_x: | :heavy_multiplication_x: | :heavy_multiplication_x: | +|/rest/firmware-drivers/{id} | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | +|/rest/firmware-drivers/{id} | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: | :heavy_multiplication_x: | :heavy_multiplication_x: | :heavy_multiplication_x: | :heavy_multiplication_x: | | **Hypervisor Managers** | |/rest/hypervisor-managers | GET | :heavy_minus_sign: | :heavy_minus_sign: | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: | |/rest/hypervisor-managers | POST | :heavy_minus_sign: | :heavy_minus_sign: | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: | From 6e350c623eb8ce0461db69b1ed039509140f9b1b Mon Sep 17 00:00:00 2001 From: Priyanka Sood Date: Mon, 17 Feb 2020 20:35:43 +0530 Subject: [PATCH 5/5] Correcting copyright --- lib/oneview-sdk/resource/api1000/c7000/firmware_driver.rb | 2 +- lib/oneview-sdk/resource/api1000/synergy/firmware_driver.rb | 2 +- lib/oneview-sdk/resource/api1200/c7000/firmware_driver.rb | 2 +- lib/oneview-sdk/resource/api1200/synergy/firmware_driver.rb | 2 +- lib/oneview-sdk/resource/api800/c7000/firmware_driver.rb | 2 +- lib/oneview-sdk/resource/api800/synergy/firmware_driver.rb | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/oneview-sdk/resource/api1000/c7000/firmware_driver.rb b/lib/oneview-sdk/resource/api1000/c7000/firmware_driver.rb index f9083ee6f..c4f8c3a6a 100644 --- a/lib/oneview-sdk/resource/api1000/c7000/firmware_driver.rb +++ b/lib/oneview-sdk/resource/api1000/c7000/firmware_driver.rb @@ -1,4 +1,4 @@ -# (C) Copyright 2017 Hewlett Packard Enterprise Development LP +# (C) Copyright 2020 Hewlett Packard Enterprise Development LP # # Licensed under the Apache License, Version 2.0 (the "License"); # You may not use this file except in compliance with the License. diff --git a/lib/oneview-sdk/resource/api1000/synergy/firmware_driver.rb b/lib/oneview-sdk/resource/api1000/synergy/firmware_driver.rb index 6c9f523b3..2e295f247 100644 --- a/lib/oneview-sdk/resource/api1000/synergy/firmware_driver.rb +++ b/lib/oneview-sdk/resource/api1000/synergy/firmware_driver.rb @@ -1,4 +1,4 @@ -# (C) Copyright 2017 Hewlett Packard Enterprise Development LP +# (C) Copyright 2020 Hewlett Packard Enterprise Development LP # # Licensed under the Apache License, Version 2.0 (the "License"); # You may not use this file except in compliance with the License. diff --git a/lib/oneview-sdk/resource/api1200/c7000/firmware_driver.rb b/lib/oneview-sdk/resource/api1200/c7000/firmware_driver.rb index cf3bd0a66..0bf9eddab 100644 --- a/lib/oneview-sdk/resource/api1200/c7000/firmware_driver.rb +++ b/lib/oneview-sdk/resource/api1200/c7000/firmware_driver.rb @@ -1,4 +1,4 @@ -# (C) Copyright 2017 Hewlett Packard Enterprise Development LP +# (C) Copyright 2020 Hewlett Packard Enterprise Development LP # # Licensed under the Apache License, Version 2.0 (the "License"); # You may not use this file except in compliance with the License. diff --git a/lib/oneview-sdk/resource/api1200/synergy/firmware_driver.rb b/lib/oneview-sdk/resource/api1200/synergy/firmware_driver.rb index 8261e2327..a8174a276 100644 --- a/lib/oneview-sdk/resource/api1200/synergy/firmware_driver.rb +++ b/lib/oneview-sdk/resource/api1200/synergy/firmware_driver.rb @@ -1,4 +1,4 @@ -# (C) Copyright 2017 Hewlett Packard Enterprise Development LP +# (C) Copyright 2020 Hewlett Packard Enterprise Development LP # # Licensed under the Apache License, Version 2.0 (the "License"); # You may not use this file except in compliance with the License. diff --git a/lib/oneview-sdk/resource/api800/c7000/firmware_driver.rb b/lib/oneview-sdk/resource/api800/c7000/firmware_driver.rb index 9612b70e1..d2f212acd 100644 --- a/lib/oneview-sdk/resource/api800/c7000/firmware_driver.rb +++ b/lib/oneview-sdk/resource/api800/c7000/firmware_driver.rb @@ -1,4 +1,4 @@ -# (C) Copyright 2017 Hewlett Packard Enterprise Development LP +# (C) Copyright 2020 Hewlett Packard Enterprise Development LP # # Licensed under the Apache License, Version 2.0 (the "License"); # You may not use this file except in compliance with the License. diff --git a/lib/oneview-sdk/resource/api800/synergy/firmware_driver.rb b/lib/oneview-sdk/resource/api800/synergy/firmware_driver.rb index 18bdccc39..8893efe9c 100644 --- a/lib/oneview-sdk/resource/api800/synergy/firmware_driver.rb +++ b/lib/oneview-sdk/resource/api800/synergy/firmware_driver.rb @@ -1,4 +1,4 @@ -# (C) Copyright 2017 Hewlett Packard Enterprise Development LP +# (C) Copyright 2020 Hewlett Packard Enterprise Development LP # # Licensed under the Apache License, Version 2.0 (the "License"); # You may not use this file except in compliance with the License.