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 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",
})
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",
},
});
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
The PartnerRegistration resource accepts the following input properties:
- Resource
Group 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.
- Customer
Service stringUri - The extension of the customer service URI of the publisher.
- Location string
- Location of the resource.
- Logo
Uri string - URI of the logo.
- Long
Description 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.
- Partner
Customer stringService 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 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
- Partner
Name string - Official name of the partner name. For example: "Contoso".
- Partner
Registration stringName - Name of the partner registration.
- Partner
Resource stringType Description - Short description of the partner resource type. The length of this description should not exceed 256 characters.
- Partner
Resource stringType Display Name - Display name of the partner resource type.
- Partner
Resource stringType Name - Name of the partner resource type.
- Setup
Uri 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.
- Visibility
State string | Pulumi.Azure Native. Event Grid. Partner Registration Visibility State - Visibility state of the partner registration.
- Resource
Group 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.
- Customer
Service stringUri - The extension of the customer service URI of the publisher.
- Location string
- Location of the resource.
- Logo
Uri string - URI of the logo.
- Long
Description 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.
- Partner
Customer stringService 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 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
- Partner
Name string - Official name of the partner name. For example: "Contoso".
- Partner
Registration stringName - Name of the partner registration.
- Partner
Resource stringType Description - Short description of the partner resource type. The length of this description should not exceed 256 characters.
- Partner
Resource stringType Display Name - Display name of the partner resource type.
- Partner
Resource stringType Name - Name of the partner resource type.
- Setup
Uri 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.
- Visibility
State string | PartnerRegistration Visibility State - Visibility state of the partner registration.
- resource
Group 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.
- customer
Service StringUri - The extension of the customer service URI of the publisher.
- location String
- Location of the resource.
- logo
Uri String - URI of the logo.
- long
Description 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.
- partner
Customer StringService 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 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
- partner
Name String - Official name of the partner name. For example: "Contoso".
- partner
Registration StringName - Name of the partner registration.
- partner
Resource StringType Description - Short description of the partner resource type. The length of this description should not exceed 256 characters.
- partner
Resource StringType Display Name - Display name of the partner resource type.
- partner
Resource StringType Name - Name of the partner resource type.
- setup
Uri 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.
- visibility
State String | PartnerRegistration Visibility State - Visibility state of the partner registration.
- resource
Group 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.
- customer
Service stringUri - The extension of the customer service URI of the publisher.
- location string
- Location of the resource.
- logo
Uri string - URI of the logo.
- long
Description 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.
- partner
Customer stringService 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 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
- partner
Name string - Official name of the partner name. For example: "Contoso".
- partner
Registration stringName - Name of the partner registration.
- partner
Resource stringType Description - Short description of the partner resource type. The length of this description should not exceed 256 characters.
- partner
Resource stringType Display Name - Display name of the partner resource type.
- partner
Resource stringType Name - Name of the partner resource type.
- setup
Uri 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.
- visibility
State 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.
- resource
Group 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.
- customer
Service StringUri - The extension of the customer service URI of the publisher.
- location String
- Location of the resource.
- logo
Uri String - URI of the logo.
- long
Description 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.
- partner
Customer StringService 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 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
- partner
Name String - Official name of the partner name. For example: "Contoso".
- partner
Registration StringName - Name of the partner registration.
- partner
Resource StringType Description - Short description of the partner resource type. The length of this description should not exceed 256 characters.
- partner
Resource StringType Display Name - Display name of the partner resource type.
- partner
Resource StringType Name - Name of the partner resource type.
- setup
Uri 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.
- visibility
State 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.
- Provisioning
State string - Provisioning state of the partner registration.
- System
Data 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.
- Provisioning
State string - Provisioning state of the partner registration.
- System
Data 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.
- provisioning
State String - Provisioning state of the partner registration.
- system
Data 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.
- provisioning
State string - Provisioning state of the partner registration.
- system
Data 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.
- provisioning
State String - Provisioning state of the partner registration.
- system
Data Property Map - The system metadata relating to Partner Registration resource.
- type String
- Type of the resource.
Supporting Types
PartnerRegistrationVisibilityState, PartnerRegistrationVisibilityStateArgs
- Hidden
- Hidden
- Public
Preview - PublicPreview
- Generally
Available - GenerallyAvailable
- Partner
Registration Visibility State Hidden - Hidden
- Partner
Registration Visibility State Public Preview - PublicPreview
- Partner
Registration Visibility State Generally Available - GenerallyAvailable
- Hidden
- Hidden
- Public
Preview - PublicPreview
- Generally
Available - GenerallyAvailable
- Hidden
- Hidden
- Public
Preview - PublicPreview
- Generally
Available - GenerallyAvailable
- HIDDEN
- Hidden
- PUBLIC_PREVIEW
- PublicPreview
- GENERALLY_AVAILABLE
- GenerallyAvailable
- "Hidden"
- Hidden
- "Public
Preview" - PublicPreview
- "Generally
Available" - GenerallyAvailable
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:eventgrid: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