azure-native.relay.Namespace
Explore with Pulumi AI
Description of a namespace resource. Azure REST API version: 2021-11-01. Prior API version in Azure Native 1.x: 2017-04-01.
Other available API versions: 2024-01-01.
Example Usage
RelayNamespaceCreate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var @namespace = new AzureNative.Relay.Namespace("namespace", new()
{
Location = "South Central US",
NamespaceName = "example-RelayNamespace-5849",
ResourceGroupName = "resourcegroup",
Sku = new AzureNative.Relay.Inputs.SkuArgs
{
Name = AzureNative.Relay.SkuName.Standard,
Tier = AzureNative.Relay.SkuTier.Standard,
},
Tags =
{
{ "tag1", "value1" },
{ "tag2", "value2" },
},
});
});
package main
import (
relay "github.com/pulumi/pulumi-azure-native-sdk/relay/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := relay.NewNamespace(ctx, "namespace", &relay.NamespaceArgs{
Location: pulumi.String("South Central US"),
NamespaceName: pulumi.String("example-RelayNamespace-5849"),
ResourceGroupName: pulumi.String("resourcegroup"),
Sku: &relay.SkuArgs{
Name: pulumi.String(relay.SkuNameStandard),
Tier: pulumi.String(relay.SkuTierStandard),
},
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.relay.Namespace;
import com.pulumi.azurenative.relay.NamespaceArgs;
import com.pulumi.azurenative.relay.inputs.SkuArgs;
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 namespace = new Namespace("namespace", NamespaceArgs.builder()
.location("South Central US")
.namespaceName("example-RelayNamespace-5849")
.resourceGroupName("resourcegroup")
.sku(SkuArgs.builder()
.name("Standard")
.tier("Standard")
.build())
.tags(Map.ofEntries(
Map.entry("tag1", "value1"),
Map.entry("tag2", "value2")
))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
namespace = azure_native.relay.Namespace("namespace",
location="South Central US",
namespace_name="example-RelayNamespace-5849",
resource_group_name="resourcegroup",
sku={
"name": azure_native.relay.SkuName.STANDARD,
"tier": azure_native.relay.SkuTier.STANDARD,
},
tags={
"tag1": "value1",
"tag2": "value2",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const namespace = new azure_native.relay.Namespace("namespace", {
location: "South Central US",
namespaceName: "example-RelayNamespace-5849",
resourceGroupName: "resourcegroup",
sku: {
name: azure_native.relay.SkuName.Standard,
tier: azure_native.relay.SkuTier.Standard,
},
tags: {
tag1: "value1",
tag2: "value2",
},
});
resources:
namespace:
type: azure-native:relay:Namespace
properties:
location: South Central US
namespaceName: example-RelayNamespace-5849
resourceGroupName: resourcegroup
sku:
name: Standard
tier: Standard
tags:
tag1: value1
tag2: value2
Create Namespace Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Namespace(name: string, args: NamespaceArgs, opts?: CustomResourceOptions);
@overload
def Namespace(resource_name: str,
args: NamespaceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Namespace(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
location: Optional[str] = None,
namespace_name: Optional[str] = None,
private_endpoint_connections: Optional[Sequence[PrivateEndpointConnectionArgs]] = None,
public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
sku: Optional[SkuArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewNamespace(ctx *Context, name string, args NamespaceArgs, opts ...ResourceOption) (*Namespace, error)
public Namespace(string name, NamespaceArgs args, CustomResourceOptions? opts = null)
public Namespace(String name, NamespaceArgs args)
public Namespace(String name, NamespaceArgs args, CustomResourceOptions options)
type: azure-native:relay:Namespace
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 NamespaceArgs
- 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 NamespaceArgs
- 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 NamespaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NamespaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NamespaceArgs
- 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 examplenamespaceResourceResourceFromRelay = new AzureNative.Relay.Namespace("examplenamespaceResourceResourceFromRelay", new()
{
ResourceGroupName = "string",
Location = "string",
NamespaceName = "string",
PrivateEndpointConnections = new[]
{
new AzureNative.Relay.Inputs.PrivateEndpointConnectionArgs
{
PrivateEndpoint = new AzureNative.Relay.Inputs.PrivateEndpointArgs
{
Id = "string",
},
PrivateLinkServiceConnectionState = new AzureNative.Relay.Inputs.ConnectionStateArgs
{
Description = "string",
Status = "string",
},
ProvisioningState = "string",
},
},
PublicNetworkAccess = "string",
Sku = new AzureNative.Relay.Inputs.SkuArgs
{
Name = "string",
Tier = "string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := relay.NewNamespace(ctx, "examplenamespaceResourceResourceFromRelay", &relay.NamespaceArgs{
ResourceGroupName: pulumi.String("string"),
Location: pulumi.String("string"),
NamespaceName: pulumi.String("string"),
PrivateEndpointConnections: relay.PrivateEndpointConnectionTypeArray{
&relay.PrivateEndpointConnectionTypeArgs{
PrivateEndpoint: &relay.PrivateEndpointArgs{
Id: pulumi.String("string"),
},
PrivateLinkServiceConnectionState: &relay.ConnectionStateArgs{
Description: pulumi.String("string"),
Status: pulumi.String("string"),
},
ProvisioningState: pulumi.String("string"),
},
},
PublicNetworkAccess: pulumi.String("string"),
Sku: &relay.SkuArgs{
Name: pulumi.String("string"),
Tier: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var examplenamespaceResourceResourceFromRelay = new Namespace("examplenamespaceResourceResourceFromRelay", NamespaceArgs.builder()
.resourceGroupName("string")
.location("string")
.namespaceName("string")
.privateEndpointConnections(PrivateEndpointConnectionArgs.builder()
.privateEndpoint(PrivateEndpointArgs.builder()
.id("string")
.build())
.privateLinkServiceConnectionState(ConnectionStateArgs.builder()
.description("string")
.status("string")
.build())
.provisioningState("string")
.build())
.publicNetworkAccess("string")
.sku(SkuArgs.builder()
.name("string")
.tier("string")
.build())
.tags(Map.of("string", "string"))
.build());
examplenamespace_resource_resource_from_relay = azure_native.relay.Namespace("examplenamespaceResourceResourceFromRelay",
resource_group_name="string",
location="string",
namespace_name="string",
private_endpoint_connections=[{
"privateEndpoint": {
"id": "string",
},
"privateLinkServiceConnectionState": {
"description": "string",
"status": "string",
},
"provisioningState": "string",
}],
public_network_access="string",
sku={
"name": "string",
"tier": "string",
},
tags={
"string": "string",
})
const examplenamespaceResourceResourceFromRelay = new azure_native.relay.Namespace("examplenamespaceResourceResourceFromRelay", {
resourceGroupName: "string",
location: "string",
namespaceName: "string",
privateEndpointConnections: [{
privateEndpoint: {
id: "string",
},
privateLinkServiceConnectionState: {
description: "string",
status: "string",
},
provisioningState: "string",
}],
publicNetworkAccess: "string",
sku: {
name: "string",
tier: "string",
},
tags: {
string: "string",
},
});
type: azure-native:relay:Namespace
properties:
location: string
namespaceName: string
privateEndpointConnections:
- privateEndpoint:
id: string
privateLinkServiceConnectionState:
description: string
status: string
provisioningState: string
publicNetworkAccess: string
resourceGroupName: string
sku:
name: string
tier: string
tags:
string: string
Namespace 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 Namespace resource accepts the following input properties:
- Resource
Group stringName - Name of the Resource group within the Azure subscription.
- Location string
- Resource location.
- Namespace
Name string - The namespace name
- Private
Endpoint List<Pulumi.Connections Azure Native. Relay. Inputs. Private Endpoint Connection> - List of private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- Public
Network string | Pulumi.Access Azure Native. Relay. Public Network Access - This determines if traffic is allowed over public network. By default it is enabled.
- Sku
Pulumi.
Azure Native. Relay. Inputs. Sku - SKU of the namespace.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - Name of the Resource group within the Azure subscription.
- Location string
- Resource location.
- Namespace
Name string - The namespace name
- Private
Endpoint []PrivateConnections Endpoint Connection Type Args - List of private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- Public
Network string | PublicAccess Network Access - This determines if traffic is allowed over public network. By default it is enabled.
- Sku
Sku
Args - SKU of the namespace.
- map[string]string
- Resource tags.
- resource
Group StringName - Name of the Resource group within the Azure subscription.
- location String
- Resource location.
- namespace
Name String - The namespace name
- private
Endpoint List<PrivateConnections Endpoint Connection> - List of private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- public
Network String | PublicAccess Network Access - This determines if traffic is allowed over public network. By default it is enabled.
- sku Sku
- SKU of the namespace.
- Map<String,String>
- Resource tags.
- resource
Group stringName - Name of the Resource group within the Azure subscription.
- location string
- Resource location.
- namespace
Name string - The namespace name
- private
Endpoint PrivateConnections Endpoint Connection[] - List of private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- public
Network string | PublicAccess Network Access - This determines if traffic is allowed over public network. By default it is enabled.
- sku Sku
- SKU of the namespace.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - Name of the Resource group within the Azure subscription.
- location str
- Resource location.
- namespace_
name str - The namespace name
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection Args] - List of private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- public_
network_ str | Publicaccess Network Access - This determines if traffic is allowed over public network. By default it is enabled.
- sku
Sku
Args - SKU of the namespace.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - Name of the Resource group within the Azure subscription.
- location String
- Resource location.
- namespace
Name String - The namespace name
- private
Endpoint List<Property Map>Connections - List of private endpoint connections. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
- public
Network String | "Enabled" | "Disabled" | "SecuredAccess By Perimeter" - This determines if traffic is allowed over public network. By default it is enabled.
- sku Property Map
- SKU of the namespace.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Namespace resource produces the following output properties:
- Created
At string - The time the namespace was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metric
Id string - Identifier for Azure Insights metrics.
- Name string
- Resource name.
- Provisioning
State string - Provisioning state of the Namespace.
- Service
Bus stringEndpoint - Endpoint you can use to perform Service Bus operations.
- Status string
- Status of the Namespace.
- System
Data Pulumi.Azure Native. Relay. Outputs. System Data Response - The system meta data relating to this resource.
- Type string
- Resource type.
- Updated
At string - The time the namespace was updated.
- Created
At string - The time the namespace was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metric
Id string - Identifier for Azure Insights metrics.
- Name string
- Resource name.
- Provisioning
State string - Provisioning state of the Namespace.
- Service
Bus stringEndpoint - Endpoint you can use to perform Service Bus operations.
- Status string
- Status of the Namespace.
- System
Data SystemData Response - The system meta data relating to this resource.
- Type string
- Resource type.
- Updated
At string - The time the namespace was updated.
- created
At String - The time the namespace was created.
- id String
- The provider-assigned unique ID for this managed resource.
- metric
Id String - Identifier for Azure Insights metrics.
- name String
- Resource name.
- provisioning
State String - Provisioning state of the Namespace.
- service
Bus StringEndpoint - Endpoint you can use to perform Service Bus operations.
- status String
- Status of the Namespace.
- system
Data SystemData Response - The system meta data relating to this resource.
- type String
- Resource type.
- updated
At String - The time the namespace was updated.
- created
At string - The time the namespace was created.
- id string
- The provider-assigned unique ID for this managed resource.
- metric
Id string - Identifier for Azure Insights metrics.
- name string
- Resource name.
- provisioning
State string - Provisioning state of the Namespace.
- service
Bus stringEndpoint - Endpoint you can use to perform Service Bus operations.
- status string
- Status of the Namespace.
- system
Data SystemData Response - The system meta data relating to this resource.
- type string
- Resource type.
- updated
At string - The time the namespace was updated.
- created_
at str - The time the namespace was created.
- id str
- The provider-assigned unique ID for this managed resource.
- metric_
id str - Identifier for Azure Insights metrics.
- name str
- Resource name.
- provisioning_
state str - Provisioning state of the Namespace.
- service_
bus_ strendpoint - Endpoint you can use to perform Service Bus operations.
- status str
- Status of the Namespace.
- system_
data SystemData Response - The system meta data relating to this resource.
- type str
- Resource type.
- updated_
at str - The time the namespace was updated.
- created
At String - The time the namespace was created.
- id String
- The provider-assigned unique ID for this managed resource.
- metric
Id String - Identifier for Azure Insights metrics.
- name String
- Resource name.
- provisioning
State String - Provisioning state of the Namespace.
- service
Bus StringEndpoint - Endpoint you can use to perform Service Bus operations.
- status String
- Status of the Namespace.
- system
Data Property Map - The system meta data relating to this resource.
- type String
- Resource type.
- updated
At String - The time the namespace was updated.
Supporting Types
ConnectionState, ConnectionStateArgs
- Description string
- Description of the connection state.
- Status
string | Pulumi.
Azure Native. Relay. Private Link Connection Status - Status of the connection.
- Description string
- Description of the connection state.
- Status
string | Private
Link Connection Status - Status of the connection.
- description String
- Description of the connection state.
- status
String | Private
Link Connection Status - Status of the connection.
- description string
- Description of the connection state.
- status
string | Private
Link Connection Status - Status of the connection.
- description str
- Description of the connection state.
- status
str | Private
Link Connection Status - Status of the connection.
- description String
- Description of the connection state.
- status String | "Pending" | "Approved" | "Rejected" | "Disconnected"
- Status of the connection.
ConnectionStateResponse, ConnectionStateResponseArgs
- Description string
- Description of the connection state.
- Status string
- Status of the connection.
- Description string
- Description of the connection state.
- Status string
- Status of the connection.
- description String
- Description of the connection state.
- status String
- Status of the connection.
- description string
- Description of the connection state.
- status string
- Status of the connection.
- description str
- Description of the connection state.
- status str
- Status of the connection.
- description String
- Description of the connection state.
- status String
- Status of the connection.
EndPointProvisioningState, EndPointProvisioningStateArgs
- Creating
- Creating
- Updating
- Updating
- Deleting
- Deleting
- Succeeded
- Succeeded
- Canceled
- Canceled
- Failed
- Failed
- End
Point Provisioning State Creating - Creating
- End
Point Provisioning State Updating - Updating
- End
Point Provisioning State Deleting - Deleting
- End
Point Provisioning State Succeeded - Succeeded
- End
Point Provisioning State Canceled - Canceled
- End
Point Provisioning State Failed - Failed
- Creating
- Creating
- Updating
- Updating
- Deleting
- Deleting
- Succeeded
- Succeeded
- Canceled
- Canceled
- Failed
- Failed
- Creating
- Creating
- Updating
- Updating
- Deleting
- Deleting
- Succeeded
- Succeeded
- Canceled
- Canceled
- Failed
- Failed
- CREATING
- Creating
- UPDATING
- Updating
- DELETING
- Deleting
- SUCCEEDED
- Succeeded
- CANCELED
- Canceled
- FAILED
- Failed
- "Creating"
- Creating
- "Updating"
- Updating
- "Deleting"
- Deleting
- "Succeeded"
- Succeeded
- "Canceled"
- Canceled
- "Failed"
- Failed
PrivateEndpoint, PrivateEndpointArgs
- 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.
PrivateEndpointConnection, PrivateEndpointConnectionArgs
- Private
Endpoint Pulumi.Azure Native. Relay. Inputs. Private Endpoint - The Private Endpoint resource for this Connection.
- Private
Link Pulumi.Service Connection State Azure Native. Relay. Inputs. Connection State - Details about the state of the connection.
- Provisioning
State string | Pulumi.Azure Native. Relay. End Point Provisioning State - Provisioning state of the Private Endpoint Connection.
- Private
Endpoint PrivateEndpoint - The Private Endpoint resource for this Connection.
- Private
Link ConnectionService Connection State State - Details about the state of the connection.
- Provisioning
State string | EndPoint Provisioning State - Provisioning state of the Private Endpoint Connection.
- private
Endpoint PrivateEndpoint - The Private Endpoint resource for this Connection.
- private
Link ConnectionService Connection State State - Details about the state of the connection.
- provisioning
State String | EndPoint Provisioning State - Provisioning state of the Private Endpoint Connection.
- private
Endpoint PrivateEndpoint - The Private Endpoint resource for this Connection.
- private
Link ConnectionService Connection State State - Details about the state of the connection.
- provisioning
State string | EndPoint Provisioning State - Provisioning state of the Private Endpoint Connection.
- private_
endpoint PrivateEndpoint - The Private Endpoint resource for this Connection.
- private_
link_ Connectionservice_ connection_ state State - Details about the state of the connection.
- provisioning_
state str | EndPoint Provisioning State - Provisioning state of the Private Endpoint Connection.
- 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 | "Creating" | "Updating" | "Deleting" | "Succeeded" | "Canceled" | "Failed" - Provisioning state of the Private Endpoint Connection.
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs
- Id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Location string
- The geo-location where the resource lives
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Relay. Inputs. System Data Response - The system meta data relating to this resource.
- Type string
- The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
- Private
Endpoint Pulumi.Azure Native. Relay. Inputs. Private Endpoint Response - The Private Endpoint resource for this Connection.
- Private
Link Pulumi.Service Connection State Azure Native. Relay. 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 resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Location string
- The geo-location where the resource lives
- Name string
- The name of the resource
- System
Data SystemData Response - The system meta data relating to this resource.
- Type string
- The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
- 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 resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- location String
- The geo-location where the resource lives
- name String
- The name of the resource
- system
Data SystemData Response - The system meta data relating to this resource.
- type String
- The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
- 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 resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- location string
- The geo-location where the resource lives
- name string
- The name of the resource
- system
Data SystemData Response - The system meta data relating to this resource.
- type string
- The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
- 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 resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- location str
- The geo-location where the resource lives
- name str
- The name of the resource
- system_
data SystemData Response - The system meta data relating to this resource.
- type str
- The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
- 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 resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- location String
- The geo-location where the resource lives
- name String
- The name of the resource
- system
Data Property Map - The system meta data relating to this resource.
- type String
- The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
- 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.
PrivateLinkConnectionStatus, PrivateLinkConnectionStatusArgs
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- Disconnected
- Disconnected
- Private
Link Connection Status Pending - Pending
- Private
Link Connection Status Approved - Approved
- Private
Link Connection Status Rejected - Rejected
- Private
Link Connection Status Disconnected - Disconnected
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- Disconnected
- Disconnected
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- Disconnected
- Disconnected
- PENDING
- Pending
- APPROVED
- Approved
- REJECTED
- Rejected
- DISCONNECTED
- Disconnected
- "Pending"
- Pending
- "Approved"
- Approved
- "Rejected"
- Rejected
- "Disconnected"
- Disconnected
PublicNetworkAccess, PublicNetworkAccessArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Secured
By Perimeter - SecuredByPerimeter
- Public
Network Access Enabled - Enabled
- Public
Network Access Disabled - Disabled
- Public
Network Access Secured By Perimeter - SecuredByPerimeter
- Enabled
- Enabled
- Disabled
- Disabled
- Secured
By Perimeter - SecuredByPerimeter
- Enabled
- Enabled
- Disabled
- Disabled
- Secured
By Perimeter - SecuredByPerimeter
- ENABLED
- Enabled
- DISABLED
- Disabled
- SECURED_BY_PERIMETER
- SecuredByPerimeter
- "Enabled"
- Enabled
- "Disabled"
- Disabled
- "Secured
By Perimeter" - SecuredByPerimeter
Sku, SkuArgs
- Name
string | Pulumi.
Azure Native. Relay. Sku Name - Name of this SKU.
- Tier
string | Pulumi.
Azure Native. Relay. Sku Tier - The tier of this SKU.
- name String | "Standard"
- Name of this SKU.
- tier String | "Standard"
- The tier of this SKU.
SkuName, SkuNameArgs
- Standard
- Standard
- Sku
Name Standard - Standard
- Standard
- Standard
- Standard
- Standard
- STANDARD
- Standard
- "Standard"
- Standard
SkuResponse, SkuResponseArgs
SkuTier, SkuTierArgs
- Standard
- Standard
- Sku
Tier Standard - Standard
- Standard
- Standard
- Standard
- Standard
- STANDARD
- Standard
- "Standard"
- Standard
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:relay:Namespace example-RelayNamespace-5849 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Relay/namespaces/{namespaceName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0