1. Packages
  2. Azure Native
  3. API Docs
  4. providerhub
  5. NotificationRegistration
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi

azure-native.providerhub.NotificationRegistration

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi

    Uses Azure REST API version 2024-09-01. In version 2.x of the Azure Native provider, it used API version 2021-09-01-preview.

    Other available API versions: 2021-09-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native providerhub [ApiVersion]. See the version guide for details.

    Example Usage

    NotificationRegistrations_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var notificationRegistration = new AzureNative.ProviderHub.NotificationRegistration("notificationRegistration", new()
        {
            NotificationRegistrationName = "fooNotificationRegistration",
            Properties = new AzureNative.ProviderHub.Inputs.NotificationRegistrationPropertiesArgs
            {
                IncludedEvents = new[]
                {
                    "*/write",
                    "Microsoft.Contoso/employees/delete",
                },
                MessageScope = AzureNative.ProviderHub.MessageScope.RegisteredSubscriptions,
                NotificationEndpoints = new[]
                {
                    new AzureNative.ProviderHub.Inputs.NotificationEndpointArgs
                    {
                        Locations = new[]
                        {
                            "",
                            "East US",
                        },
                        NotificationDestination = "/subscriptions/ac6bcfb5-3dc1-491f-95a6-646b89bf3e88/resourceGroups/mgmtexp-eastus/providers/Microsoft.EventHub/namespaces/unitedstates-mgmtexpint/eventhubs/armlinkednotifications",
                    },
                    new AzureNative.ProviderHub.Inputs.NotificationEndpointArgs
                    {
                        Locations = new[]
                        {
                            "North Europe",
                        },
                        NotificationDestination = "/subscriptions/ac6bcfb5-3dc1-491f-95a6-646b89bf3e88/resourceGroups/mgmtexp-northeurope/providers/Microsoft.EventHub/namespaces/europe-mgmtexpint/eventhubs/armlinkednotifications",
                    },
                },
                NotificationMode = AzureNative.ProviderHub.NotificationMode.EventHub,
            },
            ProviderNamespace = "Microsoft.Contoso",
        });
    
    });
    
    package main
    
    import (
    	providerhub "github.com/pulumi/pulumi-azure-native-sdk/providerhub/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := providerhub.NewNotificationRegistration(ctx, "notificationRegistration", &providerhub.NotificationRegistrationArgs{
    			NotificationRegistrationName: pulumi.String("fooNotificationRegistration"),
    			Properties: &providerhub.NotificationRegistrationPropertiesArgs{
    				IncludedEvents: pulumi.StringArray{
    					pulumi.String("*/write"),
    					pulumi.String("Microsoft.Contoso/employees/delete"),
    				},
    				MessageScope: pulumi.String(providerhub.MessageScopeRegisteredSubscriptions),
    				NotificationEndpoints: providerhub.NotificationEndpointArray{
    					&providerhub.NotificationEndpointArgs{
    						Locations: pulumi.StringArray{
    							pulumi.String(""),
    							pulumi.String("East US"),
    						},
    						NotificationDestination: pulumi.String("/subscriptions/ac6bcfb5-3dc1-491f-95a6-646b89bf3e88/resourceGroups/mgmtexp-eastus/providers/Microsoft.EventHub/namespaces/unitedstates-mgmtexpint/eventhubs/armlinkednotifications"),
    					},
    					&providerhub.NotificationEndpointArgs{
    						Locations: pulumi.StringArray{
    							pulumi.String("North Europe"),
    						},
    						NotificationDestination: pulumi.String("/subscriptions/ac6bcfb5-3dc1-491f-95a6-646b89bf3e88/resourceGroups/mgmtexp-northeurope/providers/Microsoft.EventHub/namespaces/europe-mgmtexpint/eventhubs/armlinkednotifications"),
    					},
    				},
    				NotificationMode: pulumi.String(providerhub.NotificationModeEventHub),
    			},
    			ProviderNamespace: pulumi.String("Microsoft.Contoso"),
    		})
    		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.providerhub.NotificationRegistration;
    import com.pulumi.azurenative.providerhub.NotificationRegistrationArgs;
    import com.pulumi.azurenative.providerhub.inputs.NotificationRegistrationPropertiesArgs;
    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 notificationRegistration = new NotificationRegistration("notificationRegistration", NotificationRegistrationArgs.builder()
                .notificationRegistrationName("fooNotificationRegistration")
                .properties(NotificationRegistrationPropertiesArgs.builder()
                    .includedEvents(                
                        "*/write",
                        "Microsoft.Contoso/employees/delete")
                    .messageScope("RegisteredSubscriptions")
                    .notificationEndpoints(                
                        NotificationEndpointArgs.builder()
                            .locations(                        
                                "",
                                "East US")
                            .notificationDestination("/subscriptions/ac6bcfb5-3dc1-491f-95a6-646b89bf3e88/resourceGroups/mgmtexp-eastus/providers/Microsoft.EventHub/namespaces/unitedstates-mgmtexpint/eventhubs/armlinkednotifications")
                            .build(),
                        NotificationEndpointArgs.builder()
                            .locations("North Europe")
                            .notificationDestination("/subscriptions/ac6bcfb5-3dc1-491f-95a6-646b89bf3e88/resourceGroups/mgmtexp-northeurope/providers/Microsoft.EventHub/namespaces/europe-mgmtexpint/eventhubs/armlinkednotifications")
                            .build())
                    .notificationMode("EventHub")
                    .build())
                .providerNamespace("Microsoft.Contoso")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const notificationRegistration = new azure_native.providerhub.NotificationRegistration("notificationRegistration", {
        notificationRegistrationName: "fooNotificationRegistration",
        properties: {
            includedEvents: [
                "*/write",
                "Microsoft.Contoso/employees/delete",
            ],
            messageScope: azure_native.providerhub.MessageScope.RegisteredSubscriptions,
            notificationEndpoints: [
                {
                    locations: [
                        "",
                        "East US",
                    ],
                    notificationDestination: "/subscriptions/ac6bcfb5-3dc1-491f-95a6-646b89bf3e88/resourceGroups/mgmtexp-eastus/providers/Microsoft.EventHub/namespaces/unitedstates-mgmtexpint/eventhubs/armlinkednotifications",
                },
                {
                    locations: ["North Europe"],
                    notificationDestination: "/subscriptions/ac6bcfb5-3dc1-491f-95a6-646b89bf3e88/resourceGroups/mgmtexp-northeurope/providers/Microsoft.EventHub/namespaces/europe-mgmtexpint/eventhubs/armlinkednotifications",
                },
            ],
            notificationMode: azure_native.providerhub.NotificationMode.EventHub,
        },
        providerNamespace: "Microsoft.Contoso",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    notification_registration = azure_native.providerhub.NotificationRegistration("notificationRegistration",
        notification_registration_name="fooNotificationRegistration",
        properties={
            "included_events": [
                "*/write",
                "Microsoft.Contoso/employees/delete",
            ],
            "message_scope": azure_native.providerhub.MessageScope.REGISTERED_SUBSCRIPTIONS,
            "notification_endpoints": [
                {
                    "locations": [
                        "",
                        "East US",
                    ],
                    "notification_destination": "/subscriptions/ac6bcfb5-3dc1-491f-95a6-646b89bf3e88/resourceGroups/mgmtexp-eastus/providers/Microsoft.EventHub/namespaces/unitedstates-mgmtexpint/eventhubs/armlinkednotifications",
                },
                {
                    "locations": ["North Europe"],
                    "notification_destination": "/subscriptions/ac6bcfb5-3dc1-491f-95a6-646b89bf3e88/resourceGroups/mgmtexp-northeurope/providers/Microsoft.EventHub/namespaces/europe-mgmtexpint/eventhubs/armlinkednotifications",
                },
            ],
            "notification_mode": azure_native.providerhub.NotificationMode.EVENT_HUB,
        },
        provider_namespace="Microsoft.Contoso")
    
    resources:
      notificationRegistration:
        type: azure-native:providerhub:NotificationRegistration
        properties:
          notificationRegistrationName: fooNotificationRegistration
          properties:
            includedEvents:
              - '*/write'
              - Microsoft.Contoso/employees/delete
            messageScope: RegisteredSubscriptions
            notificationEndpoints:
              - locations:
                  - ""
                  - East US
                notificationDestination: /subscriptions/ac6bcfb5-3dc1-491f-95a6-646b89bf3e88/resourceGroups/mgmtexp-eastus/providers/Microsoft.EventHub/namespaces/unitedstates-mgmtexpint/eventhubs/armlinkednotifications
              - locations:
                  - North Europe
                notificationDestination: /subscriptions/ac6bcfb5-3dc1-491f-95a6-646b89bf3e88/resourceGroups/mgmtexp-northeurope/providers/Microsoft.EventHub/namespaces/europe-mgmtexpint/eventhubs/armlinkednotifications
            notificationMode: EventHub
          providerNamespace: Microsoft.Contoso
    

    Create NotificationRegistration Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NotificationRegistration(name: string, args: NotificationRegistrationArgs, opts?: CustomResourceOptions);
    @overload
    def NotificationRegistration(resource_name: str,
                                 args: NotificationRegistrationArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def NotificationRegistration(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 provider_namespace: Optional[str] = None,
                                 notification_registration_name: Optional[str] = None,
                                 properties: Optional[NotificationRegistrationPropertiesArgs] = None)
    func NewNotificationRegistration(ctx *Context, name string, args NotificationRegistrationArgs, opts ...ResourceOption) (*NotificationRegistration, error)
    public NotificationRegistration(string name, NotificationRegistrationArgs args, CustomResourceOptions? opts = null)
    public NotificationRegistration(String name, NotificationRegistrationArgs args)
    public NotificationRegistration(String name, NotificationRegistrationArgs args, CustomResourceOptions options)
    
    type: azure-native:providerhub:NotificationRegistration
    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 NotificationRegistrationArgs
    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 NotificationRegistrationArgs
    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 NotificationRegistrationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NotificationRegistrationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NotificationRegistrationArgs
    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 notificationRegistrationResource = new AzureNative.ProviderHub.NotificationRegistration("notificationRegistrationResource", new()
    {
        ProviderNamespace = "string",
        NotificationRegistrationName = "string",
        Properties = new AzureNative.ProviderHub.Inputs.NotificationRegistrationPropertiesArgs
        {
            IncludedEvents = new[]
            {
                "string",
            },
            MessageScope = "string",
            NotificationEndpoints = new[]
            {
                new AzureNative.ProviderHub.Inputs.NotificationEndpointArgs
                {
                    Locations = new[]
                    {
                        "string",
                    },
                    NotificationDestination = "string",
                },
            },
            NotificationMode = "string",
        },
    });
    
    example, err := providerhub.NewNotificationRegistration(ctx, "notificationRegistrationResource", &providerhub.NotificationRegistrationArgs{
    	ProviderNamespace:            pulumi.String("string"),
    	NotificationRegistrationName: pulumi.String("string"),
    	Properties: &providerhub.NotificationRegistrationPropertiesArgs{
    		IncludedEvents: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		MessageScope: pulumi.String("string"),
    		NotificationEndpoints: providerhub.NotificationEndpointArray{
    			&providerhub.NotificationEndpointArgs{
    				Locations: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				NotificationDestination: pulumi.String("string"),
    			},
    		},
    		NotificationMode: pulumi.String("string"),
    	},
    })
    
    var notificationRegistrationResource = new NotificationRegistration("notificationRegistrationResource", NotificationRegistrationArgs.builder()
        .providerNamespace("string")
        .notificationRegistrationName("string")
        .properties(NotificationRegistrationPropertiesArgs.builder()
            .includedEvents("string")
            .messageScope("string")
            .notificationEndpoints(NotificationEndpointArgs.builder()
                .locations("string")
                .notificationDestination("string")
                .build())
            .notificationMode("string")
            .build())
        .build());
    
    notification_registration_resource = azure_native.providerhub.NotificationRegistration("notificationRegistrationResource",
        provider_namespace="string",
        notification_registration_name="string",
        properties={
            "included_events": ["string"],
            "message_scope": "string",
            "notification_endpoints": [{
                "locations": ["string"],
                "notification_destination": "string",
            }],
            "notification_mode": "string",
        })
    
    const notificationRegistrationResource = new azure_native.providerhub.NotificationRegistration("notificationRegistrationResource", {
        providerNamespace: "string",
        notificationRegistrationName: "string",
        properties: {
            includedEvents: ["string"],
            messageScope: "string",
            notificationEndpoints: [{
                locations: ["string"],
                notificationDestination: "string",
            }],
            notificationMode: "string",
        },
    });
    
    type: azure-native:providerhub:NotificationRegistration
    properties:
        notificationRegistrationName: string
        properties:
            includedEvents:
                - string
            messageScope: string
            notificationEndpoints:
                - locations:
                    - string
                  notificationDestination: string
            notificationMode: string
        providerNamespace: string
    

    NotificationRegistration Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The NotificationRegistration resource accepts the following input properties:

    ProviderNamespace string
    The name of the resource provider hosted within ProviderHub.
    NotificationRegistrationName string
    The notification registration.
    Properties Pulumi.AzureNative.ProviderHub.Inputs.NotificationRegistrationProperties
    ProviderNamespace string
    The name of the resource provider hosted within ProviderHub.
    NotificationRegistrationName string
    The notification registration.
    Properties NotificationRegistrationPropertiesArgs
    providerNamespace String
    The name of the resource provider hosted within ProviderHub.
    notificationRegistrationName String
    The notification registration.
    properties NotificationRegistrationProperties
    providerNamespace string
    The name of the resource provider hosted within ProviderHub.
    notificationRegistrationName string
    The notification registration.
    properties NotificationRegistrationProperties
    provider_namespace str
    The name of the resource provider hosted within ProviderHub.
    notification_registration_name str
    The notification registration.
    properties NotificationRegistrationPropertiesArgs
    providerNamespace String
    The name of the resource provider hosted within ProviderHub.
    notificationRegistrationName String
    The notification registration.
    properties Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NotificationRegistration resource produces the following output properties:

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.ProviderHub.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    MessageScope, MessageScopeArgs

    NotSpecified
    NotSpecified
    RegisteredSubscriptions
    RegisteredSubscriptions
    MessageScopeNotSpecified
    NotSpecified
    MessageScopeRegisteredSubscriptions
    RegisteredSubscriptions
    NotSpecified
    NotSpecified
    RegisteredSubscriptions
    RegisteredSubscriptions
    NotSpecified
    NotSpecified
    RegisteredSubscriptions
    RegisteredSubscriptions
    NOT_SPECIFIED
    NotSpecified
    REGISTERED_SUBSCRIPTIONS
    RegisteredSubscriptions
    "NotSpecified"
    NotSpecified
    "RegisteredSubscriptions"
    RegisteredSubscriptions

    NotificationEndpoint, NotificationEndpointArgs

    Locations List<string>
    The locations.
    NotificationDestination string
    The notification destination.
    Locations []string
    The locations.
    NotificationDestination string
    The notification destination.
    locations List<String>
    The locations.
    notificationDestination String
    The notification destination.
    locations string[]
    The locations.
    notificationDestination string
    The notification destination.
    locations Sequence[str]
    The locations.
    notification_destination str
    The notification destination.
    locations List<String>
    The locations.
    notificationDestination String
    The notification destination.

    NotificationEndpointResponse, NotificationEndpointResponseArgs

    Locations List<string>
    The locations.
    NotificationDestination string
    The notification destination.
    Locations []string
    The locations.
    NotificationDestination string
    The notification destination.
    locations List<String>
    The locations.
    notificationDestination String
    The notification destination.
    locations string[]
    The locations.
    notificationDestination string
    The notification destination.
    locations Sequence[str]
    The locations.
    notification_destination str
    The notification destination.
    locations List<String>
    The locations.
    notificationDestination String
    The notification destination.

    NotificationMode, NotificationModeArgs

    NotSpecified
    NotSpecified
    EventHub
    EventHub
    WebHook
    WebHook
    NotificationModeNotSpecified
    NotSpecified
    NotificationModeEventHub
    EventHub
    NotificationModeWebHook
    WebHook
    NotSpecified
    NotSpecified
    EventHub
    EventHub
    WebHook
    WebHook
    NotSpecified
    NotSpecified
    EventHub
    EventHub
    WebHook
    WebHook
    NOT_SPECIFIED
    NotSpecified
    EVENT_HUB
    EventHub
    WEB_HOOK
    WebHook
    "NotSpecified"
    NotSpecified
    "EventHub"
    EventHub
    "WebHook"
    WebHook

    NotificationRegistrationProperties, NotificationRegistrationPropertiesArgs

    IncludedEvents []string
    The included events.
    MessageScope string | MessageScope
    The message scope.
    NotificationEndpoints []NotificationEndpoint
    The notification endpoints.
    NotificationMode string | NotificationMode
    The notification mode.
    includedEvents List<String>
    The included events.
    messageScope String | MessageScope
    The message scope.
    notificationEndpoints List<NotificationEndpoint>
    The notification endpoints.
    notificationMode String | NotificationMode
    The notification mode.
    includedEvents string[]
    The included events.
    messageScope string | MessageScope
    The message scope.
    notificationEndpoints NotificationEndpoint[]
    The notification endpoints.
    notificationMode string | NotificationMode
    The notification mode.
    included_events Sequence[str]
    The included events.
    message_scope str | MessageScope
    The message scope.
    notification_endpoints Sequence[NotificationEndpoint]
    The notification endpoints.
    notification_mode str | NotificationMode
    The notification mode.
    includedEvents List<String>
    The included events.
    messageScope String | "NotSpecified" | "RegisteredSubscriptions"
    The message scope.
    notificationEndpoints List<Property Map>
    The notification endpoints.
    notificationMode String | "NotSpecified" | "EventHub" | "WebHook"
    The notification mode.

    NotificationRegistrationPropertiesResponse, NotificationRegistrationPropertiesResponseArgs

    ProvisioningState string
    The provisioned state of the resource.
    IncludedEvents List<string>
    The included events.
    MessageScope string
    The message scope.
    NotificationEndpoints List<Pulumi.AzureNative.ProviderHub.Inputs.NotificationEndpointResponse>
    The notification endpoints.
    NotificationMode string
    The notification mode.
    ProvisioningState string
    The provisioned state of the resource.
    IncludedEvents []string
    The included events.
    MessageScope string
    The message scope.
    NotificationEndpoints []NotificationEndpointResponse
    The notification endpoints.
    NotificationMode string
    The notification mode.
    provisioningState String
    The provisioned state of the resource.
    includedEvents List<String>
    The included events.
    messageScope String
    The message scope.
    notificationEndpoints List<NotificationEndpointResponse>
    The notification endpoints.
    notificationMode String
    The notification mode.
    provisioningState string
    The provisioned state of the resource.
    includedEvents string[]
    The included events.
    messageScope string
    The message scope.
    notificationEndpoints NotificationEndpointResponse[]
    The notification endpoints.
    notificationMode string
    The notification mode.
    provisioning_state str
    The provisioned state of the resource.
    included_events Sequence[str]
    The included events.
    message_scope str
    The message scope.
    notification_endpoints Sequence[NotificationEndpointResponse]
    The notification endpoints.
    notification_mode str
    The notification mode.
    provisioningState String
    The provisioned state of the resource.
    includedEvents List<String>
    The included events.
    messageScope String
    The message scope.
    notificationEndpoints List<Property Map>
    The notification endpoints.
    notificationMode String
    The notification mode.

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    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_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    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:providerhub:NotificationRegistration fooNotificationRegistration /subscriptions/{subscriptionId}/providers/Microsoft.ProviderHub/providerRegistrations/{providerNamespace}/notificationRegistrations/{notificationRegistrationName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi