oneview-sdk 4.1.0 → 4.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +17 -2
  3. data/Gemfile +11 -0
  4. data/Guardfile +26 -0
  5. data/README.md +9 -3
  6. data/lib/oneview-sdk.rb +1 -1
  7. data/lib/oneview-sdk/image-streamer/resource/{api_300.rb → api300.rb} +0 -0
  8. data/lib/oneview-sdk/image-streamer/resource/api300/artifact_bundle.rb +10 -12
  9. data/lib/oneview-sdk/image-streamer/resource/api300/golden_image.rb +6 -61
  10. data/lib/oneview-sdk/resource.rb +23 -6
  11. data/lib/oneview-sdk/resource/api200/firmware_bundle.rb +4 -37
  12. data/lib/oneview-sdk/resource/api200/lig_uplink_set.rb +1 -1
  13. data/lib/oneview-sdk/resource/api200/logical_interconnect_group.rb +47 -29
  14. data/lib/oneview-sdk/resource/api200/volume.rb +2 -22
  15. data/lib/oneview-sdk/resource/api300/c7000/server_hardware.rb +1 -13
  16. data/lib/oneview-sdk/resource/api300/synergy/os_deployment_plan.rb +41 -0
  17. data/lib/oneview-sdk/resource/api300/synergy/server_profile.rb +13 -0
  18. data/lib/oneview-sdk/resource/api500.rb +66 -0
  19. data/lib/oneview-sdk/resource/api500/c7000.rb +27 -0
  20. data/lib/oneview-sdk/resource/api500/c7000/connection_template.rb +22 -0
  21. data/lib/oneview-sdk/resource/api500/c7000/datacenter.rb +22 -0
  22. data/lib/oneview-sdk/resource/api500/c7000/enclosure.rb +22 -0
  23. data/lib/oneview-sdk/resource/api500/c7000/enclosure_group.rb +22 -0
  24. data/lib/oneview-sdk/resource/api500/c7000/ethernet_network.rb +22 -0
  25. data/lib/oneview-sdk/resource/api500/c7000/fabric.rb +22 -0
  26. data/lib/oneview-sdk/resource/api500/c7000/fc_network.rb +22 -0
  27. data/lib/oneview-sdk/resource/api500/c7000/fcoe_network.rb +22 -0
  28. data/lib/oneview-sdk/resource/api500/c7000/firmware_bundle.rb +21 -0
  29. data/lib/oneview-sdk/resource/api500/c7000/firmware_driver.rb +22 -0
  30. data/lib/oneview-sdk/resource/api500/c7000/interconnect.rb +22 -0
  31. data/lib/oneview-sdk/resource/api500/c7000/lig_uplink_set.rb +21 -0
  32. data/lib/oneview-sdk/resource/api500/c7000/logical_downlink.rb +22 -0
  33. data/lib/oneview-sdk/resource/api500/c7000/logical_enclosure.rb +22 -0
  34. data/lib/oneview-sdk/resource/api500/c7000/logical_interconnect.rb +22 -0
  35. data/lib/oneview-sdk/resource/api500/c7000/logical_interconnect_group.rb +22 -0
  36. data/lib/oneview-sdk/resource/api500/c7000/logical_switch.rb +22 -0
  37. data/lib/oneview-sdk/resource/api500/c7000/logical_switch_group.rb +22 -0
  38. data/lib/oneview-sdk/resource/api500/c7000/managed_san.rb +22 -0
  39. data/lib/oneview-sdk/resource/api500/c7000/network_set.rb +22 -0
  40. data/lib/oneview-sdk/resource/api500/c7000/power_device.rb +21 -0
  41. data/lib/oneview-sdk/resource/api500/c7000/rack.rb +22 -0
  42. data/lib/oneview-sdk/resource/api500/c7000/resource.rb +21 -0
  43. data/lib/oneview-sdk/resource/api500/c7000/san_manager.rb +22 -0
  44. data/lib/oneview-sdk/resource/api500/c7000/scope.rb +22 -0
  45. data/lib/oneview-sdk/resource/api500/c7000/server_hardware.rb +22 -0
  46. data/lib/oneview-sdk/resource/api500/c7000/server_hardware_type.rb +21 -0
  47. data/lib/oneview-sdk/resource/api500/c7000/server_profile.rb +22 -0
  48. data/lib/oneview-sdk/resource/api500/c7000/server_profile_template.rb +22 -0
  49. data/lib/oneview-sdk/resource/api500/c7000/storage_pool.rb +22 -0
  50. data/lib/oneview-sdk/resource/api500/c7000/storage_system.rb +22 -0
  51. data/lib/oneview-sdk/resource/api500/c7000/switch.rb +22 -0
  52. data/lib/oneview-sdk/resource/api500/c7000/unmanaged_device.rb +22 -0
  53. data/lib/oneview-sdk/resource/api500/c7000/uplink_set.rb +22 -0
  54. data/lib/oneview-sdk/resource/api500/c7000/user.rb +22 -0
  55. data/lib/oneview-sdk/resource/api500/c7000/volume.rb +22 -0
  56. data/lib/oneview-sdk/resource/api500/c7000/volume_attachment.rb +22 -0
  57. data/lib/oneview-sdk/resource/api500/c7000/volume_snapshot.rb +22 -0
  58. data/lib/oneview-sdk/resource/api500/c7000/volume_template.rb +22 -0
  59. data/lib/oneview-sdk/resource/api500/synergy.rb +27 -0
  60. data/lib/oneview-sdk/resource/api500/synergy/connection_template.rb +22 -0
  61. data/lib/oneview-sdk/resource/api500/synergy/datacenter.rb +22 -0
  62. data/lib/oneview-sdk/resource/api500/synergy/drive_enclosure.rb +22 -0
  63. data/lib/oneview-sdk/resource/api500/synergy/enclosure.rb +22 -0
  64. data/lib/oneview-sdk/resource/api500/synergy/enclosure_group.rb +22 -0
  65. data/lib/oneview-sdk/resource/api500/synergy/ethernet_network.rb +22 -0
  66. data/lib/oneview-sdk/resource/api500/synergy/fabric.rb +22 -0
  67. data/lib/oneview-sdk/resource/api500/synergy/fc_network.rb +22 -0
  68. data/lib/oneview-sdk/resource/api500/synergy/fcoe_network.rb +22 -0
  69. data/lib/oneview-sdk/resource/api500/synergy/firmware_bundle.rb +21 -0
  70. data/lib/oneview-sdk/resource/api500/synergy/firmware_driver.rb +22 -0
  71. data/lib/oneview-sdk/resource/api500/synergy/interconnect.rb +22 -0
  72. data/lib/oneview-sdk/resource/api500/synergy/lig_uplink_set.rb +21 -0
  73. data/lib/oneview-sdk/resource/api500/synergy/logical_downlink.rb +22 -0
  74. data/lib/oneview-sdk/resource/api500/synergy/logical_enclosure.rb +22 -0
  75. data/lib/oneview-sdk/resource/api500/synergy/logical_interconnect.rb +22 -0
  76. data/lib/oneview-sdk/resource/api500/synergy/logical_interconnect_group.rb +22 -0
  77. data/lib/oneview-sdk/resource/api500/synergy/logical_switch.rb +22 -0
  78. data/lib/oneview-sdk/resource/api500/synergy/managed_san.rb +22 -0
  79. data/lib/oneview-sdk/resource/api500/synergy/network_set.rb +22 -0
  80. data/lib/oneview-sdk/resource/api500/synergy/power_device.rb +21 -0
  81. data/lib/oneview-sdk/resource/api500/synergy/rack.rb +22 -0
  82. data/lib/oneview-sdk/resource/api500/synergy/resource.rb +21 -0
  83. data/lib/oneview-sdk/resource/api500/synergy/san_manager.rb +22 -0
  84. data/lib/oneview-sdk/resource/api500/synergy/sas_interconnect.rb +22 -0
  85. data/lib/oneview-sdk/resource/api500/synergy/sas_logical_interconnect.rb +22 -0
  86. data/lib/oneview-sdk/resource/api500/synergy/sas_logical_interconnect_group.rb +22 -0
  87. data/lib/oneview-sdk/resource/api500/synergy/scope.rb +22 -0
  88. data/lib/oneview-sdk/resource/api500/synergy/server_hardware.rb +22 -0
  89. data/lib/oneview-sdk/resource/api500/synergy/server_hardware_type.rb +22 -0
  90. data/lib/oneview-sdk/resource/api500/synergy/server_profile.rb +22 -0
  91. data/lib/oneview-sdk/resource/api500/synergy/server_profile_template.rb +22 -0
  92. data/lib/oneview-sdk/resource/api500/synergy/storage_pool.rb +22 -0
  93. data/lib/oneview-sdk/resource/api500/synergy/storage_system.rb +22 -0
  94. data/lib/oneview-sdk/resource/api500/synergy/switch.rb +22 -0
  95. data/lib/oneview-sdk/resource/api500/synergy/unmanaged_device.rb +22 -0
  96. data/lib/oneview-sdk/resource/api500/synergy/uplink_set.rb +22 -0
  97. data/lib/oneview-sdk/resource/api500/synergy/user.rb +22 -0
  98. data/lib/oneview-sdk/resource/api500/synergy/volume.rb +22 -0
  99. data/lib/oneview-sdk/resource/api500/synergy/volume_attachment.rb +22 -0
  100. data/lib/oneview-sdk/resource/api500/synergy/volume_snapshot.rb +22 -0
  101. data/lib/oneview-sdk/resource/api500/synergy/volume_template.rb +22 -0
  102. data/lib/oneview-sdk/rest.rb +21 -8
  103. data/lib/oneview-sdk/version.rb +1 -1
  104. metadata +90 -4
