Microsoft.Synapse workspaces/vulnerabilityAssessments
Bicep resource definition
The workspaces/vulnerabilityAssessments resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Synapse/workspaces/vulnerabilityAssessments resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Synapse/workspaces/vulnerabilityAssessments@2021-06-01' = {
name: 'default'
parent: resourceSymbolicName
properties: {
recurringScans: {
emails: [
'string'
]
emailSubscriptionAdmins: bool
isEnabled: bool
}
storageAccountAccessKey: 'string'
storageContainerPath: 'string'
storageContainerSasKey: 'string'
}
}
Property values
workspaces/vulnerabilityAssessments
Name | Description | Value |
---|---|---|
name | The resource name See how to set names and types for child resources in Bicep. |
'default' |
parent | In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource. For more information, see Child resource outside parent resource. |
Symbolic name for resource of type: workspaces |
properties | Resource properties. | ServerVulnerabilityAssessmentProperties |
ServerVulnerabilityAssessmentProperties
Name | Description | Value |
---|---|---|
recurringScans | The recurring scans settings | VulnerabilityAssessmentRecurringScansProperties |
storageAccountAccessKey | Specifies the identifier key of the storage account for vulnerability assessment scan results. If 'StorageContainerSasKey' isn't specified, storageAccountAccessKey is required. | string |
storageContainerPath | A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/ ). |
string (required) |
storageContainerSasKey | A shared access signature (SAS Key) that has read and write access to the blob container specified in 'storageContainerPath' parameter. If 'storageAccountAccessKey' isn't specified, StorageContainerSasKey is required. | string |
VulnerabilityAssessmentRecurringScansProperties
Name | Description | Value |
---|---|---|
emails | Specifies an array of e-mail addresses to which the scan notification is sent. | string[] |
emailSubscriptionAdmins | Specifies that the schedule scan notification will be is sent to the subscription administrators. | bool |
isEnabled | Recurring scans state. | bool |
ARM template resource definition
The workspaces/vulnerabilityAssessments resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Synapse/workspaces/vulnerabilityAssessments resource, add the following JSON to your template.
{
"type": "Microsoft.Synapse/workspaces/vulnerabilityAssessments",
"apiVersion": "2021-06-01",
"name": "default",
"properties": {
"recurringScans": {
"emails": [ "string" ],
"emailSubscriptionAdmins": "bool",
"isEnabled": "bool"
},
"storageAccountAccessKey": "string",
"storageContainerPath": "string",
"storageContainerSasKey": "string"
}
}
Property values
workspaces/vulnerabilityAssessments
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.Synapse/workspaces/vulnerabilityAssessments' |
apiVersion | The resource api version | '2021-06-01' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
'default' |
properties | Resource properties. | ServerVulnerabilityAssessmentProperties |
ServerVulnerabilityAssessmentProperties
Name | Description | Value |
---|---|---|
recurringScans | The recurring scans settings | VulnerabilityAssessmentRecurringScansProperties |
storageAccountAccessKey | Specifies the identifier key of the storage account for vulnerability assessment scan results. If 'StorageContainerSasKey' isn't specified, storageAccountAccessKey is required. | string |
storageContainerPath | A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/ ). |
string (required) |
storageContainerSasKey | A shared access signature (SAS Key) that has read and write access to the blob container specified in 'storageContainerPath' parameter. If 'storageAccountAccessKey' isn't specified, StorageContainerSasKey is required. | string |
VulnerabilityAssessmentRecurringScansProperties
Name | Description | Value |
---|---|---|
emails | Specifies an array of e-mail addresses to which the scan notification is sent. | string[] |
emailSubscriptionAdmins | Specifies that the schedule scan notification will be is sent to the subscription administrators. | bool |
isEnabled | Recurring scans state. | bool |
Terraform (AzAPI provider) resource definition
The workspaces/vulnerabilityAssessments resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Synapse/workspaces/vulnerabilityAssessments resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Synapse/workspaces/vulnerabilityAssessments@2021-06-01"
name = "default"
parent_id = "string"
body = jsonencode({
properties = {
recurringScans = {
emails = [
"string"
]
emailSubscriptionAdmins = bool
isEnabled = bool
}
storageAccountAccessKey = "string"
storageContainerPath = "string"
storageContainerSasKey = "string"
}
})
}
Property values
workspaces/vulnerabilityAssessments
Name | Description | Value |
---|---|---|
type | The resource type | "Microsoft.Synapse/workspaces/vulnerabilityAssessments@2021-06-01" |
name | The resource name | "default" |
parent_id | The ID of the resource that is the parent for this resource. | ID for resource of type: workspaces |
properties | Resource properties. | ServerVulnerabilityAssessmentProperties |
ServerVulnerabilityAssessmentProperties
Name | Description | Value |
---|---|---|
recurringScans | The recurring scans settings | VulnerabilityAssessmentRecurringScansProperties |
storageAccountAccessKey | Specifies the identifier key of the storage account for vulnerability assessment scan results. If 'StorageContainerSasKey' isn't specified, storageAccountAccessKey is required. | string |
storageContainerPath | A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/ ). |
string (required) |
storageContainerSasKey | A shared access signature (SAS Key) that has read and write access to the blob container specified in 'storageContainerPath' parameter. If 'storageAccountAccessKey' isn't specified, StorageContainerSasKey is required. | string |
VulnerabilityAssessmentRecurringScansProperties
Name | Description | Value |
---|---|---|
emails | Specifies an array of e-mail addresses to which the scan notification is sent. | string[] |
emailSubscriptionAdmins | Specifies that the schedule scan notification will be is sent to the subscription administrators. | bool |
isEnabled | Recurring scans state. | bool |