occi-core 5.0.0.beta.10 → 5.0.0.beta.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (20) hide show
  1. checksums.yaml +4 -4
  2. data/lib/occi/core/version.rb +1 -1
  3. data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.compute.state.message.yml +7 -0
  4. data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.network.state.message.yml +7 -0
  5. data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.networkinterface.state.message.yml +7 -0
  6. data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.storage.size.yml +1 -1
  7. data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.storage.state.message.yml +7 -0
  8. data/lib/occi/infrastructure/warehouse/kinds/attributes/occi.storagelink.state.message.yml +7 -0
  9. data/lib/occi/infrastructure/warehouse/kinds/compute.yml +1 -0
  10. data/lib/occi/infrastructure/warehouse/kinds/network.yml +1 -0
  11. data/lib/occi/infrastructure/warehouse/kinds/networkinterface.yml +1 -0
  12. data/lib/occi/infrastructure/warehouse/kinds/storage.yml +1 -0
  13. data/lib/occi/infrastructure/warehouse/kinds/storagelink.yml +1 -0
  14. data/lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.ipreservation.state.message.yml +7 -0
  15. data/lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.securitygroup.state.message.yml +7 -0
  16. data/lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.securitygrouplink.state.message.yml +7 -0
  17. data/lib/occi/infrastructure_ext/warehouse/kinds/ipreservation.yml +1 -0
  18. data/lib/occi/infrastructure_ext/warehouse/kinds/securitygroup.yml +1 -0
  19. data/lib/occi/infrastructure_ext/warehouse/kinds/securitygrouplink.yml +1 -0
  20. metadata +10 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: afd95a13c2ec93db744f907fec0ebe077a424f7b
4
- data.tar.gz: 1526f8f20ffb41189e25455c759eb5ae79062268
3
+ metadata.gz: 2b94f1a4316978af0b393e5519c1708d7ee28b78
4
+ data.tar.gz: 228f6aa55efe15e6e95d06de36fdb4f5a1cee9b6
5
5
  SHA512:
6
- metadata.gz: 8a1d1e1b9d6d547d3035c5e9ac2928e8b18395235644158309b7e565c1fba1eecd2f4c5fba1889bae56bb02e3e7679d2d42de716374e00531186f3d15024df5b
7
- data.tar.gz: e94eca874b8252507c247a172a45f2c16a448695a73f2785af7d70aa5ab09de10ae7dc33250d65192381a84eba60f299f7691b4cf5fd1eb75ed3a1164debd032
6
+ metadata.gz: 85307c01a910ae55ea4b766656fb69804c643984a103dff22481a5b5a04a15ee72b5c51353ddcfed212ad341ca49e0a211ad3cdb2aa47b0439790de77f3aedcc
7
+ data.tar.gz: 1dd56f8b151f5e375005fde60a2b131eea6b51206684b509b12662d5d08e82b66f86ad327fd1b9004942b835f0ccc1acc93888b125e7db178232943a57596c0c
@@ -3,7 +3,7 @@ module Occi
3
3
  MAJOR_VERSION = 5 # Major update constant
4
4
  MINOR_VERSION = 0 # Minor update constant
5
5
  PATCH_VERSION = 0 # Patch/Fix version constant
6
- STAGE_VERSION = 'beta.10'.freeze # use `nil` for production releases
6
+ STAGE_VERSION = 'beta.11'.freeze # use `nil` for production releases
7
7
 
8
8
  unless defined?(::Occi::Core::VERSION)