@@ -0,0 +1,22 @@
1
+ # (C) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # You may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/c7000/storage_pool'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module C7000
17
+ # Storage pool resource implementation for API500 C7000
18
+ class StoragePool < OneviewSDK::API300::C7000::StoragePool
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # (C) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # You may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/c7000/storage_system'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module C7000
17
+ # Storage System resource implementation for API500 C7000
18
+ class StorageSystem < OneviewSDK::API300::C7000::StorageSystem
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # (C) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # You may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/c7000/switch'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module C7000
17
+ # Switch resource implementation for API 500 C7000
18
+ class Switch < OneviewSDK::API300::C7000::Switch
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # (C) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # You may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/c7000/unmanaged_device'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module C7000
17
+ # Unmanaged Device resource implementation for API500 C7000
18
+ class UnmanagedDevice < OneviewSDK::API300::C7000::UnmanagedDevice
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # (C) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # You may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/c7000/uplink_set'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module C7000
17
+ # Uplink set resource implementation for API500 C7000
18
+ class UplinkSet < OneviewSDK::API300::C7000::UplinkSet
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # (c) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/c7000/user'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module C7000
17
+ # User resource implementation for API500 C7000
18
+ class User < OneviewSDK::API300::C7000::User
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # (C) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # You may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/c7000/volume'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module C7000
17
+ # Volume resource implementation on API500 C7000
18
+ class Volume < OneviewSDK::API300::C7000::Volume
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # (C) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # You may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/c7000/volume_attachment'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module C7000
17
+ # Storage volume attachment resource implementation for API500 C7000
18
+ class VolumeAttachment < OneviewSDK::API300::C7000::VolumeAttachment
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # (C) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # You may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/c7000/volume_snapshot'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module C7000
17
+ # Volume snapshot resource implementation for API500 C7000
18
+ class VolumeSnapshot < OneviewSDK::API300::C7000::VolumeSnapshot
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # (C) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # You may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/c7000/volume_template'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module C7000
17
+ # Volume Template resource implementation for API500 Synergy
18
+ class VolumeTemplate < OneviewSDK::API300::C7000::VolumeTemplate
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,27 @@
1
+ # (c) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ module OneviewSDK
13
+ module API500
14
+ # Module for API500 Synergy
15
+ module Synergy
16
+ # Get resource class that matches the type given
17
+ # @param [String] type Name of the desired class type
18
+ # @return [Class] Resource class or nil if not found
19
+ def self.resource_named(type)
20
+ OneviewSDK::API500.resource_named(type, 'Synergy')
21
+ end
22
+ end
23
+ end
24
+ end
25
+
26
+ # Load all API-specific resources:
27
+ Dir[File.dirname(__FILE__) + '/synergy/*.rb'].each { |file| require file }
@@ -0,0 +1,22 @@
1
+ # (c) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/synergy/connection_template'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module Synergy
17
+ # Connection template resource implementation for API500 Synergy
18
+ class ConnectionTemplate < OneviewSDK::API300::Synergy::ConnectionTemplate
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # (c) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/synergy/datacenter'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module Synergy
17
+ # Datacenter resource implementation for API500 Synergy
18
+ class Datacenter < OneviewSDK::API300::Synergy::Datacenter
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # (c) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/synergy/drive_enclosure'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module Synergy
17
+ # Drive enclosure resource implementation for API500 Synergy
18
+ class DriveEnclosure < OneviewSDK::API300::Synergy::DriveEnclosure
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # (c) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/synergy/enclosure'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module Synergy
17
+ # Enclosure resource implementation for API500 Synergy
18
+ class Enclosure < OneviewSDK::API300::Synergy::Enclosure
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # (C) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # You may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/synergy/enclosure_group'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module Synergy
17
+ # Enclosure group resource implementation on API500 Synergy
18
+ class EnclosureGroup < OneviewSDK::API300::Synergy::EnclosureGroup
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # (C) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # You may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/synergy/ethernet_network'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module Synergy
17
+ # Ethernet network resource implementation for API500 Synergy
18
+ class EthernetNetwork < OneviewSDK::API300::Synergy::EthernetNetwork
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # (C) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # You may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/synergy/fabric'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module Synergy
17
+ # Fabric resource implementation for API500 Synergy
18
+ class Fabric < OneviewSDK::API300::Synergy::Fabric
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # (C) Copyright 2017 Hewlett Packard Enterprise Development LP
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # You may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software distributed
8
+ # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
+ # CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
10
+ # language governing permissions and limitations under the License.
11
+
12
+ require_relative '../../api300/synergy/fc_network'
13
+
14
+ module OneviewSDK
15
+ module API500
16
+ module Synergy
17
+ # FC network resource implementation for API500 Synergy
18
+ class FCNetwork < OneviewSDK::API300::Synergy::FCNetwork
19
+ end
20
+ end
21
+ end
22
+ end