-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathfc_network.rb
109 lines (97 loc) · 3.08 KB
/
fc_network.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# (c) Copyright 2021 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
OneviewCookbook::Helper.load_sdk(self)
my_client = {
url: ENV['ONEVIEWSDK_URL'],
user: ENV['ONEVIEWSDK_USER'],
password: ENV['ONEVIEWSDK_PASSWORD'],
api_version: 3000
}
# Example: Create and manage a new fc network
oneview_fc_network 'Fc1' do
data(
autoLoginRedistribution: true,
fabricType: 'FabricAttach'
)
client my_client
action :create
end
# Example: Create a new fc network only if it doesn't exist.
oneview_fc_network 'Fc1' do
data(
autoLoginRedistribution: true,
fabricType: 'FabricAttach',
bandwidth: {
typicalBandwidth: 2000,
maximumBandwidth: 9000
}
)
associated_san 'SAN1_0'
client my_client
action :create_if_missing
end
# This examples works only from API1800
# Example: Bulk deletes fc networks.
oneview_fc_network 'None' do
client my_client
test1 = OneviewCookbook::Helper.load_resource(my_client, type: 'FCNetwork', id: 'FcTest1')
data(
networkUris: [ test1['uri'] ]
)
action :delete_bulk
only_if { client[:api_version] >= 1800 }
end
# Example: Adds 'Fc1' to 'Scope1' and 'Scope2'
# Available only in Api300 and Api500
oneview_fc_network 'Fc1' do
client my_client
scopes ['Scope1', 'Scope2']
action :add_to_scopes
only_if { client[:api_version] == 300 || client[:api_version] == 500 }
end
# Example: Removes 'Fc1' from 'Scope1'
# Available only in Api300 and Api500
oneview_fc_network 'Fc1' do
client my_client
scopes ['Scope1']
action :remove_from_scopes
only_if { client[:api_version] == 300 || client[:api_version] == 500 }
end
# Example: Replaces 'Scope1' and 'Scope2' for 'Fc1'
# Available only in Api300 and Api500
oneview_fc_network 'Fc1' do
client my_client
scopes ['Scope1', 'Scope2']
action :replace_scopes
only_if { client[:api_version] == 300 || client[:api_version] == 500 }
end
# Example: Replaces all scopes to empty list of scopes
# Available only in Api300 and Api500
oneview_fc_network 'Fc1' do
client my_client
operation 'replace'
path '/scopeUris'
value []
action :patch
only_if { client[:api_version] == 300 || client[:api_version] == 500 }
end
# Example: Reset the connection template for a fc network
oneview_fc_network 'Fc1' do
client my_client
action :reset_connection_template
end
# Example: Delete an fc network
oneview_fc_network 'Fc1' do
client my_client
action :delete
end