Microsoft.Compute galleries/inVMAccessControlProfiles 2024-03-03
Bicep resource definition
The galleries/inVMAccessControlProfiles 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.Compute/galleries/inVMAccessControlProfiles resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Compute/galleries/inVMAccessControlProfiles@2024-03-03' = {
parent: resourceSymbolicName
location: 'string'
name: 'string'
properties: {
applicableHostEndpoint: 'string'
description: 'string'
osType: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property values
GalleryInVMAccessControlProfileProperties
Name | Description | Value |
---|---|---|
applicableHostEndpoint | This property allows you to specify the Endpoint type for which this profile is defining the access control for. Possible values are: 'WireServer' or 'IMDS' | 'IMDS' 'WireServer' (required) |
description | The description of this gallery inVMAccessControlProfile resources. This property is updatable. | string |
osType | This property allows you to specify the OS type of the VMs/VMSS for which this profile can be used against. Possible values are: 'Windows' or 'Linux' | 'Linux' 'Windows' (required) |
Microsoft.Compute/galleries/inVMAccessControlProfiles
Name | Description | Value |
---|---|---|
location | Resource location | string (required) |
name | The resource name | string Constraints: Max length = Pattern = ^[a-zA-Z0-9]+([-._]?[a-zA-Z0-9]+)*$ (required) |
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: galleries |
properties | Describes the properties of a gallery inVMAccessControlProfile. | GalleryInVMAccessControlProfileProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
ResourceTags
Name | Description | Value |
---|
ARM template resource definition
The galleries/inVMAccessControlProfiles 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.Compute/galleries/inVMAccessControlProfiles resource, add the following JSON to your template.
{
"type": "Microsoft.Compute/galleries/inVMAccessControlProfiles",
"apiVersion": "2024-03-03",
"name": "string",
"location": "string",
"properties": {
"applicableHostEndpoint": "string",
"description": "string",
"osType": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property values
GalleryInVMAccessControlProfileProperties
Name | Description | Value |
---|---|---|
applicableHostEndpoint | This property allows you to specify the Endpoint type for which this profile is defining the access control for. Possible values are: 'WireServer' or 'IMDS' | 'IMDS' 'WireServer' (required) |
description | The description of this gallery inVMAccessControlProfile resources. This property is updatable. | string |
osType | This property allows you to specify the OS type of the VMs/VMSS for which this profile can be used against. Possible values are: 'Windows' or 'Linux' | 'Linux' 'Windows' (required) |
Microsoft.Compute/galleries/inVMAccessControlProfiles
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2024-03-03' |
location | Resource location | string (required) |
name | The resource name | string Constraints: Max length = Pattern = ^[a-zA-Z0-9]+([-._]?[a-zA-Z0-9]+)*$ (required) |
properties | Describes the properties of a gallery inVMAccessControlProfile. | GalleryInVMAccessControlProfileProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.Compute/galleries/inVMAccessControlProfiles' |
ResourceTags
Name | Description | Value |
---|
Terraform (AzAPI provider) resource definition
The galleries/inVMAccessControlProfiles 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.Compute/galleries/inVMAccessControlProfiles resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Compute/galleries/inVMAccessControlProfiles@2024-03-03"
name = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = jsonencode({
properties = {
applicableHostEndpoint = "string"
description = "string"
osType = "string"
}
})
}
Property values
GalleryInVMAccessControlProfileProperties
Name | Description | Value |
---|---|---|
applicableHostEndpoint | This property allows you to specify the Endpoint type for which this profile is defining the access control for. Possible values are: 'WireServer' or 'IMDS' | 'IMDS' 'WireServer' (required) |
description | The description of this gallery inVMAccessControlProfile resources. This property is updatable. | string |
osType | This property allows you to specify the OS type of the VMs/VMSS for which this profile can be used against. Possible values are: 'Windows' or 'Linux' | 'Linux' 'Windows' (required) |
Microsoft.Compute/galleries/inVMAccessControlProfiles
Name | Description | Value |
---|---|---|
location | Resource location | string (required) |
name | The resource name | string Constraints: Max length = Pattern = ^[a-zA-Z0-9]+([-._]?[a-zA-Z0-9]+)*$ (required) |
parent_id | The ID of the resource that is the parent for this resource. | ID for resource of type: galleries |
properties | Describes the properties of a gallery inVMAccessControlProfile. | GalleryInVMAccessControlProfileProperties |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.Compute/galleries/inVMAccessControlProfiles@2024-03-03" |
ResourceTags
Name | Description | Value |
---|