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.
- Latest
- 2025-02-19-preview
- 2025-01-13
- 2024-11-10-preview
- 2024-09-10-preview
- 2024-07-31-preview
- 2024-07-10
- 2024-05-20-preview
- 2024-03-31-preview
- 2023-10-03-preview
- 2023-06-20-preview
- 2023-03-15-preview
- 2022-12-27
- 2022-12-27-preview
- 2022-11-10
- 2022-08-11-preview
- 2022-05-10-preview
- 2022-03-10
- 2021-12-10-preview
- 2021-06-10-preview
- 2021-05-20
- 2021-05-17-preview
- 2021-04-22-preview
- 2021-03-25-preview
- 2021-01-28-preview
- 2020-08-15-preview
Bicep resource definition
The privateLinkScopes 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.HybridCompute/privateLinkScopes resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.HybridCompute/privateLinkScopes@2024-07-10' = {
location: 'string'
name: 'string'
properties: {
publicNetworkAccess: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.HybridCompute/privateLinkScopes
Name | Description | Value |
---|---|---|
location | Resource location | string (required) |
name | The resource name | string Constraints: Pattern = [a-zA-Z0-9-_\.]+ (required) |
properties | Properties that define a Azure Arc PrivateLinkScope resource. | HybridComputePrivateLinkScopeProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
HybridComputePrivateLinkScopeProperties
Name | Description | Value |
---|---|---|
publicNetworkAccess | Indicates whether machines associated with the private link scope can also use public Azure Arc service endpoints. | 'Disabled' 'Enabled' 'SecuredByPerimeter' |
PrivateLinkScopesResourceTags
Name | Description | Value |
---|
ARM template resource definition
The privateLinkScopes 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.HybridCompute/privateLinkScopes resource, add the following JSON to your template.
{
"type": "Microsoft.HybridCompute/privateLinkScopes",
"apiVersion": "2024-07-10",
"name": "string",
"location": "string",
"properties": {
"publicNetworkAccess": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.HybridCompute/privateLinkScopes
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2024-07-10' |
location | Resource location | string (required) |
name | The resource name | string Constraints: Pattern = [a-zA-Z0-9-_\.]+ (required) |
properties | Properties that define a Azure Arc PrivateLinkScope resource. | HybridComputePrivateLinkScopeProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.HybridCompute/privateLinkScopes' |
HybridComputePrivateLinkScopeProperties
Name | Description | Value |
---|---|---|
publicNetworkAccess | Indicates whether machines associated with the private link scope can also use public Azure Arc service endpoints. | 'Disabled' 'Enabled' 'SecuredByPerimeter' |
PrivateLinkScopesResourceTags
Name | Description | Value |
---|
Usage Examples
Terraform (AzAPI provider) resource definition
The privateLinkScopes 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.HybridCompute/privateLinkScopes resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.HybridCompute/privateLinkScopes@2024-07-10"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
publicNetworkAccess = "string"
}
}
}
Property Values
Microsoft.HybridCompute/privateLinkScopes
Name | Description | Value |
---|---|---|
location | Resource location | string (required) |
name | The resource name | string Constraints: Pattern = [a-zA-Z0-9-_\.]+ (required) |
properties | Properties that define a Azure Arc PrivateLinkScope resource. | HybridComputePrivateLinkScopeProperties |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.HybridCompute/privateLinkScopes@2024-07-10" |
HybridComputePrivateLinkScopeProperties
Name | Description | Value |
---|---|---|
publicNetworkAccess | Indicates whether machines associated with the private link scope can also use public Azure Arc service endpoints. | 'Disabled' 'Enabled' 'SecuredByPerimeter' |
PrivateLinkScopesResourceTags
Name | Description | Value |
---|