azure-native.eventgrid.PartnerNamespace
Explore with Pulumi AI
EventGrid Partner Namespace. Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2021-06-01-preview.
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview.
Example Usage
PartnerNamespaces_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var partnerNamespace = new AzureNative.EventGrid.PartnerNamespace("partnerNamespace", new()
{
Location = "westus",
PartnerNamespaceName = "examplePartnerNamespaceName1",
PartnerRegistrationFullyQualifiedId = "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/partnerRegistrations/ContosoCorpAccount1",
ResourceGroupName = "examplerg",
Tags =
{
{ "tag1", "value1" },
{ "tag2", "value2" },
},
});
});
package main
import (
eventgrid "github.com/pulumi/pulumi-azure-native-sdk/eventgrid/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := eventgrid.NewPartnerNamespace(ctx, "partnerNamespace", &eventgrid.PartnerNamespaceArgs{
Location: pulumi.String("westus"),
PartnerNamespaceName: pulumi.String("examplePartnerNamespaceName1"),
PartnerRegistrationFullyQualifiedId: pulumi.String("/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/partnerRegistrations/ContosoCorpAccount1"),
ResourceGroupName: pulumi.String("examplerg"),
Tags: pulumi.StringMap{
"tag1": pulumi.String("value1"),
"tag2": pulumi.String("value2"),
},
})
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.PartnerNamespace;
import com.pulumi.azurenative.eventgrid.PartnerNamespaceArgs;
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 partnerNamespace = new PartnerNamespace("partnerNamespace", PartnerNamespaceArgs.builder()
.location("westus")
.partnerNamespaceName("examplePartnerNamespaceName1")
.partnerRegistrationFullyQualifiedId("/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/partnerRegistrations/ContosoCorpAccount1")
.resourceGroupName("examplerg")
.tags(Map.ofEntries(
Map.entry("tag1", "value1"),
Map.entry("tag2", "value2")
))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
partner_namespace = azure_native.eventgrid.PartnerNamespace("partnerNamespace",
location="westus",
partner_namespace_name="examplePartnerNamespaceName1",
partner_registration_fully_qualified_id="/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/partnerRegistrations/ContosoCorpAccount1",
resource_group_name="examplerg",
tags={
"tag1": "value1",
"tag2": "value2",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const partnerNamespace = new azure_native.eventgrid.PartnerNamespace("partnerNamespace", {
location: "westus",
partnerNamespaceName: "examplePartnerNamespaceName1",
partnerRegistrationFullyQualifiedId: "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/partnerRegistrations/ContosoCorpAccount1",
resourceGroupName: "examplerg",
tags: {
tag1: "value1",
tag2: "value2",
},
});
resources:
partnerNamespace:
type: azure-native:eventgrid:PartnerNamespace
properties:
location: westus
partnerNamespaceName: examplePartnerNamespaceName1
partnerRegistrationFullyQualifiedId: /subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/partnerRegistrations/ContosoCorpAccount1
resourceGroupName: examplerg
tags:
tag1: value1
tag2: value2
Create PartnerNamespace Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PartnerNamespace(name: string, args: PartnerNamespaceArgs, opts?: CustomResourceOptions);
@overload
def PartnerNamespace(resource_name: str,
args: PartnerNamespaceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PartnerNamespace(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
disable_local_auth: Optional[bool] = None,
inbound_ip_rules: Optional[Sequence[InboundIpRuleArgs]] = None,
location: Optional[str] = None,
partner_namespace_name: Optional[str] = None,
partner_registration_fully_qualified_id: Optional[str] = None,
partner_topic_routing_mode: Optional[Union[str, PartnerTopicRoutingMode]] = None,
public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
tags: Optional[Mapping[str, str]] = None)
func NewPartnerNamespace(ctx *Context, name string, args PartnerNamespaceArgs, opts ...ResourceOption) (*PartnerNamespace, error)
public PartnerNamespace(string name, PartnerNamespaceArgs args, CustomResourceOptions? opts = null)
public PartnerNamespace(String name, PartnerNamespaceArgs args)
public PartnerNamespace(String name, PartnerNamespaceArgs args, CustomResourceOptions options)
type: azure-native:eventgrid:PartnerNamespace
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 PartnerNamespaceArgs
- 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 PartnerNamespaceArgs
- 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 PartnerNamespaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PartnerNamespaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PartnerNamespaceArgs
- 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 partnerNamespaceResource = new AzureNative.EventGrid.PartnerNamespace("partnerNamespaceResource", new()
{
ResourceGroupName = "string",
DisableLocalAuth = false,
InboundIpRules = new[]
{
new AzureNative.EventGrid.Inputs.InboundIpRuleArgs
{
Action = "string",
IpMask = "string",
},
},
Location = "string",
PartnerNamespaceName = "string",
PartnerRegistrationFullyQualifiedId = "string",
PartnerTopicRoutingMode = "string",
PublicNetworkAccess = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := eventgrid.NewPartnerNamespace(ctx, "partnerNamespaceResource", &eventgrid.PartnerNamespaceArgs{
ResourceGroupName: pulumi.String("string"),
DisableLocalAuth: pulumi.Bool(false),
InboundIpRules: eventgrid.InboundIpRuleArray{
&eventgrid.InboundIpRuleArgs{
Action: pulumi.String("string"),
IpMask: pulumi.String("string"),
},
},
Location: pulumi.String("string"),
PartnerNamespaceName: pulumi.String("string"),
PartnerRegistrationFullyQualifiedId: pulumi.String("string"),
PartnerTopicRoutingMode: pulumi.String("string"),
PublicNetworkAccess: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var partnerNamespaceResource = new PartnerNamespace("partnerNamespaceResource", PartnerNamespaceArgs.builder()
.resourceGroupName("string")
.disableLocalAuth(false)
.inboundIpRules(InboundIpRuleArgs.builder()
.action("string")
.ipMask("string")
.build())
.location("string")
.partnerNamespaceName("string")
.partnerRegistrationFullyQualifiedId("string")
.partnerTopicRoutingMode("string")
.publicNetworkAccess("string")
.tags(Map.of("string", "string"))
.build());
partner_namespace_resource = azure_native.eventgrid.PartnerNamespace("partnerNamespaceResource",
resource_group_name="string",
disable_local_auth=False,
inbound_ip_rules=[{
"action": "string",
"ipMask": "string",
}],
location="string",
partner_namespace_name="string",
partner_registration_fully_qualified_id="string",
partner_topic_routing_mode="string",
public_network_access="string",
tags={
"string": "string",
})
const partnerNamespaceResource = new azure_native.eventgrid.PartnerNamespace("partnerNamespaceResource", {
resourceGroupName: "string",
disableLocalAuth: false,
inboundIpRules: [{
action: "string",
ipMask: "string",
}],
location: "string",
partnerNamespaceName: "string",
partnerRegistrationFullyQualifiedId: "string",
partnerTopicRoutingMode: "string",
publicNetworkAccess: "string",
tags: {
string: "string",
},
});
type: azure-native:eventgrid:PartnerNamespace
properties:
disableLocalAuth: false
inboundIpRules:
- action: string
ipMask: string
location: string
partnerNamespaceName: string
partnerRegistrationFullyQualifiedId: string
partnerTopicRoutingMode: string
publicNetworkAccess: string
resourceGroupName: string
tags:
string: string
PartnerNamespace 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 PartnerNamespace resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group within the user's subscription.
- Disable
Local boolAuth - This boolean is used to enable or disable local auth. Default value is false. When the property is set to true, only AAD token will be used to authenticate if user is allowed to publish to the partner namespace.
- Inbound
Ip List<Pulumi.Rules Azure Native. Event Grid. Inputs. Inbound Ip Rule> - This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
- Location string
- Location of the resource.
- Partner
Namespace stringName - Name of the partner namespace.
- Partner
Registration stringFully Qualified Id - The fully qualified ARM Id of the partner registration that should be associated with this partner namespace. This takes the following format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerRegistrations/{partnerRegistrationName}.
- Partner
Topic string | Pulumi.Routing Mode Azure Native. Event Grid. Partner Topic Routing Mode - This determines if events published to this partner namespace should use the source attribute in the event payload or use the channel name in the header when matching to the partner topic. If none is specified, source attribute routing will be used to match the partner topic.
- Public
Network string | Pulumi.Access Azure Native. Event Grid. Public Network Access - This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring
- Dictionary<string, string>
- Tags of the resource.
- Resource
Group stringName - The name of the resource group within the user's subscription.
- Disable
Local boolAuth - This boolean is used to enable or disable local auth. Default value is false. When the property is set to true, only AAD token will be used to authenticate if user is allowed to publish to the partner namespace.
- Inbound
Ip []InboundRules Ip Rule Args - This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
- Location string
- Location of the resource.
- Partner
Namespace stringName - Name of the partner namespace.
- Partner
Registration stringFully Qualified Id - The fully qualified ARM Id of the partner registration that should be associated with this partner namespace. This takes the following format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerRegistrations/{partnerRegistrationName}.
- Partner
Topic string | PartnerRouting Mode Topic Routing Mode - This determines if events published to this partner namespace should use the source attribute in the event payload or use the channel name in the header when matching to the partner topic. If none is specified, source attribute routing will be used to match the partner topic.
- Public
Network string | PublicAccess Network Access - This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring
- map[string]string
- Tags of the resource.
- resource
Group StringName - The name of the resource group within the user's subscription.
- disable
Local BooleanAuth - This boolean is used to enable or disable local auth. Default value is false. When the property is set to true, only AAD token will be used to authenticate if user is allowed to publish to the partner namespace.
- inbound
Ip List<InboundRules Ip Rule> - This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
- location String
- Location of the resource.
- partner
Namespace StringName - Name of the partner namespace.
- partner
Registration StringFully Qualified Id - The fully qualified ARM Id of the partner registration that should be associated with this partner namespace. This takes the following format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerRegistrations/{partnerRegistrationName}.
- partner
Topic String | PartnerRouting Mode Topic Routing Mode - This determines if events published to this partner namespace should use the source attribute in the event payload or use the channel name in the header when matching to the partner topic. If none is specified, source attribute routing will be used to match the partner topic.
- public
Network String | PublicAccess Network Access - This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring
- Map<String,String>
- Tags of the resource.
- resource
Group stringName - The name of the resource group within the user's subscription.
- disable
Local booleanAuth - This boolean is used to enable or disable local auth. Default value is false. When the property is set to true, only AAD token will be used to authenticate if user is allowed to publish to the partner namespace.
- inbound
Ip InboundRules Ip Rule[] - This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
- location string
- Location of the resource.
- partner
Namespace stringName - Name of the partner namespace.
- partner
Registration stringFully Qualified Id - The fully qualified ARM Id of the partner registration that should be associated with this partner namespace. This takes the following format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerRegistrations/{partnerRegistrationName}.
- partner
Topic string | PartnerRouting Mode Topic Routing Mode - This determines if events published to this partner namespace should use the source attribute in the event payload or use the channel name in the header when matching to the partner topic. If none is specified, source attribute routing will be used to match the partner topic.
- public
Network string | PublicAccess Network Access - This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring
- {[key: string]: string}
- Tags of the resource.
- resource_
group_ strname - The name of the resource group within the user's subscription.
- disable_
local_ boolauth - This boolean is used to enable or disable local auth. Default value is false. When the property is set to true, only AAD token will be used to authenticate if user is allowed to publish to the partner namespace.
- inbound_
ip_ Sequence[Inboundrules Ip Rule Args] - This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
- location str
- Location of the resource.
- partner_
namespace_ strname - Name of the partner namespace.
- partner_
registration_ strfully_ qualified_ id - The fully qualified ARM Id of the partner registration that should be associated with this partner namespace. This takes the following format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerRegistrations/{partnerRegistrationName}.
- partner_
topic_ str | Partnerrouting_ mode Topic Routing Mode - This determines if events published to this partner namespace should use the source attribute in the event payload or use the channel name in the header when matching to the partner topic. If none is specified, source attribute routing will be used to match the partner topic.
- public_
network_ str | Publicaccess Network Access - This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring
- Mapping[str, str]
- Tags of the resource.
- resource
Group StringName - The name of the resource group within the user's subscription.
- disable
Local BooleanAuth - This boolean is used to enable or disable local auth. Default value is false. When the property is set to true, only AAD token will be used to authenticate if user is allowed to publish to the partner namespace.
- inbound
Ip List<Property Map>Rules - This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
- location String
- Location of the resource.
- partner
Namespace StringName - Name of the partner namespace.
- partner
Registration StringFully Qualified Id - The fully qualified ARM Id of the partner registration that should be associated with this partner namespace. This takes the following format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerRegistrations/{partnerRegistrationName}.
- partner
Topic String | "SourceRouting Mode Event Attribute" | "Channel Name Header" - This determines if events published to this partner namespace should use the source attribute in the event payload or use the channel name in the header when matching to the partner topic. If none is specified, source attribute routing will be used to match the partner topic.
- public
Network String | "Enabled" | "Disabled"Access - This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring
- Map<String>
- Tags of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the PartnerNamespace resource produces the following output properties:
- Endpoint string
- Endpoint for the partner namespace.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the resource.
- Private
Endpoint List<Pulumi.Connections Azure Native. Event Grid. Outputs. Private Endpoint Connection Response> - Provisioning
State string - Provisioning state of the partner namespace.
- System
Data Pulumi.Azure Native. Event Grid. Outputs. System Data Response - The system metadata relating to Partner Namespace resource.
- Type string
- Type of the resource.
- Endpoint string
- Endpoint for the partner namespace.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the resource.
- Private
Endpoint []PrivateConnections Endpoint Connection Response - Provisioning
State string - Provisioning state of the partner namespace.
- System
Data SystemData Response - The system metadata relating to Partner Namespace resource.
- Type string
- Type of the resource.
- endpoint String
- Endpoint for the partner namespace.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the resource.
- private
Endpoint List<PrivateConnections Endpoint Connection Response> - provisioning
State String - Provisioning state of the partner namespace.
- system
Data SystemData Response - The system metadata relating to Partner Namespace resource.
- type String
- Type of the resource.
- endpoint string
- Endpoint for the partner namespace.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of the resource.
- private
Endpoint PrivateConnections Endpoint Connection Response[] - provisioning
State string - Provisioning state of the partner namespace.
- system
Data SystemData Response - The system metadata relating to Partner Namespace resource.
- type string
- Type of the resource.
- endpoint str
- Endpoint for the partner namespace.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of the resource.
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection Response] - provisioning_
state str - Provisioning state of the partner namespace.
- system_
data SystemData Response - The system metadata relating to Partner Namespace resource.
- type str
- Type of the resource.
- endpoint String
- Endpoint for the partner namespace.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the resource.
- private
Endpoint List<Property Map>Connections - provisioning
State String - Provisioning state of the partner namespace.
- system
Data Property Map - The system metadata relating to Partner Namespace resource.
- type String
- Type of the resource.
Supporting Types
ConnectionStateResponse, ConnectionStateResponseArgs
- Actions
Required string - Actions required (if any).
- Description string
- Description of the connection state.
- Status string
- Status of the connection.
- Actions
Required string - Actions required (if any).
- Description string
- Description of the connection state.
- Status string
- Status of the connection.
- actions
Required String - Actions required (if any).
- description String
- Description of the connection state.
- status String
- Status of the connection.
- actions
Required string - Actions required (if any).
- description string
- Description of the connection state.
- status string
- Status of the connection.
- actions_
required str - Actions required (if any).
- description str
- Description of the connection state.
- status str
- Status of the connection.
- actions
Required String - Actions required (if any).
- description String
- Description of the connection state.
- status String
- Status of the connection.
InboundIpRule, InboundIpRuleArgs
- Action
string | Pulumi.
Azure Native. Event Grid. Ip Action Type - Action to perform based on the match or no match of the IpMask.
- Ip
Mask string - IP Address in CIDR notation e.g., 10.0.0.0/8.
- Action
string | Ip
Action Type - Action to perform based on the match or no match of the IpMask.
- Ip
Mask string - IP Address in CIDR notation e.g., 10.0.0.0/8.
- action
String | Ip
Action Type - Action to perform based on the match or no match of the IpMask.
- ip
Mask String - IP Address in CIDR notation e.g., 10.0.0.0/8.
- action
string | Ip
Action Type - Action to perform based on the match or no match of the IpMask.
- ip
Mask string - IP Address in CIDR notation e.g., 10.0.0.0/8.
- action
str | Ip
Action Type - Action to perform based on the match or no match of the IpMask.
- ip_
mask str - IP Address in CIDR notation e.g., 10.0.0.0/8.
InboundIpRuleResponse, InboundIpRuleResponseArgs
IpActionType, IpActionTypeArgs
- Allow
- Allow
- Ip
Action Type Allow - Allow
- Allow
- Allow
- Allow
- Allow
- ALLOW
- Allow
- "Allow"
- Allow
PartnerTopicRoutingMode, PartnerTopicRoutingModeArgs
- Source
Event Attribute - SourceEventAttribute
- Channel
Name Header - ChannelNameHeader
- Partner
Topic Routing Mode Source Event Attribute - SourceEventAttribute
- Partner
Topic Routing Mode Channel Name Header - ChannelNameHeader
- Source
Event Attribute - SourceEventAttribute
- Channel
Name Header - ChannelNameHeader
- Source
Event Attribute - SourceEventAttribute
- Channel
Name Header - ChannelNameHeader
- SOURCE_EVENT_ATTRIBUTE
- SourceEventAttribute
- CHANNEL_NAME_HEADER
- ChannelNameHeader
- "Source
Event Attribute" - SourceEventAttribute
- "Channel
Name Header" - ChannelNameHeader
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs
- Id string
- Fully qualified identifier of the resource.
- Name string
- Name of the resource.
- Type string
- Type of the resource.
- Group
Ids List<string> - GroupIds from the private link service resource.
- Private
Endpoint Pulumi.Azure Native. Event Grid. Inputs. Private Endpoint Response - The Private Endpoint resource for this Connection.
- Private
Link Pulumi.Service Connection State Azure Native. Event Grid. Inputs. Connection State Response - Details about the state of the connection.
- Provisioning
State string - Provisioning state of the Private Endpoint Connection.
- Id string
- Fully qualified identifier of the resource.
- Name string
- Name of the resource.
- Type string
- Type of the resource.
- Group
Ids []string - GroupIds from the private link service resource.
- Private
Endpoint PrivateEndpoint Response - The Private Endpoint resource for this Connection.
- Private
Link ConnectionService Connection State State Response - Details about the state of the connection.
- Provisioning
State string - Provisioning state of the Private Endpoint Connection.
- id String
- Fully qualified identifier of the resource.
- name String
- Name of the resource.
- type String
- Type of the resource.
- group
Ids List<String> - GroupIds from the private link service resource.
- private
Endpoint PrivateEndpoint Response - The Private Endpoint resource for this Connection.
- private
Link ConnectionService Connection State State Response - Details about the state of the connection.
- provisioning
State String - Provisioning state of the Private Endpoint Connection.
- id string
- Fully qualified identifier of the resource.
- name string
- Name of the resource.
- type string
- Type of the resource.
- group
Ids string[] - GroupIds from the private link service resource.
- private
Endpoint PrivateEndpoint Response - The Private Endpoint resource for this Connection.
- private
Link ConnectionService Connection State State Response - Details about the state of the connection.
- provisioning
State string - Provisioning state of the Private Endpoint Connection.
- id str
- Fully qualified identifier of the resource.
- name str
- Name of the resource.
- type str
- Type of the resource.
- group_
ids Sequence[str] - GroupIds from the private link service resource.
- private_
endpoint PrivateEndpoint Response - The Private Endpoint resource for this Connection.
- private_
link_ Connectionservice_ connection_ state State Response - Details about the state of the connection.
- provisioning_
state str - Provisioning state of the Private Endpoint Connection.
- id String
- Fully qualified identifier of the resource.
- name String
- Name of the resource.
- type String
- Type of the resource.
- group
Ids List<String> - GroupIds from the private link service resource.
- private
Endpoint Property Map - The Private Endpoint resource for this Connection.
- private
Link Property MapService Connection State - Details about the state of the connection.
- provisioning
State String - Provisioning state of the Private Endpoint Connection.
PrivateEndpointResponse, PrivateEndpointResponseArgs
- Id string
- The ARM identifier for Private Endpoint.
- Id string
- The ARM identifier for Private Endpoint.
- id String
- The ARM identifier for Private Endpoint.
- id string
- The ARM identifier for Private Endpoint.
- id str
- The ARM identifier for Private Endpoint.
- id String
- The ARM identifier for Private Endpoint.
PublicNetworkAccess, PublicNetworkAccessArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Public
Network Access Enabled - Enabled
- Public
Network Access Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
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:PartnerNamespace examplePartnerNamespaceName1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerNamespaces/{partnerNamespaceName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0