occi-core 5.0.0.beta.13 → 5.0.0.beta.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0ba70af71d28f630d26bd15b7d246c3538135281
4
- data.tar.gz: c0b7a49461f31edede784d889f73b504bbce2ded
3
+ metadata.gz: 83d306e26641639a0b848992726e04c14f787cdc
4
+ data.tar.gz: 20c6d620598f5826f1be8fdd5b983a7139aa2e40
5
5
  SHA512:
6
- metadata.gz: 4ec18abe34016c2008ff2363796dad9a52da376135c8494cf095211b8e279cd6794dcadc115b4345a6c4abf017062abf1e33d2a11992fe085cf4c697418b8ab3
7
- data.tar.gz: 11927b07adb05e674c400cfd16bd2a72274447378de1e40c00b2c0447d6cffcb4e148b5667d3250f2f111b7c367de1e2340fb4e7a0d00961a057c4fee66f6370
6
+ metadata.gz: f7e66f446ce76219515c3ba7b96a90356986ea55d00125c86b718a516dd392d27addce2539f19ca02feda0c3867d06e57933316815adf3d2988777d15aaae189
7
+ data.tar.gz: 1f1eb32f15a178c930d59b7b288a1bdd02f4623753e837d80e450318b8c7053807cf3d683972a0db7f169d09043ca67001c38d486a704b450086ac4000ee738d
@@ -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.13'.freeze # use `nil` for production releases
6
+ STAGE_VERSION = 'beta.14'.freeze # use `nil` for production releases
7
7
 
8
8
  unless defined?(::Occi::Core::VERSION)
9
9
  VERSION = [
@@ -14,9 +14,13 @@ module Occi
14
14
  SECURITY_GROUP_LINK_KIND = 'http://schemas.ogf.org/occi/infrastructure#securitygrouplink'.freeze
15
15
 
16
16
  # Mixins
17
- AVAILABILITY_ZONE_MIXIN = 'http://schemas.ogf.org/occi/infrastructure#availability_zone'.freeze
18
- REGION_MIXIN = 'http://schemas.ogf.org/occi/infrastructure#region'.freeze
19
- FLOATINGIPPOOL_MIXIN = 'http://schemas.openstack.org/network#floatingippool'.freeze
17
+ AVAILABILITY_ZONE_MIXIN = 'http://schemas.ogf.org/occi/infrastructure#availability_zone'.freeze
18
+ REGION_MIXIN = 'http://schemas.ogf.org/occi/infrastructure#region'.freeze
19
+ FLOATINGIPPOOL_MIXIN = 'http://schemas.openstack.org/network#floatingippool'.freeze
20
+ PUBLIC_NET_MIXIN = 'http://schemas.fedcloud.egi.eu/occi/infrastructure/network#public_net'.freeze
21
+ PRIVATE_NET_MIXIN = 'http://schemas.fedcloud.egi.eu/occi/infrastructure/network#private_net'.freeze
22
+ NAT_NET_MIXIN = 'http://schemas.fedcloud.egi.eu/occi/infrastructure/network#nat_net'.freeze
23
+ DEFAULT_CONNECT_MIXIN = 'http://schemas.fedcloud.egi.eu/occi/infrastructure/compute#default_connectivity'.freeze
20
24
  end
21
25
  end
22
26
  end
@@ -0,0 +1,7 @@
1
+ ---
2
+ type: !ruby/class String
3
+ required: false
4
+ mutable: false
5
+ default: ~
6
+ description: Default connectivity for new compute instances.
7
+ pattern: !ruby/regexp '/^(public|private|nat)$/'
@@ -0,0 +1,9 @@
1
+ ---
2
+ term: default_connectivity
3
+ schema: http://schemas.fedcloud.egi.eu/occi/infrastructure/compute#
4
+ title: OCCI Default Connectivity mixin
5
+ attributes:
6
+ - eu.egi.fedcloud.compute.default_connectivity
7
+ location: /mixin/default_connectivity/
8
+ applies:
9
+ - http://schemas.ogf.org/occi/infrastructure#compute
@@ -0,0 +1,7 @@
1
+ ---
2
+ term: nat_net
3
+ schema: http://schemas.fedcloud.egi.eu/occi/infrastructure/network#
4
+ title: OCCI NAT Network mixin
5
+ location: /mixin/nat_net/
6
+ applies:
7
+ - http://schemas.ogf.org/occi/infrastructure#network
@@ -0,0 +1,7 @@
1
+ ---
2
+ term: private_net
3
+ schema: http://schemas.fedcloud.egi.eu/occi/infrastructure/network#
4
+ title: OCCI Private Network mixin
5
+ location: /mixin/private_net/
6
+ applies:
7
+ - http://schemas.ogf.org/occi/infrastructure#network
@@ -0,0 +1,7 @@
1
+ ---
2
+ term: public_net
3
+ schema: http://schemas.fedcloud.egi.eu/occi/infrastructure/network#
4
+ title: OCCI Public Network mixin
5
+ location: /mixin/public_net/
6
+ applies:
7
+ - http://schemas.ogf.org/occi/infrastructure#network
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.13
4
+ version: 5.0.0.beta.14
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-08-01 00:00:00.000000000 Z
13
+ date: 2017-08-02 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: json
@@ -561,6 +561,11 @@ files:
561
561
  - lib/occi/infrastructure_ext/warehouse/kinds/securitygrouplink.yml
562
562
  - lib/occi/infrastructure_ext/warehouse/mixins/.gitkeep
563
563
  - lib/occi/infrastructure_ext/warehouse/mixins/attributes/.gitkeep
564
+ - lib/occi/infrastructure_ext/warehouse/mixins/attributes/eu.egi.fedcloud.compute.default_connectivity.yml
565
+ - lib/occi/infrastructure_ext/warehouse/mixins/default_connectivity.yml
566
+ - lib/occi/infrastructure_ext/warehouse/mixins/nat_net.yml
567
+ - lib/occi/infrastructure_ext/warehouse/mixins/private_net.yml
568
+ - lib/occi/infrastructure_ext/warehouse/mixins/public_net.yml
564
569
  - lib/occi/monkey_island/boolean.rb
565
570
  - lib/occi/monkey_island/hash.rb
566
571
  - occi-core.gemspec