Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
Microsoft.Compute/galleries/inVMAccessControlProfiles
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string (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 |
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) |
TrackedResourceTags
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
Microsoft.Compute/galleries/inVMAccessControlProfiles
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2024-03-03' |
location | The geo-location where the resource lives | string (required) |
name | The resource name | string (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' |
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) |
TrackedResourceTags
Name | Description | Value |
---|
Usage Examples
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"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
applicableHostEndpoint = "string"
description = "string"
osType = "string"
}
}
}
Property Values
Microsoft.Compute/galleries/inVMAccessControlProfiles
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string (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" |
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) |
TrackedResourceTags
Name | Description | Value |
---|