This repository was archived by the owner on Oct 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathfc_networks.py
111 lines (95 loc) · 3.95 KB
/
fc_networks.py
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
110
111
# -*- coding: utf-8 -*-
###
# (C) Copyright (2012-2017) Hewlett Packard Enterprise Development LP
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
###
from pprint import pprint
from hpOneView.oneview_client import OneViewClient
from hpOneView.exceptions import HPOneViewException
from config_loader import try_load_from_file
config = {
"ip": "",
"credentials": {
"userName": "",
"password": ""
},
}
options = {
"name": "fc_test",
"connectionTemplateUri": None,
"autoLoginRedistribution": True,
"fabricType": "FabricAttach",
"linkStabilityTime": 30,
}
# Scope name to perform the patch operation
scope_name = "sample"
# Try load config from a file (if there is a config file)
config = try_load_from_file(config)
oneview_client = OneViewClient(config)
# Create a FcNetWork with the options provided
try:
fc_network = oneview_client.fc_networks.create(data=options)
print("\nCreated a fc-network with name: '%s'.\n uri = '%s'" % (fc_network.data['name'], fc_network.data['uri']))
except HPOneViewException, e:
print(e[0])
# Find recently created network by name
fc_network = oneview_client.fc_networks.get_by_name(options['name'])
print("\nFound fc-network by name: '%s'.\n uri = '%s'" % (fc_network.data['name'], fc_network.data['uri']))
# Update autoLoginRedistribution from recently created network
data_to_update = {'autoLoginRedistribution': False,
'name': 'Updated FC'}
resource = fc_network.update(data=data_to_update)
print("\nUpdated fc-network '%s' successfully.\n uri = '%s'" % (resource.data['name'], resource.data['uri']))
print(" with attribute {'autoLoginRedistribution': %s}" % resource.data['autoLoginRedistribution'])
# Get all, with defaults
print("\nGet all fc-networks")
fc_nets = fc_network.get_all()
pprint(fc_nets)
# Filter by name
print("\nGet all fc-networks filtering by name")
fc_nets_filtered = fc_network.get_all(filter="\"'name'='Updated FC'\"")
pprint(fc_nets_filtered)
# Get all sorting by name descending
print("\nGet all fc-networks sorting by name")
fc_nets_sorted = fc_network.get_all(sort='name:descending')
pprint(fc_nets_sorted)
# Get the first 10 records
print("\nGet the first ten fc-networks")
fc_nets_limited = fc_network.get_all(0, 10)
pprint(fc_nets_limited)
# Get by uri
print("\nGet a fc-network by uri")
fc_nets_by_uri = fc_network.get_by_uri(resource.data['uri'])
pprint(fc_nets_by_uri.data)
# Adds ethernet to scope defined
if scope_name:
print("\nGet scope then add the network to it")
scope = oneview_client.scopes.get_by_name(scope_name) # TODO: This has to updated
try:
fc_with_scope = fc_network.patch(resource.data['uri'],
'replace',
'/scopeUris',
[scope['uri']])
pprint(fc_with_scope)
except HPOneViewException, e:
print(e)
# Delete the created network
fc_network.delete()
print("\nSuccessfully deleted fc-network")