azure-native.eventgrid.Channel
Explore with Pulumi AI
Channel info. Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2021-10-15-preview.
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview.
Example Usage
Channels_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var channel = new AzureNative.EventGrid.Channel("channel", new()
{
ChannelName = "exampleChannelName1",
ChannelType = AzureNative.EventGrid.ChannelType.PartnerTopic,
ExpirationTimeIfNotActivatedUtc = "2021-10-21T22:50:25.410433Z",
MessageForActivation = "Example message to approver",
PartnerNamespaceName = "examplePartnerNamespaceName1",
PartnerTopicInfo = new AzureNative.EventGrid.Inputs.PartnerTopicInfoArgs
{
AzureSubscriptionId = "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
Name = "examplePartnerTopic1",
ResourceGroupName = "examplerg2",
Source = "ContosoCorp.Accounts.User1",
},
ResourceGroupName = "examplerg",
});
});
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.NewChannel(ctx, "channel", &eventgrid.ChannelArgs{
ChannelName: pulumi.String("exampleChannelName1"),
ChannelType: pulumi.String(eventgrid.ChannelTypePartnerTopic),
ExpirationTimeIfNotActivatedUtc: pulumi.String("2021-10-21T22:50:25.410433Z"),
MessageForActivation: pulumi.String("Example message to approver"),
PartnerNamespaceName: pulumi.String("examplePartnerNamespaceName1"),
PartnerTopicInfo: &eventgrid.PartnerTopicInfoArgs{
AzureSubscriptionId: pulumi.String("5b4b650e-28b9-4790-b3ab-ddbd88d727c4"),
Name: pulumi.String("examplePartnerTopic1"),
ResourceGroupName: pulumi.String("examplerg2"),
Source: pulumi.String("ContosoCorp.Accounts.User1"),
},
ResourceGroupName: pulumi.String("examplerg"),
})
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.Channel;
import com.pulumi.azurenative.eventgrid.ChannelArgs;
import com.pulumi.azurenative.eventgrid.inputs.PartnerTopicInfoArgs;
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 channel = new Channel("channel", ChannelArgs.builder()
.channelName("exampleChannelName1")
.channelType("PartnerTopic")
.expirationTimeIfNotActivatedUtc("2021-10-21T22:50:25.410433Z")
.messageForActivation("Example message to approver")
.partnerNamespaceName("examplePartnerNamespaceName1")
.partnerTopicInfo(PartnerTopicInfoArgs.builder()
.azureSubscriptionId("5b4b650e-28b9-4790-b3ab-ddbd88d727c4")
.name("examplePartnerTopic1")
.resourceGroupName("examplerg2")
.source("ContosoCorp.Accounts.User1")
.build())
.resourceGroupName("examplerg")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
channel = azure_native.eventgrid.Channel("channel",
channel_name="exampleChannelName1",
channel_type=azure_native.eventgrid.ChannelType.PARTNER_TOPIC,
expiration_time_if_not_activated_utc="2021-10-21T22:50:25.410433Z",
message_for_activation="Example message to approver",
partner_namespace_name="examplePartnerNamespaceName1",
partner_topic_info={
"azure_subscription_id": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
"name": "examplePartnerTopic1",
"resource_group_name": "examplerg2",
"source": "ContosoCorp.Accounts.User1",
},
resource_group_name="examplerg")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const channel = new azure_native.eventgrid.Channel("channel", {
channelName: "exampleChannelName1",
channelType: azure_native.eventgrid.ChannelType.PartnerTopic,
expirationTimeIfNotActivatedUtc: "2021-10-21T22:50:25.410433Z",
messageForActivation: "Example message to approver",
partnerNamespaceName: "examplePartnerNamespaceName1",
partnerTopicInfo: {
azureSubscriptionId: "5b4b650e-28b9-4790-b3ab-ddbd88d727c4",
name: "examplePartnerTopic1",
resourceGroupName: "examplerg2",
source: "ContosoCorp.Accounts.User1",
},
resourceGroupName: "examplerg",
});
resources:
channel:
type: azure-native:eventgrid:Channel
properties:
channelName: exampleChannelName1
channelType: PartnerTopic
expirationTimeIfNotActivatedUtc: 2021-10-21T22:50:25.410433Z
messageForActivation: Example message to approver
partnerNamespaceName: examplePartnerNamespaceName1
partnerTopicInfo:
azureSubscriptionId: 5b4b650e-28b9-4790-b3ab-ddbd88d727c4
name: examplePartnerTopic1
resourceGroupName: examplerg2
source: ContosoCorp.Accounts.User1
resourceGroupName: examplerg
Create Channel Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Channel(name: string, args: ChannelArgs, opts?: CustomResourceOptions);
@overload
def Channel(resource_name: str,
args: ChannelArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Channel(resource_name: str,
opts: Optional[ResourceOptions] = None,
partner_namespace_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
channel_name: Optional[str] = None,
channel_type: Optional[Union[str, ChannelType]] = None,
expiration_time_if_not_activated_utc: Optional[str] = None,
message_for_activation: Optional[str] = None,
partner_topic_info: Optional[PartnerTopicInfoArgs] = None,
provisioning_state: Optional[Union[str, ChannelProvisioningState]] = None,
readiness_state: Optional[Union[str, ReadinessState]] = None)
func NewChannel(ctx *Context, name string, args ChannelArgs, opts ...ResourceOption) (*Channel, error)
public Channel(string name, ChannelArgs args, CustomResourceOptions? opts = null)
public Channel(String name, ChannelArgs args)
public Channel(String name, ChannelArgs args, CustomResourceOptions options)
type: azure-native:eventgrid:Channel
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 ChannelArgs
- 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 ChannelArgs
- 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 ChannelArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ChannelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ChannelArgs
- 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 examplechannelResourceResourceFromEventgrid = new AzureNative.EventGrid.Channel("examplechannelResourceResourceFromEventgrid", new()
{
PartnerNamespaceName = "string",
ResourceGroupName = "string",
ChannelName = "string",
ChannelType = "string",
ExpirationTimeIfNotActivatedUtc = "string",
MessageForActivation = "string",
PartnerTopicInfo = new AzureNative.EventGrid.Inputs.PartnerTopicInfoArgs
{
AzureSubscriptionId = "string",
EventTypeInfo = new AzureNative.EventGrid.Inputs.EventTypeInfoArgs
{
InlineEventTypes =
{
{ "string", new AzureNative.EventGrid.Inputs.InlineEventPropertiesArgs
{
DataSchemaUrl = "string",
Description = "string",
DisplayName = "string",
DocumentationUrl = "string",
} },
},
Kind = "string",
},
Name = "string",
ResourceGroupName = "string",
Source = "string",
},
ProvisioningState = "string",
ReadinessState = "string",
});
example, err := eventgrid.NewChannel(ctx, "examplechannelResourceResourceFromEventgrid", &eventgrid.ChannelArgs{
PartnerNamespaceName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
ChannelName: pulumi.String("string"),
ChannelType: pulumi.String("string"),
ExpirationTimeIfNotActivatedUtc: pulumi.String("string"),
MessageForActivation: pulumi.String("string"),
PartnerTopicInfo: &eventgrid.PartnerTopicInfoArgs{
AzureSubscriptionId: pulumi.String("string"),
EventTypeInfo: &eventgrid.EventTypeInfoArgs{
InlineEventTypes: eventgrid.InlineEventPropertiesMap{
"string": &eventgrid.InlineEventPropertiesArgs{
DataSchemaUrl: pulumi.String("string"),
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
DocumentationUrl: pulumi.String("string"),
},
},
Kind: pulumi.String("string"),
},
Name: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Source: pulumi.String("string"),
},
ProvisioningState: pulumi.String("string"),
ReadinessState: pulumi.String("string"),
})
var examplechannelResourceResourceFromEventgrid = new Channel("examplechannelResourceResourceFromEventgrid", ChannelArgs.builder()
.partnerNamespaceName("string")
.resourceGroupName("string")
.channelName("string")
.channelType("string")
.expirationTimeIfNotActivatedUtc("string")
.messageForActivation("string")
.partnerTopicInfo(PartnerTopicInfoArgs.builder()
.azureSubscriptionId("string")
.eventTypeInfo(EventTypeInfoArgs.builder()
.inlineEventTypes(Map.of("string", Map.ofEntries(
Map.entry("dataSchemaUrl", "string"),
Map.entry("description", "string"),
Map.entry("displayName", "string"),
Map.entry("documentationUrl", "string")
)))
.kind("string")
.build())
.name("string")
.resourceGroupName("string")
.source("string")
.build())
.provisioningState("string")
.readinessState("string")
.build());
examplechannel_resource_resource_from_eventgrid = azure_native.eventgrid.Channel("examplechannelResourceResourceFromEventgrid",
partner_namespace_name="string",
resource_group_name="string",
channel_name="string",
channel_type="string",
expiration_time_if_not_activated_utc="string",
message_for_activation="string",
partner_topic_info={
"azureSubscriptionId": "string",
"eventTypeInfo": {
"inlineEventTypes": {
"string": {
"dataSchemaUrl": "string",
"description": "string",
"displayName": "string",
"documentationUrl": "string",
},
},
"kind": "string",
},
"name": "string",
"resourceGroupName": "string",
"source": "string",
},
provisioning_state="string",
readiness_state="string")
const examplechannelResourceResourceFromEventgrid = new azure_native.eventgrid.Channel("examplechannelResourceResourceFromEventgrid", {
partnerNamespaceName: "string",
resourceGroupName: "string",
channelName: "string",
channelType: "string",
expirationTimeIfNotActivatedUtc: "string",
messageForActivation: "string",
partnerTopicInfo: {
azureSubscriptionId: "string",
eventTypeInfo: {
inlineEventTypes: {
string: {
dataSchemaUrl: "string",
description: "string",
displayName: "string",
documentationUrl: "string",
},
},
kind: "string",
},
name: "string",
resourceGroupName: "string",
source: "string",
},
provisioningState: "string",
readinessState: "string",
});
type: azure-native:eventgrid:Channel
properties:
channelName: string
channelType: string
expirationTimeIfNotActivatedUtc: string
messageForActivation: string
partnerNamespaceName: string
partnerTopicInfo:
azureSubscriptionId: string
eventTypeInfo:
inlineEventTypes:
string:
dataSchemaUrl: string
description: string
displayName: string
documentationUrl: string
kind: string
name: string
resourceGroupName: string
source: string
provisioningState: string
readinessState: string
resourceGroupName: string
Channel 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 Channel resource accepts the following input properties:
- Partner
Namespace stringName - Name of the partner namespace.
- Resource
Group stringName - The name of the resource group within the partners subscription.
- Channel
Name string - Name of the channel.
- Channel
Type string | Pulumi.Azure Native. Event Grid. Channel Type - The type of the event channel which represents the direction flow of events.
- Expiration
Time stringIf Not Activated Utc - Expiration time of the channel. If this timer expires while the corresponding partner topic is never activated, the channel and corresponding partner topic are deleted.
- Message
For stringActivation - Context or helpful message that can be used during the approval process by the subscriber.
- Partner
Topic Pulumi.Info Azure Native. Event Grid. Inputs. Partner Topic Info - This property should be populated when channelType is PartnerTopic and represents information about the partner topic resource corresponding to the channel.
- Provisioning
State string | Pulumi.Azure Native. Event Grid. Channel Provisioning State - Provisioning state of the channel.
- Readiness
State string | Pulumi.Azure Native. Event Grid. Readiness State - The readiness state of the corresponding partner topic.
- Partner
Namespace stringName - Name of the partner namespace.
- Resource
Group stringName - The name of the resource group within the partners subscription.
- Channel
Name string - Name of the channel.
- Channel
Type string | ChannelType - The type of the event channel which represents the direction flow of events.
- Expiration
Time stringIf Not Activated Utc - Expiration time of the channel. If this timer expires while the corresponding partner topic is never activated, the channel and corresponding partner topic are deleted.
- Message
For stringActivation - Context or helpful message that can be used during the approval process by the subscriber.
- Partner
Topic PartnerInfo Topic Info Args - This property should be populated when channelType is PartnerTopic and represents information about the partner topic resource corresponding to the channel.
- Provisioning
State string | ChannelProvisioning State - Provisioning state of the channel.
- Readiness
State string | ReadinessState - The readiness state of the corresponding partner topic.
- partner
Namespace StringName - Name of the partner namespace.
- resource
Group StringName - The name of the resource group within the partners subscription.
- channel
Name String - Name of the channel.
- channel
Type String | ChannelType - The type of the event channel which represents the direction flow of events.
- expiration
Time StringIf Not Activated Utc - Expiration time of the channel. If this timer expires while the corresponding partner topic is never activated, the channel and corresponding partner topic are deleted.
- message
For StringActivation - Context or helpful message that can be used during the approval process by the subscriber.
- partner
Topic PartnerInfo Topic Info - This property should be populated when channelType is PartnerTopic and represents information about the partner topic resource corresponding to the channel.
- provisioning
State String | ChannelProvisioning State - Provisioning state of the channel.
- readiness
State String | ReadinessState - The readiness state of the corresponding partner topic.
- partner
Namespace stringName - Name of the partner namespace.
- resource
Group stringName - The name of the resource group within the partners subscription.
- channel
Name string - Name of the channel.
- channel
Type string | ChannelType - The type of the event channel which represents the direction flow of events.
- expiration
Time stringIf Not Activated Utc - Expiration time of the channel. If this timer expires while the corresponding partner topic is never activated, the channel and corresponding partner topic are deleted.
- message
For stringActivation - Context or helpful message that can be used during the approval process by the subscriber.
- partner
Topic PartnerInfo Topic Info - This property should be populated when channelType is PartnerTopic and represents information about the partner topic resource corresponding to the channel.
- provisioning
State string | ChannelProvisioning State - Provisioning state of the channel.
- readiness
State string | ReadinessState - The readiness state of the corresponding partner topic.
- partner_
namespace_ strname - Name of the partner namespace.
- resource_
group_ strname - The name of the resource group within the partners subscription.
- channel_
name str - Name of the channel.
- channel_
type str | ChannelType - The type of the event channel which represents the direction flow of events.
- expiration_
time_ strif_ not_ activated_ utc - Expiration time of the channel. If this timer expires while the corresponding partner topic is never activated, the channel and corresponding partner topic are deleted.
- message_
for_ stractivation - Context or helpful message that can be used during the approval process by the subscriber.
- partner_
topic_ Partnerinfo Topic Info Args - This property should be populated when channelType is PartnerTopic and represents information about the partner topic resource corresponding to the channel.
- provisioning_
state str | ChannelProvisioning State - Provisioning state of the channel.
- readiness_
state str | ReadinessState - The readiness state of the corresponding partner topic.
- partner
Namespace StringName - Name of the partner namespace.
- resource
Group StringName - The name of the resource group within the partners subscription.
- channel
Name String - Name of the channel.
- channel
Type String | "PartnerTopic" - The type of the event channel which represents the direction flow of events.
- expiration
Time StringIf Not Activated Utc - Expiration time of the channel. If this timer expires while the corresponding partner topic is never activated, the channel and corresponding partner topic are deleted.
- message
For StringActivation - Context or helpful message that can be used during the approval process by the subscriber.
- partner
Topic Property MapInfo - This property should be populated when channelType is PartnerTopic and represents information about the partner topic resource corresponding to the channel.
- provisioning
State String | "Creating" | "Updating" | "Deleting" | "Succeeded" | "Canceled" | "Failed" | "IdleDue To Mirrored Partner Topic Deletion" - Provisioning state of the channel.
- readiness
State String | "NeverActivated" | "Activated" - The readiness state of the corresponding partner topic.
Outputs
All input properties are implicitly available as output properties. Additionally, the Channel resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the resource.
- System
Data Pulumi.Azure Native. Event Grid. Outputs. System Data Response - The system metadata relating to Channel resource.
- Type string
- Type of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the resource.
- System
Data SystemData Response - The system metadata relating to Channel resource.
- Type string
- Type of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the resource.
- system
Data SystemData Response - The system metadata relating to Channel resource.
- type String
- Type of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of the resource.
- system
Data SystemData Response - The system metadata relating to Channel resource.
- type string
- Type of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of the resource.
- system_
data SystemData Response - The system metadata relating to Channel resource.
- type str
- Type of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the resource.
- system
Data Property Map - The system metadata relating to Channel resource.
- type String
- Type of the resource.
Supporting Types
ChannelProvisioningState, ChannelProvisioningStateArgs
- Creating
- Creating
- Updating
- Updating
- Deleting
- Deleting
- Succeeded
- Succeeded
- Canceled
- Canceled
- Failed
- Failed
- Idle
Due To Mirrored Partner Topic Deletion - IdleDueToMirroredPartnerTopicDeletion
- Channel
Provisioning State Creating - Creating
- Channel
Provisioning State Updating - Updating
- Channel
Provisioning State Deleting - Deleting
- Channel
Provisioning State Succeeded - Succeeded
- Channel
Provisioning State Canceled - Canceled
- Channel
Provisioning State Failed - Failed
- Channel
Provisioning State Idle Due To Mirrored Partner Topic Deletion - IdleDueToMirroredPartnerTopicDeletion
- Creating
- Creating
- Updating
- Updating
- Deleting
- Deleting
- Succeeded
- Succeeded
- Canceled
- Canceled
- Failed
- Failed
- Idle
Due To Mirrored Partner Topic Deletion - IdleDueToMirroredPartnerTopicDeletion
- Creating
- Creating
- Updating
- Updating
- Deleting
- Deleting
- Succeeded
- Succeeded
- Canceled
- Canceled
- Failed
- Failed
- Idle
Due To Mirrored Partner Topic Deletion - IdleDueToMirroredPartnerTopicDeletion
- CREATING
- Creating
- UPDATING
- Updating
- DELETING
- Deleting
- SUCCEEDED
- Succeeded
- CANCELED
- Canceled
- FAILED
- Failed
- IDLE_DUE_TO_MIRRORED_PARTNER_TOPIC_DELETION
- IdleDueToMirroredPartnerTopicDeletion
- "Creating"
- Creating
- "Updating"
- Updating
- "Deleting"
- Deleting
- "Succeeded"
- Succeeded
- "Canceled"
- Canceled
- "Failed"
- Failed
- "Idle
Due To Mirrored Partner Topic Deletion" - IdleDueToMirroredPartnerTopicDeletion
ChannelType, ChannelTypeArgs
- Partner
Topic - PartnerTopic
- Channel
Type Partner Topic - PartnerTopic
- Partner
Topic - PartnerTopic
- Partner
Topic - PartnerTopic
- PARTNER_TOPIC
- PartnerTopic
- "Partner
Topic" - PartnerTopic
EventDefinitionKind, EventDefinitionKindArgs
- Inline
- Inline
- Event
Definition Kind Inline - Inline
- Inline
- Inline
- Inline
- Inline
- INLINE
- Inline
- "Inline"
- Inline
EventTypeInfo, EventTypeInfoArgs
- Inline
Event Dictionary<string, Pulumi.Types Azure Native. Event Grid. Inputs. Inline Event Properties> - A collection of inline event types for the resource. The inline event type keys are of type string which represents the name of the event. An example of a valid inline event name is "Contoso.OrderCreated". The inline event type values are of type InlineEventProperties and will contain additional information for every inline event type.
- Kind
string | Pulumi.
Azure Native. Event Grid. Event Definition Kind - The kind of event type used.
- Inline
Event map[string]InlineTypes Event Properties - A collection of inline event types for the resource. The inline event type keys are of type string which represents the name of the event. An example of a valid inline event name is "Contoso.OrderCreated". The inline event type values are of type InlineEventProperties and will contain additional information for every inline event type.
- Kind
string | Event
Definition Kind - The kind of event type used.
- inline
Event Map<String,InlineTypes Event Properties> - A collection of inline event types for the resource. The inline event type keys are of type string which represents the name of the event. An example of a valid inline event name is "Contoso.OrderCreated". The inline event type values are of type InlineEventProperties and will contain additional information for every inline event type.
- kind
String | Event
Definition Kind - The kind of event type used.
- inline
Event {[key: string]: InlineTypes Event Properties} - A collection of inline event types for the resource. The inline event type keys are of type string which represents the name of the event. An example of a valid inline event name is "Contoso.OrderCreated". The inline event type values are of type InlineEventProperties and will contain additional information for every inline event type.
- kind
string | Event
Definition Kind - The kind of event type used.
- inline_
event_ Mapping[str, Inlinetypes Event Properties] - A collection of inline event types for the resource. The inline event type keys are of type string which represents the name of the event. An example of a valid inline event name is "Contoso.OrderCreated". The inline event type values are of type InlineEventProperties and will contain additional information for every inline event type.
- kind
str | Event
Definition Kind - The kind of event type used.
- inline
Event Map<Property Map>Types - A collection of inline event types for the resource. The inline event type keys are of type string which represents the name of the event. An example of a valid inline event name is "Contoso.OrderCreated". The inline event type values are of type InlineEventProperties and will contain additional information for every inline event type.
- kind String | "Inline"
- The kind of event type used.
EventTypeInfoResponse, EventTypeInfoResponseArgs
- Inline
Event Dictionary<string, Pulumi.Types Azure Native. Event Grid. Inputs. Inline Event Properties Response> - A collection of inline event types for the resource. The inline event type keys are of type string which represents the name of the event. An example of a valid inline event name is "Contoso.OrderCreated". The inline event type values are of type InlineEventProperties and will contain additional information for every inline event type.
- Kind string
- The kind of event type used.
- Inline
Event map[string]InlineTypes Event Properties Response - A collection of inline event types for the resource. The inline event type keys are of type string which represents the name of the event. An example of a valid inline event name is "Contoso.OrderCreated". The inline event type values are of type InlineEventProperties and will contain additional information for every inline event type.
- Kind string
- The kind of event type used.
- inline
Event Map<String,InlineTypes Event Properties Response> - A collection of inline event types for the resource. The inline event type keys are of type string which represents the name of the event. An example of a valid inline event name is "Contoso.OrderCreated". The inline event type values are of type InlineEventProperties and will contain additional information for every inline event type.
- kind String
- The kind of event type used.
- inline
Event {[key: string]: InlineTypes Event Properties Response} - A collection of inline event types for the resource. The inline event type keys are of type string which represents the name of the event. An example of a valid inline event name is "Contoso.OrderCreated". The inline event type values are of type InlineEventProperties and will contain additional information for every inline event type.
- kind string
- The kind of event type used.
- inline_
event_ Mapping[str, Inlinetypes Event Properties Response] - A collection of inline event types for the resource. The inline event type keys are of type string which represents the name of the event. An example of a valid inline event name is "Contoso.OrderCreated". The inline event type values are of type InlineEventProperties and will contain additional information for every inline event type.
- kind str
- The kind of event type used.
- inline
Event Map<Property Map>Types - A collection of inline event types for the resource. The inline event type keys are of type string which represents the name of the event. An example of a valid inline event name is "Contoso.OrderCreated". The inline event type values are of type InlineEventProperties and will contain additional information for every inline event type.
- kind String
- The kind of event type used.
InlineEventProperties, InlineEventPropertiesArgs
- Data
Schema stringUrl - The dataSchemaUrl for the inline event.
- Description string
- The description for the inline event.
- Display
Name string - The displayName for the inline event.
- Documentation
Url string - The documentationUrl for the inline event.
- Data
Schema stringUrl - The dataSchemaUrl for the inline event.
- Description string
- The description for the inline event.
- Display
Name string - The displayName for the inline event.
- Documentation
Url string - The documentationUrl for the inline event.
- data
Schema StringUrl - The dataSchemaUrl for the inline event.
- description String
- The description for the inline event.
- display
Name String - The displayName for the inline event.
- documentation
Url String - The documentationUrl for the inline event.
- data
Schema stringUrl - The dataSchemaUrl for the inline event.
- description string
- The description for the inline event.
- display
Name string - The displayName for the inline event.
- documentation
Url string - The documentationUrl for the inline event.
- data_
schema_ strurl - The dataSchemaUrl for the inline event.
- description str
- The description for the inline event.
- display_
name str - The displayName for the inline event.
- documentation_
url str - The documentationUrl for the inline event.
- data
Schema StringUrl - The dataSchemaUrl for the inline event.
- description String
- The description for the inline event.
- display
Name String - The displayName for the inline event.
- documentation
Url String - The documentationUrl for the inline event.
InlineEventPropertiesResponse, InlineEventPropertiesResponseArgs
- Data
Schema stringUrl - The dataSchemaUrl for the inline event.
- Description string
- The description for the inline event.
- Display
Name string - The displayName for the inline event.
- Documentation
Url string - The documentationUrl for the inline event.
- Data
Schema stringUrl - The dataSchemaUrl for the inline event.
- Description string
- The description for the inline event.
- Display
Name string - The displayName for the inline event.
- Documentation
Url string - The documentationUrl for the inline event.
- data
Schema StringUrl - The dataSchemaUrl for the inline event.
- description String
- The description for the inline event.
- display
Name String - The displayName for the inline event.
- documentation
Url String - The documentationUrl for the inline event.
- data
Schema stringUrl - The dataSchemaUrl for the inline event.
- description string
- The description for the inline event.
- display
Name string - The displayName for the inline event.
- documentation
Url string - The documentationUrl for the inline event.
- data_
schema_ strurl - The dataSchemaUrl for the inline event.
- description str
- The description for the inline event.
- display_
name str - The displayName for the inline event.
- documentation_
url str - The documentationUrl for the inline event.
- data
Schema StringUrl - The dataSchemaUrl for the inline event.
- description String
- The description for the inline event.
- display
Name String - The displayName for the inline event.
- documentation
Url String - The documentationUrl for the inline event.
PartnerTopicInfo, PartnerTopicInfoArgs
- Azure
Subscription stringId - Azure subscription ID of the subscriber. The partner topic associated with the channel will be created under this Azure subscription.
- Event
Type Pulumi.Info Azure Native. Event Grid. Inputs. Event Type Info - Event Type Information for the partner topic. This information is provided by the publisher and can be used by the subscriber to view different types of events that are published.
- Name string
- Name of the partner topic associated with the channel.
- Resource
Group stringName - Azure Resource Group of the subscriber. The partner topic associated with the channel will be created under this resource group.
- Source string
- The source information is provided by the publisher to determine the scope or context from which the events are originating. This information can be used by the subscriber during the approval process of the created partner topic.
- Azure
Subscription stringId - Azure subscription ID of the subscriber. The partner topic associated with the channel will be created under this Azure subscription.
- Event
Type EventInfo Type Info - Event Type Information for the partner topic. This information is provided by the publisher and can be used by the subscriber to view different types of events that are published.
- Name string
- Name of the partner topic associated with the channel.
- Resource
Group stringName - Azure Resource Group of the subscriber. The partner topic associated with the channel will be created under this resource group.
- Source string
- The source information is provided by the publisher to determine the scope or context from which the events are originating. This information can be used by the subscriber during the approval process of the created partner topic.
- azure
Subscription StringId - Azure subscription ID of the subscriber. The partner topic associated with the channel will be created under this Azure subscription.
- event
Type EventInfo Type Info - Event Type Information for the partner topic. This information is provided by the publisher and can be used by the subscriber to view different types of events that are published.
- name String
- Name of the partner topic associated with the channel.
- resource
Group StringName - Azure Resource Group of the subscriber. The partner topic associated with the channel will be created under this resource group.
- source String
- The source information is provided by the publisher to determine the scope or context from which the events are originating. This information can be used by the subscriber during the approval process of the created partner topic.
- azure
Subscription stringId - Azure subscription ID of the subscriber. The partner topic associated with the channel will be created under this Azure subscription.
- event
Type EventInfo Type Info - Event Type Information for the partner topic. This information is provided by the publisher and can be used by the subscriber to view different types of events that are published.
- name string
- Name of the partner topic associated with the channel.
- resource
Group stringName - Azure Resource Group of the subscriber. The partner topic associated with the channel will be created under this resource group.
- source string
- The source information is provided by the publisher to determine the scope or context from which the events are originating. This information can be used by the subscriber during the approval process of the created partner topic.
- azure_
subscription_ strid - Azure subscription ID of the subscriber. The partner topic associated with the channel will be created under this Azure subscription.
- event_
type_ Eventinfo Type Info - Event Type Information for the partner topic. This information is provided by the publisher and can be used by the subscriber to view different types of events that are published.
- name str
- Name of the partner topic associated with the channel.
- resource_
group_ strname - Azure Resource Group of the subscriber. The partner topic associated with the channel will be created under this resource group.
- source str
- The source information is provided by the publisher to determine the scope or context from which the events are originating. This information can be used by the subscriber during the approval process of the created partner topic.
- azure
Subscription StringId - Azure subscription ID of the subscriber. The partner topic associated with the channel will be created under this Azure subscription.
- event
Type Property MapInfo - Event Type Information for the partner topic. This information is provided by the publisher and can be used by the subscriber to view different types of events that are published.
- name String
- Name of the partner topic associated with the channel.
- resource
Group StringName - Azure Resource Group of the subscriber. The partner topic associated with the channel will be created under this resource group.
- source String
- The source information is provided by the publisher to determine the scope or context from which the events are originating. This information can be used by the subscriber during the approval process of the created partner topic.
PartnerTopicInfoResponse, PartnerTopicInfoResponseArgs
- Azure
Subscription stringId - Azure subscription ID of the subscriber. The partner topic associated with the channel will be created under this Azure subscription.
- Event
Type Pulumi.Info Azure Native. Event Grid. Inputs. Event Type Info Response - Event Type Information for the partner topic. This information is provided by the publisher and can be used by the subscriber to view different types of events that are published.
- Name string
- Name of the partner topic associated with the channel.
- Resource
Group stringName - Azure Resource Group of the subscriber. The partner topic associated with the channel will be created under this resource group.
- Source string
- The source information is provided by the publisher to determine the scope or context from which the events are originating. This information can be used by the subscriber during the approval process of the created partner topic.
- Azure
Subscription stringId - Azure subscription ID of the subscriber. The partner topic associated with the channel will be created under this Azure subscription.
- Event
Type EventInfo Type Info Response - Event Type Information for the partner topic. This information is provided by the publisher and can be used by the subscriber to view different types of events that are published.
- Name string
- Name of the partner topic associated with the channel.
- Resource
Group stringName - Azure Resource Group of the subscriber. The partner topic associated with the channel will be created under this resource group.
- Source string
- The source information is provided by the publisher to determine the scope or context from which the events are originating. This information can be used by the subscriber during the approval process of the created partner topic.
- azure
Subscription StringId - Azure subscription ID of the subscriber. The partner topic associated with the channel will be created under this Azure subscription.
- event
Type EventInfo Type Info Response - Event Type Information for the partner topic. This information is provided by the publisher and can be used by the subscriber to view different types of events that are published.
- name String
- Name of the partner topic associated with the channel.
- resource
Group StringName - Azure Resource Group of the subscriber. The partner topic associated with the channel will be created under this resource group.
- source String
- The source information is provided by the publisher to determine the scope or context from which the events are originating. This information can be used by the subscriber during the approval process of the created partner topic.
- azure
Subscription stringId - Azure subscription ID of the subscriber. The partner topic associated with the channel will be created under this Azure subscription.
- event
Type EventInfo Type Info Response - Event Type Information for the partner topic. This information is provided by the publisher and can be used by the subscriber to view different types of events that are published.
- name string
- Name of the partner topic associated with the channel.
- resource
Group stringName - Azure Resource Group of the subscriber. The partner topic associated with the channel will be created under this resource group.
- source string
- The source information is provided by the publisher to determine the scope or context from which the events are originating. This information can be used by the subscriber during the approval process of the created partner topic.
- azure_
subscription_ strid - Azure subscription ID of the subscriber. The partner topic associated with the channel will be created under this Azure subscription.
- event_
type_ Eventinfo Type Info Response - Event Type Information for the partner topic. This information is provided by the publisher and can be used by the subscriber to view different types of events that are published.
- name str
- Name of the partner topic associated with the channel.
- resource_
group_ strname - Azure Resource Group of the subscriber. The partner topic associated with the channel will be created under this resource group.
- source str
- The source information is provided by the publisher to determine the scope or context from which the events are originating. This information can be used by the subscriber during the approval process of the created partner topic.
- azure
Subscription StringId - Azure subscription ID of the subscriber. The partner topic associated with the channel will be created under this Azure subscription.
- event
Type Property MapInfo - Event Type Information for the partner topic. This information is provided by the publisher and can be used by the subscriber to view different types of events that are published.
- name String
- Name of the partner topic associated with the channel.
- resource
Group StringName - Azure Resource Group of the subscriber. The partner topic associated with the channel will be created under this resource group.
- source String
- The source information is provided by the publisher to determine the scope or context from which the events are originating. This information can be used by the subscriber during the approval process of the created partner topic.
ReadinessState, ReadinessStateArgs
- Never
Activated - NeverActivated
- Activated
- Activated
- Readiness
State Never Activated - NeverActivated
- Readiness
State Activated - Activated
- Never
Activated - NeverActivated
- Activated
- Activated
- Never
Activated - NeverActivated
- Activated
- Activated
- NEVER_ACTIVATED
- NeverActivated
- ACTIVATED
- Activated
- "Never
Activated" - NeverActivated
- "Activated"
- Activated
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.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:eventgrid:Channel exampleChannelName1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerNamespaces/{partnerNamespaceName}/channels/{channelName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0