Module netapp_ontap.resources.fc_login
Copyright © 2019 NetApp Inc. All rights reserved.
Overview
Fibre Channel (FC) logins represent connections formed by FC initiators that have successfully logged in to ONTAP. This represents the FC login on which higher-level protocols such as Fibre Channel Protocol and NVMe over FC (NVMe/FC) rely.
The Fibre Channel logins REST API provides information about active FC logins.
Examples
Retrieving all FC logins
# The API:
GET /api/network/fc/logins
# The call:
curl -X GET "https://<mgmt-ip>/api/network/fc/logins" -H "accept: application/hal+json"
# The response:
{
"records": [
{
"svm": {
"uuid": "056403da-83a7-4b13-bc78-6a93e8ea3596",
"name": "svm1",
"_links": {
"self": {
"href": "/api/svm/svms/056403da-83a7-4b13-bc78-6a93e8ea3596"
}
}
},
"interface": {
"uuid": "01056403-1383-bc4b-786a-93e8ea35969d",
"name": "lif1",
"_links": {
"self": {
"href": "/api/network/fc/interfaces/01056403-1383-bc4b-786a-93e8ea35969d"
}
}
},
"initiator": {
"wwpn": "8b:21:2f:07:00:00:00:00"
},
"_links": {
"self": {
"href": "/api/network/fc/logins/01056403-1383-bc4b-786a-93e8ea35969d/8b%3A21%3A2f%3A07%3A00%3A00%3A00%3A00"
}
}
},
{
"svm": {
"uuid": "056403da-83a7-4b13-bc78-6a93e8ea3596",
"name": "svm1",
"_links": {
"self": {
"href": "/api/svm/svms/056403da-83a7-4b13-bc78-6a93e8ea3596"
}
}
},
"interface": {
"uuid": "02056403-1383-bc4b-786a-93e8ea35969d",
"name": "lif2",
"_links": {
"self": {
"href": "/api/network/fc/interfaces/02056403-1383-bc4b-786a-93e8ea35969d"
}
}
},
"initiator": {
"wwpn": "8c:21:2f:07:00:00:00:00"
},
"_links": {
"self": {
"href": "/api/network/fc/logins/02056403-1383-bc4b-786a-93e8ea35969d/8c%3A21%3A2f%3A07%3A00%3A00%3A00%3A00"
}
}
},
{
"svm": {
"uuid": "156403da-83a7-4b13-bc78-6a93e8ea3596",
"name": "svm2",
"_links": {
"self": {
"href": "/api/svm/svms/156403da-83a7-4b13-bc78-6a93e8ea3596"
}
}
},
"interface": {
"uuid": "03056403-1383-bc4b-786a-93e8ea35969d",
"name": "lif3",
"_links": {
"self": {
"href": "/api/network/fc/interfaces/00056403-1383-bc4b-786a-93e8ea35969d"
}
}
},
"initiator": {
"wwpn": "8a:21:2f:07:00:00:00:00"
},
"_links": {
"self": {
"href": "/api/network/fc/logins/00056403-1383-bc4b-786a-93e8ea35969d/8a%3A21%3A2f%3A07%3A00%3A00%3A00%3A00"
}
}
}
],
"num_records": 3,
"_links": {
"self": {
"href": "/api/network/fc/logins"
}
}
}
Retrieving all FC logins with data protocol fcp in SVM svm1
The svm.name
and protocol
query parameters are used to perform the query.
# The API:
GET /api/network/fc/logins
# The call:
curl -X GET "https://<mgmt-ip>/api/network/fc/logins?svm.name=svm1&protocol=fcp" -H "accept: application/hal+json"
# The response:
{
"records": [
{
"svm": {
"uuid": "056403da-83a7-4b13-bc78-6a93e8ea3596",
"name": "svm1",
"_links": {
"self": {
"href": "/api/svm/svms/056403da-83a7-4b13-bc78-6a93e8ea3596"
}
}
},
"interface": {
"uuid": "01056403-1383-bc4b-786a-93e8ea35969d",
"name": "lif2",
"_links": {
"self": {
"href": "/api/network/fc/interfaces/01056403-1383-bc4b-786a-93e8ea35969d"
}
}
},
"initiator": {
"wwpn": "8b:21:2f:07:00:00:00:00"
},
"protocol": "fcp",
"_links": {
"self": {
"href": "/api/network/fc/logins/01056403-1383-bc4b-786a-93e8ea35969d/8b%3A21%3A2f%3A07%3A00%3A00%3A00%3A00"
}
}
},
{
"svm": {
"uuid": "056403da-83a7-4b13-bc78-6a93e8ea3596",
"name": "svm1",
"_links": {
"self": {
"href": "/api/svm/svms/056403da-83a7-4b13-bc78-6a93e8ea3596"
}
}
},
"interface": {
"uuid": "02056403-1383-bc4b-786a-93e8ea35969d",
"name": "lif3",
"_links": {
"self": {
"href": "/api/network/fc/interfaces/02056403-1383-bc4b-786a-93e8ea35969d"
}
}
},
"initiator": {
"wwpn": "8c:21:2f:07:00:00:00:00"
},
"protocol": "fcp",
"_links": {
"self": {
"href": "/api/network/fc/logins/02056403-1383-bc4b-786a-93e8ea35969d/8c%3A21%3A2f%3A07%3A00%3A00%3A00%3A00"
}
}
}
],
"num_records": 2,
"_links": {
"self": {
"href": "/api/network/fc/logins?svm.name=svm1&protocol=fcp"
}
}
}
Retrieving all FC logins for initiators belonging to igroup1 and returning all of their properties
The igroups.name
query parameter is used to perform the query. The fields
query parameter is used to return all of the properties.
# The API:
GET /api/network/fc/logins
# The call:
curl -X GET "https://<mgmt-ip>/api/network/fc/logins?igroups.name=igroup1&fields=*" -H "accept: application/hal+json"
# The response:
{
"records": [
{
"svm": {
"uuid": "056403da-83a7-4b13-bc78-6a93e8ea3596",
"name": "svm1",
"_links": {
"self": {
"href": "/api/svm/svms/056403da-83a7-4b13-bc78-6a93e8ea3596"
}
}
},
"interface": {
"uuid": "01056403-1383-bc4b-786a-93e8ea35969d",
"name": "lif2",
"wwpn": "8b:21:2f:07:00:00:00:00",
"_links": {
"self": {
"href": "/api/network/fc/interfaces/01056403-1383-bc4b-786a-93e8ea35969d"
}
}
},
"initiator": {
"wwpn": "8b:21:2f:07:00:00:00:00",
"wwnn": "95:21:2f:07:00:00:00:00"
},
"igroups": [
{
"uuid": "243bbb8a-46e9-4b2d-a508-a62dc93df9d1",
"name": "igroup1",
"_links": {
"self": {
"href": "/api/protocols/san/igroups/243bbb8a-46e9-4b2d-a508-a62dc93df9d1"
}
}
}
],
"port_address": "8aa53",
"protocol": "fcp",
"_links": {
"self": {
"href": "/api/network/fc/logins/01056403-1383-bc4b-786a-93e8ea35969d/8b%3A21%3A2f%3A07%3A00%3A00%3A00%3A00"
}
}
}
],
"num_records": 1,
"_links": {
"self": {
"href": "/api/network/fc/logins?igroups.name=igroup1&fields=*"
}
}
}
Classes
class FcLogin (*args, **kwargs)
-
A Fibre Channel (FC) login represents a connection formed by an FC initiator that has successfully logged in to ONTAP. This represents the FC login on which higher-level protocols such as Fibre Channel Protocol and NVMe over Fibre Channel (NVMe/FC) rely.
Initialize the instance of the resource.
Any keyword arguments are set on the instance as properties. For example, if the class was named 'MyResource', then this statement would be true:
MyResource(name='foo').name == 'foo'
Args
*args
- Each positional argument represents a parent key as used in the URL of the object. That is, each value will be used to fill in a segment of the URL which refers to some parent object. The order of these arguments must match the order they are specified in the URL, from left to right.
**kwargs
- each entry will have its key set as an attribute name on the instance and its value will be the value of that attribute.
Ancestors
Static methods
def find(*args, connection: HostConnection = None, **kwargs) -> Resource
-
Retrieves FC logins.
Related ONTAP commands
vserver fcp initiator show
Learn more
- SAN:
DOC /network/fc/logins
- NVMe:
DOC /network/fc/logins
Find an instance of an object on the host given a query.
The host will be queried with the provided key/value pairs to find a matching resource. If 0 are found or if more than 1 is found, an error will be raised or returned. If there is exactly 1 matching record, then it will be returned.
Args
*args
- Each entry represents a parent key which is used to build the path to the child object. If the URL definition were /api/foos/{foo.name}/bars, then to find a bar for a particular foo, the foo.name value should be passed.
connection
- The
HostConnection
object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context. **kwargs
- Any key/value pairs passed will be sent as query parameters to the host.
Returns
A
Resource
object containing the details of the object.Raises
NetAppRestError
: If the API call did not return exactly 1 matching resource. def get_collection(*args, connection: HostConnection = None, max_records: int = None, **kwargs) -> typing.Iterable
-
Retrieves FC logins.
Related ONTAP commands
vserver fcp initiator show
Learn more
- SAN:
DOC /network/fc/logins
- NVMe:
DOC /network/fc/logins
Fetch a list of all objects of this type from the host.
Args
*args
- Each entry represents a parent key which is used to build the path to the child object. If the URL definition were /api/foos/{foo.name}/bars, then to get the collection of bars for a particular foo, the foo.name value should be passed.
connection
- The
HostConnection
object to use for this API call. If unset, tries to use the connection which is set globally for the library or from the current context. max_records
- The maximum number of records to return per call
**kwargs
- Any key/value pairs passed will be sent as query parameters to the host.
Returns
A list of
Resource
objectsRaises
NetAppRestError
: If there is no connection available to use either passed in or on the library.
Methods
def get(self, **kwargs) -> NetAppResponse
-
Retrieves an FC login.
Related ONTAP commands
vserver fcp initiator show
Learn more
- SAN:
DOC /network/fc/logins
- NVMe:
DOC /network/fc/logins
Fetch the details of the object from the host.
Requires the keys to be set (if any). After returning, new or changed properties from the host will be set on the instance.
Returns
A
NetAppResponse
object containing the details of the HTTP response.Raises
NetAppRestError
: If the API call returned a status code >= 400
Inherited members
class FcLoginSchema (only=None, exclude=(), many=False, context=None, load_only=(), dump_only=(), partial=False, unknown=None)
-
The fields of the FcLogin object
Ancestors
- netapp_ontap.resource.ResourceSchema
- marshmallow.schema.Schema
- marshmallow.schema.BaseSchema
- marshmallow.base.SchemaABC
Class variables
var igroups
-
The initiator groups in which the initiator is a member.
var initiator
-
The initiator field of the fc_login.
var interface
-
The interface field of the fc_login.
var links
-
The links field of the fc_login.
var opts
var protocol
-
The data protocol used to perform the login.
Valid choices:
- fc_nvme
- fcp
var svm
-
The svm field of the fc_login.