Amazon FSx · Schema

StorageVirtualMachine

A storage virtual machine (SVM) in an Amazon FSx for NetApp ONTAP file system.

File SystemsLustreNetAppOpenZFSStorageWindows

Properties

Name Type Description
ActiveDirectoryConfiguration object Active Directory configuration for the SVM.
CreationTime string
Endpoints object Endpoints for accessing the SVM via different protocols.
FileSystemId string
Lifecycle string
Name string Name of the SVM.
ResourceARN string
StorageVirtualMachineId string
Subtype string
Tags array
UUID string
View JSON Schema on GitHub

JSON Schema

amazon-fsx-storage-virtual-machine-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-fsx/refs/heads/main/json-schema/amazon-fsx-storage-virtual-machine-schema.json",
  "title": "StorageVirtualMachine",
  "description": "A storage virtual machine (SVM) in an Amazon FSx for NetApp ONTAP file system.",
  "type": "object",
  "properties": {
    "ActiveDirectoryConfiguration": {
      "type": "object",
      "description": "Active Directory configuration for the SVM."
    },
    "CreationTime": {
      "type": "string",
      "format": "date-time"
    },
    "Endpoints": {
      "type": "object",
      "description": "Endpoints for accessing the SVM via different protocols."
    },
    "FileSystemId": {
      "type": "string"
    },
    "Lifecycle": {
      "type": "string",
      "enum": [
        "CREATED",
        "CREATING",
        "DELETING",
        "FAILED",
        "MISCONFIGURED",
        "PENDING"
      ]
    },
    "Name": {
      "type": "string",
      "description": "Name of the SVM."
    },
    "ResourceARN": {
      "type": "string"
    },
    "StorageVirtualMachineId": {
      "type": "string"
    },
    "Subtype": {
      "type": "string",
      "enum": [
        "DEFAULT",
        "DP_DESTINATION",
        "SYNC_DESTINATION",
        "SYNC_SOURCE"
      ]
    },
    "Tags": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "UUID": {
      "type": "string"
    }
  },
  "required": [
    "Name",
    "FileSystemId"
  ]
}