azure-native.eventgrid.Domain
Explore with Pulumi AI
EventGrid Domain. Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2020-06-01.
Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview.
Example Usage
Domains_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var domain = new AzureNative.EventGrid.Domain("domain", new()
{
DomainName = "exampledomain1",
InboundIpRules = new[]
{
new AzureNative.EventGrid.Inputs.InboundIpRuleArgs
{
Action = AzureNative.EventGrid.IpActionType.Allow,
IpMask = "12.18.30.15",
},
new AzureNative.EventGrid.Inputs.InboundIpRuleArgs
{
Action = AzureNative.EventGrid.IpActionType.Allow,
IpMask = "12.18.176.1",
},
},
Location = "westus2",
PublicNetworkAccess = AzureNative.EventGrid.PublicNetworkAccess.Enabled,
ResourceGroupName = "examplerg",
Tags =
{
{ "tag1", "value1" },
{ "tag2", "value2" },
},
});
});
package main
import (
eventgrid "github.com/pulumi/pulumi-azure-native-sdk/eventgrid/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := eventgrid.NewDomain(ctx, "domain", &eventgrid.DomainArgs{
DomainName: pulumi.String("exampledomain1"),
InboundIpRules: eventgrid.InboundIpRuleArray{
&eventgrid.InboundIpRuleArgs{
Action: pulumi.String(eventgrid.IpActionTypeAllow),
IpMask: pulumi.String("12.18.30.15"),
},
&eventgrid.InboundIpRuleArgs{
Action: pulumi.String(eventgrid.IpActionTypeAllow),
IpMask: pulumi.String("12.18.176.1"),
},
},
Location: pulumi.String("westus2"),
PublicNetworkAccess: pulumi.String(eventgrid.PublicNetworkAccessEnabled),
ResourceGroupName: pulumi.String("examplerg"),
Tags: pulumi.StringMap{
"tag1": pulumi.String("value1"),
"tag2": pulumi.String("value2"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.eventgrid.Domain;
import com.pulumi.azurenative.eventgrid.DomainArgs;
import com.pulumi.azurenative.eventgrid.inputs.InboundIpRuleArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var domain = new Domain("domain", DomainArgs.builder()
.domainName("exampledomain1")
.inboundIpRules(
InboundIpRuleArgs.builder()
.action("Allow")
.ipMask("12.18.30.15")
.build(),
InboundIpRuleArgs.builder()
.action("Allow")
.ipMask("12.18.176.1")
.build())
.location("westus2")
.publicNetworkAccess("Enabled")
.resourceGroupName("examplerg")
.tags(Map.ofEntries(
Map.entry("tag1", "value1"),
Map.entry("tag2", "value2")
))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
domain = azure_native.eventgrid.Domain("domain",
domain_name="exampledomain1",
inbound_ip_rules=[
{
"action": azure_native.eventgrid.IpActionType.ALLOW,
"ip_mask": "12.18.30.15",
},
{
"action": azure_native.eventgrid.IpActionType.ALLOW,
"ip_mask": "12.18.176.1",
},
],
location="westus2",
public_network_access=azure_native.eventgrid.PublicNetworkAccess.ENABLED,
resource_group_name="examplerg",
tags={
"tag1": "value1",
"tag2": "value2",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const domain = new azure_native.eventgrid.Domain("domain", {
domainName: "exampledomain1",
inboundIpRules: [
{
action: azure_native.eventgrid.IpActionType.Allow,
ipMask: "12.18.30.15",
},
{
action: azure_native.eventgrid.IpActionType.Allow,
ipMask: "12.18.176.1",
},
],
location: "westus2",
publicNetworkAccess: azure_native.eventgrid.PublicNetworkAccess.Enabled,
resourceGroupName: "examplerg",
tags: {
tag1: "value1",
tag2: "value2",
},
});
resources:
domain:
type: azure-native:eventgrid:Domain
properties:
domainName: exampledomain1
inboundIpRules:
- action: Allow
ipMask: 12.18.30.15
- action: Allow
ipMask: 12.18.176.1
location: westus2
publicNetworkAccess: Enabled
resourceGroupName: examplerg
tags:
tag1: value1
tag2: value2
Create Domain Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Domain(name: string, args: DomainArgs, opts?: CustomResourceOptions);
@overload
def Domain(resource_name: str,
args: DomainArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Domain(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
inbound_ip_rules: Optional[Sequence[InboundIpRuleArgs]] = None,
data_residency_boundary: Optional[Union[str, DataResidencyBoundary]] = None,
disable_local_auth: Optional[bool] = None,
domain_name: Optional[str] = None,
identity: Optional[IdentityInfoArgs] = None,
auto_create_topic_with_first_subscription: Optional[bool] = None,
input_schema: Optional[Union[str, InputSchema]] = None,
input_schema_mapping: Optional[JsonInputSchemaMappingArgs] = None,
location: Optional[str] = None,
public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
auto_delete_topic_with_last_subscription: Optional[bool] = None,
tags: Optional[Mapping[str, str]] = None)
func NewDomain(ctx *Context, name string, args DomainArgs, opts ...ResourceOption) (*Domain, error)
public Domain(string name, DomainArgs args, CustomResourceOptions? opts = null)
public Domain(String name, DomainArgs args)
public Domain(String name, DomainArgs args, CustomResourceOptions options)
type: azure-native:eventgrid:Domain
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DomainArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DomainArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DomainArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DomainArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DomainArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var exampledomainResourceResourceFromEventgrid = new AzureNative.EventGrid.Domain("exampledomainResourceResourceFromEventgrid", new()
{
ResourceGroupName = "string",
InboundIpRules = new[]
{
new AzureNative.EventGrid.Inputs.InboundIpRuleArgs
{
Action = "string",
IpMask = "string",
},
},
DataResidencyBoundary = "string",
DisableLocalAuth = false,
DomainName = "string",
Identity = new AzureNative.EventGrid.Inputs.IdentityInfoArgs
{
PrincipalId = "string",
TenantId = "string",
Type = "string",
UserAssignedIdentities =
{
{ "string", new AzureNative.EventGrid.Inputs.UserIdentityPropertiesArgs
{
ClientId = "string",
PrincipalId = "string",
} },
},
},
AutoCreateTopicWithFirstSubscription = false,
InputSchema = "string",
InputSchemaMapping = new AzureNative.EventGrid.Inputs.JsonInputSchemaMappingArgs
{
InputSchemaMappingType = "Json",
DataVersion = new AzureNative.EventGrid.Inputs.JsonFieldWithDefaultArgs
{
DefaultValue = "string",
SourceField = "string",
},
EventTime = new AzureNative.EventGrid.Inputs.JsonFieldArgs
{
SourceField = "string",
},
EventType = new AzureNative.EventGrid.Inputs.JsonFieldWithDefaultArgs
{
DefaultValue = "string",
SourceField = "string",
},
Id = new AzureNative.EventGrid.Inputs.JsonFieldArgs
{
SourceField = "string",
},
Subject = new AzureNative.EventGrid.Inputs.JsonFieldWithDefaultArgs
{
DefaultValue = "string",
SourceField = "string",
},
Topic = new AzureNative.EventGrid.Inputs.JsonFieldArgs
{
SourceField = "string",
},
},
Location = "string",
PublicNetworkAccess = "string",
AutoDeleteTopicWithLastSubscription = false,
Tags =
{
{ "string", "string" },
},
});
example, err := eventgrid.NewDomain(ctx, "exampledomainResourceResourceFromEventgrid", &eventgrid.DomainArgs{
ResourceGroupName: pulumi.String("string"),
InboundIpRules: eventgrid.InboundIpRuleArray{
&eventgrid.InboundIpRuleArgs{
Action: pulumi.String("string"),
IpMask: pulumi.String("string"),
},
},
DataResidencyBoundary: pulumi.String("string"),
DisableLocalAuth: pulumi.Bool(false),
DomainName: pulumi.String("string"),
Identity: &eventgrid.IdentityInfoArgs{
PrincipalId: pulumi.String("string"),
TenantId: pulumi.String("string"),
Type: pulumi.String("string"),
UserAssignedIdentities: eventgrid.UserIdentityPropertiesMap{
"string": &eventgrid.UserIdentityPropertiesArgs{
ClientId: pulumi.String("string"),
PrincipalId: pulumi.String("string"),
},
},
},
AutoCreateTopicWithFirstSubscription: pulumi.Bool(false),
InputSchema: pulumi.String("string"),
InputSchemaMapping: &eventgrid.JsonInputSchemaMappingArgs{
InputSchemaMappingType: pulumi.String("Json"),
DataVersion: &eventgrid.JsonFieldWithDefaultArgs{
DefaultValue: pulumi.String("string"),
SourceField: pulumi.String("string"),
},
EventTime: &eventgrid.JsonFieldArgs{
SourceField: pulumi.String("string"),
},
EventType: &eventgrid.JsonFieldWithDefaultArgs{
DefaultValue: pulumi.String("string"),
SourceField: pulumi.String("string"),
},
Id: &eventgrid.JsonFieldArgs{
SourceField: pulumi.String("string"),
},
Subject: &eventgrid.JsonFieldWithDefaultArgs{
DefaultValue: pulumi.String("string"),
SourceField: pulumi.String("string"),
},
Topic: &eventgrid.JsonFieldArgs{
SourceField: pulumi.String("string"),
},
},
Location: pulumi.String("string"),
PublicNetworkAccess: pulumi.String("string"),
AutoDeleteTopicWithLastSubscription: pulumi.Bool(false),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var exampledomainResourceResourceFromEventgrid = new Domain("exampledomainResourceResourceFromEventgrid", DomainArgs.builder()
.resourceGroupName("string")
.inboundIpRules(InboundIpRuleArgs.builder()
.action("string")
.ipMask("string")
.build())
.dataResidencyBoundary("string")
.disableLocalAuth(false)
.domainName("string")
.identity(IdentityInfoArgs.builder()
.principalId("string")
.tenantId("string")
.type("string")
.userAssignedIdentities(Map.of("string", Map.ofEntries(
Map.entry("clientId", "string"),
Map.entry("principalId", "string")
)))
.build())
.autoCreateTopicWithFirstSubscription(false)
.inputSchema("string")
.inputSchemaMapping(JsonInputSchemaMappingArgs.builder()
.inputSchemaMappingType("Json")
.dataVersion(JsonFieldWithDefaultArgs.builder()
.defaultValue("string")
.sourceField("string")
.build())
.eventTime(JsonFieldArgs.builder()
.sourceField("string")
.build())
.eventType(JsonFieldWithDefaultArgs.builder()
.defaultValue("string")
.sourceField("string")
.build())
.id(JsonFieldArgs.builder()
.sourceField("string")
.build())
.subject(JsonFieldWithDefaultArgs.builder()
.defaultValue("string")
.sourceField("string")
.build())
.topic(JsonFieldArgs.builder()
.sourceField("string")
.build())
.build())
.location("string")
.publicNetworkAccess("string")
.autoDeleteTopicWithLastSubscription(false)
.tags(Map.of("string", "string"))
.build());
exampledomain_resource_resource_from_eventgrid = azure_native.eventgrid.Domain("exampledomainResourceResourceFromEventgrid",
resource_group_name="string",
inbound_ip_rules=[{
"action": "string",
"ipMask": "string",
}],
data_residency_boundary="string",
disable_local_auth=False,
domain_name="string",
identity={
"principalId": "string",
"tenantId": "string",
"type": "string",
"userAssignedIdentities": {
"string": {
"clientId": "string",
"principalId": "string",
},
},
},
auto_create_topic_with_first_subscription=False,
input_schema="string",
input_schema_mapping={
"inputSchemaMappingType": "Json",
"dataVersion": {
"defaultValue": "string",
"sourceField": "string",
},
"eventTime": {
"sourceField": "string",
},
"eventType": {
"defaultValue": "string",
"sourceField": "string",
},
"id": {
"sourceField": "string",
},
"subject": {
"defaultValue": "string",
"sourceField": "string",
},
"topic": {
"sourceField": "string",
},
},
location="string",
public_network_access="string",
auto_delete_topic_with_last_subscription=False,
tags={
"string": "string",
})
const exampledomainResourceResourceFromEventgrid = new azure_native.eventgrid.Domain("exampledomainResourceResourceFromEventgrid", {
resourceGroupName: "string",
inboundIpRules: [{
action: "string",
ipMask: "string",
}],
dataResidencyBoundary: "string",
disableLocalAuth: false,
domainName: "string",
identity: {
principalId: "string",
tenantId: "string",
type: "string",
userAssignedIdentities: {
string: {
clientId: "string",
principalId: "string",
},
},
},
autoCreateTopicWithFirstSubscription: false,
inputSchema: "string",
inputSchemaMapping: {
inputSchemaMappingType: "Json",
dataVersion: {
defaultValue: "string",
sourceField: "string",
},
eventTime: {
sourceField: "string",
},
eventType: {
defaultValue: "string",
sourceField: "string",
},
id: {
sourceField: "string",
},
subject: {
defaultValue: "string",
sourceField: "string",
},
topic: {
sourceField: "string",
},
},
location: "string",
publicNetworkAccess: "string",
autoDeleteTopicWithLastSubscription: false,
tags: {
string: "string",
},
});
type: azure-native:eventgrid:Domain
properties:
autoCreateTopicWithFirstSubscription: false
autoDeleteTopicWithLastSubscription: false
dataResidencyBoundary: string
disableLocalAuth: false
domainName: string
identity:
principalId: string
tenantId: string
type: string
userAssignedIdentities:
string:
clientId: string
principalId: string
inboundIpRules:
- action: string
ipMask: string
inputSchema: string
inputSchemaMapping:
dataVersion:
defaultValue: string
sourceField: string
eventTime:
sourceField: string
eventType:
defaultValue: string
sourceField: string
id:
sourceField: string
inputSchemaMappingType: Json
subject:
defaultValue: string
sourceField: string
topic:
sourceField: string
location: string
publicNetworkAccess: string
resourceGroupName: string
tags:
string: string
Domain Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Domain resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group within the user's subscription.
- Auto
Create boolTopic With First Subscription - This Boolean is used to specify the creation mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource. In this context, creation of domain topic can be auto-managed (when true) or self-managed (when false). The default value for this property is true. When this property is null or set to true, Event Grid is responsible of automatically creating the domain topic when the first event subscription is created at the scope of the domain topic. If this property is set to false, then creating the first event subscription will require creating a domain topic by the user. The self-management mode can be used if the user wants full control of when the domain topic is created, while auto-managed mode provides the flexibility to perform less operations and manage fewer resources by the user. Also, note that in auto-managed creation mode, user is allowed to create the domain topic on demand if needed.
- Auto
Delete boolTopic With Last Subscription - This Boolean is used to specify the deletion mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource. In this context, deletion of domain topic can be auto-managed (when true) or self-managed (when false). The default value for this property is true. When this property is set to true, Event Grid is responsible of automatically deleting the domain topic when the last event subscription at the scope of the domain topic is deleted. If this property is set to false, then the user needs to manually delete the domain topic when it is no longer needed (e.g., when last event subscription is deleted and the resource needs to be cleaned up). The self-management mode can be used if the user wants full control of when the domain topic needs to be deleted, while auto-managed mode provides the flexibility to perform less operations and manage fewer resources by the user.
- Data
Residency string | Pulumi.Boundary Azure Native. Event Grid. Data Residency Boundary - Data Residency Boundary of the resource.
- Disable
Local boolAuth - This boolean is used to enable or disable local auth. Default value is false. When the property is set to true, only AAD token will be used to authenticate if user is allowed to publish to the domain.
- Domain
Name string - Name of the domain.
- Identity
Pulumi.
Azure Native. Event Grid. Inputs. Identity Info - Identity information for the Event Grid Domain resource.
- Inbound
Ip List<Pulumi.Rules Azure Native. Event Grid. Inputs. Inbound Ip Rule> - This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
- Input
Schema string | Pulumi.Azure Native. Event Grid. Input Schema - This determines the format that Event Grid should expect for incoming events published to the Event Grid Domain Resource.
- Input
Schema Pulumi.Mapping Azure Native. Event Grid. Inputs. Json Input Schema Mapping - Information about the InputSchemaMapping which specified the info about mapping event payload.
- Location string
- Location of the resource.
- Public
Network string | Pulumi.Access Azure Native. Event Grid. Public Network Access - This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring
- Dictionary<string, string>
- Tags of the resource.
- Resource
Group stringName - The name of the resource group within the user's subscription.
- Auto
Create boolTopic With First Subscription - This Boolean is used to specify the creation mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource. In this context, creation of domain topic can be auto-managed (when true) or self-managed (when false). The default value for this property is true. When this property is null or set to true, Event Grid is responsible of automatically creating the domain topic when the first event subscription is created at the scope of the domain topic. If this property is set to false, then creating the first event subscription will require creating a domain topic by the user. The self-management mode can be used if the user wants full control of when the domain topic is created, while auto-managed mode provides the flexibility to perform less operations and manage fewer resources by the user. Also, note that in auto-managed creation mode, user is allowed to create the domain topic on demand if needed.
- Auto
Delete boolTopic With Last Subscription - This Boolean is used to specify the deletion mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource. In this context, deletion of domain topic can be auto-managed (when true) or self-managed (when false). The default value for this property is true. When this property is set to true, Event Grid is responsible of automatically deleting the domain topic when the last event subscription at the scope of the domain topic is deleted. If this property is set to false, then the user needs to manually delete the domain topic when it is no longer needed (e.g., when last event subscription is deleted and the resource needs to be cleaned up). The self-management mode can be used if the user wants full control of when the domain topic needs to be deleted, while auto-managed mode provides the flexibility to perform less operations and manage fewer resources by the user.
- Data
Residency string | DataBoundary Residency Boundary - Data Residency Boundary of the resource.
- Disable
Local boolAuth - This boolean is used to enable or disable local auth. Default value is false. When the property is set to true, only AAD token will be used to authenticate if user is allowed to publish to the domain.
- Domain
Name string - Name of the domain.
- Identity
Identity
Info Args - Identity information for the Event Grid Domain resource.
- Inbound
Ip []InboundRules Ip Rule Args - This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
- Input
Schema string | InputSchema - This determines the format that Event Grid should expect for incoming events published to the Event Grid Domain Resource.
- Input
Schema JsonMapping Input Schema Mapping Args - Information about the InputSchemaMapping which specified the info about mapping event payload.
- Location string
- Location of the resource.
- Public
Network string | PublicAccess Network Access - This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring
- map[string]string
- Tags of the resource.
- resource
Group StringName - The name of the resource group within the user's subscription.
- auto
Create BooleanTopic With First Subscription - This Boolean is used to specify the creation mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource. In this context, creation of domain topic can be auto-managed (when true) or self-managed (when false). The default value for this property is true. When this property is null or set to true, Event Grid is responsible of automatically creating the domain topic when the first event subscription is created at the scope of the domain topic. If this property is set to false, then creating the first event subscription will require creating a domain topic by the user. The self-management mode can be used if the user wants full control of when the domain topic is created, while auto-managed mode provides the flexibility to perform less operations and manage fewer resources by the user. Also, note that in auto-managed creation mode, user is allowed to create the domain topic on demand if needed.
- auto
Delete BooleanTopic With Last Subscription - This Boolean is used to specify the deletion mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource. In this context, deletion of domain topic can be auto-managed (when true) or self-managed (when false). The default value for this property is true. When this property is set to true, Event Grid is responsible of automatically deleting the domain topic when the last event subscription at the scope of the domain topic is deleted. If this property is set to false, then the user needs to manually delete the domain topic when it is no longer needed (e.g., when last event subscription is deleted and the resource needs to be cleaned up). The self-management mode can be used if the user wants full control of when the domain topic needs to be deleted, while auto-managed mode provides the flexibility to perform less operations and manage fewer resources by the user.
- data
Residency String | DataBoundary Residency Boundary - Data Residency Boundary of the resource.
- disable
Local BooleanAuth - This boolean is used to enable or disable local auth. Default value is false. When the property is set to true, only AAD token will be used to authenticate if user is allowed to publish to the domain.
- domain
Name String - Name of the domain.
- identity
Identity
Info - Identity information for the Event Grid Domain resource.
- inbound
Ip List<InboundRules Ip Rule> - This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
- input
Schema String | InputSchema - This determines the format that Event Grid should expect for incoming events published to the Event Grid Domain Resource.
- input
Schema JsonMapping Input Schema Mapping - Information about the InputSchemaMapping which specified the info about mapping event payload.
- location String
- Location of the resource.
- public
Network String | PublicAccess Network Access - This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring
- Map<String,String>
- Tags of the resource.
- resource
Group stringName - The name of the resource group within the user's subscription.
- auto
Create booleanTopic With First Subscription - This Boolean is used to specify the creation mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource. In this context, creation of domain topic can be auto-managed (when true) or self-managed (when false). The default value for this property is true. When this property is null or set to true, Event Grid is responsible of automatically creating the domain topic when the first event subscription is created at the scope of the domain topic. If this property is set to false, then creating the first event subscription will require creating a domain topic by the user. The self-management mode can be used if the user wants full control of when the domain topic is created, while auto-managed mode provides the flexibility to perform less operations and manage fewer resources by the user. Also, note that in auto-managed creation mode, user is allowed to create the domain topic on demand if needed.
- auto
Delete booleanTopic With Last Subscription - This Boolean is used to specify the deletion mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource. In this context, deletion of domain topic can be auto-managed (when true) or self-managed (when false). The default value for this property is true. When this property is set to true, Event Grid is responsible of automatically deleting the domain topic when the last event subscription at the scope of the domain topic is deleted. If this property is set to false, then the user needs to manually delete the domain topic when it is no longer needed (e.g., when last event subscription is deleted and the resource needs to be cleaned up). The self-management mode can be used if the user wants full control of when the domain topic needs to be deleted, while auto-managed mode provides the flexibility to perform less operations and manage fewer resources by the user.
- data
Residency string | DataBoundary Residency Boundary - Data Residency Boundary of the resource.
- disable
Local booleanAuth - This boolean is used to enable or disable local auth. Default value is false. When the property is set to true, only AAD token will be used to authenticate if user is allowed to publish to the domain.
- domain
Name string - Name of the domain.
- identity
Identity
Info - Identity information for the Event Grid Domain resource.
- inbound
Ip InboundRules Ip Rule[] - This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
- input
Schema string | InputSchema - This determines the format that Event Grid should expect for incoming events published to the Event Grid Domain Resource.
- input
Schema JsonMapping Input Schema Mapping - Information about the InputSchemaMapping which specified the info about mapping event payload.
- location string
- Location of the resource.
- public
Network string | PublicAccess Network Access - This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring
- {[key: string]: string}
- Tags of the resource.
- resource_
group_ strname - The name of the resource group within the user's subscription.
- auto_
create_ booltopic_ with_ first_ subscription - This Boolean is used to specify the creation mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource. In this context, creation of domain topic can be auto-managed (when true) or self-managed (when false). The default value for this property is true. When this property is null or set to true, Event Grid is responsible of automatically creating the domain topic when the first event subscription is created at the scope of the domain topic. If this property is set to false, then creating the first event subscription will require creating a domain topic by the user. The self-management mode can be used if the user wants full control of when the domain topic is created, while auto-managed mode provides the flexibility to perform less operations and manage fewer resources by the user. Also, note that in auto-managed creation mode, user is allowed to create the domain topic on demand if needed.
- auto_
delete_ booltopic_ with_ last_ subscription - This Boolean is used to specify the deletion mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource. In this context, deletion of domain topic can be auto-managed (when true) or self-managed (when false). The default value for this property is true. When this property is set to true, Event Grid is responsible of automatically deleting the domain topic when the last event subscription at the scope of the domain topic is deleted. If this property is set to false, then the user needs to manually delete the domain topic when it is no longer needed (e.g., when last event subscription is deleted and the resource needs to be cleaned up). The self-management mode can be used if the user wants full control of when the domain topic needs to be deleted, while auto-managed mode provides the flexibility to perform less operations and manage fewer resources by the user.
- data_
residency_ str | Databoundary Residency Boundary - Data Residency Boundary of the resource.
- disable_
local_ boolauth - This boolean is used to enable or disable local auth. Default value is false. When the property is set to true, only AAD token will be used to authenticate if user is allowed to publish to the domain.
- domain_
name str - Name of the domain.
- identity
Identity
Info Args - Identity information for the Event Grid Domain resource.
- inbound_
ip_ Sequence[Inboundrules Ip Rule Args] - This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
- input_
schema str | InputSchema - This determines the format that Event Grid should expect for incoming events published to the Event Grid Domain Resource.
- input_
schema_ Jsonmapping Input Schema Mapping Args - Information about the InputSchemaMapping which specified the info about mapping event payload.
- location str
- Location of the resource.
- public_
network_ str | Publicaccess Network Access - This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring
- Mapping[str, str]
- Tags of the resource.
- resource
Group StringName - The name of the resource group within the user's subscription.
- auto
Create BooleanTopic With First Subscription - This Boolean is used to specify the creation mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource. In this context, creation of domain topic can be auto-managed (when true) or self-managed (when false). The default value for this property is true. When this property is null or set to true, Event Grid is responsible of automatically creating the domain topic when the first event subscription is created at the scope of the domain topic. If this property is set to false, then creating the first event subscription will require creating a domain topic by the user. The self-management mode can be used if the user wants full control of when the domain topic is created, while auto-managed mode provides the flexibility to perform less operations and manage fewer resources by the user. Also, note that in auto-managed creation mode, user is allowed to create the domain topic on demand if needed.
- auto
Delete BooleanTopic With Last Subscription - This Boolean is used to specify the deletion mechanism for 'all' the Event Grid Domain Topics associated with this Event Grid Domain resource. In this context, deletion of domain topic can be auto-managed (when true) or self-managed (when false). The default value for this property is true. When this property is set to true, Event Grid is responsible of automatically deleting the domain topic when the last event subscription at the scope of the domain topic is deleted. If this property is set to false, then the user needs to manually delete the domain topic when it is no longer needed (e.g., when last event subscription is deleted and the resource needs to be cleaned up). The self-management mode can be used if the user wants full control of when the domain topic needs to be deleted, while auto-managed mode provides the flexibility to perform less operations and manage fewer resources by the user.
- data
Residency String | "WithinBoundary Geopair" | "Within Region" - Data Residency Boundary of the resource.
- disable
Local BooleanAuth - This boolean is used to enable or disable local auth. Default value is false. When the property is set to true, only AAD token will be used to authenticate if user is allowed to publish to the domain.
- domain
Name String - Name of the domain.
- identity Property Map
- Identity information for the Event Grid Domain resource.
- inbound
Ip List<Property Map>Rules - This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
- input
Schema String | "EventGrid Schema" | "Custom Event Schema" | "Cloud Event Schema V1_0" - This determines the format that Event Grid should expect for incoming events published to the Event Grid Domain Resource.
- input
Schema Property MapMapping - Information about the InputSchemaMapping which specified the info about mapping event payload.
- location String
- Location of the resource.
- public
Network String | "Enabled" | "Disabled"Access - This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring
- Map<String>
- Tags of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the Domain resource produces the following output properties:
- Endpoint string
- Endpoint for the Event Grid Domain Resource which is used for publishing the events.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metric
Resource stringId - Metric resource id for the Event Grid Domain Resource.
- Name string
- Name of the resource.
- Private
Endpoint List<Pulumi.Connections Azure Native. Event Grid. Outputs. Private Endpoint Connection Response> - List of private endpoint connections.
- Provisioning
State string - Provisioning state of the Event Grid Domain Resource.
- System
Data Pulumi.Azure Native. Event Grid. Outputs. System Data Response - The system metadata relating to the Event Grid Domain resource.
- Type string
- Type of the resource.
- Endpoint string
- Endpoint for the Event Grid Domain Resource which is used for publishing the events.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metric
Resource stringId - Metric resource id for the Event Grid Domain Resource.
- Name string
- Name of the resource.
- Private
Endpoint []PrivateConnections Endpoint Connection Response - List of private endpoint connections.
- Provisioning
State string - Provisioning state of the Event Grid Domain Resource.
- System
Data SystemData Response - The system metadata relating to the Event Grid Domain resource.
- Type string
- Type of the resource.
- endpoint String
- Endpoint for the Event Grid Domain Resource which is used for publishing the events.
- id String
- The provider-assigned unique ID for this managed resource.
- metric
Resource StringId - Metric resource id for the Event Grid Domain Resource.
- name String
- Name of the resource.
- private
Endpoint List<PrivateConnections Endpoint Connection Response> - List of private endpoint connections.
- provisioning
State String - Provisioning state of the Event Grid Domain Resource.
- system
Data SystemData Response - The system metadata relating to the Event Grid Domain resource.
- type String
- Type of the resource.
- endpoint string
- Endpoint for the Event Grid Domain Resource which is used for publishing the events.
- id string
- The provider-assigned unique ID for this managed resource.
- metric
Resource stringId - Metric resource id for the Event Grid Domain Resource.
- name string
- Name of the resource.
- private
Endpoint PrivateConnections Endpoint Connection Response[] - List of private endpoint connections.
- provisioning
State string - Provisioning state of the Event Grid Domain Resource.
- system
Data SystemData Response - The system metadata relating to the Event Grid Domain resource.
- type string
- Type of the resource.
- endpoint str
- Endpoint for the Event Grid Domain Resource which is used for publishing the events.
- id str
- The provider-assigned unique ID for this managed resource.
- metric_
resource_ strid - Metric resource id for the Event Grid Domain Resource.
- name str
- Name of the resource.
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection Response] - List of private endpoint connections.
- provisioning_
state str - Provisioning state of the Event Grid Domain Resource.
- system_
data SystemData Response - The system metadata relating to the Event Grid Domain resource.
- type str
- Type of the resource.
- endpoint String
- Endpoint for the Event Grid Domain Resource which is used for publishing the events.
- id String
- The provider-assigned unique ID for this managed resource.
- metric
Resource StringId - Metric resource id for the Event Grid Domain Resource.
- name String
- Name of the resource.
- private
Endpoint List<Property Map>Connections - List of private endpoint connections.
- provisioning
State String - Provisioning state of the Event Grid Domain Resource.
- system
Data Property Map - The system metadata relating to the Event Grid Domain resource.
- type String
- Type of the resource.
Supporting Types
ConnectionStateResponse, ConnectionStateResponseArgs
- Actions
Required string - Actions required (if any).
- Description string
- Description of the connection state.
- Status string
- Status of the connection.
- Actions
Required string - Actions required (if any).
- Description string
- Description of the connection state.
- Status string
- Status of the connection.
- actions
Required String - Actions required (if any).
- description String
- Description of the connection state.
- status String
- Status of the connection.
- actions
Required string - Actions required (if any).
- description string
- Description of the connection state.
- status string
- Status of the connection.
- actions_
required str - Actions required (if any).
- description str
- Description of the connection state.
- status str
- Status of the connection.
- actions
Required String - Actions required (if any).
- description String
- Description of the connection state.
- status String
- Status of the connection.
DataResidencyBoundary, DataResidencyBoundaryArgs
- Within
Geopair - WithinGeopair
- Within
Region - WithinRegion
- Data
Residency Boundary Within Geopair - WithinGeopair
- Data
Residency Boundary Within Region - WithinRegion
- Within
Geopair - WithinGeopair
- Within
Region - WithinRegion
- Within
Geopair - WithinGeopair
- Within
Region - WithinRegion
- WITHIN_GEOPAIR
- WithinGeopair
- WITHIN_REGION
- WithinRegion
- "Within
Geopair" - WithinGeopair
- "Within
Region" - WithinRegion
IdentityInfo, IdentityInfoArgs
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type
string | Pulumi.
Azure Native. Event Grid. Identity Type - The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Event Grid. Inputs. User Identity Properties> - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage.
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type
string | Identity
Type - The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity.
- User
Assigned map[string]UserIdentities Identity Properties - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type
String | Identity
Type - The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity.
- user
Assigned Map<String,UserIdentities Identity Properties> - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage.
- principal
Id string - The principal ID of resource identity.
- tenant
Id string - The tenant ID of resource.
- type
string | Identity
Type - The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity.
- user
Assigned {[key: string]: UserIdentities Identity Properties} - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage.
- principal_
id str - The principal ID of resource identity.
- tenant_
id str - The tenant ID of resource.
- type
str | Identity
Type - The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity.
- user_
assigned_ Mapping[str, Useridentities Identity Properties] - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type
String | "None" | "System
Assigned" | "User Assigned" | "System Assigned, User Assigned" - The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity.
- user
Assigned Map<Property Map>Identities - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage.
IdentityInfoResponse, IdentityInfoResponseArgs
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Event Grid. Inputs. User Identity Properties Response> - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage.
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity.
- User
Assigned map[string]UserIdentities Identity Properties Response - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity.
- user
Assigned Map<String,UserIdentities Identity Properties Response> - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage.
- principal
Id string - The principal ID of resource identity.
- tenant
Id string - The tenant ID of resource.
- type string
- The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity.
- user
Assigned {[key: string]: UserIdentities Identity Properties Response} - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage.
- principal_
id str - The principal ID of resource identity.
- tenant_
id str - The tenant ID of resource.
- type str
- The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity.
- user_
assigned_ Mapping[str, Useridentities Identity Properties Response] - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity.
- user
Assigned Map<Property Map>Identities - The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage.
IdentityType, IdentityTypeArgs
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- Identity
Type None - None
- Identity
Type System Assigned - SystemAssigned
- Identity
Type User Assigned - UserAssigned
- Identity
Type_System Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned, User Assigned" - SystemAssigned, UserAssigned
InboundIpRule, InboundIpRuleArgs
- Action
string | Pulumi.
Azure Native. Event Grid. Ip Action Type - Action to perform based on the match or no match of the IpMask.
- Ip
Mask string - IP Address in CIDR notation e.g., 10.0.0.0/8.
- Action
string | Ip
Action Type - Action to perform based on the match or no match of the IpMask.
- Ip
Mask string - IP Address in CIDR notation e.g., 10.0.0.0/8.
- action
String | Ip
Action Type - Action to perform based on the match or no match of the IpMask.
- ip
Mask String - IP Address in CIDR notation e.g., 10.0.0.0/8.
- action
string | Ip
Action Type - Action to perform based on the match or no match of the IpMask.
- ip
Mask string - IP Address in CIDR notation e.g., 10.0.0.0/8.
- action
str | Ip
Action Type - Action to perform based on the match or no match of the IpMask.
- ip_
mask str - IP Address in CIDR notation e.g., 10.0.0.0/8.
InboundIpRuleResponse, InboundIpRuleResponseArgs
InputSchema, InputSchemaArgs
- Event
Grid Schema - EventGridSchema
- Custom
Event Schema - CustomEventSchema
- Cloud
Event Schema V1_0 - CloudEventSchemaV1_0
- Input
Schema Event Grid Schema - EventGridSchema
- Input
Schema Custom Event Schema - CustomEventSchema
- Input
Schema_Cloud Event Schema V1_0 - CloudEventSchemaV1_0
- Event
Grid Schema - EventGridSchema
- Custom
Event Schema - CustomEventSchema
- Cloud
Event Schema V1_0 - CloudEventSchemaV1_0
- Event
Grid Schema - EventGridSchema
- Custom
Event Schema - CustomEventSchema
- Cloud
Event Schema V1_0 - CloudEventSchemaV1_0
- EVENT_GRID_SCHEMA
- EventGridSchema
- CUSTOM_EVENT_SCHEMA
- CustomEventSchema
- CLOUD_EVENT_SCHEMA_V1_0
- CloudEventSchemaV1_0
- "Event
Grid Schema" - EventGridSchema
- "Custom
Event Schema" - CustomEventSchema
- "Cloud
Event Schema V1_0" - CloudEventSchemaV1_0
IpActionType, IpActionTypeArgs
- Allow
- Allow
- Ip
Action Type Allow - Allow
- Allow
- Allow
- Allow
- Allow
- ALLOW
- Allow
- "Allow"
- Allow
JsonField, JsonFieldArgs
- Source
Field string - Name of a field in the input event schema that's to be used as the source of a mapping.
- Source
Field string - Name of a field in the input event schema that's to be used as the source of a mapping.
- source
Field String - Name of a field in the input event schema that's to be used as the source of a mapping.
- source
Field string - Name of a field in the input event schema that's to be used as the source of a mapping.
- source_
field str - Name of a field in the input event schema that's to be used as the source of a mapping.
- source
Field String - Name of a field in the input event schema that's to be used as the source of a mapping.
JsonFieldResponse, JsonFieldResponseArgs
- Source
Field string - Name of a field in the input event schema that's to be used as the source of a mapping.
- Source
Field string - Name of a field in the input event schema that's to be used as the source of a mapping.
- source
Field String - Name of a field in the input event schema that's to be used as the source of a mapping.
- source
Field string - Name of a field in the input event schema that's to be used as the source of a mapping.
- source_
field str - Name of a field in the input event schema that's to be used as the source of a mapping.
- source
Field String - Name of a field in the input event schema that's to be used as the source of a mapping.
JsonFieldWithDefault, JsonFieldWithDefaultArgs
- Default
Value string - The default value to be used for mapping when a SourceField is not provided or if there's no property with the specified name in the published JSON event payload.
- Source
Field string - Name of a field in the input event schema that's to be used as the source of a mapping.
- Default
Value string - The default value to be used for mapping when a SourceField is not provided or if there's no property with the specified name in the published JSON event payload.
- Source
Field string - Name of a field in the input event schema that's to be used as the source of a mapping.
- default
Value String - The default value to be used for mapping when a SourceField is not provided or if there's no property with the specified name in the published JSON event payload.
- source
Field String - Name of a field in the input event schema that's to be used as the source of a mapping.
- default
Value string - The default value to be used for mapping when a SourceField is not provided or if there's no property with the specified name in the published JSON event payload.
- source
Field string - Name of a field in the input event schema that's to be used as the source of a mapping.
- default_
value str - The default value to be used for mapping when a SourceField is not provided or if there's no property with the specified name in the published JSON event payload.
- source_
field str - Name of a field in the input event schema that's to be used as the source of a mapping.
- default
Value String - The default value to be used for mapping when a SourceField is not provided or if there's no property with the specified name in the published JSON event payload.
- source
Field String - Name of a field in the input event schema that's to be used as the source of a mapping.
JsonFieldWithDefaultResponse, JsonFieldWithDefaultResponseArgs
- Default
Value string - The default value to be used for mapping when a SourceField is not provided or if there's no property with the specified name in the published JSON event payload.
- Source
Field string - Name of a field in the input event schema that's to be used as the source of a mapping.
- Default
Value string - The default value to be used for mapping when a SourceField is not provided or if there's no property with the specified name in the published JSON event payload.
- Source
Field string - Name of a field in the input event schema that's to be used as the source of a mapping.
- default
Value String - The default value to be used for mapping when a SourceField is not provided or if there's no property with the specified name in the published JSON event payload.
- source
Field String - Name of a field in the input event schema that's to be used as the source of a mapping.
- default
Value string - The default value to be used for mapping when a SourceField is not provided or if there's no property with the specified name in the published JSON event payload.
- source
Field string - Name of a field in the input event schema that's to be used as the source of a mapping.
- default_
value str - The default value to be used for mapping when a SourceField is not provided or if there's no property with the specified name in the published JSON event payload.
- source_
field str - Name of a field in the input event schema that's to be used as the source of a mapping.
- default
Value String - The default value to be used for mapping when a SourceField is not provided or if there's no property with the specified name in the published JSON event payload.
- source
Field String - Name of a field in the input event schema that's to be used as the source of a mapping.
JsonInputSchemaMapping, JsonInputSchemaMappingArgs
- Data
Version Pulumi.Azure Native. Event Grid. Inputs. Json Field With Default - The mapping information for the DataVersion property of the Event Grid Event.
- Event
Time Pulumi.Azure Native. Event Grid. Inputs. Json Field - The mapping information for the EventTime property of the Event Grid Event.
- Event
Type Pulumi.Azure Native. Event Grid. Inputs. Json Field With Default - The mapping information for the EventType property of the Event Grid Event.
- Id
Pulumi.
Azure Native. Event Grid. Inputs. Json Field - The mapping information for the Id property of the Event Grid Event.
- Subject
Pulumi.
Azure Native. Event Grid. Inputs. Json Field With Default - The mapping information for the Subject property of the Event Grid Event.
- Topic
Pulumi.
Azure Native. Event Grid. Inputs. Json Field - The mapping information for the Topic property of the Event Grid Event.
- Data
Version JsonField With Default - The mapping information for the DataVersion property of the Event Grid Event.
- Event
Time JsonField - The mapping information for the EventTime property of the Event Grid Event.
- Event
Type JsonField With Default - The mapping information for the EventType property of the Event Grid Event.
- Id
Json
Field - The mapping information for the Id property of the Event Grid Event.
- Subject
Json
Field With Default - The mapping information for the Subject property of the Event Grid Event.
- Topic
Json
Field - The mapping information for the Topic property of the Event Grid Event.
- data
Version JsonField With Default - The mapping information for the DataVersion property of the Event Grid Event.
- event
Time JsonField - The mapping information for the EventTime property of the Event Grid Event.
- event
Type JsonField With Default - The mapping information for the EventType property of the Event Grid Event.
- id
Json
Field - The mapping information for the Id property of the Event Grid Event.
- subject
Json
Field With Default - The mapping information for the Subject property of the Event Grid Event.
- topic
Json
Field - The mapping information for the Topic property of the Event Grid Event.
- data
Version JsonField With Default - The mapping information for the DataVersion property of the Event Grid Event.
- event
Time JsonField - The mapping information for the EventTime property of the Event Grid Event.
- event
Type JsonField With Default - The mapping information for the EventType property of the Event Grid Event.
- id
Json
Field - The mapping information for the Id property of the Event Grid Event.
- subject
Json
Field With Default - The mapping information for the Subject property of the Event Grid Event.
- topic
Json
Field - The mapping information for the Topic property of the Event Grid Event.
- data_
version JsonField With Default - The mapping information for the DataVersion property of the Event Grid Event.
- event_
time JsonField - The mapping information for the EventTime property of the Event Grid Event.
- event_
type JsonField With Default - The mapping information for the EventType property of the Event Grid Event.
- id
Json
Field - The mapping information for the Id property of the Event Grid Event.
- subject
Json
Field With Default - The mapping information for the Subject property of the Event Grid Event.
- topic
Json
Field - The mapping information for the Topic property of the Event Grid Event.
- data
Version Property Map - The mapping information for the DataVersion property of the Event Grid Event.
- event
Time Property Map - The mapping information for the EventTime property of the Event Grid Event.
- event
Type Property Map - The mapping information for the EventType property of the Event Grid Event.
- id Property Map
- The mapping information for the Id property of the Event Grid Event.
- subject Property Map
- The mapping information for the Subject property of the Event Grid Event.
- topic Property Map
- The mapping information for the Topic property of the Event Grid Event.
JsonInputSchemaMappingResponse, JsonInputSchemaMappingResponseArgs
- Data
Version Pulumi.Azure Native. Event Grid. Inputs. Json Field With Default Response - The mapping information for the DataVersion property of the Event Grid Event.
- Event
Time Pulumi.Azure Native. Event Grid. Inputs. Json Field Response - The mapping information for the EventTime property of the Event Grid Event.
- Event
Type Pulumi.Azure Native. Event Grid. Inputs. Json Field With Default Response - The mapping information for the EventType property of the Event Grid Event.
- Id
Pulumi.
Azure Native. Event Grid. Inputs. Json Field Response - The mapping information for the Id property of the Event Grid Event.
- Subject
Pulumi.
Azure Native. Event Grid. Inputs. Json Field With Default Response - The mapping information for the Subject property of the Event Grid Event.
- Topic
Pulumi.
Azure Native. Event Grid. Inputs. Json Field Response - The mapping information for the Topic property of the Event Grid Event.
- Data
Version JsonField With Default Response - The mapping information for the DataVersion property of the Event Grid Event.
- Event
Time JsonField Response - The mapping information for the EventTime property of the Event Grid Event.
- Event
Type JsonField With Default Response - The mapping information for the EventType property of the Event Grid Event.
- Id
Json
Field Response - The mapping information for the Id property of the Event Grid Event.
- Subject
Json
Field With Default Response - The mapping information for the Subject property of the Event Grid Event.
- Topic
Json
Field Response - The mapping information for the Topic property of the Event Grid Event.
- data
Version JsonField With Default Response - The mapping information for the DataVersion property of the Event Grid Event.
- event
Time JsonField Response - The mapping information for the EventTime property of the Event Grid Event.
- event
Type JsonField With Default Response - The mapping information for the EventType property of the Event Grid Event.
- id
Json
Field Response - The mapping information for the Id property of the Event Grid Event.
- subject
Json
Field With Default Response - The mapping information for the Subject property of the Event Grid Event.
- topic
Json
Field Response - The mapping information for the Topic property of the Event Grid Event.
- data
Version JsonField With Default Response - The mapping information for the DataVersion property of the Event Grid Event.
- event
Time JsonField Response - The mapping information for the EventTime property of the Event Grid Event.
- event
Type JsonField With Default Response - The mapping information for the EventType property of the Event Grid Event.
- id
Json
Field Response - The mapping information for the Id property of the Event Grid Event.
- subject
Json
Field With Default Response - The mapping information for the Subject property of the Event Grid Event.
- topic
Json
Field Response - The mapping information for the Topic property of the Event Grid Event.
- data_
version JsonField With Default Response - The mapping information for the DataVersion property of the Event Grid Event.
- event_
time JsonField Response - The mapping information for the EventTime property of the Event Grid Event.
- event_
type JsonField With Default Response - The mapping information for the EventType property of the Event Grid Event.
- id
Json
Field Response - The mapping information for the Id property of the Event Grid Event.
- subject
Json
Field With Default Response - The mapping information for the Subject property of the Event Grid Event.
- topic
Json
Field Response - The mapping information for the Topic property of the Event Grid Event.
- data
Version Property Map - The mapping information for the DataVersion property of the Event Grid Event.
- event
Time Property Map - The mapping information for the EventTime property of the Event Grid Event.
- event
Type Property Map - The mapping information for the EventType property of the Event Grid Event.
- id Property Map
- The mapping information for the Id property of the Event Grid Event.
- subject Property Map
- The mapping information for the Subject property of the Event Grid Event.
- topic Property Map
- The mapping information for the Topic property of the Event Grid Event.
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs
- Id string
- Fully qualified identifier of the resource.
- Name string
- Name of the resource.
- Type string
- Type of the resource.
- Group
Ids List<string> - GroupIds from the private link service resource.
- Private
Endpoint Pulumi.Azure Native. Event Grid. Inputs. Private Endpoint Response - The Private Endpoint resource for this Connection.
- Private
Link Pulumi.Service Connection State Azure Native. Event Grid. Inputs. Connection State Response - Details about the state of the connection.
- Provisioning
State string - Provisioning state of the Private Endpoint Connection.
- Id string
- Fully qualified identifier of the resource.
- Name string
- Name of the resource.
- Type string
- Type of the resource.
- Group
Ids []string - GroupIds from the private link service resource.
- Private
Endpoint PrivateEndpoint Response - The Private Endpoint resource for this Connection.
- Private
Link ConnectionService Connection State State Response - Details about the state of the connection.
- Provisioning
State string - Provisioning state of the Private Endpoint Connection.
- id String
- Fully qualified identifier of the resource.
- name String
- Name of the resource.
- type String
- Type of the resource.
- group
Ids List<String> - GroupIds from the private link service resource.
- private
Endpoint PrivateEndpoint Response - The Private Endpoint resource for this Connection.
- private
Link ConnectionService Connection State State Response - Details about the state of the connection.
- provisioning
State String - Provisioning state of the Private Endpoint Connection.
- id string
- Fully qualified identifier of the resource.
- name string
- Name of the resource.
- type string
- Type of the resource.
- group
Ids string[] - GroupIds from the private link service resource.
- private
Endpoint PrivateEndpoint Response - The Private Endpoint resource for this Connection.
- private
Link ConnectionService Connection State State Response - Details about the state of the connection.
- provisioning
State string - Provisioning state of the Private Endpoint Connection.
- id str
- Fully qualified identifier of the resource.
- name str
- Name of the resource.
- type str
- Type of the resource.
- group_
ids Sequence[str] - GroupIds from the private link service resource.
- private_
endpoint PrivateEndpoint Response - The Private Endpoint resource for this Connection.
- private_
link_ Connectionservice_ connection_ state State Response - Details about the state of the connection.
- provisioning_
state str - Provisioning state of the Private Endpoint Connection.
- id String
- Fully qualified identifier of the resource.
- name String
- Name of the resource.
- type String
- Type of the resource.
- group
Ids List<String> - GroupIds from the private link service resource.
- private
Endpoint Property Map - The Private Endpoint resource for this Connection.
- private
Link Property MapService Connection State - Details about the state of the connection.
- provisioning
State String - Provisioning state of the Private Endpoint Connection.
PrivateEndpointResponse, PrivateEndpointResponseArgs
- Id string
- The ARM identifier for Private Endpoint.
- Id string
- The ARM identifier for Private Endpoint.
- id String
- The ARM identifier for Private Endpoint.
- id string
- The ARM identifier for Private Endpoint.
- id str
- The ARM identifier for Private Endpoint.
- id String
- The ARM identifier for Private Endpoint.
PublicNetworkAccess, PublicNetworkAccessArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Public
Network Access Enabled - Enabled
- Public
Network Access Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserIdentityProperties, UserIdentityPropertiesArgs
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
- client
Id string - The client id of user assigned identity.
- principal
Id string - The principal id of user assigned identity.
- client_
id str - The client id of user assigned identity.
- principal_
id str - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
UserIdentityPropertiesResponse, UserIdentityPropertiesResponseArgs
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
- client
Id string - The client id of user assigned identity.
- principal
Id string - The principal id of user assigned identity.
- client_
id str - The client id of user assigned identity.
- principal_
id str - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:eventgrid:Domain exampledomain1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/domains/{domainName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0