Scaleway · Schema

scaleway.vpc.v2.Subnet

AICloud ComputingContainersDatabaseEuropean CloudInfrastructureKubernetesServerlessStorage

Properties

Name Type Description
id string ID of the subnet. (UUID format)
created_at string Subnet creation date. (RFC 3339 format)
updated_at string Subnet last modification date. (RFC 3339 format)
subnet string Subnet CIDR. (IP network)
project_id string Scaleway Project the subnet belongs to. (UUID format)
private_network_id string Private Network the subnet belongs to. (UUID format)
vpc_id string VPC the subnet belongs to. (UUID format)
View JSON Schema on GitHub

JSON Schema

scaleway-scalewayvpcv2subnet-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/scaleway.vpc.v2.Subnet",
  "title": "scaleway.vpc.v2.Subnet",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of the subnet. (UUID format)",
      "example": "6170692e-7363-616c-6577-61792e636f6d"
    },
    "created_at": {
      "type": "string",
      "description": "Subnet creation date. (RFC 3339 format)",
      "format": "date-time",
      "example": "2022-03-22T12:34:56.123456Z",
      "nullable": true
    },
    "updated_at": {
      "type": "string",
      "description": "Subnet last modification date. (RFC 3339 format)",
      "format": "date-time",
      "example": "2022-03-22T12:34:56.123456Z",
      "nullable": true
    },
    "subnet": {
      "type": "string",
      "description": "Subnet CIDR. (IP network)",
      "example": "1.2.3.4/32"
    },
    "project_id": {
      "type": "string",
      "description": "Scaleway Project the subnet belongs to. (UUID format)",
      "example": "6170692e-7363-616c-6577-61792e636f6d"
    },
    "private_network_id": {
      "type": "string",
      "description": "Private Network the subnet belongs to. (UUID format)",
      "example": "6170692e-7363-616c-6577-61792e636f6d"
    },
    "vpc_id": {
      "type": "string",
      "description": "VPC the subnet belongs to. (UUID format)",
      "example": "6170692e-7363-616c-6577-61792e636f6d"
    }
  },
  "x-properties-order": [
    "id",
    "created_at",
    "updated_at",
    "subnet",
    "project_id",
    "private_network_id",
    "vpc_id"
  ]
}