SqlDatabaseProperties

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
environment string
application string
provisioningState object
status object
database string
server string
port integer
username string
resources array
secrets object
recipe object
resourceProvisioning object
View JSON Schema on GitHub

JSON Schema

application-research-sqldatabaseproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SqlDatabaseProperties",
  "title": "SqlDatabaseProperties",
  "type": "object",
  "properties": {
    "environment": {
      "type": "string"
    },
    "application": {
      "type": "string"
    },
    "provisioningState": {
      "$ref": "#/components/schemas/ProvisioningState",
      "readOnly": true
    },
    "status": {
      "$ref": "#/components/schemas/ResourceStatus",
      "readOnly": true
    },
    "database": {
      "type": "string"
    },
    "server": {
      "type": "string"
    },
    "port": {
      "type": "integer",
      "format": "int32"
    },
    "username": {
      "type": "string"
    },
    "resources": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ResourceReference"
      }
    },
    "secrets": {
      "$ref": "#/components/schemas/SqlDatabaseSecrets"
    },
    "recipe": {
      "$ref": "#/components/schemas/Recipe"
    },
    "resourceProvisioning": {
      "$ref": "#/components/schemas/ResourceProvisioning"
    }
  },
  "required": [
    "environment"
  ]
}