Skip to main content

Retrieve an FPolicy persistent store configuration for an SVM

Contributors

GET /protocols/fpolicy/{svm.uuid}/persistent-stores/{name}

Introduced In: 9.14

Retrieves a specific FPolicy persistent store configuration for an SVM.

  • fpolicy persistent-store show

Parameters

Name Type In Required Description

name

string

path

True

svm.uuid

string

path

True

UUID of the SVM to which this object belongs.

fields

array[string]

query

False

Specify the fields to return.

Response

Status: 200, Ok
Name Type Description

name

string

The name specified for the FPolicy persistent store.

svm

svm

volume

string

The specified volume to store the events for the FPolicy persistent store.

Example response
{
  "name": "ps1",
  "svm": {
    "uuid": "string"
  },
  "volume": "psvol"
}

Error

Status: Default, Error
Name Type Description

error

returned_error

Example error
{
  "error": {
    "arguments": {
      "code": "string",
      "message": "string"
    },
    "code": "4",
    "message": "entry doesn't exist",
    "target": "uuid"
  }
}

Definitions

See Definitions

svm

Name Type Description

uuid

string

SVM UUID

error_arguments

Name Type Description

code

string

Argument code

message

string

Message argument

returned_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.