9
9
  VERSION = [
@@ -0,0 +1,7 @@
1
+ ---
2
+ type: !ruby/class String
3
+ required: false
4
+ mutable: false
5
+ default: ~
6
+ description: Human-readable description of the current state.
7
+ pattern: ~
@@ -0,0 +1,7 @@
1
+ ---
2
+ type: !ruby/class String
3
+ required: false
4
+ mutable: false
5
+ default: ~
6
+ description: Human-readable description of the current state.
7
+ pattern: ~
@@ -0,0 +1,7 @@
1
+ ---
2
+ type: !ruby/class String
3
+ required: false
4
+ mutable: false
5
+ default: ~
6
+ description: Human-readable description of the current state.
7
+ pattern: ~
@@ -1,5 +1,5 @@
1
1
  ---
2
- type: !ruby/class Integer
2
+ type: !ruby/class Float
3
3
  required: false
4
4
  mutable: true
5
5
  default: ~
@@ -0,0 +1,7 @@
1
+ ---
2
+ type: !ruby/class String
3
+ required: false
4
+ mutable: false
5
+ default: ~
6
+ description: Human-readable description of the current state.
7
+ pattern: ~
@@ -0,0 +1,7 @@
1
+ ---
2
+ type: !ruby/class String
3
+ required: false
4
+ mutable: false
5
+ default: ~
6
+ description: Human-readable description of the current state.
7
+ pattern: ~
@@ -11,6 +11,7 @@ attributes:
11
11
  - occi.compute.memory
12
12
  - occi.compute.speed
13
13
  - occi.compute.state
14
+ - occi.compute.state.message
14
15
  actions:
15
16
  - http://schemas.ogf.org/occi/infrastructure/compute/action#start
16
17
  - http://schemas.ogf.org/occi/infrastructure/compute/action#stop
@@ -8,6 +8,7 @@ attributes:
8
8
  - occi.network.vlan
9
9
  - occi.network.label
10
10
  - occi.network.state
11
+ - occi.network.state.message
11
12
  actions:
12
13
  - http://schemas.ogf.org/occi/infrastructure/network/action#up
13
14
  - http://schemas.ogf.org/occi/infrastructure/network/action#down
@@ -8,6 +8,7 @@ attributes:
8
8
  - occi.networkinterface.interface
9
9
  - occi.networkinterface.mac
10
10
  - occi.networkinterface.state
11
+ - occi.networkinterface.state.message
11
12
  actions:
12
13
  - http://schemas.ogf.org/occi/infrastructure/networkinterface/action#up
13
14
  - http://schemas.ogf.org/occi/infrastructure/networkinterface/action#down
@@ -7,6 +7,7 @@ location: /storage/
7
7
  attributes:
8
8
  - occi.storage.size
9
9
  - occi.storage.state
10
+ - occi.storage.state.message
10
11
  actions:
11
12
  - http://schemas.ogf.org/occi/infrastructure/storage/action#online
12
13
  - http://schemas.ogf.org/occi/infrastructure/storage/action#offline
@@ -8,6 +8,7 @@ attributes:
8
8
  - occi.storagelink.deviceid
9
9
  - occi.storagelink.mountpoint
10
10
  - occi.storagelink.state
11
+ - occi.storagelink.state.message
11
12
  actions:
12
13
  - http://schemas.ogf.org/occi/infrastructure/storagelink/action#online
13
14
  - http://schemas.ogf.org/occi/infrastructure/storagelink/action#offline
@@ -0,0 +1,7 @@
1
+ ---
2
+ type: !ruby/class String
3
+ required: false
4
+ mutable: false
5
+ default: ~
6
+ description: Human-readable description of the current state.
7
+ pattern: ~
@@ -0,0 +1,7 @@
1
+ ---
2
+ type: !ruby/class String
3
+ required: false
4
+ mutable: false
5
+ default: ~
6
+ description: Human-readable description of the current state.
7
+ pattern: ~
@@ -0,0 +1,7 @@
1
+ ---
2
+ type: !ruby/class String
3
+ required: false
4
+ mutable: false
5
+ default: ~
6
+ description: Human-readable description of the current state.
7
+ pattern: ~
@@ -8,6 +8,7 @@ attributes:
8
8
  - occi.ipreservation.address
9
9
  - occi.ipreservation.used
10
10
  - occi.ipreservation.state
11
+ - occi.ipreservation.state.message
11
12
  actions:
12
13
  - http://schemas.ogf.org/occi/infrastructure/ipreservation/action#up
13
14
  - http://schemas.ogf.org/occi/infrastructure/ipreservation/action#down
@@ -7,3 +7,4 @@ location: /securitygroup/
7
7
  attributes:
8
8
  - occi.securitygroup.rules
9
9
  - occi.securitygroup.state
10
+ - occi.securitygroup.state.message
@@ -6,3 +6,4 @@ parent: http://schemas.ogf.org/occi/core#link
6
6
  location: /link/securitygrouplink/
7
7
  attributes:
8
8
  - occi.securitygrouplink.state
9
+ - occi.securitygrouplink.state.message
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: occi-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0.beta.10
4
+ version: 5.0.0.beta.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Boris Parak
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2017-07-28 00:00:00.000000000 Z
13
+ date: 2017-07-29 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: json
@@ -492,17 +492,22 @@ files:
492
492
  - lib/occi/infrastructure/warehouse/kinds/attributes/occi.compute.hostname.yml
493
493
  - lib/occi/infrastructure/warehouse/kinds/attributes/occi.compute.memory.yml
494
494
  - lib/occi/infrastructure/warehouse/kinds/attributes/occi.compute.speed.yml
495
+ - lib/occi/infrastructure/warehouse/kinds/attributes/occi.compute.state.message.yml
495
496
  - lib/occi/infrastructure/warehouse/kinds/attributes/occi.compute.state.yml
496
497
  - lib/occi/infrastructure/warehouse/kinds/attributes/occi.network.label.yml
498
+ - lib/occi/infrastructure/warehouse/kinds/attributes/occi.network.state.message.yml
497
499
  - lib/occi/infrastructure/warehouse/kinds/attributes/occi.network.state.yml
498
500
  - lib/occi/infrastructure/warehouse/kinds/attributes/occi.network.vlan.yml
499
501
  - lib/occi/infrastructure/warehouse/kinds/attributes/occi.networkinterface.interface.yml
500
502
  - lib/occi/infrastructure/warehouse/kinds/attributes/occi.networkinterface.mac.yml
503
+ - lib/occi/infrastructure/warehouse/kinds/attributes/occi.networkinterface.state.message.yml
501
504
  - lib/occi/infrastructure/warehouse/kinds/attributes/occi.networkinterface.state.yml
502
505
  - lib/occi/infrastructure/warehouse/kinds/attributes/occi.storage.size.yml
506
+ - lib/occi/infrastructure/warehouse/kinds/attributes/occi.storage.state.message.yml
503
507
  - lib/occi/infrastructure/warehouse/kinds/attributes/occi.storage.state.yml
504
508
  - lib/occi/infrastructure/warehouse/kinds/attributes/occi.storagelink.deviceid.yml
505
509
  - lib/occi/infrastructure/warehouse/kinds/attributes/occi.storagelink.mountpoint.yml
510
+ - lib/occi/infrastructure/warehouse/kinds/attributes/occi.storagelink.state.message.yml
506
511
  - lib/occi/infrastructure/warehouse/kinds/attributes/occi.storagelink.state.yml
507
512
  - lib/occi/infrastructure/warehouse/kinds/compute.yml
508
513
  - lib/occi/infrastructure/warehouse/kinds/network.yml
@@ -542,10 +547,13 @@ files:
542
547
  - lib/occi/infrastructure_ext/warehouse/kinds/.gitkeep
543
548
  - lib/occi/infrastructure_ext/warehouse/kinds/attributes/.gitkeep
544
549
  - lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.ipreservation.address.yml
550
+ - lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.ipreservation.state.message.yml
545
551
  - lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.ipreservation.state.yml
546
552
  - lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.ipreservation.used.yml
547
553
  - lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.securitygroup.rules.yml
554
+ - lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.securitygroup.state.message.yml
548
555
  - lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.securitygroup.state.yml
556
+ - lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.securitygrouplink.state.message.yml
549
557
  - lib/occi/infrastructure_ext/warehouse/kinds/attributes/occi.securitygrouplink.state.yml
550
558
  - lib/occi/infrastructure_ext/warehouse/kinds/ipreservation.yml
551
559
  - lib/occi/infrastructure_ext/warehouse/kinds/securitygroup.yml