azure-native.notificationhubs.PrivateEndpointConnection
Explore with Pulumi AI
Represents a Private Endpoint Connection ARM resource - a sub-resource of Notification Hubs namespace. Azure REST API version: 2023-01-01-preview.
Other available API versions: 2023-09-01, 2023-10-01-preview.
Example Usage
PrivateEndpointConnections_Update
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var privateEndpointConnection = new AzureNative.NotificationHubs.PrivateEndpointConnection("privateEndpointConnection", new()
{
NamespaceName = "nh-sdk-ns",
PrivateEndpointConnectionName = "nh-sdk-ns.1fa229cd-bf3f-47f0-8c49-afb36723997e",
Properties = new AzureNative.NotificationHubs.Inputs.PrivateEndpointConnectionPropertiesArgs
{
PrivateLinkServiceConnectionState = new AzureNative.NotificationHubs.Inputs.RemotePrivateLinkServiceConnectionStateArgs
{
Status = AzureNative.NotificationHubs.PrivateLinkConnectionStatus.Approved,
},
},
ResourceGroupName = "5ktrial",
});
});
package main
import (
notificationhubs "github.com/pulumi/pulumi-azure-native-sdk/notificationhubs/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := notificationhubs.NewPrivateEndpointConnection(ctx, "privateEndpointConnection", ¬ificationhubs.PrivateEndpointConnectionArgs{
NamespaceName: pulumi.String("nh-sdk-ns"),
PrivateEndpointConnectionName: pulumi.String("nh-sdk-ns.1fa229cd-bf3f-47f0-8c49-afb36723997e"),
Properties: ¬ificationhubs.PrivateEndpointConnectionPropertiesArgs{
PrivateLinkServiceConnectionState: ¬ificationhubs.RemotePrivateLinkServiceConnectionStateArgs{
Status: pulumi.String(notificationhubs.PrivateLinkConnectionStatusApproved),
},
},
ResourceGroupName: pulumi.String("5ktrial"),
})
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.notificationhubs.PrivateEndpointConnection;
import com.pulumi.azurenative.notificationhubs.PrivateEndpointConnectionArgs;
import com.pulumi.azurenative.notificationhubs.inputs.PrivateEndpointConnectionPropertiesArgs;
import com.pulumi.azurenative.notificationhubs.inputs.RemotePrivateLinkServiceConnectionStateArgs;
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 privateEndpointConnection = new PrivateEndpointConnection("privateEndpointConnection", PrivateEndpointConnectionArgs.builder()
.namespaceName("nh-sdk-ns")
.privateEndpointConnectionName("nh-sdk-ns.1fa229cd-bf3f-47f0-8c49-afb36723997e")
.properties(PrivateEndpointConnectionPropertiesArgs.builder()
.privateLinkServiceConnectionState(RemotePrivateLinkServiceConnectionStateArgs.builder()
.status("Approved")
.build())
.build())
.resourceGroupName("5ktrial")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
private_endpoint_connection = azure_native.notificationhubs.PrivateEndpointConnection("privateEndpointConnection",
namespace_name="nh-sdk-ns",
private_endpoint_connection_name="nh-sdk-ns.1fa229cd-bf3f-47f0-8c49-afb36723997e",
properties=azure_native.notificationhubs.PrivateEndpointConnectionPropertiesArgs(
private_link_service_connection_state=azure_native.notificationhubs.RemotePrivateLinkServiceConnectionStateArgs(
status=azure_native.notificationhubs.PrivateLinkConnectionStatus.APPROVED,
),
),
resource_group_name="5ktrial")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const privateEndpointConnection = new azure_native.notificationhubs.PrivateEndpointConnection("privateEndpointConnection", {
namespaceName: "nh-sdk-ns",
privateEndpointConnectionName: "nh-sdk-ns.1fa229cd-bf3f-47f0-8c49-afb36723997e",
properties: {
privateLinkServiceConnectionState: {
status: azure_native.notificationhubs.PrivateLinkConnectionStatus.Approved,
},
},
resourceGroupName: "5ktrial",
});
resources:
privateEndpointConnection:
type: azure-native:notificationhubs:PrivateEndpointConnection
properties:
namespaceName: nh-sdk-ns
privateEndpointConnectionName: nh-sdk-ns.1fa229cd-bf3f-47f0-8c49-afb36723997e
properties:
privateLinkServiceConnectionState:
status: Approved
resourceGroupName: 5ktrial
Create PrivateEndpointConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PrivateEndpointConnection(name: string, args: PrivateEndpointConnectionArgs, opts?: CustomResourceOptions);
@overload
def PrivateEndpointConnection(resource_name: str,
args: PrivateEndpointConnectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PrivateEndpointConnection(resource_name: str,
opts: Optional[ResourceOptions] = None,
namespace_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
private_endpoint_connection_name: Optional[str] = None,
properties: Optional[PrivateEndpointConnectionPropertiesArgs] = None)
func NewPrivateEndpointConnection(ctx *Context, name string, args PrivateEndpointConnectionArgs, opts ...ResourceOption) (*PrivateEndpointConnection, error)
public PrivateEndpointConnection(string name, PrivateEndpointConnectionArgs args, CustomResourceOptions? opts = null)
public PrivateEndpointConnection(String name, PrivateEndpointConnectionArgs args)
public PrivateEndpointConnection(String name, PrivateEndpointConnectionArgs args, CustomResourceOptions options)
type: azure-native:notificationhubs:PrivateEndpointConnection
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 PrivateEndpointConnectionArgs
- 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 PrivateEndpointConnectionArgs
- 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 PrivateEndpointConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PrivateEndpointConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PrivateEndpointConnectionArgs
- 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 exampleprivateEndpointConnectionResourceResourceFromNotificationhubs = new AzureNative.NotificationHubs.PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromNotificationhubs", new()
{
NamespaceName = "string",
ResourceGroupName = "string",
PrivateEndpointConnectionName = "string",
Properties = new AzureNative.NotificationHubs.Inputs.PrivateEndpointConnectionPropertiesArgs
{
PrivateLinkServiceConnectionState = new AzureNative.NotificationHubs.Inputs.RemotePrivateLinkServiceConnectionStateArgs
{
Status = "string",
},
ProvisioningState = "string",
},
});
example, err := notificationhubs.NewPrivateEndpointConnection(ctx, "exampleprivateEndpointConnectionResourceResourceFromNotificationhubs", ¬ificationhubs.PrivateEndpointConnectionArgs{
NamespaceName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
PrivateEndpointConnectionName: pulumi.String("string"),
Properties: ¬ificationhubs.PrivateEndpointConnectionPropertiesArgs{
PrivateLinkServiceConnectionState: ¬ificationhubs.RemotePrivateLinkServiceConnectionStateArgs{
Status: pulumi.String("string"),
},
ProvisioningState: pulumi.String("string"),
},
})
var exampleprivateEndpointConnectionResourceResourceFromNotificationhubs = new PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromNotificationhubs", PrivateEndpointConnectionArgs.builder()
.namespaceName("string")
.resourceGroupName("string")
.privateEndpointConnectionName("string")
.properties(PrivateEndpointConnectionPropertiesArgs.builder()
.privateLinkServiceConnectionState(RemotePrivateLinkServiceConnectionStateArgs.builder()
.status("string")
.build())
.provisioningState("string")
.build())
.build());
exampleprivate_endpoint_connection_resource_resource_from_notificationhubs = azure_native.notificationhubs.PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromNotificationhubs",
namespace_name="string",
resource_group_name="string",
private_endpoint_connection_name="string",
properties=azure_native.notificationhubs.PrivateEndpointConnectionPropertiesArgs(
private_link_service_connection_state=azure_native.notificationhubs.RemotePrivateLinkServiceConnectionStateArgs(
status="string",
),
provisioning_state="string",
))
const exampleprivateEndpointConnectionResourceResourceFromNotificationhubs = new azure_native.notificationhubs.PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromNotificationhubs", {
namespaceName: "string",
resourceGroupName: "string",
privateEndpointConnectionName: "string",
properties: {
privateLinkServiceConnectionState: {
status: "string",
},
provisioningState: "string",
},
});
type: azure-native:notificationhubs:PrivateEndpointConnection
properties:
namespaceName: string
privateEndpointConnectionName: string
properties:
privateLinkServiceConnectionState:
status: string
provisioningState: string
resourceGroupName: string
PrivateEndpointConnection 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 PrivateEndpointConnection resource accepts the following input properties:
- Namespace
Name string - Namespace name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Private
Endpoint stringConnection Name - Private Endpoint Connection Name
- Properties
Pulumi.
Azure Native. Notification Hubs. Inputs. Private Endpoint Connection Properties - Private Endpoint Connection properties.
- Namespace
Name string - Namespace name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Private
Endpoint stringConnection Name - Private Endpoint Connection Name
- Properties
Private
Endpoint Connection Properties Args - Private Endpoint Connection properties.
- namespace
Name String - Namespace name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- private
Endpoint StringConnection Name - Private Endpoint Connection Name
- properties
Private
Endpoint Connection Properties - Private Endpoint Connection properties.
- namespace
Name string - Namespace name
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- private
Endpoint stringConnection Name - Private Endpoint Connection Name
- properties
Private
Endpoint Connection Properties - Private Endpoint Connection properties.
- namespace_
name str - Namespace name
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- private_
endpoint_ strconnection_ name - Private Endpoint Connection Name
- properties
Private
Endpoint Connection Properties Args - Private Endpoint Connection properties.
- namespace
Name String - Namespace name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- private
Endpoint StringConnection Name - Private Endpoint Connection Name
- properties Property Map
- Private Endpoint Connection properties.
Outputs
All input properties are implicitly available as output properties. Additionally, the PrivateEndpointConnection resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Notification Hubs. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
PrivateEndpointConnectionProperties, PrivateEndpointConnectionPropertiesArgs
- Private
Link Pulumi.Service Connection State Azure Native. Notification Hubs. Inputs. Remote Private Link Service Connection State - State of the Private Link Service connection.
- Provisioning
State string | Pulumi.Azure Native. Notification Hubs. Private Endpoint Connection Provisioning State - State of Private Endpoint Connection.
- Private
Link RemoteService Connection State Private Link Service Connection State - State of the Private Link Service connection.
- Provisioning
State string | PrivateEndpoint Connection Provisioning State - State of Private Endpoint Connection.
- private
Link RemoteService Connection State Private Link Service Connection State - State of the Private Link Service connection.
- provisioning
State String | PrivateEndpoint Connection Provisioning State - State of Private Endpoint Connection.
- private
Link RemoteService Connection State Private Link Service Connection State - State of the Private Link Service connection.
- provisioning
State string | PrivateEndpoint Connection Provisioning State - State of Private Endpoint Connection.
- private_
link_ Remoteservice_ connection_ state Private Link Service Connection State - State of the Private Link Service connection.
- provisioning_
state str | PrivateEndpoint Connection Provisioning State - State of Private Endpoint Connection.
- private
Link Property MapService Connection State - State of the Private Link Service connection.
- provisioning
State String | "Unknown" | "Succeeded" | "Creating" | "Updating" | "UpdatingBy Proxy" | "Deleting" | "Deleting By Proxy" | "Deleted" - State of Private Endpoint Connection.
PrivateEndpointConnectionPropertiesResponse, PrivateEndpointConnectionPropertiesResponseArgs
- Group
Ids List<string> - List of group ids. For Notification Hubs, it always contains a single "namespace" element.
- Private
Endpoint Pulumi.Azure Native. Notification Hubs. Inputs. Remote Private Endpoint Connection Response - Represents a Private Endpoint that is connected to Notification Hubs namespace using Private Endpoint Connection.
- Private
Link Pulumi.Service Connection State Azure Native. Notification Hubs. Inputs. Remote Private Link Service Connection State Response - State of the Private Link Service connection.
- Provisioning
State string - State of Private Endpoint Connection.
- Group
Ids []string - List of group ids. For Notification Hubs, it always contains a single "namespace" element.
- Private
Endpoint RemotePrivate Endpoint Connection Response - Represents a Private Endpoint that is connected to Notification Hubs namespace using Private Endpoint Connection.
- Private
Link RemoteService Connection State Private Link Service Connection State Response - State of the Private Link Service connection.
- Provisioning
State string - State of Private Endpoint Connection.
- group
Ids List<String> - List of group ids. For Notification Hubs, it always contains a single "namespace" element.
- private
Endpoint RemotePrivate Endpoint Connection Response - Represents a Private Endpoint that is connected to Notification Hubs namespace using Private Endpoint Connection.
- private
Link RemoteService Connection State Private Link Service Connection State Response - State of the Private Link Service connection.
- provisioning
State String - State of Private Endpoint Connection.
- group
Ids string[] - List of group ids. For Notification Hubs, it always contains a single "namespace" element.
- private
Endpoint RemotePrivate Endpoint Connection Response - Represents a Private Endpoint that is connected to Notification Hubs namespace using Private Endpoint Connection.
- private
Link RemoteService Connection State Private Link Service Connection State Response - State of the Private Link Service connection.
- provisioning
State string - State of Private Endpoint Connection.
- group_
ids Sequence[str] - List of group ids. For Notification Hubs, it always contains a single "namespace" element.
- private_
endpoint RemotePrivate Endpoint Connection Response - Represents a Private Endpoint that is connected to Notification Hubs namespace using Private Endpoint Connection.
- private_
link_ Remoteservice_ connection_ state Private Link Service Connection State Response - State of the Private Link Service connection.
- provisioning_
state str - State of Private Endpoint Connection.
- group
Ids List<String> - List of group ids. For Notification Hubs, it always contains a single "namespace" element.
- private
Endpoint Property Map - Represents a Private Endpoint that is connected to Notification Hubs namespace using Private Endpoint Connection.
- private
Link Property MapService Connection State - State of the Private Link Service connection.
- provisioning
State String - State of Private Endpoint Connection.
PrivateEndpointConnectionProvisioningState, PrivateEndpointConnectionProvisioningStateArgs
- Unknown
- Unknown
- Succeeded
- Succeeded
- Creating
- Creating
- Updating
- Updating
- Updating
By Proxy - UpdatingByProxy
- Deleting
- Deleting
- Deleting
By Proxy - DeletingByProxy
- Deleted
- Deleted
- Private
Endpoint Connection Provisioning State Unknown - Unknown
- Private
Endpoint Connection Provisioning State Succeeded - Succeeded
- Private
Endpoint Connection Provisioning State Creating - Creating
- Private
Endpoint Connection Provisioning State Updating - Updating
- Private
Endpoint Connection Provisioning State Updating By Proxy - UpdatingByProxy
- Private
Endpoint Connection Provisioning State Deleting - Deleting
- Private
Endpoint Connection Provisioning State Deleting By Proxy - DeletingByProxy
- Private
Endpoint Connection Provisioning State Deleted - Deleted
- Unknown
- Unknown
- Succeeded
- Succeeded
- Creating
- Creating
- Updating
- Updating
- Updating
By Proxy - UpdatingByProxy
- Deleting
- Deleting
- Deleting
By Proxy - DeletingByProxy
- Deleted
- Deleted
- Unknown
- Unknown
- Succeeded
- Succeeded
- Creating
- Creating
- Updating
- Updating
- Updating
By Proxy - UpdatingByProxy
- Deleting
- Deleting
- Deleting
By Proxy - DeletingByProxy
- Deleted
- Deleted
- UNKNOWN
- Unknown
- SUCCEEDED
- Succeeded
- CREATING
- Creating
- UPDATING
- Updating
- UPDATING_BY_PROXY
- UpdatingByProxy
- DELETING
- Deleting
- DELETING_BY_PROXY
- DeletingByProxy
- DELETED
- Deleted
- "Unknown"
- Unknown
- "Succeeded"
- Succeeded
- "Creating"
- Creating
- "Updating"
- Updating
- "Updating
By Proxy" - UpdatingByProxy
- "Deleting"
- Deleting
- "Deleting
By Proxy" - DeletingByProxy
- "Deleted"
- Deleted
PrivateLinkConnectionStatus, PrivateLinkConnectionStatusArgs
- Disconnected
- Disconnected
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- Private
Link Connection Status Disconnected - Disconnected
- Private
Link Connection Status Pending - Pending
- Private
Link Connection Status Approved - Approved
- Private
Link Connection Status 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
- "Pending"
- Pending
- "Approved"
- Approved
- "Rejected"
- Rejected
RemotePrivateEndpointConnectionResponse, RemotePrivateEndpointConnectionResponseArgs
- Id string
- ARM resource ID of the Private Endpoint. This may belong to different subscription and resource group than a Notification Hubs namespace.
- Id string
- ARM resource ID of the Private Endpoint. This may belong to different subscription and resource group than a Notification Hubs namespace.
- id String
- ARM resource ID of the Private Endpoint. This may belong to different subscription and resource group than a Notification Hubs namespace.
- id string
- ARM resource ID of the Private Endpoint. This may belong to different subscription and resource group than a Notification Hubs namespace.
- id str
- ARM resource ID of the Private Endpoint. This may belong to different subscription and resource group than a Notification Hubs namespace.
- id String
- ARM resource ID of the Private Endpoint. This may belong to different subscription and resource group than a Notification Hubs namespace.
RemotePrivateLinkServiceConnectionState, RemotePrivateLinkServiceConnectionStateArgs
- Status
string | Pulumi.
Azure Native. Notification Hubs. Private Link Connection Status - State of Private Link Connection.
- Status
string | Private
Link Connection Status - State of Private Link Connection.
- status
String | Private
Link Connection Status - State of Private Link Connection.
- status
string | Private
Link Connection Status - State of Private Link Connection.
- status
str | Private
Link Connection Status - State of Private Link Connection.
- status String | "Disconnected" | "Pending" | "Approved" | "Rejected"
- State of Private Link Connection.
RemotePrivateLinkServiceConnectionStateResponse, RemotePrivateLinkServiceConnectionStateResponseArgs
- Actions
Required string - Human-friendly description of required actions.
- Description string
- Human-friendly description.
- Status string
- State of Private Link Connection.
- Actions
Required string - Human-friendly description of required actions.
- Description string
- Human-friendly description.
- Status string
- State of Private Link Connection.
- actions
Required String - Human-friendly description of required actions.
- description String
- Human-friendly description.
- status String
- State of Private Link Connection.
- actions
Required string - Human-friendly description of required actions.
- description string
- Human-friendly description.
- status string
- State of Private Link Connection.
- actions_
required str - Human-friendly description of required actions.
- description str
- Human-friendly description.
- status str
- State of Private Link Connection.
- actions
Required String - Human-friendly description of required actions.
- description String
- Human-friendly description.
- status String
- State of Private Link Connection.
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:notificationhubs:PrivateEndpointConnection nh-sdk-ns.1fa229cd-bf3f-47f0-8c49-afb36723997e /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NotificationHubs/namespaces/{namespaceName}/privateEndpointConnections/{privateEndpointConnectionName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0