Microsoft.EventGrid partnerRegistrations 2022-06-15
Bicep resource definition
The partnerRegistrations 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.EventGrid/partnerRegistrations resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.EventGrid/partnerRegistrations@2022-06-15' = {
location: 'string'
name: 'string'
properties: {
partnerRegistrationImmutableId: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.EventGrid/partnerRegistrations
Name | Description | Value |
---|---|---|
location | Location of the resource. | string (required) |
name | The resource name | string (required) |
properties | Properties of the partner registration. | PartnerRegistrationProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
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}$ |
TrackedResourceTags
Name | Description | Value |
---|
ARM template resource definition
The partnerRegistrations 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.EventGrid/partnerRegistrations resource, add the following JSON to your template.
{
"type": "Microsoft.EventGrid/partnerRegistrations",
"apiVersion": "2022-06-15",
"name": "string",
"location": "string",
"properties": {
"partnerRegistrationImmutableId": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.EventGrid/partnerRegistrations
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2022-06-15' |
location | Location of the resource. | string (required) |
name | The resource name | string (required) |
properties | Properties of the partner registration. | PartnerRegistrationProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.EventGrid/partnerRegistrations' |
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}$ |
TrackedResourceTags
Name | Description | Value |
---|
Usage Examples
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"
tags = {
{customized property} = "string"
}
body = jsonencode({
properties = {
partnerRegistrationImmutableId = "string"
}
})
}
Property Values
Microsoft.EventGrid/partnerRegistrations
Name | Description | Value |
---|---|---|
location | Location of the resource. | string (required) |
name | The resource name | string (required) |
properties | Properties of the partner registration. | PartnerRegistrationProperties |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.EventGrid/partnerRegistrations@2022-06-15" |
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}$ |
TrackedResourceTags
Name | Description | Value |
---|