Microsoft.EventGrid partnerRegistrations 2022-06-15

Bicep resource definition

The partnerRegistrations 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.EventGrid/partnerRegistrations resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.EventGrid/partnerRegistrations@2022-06-15' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  properties: {
    partnerRegistrationImmutableId: 'string'
  }
}

Property values

partnerRegistrations

Name Description Value
name The resource name string (required)
location Location of the resource. string (required)
tags Tags of the resource. Dictionary of tag names and values. See Tags in templates
properties Properties of the partner registration. PartnerRegistrationProperties

PartnerRegistrationProperties

Name Description Value
partnerRegistrationImmutableId The immutableId of the corresponding partner registration.
Note: This property is marked for deprecation and is not supported in any future GA API version
string

Constraints:
Min length = 36
Max length = 36
Pattern = ^[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}$

ARM template resource definition

The partnerRegistrations 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.EventGrid/partnerRegistrations resource, add the following JSON to your template.

{
  "type": "Microsoft.EventGrid/partnerRegistrations",
  "apiVersion": "2022-06-15",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "properties": {
    "partnerRegistrationImmutableId": "string"
  }
}

Property values

partnerRegistrations

Name Description Value
type The resource type 'Microsoft.EventGrid/partnerRegistrations'
apiVersion The resource api version '2022-06-15'
name The resource name string (required)
location Location of the resource. string (required)
tags Tags of the resource. Dictionary of tag names and values. See Tags in templates
properties Properties of the partner registration. PartnerRegistrationProperties

PartnerRegistrationProperties

Name Description Value
partnerRegistrationImmutableId The immutableId of the corresponding partner registration.
Note: This property is marked for deprecation and is not supported in any future GA API version
string

Constraints:
Min length = 36
Max length = 36
Pattern = ^[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}$

Terraform (AzAPI provider) resource definition

The partnerRegistrations 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.EventGrid/partnerRegistrations resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.EventGrid/partnerRegistrations@2022-06-15"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    properties = {
      partnerRegistrationImmutableId = "string"
    }
  })
}

Property values

partnerRegistrations

Name Description Value
type The resource type "Microsoft.EventGrid/partnerRegistrations@2022-06-15"
name The resource name string (required)
location Location of the resource. string (required)
parent_id To deploy to a resource group, use the ID of that resource group. string (required)
tags Tags of the resource. Dictionary of tag names and values.
properties Properties of the partner registration. PartnerRegistrationProperties

PartnerRegistrationProperties

Name Description Value
partnerRegistrationImmutableId The immutableId of the corresponding partner registration.
Note: This property is marked for deprecation and is not supported in any future GA API version
string

Constraints:
Min length = 36
Max length = 36
Pattern = ^[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}$