AWS FSx ONTAP Filesystem Credentials V2

Operations related to BYO AWS FSx ONTAP filesystem credentials

List BYO FSxN filesystem registrations

List all BYO FSxN filesystems registered to the account.

SecurityBasic Authentication
Responses
200

BYO FSxN filesystem registrations retrieved.

get/cluster-management/v2/resources/providers/aws/fsxn/credentials/v2
Request samples
Response samples
application/json
[
  • {
    }
]

Submit BYO FSxN filesystem admin credentials

Submit fsxadmin credentials for a BYO FSxN filesystem. Registers the filesystem to the account if not already registered.

SecurityBasic Authentication
Request
Request Body schema: application/json
required
password
required
string

Password for the filesystem-level administrative user.

filesystemId
required
string

AWS FSx filesystem ID (e.g. fs-0c315066d18074b67).

username
required
string

Username for the filesystem-level administrative user (fsxadmin role).

Responses
202

FSxN admin credential submitted successfully.

post/cluster-management/v2/resources/providers/aws/fsxn/credentials/v2
Request samples
application/json
{
  • "password": "string",
  • "filesystemId": "string",
  • "username": "string"
}
Response samples
application/json
{
  • "filesystemId": "fs-0c315066d18074b67"
}

De-register a BYO FSxN filesystem

Remove a BYO FSxN filesystem registration from the account.

SecurityBasic Authentication
Request
path Parameters
filesystemId
required
string
Responses
204

FSxN filesystem de-registered successfully.

404

FSxN filesystem not registered to this account.

delete/cluster-management/v2/resources/providers/aws/fsxn/credentials/v2/{filesystemId}
Request samples
Response samples
application/json
{
  • "errors": [
    ]
}