Retrieve an FC fabric zone
- PDF of this doc site
Collection of separate PDF docs
Creating your file...
GET /network/fc/fabrics/{fabric.name}/zones/{name}
Introduced In: 9.11
Retrieves a zone of the active zoneset of a Fibre Channel fabric.
Expensive properties
There is an added computational cost to retrieving values for these properties. They are not included by default in GET results and must be explicitly requested using the fields
query parameter. See Requesting specific fields to learn more.
-
members
Related ONTAP commands
-
network fcp zone show
Learn more
Parameters
Name | Type | In | Required | Description |
---|---|---|---|---|
cache.maximum_age |
string |
query |
False |
The maximum age of data in the Fibre Channel fabric cache before it should be refreshed from the fabric. The default is 15 minutes.
|
fields |
array[string] |
query |
False |
Specify the fields to return. |
Response
Status: 200, Ok
Name | Type | Description |
---|---|---|
_links |
||
cache |
Properties of Fibre Chanel fabric cache. |
|
fabric |
A reference to a Fibre Channel fabric. |
|
members |
array[members] |
An array of Fibre Channel zone members. |
name |
string |
The name of the Fibre Channel zone. |
Example response
{
"_links": {
"self": {
"href": "/api/resourcelink"
}
},
"cache": {
"age": "PT3M30S",
"update_time": "string"
},
"fabric": {
"_links": {
"self": {
"href": "/api/resourcelink"
}
},
"name": "10:00:d1:d2:d3:d4:d5:d6"
},
"members": [
{
"name": "10:00:12:34:56:78:9a:bc",
"type": "port_name"
}
],
"name": "zone1"
}
Error
Status: Default
ONTAP Error Response Codes
Error Code | Description |
---|---|
5375053 |
The Fibre Channel fabric specified by name in the request URI was not found in the FC fabric cache. |
Name | Type | Description |
---|---|---|
error |
Example error
{
"error": {
"arguments": [
{
"code": "string",
"message": "string"
}
],
"code": "4",
"message": "entry doesn't exist",
"target": "uuid"
}
}
Definitions
See Definitions
href
Name | Type | Description |
---|---|---|
href |
string |
_links
Name | Type | Description |
---|---|---|
self |
cache
Properties of Fibre Chanel fabric cache.
Name | Type | Description |
---|---|---|
age |
string |
The age of the Fibre Channel fabric data cache retrieved. If the FC fabric data cache has not been fully updated for a newly discovered fabric, or a fabric that has been re-discovered after being purged, a value for this property will not be retrieved. The value is in ISO 8601 duration format. |
is_current |
boolean |
A boolean that indicates if the retrieved data is current relative to the |
update_time |
string |
The date and time at which the Fibre Channel fabric data cache retrieved was last updated. If the FC fabric data cache has not been fully updated for a newly discovered fabric, or a fabric that has been re-discovered after being purged, a value for this property will not be retrieved. |
fabric
A reference to a Fibre Channel fabric.
Name | Type | Description |
---|---|---|
_links |
||
name |
string |
The world wide name (WWN) of the primary switch of the Fibre Channel (FC) fabric. This is used as a unique identifier for the FC fabric. |
members
A Fibre Channel zone member.
Name | Type | Description |
---|---|---|
name |
string |
The identifying property value of the zone member. The format of this value depends on the member type:
# The following types might not report a name:
|
type |
string |
The type of Fibre Channel zone member. This value should be used to interpret the contents of the |
error_arguments
Name | Type | Description |
---|---|---|
code |
string |
Argument code |
message |
string |
Message argument |
error
Name | Type | Description |
---|---|---|
arguments |
array[error_arguments] |
Message arguments |
code |
string |
Error code |
message |
string |
Error message |
target |
string |
The target parameter that caused the error. |