Skip to content
Closed
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
134 changes: 1 addition & 133 deletions schemas/2020-03-01/Microsoft.MachineLearningServices.json
Original file line number Diff line number Diff line change
Expand Up @@ -701,10 +701,7 @@
{
"type": "string",
"enum": [
"SystemAssigned",
"SystemAssigned,UserAssigned",
"UserAssigned",
"None"
"SystemAssigned"
]
},
{
Expand All @@ -716,44 +713,6 @@
},
"description": "Identity for the resource."
},
"IdentityModel": {
"type": "object",
"properties": {
"type": {
"oneOf": [
{
"type": "string",
"enum": [
"SystemAssigned",
"SystemAssigned,UserAssigned",
"UserAssigned",
"None"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The identity type."
},
"userAssignedIdentities": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/UserAssignedIdentity"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "dictionary containing all the user assigned identities, with resourceId of the UAI as key."
}
},
"description": "Identity for the resource."
},
"KeyVaultProperties": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -1034,11 +993,6 @@
],
"description": "Settings for user account that gets created on each on the nodes of a compute."
},
"UserAssignedIdentity": {
"type": "object",
"properties": {},
"description": "User Assigned Identity"
},
"VirtualMachine": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -1207,92 +1161,6 @@
},
"description": "The properties of a machine learning workspace."
},
"WorkspacePropertiesModel": {
"type": "object",
"properties": {
"allowPublicAccessWhenBehindVnet": {
"oneOf": [
{
"type": "boolean",
"default": false
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The flag to indicate whether to allow public access when behind VNet."
},
"applicationInsights": {
"type": "string",
"description": "ARM id of the application insights associated with this workspace. This cannot be changed once the workspace has been created"
},
"containerRegistry": {
"type": "string",
"description": "ARM id of the container registry associated with this workspace. This cannot be changed once the workspace has been created"
},
"description": {
"type": "string",
"description": "The description of this workspace."
},
"discoveryUrl": {
"type": "string",
"description": "Url for the discovery service to identify regional endpoints for machine learning experimentation services"
},
"encryption": {
"oneOf": [
{
"$ref": "#/definitions/EncryptionProperty"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
},
"friendlyName": {
"type": "string",
"description": "The friendly name for this workspace. This name in mutable"
},
"hbiWorkspace": {
"oneOf": [
{
"type": "boolean",
"default": false
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The flag to signal HBI data in the workspace and reduce diagnostic data collected by the service"
},
"imageBuildCompute": {
"type": "string",
"description": "The compute name for image build"
},
"keyVault": {
"type": "string",
"description": "ARM id of the key vault associated with this workspace. This cannot be changed once the workspace has been created"
},
"sharedPrivateLinkResources": {
"oneOf": [
{
"type": "array",
"items": {
"$ref": "#/definitions/SharedPrivateLinkResource"
}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The list of shared private link resources in this workspace."
},
"storageAccount": {
"type": "string",
"description": "ARM id of the storage account associated with this workspace. This cannot be changed once the workspace has been created"
}
},
"description": "The properties of a machine learning workspace."
},
"workspaces_computes_childResource": {
"type": "object",
"properties": {
Expand Down
27 changes: 27 additions & 0 deletions schemas/2020-09-01-preview/Microsoft.MachineLearningServices.json
Original file line number Diff line number Diff line change
Expand Up @@ -1758,11 +1758,38 @@
"LinkedServiceProps": {
"type": "object",
"properties": {
"createdTime": {
"type": "string",
"format": "date-time",
"description": "The creation time of the linked service."
},
"linkedServiceResourceId": {
"type": "string",
"description": "ResourceId of the link target of the linked service."
},
"linkType": {
"oneOf": [
{
"type": "string",
"enum": [
"Synapse"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Type of the link target."
},
"modifiedTime": {
"type": "string",
"format": "date-time",
"description": "The last modified time of the linked service."
}
},
"required": [
"linkedServiceResourceId"
],
"description": "LinkedService specific properties."
},
"Model": {
Expand Down