Share via


Microsoft.HybridCompute privateLinkScopes 2024-07-10

Bicep resource definition

The privateLinkScopes resource type can be deployed with operations that target:

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:

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