azure-native.eventgrid.PartnerRegistration
Explore with Pulumi AI
Information about a partner registration. API Version: 2021-06-01-preview.
Example Usage
PartnerRegistrations_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var partnerRegistration = new AzureNative.EventGrid.PartnerRegistration("partnerRegistration", new()
    {
        AuthorizedAzureSubscriptionIds = new[]
        {
            "d48566a8-2428-4a6c-8347-9675d09fb851",
        },
        Location = "global",
        LogoUri = "https://www.example.com/logo.png",
        PartnerName = "ContosoCorp",
        PartnerRegistrationName = "examplePartnerRegistrationName1",
        PartnerResourceTypeDescription = "ContocoCorp Accounts Description Text",
        PartnerResourceTypeDisplayName = "ContocoCorp Accounts DisplayName Text",
        PartnerResourceTypeName = "ContosoCorp.Accounts",
        ResourceGroupName = "examplerg",
        SetupUri = "https://www.example.com/setup.html",
        Tags = 
        {
            { "key1", "value1" },
            { "key2", "Value2" },
            { "key3", "Value3" },
        },
    });
});
package main
import (
	eventgrid "github.com/pulumi/pulumi-azure-native-sdk/eventgrid"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := eventgrid.NewPartnerRegistration(ctx, "partnerRegistration", &eventgrid.PartnerRegistrationArgs{
			AuthorizedAzureSubscriptionIds: pulumi.StringArray{
				pulumi.String("d48566a8-2428-4a6c-8347-9675d09fb851"),
			},
			Location:                       pulumi.String("global"),
			LogoUri:                        pulumi.String("https://www.example.com/logo.png"),
			PartnerName:                    pulumi.String("ContosoCorp"),
			PartnerRegistrationName:        pulumi.String("examplePartnerRegistrationName1"),
			PartnerResourceTypeDescription: pulumi.String("ContocoCorp Accounts Description Text"),
			PartnerResourceTypeDisplayName: pulumi.String("ContocoCorp Accounts DisplayName Text"),
			PartnerResourceTypeName:        pulumi.String("ContosoCorp.Accounts"),
			ResourceGroupName:              pulumi.String("examplerg"),
			SetupUri:                       pulumi.String("https://www.example.com/setup.html"),
			Tags: pulumi.StringMap{
				"key1": pulumi.String("value1"),
				"key2": pulumi.String("Value2"),
				"key3": pulumi.String("Value3"),
			},
		})
		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.PartnerRegistration;
import com.pulumi.azurenative.eventgrid.PartnerRegistrationArgs;
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 partnerRegistration = new PartnerRegistration("partnerRegistration", PartnerRegistrationArgs.builder()        
            .authorizedAzureSubscriptionIds("d48566a8-2428-4a6c-8347-9675d09fb851")
            .location("global")
            .logoUri("https://www.example.com/logo.png")
            .partnerName("ContosoCorp")
            .partnerRegistrationName("examplePartnerRegistrationName1")
            .partnerResourceTypeDescription("ContocoCorp Accounts Description Text")
            .partnerResourceTypeDisplayName("ContocoCorp Accounts DisplayName Text")
            .partnerResourceTypeName("ContosoCorp.Accounts")
            .resourceGroupName("examplerg")
            .setupUri("https://www.example.com/setup.html")
            .tags(Map.ofEntries(
                Map.entry("key1", "value1"),
                Map.entry("key2", "Value2"),
                Map.entry("key3", "Value3")
            ))
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const partnerRegistration = new azure_native.eventgrid.PartnerRegistration("partnerRegistration", {
    authorizedAzureSubscriptionIds: ["d48566a8-2428-4a6c-8347-9675d09fb851"],
    location: "global",
    logoUri: "https://www.example.com/logo.png",
    partnerName: "ContosoCorp",
    partnerRegistrationName: "examplePartnerRegistrationName1",
    partnerResourceTypeDescription: "ContocoCorp Accounts Description Text",
    partnerResourceTypeDisplayName: "ContocoCorp Accounts DisplayName Text",
    partnerResourceTypeName: "ContosoCorp.Accounts",
    resourceGroupName: "examplerg",
    setupUri: "https://www.example.com/setup.html",
    tags: {
        key1: "value1",
        key2: "Value2",
        key3: "Value3",
    },
});
import pulumi
import pulumi_azure_native as azure_native
partner_registration = azure_native.eventgrid.PartnerRegistration("partnerRegistration",
    authorized_azure_subscription_ids=["d48566a8-2428-4a6c-8347-9675d09fb851"],
    location="global",
    logo_uri="https://www.example.com/logo.png",
    partner_name="ContosoCorp",
    partner_registration_name="examplePartnerRegistrationName1",
    partner_resource_type_description="ContocoCorp Accounts Description Text",
    partner_resource_type_display_name="ContocoCorp Accounts DisplayName Text",
    partner_resource_type_name="ContosoCorp.Accounts",
    resource_group_name="examplerg",
    setup_uri="https://www.example.com/setup.html",
    tags={
        "key1": "value1",
        "key2": "Value2",
        "key3": "Value3",
    })
resources:
  partnerRegistration:
    type: azure-native:eventgrid:PartnerRegistration
    properties:
      authorizedAzureSubscriptionIds:
        - d48566a8-2428-4a6c-8347-9675d09fb851
      location: global
      logoUri: https://www.example.com/logo.png
      partnerName: ContosoCorp
      partnerRegistrationName: examplePartnerRegistrationName1
      partnerResourceTypeDescription: ContocoCorp Accounts Description Text
      partnerResourceTypeDisplayName: ContocoCorp Accounts DisplayName Text
      partnerResourceTypeName: ContosoCorp.Accounts
      resourceGroupName: examplerg
      setupUri: https://www.example.com/setup.html
      tags:
        key1: value1
        key2: Value2
        key3: Value3
Create PartnerRegistration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PartnerRegistration(name: string, args: PartnerRegistrationArgs, opts?: CustomResourceOptions);@overload
def PartnerRegistration(resource_name: str,
                        args: PartnerRegistrationArgs,
                        opts: Optional[ResourceOptions] = None)
@overload
def PartnerRegistration(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        resource_group_name: Optional[str] = None,
                        long_description: Optional[str] = None,
                        partner_resource_type_description: Optional[str] = None,
                        logo_uri: Optional[str] = None,
                        authorized_azure_subscription_ids: Optional[Sequence[str]] = None,
                        partner_customer_service_extension: Optional[str] = None,
                        partner_customer_service_number: Optional[str] = None,
                        location: Optional[str] = None,
                        partner_registration_name: Optional[str] = None,
                        partner_name: Optional[str] = None,
                        partner_resource_type_display_name: Optional[str] = None,
                        partner_resource_type_name: Optional[str] = None,
                        customer_service_uri: Optional[str] = None,
                        setup_uri: Optional[str] = None,
                        tags: Optional[Mapping[str, str]] = None,
                        visibility_state: Optional[Union[str, PartnerRegistrationVisibilityState]] = None)func NewPartnerRegistration(ctx *Context, name string, args PartnerRegistrationArgs, opts ...ResourceOption) (*PartnerRegistration, error)public PartnerRegistration(string name, PartnerRegistrationArgs args, CustomResourceOptions? opts = null)
public PartnerRegistration(String name, PartnerRegistrationArgs args)
public PartnerRegistration(String name, PartnerRegistrationArgs args, CustomResourceOptions options)
type: azure-native:eventgrid:PartnerRegistration
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 PartnerRegistrationArgs
- 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 PartnerRegistrationArgs
- 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 PartnerRegistrationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PartnerRegistrationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PartnerRegistrationArgs
- 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 partnerRegistrationResource = new AzureNative.Eventgrid.PartnerRegistration("partnerRegistrationResource", new()
{
    ResourceGroupName = "string",
    LongDescription = "string",
    PartnerResourceTypeDescription = "string",
    LogoUri = "string",
    AuthorizedAzureSubscriptionIds = new[]
    {
        "string",
    },
    PartnerCustomerServiceExtension = "string",
    PartnerCustomerServiceNumber = "string",
    Location = "string",
    PartnerRegistrationName = "string",
    PartnerName = "string",
    PartnerResourceTypeDisplayName = "string",
    PartnerResourceTypeName = "string",
    CustomerServiceUri = "string",
    SetupUri = "string",
    Tags = 
    {
        { "string", "string" },
    },
    VisibilityState = "string",
});
example, err := eventgrid.NewPartnerRegistration(ctx, "partnerRegistrationResource", &eventgrid.PartnerRegistrationArgs{
	ResourceGroupName:              "string",
	LongDescription:                "string",
	PartnerResourceTypeDescription: "string",
	LogoUri:                        "string",
	AuthorizedAzureSubscriptionIds: []string{
		"string",
	},
	PartnerCustomerServiceExtension: "string",
	PartnerCustomerServiceNumber:    "string",
	Location:                        "string",
	PartnerRegistrationName:         "string",
	PartnerName:                     "string",
	PartnerResourceTypeDisplayName:  "string",
	PartnerResourceTypeName:         "string",
	CustomerServiceUri:              "string",
	SetupUri:                        "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
	VisibilityState: "string",
})
var partnerRegistrationResource = new PartnerRegistration("partnerRegistrationResource", PartnerRegistrationArgs.builder()
    .resourceGroupName("string")
    .longDescription("string")
    .partnerResourceTypeDescription("string")
    .logoUri("string")
    .authorizedAzureSubscriptionIds("string")
    .partnerCustomerServiceExtension("string")
    .partnerCustomerServiceNumber("string")
    .location("string")
    .partnerRegistrationName("string")
    .partnerName("string")
    .partnerResourceTypeDisplayName("string")
    .partnerResourceTypeName("string")
    .customerServiceUri("string")
    .setupUri("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .visibilityState("string")
    .build());
partner_registration_resource = azure_native.eventgrid.PartnerRegistration("partnerRegistrationResource",
    resource_group_name=string,
    long_description=string,
    partner_resource_type_description=string,
    logo_uri=string,
    authorized_azure_subscription_ids=[string],
    partner_customer_service_extension=string,
    partner_customer_service_number=string,
    location=string,
    partner_registration_name=string,
    partner_name=string,
    partner_resource_type_display_name=string,
    partner_resource_type_name=string,
    customer_service_uri=string,
    setup_uri=string,
    tags={
        string: string,
    },
    visibility_state=string)
const partnerRegistrationResource = new azure_native.eventgrid.PartnerRegistration("partnerRegistrationResource", {
    resourceGroupName: "string",
    longDescription: "string",
    partnerResourceTypeDescription: "string",
    logoUri: "string",
    authorizedAzureSubscriptionIds: ["string"],
    partnerCustomerServiceExtension: "string",
    partnerCustomerServiceNumber: "string",
    location: "string",
    partnerRegistrationName: "string",
    partnerName: "string",
    partnerResourceTypeDisplayName: "string",
    partnerResourceTypeName: "string",
    customerServiceUri: "string",
    setupUri: "string",
    tags: {
        string: "string",
    },
    visibilityState: "string",
});
type: azure-native:eventgrid:PartnerRegistration
properties:
    authorizedAzureSubscriptionIds:
        - string
    customerServiceUri: string
    location: string
    logoUri: string
    longDescription: string
    partnerCustomerServiceExtension: string
    partnerCustomerServiceNumber: string
    partnerName: string
    partnerRegistrationName: string
    partnerResourceTypeDescription: string
    partnerResourceTypeDisplayName: string
    partnerResourceTypeName: string
    resourceGroupName: string
    setupUri: string
    tags:
        string: string
    visibilityState: string
PartnerRegistration 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 PartnerRegistration resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group within the user's subscription.
- List<string>
- List of Azure subscription Ids that are authorized to create a partner namespace associated with this partner registration. This is an optional property. Creating partner namespaces is always permitted under the same Azure subscription as the one used for creating the partner registration.
- CustomerService stringUri 
- The extension of the customer service URI of the publisher.
- Location string
- Location of the resource.
- LogoUri string
- URI of the logo.
- LongDescription string
- Long description for the custom scenarios and integration to be displayed in the portal if needed. Length of this description should not exceed 2048 characters.
- PartnerCustomer stringService Extension 
- The extension of the customer service number of the publisher. Only digits are allowed and number of digits should not exceed 10.
- PartnerCustomer stringService Number 
- The customer service number of the publisher. The expected phone format should start with a '+' sign followed by the country code. The remaining digits are then followed. Only digits and spaces are allowed and its length cannot exceed 16 digits including country code. Examples of valid phone numbers are: +1 515 123 4567 and +966 7 5115 2471. Examples of invalid phone numbers are: +1 (515) 123-4567, 1 515 123 4567 and +966 121 5115 24 7 551 1234 43
- PartnerName string
- Official name of the partner name. For example: "Contoso".
- PartnerRegistration stringName 
- Name of the partner registration.
- PartnerResource stringType Description 
- Short description of the partner resource type. The length of this description should not exceed 256 characters.
- PartnerResource stringType Display Name 
- Display name of the partner resource type.
- PartnerResource stringType Name 
- Name of the partner resource type.
- SetupUri string
- URI of the partner website that can be used by Azure customers to setup Event Grid integration on an event source.
- Dictionary<string, string>
- Tags of the resource.
- VisibilityState string | Pulumi.Azure Native. Event Grid. Partner Registration Visibility State 
- Visibility state of the partner registration.
- ResourceGroup stringName 
- The name of the resource group within the user's subscription.
- []string
- List of Azure subscription Ids that are authorized to create a partner namespace associated with this partner registration. This is an optional property. Creating partner namespaces is always permitted under the same Azure subscription as the one used for creating the partner registration.
- CustomerService stringUri 
- The extension of the customer service URI of the publisher.
- Location string
- Location of the resource.
- LogoUri string
- URI of the logo.
- LongDescription string
- Long description for the custom scenarios and integration to be displayed in the portal if needed. Length of this description should not exceed 2048 characters.
- PartnerCustomer stringService Extension 
- The extension of the customer service number of the publisher. Only digits are allowed and number of digits should not exceed 10.
- PartnerCustomer stringService Number 
- The customer service number of the publisher. The expected phone format should start with a '+' sign followed by the country code. The remaining digits are then followed. Only digits and spaces are allowed and its length cannot exceed 16 digits including country code. Examples of valid phone numbers are: +1 515 123 4567 and +966 7 5115 2471. Examples of invalid phone numbers are: +1 (515) 123-4567, 1 515 123 4567 and +966 121 5115 24 7 551 1234 43
- PartnerName string
- Official name of the partner name. For example: "Contoso".
- PartnerRegistration stringName 
- Name of the partner registration.
- PartnerResource stringType Description 
- Short description of the partner resource type. The length of this description should not exceed 256 characters.
- PartnerResource stringType Display Name 
- Display name of the partner resource type.
- PartnerResource stringType Name 
- Name of the partner resource type.
- SetupUri string
- URI of the partner website that can be used by Azure customers to setup Event Grid integration on an event source.
- map[string]string
- Tags of the resource.
- VisibilityState string | PartnerRegistration Visibility State 
- Visibility state of the partner registration.
- resourceGroup StringName 
- The name of the resource group within the user's subscription.
- List<String>
- List of Azure subscription Ids that are authorized to create a partner namespace associated with this partner registration. This is an optional property. Creating partner namespaces is always permitted under the same Azure subscription as the one used for creating the partner registration.
- customerService StringUri 
- The extension of the customer service URI of the publisher.
- location String
- Location of the resource.
- logoUri String
- URI of the logo.
- longDescription String
- Long description for the custom scenarios and integration to be displayed in the portal if needed. Length of this description should not exceed 2048 characters.
- partnerCustomer StringService Extension 
- The extension of the customer service number of the publisher. Only digits are allowed and number of digits should not exceed 10.
- partnerCustomer StringService Number 
- The customer service number of the publisher. The expected phone format should start with a '+' sign followed by the country code. The remaining digits are then followed. Only digits and spaces are allowed and its length cannot exceed 16 digits including country code. Examples of valid phone numbers are: +1 515 123 4567 and +966 7 5115 2471. Examples of invalid phone numbers are: +1 (515) 123-4567, 1 515 123 4567 and +966 121 5115 24 7 551 1234 43
- partnerName String
- Official name of the partner name. For example: "Contoso".
- partnerRegistration StringName 
- Name of the partner registration.
- partnerResource StringType Description 
- Short description of the partner resource type. The length of this description should not exceed 256 characters.
- partnerResource StringType Display Name 
- Display name of the partner resource type.
- partnerResource StringType Name 
- Name of the partner resource type.
- setupUri String
- URI of the partner website that can be used by Azure customers to setup Event Grid integration on an event source.
- Map<String,String>
- Tags of the resource.
- visibilityState String | PartnerRegistration Visibility State 
- Visibility state of the partner registration.
- resourceGroup stringName 
- The name of the resource group within the user's subscription.
- string[]
- List of Azure subscription Ids that are authorized to create a partner namespace associated with this partner registration. This is an optional property. Creating partner namespaces is always permitted under the same Azure subscription as the one used for creating the partner registration.
- customerService stringUri 
- The extension of the customer service URI of the publisher.
- location string
- Location of the resource.
- logoUri string
- URI of the logo.
- longDescription string
- Long description for the custom scenarios and integration to be displayed in the portal if needed. Length of this description should not exceed 2048 characters.
- partnerCustomer stringService Extension 
- The extension of the customer service number of the publisher. Only digits are allowed and number of digits should not exceed 10.
- partnerCustomer stringService Number 
- The customer service number of the publisher. The expected phone format should start with a '+' sign followed by the country code. The remaining digits are then followed. Only digits and spaces are allowed and its length cannot exceed 16 digits including country code. Examples of valid phone numbers are: +1 515 123 4567 and +966 7 5115 2471. Examples of invalid phone numbers are: +1 (515) 123-4567, 1 515 123 4567 and +966 121 5115 24 7 551 1234 43
- partnerName string
- Official name of the partner name. For example: "Contoso".
- partnerRegistration stringName 
- Name of the partner registration.
- partnerResource stringType Description 
- Short description of the partner resource type. The length of this description should not exceed 256 characters.
- partnerResource stringType Display Name 
- Display name of the partner resource type.
- partnerResource stringType Name 
- Name of the partner resource type.
- setupUri string
- URI of the partner website that can be used by Azure customers to setup Event Grid integration on an event source.
- {[key: string]: string}
- Tags of the resource.
- visibilityState string | PartnerRegistration Visibility State 
- Visibility state of the partner registration.
- resource_group_ strname 
- The name of the resource group within the user's subscription.
- Sequence[str]
- List of Azure subscription Ids that are authorized to create a partner namespace associated with this partner registration. This is an optional property. Creating partner namespaces is always permitted under the same Azure subscription as the one used for creating the partner registration.
- customer_service_ struri 
- The extension of the customer service URI of the publisher.
- location str
- Location of the resource.
- logo_uri str
- URI of the logo.
- long_description str
- Long description for the custom scenarios and integration to be displayed in the portal if needed. Length of this description should not exceed 2048 characters.
- partner_customer_ strservice_ extension 
- The extension of the customer service number of the publisher. Only digits are allowed and number of digits should not exceed 10.
- partner_customer_ strservice_ number 
- The customer service number of the publisher. The expected phone format should start with a '+' sign followed by the country code. The remaining digits are then followed. Only digits and spaces are allowed and its length cannot exceed 16 digits including country code. Examples of valid phone numbers are: +1 515 123 4567 and +966 7 5115 2471. Examples of invalid phone numbers are: +1 (515) 123-4567, 1 515 123 4567 and +966 121 5115 24 7 551 1234 43
- partner_name str
- Official name of the partner name. For example: "Contoso".
- partner_registration_ strname 
- Name of the partner registration.
- partner_resource_ strtype_ description 
- Short description of the partner resource type. The length of this description should not exceed 256 characters.
- partner_resource_ strtype_ display_ name 
- Display name of the partner resource type.
- partner_resource_ strtype_ name 
- Name of the partner resource type.
- setup_uri str
- URI of the partner website that can be used by Azure customers to setup Event Grid integration on an event source.
- Mapping[str, str]
- Tags of the resource.
- visibility_state str | PartnerRegistration Visibility State 
- Visibility state of the partner registration.
- resourceGroup StringName 
- The name of the resource group within the user's subscription.
- List<String>
- List of Azure subscription Ids that are authorized to create a partner namespace associated with this partner registration. This is an optional property. Creating partner namespaces is always permitted under the same Azure subscription as the one used for creating the partner registration.
- customerService StringUri 
- The extension of the customer service URI of the publisher.
- location String
- Location of the resource.
- logoUri String
- URI of the logo.
- longDescription String
- Long description for the custom scenarios and integration to be displayed in the portal if needed. Length of this description should not exceed 2048 characters.
- partnerCustomer StringService Extension 
- The extension of the customer service number of the publisher. Only digits are allowed and number of digits should not exceed 10.
- partnerCustomer StringService Number 
- The customer service number of the publisher. The expected phone format should start with a '+' sign followed by the country code. The remaining digits are then followed. Only digits and spaces are allowed and its length cannot exceed 16 digits including country code. Examples of valid phone numbers are: +1 515 123 4567 and +966 7 5115 2471. Examples of invalid phone numbers are: +1 (515) 123-4567, 1 515 123 4567 and +966 121 5115 24 7 551 1234 43
- partnerName String
- Official name of the partner name. For example: "Contoso".
- partnerRegistration StringName 
- Name of the partner registration.
- partnerResource StringType Description 
- Short description of the partner resource type. The length of this description should not exceed 256 characters.
- partnerResource StringType Display Name 
- Display name of the partner resource type.
- partnerResource StringType Name 
- Name of the partner resource type.
- setupUri String
- URI of the partner website that can be used by Azure customers to setup Event Grid integration on an event source.
- Map<String>
- Tags of the resource.
- visibilityState String | "Hidden" | "PublicPreview" | "Generally Available" 
- Visibility state of the partner registration.
Outputs
All input properties are implicitly available as output properties. Additionally, the PartnerRegistration resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the resource.
- ProvisioningState string
- Provisioning state of the partner registration.
- SystemData Pulumi.Azure Native. Event Grid. Outputs. System Data Response 
- The system metadata relating to Partner Registration resource.
- Type string
- Type of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the resource.
- ProvisioningState string
- Provisioning state of the partner registration.
- SystemData SystemData Response 
- The system metadata relating to Partner Registration resource.
- Type string
- Type of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the resource.
- provisioningState String
- Provisioning state of the partner registration.
- systemData SystemData Response 
- The system metadata relating to Partner Registration resource.
- type String
- Type of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of the resource.
- provisioningState string
- Provisioning state of the partner registration.
- systemData SystemData Response 
- The system metadata relating to Partner Registration resource.
- type string
- Type of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of the resource.
- provisioning_state str
- Provisioning state of the partner registration.
- system_data SystemData Response 
- The system metadata relating to Partner Registration resource.
- type str
- Type of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the resource.
- provisioningState String
- Provisioning state of the partner registration.
- systemData Property Map
- The system metadata relating to Partner Registration resource.
- type String
- Type of the resource.
Supporting Types
PartnerRegistrationVisibilityState, PartnerRegistrationVisibilityStateArgs        
- Hidden
- Hidden
- PublicPreview 
- PublicPreview
- GenerallyAvailable 
- GenerallyAvailable
- PartnerRegistration Visibility State Hidden 
- Hidden
- PartnerRegistration Visibility State Public Preview 
- PublicPreview
- PartnerRegistration Visibility State Generally Available 
- GenerallyAvailable
- Hidden
- Hidden
- PublicPreview 
- PublicPreview
- GenerallyAvailable 
- GenerallyAvailable
- Hidden
- Hidden
- PublicPreview 
- PublicPreview
- GenerallyAvailable 
- GenerallyAvailable
- HIDDEN
- Hidden
- PUBLIC_PREVIEW
- PublicPreview
- GENERALLY_AVAILABLE
- GenerallyAvailable
- "Hidden"
- Hidden
- "PublicPreview" 
- PublicPreview
- "GenerallyAvailable" 
- GenerallyAvailable
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified 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:PartnerRegistration examplePartnerRegistrationName1 /subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/partnerRegistrations/examplePartnerRegistrationName1 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0