From b2b30ad0ed47caba6926d8678a3523586113ed74 Mon Sep 17 00:00:00 2001 From: SDK Automation Date: Wed, 2 Sep 2020 18:38:48 +0000 Subject: [PATCH] Generated from 454953da6fc5ff43b068e131f9b12b3955b2684e make the new properties optional --- .../Microsoft.MachineLearningServices.json | 134 +----------------- .../Microsoft.MachineLearningServices.json | 27 ++++ 2 files changed, 28 insertions(+), 133 deletions(-) diff --git a/schemas/2020-03-01/Microsoft.MachineLearningServices.json b/schemas/2020-03-01/Microsoft.MachineLearningServices.json index 5b0dafea34..7f31b076db 100644 --- a/schemas/2020-03-01/Microsoft.MachineLearningServices.json +++ b/schemas/2020-03-01/Microsoft.MachineLearningServices.json @@ -701,10 +701,7 @@ { "type": "string", "enum": [ - "SystemAssigned", - "SystemAssigned,UserAssigned", - "UserAssigned", - "None" + "SystemAssigned" ] }, { @@ -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": { @@ -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": { @@ -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": { diff --git a/schemas/2020-09-01-preview/Microsoft.MachineLearningServices.json b/schemas/2020-09-01-preview/Microsoft.MachineLearningServices.json index f0fab8806f..76f5f5ec04 100644 --- a/schemas/2020-09-01-preview/Microsoft.MachineLearningServices.json +++ b/schemas/2020-09-01-preview/Microsoft.MachineLearningServices.json @@ -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": {