Snowflake · Schema

ServiceInstance

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
database_name object Database in which the service is created.
schema_name object Schema in which the service is created.
service_name object The name of the service.
service_status string The current status of the service.
instance_id string ID of the service instance (this is the index of the service instance starting from 0).
status string The current status of the service instance.
spec_digest string The unique and immutable identifier that represents the service specification content.
creation_time string The time when Snowflake started creating the service instance.
start_time string The time when Snowflake acknowledged the service instance is running on a node.
View JSON Schema on GitHub

JSON Schema

snowflake-serviceinstance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceInstance",
  "title": "ServiceInstance",
  "type": "object",
  "properties": {
    "database_name": {
      "$ref": "./common.yaml#/components/schemas/Identifier",
      "description": "Database in which the service is created.",
      "readOnly": true
    },
    "schema_name": {
      "$ref": "./common.yaml#/components/schemas/Identifier",
      "description": "Schema in which the service is created.",
      "readOnly": true
    },
    "service_name": {
      "$ref": "./common.yaml#/components/schemas/Identifier",
      "description": "The name of the service.",
      "readOnly": true
    },
    "service_status": {
      "type": "string",
      "description": "The current status of the service.",
      "readOnly": true,
      "example": "example_value"
    },
    "instance_id": {
      "type": "string",
      "description": "ID of the service instance (this is the index of the service instance starting from 0).",
      "readOnly": true,
      "example": "500123"
    },
    "status": {
      "type": "string",
      "description": "The current status of the service instance.",
      "readOnly": true,
      "example": "example_value"
    },
    "spec_digest": {
      "type": "string",
      "description": "The unique and immutable identifier that represents the service specification content.",
      "readOnly": true,
      "example": "example_value"
    },
    "creation_time": {
      "type": "string",
      "description": "The time when Snowflake started creating the service instance.",
      "readOnly": true,
      "example": "example_value"
    },
    "start_time": {
      "type": "string",
      "description": "The time when Snowflake acknowledged the service instance is running on a node.",
      "readOnly": true,
      "example": "example_value"
    }
  },
  "example": {
    "database_name": "testdb",
    "schema_name": "testschema",
    "service_name": "myservice",
    "instance_id": "0",
    "status": "PENDING",
    "spec_digest": "abcdefg",
    "creation_time": "2023-01-01 00:00:00+00:00",
    "start_time": "2023-01-01 00:00:00+00:00"
  }
}