azure-native.deviceupdate.PrivateEndpointConnectionProxy
Explore with Pulumi AI
Private endpoint connection proxy details. Azure REST API version: 2023-07-01. Prior API version in Azure Native 1.x: 2020-03-01-preview.
Example Usage
PrivateEndpointConnectionProxyCreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var privateEndpointConnectionProxy = new AzureNative.DeviceUpdate.PrivateEndpointConnectionProxy("privateEndpointConnectionProxy", new()
{
AccountName = "contoso",
PrivateEndpointConnectionProxyId = "peexample01",
RemotePrivateEndpoint = new AzureNative.DeviceUpdate.Inputs.RemotePrivateEndpointArgs
{
Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}",
ImmutableResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}",
ImmutableSubscriptionId = "00000000-0000-0000-0000-000000000000",
Location = "westus2",
ManualPrivateLinkServiceConnections = new[]
{
new AzureNative.DeviceUpdate.Inputs.PrivateLinkServiceConnectionArgs
{
GroupIds = new[]
{
"DeviceUpdate",
},
Name = "{privateEndpointConnectionProxyId}",
RequestMessage = "Please approve my connection, thanks.",
},
},
PrivateLinkServiceProxies = new[]
{
new AzureNative.DeviceUpdate.Inputs.PrivateLinkServiceProxyArgs
{
GroupConnectivityInformation = new() { },
Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{privateEndpointConnectionProxyId}/privateLinkServiceProxies/{privateEndpointConnectionProxyId}",
},
},
},
ResourceGroupName = "test-rg",
});
});
package main
import (
deviceupdate "github.com/pulumi/pulumi-azure-native-sdk/deviceupdate/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := deviceupdate.NewPrivateEndpointConnectionProxy(ctx, "privateEndpointConnectionProxy", &deviceupdate.PrivateEndpointConnectionProxyArgs{
AccountName: pulumi.String("contoso"),
PrivateEndpointConnectionProxyId: pulumi.String("peexample01"),
RemotePrivateEndpoint: &deviceupdate.RemotePrivateEndpointArgs{
Id: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}"),
ImmutableResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}"),
ImmutableSubscriptionId: pulumi.String("00000000-0000-0000-0000-000000000000"),
Location: pulumi.String("westus2"),
ManualPrivateLinkServiceConnections: deviceupdate.PrivateLinkServiceConnectionArray{
&deviceupdate.PrivateLinkServiceConnectionArgs{
GroupIds: pulumi.StringArray{
pulumi.String("DeviceUpdate"),
},
Name: pulumi.String("{privateEndpointConnectionProxyId}"),
RequestMessage: pulumi.String("Please approve my connection, thanks."),
},
},
PrivateLinkServiceProxies: deviceupdate.PrivateLinkServiceProxyArray{
&deviceupdate.PrivateLinkServiceProxyArgs{
GroupConnectivityInformation: deviceupdate.GroupConnectivityInformationArray{},
Id: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{privateEndpointConnectionProxyId}/privateLinkServiceProxies/{privateEndpointConnectionProxyId}"),
},
},
},
ResourceGroupName: pulumi.String("test-rg"),
})
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.deviceupdate.PrivateEndpointConnectionProxy;
import com.pulumi.azurenative.deviceupdate.PrivateEndpointConnectionProxyArgs;
import com.pulumi.azurenative.deviceupdate.inputs.RemotePrivateEndpointArgs;
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 privateEndpointConnectionProxy = new PrivateEndpointConnectionProxy("privateEndpointConnectionProxy", PrivateEndpointConnectionProxyArgs.builder()
.accountName("contoso")
.privateEndpointConnectionProxyId("peexample01")
.remotePrivateEndpoint(RemotePrivateEndpointArgs.builder()
.id("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}")
.immutableResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}")
.immutableSubscriptionId("00000000-0000-0000-0000-000000000000")
.location("westus2")
.manualPrivateLinkServiceConnections(PrivateLinkServiceConnectionArgs.builder()
.groupIds("DeviceUpdate")
.name("{privateEndpointConnectionProxyId}")
.requestMessage("Please approve my connection, thanks.")
.build())
.privateLinkServiceProxies(PrivateLinkServiceProxyArgs.builder()
.groupConnectivityInformation()
.id("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{privateEndpointConnectionProxyId}/privateLinkServiceProxies/{privateEndpointConnectionProxyId}")
.build())
.build())
.resourceGroupName("test-rg")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
private_endpoint_connection_proxy = azure_native.deviceupdate.PrivateEndpointConnectionProxy("privateEndpointConnectionProxy",
account_name="contoso",
private_endpoint_connection_proxy_id="peexample01",
remote_private_endpoint=azure_native.deviceupdate.RemotePrivateEndpointArgs(
id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}",
immutable_resource_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}",
immutable_subscription_id="00000000-0000-0000-0000-000000000000",
location="westus2",
manual_private_link_service_connections=[azure_native.deviceupdate.PrivateLinkServiceConnectionArgs(
group_ids=["DeviceUpdate"],
name="{privateEndpointConnectionProxyId}",
request_message="Please approve my connection, thanks.",
)],
private_link_service_proxies=[azure_native.deviceupdate.PrivateLinkServiceProxyArgs(
group_connectivity_information=[],
id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{privateEndpointConnectionProxyId}/privateLinkServiceProxies/{privateEndpointConnectionProxyId}",
)],
),
resource_group_name="test-rg")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const privateEndpointConnectionProxy = new azure_native.deviceupdate.PrivateEndpointConnectionProxy("privateEndpointConnectionProxy", {
accountName: "contoso",
privateEndpointConnectionProxyId: "peexample01",
remotePrivateEndpoint: {
id: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}",
immutableResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}",
immutableSubscriptionId: "00000000-0000-0000-0000-000000000000",
location: "westus2",
manualPrivateLinkServiceConnections: [{
groupIds: ["DeviceUpdate"],
name: "{privateEndpointConnectionProxyId}",
requestMessage: "Please approve my connection, thanks.",
}],
privateLinkServiceProxies: [{
groupConnectivityInformation: [],
id: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{privateEndpointConnectionProxyId}/privateLinkServiceProxies/{privateEndpointConnectionProxyId}",
}],
},
resourceGroupName: "test-rg",
});
resources:
privateEndpointConnectionProxy:
type: azure-native:deviceupdate:PrivateEndpointConnectionProxy
properties:
accountName: contoso
privateEndpointConnectionProxyId: peexample01
remotePrivateEndpoint:
id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}
immutableResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{peName}
immutableSubscriptionId: 00000000-0000-0000-0000-000000000000
location: westus2
manualPrivateLinkServiceConnections:
- groupIds:
- DeviceUpdate
name: '{privateEndpointConnectionProxyId}'
requestMessage: Please approve my connection, thanks.
privateLinkServiceProxies:
- groupConnectivityInformation: []
id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Network/privateEndpoints/{privateEndpointConnectionProxyId}/privateLinkServiceProxies/{privateEndpointConnectionProxyId}
resourceGroupName: test-rg
Create PrivateEndpointConnectionProxy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PrivateEndpointConnectionProxy(name: string, args: PrivateEndpointConnectionProxyArgs, opts?: CustomResourceOptions);
@overload
def PrivateEndpointConnectionProxy(resource_name: str,
args: PrivateEndpointConnectionProxyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PrivateEndpointConnectionProxy(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
private_endpoint_connection_proxy_id: Optional[str] = None,
remote_private_endpoint: Optional[RemotePrivateEndpointArgs] = None,
status: Optional[str] = None)
func NewPrivateEndpointConnectionProxy(ctx *Context, name string, args PrivateEndpointConnectionProxyArgs, opts ...ResourceOption) (*PrivateEndpointConnectionProxy, error)
public PrivateEndpointConnectionProxy(string name, PrivateEndpointConnectionProxyArgs args, CustomResourceOptions? opts = null)
public PrivateEndpointConnectionProxy(String name, PrivateEndpointConnectionProxyArgs args)
public PrivateEndpointConnectionProxy(String name, PrivateEndpointConnectionProxyArgs args, CustomResourceOptions options)
type: azure-native:deviceupdate:PrivateEndpointConnectionProxy
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 PrivateEndpointConnectionProxyArgs
- 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 PrivateEndpointConnectionProxyArgs
- 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 PrivateEndpointConnectionProxyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PrivateEndpointConnectionProxyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PrivateEndpointConnectionProxyArgs
- 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 privateEndpointConnectionProxyResource = new AzureNative.DeviceUpdate.PrivateEndpointConnectionProxy("privateEndpointConnectionProxyResource", new()
{
AccountName = "string",
ResourceGroupName = "string",
PrivateEndpointConnectionProxyId = "string",
RemotePrivateEndpoint = new AzureNative.DeviceUpdate.Inputs.RemotePrivateEndpointArgs
{
Id = "string",
ImmutableResourceId = "string",
ImmutableSubscriptionId = "string",
Location = "string",
ManualPrivateLinkServiceConnections = new[]
{
new AzureNative.DeviceUpdate.Inputs.PrivateLinkServiceConnectionArgs
{
GroupIds = new[]
{
"string",
},
Name = "string",
RequestMessage = "string",
},
},
PrivateLinkServiceConnections = new[]
{
new AzureNative.DeviceUpdate.Inputs.PrivateLinkServiceConnectionArgs
{
GroupIds = new[]
{
"string",
},
Name = "string",
RequestMessage = "string",
},
},
PrivateLinkServiceProxies = new[]
{
new AzureNative.DeviceUpdate.Inputs.PrivateLinkServiceProxyArgs
{
GroupConnectivityInformation = new[]
{
new AzureNative.DeviceUpdate.Inputs.GroupConnectivityInformationArgs
{
CustomerVisibleFqdns = new[]
{
"string",
},
PrivateLinkServiceArmRegion = "string",
RedirectMapId = "string",
},
},
Id = "string",
RemotePrivateLinkServiceConnectionState = new AzureNative.DeviceUpdate.Inputs.PrivateLinkServiceConnectionStateArgs
{
ActionsRequired = "string",
Description = "string",
Status = "string",
},
},
},
VnetTrafficTag = "string",
},
Status = "string",
});
example, err := deviceupdate.NewPrivateEndpointConnectionProxy(ctx, "privateEndpointConnectionProxyResource", &deviceupdate.PrivateEndpointConnectionProxyArgs{
AccountName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
PrivateEndpointConnectionProxyId: pulumi.String("string"),
RemotePrivateEndpoint: &deviceupdate.RemotePrivateEndpointArgs{
Id: pulumi.String("string"),
ImmutableResourceId: pulumi.String("string"),
ImmutableSubscriptionId: pulumi.String("string"),
Location: pulumi.String("string"),
ManualPrivateLinkServiceConnections: deviceupdate.PrivateLinkServiceConnectionArray{
&deviceupdate.PrivateLinkServiceConnectionArgs{
GroupIds: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
RequestMessage: pulumi.String("string"),
},
},
PrivateLinkServiceConnections: deviceupdate.PrivateLinkServiceConnectionArray{
&deviceupdate.PrivateLinkServiceConnectionArgs{
GroupIds: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
RequestMessage: pulumi.String("string"),
},
},
PrivateLinkServiceProxies: deviceupdate.PrivateLinkServiceProxyArray{
&deviceupdate.PrivateLinkServiceProxyArgs{
GroupConnectivityInformation: deviceupdate.GroupConnectivityInformationArray{
&deviceupdate.GroupConnectivityInformationArgs{
CustomerVisibleFqdns: pulumi.StringArray{
pulumi.String("string"),
},
PrivateLinkServiceArmRegion: pulumi.String("string"),
RedirectMapId: pulumi.String("string"),
},
},
Id: pulumi.String("string"),
RemotePrivateLinkServiceConnectionState: &deviceupdate.PrivateLinkServiceConnectionStateArgs{
ActionsRequired: pulumi.String("string"),
Description: pulumi.String("string"),
Status: pulumi.String("string"),
},
},
},
VnetTrafficTag: pulumi.String("string"),
},
Status: pulumi.String("string"),
})
var privateEndpointConnectionProxyResource = new PrivateEndpointConnectionProxy("privateEndpointConnectionProxyResource", PrivateEndpointConnectionProxyArgs.builder()
.accountName("string")
.resourceGroupName("string")
.privateEndpointConnectionProxyId("string")
.remotePrivateEndpoint(RemotePrivateEndpointArgs.builder()
.id("string")
.immutableResourceId("string")
.immutableSubscriptionId("string")
.location("string")
.manualPrivateLinkServiceConnections(PrivateLinkServiceConnectionArgs.builder()
.groupIds("string")
.name("string")
.requestMessage("string")
.build())
.privateLinkServiceConnections(PrivateLinkServiceConnectionArgs.builder()
.groupIds("string")
.name("string")
.requestMessage("string")
.build())
.privateLinkServiceProxies(PrivateLinkServiceProxyArgs.builder()
.groupConnectivityInformation(GroupConnectivityInformationArgs.builder()
.customerVisibleFqdns("string")
.privateLinkServiceArmRegion("string")
.redirectMapId("string")
.build())
.id("string")
.remotePrivateLinkServiceConnectionState(PrivateLinkServiceConnectionStateArgs.builder()
.actionsRequired("string")
.description("string")
.status("string")
.build())
.build())
.vnetTrafficTag("string")
.build())
.status("string")
.build());
private_endpoint_connection_proxy_resource = azure_native.deviceupdate.PrivateEndpointConnectionProxy("privateEndpointConnectionProxyResource",
account_name="string",
resource_group_name="string",
private_endpoint_connection_proxy_id="string",
remote_private_endpoint=azure_native.deviceupdate.RemotePrivateEndpointArgs(
id="string",
immutable_resource_id="string",
immutable_subscription_id="string",
location="string",
manual_private_link_service_connections=[azure_native.deviceupdate.PrivateLinkServiceConnectionArgs(
group_ids=["string"],
name="string",
request_message="string",
)],
private_link_service_connections=[azure_native.deviceupdate.PrivateLinkServiceConnectionArgs(
group_ids=["string"],
name="string",
request_message="string",
)],
private_link_service_proxies=[azure_native.deviceupdate.PrivateLinkServiceProxyArgs(
group_connectivity_information=[azure_native.deviceupdate.GroupConnectivityInformationArgs(
customer_visible_fqdns=["string"],
private_link_service_arm_region="string",
redirect_map_id="string",
)],
id="string",
remote_private_link_service_connection_state=azure_native.deviceupdate.PrivateLinkServiceConnectionStateArgs(
actions_required="string",
description="string",
status="string",
),
)],
vnet_traffic_tag="string",
),
status="string")
const privateEndpointConnectionProxyResource = new azure_native.deviceupdate.PrivateEndpointConnectionProxy("privateEndpointConnectionProxyResource", {
accountName: "string",
resourceGroupName: "string",
privateEndpointConnectionProxyId: "string",
remotePrivateEndpoint: {
id: "string",
immutableResourceId: "string",
immutableSubscriptionId: "string",
location: "string",
manualPrivateLinkServiceConnections: [{
groupIds: ["string"],
name: "string",
requestMessage: "string",
}],
privateLinkServiceConnections: [{
groupIds: ["string"],
name: "string",
requestMessage: "string",
}],
privateLinkServiceProxies: [{
groupConnectivityInformation: [{
customerVisibleFqdns: ["string"],
privateLinkServiceArmRegion: "string",
redirectMapId: "string",
}],
id: "string",
remotePrivateLinkServiceConnectionState: {
actionsRequired: "string",
description: "string",
status: "string",
},
}],
vnetTrafficTag: "string",
},
status: "string",
});
type: azure-native:deviceupdate:PrivateEndpointConnectionProxy
properties:
accountName: string
privateEndpointConnectionProxyId: string
remotePrivateEndpoint:
id: string
immutableResourceId: string
immutableSubscriptionId: string
location: string
manualPrivateLinkServiceConnections:
- groupIds:
- string
name: string
requestMessage: string
privateLinkServiceConnections:
- groupIds:
- string
name: string
requestMessage: string
privateLinkServiceProxies:
- groupConnectivityInformation:
- customerVisibleFqdns:
- string
privateLinkServiceArmRegion: string
redirectMapId: string
id: string
remotePrivateLinkServiceConnectionState:
actionsRequired: string
description: string
status: string
vnetTrafficTag: string
resourceGroupName: string
status: string
PrivateEndpointConnectionProxy 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 PrivateEndpointConnectionProxy resource accepts the following input properties:
- Account
Name string - Account name.
- Resource
Group stringName - The resource group name.
- Private
Endpoint stringConnection Proxy Id - The ID of the private endpoint connection proxy object.
- Remote
Private Pulumi.Endpoint Azure Native. Device Update. Inputs. Remote Private Endpoint - Remote private endpoint details.
- Status string
- Operation status.
- Account
Name string - Account name.
- Resource
Group stringName - The resource group name.
- Private
Endpoint stringConnection Proxy Id - The ID of the private endpoint connection proxy object.
- Remote
Private RemoteEndpoint Private Endpoint Args - Remote private endpoint details.
- Status string
- Operation status.
- account
Name String - Account name.
- resource
Group StringName - The resource group name.
- private
Endpoint StringConnection Proxy Id - The ID of the private endpoint connection proxy object.
- remote
Private RemoteEndpoint Private Endpoint - Remote private endpoint details.
- status String
- Operation status.
- account
Name string - Account name.
- resource
Group stringName - The resource group name.
- private
Endpoint stringConnection Proxy Id - The ID of the private endpoint connection proxy object.
- remote
Private RemoteEndpoint Private Endpoint - Remote private endpoint details.
- status string
- Operation status.
- account_
name str - Account name.
- resource_
group_ strname - The resource group name.
- private_
endpoint_ strconnection_ proxy_ id - The ID of the private endpoint connection proxy object.
- remote_
private_ Remoteendpoint Private Endpoint Args - Remote private endpoint details.
- status str
- Operation status.
- account
Name String - Account name.
- resource
Group StringName - The resource group name.
- private
Endpoint StringConnection Proxy Id - The ID of the private endpoint connection proxy object.
- remote
Private Property MapEndpoint - Remote private endpoint details.
- status String
- Operation status.
Outputs
All input properties are implicitly available as output properties. Additionally, the PrivateEndpointConnectionProxy resource produces the following output properties:
- ETag string
- ETag from NRP.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - The provisioning state of the private endpoint connection proxy resource.
- System
Data Pulumi.Azure Native. Device Update. 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"
- ETag string
- ETag from NRP.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - The provisioning state of the private endpoint connection proxy 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"
- e
Tag String - ETag from NRP.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - The provisioning state of the private endpoint connection proxy 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"
- e
Tag string - ETag from NRP.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - The provisioning state of the private endpoint connection proxy 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"
- e_
tag str - ETag from NRP.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_
state str - The provisioning state of the private endpoint connection proxy 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"
- e
Tag String - ETag from NRP.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - The provisioning state of the private endpoint connection proxy 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
ConnectionDetailsResponse, ConnectionDetailsResponseArgs
- Group
Id string - Group ID.
- Id string
- Connection details ID.
- Link
Identifier string - Link ID.
- Member
Name string - Member name.
- Private
Ip stringAddress - Private IP address.
- Group
Id string - Group ID.
- Id string
- Connection details ID.
- Link
Identifier string - Link ID.
- Member
Name string - Member name.
- Private
Ip stringAddress - Private IP address.
- group
Id String - Group ID.
- id String
- Connection details ID.
- link
Identifier String - Link ID.
- member
Name String - Member name.
- private
Ip StringAddress - Private IP address.
- group
Id string - Group ID.
- id string
- Connection details ID.
- link
Identifier string - Link ID.
- member
Name string - Member name.
- private
Ip stringAddress - Private IP address.
- group_
id str - Group ID.
- id str
- Connection details ID.
- link_
identifier str - Link ID.
- member_
name str - Member name.
- private_
ip_ straddress - Private IP address.
- group
Id String - Group ID.
- id String
- Connection details ID.
- link
Identifier String - Link ID.
- member
Name String - Member name.
- private
Ip StringAddress - Private IP address.
GroupConnectivityInformation, GroupConnectivityInformationArgs
- Customer
Visible List<string>Fqdns - List of customer visible FQDNs.
- Private
Link stringService Arm Region - PrivateLinkService ARM region.
- Redirect
Map stringId - Redirect map ID.
- Customer
Visible []stringFqdns - List of customer visible FQDNs.
- Private
Link stringService Arm Region - PrivateLinkService ARM region.
- Redirect
Map stringId - Redirect map ID.
- customer
Visible List<String>Fqdns - List of customer visible FQDNs.
- private
Link StringService Arm Region - PrivateLinkService ARM region.
- redirect
Map StringId - Redirect map ID.
- customer
Visible string[]Fqdns - List of customer visible FQDNs.
- private
Link stringService Arm Region - PrivateLinkService ARM region.
- redirect
Map stringId - Redirect map ID.
- customer_
visible_ Sequence[str]fqdns - List of customer visible FQDNs.
- private_
link_ strservice_ arm_ region - PrivateLinkService ARM region.
- redirect_
map_ strid - Redirect map ID.
- customer
Visible List<String>Fqdns - List of customer visible FQDNs.
- private
Link StringService Arm Region - PrivateLinkService ARM region.
- redirect
Map StringId - Redirect map ID.
GroupConnectivityInformationResponse, GroupConnectivityInformationResponseArgs
- Group
Id string - Group ID.
- Internal
Fqdn string - Internal FQDN.
- Member
Name string - Member name.
- Customer
Visible List<string>Fqdns - List of customer visible FQDNs.
- Private
Link stringService Arm Region - PrivateLinkService ARM region.
- Redirect
Map stringId - Redirect map ID.
- Group
Id string - Group ID.
- Internal
Fqdn string - Internal FQDN.
- Member
Name string - Member name.
- Customer
Visible []stringFqdns - List of customer visible FQDNs.
- Private
Link stringService Arm Region - PrivateLinkService ARM region.
- Redirect
Map stringId - Redirect map ID.
- group
Id String - Group ID.
- internal
Fqdn String - Internal FQDN.
- member
Name String - Member name.
- customer
Visible List<String>Fqdns - List of customer visible FQDNs.
- private
Link StringService Arm Region - PrivateLinkService ARM region.
- redirect
Map StringId - Redirect map ID.
- group
Id string - Group ID.
- internal
Fqdn string - Internal FQDN.
- member
Name string - Member name.
- customer
Visible string[]Fqdns - List of customer visible FQDNs.
- private
Link stringService Arm Region - PrivateLinkService ARM region.
- redirect
Map stringId - Redirect map ID.
- group_
id str - Group ID.
- internal_
fqdn str - Internal FQDN.
- member_
name str - Member name.
- customer_
visible_ Sequence[str]fqdns - List of customer visible FQDNs.
- private_
link_ strservice_ arm_ region - PrivateLinkService ARM region.
- redirect_
map_ strid - Redirect map ID.
- group
Id String - Group ID.
- internal
Fqdn String - Internal FQDN.
- member
Name String - Member name.
- customer
Visible List<String>Fqdns - List of customer visible FQDNs.
- private
Link StringService Arm Region - PrivateLinkService ARM region.
- redirect
Map StringId - Redirect map ID.
PrivateEndpointServiceConnectionStatus, PrivateEndpointServiceConnectionStatusArgs
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- Private
Endpoint Service Connection Status Pending - Pending
- Private
Endpoint Service Connection Status Approved - Approved
- Private
Endpoint Service Connection Status Rejected - Rejected
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- PENDING
- Pending
- APPROVED
- Approved
- REJECTED
- Rejected
- "Pending"
- Pending
- "Approved"
- Approved
- "Rejected"
- Rejected
PrivateLinkServiceConnection, PrivateLinkServiceConnectionArgs
- Group
Ids List<string> - List of group IDs.
- Name string
- Private link service connection name.
- Request
Message string - Request message.
- Group
Ids []string - List of group IDs.
- Name string
- Private link service connection name.
- Request
Message string - Request message.
- group
Ids List<String> - List of group IDs.
- name String
- Private link service connection name.
- request
Message String - Request message.
- group
Ids string[] - List of group IDs.
- name string
- Private link service connection name.
- request
Message string - Request message.
- group_
ids Sequence[str] - List of group IDs.
- name str
- Private link service connection name.
- request_
message str - Request message.
- group
Ids List<String> - List of group IDs.
- name String
- Private link service connection name.
- request
Message String - Request message.
PrivateLinkServiceConnectionResponse, PrivateLinkServiceConnectionResponseArgs
- Group
Ids List<string> - List of group IDs.
- Name string
- Private link service connection name.
- Request
Message string - Request message.
- Group
Ids []string - List of group IDs.
- Name string
- Private link service connection name.
- Request
Message string - Request message.
- group
Ids List<String> - List of group IDs.
- name String
- Private link service connection name.
- request
Message String - Request message.
- group
Ids string[] - List of group IDs.
- name string
- Private link service connection name.
- request
Message string - Request message.
- group_
ids Sequence[str] - List of group IDs.
- name str
- Private link service connection name.
- request_
message str - Request message.
- group
Ids List<String> - List of group IDs.
- name String
- Private link service connection name.
- request
Message String - Request message.
PrivateLinkServiceConnectionState, PrivateLinkServiceConnectionStateArgs
- Actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status
string | Pulumi.
Azure Native. Device Update. Private Endpoint Service Connection Status - Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- Actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status
string | Private
Endpoint Service Connection Status - Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status
String | Private
Endpoint Service Connection Status - Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- description string
- The reason for approval/rejection of the connection.
- status
string | Private
Endpoint Service Connection Status - Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions_
required str - A message indicating if changes on the service provider require any updates on the consumer.
- description str
- The reason for approval/rejection of the connection.
- status
str | Private
Endpoint Service Connection Status - Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String | "Pending" | "Approved" | "Rejected"
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs
- Actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- Actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- description string
- The reason for approval/rejection of the connection.
- status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions_
required str - A message indicating if changes on the service provider require any updates on the consumer.
- description str
- The reason for approval/rejection of the connection.
- status str
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
PrivateLinkServiceProxy, PrivateLinkServiceProxyArgs
- Group
Connectivity List<Pulumi.Information Azure Native. Device Update. Inputs. Group Connectivity Information> - Group connectivity information.
- Id string
- NRP resource ID.
- Remote
Private Pulumi.Link Service Connection State Azure Native. Device Update. Inputs. Private Link Service Connection State - Remote private link service connection state
- Group
Connectivity []GroupInformation Connectivity Information - Group connectivity information.
- Id string
- NRP resource ID.
- Remote
Private PrivateLink Service Connection State Link Service Connection State - Remote private link service connection state
- group
Connectivity List<GroupInformation Connectivity Information> - Group connectivity information.
- id String
- NRP resource ID.
- remote
Private PrivateLink Service Connection State Link Service Connection State - Remote private link service connection state
- group
Connectivity GroupInformation Connectivity Information[] - Group connectivity information.
- id string
- NRP resource ID.
- remote
Private PrivateLink Service Connection State Link Service Connection State - Remote private link service connection state
- group_
connectivity_ Sequence[Groupinformation Connectivity Information] - Group connectivity information.
- id str
- NRP resource ID.
- remote_
private_ Privatelink_ service_ connection_ state Link Service Connection State - Remote private link service connection state
- group
Connectivity List<Property Map>Information - Group connectivity information.
- id String
- NRP resource ID.
- remote
Private Property MapLink Service Connection State - Remote private link service connection state
PrivateLinkServiceProxyResponse, PrivateLinkServiceProxyResponseArgs
- Group
Connectivity List<Pulumi.Information Azure Native. Device Update. Inputs. Group Connectivity Information Response> - Group connectivity information.
- Id string
- NRP resource ID.
- Remote
Private Pulumi.Endpoint Connection Azure Native. Device Update. Inputs. Private Link Service Proxy Response Remote Private Endpoint Connection - Remote private endpoint connection details.
- Remote
Private Pulumi.Link Service Connection State Azure Native. Device Update. Inputs. Private Link Service Connection State Response - Remote private link service connection state
- Group
Connectivity []GroupInformation Connectivity Information Response - Group connectivity information.
- Id string
- NRP resource ID.
- Remote
Private PrivateEndpoint Connection Link Service Proxy Response Remote Private Endpoint Connection - Remote private endpoint connection details.
- Remote
Private PrivateLink Service Connection State Link Service Connection State Response - Remote private link service connection state
- group
Connectivity List<GroupInformation Connectivity Information Response> - Group connectivity information.
- id String
- NRP resource ID.
- remote
Private PrivateEndpoint Connection Link Service Proxy Response Remote Private Endpoint Connection - Remote private endpoint connection details.
- remote
Private PrivateLink Service Connection State Link Service Connection State Response - Remote private link service connection state
- group
Connectivity GroupInformation Connectivity Information Response[] - Group connectivity information.
- id string
- NRP resource ID.
- remote
Private PrivateEndpoint Connection Link Service Proxy Response Remote Private Endpoint Connection - Remote private endpoint connection details.
- remote
Private PrivateLink Service Connection State Link Service Connection State Response - Remote private link service connection state
- group_
connectivity_ Sequence[Groupinformation Connectivity Information Response] - Group connectivity information.
- id str
- NRP resource ID.
- remote_
private_ Privateendpoint_ connection Link Service Proxy Response Remote Private Endpoint Connection - Remote private endpoint connection details.
- remote_
private_ Privatelink_ service_ connection_ state Link Service Connection State Response - Remote private link service connection state
- group
Connectivity List<Property Map>Information - Group connectivity information.
- id String
- NRP resource ID.
- remote
Private Property MapEndpoint Connection - Remote private endpoint connection details.
- remote
Private Property MapLink Service Connection State - Remote private link service connection state
PrivateLinkServiceProxyResponseRemotePrivateEndpointConnection, PrivateLinkServiceProxyResponseRemotePrivateEndpointConnectionArgs
- Id string
- Remote private endpoint connection ID.
- Id string
- Remote private endpoint connection ID.
- id String
- Remote private endpoint connection ID.
- id string
- Remote private endpoint connection ID.
- id str
- Remote private endpoint connection ID.
- id String
- Remote private endpoint connection ID.
RemotePrivateEndpoint, RemotePrivateEndpointArgs
- Id string
- Remote endpoint resource ID.
- Immutable
Resource stringId - Original resource ID needed by Microsoft.Network.
- Immutable
Subscription stringId - Original subscription ID needed by Microsoft.Network.
- Location string
- ARM location of the remote private endpoint.
- Manual
Private List<Pulumi.Link Service Connections Azure Native. Device Update. Inputs. Private Link Service Connection> - List of private link service connections that need manual approval.
- Private
Link List<Pulumi.Service Connections Azure Native. Device Update. Inputs. Private Link Service Connection> - List of automatically approved private link service connections.
- Private
Link List<Pulumi.Service Proxies Azure Native. Device Update. Inputs. Private Link Service Proxy> - List of private link service proxies.
- Vnet
Traffic stringTag - Virtual network traffic tag.
- Id string
- Remote endpoint resource ID.
- Immutable
Resource stringId - Original resource ID needed by Microsoft.Network.
- Immutable
Subscription stringId - Original subscription ID needed by Microsoft.Network.
- Location string
- ARM location of the remote private endpoint.
- Manual
Private []PrivateLink Service Connections Link Service Connection - List of private link service connections that need manual approval.
- Private
Link []PrivateService Connections Link Service Connection - List of automatically approved private link service connections.
- Private
Link []PrivateService Proxies Link Service Proxy - List of private link service proxies.
- Vnet
Traffic stringTag - Virtual network traffic tag.
- id String
- Remote endpoint resource ID.
- immutable
Resource StringId - Original resource ID needed by Microsoft.Network.
- immutable
Subscription StringId - Original subscription ID needed by Microsoft.Network.
- location String
- ARM location of the remote private endpoint.
- manual
Private List<PrivateLink Service Connections Link Service Connection> - List of private link service connections that need manual approval.
- private
Link List<PrivateService Connections Link Service Connection> - List of automatically approved private link service connections.
- private
Link List<PrivateService Proxies Link Service Proxy> - List of private link service proxies.
- vnet
Traffic StringTag - Virtual network traffic tag.
- id string
- Remote endpoint resource ID.
- immutable
Resource stringId - Original resource ID needed by Microsoft.Network.
- immutable
Subscription stringId - Original subscription ID needed by Microsoft.Network.
- location string
- ARM location of the remote private endpoint.
- manual
Private PrivateLink Service Connections Link Service Connection[] - List of private link service connections that need manual approval.
- private
Link PrivateService Connections Link Service Connection[] - List of automatically approved private link service connections.
- private
Link PrivateService Proxies Link Service Proxy[] - List of private link service proxies.
- vnet
Traffic stringTag - Virtual network traffic tag.
- id str
- Remote endpoint resource ID.
- immutable_
resource_ strid - Original resource ID needed by Microsoft.Network.
- immutable_
subscription_ strid - Original subscription ID needed by Microsoft.Network.
- location str
- ARM location of the remote private endpoint.
- manual_
private_ Sequence[Privatelink_ service_ connections Link Service Connection] - List of private link service connections that need manual approval.
- private_
link_ Sequence[Privateservice_ connections Link Service Connection] - List of automatically approved private link service connections.
- private_
link_ Sequence[Privateservice_ proxies Link Service Proxy] - List of private link service proxies.
- vnet_
traffic_ strtag - Virtual network traffic tag.
- id String
- Remote endpoint resource ID.
- immutable
Resource StringId - Original resource ID needed by Microsoft.Network.
- immutable
Subscription StringId - Original subscription ID needed by Microsoft.Network.
- location String
- ARM location of the remote private endpoint.
- manual
Private List<Property Map>Link Service Connections - List of private link service connections that need manual approval.
- private
Link List<Property Map>Service Connections - List of automatically approved private link service connections.
- private
Link List<Property Map>Service Proxies - List of private link service proxies.
- vnet
Traffic StringTag - Virtual network traffic tag.
RemotePrivateEndpointResponse, RemotePrivateEndpointResponseArgs
- Connection
Details List<Pulumi.Azure Native. Device Update. Inputs. Connection Details Response> - List of connection details.
- Id string
- Remote endpoint resource ID.
- Immutable
Resource stringId - Original resource ID needed by Microsoft.Network.
- Immutable
Subscription stringId - Original subscription ID needed by Microsoft.Network.
- Location string
- ARM location of the remote private endpoint.
- Manual
Private List<Pulumi.Link Service Connections Azure Native. Device Update. Inputs. Private Link Service Connection Response> - List of private link service connections that need manual approval.
- Private
Link List<Pulumi.Service Connections Azure Native. Device Update. Inputs. Private Link Service Connection Response> - List of automatically approved private link service connections.
- Private
Link List<Pulumi.Service Proxies Azure Native. Device Update. Inputs. Private Link Service Proxy Response> - List of private link service proxies.
- Vnet
Traffic stringTag - Virtual network traffic tag.
- Connection
Details []ConnectionDetails Response - List of connection details.
- Id string
- Remote endpoint resource ID.
- Immutable
Resource stringId - Original resource ID needed by Microsoft.Network.
- Immutable
Subscription stringId - Original subscription ID needed by Microsoft.Network.
- Location string
- ARM location of the remote private endpoint.
- Manual
Private []PrivateLink Service Connections Link Service Connection Response - List of private link service connections that need manual approval.
- Private
Link []PrivateService Connections Link Service Connection Response - List of automatically approved private link service connections.
- Private
Link []PrivateService Proxies Link Service Proxy Response - List of private link service proxies.
- Vnet
Traffic stringTag - Virtual network traffic tag.
- connection
Details List<ConnectionDetails Response> - List of connection details.
- id String
- Remote endpoint resource ID.
- immutable
Resource StringId - Original resource ID needed by Microsoft.Network.
- immutable
Subscription StringId - Original subscription ID needed by Microsoft.Network.
- location String
- ARM location of the remote private endpoint.
- manual
Private List<PrivateLink Service Connections Link Service Connection Response> - List of private link service connections that need manual approval.
- private
Link List<PrivateService Connections Link Service Connection Response> - List of automatically approved private link service connections.
- private
Link List<PrivateService Proxies Link Service Proxy Response> - List of private link service proxies.
- vnet
Traffic StringTag - Virtual network traffic tag.
- connection
Details ConnectionDetails Response[] - List of connection details.
- id string
- Remote endpoint resource ID.
- immutable
Resource stringId - Original resource ID needed by Microsoft.Network.
- immutable
Subscription stringId - Original subscription ID needed by Microsoft.Network.
- location string
- ARM location of the remote private endpoint.
- manual
Private PrivateLink Service Connections Link Service Connection Response[] - List of private link service connections that need manual approval.
- private
Link PrivateService Connections Link Service Connection Response[] - List of automatically approved private link service connections.
- private
Link PrivateService Proxies Link Service Proxy Response[] - List of private link service proxies.
- vnet
Traffic stringTag - Virtual network traffic tag.
- connection_
details Sequence[ConnectionDetails Response] - List of connection details.
- id str
- Remote endpoint resource ID.
- immutable_
resource_ strid - Original resource ID needed by Microsoft.Network.
- immutable_
subscription_ strid - Original subscription ID needed by Microsoft.Network.
- location str
- ARM location of the remote private endpoint.
- manual_
private_ Sequence[Privatelink_ service_ connections Link Service Connection Response] - List of private link service connections that need manual approval.
- private_
link_ Sequence[Privateservice_ connections Link Service Connection Response] - List of automatically approved private link service connections.
- private_
link_ Sequence[Privateservice_ proxies Link Service Proxy Response] - List of private link service proxies.
- vnet_
traffic_ strtag - Virtual network traffic tag.
- connection
Details List<Property Map> - List of connection details.
- id String
- Remote endpoint resource ID.
- immutable
Resource StringId - Original resource ID needed by Microsoft.Network.
- immutable
Subscription StringId - Original subscription ID needed by Microsoft.Network.
- location String
- ARM location of the remote private endpoint.
- manual
Private List<Property Map>Link Service Connections - List of private link service connections that need manual approval.
- private
Link List<Property Map>Service Connections - List of automatically approved private link service connections.
- private
Link List<Property Map>Service Proxies - List of private link service proxies.
- vnet
Traffic StringTag - Virtual network traffic tag.
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:deviceupdate:PrivateEndpointConnectionProxy peexample01 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeviceUpdate/accounts/{accountName}/privateEndpointConnectionProxies/{privateEndpointConnectionProxyId}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0