Spot · Schema

BillingAccount

AutoscalingCloud InfrastructureContainersCost OptimizationFinOpsKubernetesSpot Instances

Properties

Name Type Description
accountId string The Spot account identifier.
cloudProvider string The cloud provider type.
status string The setup status of the billing account.
billingAccountId string The cloud provider billing account identifier.
View JSON Schema on GitHub

JSON Schema

spot-billingaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BillingAccount",
  "title": "BillingAccount",
  "type": "object",
  "properties": {
    "accountId": {
      "type": "string",
      "description": "The Spot account identifier.",
      "example": "500123"
    },
    "cloudProvider": {
      "type": "string",
      "enum": [
        "aws",
        "azure",
        "gcp"
      ],
      "description": "The cloud provider type.",
      "example": "aws"
    },
    "status": {
      "type": "string",
      "description": "The setup status of the billing account.",
      "example": "example_value"
    },
    "billingAccountId": {
      "type": "string",
      "description": "The cloud provider billing account identifier.",
      "example": "500123"
    }
  }
}