AWS FSx ONTAP File Systems

Operations related to AWS FSx ONTAP file system provisioning

List available FSx ONTAP file systems.

SecurityBasic Authentication
Responses
200

List available FSx ONTAP file systems.

get/cluster-management/v2/data-sources/providers/aws/list-fsxns/v2/
Request samples
Response samples
application/json
[
  • {
    }
]

Create an FSx ONTAP file system

Create an AWS FSx ONTAP File System.

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

The ID of the cluster who's VPC this file system should share.

Responses
202

AWS FSx ONTAP File System creation requested.

post/cluster-management/v2/resources/providers/aws/fsxn/v2
Request samples
application/json
{
  • "fsxnId": "fs-0c315066d18074b67",
  • "id": "c1af59c6-ba0e-4cc2-a0f3-65cee17a5f37",
  • "providerAccountName": "MyProviderAccount",
  • "status": "RUNNING",
  • "vpcId": "vpc-05ea1ef2626686855"
}
Response samples
application/json
{
  • "fsxnId": "fs-0c315066d18074b67",
  • "id": "c1af59c6-ba0e-4cc2-a0f3-65cee17a5f37",
  • "providerAccountName": "MyProviderAccount",
  • "status": "RUNNING",
  • "vpcId": "vpc-05ea1ef2626686855"
}

Retrieve an AWS FSx ONTAP file system

Get an AWS FSx ONTAP file system.

SecurityBasic Authentication
Request
path Parameters
id
required
string <uuid>

ID of the AWS FSx ONTAP file system.

Responses
200

AWS FSx ONTAP file system retrieved.

404

AWS FSx ONTAP file system not found.

get/cluster-management/v2/resources/providers/aws/fsxn/v2/{id}
Request samples
Response samples
application/json
{
  • "fsxnId": "fs-0c315066d18074b67",
  • "id": "c1af59c6-ba0e-4cc2-a0f3-65cee17a5f37",
  • "providerAccountName": "MyProviderAccount",
  • "status": "RUNNING",
  • "vpcId": "vpc-05ea1ef2626686855"
}

Remove an AWS FSx ONTAP file system

Delete an AWS FSx ONTAP File System.

SecurityBasic Authentication
Request
path Parameters
id
required
string <uuid>

ID of the AWS FSx ONTAP file system.

Responses
204

AWS FSx ONTAP file system successfully deleted.

404

AWS FSx ONTAP file system not found

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