azure-native.providerhub.NotificationRegistration
Explore with Pulumi AI
The notification registration definition. Azure REST API version: 2021-09-01-preview. Prior API version in Azure Native 1.x: 2020-11-20.
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/v2"
"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 pulumi
import pulumi_azure_native as azure_native
notification_registration = azure_native.providerhub.NotificationRegistration("notificationRegistration",
notification_registration_name="fooNotificationRegistration",
properties=azure_native.providerhub.NotificationRegistrationPropertiesArgs(
included_events=[
"*/write",
"Microsoft.Contoso/employees/delete",
],
message_scope=azure_native.providerhub.MessageScope.REGISTERED_SUBSCRIPTIONS,
notification_endpoints=[
azure_native.providerhub.NotificationEndpointArgs(
locations=[
"",
"East US",
],
notification_destination="/subscriptions/ac6bcfb5-3dc1-491f-95a6-646b89bf3e88/resourceGroups/mgmtexp-eastus/providers/Microsoft.EventHub/namespaces/unitedstates-mgmtexpint/eventhubs/armlinkednotifications",
),
azure_native.providerhub.NotificationEndpointArgs(
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")
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",
});
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",
ProvisioningState = "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"),
ProvisioningState: 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")
.provisioningState("string")
.build())
.build());
notification_registration_resource = azure_native.providerhub.NotificationRegistration("notificationRegistrationResource",
provider_namespace="string",
notification_registration_name="string",
properties=azure_native.providerhub.NotificationRegistrationPropertiesArgs(
included_events=["string"],
message_scope="string",
notification_endpoints=[azure_native.providerhub.NotificationEndpointArgs(
locations=["string"],
notification_destination="string",
)],
notification_mode="string",
provisioning_state="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",
provisioningState: "string",
},
});
type: azure-native:providerhub:NotificationRegistration
properties:
notificationRegistrationName: string
properties:
includedEvents:
- string
messageScope: string
notificationEndpoints:
- locations:
- string
notificationDestination: string
notificationMode: string
provisioningState: 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
The NotificationRegistration resource accepts the following input properties:
- Provider
Namespace string - The name of the resource provider hosted within ProviderHub.
- Notification
Registration stringName - The notification registration.
- Properties
Pulumi.
Azure Native. Provider Hub. Inputs. Notification Registration Properties
- Provider
Namespace string - The name of the resource provider hosted within ProviderHub.
- Notification
Registration stringName - The notification registration.
- Properties
Notification
Registration Properties Args
- provider
Namespace String - The name of the resource provider hosted within ProviderHub.
- notification
Registration StringName - The notification registration.
- properties
Notification
Registration Properties
- provider
Namespace string - The name of the resource provider hosted within ProviderHub.
- notification
Registration stringName - The notification registration.
- properties
Notification
Registration Properties
- provider_
namespace str - The name of the resource provider hosted within ProviderHub.
- notification_
registration_ strname - The notification registration.
- properties
Notification
Registration Properties Args
- provider
Namespace String - The name of the resource provider hosted within ProviderHub.
- notification
Registration StringName - 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:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Provider Hub. Outputs. System Data Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
MessageScope, MessageScopeArgs
- Not
Specified - NotSpecified
- Registered
Subscriptions - RegisteredSubscriptions
- Message
Scope Not Specified - NotSpecified
- Message
Scope Registered Subscriptions - RegisteredSubscriptions
- Not
Specified - NotSpecified
- Registered
Subscriptions - RegisteredSubscriptions
- Not
Specified - NotSpecified
- Registered
Subscriptions - RegisteredSubscriptions
- NOT_SPECIFIED
- NotSpecified
- REGISTERED_SUBSCRIPTIONS
- RegisteredSubscriptions
- "Not
Specified" - NotSpecified
- "Registered
Subscriptions" - RegisteredSubscriptions
NotificationEndpoint, NotificationEndpointArgs
- Locations List<string>
- Notification
Destination string
- Locations []string
- Notification
Destination string
- locations List<String>
- notification
Destination String
- locations string[]
- notification
Destination string
- locations Sequence[str]
- notification_
destination str
- locations List<String>
- notification
Destination String
NotificationEndpointResponse, NotificationEndpointResponseArgs
- Locations List<string>
- Notification
Destination string
- Locations []string
- Notification
Destination string
- locations List<String>
- notification
Destination String
- locations string[]
- notification
Destination string
- locations Sequence[str]
- notification_
destination str
- locations List<String>
- notification
Destination String
NotificationMode, NotificationModeArgs
- Not
Specified - NotSpecified
- Event
Hub - EventHub
- Web
Hook - WebHook
- Notification
Mode Not Specified - NotSpecified
- Notification
Mode Event Hub - EventHub
- Notification
Mode Web Hook - WebHook
- Not
Specified - NotSpecified
- Event
Hub - EventHub
- Web
Hook - WebHook
- Not
Specified - NotSpecified
- Event
Hub - EventHub
- Web
Hook - WebHook
- NOT_SPECIFIED
- NotSpecified
- EVENT_HUB
- EventHub
- WEB_HOOK
- WebHook
- "Not
Specified" - NotSpecified
- "Event
Hub" - EventHub
- "Web
Hook" - WebHook
NotificationRegistrationProperties, NotificationRegistrationPropertiesArgs
- Included
Events List<string> - Message
Scope string | Pulumi.Azure Native. Provider Hub. Message Scope - Notification
Endpoints List<Pulumi.Azure Native. Provider Hub. Inputs. Notification Endpoint> - Notification
Mode string | Pulumi.Azure Native. Provider Hub. Notification Mode - Provisioning
State string | Pulumi.Azure Native. Provider Hub. Provisioning State - The provisioned state of the resource.
- Included
Events []string - Message
Scope string | MessageScope - Notification
Endpoints []NotificationEndpoint - Notification
Mode string | NotificationMode - Provisioning
State string | ProvisioningState - The provisioned state of the resource.
- included
Events List<String> - message
Scope String | MessageScope - notification
Endpoints List<NotificationEndpoint> - notification
Mode String | NotificationMode - provisioning
State String | ProvisioningState - The provisioned state of the resource.
- included
Events string[] - message
Scope string | MessageScope - notification
Endpoints NotificationEndpoint[] - notification
Mode string | NotificationMode - provisioning
State string | ProvisioningState - The provisioned state of the resource.
- included_
events Sequence[str] - message_
scope str | MessageScope - notification_
endpoints Sequence[NotificationEndpoint] - notification_
mode str | NotificationMode - provisioning_
state str | ProvisioningState - The provisioned state of the resource.
- included
Events List<String> - message
Scope String | "NotSpecified" | "Registered Subscriptions" - notification
Endpoints List<Property Map> - notification
Mode String | "NotSpecified" | "Event Hub" | "Web Hook" - provisioning
State String | "NotSpecified" | "Accepted" | "Running" | "Creating" | "Created" | "Deleting" | "Deleted" | "Canceled" | "Failed" | "Succeeded" | "Moving Resources" | "Transient Failure" | "Rollout In Progress" - The provisioned state of the resource.
NotificationRegistrationResponseProperties, NotificationRegistrationResponsePropertiesArgs
- Included
Events List<string> - Message
Scope string - Notification
Endpoints List<Pulumi.Azure Native. Provider Hub. Inputs. Notification Endpoint Response> - Notification
Mode string - Provisioning
State string - The provisioned state of the resource.
- Included
Events []string - Message
Scope string - Notification
Endpoints []NotificationEndpoint Response - Notification
Mode string - Provisioning
State string - The provisioned state of the resource.
- included
Events List<String> - message
Scope String - notification
Endpoints List<NotificationEndpoint Response> - notification
Mode String - provisioning
State String - The provisioned state of the resource.
- included
Events string[] - message
Scope string - notification
Endpoints NotificationEndpoint Response[] - notification
Mode string - provisioning
State string - The provisioned state of the resource.
- included_
events Sequence[str] - message_
scope str - notification_
endpoints Sequence[NotificationEndpoint Response] - notification_
mode str - provisioning_
state str - The provisioned state of the resource.
- included
Events List<String> - message
Scope String - notification
Endpoints List<Property Map> - notification
Mode String - provisioning
State String - The provisioned state of the resource.
ProvisioningState, ProvisioningStateArgs
- Not
Specified - NotSpecified
- Accepted
- Accepted
- Running
- Running
- Creating
- Creating
- Created
- Created
- Deleting
- Deleting
- Deleted
- Deleted
- Canceled
- Canceled
- Failed
- Failed
- Succeeded
- Succeeded
- Moving
Resources - MovingResources
- Transient
Failure - TransientFailure
- Rollout
In Progress - RolloutInProgress
- Provisioning
State Not Specified - NotSpecified
- Provisioning
State Accepted - Accepted
- Provisioning
State Running - Running
- Provisioning
State Creating - Creating
- Provisioning
State Created - Created
- Provisioning
State Deleting - Deleting
- Provisioning
State Deleted - Deleted
- Provisioning
State Canceled - Canceled
- Provisioning
State Failed - Failed
- Provisioning
State Succeeded - Succeeded
- Provisioning
State Moving Resources - MovingResources
- Provisioning
State Transient Failure - TransientFailure
- Provisioning
State Rollout In Progress - RolloutInProgress
- Not
Specified - NotSpecified
- Accepted
- Accepted
- Running
- Running
- Creating
- Creating
- Created
- Created
- Deleting
- Deleting
- Deleted
- Deleted
- Canceled
- Canceled
- Failed
- Failed
- Succeeded
- Succeeded
- Moving
Resources - MovingResources
- Transient
Failure - TransientFailure
- Rollout
In Progress - RolloutInProgress
- Not
Specified - NotSpecified
- Accepted
- Accepted
- Running
- Running
- Creating
- Creating
- Created
- Created
- Deleting
- Deleting
- Deleted
- Deleted
- Canceled
- Canceled
- Failed
- Failed
- Succeeded
- Succeeded
- Moving
Resources - MovingResources
- Transient
Failure - TransientFailure
- Rollout
In Progress - RolloutInProgress
- NOT_SPECIFIED
- NotSpecified
- ACCEPTED
- Accepted
- RUNNING
- Running
- CREATING
- Creating
- CREATED
- Created
- DELETING
- Deleting
- DELETED
- Deleted
- CANCELED
- Canceled
- FAILED
- Failed
- SUCCEEDED
- Succeeded
- MOVING_RESOURCES
- MovingResources
- TRANSIENT_FAILURE
- TransientFailure
- ROLLOUT_IN_PROGRESS
- RolloutInProgress
- "Not
Specified" - NotSpecified
- "Accepted"
- Accepted
- "Running"
- Running
- "Creating"
- Creating
- "Created"
- Created
- "Deleting"
- Deleting
- "Deleted"
- Deleted
- "Canceled"
- Canceled
- "Failed"
- Failed
- "Succeeded"
- Succeeded
- "Moving
Resources" - MovingResources
- "Transient
Failure" - TransientFailure
- "Rollout
In Progress" - RolloutInProgress
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: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