Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
160 changes: 150 additions & 10 deletions schemas/2019-06-01-preview/Microsoft.Synapse.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
"name": {
"type": "string",
"description": "The name of the privateLinkHub"
"description": "Name of the privateLinkHub"
},
"properties": {
"oneOf": [
Expand Down Expand Up @@ -118,6 +118,9 @@
{
"$ref": "#/definitions/workspaces_administrators_childResource"
},
{
"$ref": "#/definitions/workspaces_sqlAdministrators_childResource"
},
{
"$ref": "#/definitions/workspaces_managedIdentitySqlControlSettings_childResource"
},
Expand Down Expand Up @@ -403,6 +406,17 @@
"type": "string",
"description": "The name of the private endpoint connection."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/PrivateEndpointConnectionProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Properties of a private endpoint connection."
},
"type": {
"type": "string",
"enum": [
Expand All @@ -413,10 +427,57 @@
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.Synapse/workspaces/privateEndpointConnections"
},
"workspaces_sqlAdministrators": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2019-06-01-preview"
]
},
"name": {
"oneOf": [
{
"type": "string",
"pattern": "^.*/activeDirectory$"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/AadAdminProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Workspace active directory administrator properties"
},
"type": {
"type": "string",
"enum": [
"Microsoft.Synapse/workspaces/sqlAdministrators"
]
}
},
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.Synapse/workspaces/sqlAdministrators"
},
"workspaces_sqlPools": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -2414,14 +2475,25 @@
}
],
"description": "Indicates whether the metadata sync is enabled or disabled"
},
"syncIntervalInMinutes": {
"oneOf": [
{
"type": "integer"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The Sync Interval in minutes."
}
},
"description": "Metadata Sync Config properties"
},
"PrivateEndpoint": {
"type": "object",
"properties": {},
"description": "Private Endpoint"
"description": "Private endpoint details"
},
"PrivateEndpointConnection": {
"type": "object",
Expand All @@ -2435,9 +2507,10 @@
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Private Endpoint Connection Properties"
"description": "Properties of a private endpoint connection."
}
}
},
"description": "A private endpoint connection"
},
"PrivateEndpointConnectionProperties": {
"type": "object",
Expand All @@ -2451,7 +2524,7 @@
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Private Endpoint"
"description": "Private endpoint details"
},
"privateLinkServiceConnectionState": {
"oneOf": [
Expand All @@ -2462,20 +2535,34 @@
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Private Link Service Connection State"
"description": "Connection state details of the private endpoint"
}
},
"description": "Private Endpoint Connection Properties"
"description": "Properties of a private endpoint connection."
},
"PrivateLinkHubProperties": {
"type": "object",
"properties": {},
"properties": {
"provisioningState": {
"type": "string",
"description": "PrivateLinkHub provisioning state"
}
},
"description": "PrivateLinkHub properties"
},
"PrivateLinkServiceConnectionState": {
"type": "object",
"properties": {},
"description": "Private Link Service Connection State"
"properties": {
"description": {
"type": "string",
"description": "The private link service connection description."
},
"status": {
"type": "string",
"description": "The private link service connection status."
}
},
"description": "Connection state details of the private endpoint"
},
"SecretBase": {
"type": "object",
Expand Down Expand Up @@ -3323,6 +3410,17 @@
"type": "string",
"description": "The name of the private endpoint connection."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/PrivateEndpointConnectionProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Properties of a private endpoint connection."
},
"type": {
"type": "string",
"enum": [
Expand All @@ -3333,10 +3431,52 @@
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.Synapse/workspaces/privateEndpointConnections"
},
"workspaces_sqlAdministrators_childResource": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2019-06-01-preview"
]
},
"name": {
"type": "string",
"enum": [
"activeDirectory"
]
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/AadAdminProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Workspace active directory administrator properties"
},
"type": {
"type": "string",
"enum": [
"sqlAdministrators"
]
}
},
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.Synapse/workspaces/sqlAdministrators"
},
"workspaces_sqlPools_auditingSettings_childResource": {
"type": "object",
"properties": {
Expand Down
Loading