xclarity_client 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE +201 -0
- data/README.md +51 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/mock_server.ru +11 -0
- data/bin/setup +8 -0
- data/docs/apib/aicc.apib +344 -0
- data/docs/apib/chassis.apib +1440 -0
- data/docs/apib/node.apib +890 -0
- data/example/simple.rb +15 -0
- data/lib/xclarity_client.rb +10 -0
- data/lib/xclarity_client/chassis.rb +7 -0
- data/lib/xclarity_client/client.rb +13 -0
- data/lib/xclarity_client/configuration.rb +14 -0
- data/lib/xclarity_client/node.rb +104 -0
- data/lib/xclarity_client/version.rb +3 -0
- data/lib/xclarity_client/virtual_appliance_management.rb +76 -0
- data/lib/xclarity_client/xclarity_base.rb +26 -0
- data/xclarity_client.gemspec +27 -0
- metadata +152 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: bec6fd97900c5de80ebf9aa4395914dd492b9c31
|
4
|
+
data.tar.gz: 36c48bd89f5c8c9b0668176349c233d69c486b53
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 483fe96ee7d3880cef60f475f9a66dc31bbbe23afbaa8a3835a2210819fb41fe3d5ea8359ee0d91ceea53acfc5861505f1ef70522484fa9c09bed549a1dab8e4
|
7
|
+
data.tar.gz: 4846f857d9d63251f98dcb2b3b3913402e578fa6ede0bf02f67229a5e6af05594e1c493c39f67eff86736f407aaf980972a07646212c97ff00bba67e50c452cb
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at jcheal@redhat.com. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright {yyyy} {name of copyright owner}
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
data/README.md
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
# XClarity Client
|
2
|
+
|
3
|
+
[![Build Status](https://travis-ci.org/juliancheal/xclarity_client.svg)](https://travis-ci.org/juliancheal/xclarity_client)
|
4
|
+
|
5
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/xclarity_client`. To experiment with that code, run `bin/console` for an interactive prompt.
|
6
|
+
|
7
|
+
TODO: Delete this and the text above, and describe your gem
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your application's Gemfile:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
gem 'xclarity_client'
|
15
|
+
```
|
16
|
+
|
17
|
+
And then execute:
|
18
|
+
|
19
|
+
$ bundle
|
20
|
+
|
21
|
+
Or install it yourself as:
|
22
|
+
|
23
|
+
$ gem install xclarity_client
|
24
|
+
|
25
|
+
## Usage
|
26
|
+
|
27
|
+
To get basic information from the virtual appliance
|
28
|
+
|
29
|
+
```ruby
|
30
|
+
require 'xclarity_client'
|
31
|
+
|
32
|
+
conf = XClarityClient::Configuration.new(
|
33
|
+
:username => 'admin',
|
34
|
+
:password => 'pass',
|
35
|
+
:host => 'http://example.com'
|
36
|
+
)
|
37
|
+
|
38
|
+
virtual_appliance = XClarityClient::VirtualApplianceManagement.new(conf)
|
39
|
+
|
40
|
+
puts virtual_appliance.configuration_settings
|
41
|
+
```
|
42
|
+
|
43
|
+
## Development
|
44
|
+
|
45
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
46
|
+
|
47
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
48
|
+
|
49
|
+
## Contributing
|
50
|
+
|
51
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/juliancheal/xclarity_client. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "xclarity_client"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/mock_server.ru
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
require 'xclarity_client'
|
2
|
+
require 'apib/mock_server'
|
3
|
+
|
4
|
+
base_url = "http://localhost:9292"
|
5
|
+
blueprints = ""
|
6
|
+
Dir.glob('docs/apib/*.apib') do |blueprint|
|
7
|
+
blueprints << File.open(blueprint).read
|
8
|
+
end
|
9
|
+
|
10
|
+
app = Apib::MockServer.new(base_url, blueprints)
|
11
|
+
run app
|
data/bin/setup
ADDED
data/docs/apib/aicc.apib
ADDED
@@ -0,0 +1,344 @@
|
|
1
|
+
FORMAT: 1A
|
2
|
+
|
3
|
+
# Lenovo XClarity Management Console API
|
4
|
+
|
5
|
+
# GET /aicc
|
6
|
+
|
7
|
+
+ Response 200 (application/json)
|
8
|
+
|
9
|
+
{
|
10
|
+
"appliance": {
|
11
|
+
"build": "110",
|
12
|
+
"date": "2015-09-15_10-25-16",
|
13
|
+
"name": "LXCA - 10.240.61.98",
|
14
|
+
"runlevel": 3,
|
15
|
+
"status": "Normal",
|
16
|
+
"uuid": "bef3e2c3-a689-4734-aa79-2a21f21e8b97",
|
17
|
+
"version": "1.1.0"
|
18
|
+
},
|
19
|
+
"appliance_states": [{
|
20
|
+
"description": "Halt the appliance",
|
21
|
+
"runlevel": 0
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"description": "Reboot the appliance",
|
25
|
+
"runlevel": 6
|
26
|
+
}],
|
27
|
+
"date": {
|
28
|
+
"date_time": "September 18, 2015 8:45:54 AM EST",
|
29
|
+
"parts": {
|
30
|
+
"yyyy": 2015,
|
31
|
+
"mm": 9,
|
32
|
+
"dd": 18,
|
33
|
+
"hours": 8,
|
34
|
+
"mins": 45
|
35
|
+
"secs": 54,
|
36
|
+
},
|
37
|
+
"timezone": "Eastern Standard Time",
|
38
|
+
"timezones": [{
|
39
|
+
"daylight_saves": 0,
|
40
|
+
"display_name": "GMT-12:00",
|
41
|
+
"id": "Etc/GMT+12",
|
42
|
+
"offset": -43200000,
|
43
|
+
"uses_daylight": false,
|
44
|
+
"utc_offset_raw": -43200000,
|
45
|
+
"utc_offset_w_dst": -43200000
|
46
|
+
},
|
47
|
+
{
|
48
|
+
"daylight_saves": 0,
|
49
|
+
"display_name": "Eastern Standard Time",
|
50
|
+
"id": "America/Grand_Turk",
|
51
|
+
"offset": -14400000,
|
52
|
+
"uses_daylight": false,
|
53
|
+
"utc_offset_raw": -18000000,
|
54
|
+
"utc_offset_w_dst": -14400000
|
55
|
+
}],
|
56
|
+
"timezone_id": "America/Cayman",
|
57
|
+
"uses_daylight": true,
|
58
|
+
"utc_offset": -18000000,
|
59
|
+
"utc_offset_raw": -18000000,
|
60
|
+
"utc_offset_w_dst": -18000000
|
61
|
+
}
|
62
|
+
"network_interfaces": [{
|
63
|
+
"id": "eth0",
|
64
|
+
"ip_addresses": [{
|
65
|
+
"assign_method": "static",
|
66
|
+
"ip": "fe80:0:0:0:200:ff:fe00:10%2",
|
67
|
+
"ip_linklocal": "true",
|
68
|
+
"prefix_length": 64,
|
69
|
+
"version": 6
|
70
|
+
},
|
71
|
+
{
|
72
|
+
"assign_method": "static",
|
73
|
+
"ip": "10.240.61.98",
|
74
|
+
"ip_linklocal": "false",
|
75
|
+
"prefix_length": 22,
|
76
|
+
"version": 4
|
77
|
+
}],
|
78
|
+
"mac_address": "00:00:00:00:00:10",
|
79
|
+
"role": ["management", "osdeployment"]
|
80
|
+
}],
|
81
|
+
"ntp": {
|
82
|
+
"servers": [{
|
83
|
+
"authenticated": false,
|
84
|
+
"server": "us.pool.ntp.org",
|
85
|
+
"version": 1,
|
86
|
+
"v3_key": "",
|
87
|
+
"v3_key_index": 0,
|
88
|
+
"v3_key_type": ""
|
89
|
+
}]
|
90
|
+
},
|
91
|
+
"services": [{
|
92
|
+
"id": "core",
|
93
|
+
"initd": "xhmc-core",
|
94
|
+
"pid": 52706,
|
95
|
+
"state": 0
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"id": "watchdog",
|
99
|
+
"initd": "sympl-watchdog",
|
100
|
+
"pid": 52517,
|
101
|
+
"state": 0
|
102
|
+
}],
|
103
|
+
"service_states": [{
|
104
|
+
"description": "Service is running",
|
105
|
+
"state": 0
|
106
|
+
},
|
107
|
+
{
|
108
|
+
"description": "Special purpose state used to trigger restart through REST",
|
109
|
+
"state": 191
|
110
|
+
}],
|
111
|
+
"subscriptions": [{
|
112
|
+
"id": 1,
|
113
|
+
"monitor_uri": "/aicc",
|
114
|
+
"uri": "/ntpNotification"
|
115
|
+
},
|
116
|
+
{
|
117
|
+
"id": 3,
|
118
|
+
"monitor_uri": "",
|
119
|
+
"uri": "/osdeployment/rest/internal/event/aicc"
|
120
|
+
}],
|
121
|
+
}
|
122
|
+
|
123
|
+
# PUT /aicc
|
124
|
+
|
125
|
+
+ Response 200 (application/json)
|
126
|
+
|
127
|
+
+ Response 400
|
128
|
+
|
129
|
+
# GET /aicc/network/ipdisable
|
130
|
+
|
131
|
+
+ Response 200 (application/json)
|
132
|
+
|
133
|
+
{
|
134
|
+
"ip_status": [{
|
135
|
+
"ip_disable": 0,
|
136
|
+
"ip_version": 4
|
137
|
+
},
|
138
|
+
{
|
139
|
+
"ip_disable": 0,
|
140
|
+
"ip_version": 6
|
141
|
+
}]
|
142
|
+
}
|
143
|
+
|
144
|
+
+ Response 404
|
145
|
+
|
146
|
+
# PUT /aicc/network/ipdisable
|
147
|
+
|
148
|
+
+ Response 200 (application/json)
|
149
|
+
|
150
|
+
+ Response 400
|
151
|
+
|
152
|
+
# GET /aicc/network/host
|
153
|
+
|
154
|
+
+ Response 200 (application/json)
|
155
|
+
|
156
|
+
{
|
157
|
+
"dns_servers": [{
|
158
|
+
"ip": "192.168.3.1",
|
159
|
+
"priority": 1
|
160
|
+
},
|
161
|
+
{
|
162
|
+
"ip": "9.0.128.50",
|
163
|
+
"priority": 2
|
164
|
+
},
|
165
|
+
{
|
166
|
+
"ip": "9.0.130.50",
|
167
|
+
"priority": 3
|
168
|
+
},
|
169
|
+
{
|
170
|
+
"ip": "192.168.129.1",
|
171
|
+
"priority": 4
|
172
|
+
}],
|
173
|
+
"domain_name": "(none),"
|
174
|
+
"hostname": "localhost",
|
175
|
+
"proxy": {
|
176
|
+
"enabled": true,
|
177
|
+
"ip": "1.1.1.1",
|
178
|
+
"password": "password",
|
179
|
+
"port": 11,
|
180
|
+
"userid": "userid"
|
181
|
+
}
|
182
|
+
}
|
183
|
+
|
184
|
+
# PUT /aicc/network/host
|
185
|
+
|
186
|
+
+ Response 200 (application/json)
|
187
|
+
|
188
|
+
{
|
189
|
+
"dns_servers": [{
|
190
|
+
"ip": "192.168.3.1",
|
191
|
+
"priority": 1
|
192
|
+
},
|
193
|
+
{
|
194
|
+
"ip": "9.0.128.50",
|
195
|
+
"priority": 2
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"ip": "9.0.130.50",
|
199
|
+
"priority": 3
|
200
|
+
},
|
201
|
+
{
|
202
|
+
"ip": "192.168.129.1",
|
203
|
+
"priority": 4
|
204
|
+
}],
|
205
|
+
"domain_name": "(none),"
|
206
|
+
"hostname": "localhost",
|
207
|
+
"proxy": {
|
208
|
+
"enabled": true,
|
209
|
+
"ip": "1.1.1.1",
|
210
|
+
"password": "password",
|
211
|
+
"port": 11,
|
212
|
+
"userid": "userid"
|
213
|
+
}
|
214
|
+
}
|
215
|
+
|
216
|
+
+ Response 400
|
217
|
+
|
218
|
+
# GET /aicc/network/interfaces/{interface}
|
219
|
+
|
220
|
+
+ Parameters
|
221
|
+
+ interface - ID of the network interface.
|
222
|
+
|
223
|
+
+ Response 200 (application/json)
|
224
|
+
|
225
|
+
[{
|
226
|
+
"id": "eth0",
|
227
|
+
"ip_addresses": [{
|
228
|
+
"assign_method": "static",
|
229
|
+
"ip": "fe80:0:0:0:20c:29ff:fec3:af6b%2",
|
230
|
+
"ip_linklocal": "true",
|
231
|
+
"prefix_length": 64,
|
232
|
+
"version": 6
|
233
|
+
},
|
234
|
+
{
|
235
|
+
"assign_method": "static",
|
236
|
+
"ip": "10.240.70.20",
|
237
|
+
"ip_linklocal": "false",
|
238
|
+
"prefix_length": 23,
|
239
|
+
"version": 4
|
240
|
+
}],
|
241
|
+
"mac_address": "00:0C:29:C3:AF:6B",
|
242
|
+
"role": ["management", "osdeployment"]
|
243
|
+
}]
|
244
|
+
|
245
|
+
+ Response 400
|
246
|
+
|
247
|
+
# PUT /aicc/network/interfaces/{interface}
|
248
|
+
|
249
|
+
+ Response 200 (application/json)
|
250
|
+
+ Response 400
|
251
|
+
+ Response 401
|
252
|
+
+ Response 403
|
253
|
+
+ Response 404
|
254
|
+
+ Response 409
|
255
|
+
+ Response 500
|
256
|
+
|
257
|
+
# GET /aicc/network/routes
|
258
|
+
|
259
|
+
+ Response 200 (application/json)
|
260
|
+
|
261
|
+
# PUT /aicc/network/routes
|
262
|
+
|
263
|
+
+ Response 200 (application/json)
|
264
|
+
|
265
|
+
{
|
266
|
+
"routes": [{
|
267
|
+
"dev": "eth0",
|
268
|
+
"destination": "100.10.10.10",
|
269
|
+
"ip_version": 4,
|
270
|
+
"nexthop": "192.168.56.1",
|
271
|
+
"prefix_len": 32
|
272
|
+
},
|
273
|
+
{
|
274
|
+
"dev": "eth0",
|
275
|
+
"destination": "10.10.10.0",
|
276
|
+
"ip_version": 4,
|
277
|
+
"nexthop": "192.168.56.1",
|
278
|
+
"prefix_len": 24
|
279
|
+
},
|
280
|
+
{
|
281
|
+
"ip_version": 4,
|
282
|
+
"nexthop": "10.0.3.2",
|
283
|
+
"prefix_len": 0
|
284
|
+
},
|
285
|
+
{
|
286
|
+
"dev": "eth1",
|
287
|
+
"destination": "2001:db7:1::",
|
288
|
+
"ip_version": 6,
|
289
|
+
"nexthop": "2002:97b:c2bb:83d:5054:ff:fe2c:eefe",
|
290
|
+
"prefix_len": 64
|
291
|
+
},
|
292
|
+
{
|
293
|
+
"dev": "eth1",
|
294
|
+
"destination": "2002:97b:face:83d:5054:ff:fe2c:eefe",
|
295
|
+
"ip_version": 6,
|
296
|
+
"nexthop": "2002:97b:c2bb:83d:5054:ff:fe2c:eefe",
|
297
|
+
"prefix_len": 128
|
298
|
+
}]
|
299
|
+
}
|
300
|
+
|
301
|
+
+ Response 400
|
302
|
+
|
303
|
+
# GET /aicc/subscriptions
|
304
|
+
|
305
|
+
+ Response 200 (application/json)
|
306
|
+
|
307
|
+
[{
|
308
|
+
"id": 1,
|
309
|
+
"monitor_uri": "/aicc/network/interfaces",
|
310
|
+
"submonitor_uri": "",
|
311
|
+
"uri": "/osdeployment/rest/internal/event/aicc"
|
312
|
+
},
|
313
|
+
{
|
314
|
+
"id": 2,
|
315
|
+
"monitor_uri": "/aicc",
|
316
|
+
"submonitor_uri": "/ntp",
|
317
|
+
"uri": "/ntpNotification"
|
318
|
+
},
|
319
|
+
{
|
320
|
+
"id": 3,
|
321
|
+
"monitor_uri": "/aicc/network/interfaces",
|
322
|
+
"submonitor_uri": "",
|
323
|
+
"uri": "/netchangenotsec"
|
324
|
+
}]
|
325
|
+
|
326
|
+
+ Response 400
|
327
|
+
|
328
|
+
# PUT /aicc/subscriptions
|
329
|
+
|
330
|
+
+ Response 200 (application/json)
|
331
|
+
+ Response 400
|
332
|
+
+ Response 409
|
333
|
+
|
334
|
+
# DELETE /aicc/subscriptions/{id}
|
335
|
+
|
336
|
+
+ Response 200 (application/json)
|
337
|
+
|
338
|
+
+ Response 404
|
339
|
+
|
340
|
+
# GET /aicc/subscriptions/{id}
|
341
|
+
|
342
|
+
+ Response 200 (application/json)
|
343
|
+
|
344
|
+
+ Response 400
|