-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathlogical_switch_group.rb
79 lines (70 loc) · 2.55 KB
/
logical_switch_group.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# (c) Copyright 2016 Hewlett Packard Enterprise Development LP
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed
# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
# specific language governing permissions and limitations under the License.
# NOTE 1: This example requires two Scopes named "Scope1" and "Scope2" to be present in the appliance.
# NOTE 2: The api_version client should be 300 or greater if you run the examples using Scopes
my_client = {
url: ENV['ONEVIEWSDK_URL'],
user: ENV['ONEVIEWSDK_USER'],
password: ENV['ONEVIEWSDK_PASSWORD'],
api_version: 300
}
# Ensures the existence of one Logical Switch Group with room for 2 Switches with type 'Cisco Nexus 50xx'
oneview_logical_switch_group 'LogicalSwitchGroup1' do
client my_client
switch_number 2
switch_type 'Cisco Nexus 50xx'
end
# Creates LogicalSwitchGroup2 only if no Logical Switch group already created with that name
oneview_logical_switch_group 'LogicalSwitchGroup2' do
client my_client
switch_number 1
switch_type 'Cisco Nexus 50xx'
action :create_if_missing
end
# Example: Adds 'LogicalSwitchGroup1' to 'Scope1' and 'Scope2'
# Only availavle for V300 and V500
oneview_logical_switch_group 'LogicalSwitchGroup1' do
client my_client
scopes ['Scope1', 'Scope2']
action :add_to_scopes
end
# Example: Removes 'LogicalSwitchGroup1' from 'Scope1'
# Only availavle for V300 and V500
oneview_logical_switch_group 'LogicalSwitchGroup1' do
client my_client
scopes ['Scope1']
action :remove_from_scopes
end
# Example: Replaces 'Scope1' and 'Scope2' for 'LogicalSwitchGroup1'
# Only availavle for V300 and V500
oneview_logical_switch_group 'LogicalSwitchGroup1' do
client my_client
scopes ['Scope1', 'Scope2']
action :replace_scopes
end
# Example: Replaces all scopes to empty list of scopes
# Only availavle for V300 and V500
oneview_logical_switch_group 'LogicalSwitchGroup1' do
client my_client
operation 'replace'
path '/scopeUris'
value []
action :patch
end
# Deletes the logical switches groups:
# Delete action will only need the name and client
(1..2).each do |i|
oneview_logical_switch_group "Delete LogicalSwitchGroup#{i}" do
client my_client
data(name: "LogicalSwitchGroup#{i}")
action :delete
end
end