Cloud Object Storage Bucket

An IBM Cloud Object Storage bucket.

Artificial IntelligenceCloudEnterpriseIBM

Properties

Name Type Description
name string The name of the bucket.
creation_date string The date the bucket was created.
location_constraint string The location constraint (e.g., us-south-standard).
storage_class string The storage class.
ibm_service_instance_id string The service instance ID that owns this bucket.
View JSON Schema on GitHub

JSON Schema

bucket.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "bucket.json",
  "title": "Cloud Object Storage Bucket",
  "description": "An IBM Cloud Object Storage bucket.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the bucket."
    },
    "creation_date": {
      "type": "string",
      "format": "date-time",
      "description": "The date the bucket was created."
    },
    "location_constraint": {
      "type": "string",
      "description": "The location constraint (e.g., us-south-standard)."
    },
    "storage_class": {
      "type": "string",
      "description": "The storage class.",
      "enum": ["standard", "vault", "cold", "smart"]
    },
    "ibm_service_instance_id": {
      "type": "string",
      "description": "The service instance ID that owns this bucket."
    }
  },
  "required": ["name"]
}