oneview-sdk 5.1.1 → 5.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8acba074bfd37fc4088aa46ae6877e1592d7830f
4
- data.tar.gz: 58a66a91dca7ee5994b90b81f4ff8d964b5f8d62
3
+ metadata.gz: 899ba54ec47fe13bb589e3ceec403e36102afd59
4
+ data.tar.gz: 69620d1543c21f1fdc1d18833771c17af436cc52
5
5
  SHA512:
6
- metadata.gz: 0f8dc95b6599baad0f7c95a075335b74998752fb441cfec4d8579a668ce77e77101335457baf4bc9d9037d6c932275da11c9587ad4a762f7ca00ff77adc61d4d
7
- data.tar.gz: d83b0b85189908d35bab0ab53fc117d8d6adabccbca4094a80518ca9d47f44394f5b4699f5412e311da9135270672b3112fc4240eb145653cf1aa04287d941bc
6
+ metadata.gz: c99c3995a517c79210e4a95817bf8fb364ad34d4c14289960efff3346c7523e7b7fb40539b8086983ae28e707c9195f9fafc68178a08b33cbf9e27ae7fc7c80b
7
+ data.tar.gz: a841438bc3b89dd8556cb52b908131c3d1adc7a85a9e721ddb7aa0feafbc89edc203bc63df2fbe85d8f963bb3580c4da670fecb0adc1927864e043143839953a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## v5.1.2
2
+ #### Notes
3
+ This release adds the [endpoints-support.md](endpoints-support.md) file to the repository, in order to track implemented endpoints and what is in the scope of this SDK.
4
+
5
+ Also adds the [TESTING.md](TESTING.md) file to the repository, in order to guide the test execution and implementation for this SDK.
6
+
7
+ #### Bug fixes & Enhancements
8
+ - [#285](https://github.com/HewlettPackard/oneview-sdk-ruby/issues/285) Add helper method to set a StorageSystem to a StoragePool of API500
9
+
1
10
  ## v5.1.1
2
11
 
3
12
  #### Bug fixes & Enhancements
data/README.md CHANGED
@@ -155,6 +155,11 @@ level=(Symbol, etc.) # The parameter here will be the log_level attribute
155
155
 
156
156
  :lock: Tip: When the log_level is set to debug, API request options will be logged (including auth tokens and passwords); be careful to protect secret information.
157
157
 
158
+
159
+ ## API Implementation
160
+
161
+ A status of the HPE OneView REST interfaces that have been implemented in this SDK can be found in the [endpoints-support.md](https://github.com/HewlettPackard/oneview-sdk-ruby/blob/master/endpoints-support.md) file.
162
+
158
163
  ### OneView API versions and appliance types
159
164
  You may notice resource classes being accessed in a few different ways; for example, `OneviewSDK::EthernetNetwork`, `OneviewSDK::API300::EthernetNetwork`, and `OneviewSDK::API300::C7000::EthernetNetwork`. However, each of these accessors may actually be referring to the same class. This is because in order to keep backwards compatibility and make examples a little more simple, there are module methods in place to redirect/resolve the shorthand accessors to their full namespace identifier. In order to automatically complete the full namespace identifier, there are some defaults in place. Here's some example code that should help clear things up (return values are commented behind the code):
160
165
 
@@ -442,7 +447,7 @@ First run `$ bundle` (requires the bundler gem), then...
442
447
  - All: Run `$ rake test:all` to run RuboCop, unit, & integration tests.
443
448
  - Examples: See the [examples](examples/) README
444
449
 
445
- Note: run `$ rake -T` to get a list of all the available rake tasks.
450
+ For the full testing reference please look into [TESTING.md](TESTING.md) file.
446
451
 
447
452
  ## Authors
448
453
  See the [contributors graph](https://github.com/HewlettPackard/oneview-sdk-ruby/graphs/contributors)
data/TESTING.md ADDED
@@ -0,0 +1,61 @@
1
+ # Testing 'oneview-sdk' gem source code
2
+ The 'oneview-sdk' source code provides a unit, integration/functional, and system testing strategies. It also provides linting tools to ensure its code style.
3
+ This document will cover how to execute and implement them.
4
+
5
+ ## Executing tests
6
+ The tests can be executed by `rake` tasks, `guard` watches, and by their original tools, like `rspec`, and `rubocop`.
7
+
8
+ ### Rake
9
+ All the test strategies and checks can be executed by the rake command.
10
+ Please use `rake -T` to see a full list of commands.
11
+
12
+ ### Guard
13
+ Guard will watch the changes and execute unit tests and style checks. Just activate it to have real time test execution on every change.
14
+
15
+ ### Unit tests
16
+ All unit tests are inside the spec folder. You can execute them manually by using RSpec and specifying the test files, like `rspec spec/unit/path/to/my/tests`.
17
+
18
+ ### Integration tests
19
+ The integration tests are responsible for checking if the `oneview-sdk` is correctly integrated with the OneView appliance, at the same time it tests its functionalities.
20
+
21
+ #### Categories
22
+ Each integration test has its own pre-requisites and leaves the appliance in a different post state, and given OneView composable nature, each resource needs other resources configured so it can work.
23
+
24
+ The most top-level resources would need the appliance entirely configured, and setting up and tearing it down for each test would cost a lot of time (likely days). So there is a chained dependency among the tests to greatly reduce its execution time.
25
+
26
+ The integration tests are split into 3 categories `create`, `update`, and `delete` that can be run separately to allow some level of modularity between them.
27
+
28
+ ### System tests
29
+ System tests are integration-like tests, but they aim to test the whole solution executing more complex interactions (use cases), not just focusing in testing one endpoint.
30
+
31
+ ### Coverage
32
+ The tests issue a coverage report generated by SimpleCov. To see the full coverage report it is needed to run the entire suites for each individual test strategy. For instance, if a full integration coverage report is needed it is necessary to run the three testing categories.
33
+
34
+ ### Style checking
35
+ Style checking is done by `rubocop` for all the checkable code.
36
+
37
+ ## Implementing tests
38
+ All code must have associated tests, be it the already implemented or newly submitted, and this section covers what tests need to be implemented.
39
+
40
+ ### Unit tests
41
+ The unit tests are required for each new resource, bug fix, or enhancement.
42
+
43
+ ### Integration tests
44
+ The integration tests are required for each new resource, bug fix, or enhancement as far the new code modifies or adds an interaction with OneView.
45
+
46
+ To avoid incompatibility between tests, the integration has a consolidated configuration file with all the resource names and a dependency matrix called `sequence_and_naming.rb`.
47
+
48
+ It is far beyond from not advisable to instantiate a OneView resource in the integration tests that does not use the names in established there, if necessary, add the new names there.
49
+
50
+ Add the new resource implemented to the dependency matrix, so the testing requisites will be met.
51
+
52
+ Note: It is uncommon for an updated resource to change its dependency order, but it is fairly possible.
53
+
54
+ ### Shared tests
55
+ Some resource methods behave exactly like other ones, so the source code provides a shared tests folder that can be used along multiple resource tests.
56
+
57
+ ### Unit and Integration acceptance criteria
58
+ The necessary amount of testing is dictated by who is implementing and by who is reviewing and accepting the code, however, there is a floor coverage acceptance level defined in the `spec_helper.rb` file.
59
+
60
+ ### System tests
61
+ System tests focus on use cases and they may be implemented to cover specific scenarios not covered by the other test strategies. Different from the unit and integration tests they do not have an acceptance criteria.
@@ -0,0 +1,586 @@
1
+ ***Legend***
2
+
3
+ | Item | Meaning |
4
+ | ------------------ | --------------------------------------------- |
5
+ | :white_check_mark: | Endpoint implemented in the Ruby SDK for this API version :tada: |
6
+ | :heavy_minus_sign: | Endpoint not available for this API Version |
7
+ | :x: | Endpoint considered as 'out-of-scope' for the Ruby SDK |
8
+
9
+ <br />
10
+
11
+ ***Notes***
12
+
13
+ * If an endpoint is not marked as implemented for a specific API, it can still be used in compatibility mode for the supported API versions.
14
+ * If an example is not working on a supported API version, verify the [HPE OneView REST API Documentation](http://h17007.www1.hpe.com/docs/enterprise/servers/oneview3.1/cic-api/en/api-docs/current/index.html) for the API version being used, since the expected attributes for that resource might have changed.
15
+ * For DELETE endpoints which remove multiple resources at once using a filter, that functionality is considered as implemented so long as a DELETE by `{id}` is implemented for that resource.
16
+ The user may then call the method `find_by` to filter the resources and use a looping function to remove all matching results, similarly to the following example:
17
+ ```ruby
18
+ OneviewSDK::Datacenter.find_by(@client, width: 11000).map(&:remove)
19
+ ```
20
+
21
+ <br />
22
+
23
+ ## HPE OneView
24
+
25
+ | Endpoints | Verb | V200 | V300 | V500 |
26
+ | --------------------------------------------------------------------------------------- | -------- | :------------------: | :------------------: | :------------------: |
27
+ | **Alerts** |
28
+ |<sub>/rest/alerts </sub> |GET | | |
29
+ |<sub>/rest/alerts </sub> |DELETE | | |
30
+ |<sub>/rest/alerts/{id} </sub> |GET | | |
31
+ |<sub>/rest/alerts/{id} </sub> |PUT | | |
32
+ |<sub>/rest/alerts/{id} </sub> |DELETE | | |
33
+ |<sub>/rest/alerts/AlertChangeLog/{id}</sub> |DELETE | | |
34
+ | **Appliance Time and Locale Configuration** |
35
+ |<sub>/rest/appliance/configuration/time-locale</sub> |GET | | | |
36
+ |<sub>/rest/appliance/configuration/time-locale</sub> |POST | | | |
37
+ | **Backups** |
38
+ |<sub>/rest/backups</sub> |GET | | |
39
+ |<sub>/rest/backups</sub> |POST | | |
40
+ |<sub>/rest/backups/archive</sub> |POST | | |
41
+ |<sub>/rest/backups/archive/{id}</sub> |GET | | |
42
+ |<sub>/rest/backups/config</sub> |GET | | |
43
+ |<sub>/rest/backups/config</sub> |PUT | | |
44
+ |<sub>/rest/backups/remotearchive/{id}</sub> |PUT | | |
45
+ |<sub>/rest/backups/remotearchive/{id}</sub> |DELETE | | |
46
+ |<sub>/rest/backups/{id}</sub> |GET | | |
47
+ |<sub>/rest/backups/{id}</sub> |DELETE | | |
48
+ | **Certificate Authority** |
49
+ |<sub>/rest/certificates/ca</sub> |GET | | |
50
+ |<sub>/rest/certificates/ca/crl</sub> |GET | | |
51
+ |<sub>/rest/certificates/ca/{aliasName}</sub> |DELETE | | |
52
+ | **Certificates Client RabbitMq** |
53
+ |<sub>/rest/certificates/client/rabbitmq</sub> |POST | | |
54
+ |<sub>/rest/certificates/client/rabbitmq/keypair/{aliasName}</sub> |GET | | |
55
+ |<sub>/rest/certificates/client/rabbitmq/keys/{aliasName}</sub> |GET | | |
56
+ |<sub>/rest/certificates/client/rabbitmq/{aliasName}</sub> |GET | | |
57
+ | **Connection Template** |
58
+ |<sub>/rest/connection-templates</sub> |GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
59
+ |<sub>/rest/connection-templates/defaultConnectionTemplate</sub> |GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
60
+ |<sub>/rest/connection-templates/{id}</sub> |GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
61
+ |<sub>/rest/connection-templates/{id}</sub> |PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
62
+ | **Datacenter** |
63
+ |<sub>/rest/datacenters</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
64
+ |<sub>/rest/datacenters</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
65
+ |<sub>/rest/datacenters</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
66
+ |<sub>/rest/datacenters/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
67
+ |<sub>/rest/datacenters/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
68
+ |<sub>/rest/datacenters/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
69
+ |<sub>/rest/datacenters/{id}/visualContent</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
70
+ | **Drive Enclosures** |
71
+ |<sub>/rest/drive-enclosures</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
72
+ |<sub>/rest/drive-enclosures/{id}</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
73
+ |<sub>/rest/drive-enclosures/{id}</sub> | PATCH | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
74
+ |<sub>/rest/drive-enclosures/{id}/port-map</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
75
+ |<sub>/rest/drive-enclosures/{id}/refreshState</sub> | PUT | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
76
+ | **Enclosure** |
77
+ |<sub>/rest/enclosures</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
78
+ |<sub>/rest/enclosures</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
79
+ |<sub>/rest/enclosures/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
80
+ |<sub>/rest/enclosures/{id}</sub> | PATCH | :white_check_mark: | :white_check_mark: | :white_check_mark: |
81
+ |<sub>/rest/enclosures/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
82
+ |<sub>/rest/enclosures/{id}/configuration</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
83
+ |<sub>/rest/enclosures/{id}/environmentalConfiguration</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
84
+ |<sub>/rest/enclosures/{id}/environmentalConfiguration</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
85
+ |<sub>/rest/enclosures/{id}/refreshState</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
86
+ |<sub>/rest/enclosures/{id}/script</sub> | GET | :white_check_mark: | :white_check_mark: | :heavy_minus_sign: |
87
+ |<sub>/rest/enclosures/{id}/sso</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
88
+ |<sub>/rest/enclosures/{id}/utilization</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
89
+ | **Enclosure Group** |
90
+ |<sub>/rest/enclosure-groups</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
91
+ |<sub>/rest/enclosure-groups</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
92
+ |<sub>/rest/enclosure-groups/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
93
+ |<sub>/rest/enclosure-groups/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
94
+ |<sub>/rest/enclosure-groups/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
95
+ |<sub>/rest/enclosure-groups/script</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
96
+ |<sub>/rest/enclosure-groups/script</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
97
+ | **Endpoints** |
98
+ |<sub>/rest/fc-sans/endpoints</sub> | GET | :x: | :x: | :x: |
99
+ | **Ethernet Network** |
100
+ |<sub>/rest/ethernet-networks</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
101
+ |<sub>/rest/ethernet-networks</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
102
+ |<sub>/rest/ethernet-networks/bulk</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
103
+ |<sub>/rest/ethernet-networks/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
104
+ |<sub>/rest/ethernet-networks/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
105
+ |<sub>/rest/ethernet-networks/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
106
+ |<sub>/rest/ethernet-networks/{id}/associatedProfiles</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
107
+ |<sub>/rest/ethernet-networks/{id}/associatedUplinkGroups</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
108
+ | **Events** |
109
+ |<sub>/rest/events</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
110
+ |<sub>/rest/events</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
111
+ |<sub>/rest/events/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
112
+ | **Fabric** |
113
+ |<sub>/rest/fabrics</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
114
+ |<sub>/rest/fabrics/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
115
+ |<sub>/rest/fabrics/{id}/reserved-vlan-range</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
116
+ |<sub>/rest/fabrics/{id}/reserved-vlan-range</sub> | PUT | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
117
+ | **FC Network** |
118
+ |<sub>/rest/fc-networks</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
119
+ |<sub>/rest/fc-networks</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
120
+ |<sub>/rest/fc-networks/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
121
+ |<sub>/rest/fc-networks/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
122
+ |<sub>/rest/fc-networks/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
123
+ | **FCoE Network** |
124
+ |<sub>/rest/fcoe-networks</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
125
+ |<sub>/rest/fcoe-networks</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
126
+ |<sub>/rest/fcoe-networks/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
127
+ |<sub>/rest/fcoe-networks/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
128
+ |<sub>/rest/fcoe-networks/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
129
+ | **Firmware Bundle** |
130
+ |<sub>/rest/firmware-bundles</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
131
+ | **Firmware Driver** |
132
+ |<sub>/rest/firmware-drivers</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
133
+ |<sub>/rest/firmware-drivers</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
134
+ |<sub>/rest/firmware-drivers/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
135
+ |<sub>/rest/firmware-drivers/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
136
+ | **Id Pools** |
137
+ |<sub>/rest/id-pools/{poolType} | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
138
+ |<sub>/rest/id-pools/{poolType} | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
139
+ |<sub>/rest/id-pools/{poolType}/allocator | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
140
+ |<sub>/rest/id-pools/{poolType}/checkrangeavailability | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
141
+ |<sub>/rest/id-pools/{poolType}/collector | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
142
+ |<sub>/rest/id-pools/{poolType}/generate | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
143
+ |<sub>/rest/id-pools/{poolType}/validate | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
144
+ |<sub>/rest/id-pools/{poolType}/validate | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
145
+ | **Id Pools vMAC Range** |
146
+ |<sub>/rest/id-pools/vmac/ranges</sub> | POST | | |
147
+ |<sub>/rest/id-pools/vmac/ranges/{id}</sub> | GET | | |
148
+ |<sub>/rest/id-pools/vmac/ranges/{id}</sub> | PUT | | |
149
+ |<sub>/rest/id-pools/vmac/ranges/{id}</sub> | DELETE | | |
150
+ |<sub>/rest/id-pools/vmac/ranges/{id}/allocated-fragments</sub> | GET | | |
151
+ |<sub>/rest/id-pools/vmac/ranges/{id}/allocator</sub> |PUT | | |
152
+ |<sub>/rest/id-pools/vmac/ranges/{id}/collector</sub> | PUT | | |
153
+ |<sub>/rest/id-pools/vmac/ranges/{id}/free-fragments</sub> | GET | | |
154
+ | **Id Pools vSN Range** |
155
+ |<sub>/rest/id-pools/vsn/ranges</sub> | POST | | |
156
+ |<sub>/rest/id-pools/vsn/ranges/{id}</sub> | GET | | |
157
+ |<sub>/rest/id-pools/vsn/ranges/{id}</sub> | PUT | | |
158
+ |<sub>/rest/id-pools/vsn/ranges/{id}</sub> | DELETE | | |
159
+ |<sub>/rest/id-pools/vsn/ranges/{id}/allocated-fragments</sub> | GET | | |
160
+ |<sub>/rest/id-pools/vsn/ranges/{id}/allocator</sub> |PUT | | |
161
+ |<sub>/rest/id-pools/vsn/ranges/{id}/collector</sub> | PUT | | |
162
+ |<sub>/rest/id-pools/vsn/ranges/{id}/free-fragments</sub> | GET | | |
163
+ | **Id Pools vWWN Range** |
164
+ |<sub>/rest/id-pools/vwwn/ranges</sub> | POST | | |
165
+ |<sub>/rest/id-pools/vwwn/ranges/{id}</sub> | GET | | |
166
+ |<sub>/rest/id-pools/vwwn/ranges/{id}</sub> | PUT | | |
167
+ |<sub>/rest/id-pools/vwwn/ranges/{id}</sub> | DELETE | | |
168
+ |<sub>/rest/id-pools/vwwn/ranges/{id}/allocated-fragments</sub> | GET | | |
169
+ |<sub>/rest/id-pools/vwwn/ranges/{id}/allocator</sub> |PUT | | |
170
+ |<sub>/rest/id-pools/vwwn/ranges/{id}/collector</sub> | PUT | | |
171
+ |<sub>/rest/id-pools/vwwn/ranges/{id}/free-fragments</sub> | GET | | |
172
+ | **Internal Link Sets** |
173
+ |<sub>/rest/internal-link-sets</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
174
+ |<sub>/rest/internal-link-sets/{id}</sub> | PUT | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
175
+ | **Interconnect Link Topologies** |
176
+ |<sub>/rest/interconnect-link-topologies</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
177
+ |<sub>/rest/interconnect-link-topologies/{id}</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
178
+ | **Interconnect Type** |
179
+ |<sub>/rest/interconnect-types</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
180
+ |<sub>/rest/interconnect-types/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
181
+ | **Interconnects** |
182
+ |<sub>/rest/interconnects</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
183
+ |<sub>/rest/interconnects/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
184
+ |<sub>/rest/interconnects/{id}</sub> | PATCH | :white_check_mark: | :white_check_mark: | :white_check_mark: |
185
+ |<sub>/rest/interconnects/{id}/configuration</sub> | PUT | :heavy_minus_sign: | :heavy_minus_sign: | |
186
+ |<sub>/rest/interconnects/{id}/pluggableModuleInformation</sub> | GET | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: |
187
+ |<sub>/rest/interconnects/{id}/ports</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
188
+ |<sub>/rest/interconnects/{id}/ports</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
189
+ |<sub>/rest/interconnects/{id}/ports/{portId:.+}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
190
+ |<sub>/rest/interconnects/{id}/resetportprotection</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
191
+ |<sub>/rest/interconnects/{id}/statistics</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
192
+ |<sub>/rest/interconnects/{id}/statistics/{portName:.+}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
193
+ |<sub>/rest/interconnects/{id}/statistics/{portName:.+}/subport/{subportNum}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
194
+ |<sub>/rest/interconnects/{id}/update-ports</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
195
+ |<sub>/rest/interconnects/{id}/nameServers</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
196
+ | **Labels** |
197
+ |<sub>/rest/labels</sub> | GET | | |
198
+ |<sub>/rest/labels/resources</sub> | POST | | |
199
+ |<sub>/rest/labels/resources/**</sub> | GET | | |
200
+ |<sub>/rest/labels/resources/**</sub> | PUT | | |
201
+ |<sub>/rest/labels/resources/**</sub> | DELETE | | |
202
+ |<sub>/rest/labels/resources/{id}</sub> | GET | | |
203
+ | **Logical Downlink** |
204
+ |<sub>/rest/logical-downlinks</sub> |GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
205
+ |<sub>/rest/logical-downlinks/withoutEthernet</sub> |GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
206
+ |<sub>/rest/logical-downlinks/{id}</sub> |GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
207
+ |<sub>/rest/logical-downlinks/{id}/withoutEthernet</sub> |GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
208
+ | **Logical Enclosures** |
209
+ |<sub>/rest/logical-enclosures</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
210
+ |<sub>/rest/logical-enclosures</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
211
+ |<sub>/rest/logical-enclosures/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
212
+ |<sub>/rest/logical-enclosures/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
213
+ |<sub>/rest/logical-enclosures/{id}</sub> | PATCH | :white_check_mark: | :white_check_mark: | :white_check_mark: |
214
+ |<sub>/rest/logical-enclosures/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
215
+ |<sub>/rest/logical-enclosures/{id}/configuration</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
216
+ |<sub>/rest/logical-enclosures/{id}/script</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
217
+ |<sub>/rest/logical-enclosures/{id}/script</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
218
+ |<sub>/rest/logical-enclosures/{id}/support-dumps</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
219
+ |<sub>/rest/logical-enclosures/{id}/updateFromGroup</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
220
+ | **Logical Interconnects** |
221
+ |<sub>/rest/logical-interconnects</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
222
+ |<sub>/rest/logical-interconnects/locations/interconnects</sub> | POST | :white_check_mark: | :heavy_minus_sign: | :heavy_minus_sign: |
223
+ |<sub>/rest/logical-interconnects/locations/interconnects</sub> | DELETE | :white_check_mark: | :heavy_minus_sign: | :heavy_minus_sign: |
224
+ |<sub>/rest/logical-interconnects/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
225
+ |<sub>/rest/logical-interconnects/{id}/compliance</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
226
+ |<sub>/rest/logical-interconnects/{id}/ethernetSettings</sub> | GET | | | |
227
+ |<sub>/rest/logical-interconnects/{id}/ethernetSettings</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
228
+ |<sub>/rest/logical-interconnects/{id}/firmware</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
229
+ |<sub>/rest/logical-interconnects/{id}/firmware</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
230
+ |<sub>/rest/logical-interconnects/{id}/forwarding-information-base</sub> | GET | :x: | :x: | :x: |
231
+ |<sub>/rest/logical-interconnects/{id}/forwarding-information-base</sub> | POST | :x: | :x: | :x: |
232
+ |<sub>/rest/logical-interconnects/{id}/forwarding-information-base/{dumpFileName}.{suffix}</sub> | GET | :x: | :x: | :x: |
233
+ |<sub>/rest/logical-interconnects/{id}/internalNetworks</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
234
+ |<sub>/rest/logical-interconnects/{id}/internalVlans</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
235
+ |<sub>/rest/logical-interconnects/{id}/qos-aggregated-configuration</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
236
+ |<sub>/rest/logical-interconnects/{id}/qos-aggregated-configuration</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
237
+ |<sub>/rest/logical-interconnects/{id}/settings</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
238
+ |<sub>/rest/logical-interconnects/{id}/snmp-configuration</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
239
+ |<sub>/rest/logical-interconnects/{id}/snmp-configuration</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
240
+ |<sub>/rest/logical-interconnects/{id}/support-dumps</sub> | POST | | | |
241
+ |<sub>/rest/logical-interconnects/{id}/unassignedUplinkPortsForPortMonitor</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
242
+ |<sub>/rest/logical-interconnects/{id}/configuration</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
243
+ |<sub>/rest/logical-interconnects/{id}/port-monitor</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
244
+ |<sub>/rest/logical-interconnects/{id}/port-monitor</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
245
+ |<sub>/rest/logical-interconnects/{id}/telemetry-configurations/{tcId}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
246
+ | **Logical Interconnect Group** |
247
+ |<sub>/rest/logical-interconnect-groups</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
248
+ |<sub>/rest/logical-interconnect-groups</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
249
+ |<sub>/rest/logical-interconnect-groups/defaultSettings</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
250
+ |<sub>/rest/logical-interconnect-groups/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
251
+ |<sub>/rest/logical-interconnect-groups/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
252
+ |<sub>/rest/logical-interconnect-groups/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
253
+ |<sub>/rest/logical-interconnect-groups/{id}/settings</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
254
+ | **Logical Switch Group** |
255
+ |<sub>/rest/logical-switch-groups</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
256
+ |<sub>/rest/logical-switch-groups</sub> |POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
257
+ |<sub>/rest/logical-switch-groups/{id}</sub> |GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
258
+ |<sub>/rest/logical-switch-groups/{id}</sub> |PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
259
+ |<sub>/rest/logical-switch-groups/{id}</sub> |DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
260
+ | **Logical Switches** |
261
+ |<sub>/rest/logical-switches</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
262
+ |<sub>/rest/logical-switches</sub> |POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
263
+ |<sub>/rest/logical-switches/{id}</sub> |GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
264
+ |<sub>/rest/logical-switches/{id}</sub> |PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
265
+ |<sub>/rest/logical-switches/{id}</sub> |DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
266
+ |<sub>/rest/logical-switches/{id}/refresh</sub> |PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
267
+ | **Login Details** |
268
+ |<sub>/rest/logindetails</sub> | GET | | | |
269
+ | **Managed SANs** |
270
+ |<sub>/rest/fc-sans/managed-sans</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
271
+ |<sub>/rest/fc-sans/managed-sans/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
272
+ |<sub>/rest/fc-sans/managed-sans/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
273
+ |<sub>/rest/fc-sans/managed-sans/{id}/endpoints</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
274
+ |<sub>/rest/fc-sans/managed-sans/{id}/endpoints</sub> | POST | :x: | :x: | :x: |
275
+ |<sub>/rest/fc-sans/managed-sans/{id}/issues</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
276
+ |<sub>/rest/fc-sans/managed-sans/WWN+</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :heavy_minus_sign: |
277
+ | **Metric Streaming** |
278
+ |<sub>/rest/metrics/capability</sub> | GET | | | |
279
+ |<sub>/rest/metrics/configuration</sub> | GET | | | |
280
+ |<sub>/rest/metrics/configuration</sub> | PUT | | | |
281
+ | **Migratable VC Domains** |
282
+ |<sub>/rest/migratable-vc-domains</sub> | GET | :heavy_minus_sign: | |
283
+ |<sub>/rest/migratable-vc-domains</sub> | POST | | |
284
+ |<sub>/rest/migratable-vc-domains/{id}</sub> | PUT | | |
285
+ |<sub>/rest/migratable-vc-domains/{id}</sub> | GET | | |
286
+ |<sub>/rest/migratable-vc-domains/{id}</sub> | DELETE | | |
287
+ | **Network Set** |
288
+ |<sub>/rest/network-sets</sub> |GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
289
+ |<sub>/rest/network-sets</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
290
+ |<sub>/rest/network-sets/withoutEthernet</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
291
+ |<sub>/rest/network-sets/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
292
+ |<sub>/rest/network-sets/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
293
+ |<sub>/rest/network-sets/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
294
+ |<sub>/rest/network-sets/{id}/withoutEthernet</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
295
+ | **OS Deployment Plans** |
296
+ |<sub>/rest/os-deployment-plans</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
297
+ |<sub>/rest/os-deployment-plans/{id}</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
298
+ | **OS Deployment Servers** |
299
+ |<sub>/rest/os-deployment-servers</sub> | GET | :heavy_minus_sign: | | |
300
+ |<sub>/rest/os-deployment-servers</sub> | POST | :heavy_minus_sign: | | |
301
+ |<sub>/rest/os-deployment-servers/image-streamer-appliances</sub> | GET | :heavy_minus_sign: | | |
302
+ |<sub>/rest/os-deployment-servers/image-streamer-appliances/{id}</sub> | GET | :heavy_minus_sign: | | |
303
+ |<sub>/rest/os-deployment-servers/network</sub> | GET | :heavy_minus_sign: | | |
304
+ |<sub>/rest/deployment-servers/security-mode/security-compatibility-checker</sub> | POST | | |
305
+ |<sub>/rest/os-deployment-servers/{id}</sub> | GET | :heavy_minus_sign: | | |
306
+ |<sub>/rest/os-deployment-servers/{id}</sub> | PUT | :heavy_minus_sign: | | |
307
+ |<sub>/rest/os-deployment-servers/{id}</sub> | DELETE | :heavy_minus_sign: | | |
308
+ | **Power Device** |
309
+ |<sub>/rest/power-devices</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
310
+ |<sub>/rest/power-devices</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
311
+ |<sub>/rest/power-devices</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
312
+ |<sub>/rest/power-devices/discover</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
313
+ |<sub>/rest/power-devices/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
314
+ |<sub>/rest/power-devices/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
315
+ |<sub>/rest/power-devices/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
316
+ |<sub>/rest/power-devices/{id}/powerState</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
317
+ |<sub>/rest/power-devices/{id}/powerState</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
318
+ |<sub>/rest/power-devices/{id}/refreshState</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
319
+ |<sub>/rest/power-devices/{id}/synchronous</sub> | DELETE | :x: | :x: | :x: |
320
+ |<sub>/rest/power-devices/{id}/uidState</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
321
+ |<sub>/rest/power-devices/{id}/uidState</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
322
+ |<sub>/rest/power-devices/{id}/utilization</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
323
+ | **Rack** |
324
+ |<sub>/rest/racks</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
325
+ |<sub>/rest/racks</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
326
+ |<sub>/rest/racks</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
327
+ |<sub>/rest/racks/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
328
+ |<sub>/rest/racks/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
329
+ |<sub>/rest/racks/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
330
+ |<sub>/rest/racks/{id}/deviceTopology</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
331
+ | **Restores** |
332
+ |<sub>/rest/restores</sub> | GET | | | |
333
+ |<sub>/rest/restores</sub> | POST | | | |
334
+ |<sub>/rest/restores/failures</sub> | GET | | | |
335
+ |<sub>/rest/restores/{id}</sub> | GET | | | |
336
+ | **Roles** |
337
+ |<sub>/rest/roles</sub> | GET | | | |
338
+ |<sub>/rest/roles/{roleName}</sub> | GET | | | |
339
+ | **SAN Managers** |
340
+ |<sub>/rest/fc-sans/device-managers</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
341
+ |<sub>/rest/fc-sans/device-managers/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
342
+ |<sub>/rest/fc-sans/device-managers/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
343
+ |<sub>/rest/fc-sans/device-managers/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
344
+ |<sub>/rest/fc-sans/providers/{id}/device-managers</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
345
+ | **SAS Interconnect Types** |
346
+ |<sub>/rest/sas-interconnect-types</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
347
+ |<sub>/rest/sas-interconnect-types/{id}</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
348
+ | **SAS Interconnects** |
349
+ |<sub>/rest/sas-interconnects</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
350
+ |<sub>/rest/sas-interconnects/{id}</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
351
+ |<sub>/rest/sas-interconnects/{id}</sub> | PATCH | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
352
+ |<sub>/rest/sas-interconnects/{id}/refreshState</sub> | PUT | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
353
+ | **SAS Logical Interconnect Groups** |
354
+ |<sub>/rest/sas-logical-interconnect-groups</sub> | POST | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
355
+ |<sub>/rest/sas-logical-interconnect-groups</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
356
+ |<sub>/rest/sas-logical-interconnect-groups/{id}</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
357
+ |<sub>/rest/sas-logical-interconnect-groups/{id}</sub> | PUT | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
358
+ |<sub>/rest/sas-logical-interconnect-groups/{id}</sub> | DELETE | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
359
+ | **SAS Logical Interconnects** |
360
+ |<sub>/rest/sas-logical-interconnects</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
361
+ |<sub>/rest/sas-logical-interconnects/{id}</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
362
+ |<sub>/rest/sas-logical-interconnects/{id}/firmware</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
363
+ |<sub>/rest/sas-logical-interconnects/{id}/firmware</sub> | PUT | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
364
+ |<sub>/rest/sas-logical-interconnects/compliance</sub> | PUT | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
365
+ |<sub>/rest/sas-logical-interconnects/{id}/compliance</sub> | PUT | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
366
+ |<sub>/rest/sas-logical-interconnects/{lsId}/configuration</sub> | PUT | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
367
+ |<sub>/rest/sas-logical-interconnects/{id}/replaceDriveEnclosure</sub> | POST | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
368
+ | **SAS Logical JBOD Attachments** |
369
+ |<sub>/rest/sas-logical-jbod-attachments</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
370
+ |<sub>/rest/sas-logical-jbod-attachments/{id}</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
371
+ | **SAS Logical JBODs** |
372
+ |<sub>/rest/sas-logical-jbods</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
373
+ |<sub>/rest/sas-logical-jbods/{id}</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
374
+ |<sub>/rest/sas-logical-jbods/{id}/drives</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
375
+ | **Scopes** |
376
+ |<sub>/rest/scopes </sub> | POST | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
377
+ |<sub>/rest/scopes</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
378
+ |<sub>/rest/scopes/{id}</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
379
+ |<sub>/rest/scopes/{id}</sub> | PUT | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
380
+ |<sub>/rest/scopes/{id}</sub> | PATCH | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: |
381
+ |<sub>/rest/scopes/{id}</sub> | DELETE | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
382
+ |<sub>/rest/scopes/{id}/resource-assignments</sub> | PATCH | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
383
+ | **Server Hardware** |
384
+ |<sub>/rest/server-hardware</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
385
+ |<sub>/rest/server-hardware</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
386
+ |<sub>/rest/server-hardware/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
387
+ |<sub>/rest/server-hardware/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
388
+ |<sub>/rest/server-hardware/{id}/bios</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
389
+ |<sub>/rest/server-hardware/{id}/environmentalConfiguration</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
390
+ |<sub>/rest/server-hardware/{id}/environmentalConfiguration</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
391
+ |<sub>/rest/server-hardware/{id}/iloSsoUrl</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
392
+ |<sub>/rest/server-hardware/{id}/javaRemoteConsole</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
393
+ |<sub>/rest/server-hardware/{id}/mpFirmwareVersion</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
394
+ |<sub>/rest/server-hardware/{id}/physicalServerHardware</sub> | GET | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: |
395
+ |<sub>/rest/server-hardware/{id}/powerState</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
396
+ |<sub>/rest/server-hardware/{id}/refreshState</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
397
+ |<sub>/rest/server-hardware/{id}/remoteConsoleUrl</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
398
+ |<sub>/rest/server-hardware/{id}/utilization</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
399
+ |<sub>/rest/server-hardware/{id} | PATCH | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
400
+ |<sub>/rest/server-hardware/*/firmware | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
401
+ |<sub>/rest/server-hardware/{id}/firmware | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
402
+ | **Server Hardware Type** |
403
+ |<sub>/rest/server-hardware-types</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
404
+ |<sub>/rest/server-hardware-types/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
405
+ |<sub>/rest/server-hardware-types/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
406
+ |<sub>/rest/server-hardware-types/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
407
+ | **Server Profile** |
408
+ |<sub>/rest/server-profiles</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
409
+ |<sub>/rest/server-profiles</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
410
+ |<sub>/rest/server-profiles</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
411
+ |<sub>/rest/server-profiles/available-networks</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
412
+ |<sub>/rest/server-profiles/available-servers</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
413
+ |<sub>/rest/server-profiles/available-storage-systems</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
414
+ |<sub>/rest/server-profiles/available-targets</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
415
+ |<sub>/rest/server-profiles/profile-ports</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
416
+ |<sub>/rest/server-profiles/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
417
+ |<sub>/rest/server-profiles/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
418
+ |<sub>/rest/server-profiles/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
419
+ |<sub>/rest/server-profiles/{id}</sub> | PATCH | :white_check_mark: | :white_check_mark: | :white_check_mark: |
420
+ |<sub>/rest/server-profiles/{id}/compliance-preview</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
421
+ |<sub>/rest/server-profiles/{id}/new-profile-template</sub> | GET | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: |
422
+ |<sub>/rest/server-profiles/{id}/messages</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
423
+ |<sub>/rest/server-profiles/{id}/transformation</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
424
+ | **Server Profile Template** |
425
+ |<sub>/rest/server-profile-templates</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
426
+ |<sub>/rest/server-profile-templates</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
427
+ |<sub>/rest/server-profile-templates/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
428
+ |<sub>/rest/server-profile-templates/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
429
+ |<sub>/rest/server-profile-templates/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
430
+ |<sub>/rest/server-profile-templates/{id}/new-profile</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
431
+ |<sub>/rest/server-profile-templates/{id}/transformation</sub> | GET | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: |
432
+ | **Storage Pools** |
433
+ |<sub>/rest/storage-pools</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
434
+ |<sub>/rest/storage-pools</sub> | POST | :white_check_mark: | :white_check_mark: | :heavy_minus_sign: |
435
+ |<sub>/rest/storage-pools/reachable-storage-pools</sub> | GET | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: |
436
+ |<sub>/rest/storage-pools/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
437
+ |<sub>/rest/storage-pools/{id}</sub> | PUT | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: |
438
+ |<sub>/rest/storage-pools/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :heavy_minus_sign: |
439
+ | **Storage System** |
440
+ |<sub>/rest/storage-systems</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
441
+ |<sub>/rest/storage-systems</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
442
+ |<sub>/rest/storage-systems/host-types</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
443
+ |<sub>/rest/storage-systems/{arrayId}/storage-pools</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
444
+ |<sub>/rest/storage-systems/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
445
+ |<sub>/rest/storage-systems/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
446
+ |<sub>/rest/storage-systems/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
447
+ |<sub>/rest/storage-systems/{id}/managedPorts</sub> | GET | :white_check_mark: | :white_check_mark: | :heavy_minus_sign: |
448
+ |<sub>/rest/storage-systems/{id}/managedPorts/{portId}</sub> | GET | :white_check_mark: | :white_check_mark: | :heavy_minus_sign: |
449
+ |<sub>/rest/storage-systems/{id}/reachable-ports</sub> | GET | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: |
450
+ |<sub>/rest/storage-systems/{id}/templates</sub> | GET | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: |
451
+ | **Storage Volume Attachment** |
452
+ |<sub>/rest/storage-volume-attachments</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
453
+ |<sub>/rest/storage-volume-attachments/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
454
+ |<sub>/rest/storage-volume-attachments/repair</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
455
+ |<sub>/rest/storage-volume-attachments/repair</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
456
+ |<sub>/rest/storage-volume-attachments/{id}/paths</sub> | GET | :white_check_mark: | :white_check_mark: | :heavy_minus_sign: |
457
+ |<sub>/rest/storage-volume-attachments/{attachmentId)/paths/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :heavy_minus_sign: |
458
+ | **Storage Volume Template** |
459
+ |<sub>/rest/storage-volume-templates</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
460
+ |<sub>/rest/storage-volume-templates</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
461
+ |<sub>/rest/storage-volume-templates/connectable-volume-templates</sub> | GET | :white_check_mark: | :white_check_mark: | :heavy_minus_sign: |
462
+ |<sub>/rest/storage-volume-templates/reachable-volume-templates</sub> | GET | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: |
463
+ |<sub>/rest/storage-volume-templates/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
464
+ |<sub>/rest/storage-volume-templates/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
465
+ |<sub>/rest/storage-volume-templates/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
466
+ |<sub>/rest/storage-volume-templates/{id}/compatible-systems</sub> | GET | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: |
467
+ | **Switch** |
468
+ |<sub>/rest/switches</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
469
+ |<sub>/rest/switches/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
470
+ |<sub>/rest/switches/{id}</sub> | PATCH | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: |
471
+ |<sub>/rest/switches/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
472
+ |<sub>/rest/switches/{id}/environmentalConfiguration</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
473
+ |<sub>/rest/switches/{id}/statistics</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
474
+ |<sub>/rest/switches/{id}/statistics/{portName:.+}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
475
+ |<sub>/rest/switches/{id}/update-ports</sub> | PUT | :heavy_minus_sign: | | |
476
+ | **Switch Type** |
477
+ |<sub>/rest/switch-types</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
478
+ |<sub>/rest/switch-types/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
479
+ | **Task** |
480
+ |<sub>/rest/tasks</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
481
+ |<sub>/rest/tasks/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
482
+ | **Unmanaged Device** |
483
+ |<sub>/rest/unmanaged-devices</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
484
+ |<sub>/rest/unmanaged-devices</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
485
+ |<sub>/rest/unmanaged-devices</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
486
+ |<sub>/rest/unmanaged-devices/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
487
+ |<sub>/rest/unmanaged-devices/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
488
+ |<sub>/rest/unmanaged-devices/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
489
+ |<sub>/rest/unmanaged-devices/{id}/environmentalConfiguration</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
490
+ | **Uplink Sets** |
491
+ |<sub>/rest/uplink-sets</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
492
+ |<sub>/rest/uplink-sets</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
493
+ |<sub>/rest/uplink-sets/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
494
+ |<sub>/rest/uplink-sets/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
495
+ |<sub>/rest/uplink-sets/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
496
+ | **Users** |
497
+ |<sub>/rest/users</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
498
+ |<sub>/rest/users</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
499
+ |<sub>/rest/users</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
500
+ |<sub>/rest/users</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
501
+ |<sub>/rest/users/administrator/resetPassword</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
502
+ |<sub>/rest/users/changePassword</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
503
+ |<sub>/rest/users/role/{userName}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
504
+ |<sub>/rest/users/roles</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
505
+ |<sub>/rest/users/roles/users/{role}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
506
+ |<sub>/rest/users/validateLoginName/{userName}</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
507
+ |<sub>/rest/users/validateUserName/{fullName}</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
508
+ |<sub>/rest/users/{userName}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
509
+ |<sub>/rest/users/{userName}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
510
+ |<sub>/rest/users/{userName}/roles</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
511
+ |<sub>/rest/users/{userName}/roles</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
512
+ | **Version** |
513
+ |<sub>/rest/version</sub> | GET | | | |
514
+ | **Volume** |
515
+ |<sub>/rest/storage-volumes</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
516
+ |<sub>/rest/storage-volumes</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
517
+ |<sub>/rest/storage-volumes/attachable-volumes</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
518
+ |<sub>/rest/storage-volumes/from-existing</sub> | POST | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: |
519
+ |<sub>/rest/storage-volumes/from-snapshot</sub> | POST | :heavy_minus_sign: | :heavy_minus_sign: | :white_check_mark: |
520
+ |<sub>/rest/storage-volumes/repair</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
521
+ |<sub>/rest/storage-volumes/repair</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
522
+ |<sub>/rest/storage-volumes/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
523
+ |<sub>/rest/storage-volumes/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |
524
+ |<sub>/rest/storage-volumes/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
525
+ |<sub>/rest/storage-volumes/{id}/snapshots</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
526
+ |<sub>/rest/storage-volumes/{id}/snapshots</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |
527
+ |<sub>/rest/storage-volumes/{id}/snapshots/{snapshotId}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |
528
+ |<sub>/rest/storage-volumes/{id}/snapshots/{snapshotId}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |
529
+
530
+
531
+
532
+ ## HPE Synergy Image Streamer
533
+
534
+ | Endpoints | Verb | V300 |
535
+ | --------------------------------------------------------------------------------- | ------- | :----------------: |
536
+ | **Artifacts Bundle** |
537
+ |<sub> /rest/artifact-bundles </sub> | GET | :white_check_mark: |
538
+ |<sub> /rest/artifact-bundles </sub> | POST(create) | :white_check_mark: |
539
+ |<sub> /rest/artifact-bundles </sub> | POST(upload) | :white_check_mark: |
540
+ |<sub> /rest/artifact-bundles/backups </sub> | GET | :white_check_mark: |
541
+ |<sub> /rest/artifact-bundles/backups </sub> | POST(create) | :white_check_mark: |
542
+ |<sub> /rest/artifact-bundles/backups/archive </sub> | POST(upload) | :white_check_mark: |
543
+ |<sub> /rest/artifact-bundles/backups/archive/{id} </sub> | GET | :white_check_mark: |
544
+ |<sub> /rest/artifact-bundles/backups/{id} </sub> | GET | :white_check_mark: |
545
+ |<sub> /rest/artifact-bundles/backups/{id} </sub> | PUT | :white_check_mark: |
546
+ |<sub> /rest/artifact-bundles/download/{id} </sub> | GET | :white_check_mark: |
547
+ |<sub> /rest/artifact-bundles/{id} </sub> | GET | :white_check_mark: |
548
+ |<sub> /rest/artifact-bundles/{id} </sub> | PUT(extract) | :white_check_mark: |
549
+ |<sub> /rest/artifact-bundles/{id} </sub> | PUT(update attr) | :white_check_mark: |
550
+ |<sub> /rest/artifact-bundles/{id} </sub> | DELETE | :white_check_mark: |
551
+ |<sub> /rest/artifact-bundles/{id}/stopArtifactCreate </sub> | PUT | :white_check_mark: |
552
+ | **Deployment Plans** |
553
+ |<sub> /rest/deployment-plans </sub> | POST | :white_check_mark: |
554
+ |<sub> /rest/deployment-plans </sub> | GET | :white_check_mark: |
555
+ |<sub> /rest/deployment-plans/{id} </sub> | GET | :white_check_mark: |
556
+ |<sub> /rest/deployment-plans/{id} </sub> | PUT | :white_check_mark: |
557
+ |<sub> /rest/deployment-plans/{id} </sub> | DELETE | :white_check_mark: |
558
+ | **Deployment Groups** |
559
+ |<sub> /rest/deployment-groups</sub> | GET | :white_check_mark: |
560
+ |<sub> /rest/deployment-groups/{id}</sub> | GET | :white_check_mark: |
561
+ | **Golden Images** |
562
+ |<sub> /rest/golden-images</sub> | POST(create) | :white_check_mark: |
563
+ |<sub> /rest/golden-images</sub> | POST(upload) | :white_check_mark: |
564
+ |<sub> /rest/golden-images</sub> | GET | :white_check_mark: |
565
+ |<sub> /rest/golden-images/{id}</sub> | GET | :white_check_mark: |
566
+ |<sub> /rest/golden-images/archive/{id}</sub> | GET | :white_check_mark: |
567
+ |<sub> /rest/golden-images/download/{id}</sub> | GET | :white_check_mark: |
568
+ |<sub> /rest/golden-images/{id}</sub> | PUT | :white_check_mark: |
569
+ |<sub> /rest/golden-images/{id}</sub> | DELETE | :white_check_mark: |
570
+ | **OS Build Plan** |
571
+ |<sub> /rest/build-plans</sub> | POST | :white_check_mark: |
572
+ |<sub> /rest/build-plans</sub> | GET | :white_check_mark: |
573
+ |<sub> /rest/build-plans/{id}</sub> | GET | :white_check_mark: |
574
+ |<sub> /rest/build-plans/{id}</sub> | PUT | :white_check_mark: |
575
+ |<sub> /rest/build-plans/{id}</sub> | DELETE | :white_check_mark: |
576
+ | **OS Volumes** |
577
+ |<sub> /rest/os-volumes</sub> | GET | :white_check_mark: |
578
+ |<sub> /rest/os-volumes/{id}</sub> | GET | :white_check_mark: |
579
+ |<sub> /rest/os-volumes/archive/{id}</sub> | GET | :white_check_mark: |
580
+ | **Plan Scripts** |
581
+ |<sub> /rest/plan-scripts</sub> | POST | :white_check_mark: |
582
+ |<sub> /rest/plan-scripts/differences/{id}</sub> | POST | :white_check_mark: |
583
+ |<sub> /rest/plan-scripts</sub> | GET | :white_check_mark: |
584
+ |<sub> /rest/plan-scripts/{id}</sub> | GET | :white_check_mark: |
585
+ |<sub> /rest/plan-scripts/{id}</sub> | PUT | :white_check_mark: |
586
+ |<sub> /rest/plan-scripts/{id}</sub> | DELETE | :white_check_mark: |
@@ -83,8 +83,9 @@ module OneviewSDK
83
83
 
84
84
  # Sets the storage system
85
85
  # @param [OneviewSDK::StorageSystem] storage_system
86
+ # @raise [OneviewSDK::IncompleteResource] if Storage System not found
86
87
  def set_storage_system(storage_system)
87
- raise IncompleteResource, 'Please set the storage system\'s uri attribute!' unless storage_system['uri']
88
+ raise 'Storage System could not be found!' unless storage_system.retrieve!
88
89
  set('storageSystemUri', storage_system['uri'])
89
90
  end
90
91
  end
@@ -96,6 +96,14 @@ module OneviewSDK
96
96
  update
97
97
  refresh
98
98
  end
99
+
100
+ # Sets the storage system
101
+ # @param [OneviewSDK::StorageSystem] storage_system
102
+ # @raise [OneviewSDK::IncompleteResource] if Storage System not found
103
+ def set_storage_system(storage_system)
104
+ raise 'Storage System could not be found!' unless storage_system.retrieve!
105
+ set('storageSystemUri', storage_system['uri'])
106
+ end
99
107
  end
100
108
  end
101
109
  end
@@ -11,5 +11,5 @@
11
11
 
12
12
  # Gem version defined here
13
13
  module OneviewSDK
14
- VERSION = '5.1.1'.freeze
14
+ VERSION = '5.1.2'.freeze
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oneview-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.1
4
+ version: 5.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henrique Diomede
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2017-10-05 00:00:00.000000000 Z
14
+ date: 2017-10-11 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: thor
@@ -198,7 +198,9 @@ files:
198
198
  - LICENSE
199
199
  - README.md
200
200
  - Rakefile
201
+ - TESTING.md
201
202
  - bin/oneview-sdk-ruby
203
+ - endpoints-support.md
202
204
  - lib/oneview-sdk.rb
203
205
  - lib/oneview-sdk/cli.rb
204
206
  - lib/oneview-sdk/client.rb