Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,15 @@
"containerRegistry": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry",
"keyVault": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv",
"applicationInsights": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights",
"storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount"
"storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount",
"encryption": {
"status": "Enabled",
"keyVaultProperties": {
"keyIdentifier": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv/keys/testkey/aabbccddee112233445566778899aabb",
"identityClientId": ""
}
},
"hbiWorkspace": false
}
}
},
Expand All @@ -39,7 +47,15 @@
"discoveryUrl": "http://example.com",
"creationTime": "2017-03-01T23:14:37.0707808Z",
"friendlyName": "HelloName",
"description": "test description"
"description": "test description",
"encryption": {
"status": "Enabled",
"keyVaultProperties": {
"keyIdentifier": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv/keys/testkey/aabbccddee112233445566778899aabb",
"identityClientId": ""
}
},
"hbiWorkspace": false
}
}
},
Expand All @@ -61,7 +77,15 @@
"discoveryUrl": "http://example.com",
"creationTime": "2017-03-01T23:14:37.0707808Z",
"friendlyName": "HelloName",
"description": "test description"
"description": "test description",
"encryption": {
"status": "Enabled",
"keyVaultProperties": {
"keyIdentifier": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv/keys/testkey/aabbccddee112233445566778899aabb",
"identityClientId": ""
}
},
"hbiWorkspace": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,15 @@
"discoveryUrl": "http://example.com",
"creationTime": "2017-03-01T23:14:37.0707808Z",
"friendlyName": "HelloName",
"description": "test description"
"description": "test description",
"encryption": {
"status": "Enabled",
"keyVaultProperties": {
"keyIdentifier": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv/keys/testkey/aabbccddee112233445566778899aabb",
"identityClientId": ""
}
},
"hbiWorkspace": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1452,6 +1452,15 @@
},
"readOnly": true,
"description": "The current deployment state of workspace resource. The provisioningState is to indicate states for resource provisioning."
},
"encryption": {
"$ref": "#/definitions/EncryptionProperty",
"description": "The encryption settings of Azure ML workspace."
},
"hbiWorkspace": {
"type": "boolean",
"description": "The flag to signal HBI data in the workspace and reduce diagnostic data collected by the service",
"default": false
}
}
},
Expand Down Expand Up @@ -3182,6 +3191,40 @@
}
},
"description": "Properties of a private link resource."
}
},
"EncryptionProperty": {
"type": "object",
"properties": {
"status": {
"description": "Indicates whether or not the encryption is enabled for the workspace.",
"enum": [
"Enabled",
"Disabled"
],
"type": "string",
"x-ms-enum": {
"name": "EncryptionStatus",
"modelAsString": true
}
},
"keyVaultProperties": {
"$ref": "#/definitions/KeyVaultProperties",
"description": "Customer Key vault properties."
}
}
},
"KeyVaultProperties": {
"type": "object",
"properties": {
"keyIdentifier": {
"description": "Key vault uri to access the encryption key.",
"type": "string"
},
"identityClientId": {
"description": "For future use - The client id of the identity which will be used to access key vault.",
"type": "string"
}
}
}
}
}