azure-native.recoveryservices.PrivateEndpointConnection
Explore with Pulumi AI
Private Endpoint Connection Response Properties Azure REST API version: 2023-04-01. Prior API version in Azure Native 1.x: 2021-02-01.
Other available API versions: 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview.
Example Usage
Update PrivateEndpointConnection
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var privateEndpointConnection = new AzureNative.RecoveryServices.PrivateEndpointConnection("privateEndpointConnection", new()
{
PrivateEndpointConnectionName = "gaallatestpe2.5704c932-249a-490b-a142-1396838cd3b",
Properties = new AzureNative.RecoveryServices.Inputs.PrivateEndpointConnectionArgs
{
GroupIds = new[]
{
AzureNative.RecoveryServices.VaultSubResourceType.AzureBackup_secondary,
},
PrivateEndpoint = new AzureNative.RecoveryServices.Inputs.PrivateEndpointArgs
{
Id = "/subscriptions/04cf684a-d41f-4550-9f70-7708a3a2283b/resourceGroups/gaallaRG/providers/Microsoft.Network/privateEndpoints/gaallatestpe3",
},
PrivateLinkServiceConnectionState = new AzureNative.RecoveryServices.Inputs.PrivateLinkServiceConnectionStateArgs
{
Description = "Approved by johndoe@company.com",
Status = AzureNative.RecoveryServices.PrivateEndpointConnectionStatus.Approved,
},
ProvisioningState = AzureNative.RecoveryServices.ProvisioningState.Succeeded,
},
ResourceGroupName = "gaallaRG",
VaultName = "gaallavaultbvtd2msi",
});
});
package main
import (
recoveryservices "github.com/pulumi/pulumi-azure-native-sdk/recoveryservices/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := recoveryservices.NewPrivateEndpointConnection(ctx, "privateEndpointConnection", &recoveryservices.PrivateEndpointConnectionArgs{
PrivateEndpointConnectionName: pulumi.String("gaallatestpe2.5704c932-249a-490b-a142-1396838cd3b"),
Properties: &recoveryservices.PrivateEndpointConnectionTypeArgs{
GroupIds: pulumi.StringArray{
pulumi.String(recoveryservices.VaultSubResourceType_AzureBackup_secondary),
},
PrivateEndpoint: &recoveryservices.PrivateEndpointArgs{
Id: pulumi.String("/subscriptions/04cf684a-d41f-4550-9f70-7708a3a2283b/resourceGroups/gaallaRG/providers/Microsoft.Network/privateEndpoints/gaallatestpe3"),
},
PrivateLinkServiceConnectionState: &recoveryservices.PrivateLinkServiceConnectionStateArgs{
Description: pulumi.String("Approved by johndoe@company.com"),
Status: pulumi.String(recoveryservices.PrivateEndpointConnectionStatusApproved),
},
ProvisioningState: pulumi.String(recoveryservices.ProvisioningStateSucceeded),
},
ResourceGroupName: pulumi.String("gaallaRG"),
VaultName: pulumi.String("gaallavaultbvtd2msi"),
})
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.recoveryservices.PrivateEndpointConnection;
import com.pulumi.azurenative.recoveryservices.PrivateEndpointConnectionArgs;
import com.pulumi.azurenative.recoveryservices.inputs.PrivateEndpointConnectionArgs;
import com.pulumi.azurenative.recoveryservices.inputs.PrivateEndpointArgs;
import com.pulumi.azurenative.recoveryservices.inputs.PrivateLinkServiceConnectionStateArgs;
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()
.privateEndpointConnectionName("gaallatestpe2.5704c932-249a-490b-a142-1396838cd3b")
.properties(PrivateEndpointConnectionArgs.builder()
.groupIds("AzureBackup_secondary")
.privateEndpoint(PrivateEndpointArgs.builder()
.id("/subscriptions/04cf684a-d41f-4550-9f70-7708a3a2283b/resourceGroups/gaallaRG/providers/Microsoft.Network/privateEndpoints/gaallatestpe3")
.build())
.privateLinkServiceConnectionState(PrivateLinkServiceConnectionStateArgs.builder()
.description("Approved by johndoe@company.com")
.status("Approved")
.build())
.provisioningState("Succeeded")
.build())
.resourceGroupName("gaallaRG")
.vaultName("gaallavaultbvtd2msi")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
private_endpoint_connection = azure_native.recoveryservices.PrivateEndpointConnection("privateEndpointConnection",
private_endpoint_connection_name="gaallatestpe2.5704c932-249a-490b-a142-1396838cd3b",
properties={
"group_ids": [azure_native.recoveryservices.VaultSubResourceType.AZURE_BACKUP_SECONDARY],
"private_endpoint": {
"id": "/subscriptions/04cf684a-d41f-4550-9f70-7708a3a2283b/resourceGroups/gaallaRG/providers/Microsoft.Network/privateEndpoints/gaallatestpe3",
},
"private_link_service_connection_state": {
"description": "Approved by johndoe@company.com",
"status": azure_native.recoveryservices.PrivateEndpointConnectionStatus.APPROVED,
},
"provisioning_state": azure_native.recoveryservices.ProvisioningState.SUCCEEDED,
},
resource_group_name="gaallaRG",
vault_name="gaallavaultbvtd2msi")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const privateEndpointConnection = new azure_native.recoveryservices.PrivateEndpointConnection("privateEndpointConnection", {
privateEndpointConnectionName: "gaallatestpe2.5704c932-249a-490b-a142-1396838cd3b",
properties: {
groupIds: [azure_native.recoveryservices.VaultSubResourceType.AzureBackup_secondary],
privateEndpoint: {
id: "/subscriptions/04cf684a-d41f-4550-9f70-7708a3a2283b/resourceGroups/gaallaRG/providers/Microsoft.Network/privateEndpoints/gaallatestpe3",
},
privateLinkServiceConnectionState: {
description: "Approved by johndoe@company.com",
status: azure_native.recoveryservices.PrivateEndpointConnectionStatus.Approved,
},
provisioningState: azure_native.recoveryservices.ProvisioningState.Succeeded,
},
resourceGroupName: "gaallaRG",
vaultName: "gaallavaultbvtd2msi",
});
resources:
privateEndpointConnection:
type: azure-native:recoveryservices:PrivateEndpointConnection
properties:
privateEndpointConnectionName: gaallatestpe2.5704c932-249a-490b-a142-1396838cd3b
properties:
groupIds:
- AzureBackup_secondary
privateEndpoint:
id: /subscriptions/04cf684a-d41f-4550-9f70-7708a3a2283b/resourceGroups/gaallaRG/providers/Microsoft.Network/privateEndpoints/gaallatestpe3
privateLinkServiceConnectionState:
description: Approved by johndoe@company.com
status: Approved
provisioningState: Succeeded
resourceGroupName: gaallaRG
vaultName: gaallavaultbvtd2msi
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: PrivateEndpointConnectionInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PrivateEndpointConnection(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
vault_name: Optional[str] = None,
e_tag: Optional[str] = None,
location: Optional[str] = None,
private_endpoint_connection_name: Optional[str] = None,
properties: Optional[PrivateEndpointConnectionArgs] = None,
tags: Optional[Mapping[str, str]] = 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:recoveryservices: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 PrivateEndpointConnectionInitArgs
- 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 exampleprivateEndpointConnectionResourceResourceFromRecoveryservices = new AzureNative.RecoveryServices.PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromRecoveryservices", new()
{
ResourceGroupName = "string",
VaultName = "string",
ETag = "string",
Location = "string",
PrivateEndpointConnectionName = "string",
Properties = new AzureNative.RecoveryServices.Inputs.PrivateEndpointConnectionArgs
{
GroupIds = new[]
{
"string",
},
PrivateEndpoint = new AzureNative.RecoveryServices.Inputs.PrivateEndpointArgs
{
Id = "string",
},
PrivateLinkServiceConnectionState = new AzureNative.RecoveryServices.Inputs.PrivateLinkServiceConnectionStateArgs
{
ActionsRequired = "string",
Description = "string",
Status = "string",
},
ProvisioningState = "string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := recoveryservices.NewPrivateEndpointConnection(ctx, "exampleprivateEndpointConnectionResourceResourceFromRecoveryservices", &recoveryservices.PrivateEndpointConnectionArgs{
ResourceGroupName: pulumi.String("string"),
VaultName: pulumi.String("string"),
ETag: pulumi.String("string"),
Location: pulumi.String("string"),
PrivateEndpointConnectionName: pulumi.String("string"),
Properties: &recoveryservices.PrivateEndpointConnectionTypeArgs{
GroupIds: pulumi.StringArray{
pulumi.String("string"),
},
PrivateEndpoint: &recoveryservices.PrivateEndpointArgs{
Id: pulumi.String("string"),
},
PrivateLinkServiceConnectionState: &recoveryservices.PrivateLinkServiceConnectionStateArgs{
ActionsRequired: pulumi.String("string"),
Description: pulumi.String("string"),
Status: pulumi.String("string"),
},
ProvisioningState: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var exampleprivateEndpointConnectionResourceResourceFromRecoveryservices = new PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromRecoveryservices", PrivateEndpointConnectionArgs.builder()
.resourceGroupName("string")
.vaultName("string")
.eTag("string")
.location("string")
.privateEndpointConnectionName("string")
.properties(PrivateEndpointConnectionArgs.builder()
.groupIds("string")
.privateEndpoint(PrivateEndpointArgs.builder()
.id("string")
.build())
.privateLinkServiceConnectionState(PrivateLinkServiceConnectionStateArgs.builder()
.actionsRequired("string")
.description("string")
.status("string")
.build())
.provisioningState("string")
.build())
.tags(Map.of("string", "string"))
.build());
exampleprivate_endpoint_connection_resource_resource_from_recoveryservices = azure_native.recoveryservices.PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromRecoveryservices",
resource_group_name="string",
vault_name="string",
e_tag="string",
location="string",
private_endpoint_connection_name="string",
properties={
"groupIds": ["string"],
"privateEndpoint": {
"id": "string",
},
"privateLinkServiceConnectionState": {
"actionsRequired": "string",
"description": "string",
"status": "string",
},
"provisioningState": "string",
},
tags={
"string": "string",
})
const exampleprivateEndpointConnectionResourceResourceFromRecoveryservices = new azure_native.recoveryservices.PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromRecoveryservices", {
resourceGroupName: "string",
vaultName: "string",
eTag: "string",
location: "string",
privateEndpointConnectionName: "string",
properties: {
groupIds: ["string"],
privateEndpoint: {
id: "string",
},
privateLinkServiceConnectionState: {
actionsRequired: "string",
description: "string",
status: "string",
},
provisioningState: "string",
},
tags: {
string: "string",
},
});
type: azure-native:recoveryservices:PrivateEndpointConnection
properties:
eTag: string
location: string
privateEndpointConnectionName: string
properties:
groupIds:
- string
privateEndpoint:
id: string
privateLinkServiceConnectionState:
actionsRequired: string
description: string
status: string
provisioningState: string
resourceGroupName: string
tags:
string: string
vaultName: 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:
- Resource
Group stringName - The name of the resource group where the recovery services vault is present.
- Vault
Name string - The name of the recovery services vault.
- ETag string
- Optional ETag.
- Location string
- Resource location.
- Private
Endpoint stringConnection Name - The name of the private endpoint connection.
- Properties
Pulumi.
Azure Native. Recovery Services. Inputs. Private Endpoint Connection - PrivateEndpointConnectionResource properties
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group where the recovery services vault is present.
- Vault
Name string - The name of the recovery services vault.
- ETag string
- Optional ETag.
- Location string
- Resource location.
- Private
Endpoint stringConnection Name - The name of the private endpoint connection.
- Properties
Private
Endpoint Connection Type Args - PrivateEndpointConnectionResource properties
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group where the recovery services vault is present.
- vault
Name String - The name of the recovery services vault.
- e
Tag String - Optional ETag.
- location String
- Resource location.
- private
Endpoint StringConnection Name - The name of the private endpoint connection.
- properties
Private
Endpoint Connection - PrivateEndpointConnectionResource properties
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group where the recovery services vault is present.
- vault
Name string - The name of the recovery services vault.
- e
Tag string - Optional ETag.
- location string
- Resource location.
- private
Endpoint stringConnection Name - The name of the private endpoint connection.
- properties
Private
Endpoint Connection - PrivateEndpointConnectionResource properties
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group where the recovery services vault is present.
- vault_
name str - The name of the recovery services vault.
- e_
tag str - Optional ETag.
- location str
- Resource location.
- private_
endpoint_ strconnection_ name - The name of the private endpoint connection.
- properties
Private
Endpoint Connection Args - PrivateEndpointConnectionResource properties
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group where the recovery services vault is present.
- vault
Name String - The name of the recovery services vault.
- e
Tag String - Optional ETag.
- location String
- Resource location.
- private
Endpoint StringConnection Name - The name of the private endpoint connection.
- properties Property Map
- PrivateEndpointConnectionResource properties
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the PrivateEndpointConnection resource produces the following output properties:
Supporting Types
PrivateEndpoint, PrivateEndpointArgs
- Id string
- Gets or sets id
- Id string
- Gets or sets id
- id String
- Gets or sets id
- id string
- Gets or sets id
- id str
- Gets or sets id
- id String
- Gets or sets id
PrivateEndpointConnection, PrivateEndpointConnectionArgs
- Group
Ids List<Union<string, Pulumi.Azure Native. Recovery Services. Vault Sub Resource Type>> - Group Ids for the Private Endpoint
- Private
Endpoint Pulumi.Azure Native. Recovery Services. Inputs. Private Endpoint - Gets or sets private endpoint associated with the private endpoint connection
- Private
Link Pulumi.Service Connection State Azure Native. Recovery Services. Inputs. Private Link Service Connection State - Gets or sets private link service connection state
- Provisioning
State string | Pulumi.Azure Native. Recovery Services. Provisioning State - Gets or sets provisioning state of the private endpoint connection
- Group
Ids []string - Group Ids for the Private Endpoint
- Private
Endpoint PrivateEndpoint - Gets or sets private endpoint associated with the private endpoint connection
- Private
Link PrivateService Connection State Link Service Connection State - Gets or sets private link service connection state
- Provisioning
State string | ProvisioningState - Gets or sets provisioning state of the private endpoint connection
- group
Ids List<Either<String,VaultSub Resource Type>> - Group Ids for the Private Endpoint
- private
Endpoint PrivateEndpoint - Gets or sets private endpoint associated with the private endpoint connection
- private
Link PrivateService Connection State Link Service Connection State - Gets or sets private link service connection state
- provisioning
State String | ProvisioningState - Gets or sets provisioning state of the private endpoint connection
- group
Ids (string | VaultSub Resource Type)[] - Group Ids for the Private Endpoint
- private
Endpoint PrivateEndpoint - Gets or sets private endpoint associated with the private endpoint connection
- private
Link PrivateService Connection State Link Service Connection State - Gets or sets private link service connection state
- provisioning
State string | ProvisioningState - Gets or sets provisioning state of the private endpoint connection
- group_
ids Sequence[Union[str, VaultSub Resource Type]] - Group Ids for the Private Endpoint
- private_
endpoint PrivateEndpoint - Gets or sets private endpoint associated with the private endpoint connection
- private_
link_ Privateservice_ connection_ state Link Service Connection State - Gets or sets private link service connection state
- provisioning_
state str | ProvisioningState - Gets or sets provisioning state of the private endpoint connection
- group
Ids List<String | "AzureBackup" | "Azure Backup_ secondary" | "Azure Site Recovery"> - Group Ids for the Private Endpoint
- private
Endpoint Property Map - Gets or sets private endpoint associated with the private endpoint connection
- private
Link Property MapService Connection State - Gets or sets private link service connection state
- provisioning
State String | "Succeeded" | "Deleting" | "Failed" | "Pending" - Gets or sets provisioning state of the private endpoint connection
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs
- Group
Ids List<string> - Group Ids for the Private Endpoint
- Private
Endpoint Pulumi.Azure Native. Recovery Services. Inputs. Private Endpoint Response - Gets or sets private endpoint associated with the private endpoint connection
- Private
Link Pulumi.Service Connection State Azure Native. Recovery Services. Inputs. Private Link Service Connection State Response - Gets or sets private link service connection state
- Provisioning
State string - Gets or sets provisioning state of the private endpoint connection
- Group
Ids []string - Group Ids for the Private Endpoint
- Private
Endpoint PrivateEndpoint Response - Gets or sets private endpoint associated with the private endpoint connection
- Private
Link PrivateService Connection State Link Service Connection State Response - Gets or sets private link service connection state
- Provisioning
State string - Gets or sets provisioning state of the private endpoint connection
- group
Ids List<String> - Group Ids for the Private Endpoint
- private
Endpoint PrivateEndpoint Response - Gets or sets private endpoint associated with the private endpoint connection
- private
Link PrivateService Connection State Link Service Connection State Response - Gets or sets private link service connection state
- provisioning
State String - Gets or sets provisioning state of the private endpoint connection
- group
Ids string[] - Group Ids for the Private Endpoint
- private
Endpoint PrivateEndpoint Response - Gets or sets private endpoint associated with the private endpoint connection
- private
Link PrivateService Connection State Link Service Connection State Response - Gets or sets private link service connection state
- provisioning
State string - Gets or sets provisioning state of the private endpoint connection
- group_
ids Sequence[str] - Group Ids for the Private Endpoint
- private_
endpoint PrivateEndpoint Response - Gets or sets private endpoint associated with the private endpoint connection
- private_
link_ Privateservice_ connection_ state Link Service Connection State Response - Gets or sets private link service connection state
- provisioning_
state str - Gets or sets provisioning state of the private endpoint connection
- group
Ids List<String> - Group Ids for the Private Endpoint
- private
Endpoint Property Map - Gets or sets private endpoint associated with the private endpoint connection
- private
Link Property MapService Connection State - Gets or sets private link service connection state
- provisioning
State String - Gets or sets provisioning state of the private endpoint connection
PrivateEndpointConnectionStatus, PrivateEndpointConnectionStatusArgs
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- Disconnected
- Disconnected
- Private
Endpoint Connection Status Pending - Pending
- Private
Endpoint Connection Status Approved - Approved
- Private
Endpoint Connection Status Rejected - Rejected
- Private
Endpoint 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
PrivateEndpointResponse, PrivateEndpointResponseArgs
- Id string
- Gets or sets id.
- Id string
- Gets or sets id.
- id String
- Gets or sets id.
- id string
- Gets or sets id.
- id str
- Gets or sets id.
- id String
- Gets or sets id.
PrivateLinkServiceConnectionState, PrivateLinkServiceConnectionStateArgs
- Actions
Required string - Gets or sets actions required
- Description string
- Gets or sets description
- Status
string | Pulumi.
Azure Native. Recovery Services. Private Endpoint Connection Status - Gets or sets the status
- Actions
Required string - Gets or sets actions required
- Description string
- Gets or sets description
- Status
string | Private
Endpoint Connection Status - Gets or sets the status
- actions
Required String - Gets or sets actions required
- description String
- Gets or sets description
- status
String | Private
Endpoint Connection Status - Gets or sets the status
- actions
Required string - Gets or sets actions required
- description string
- Gets or sets description
- status
string | Private
Endpoint Connection Status - Gets or sets the status
- actions_
required str - Gets or sets actions required
- description str
- Gets or sets description
- status
str | Private
Endpoint Connection Status - Gets or sets the status
- actions
Required String - Gets or sets actions required
- description String
- Gets or sets description
- status String | "Pending" | "Approved" | "Rejected" | "Disconnected"
- Gets or sets the status
PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs
- Actions
Required string - Gets or sets actions required
- Description string
- Gets or sets description
- Status string
- Gets or sets the status
- Actions
Required string - Gets or sets actions required
- Description string
- Gets or sets description
- Status string
- Gets or sets the status
- actions
Required String - Gets or sets actions required
- description String
- Gets or sets description
- status String
- Gets or sets the status
- actions
Required string - Gets or sets actions required
- description string
- Gets or sets description
- status string
- Gets or sets the status
- actions_
required str - Gets or sets actions required
- description str
- Gets or sets description
- status str
- Gets or sets the status
- actions
Required String - Gets or sets actions required
- description String
- Gets or sets description
- status String
- Gets or sets the status
ProvisioningState, ProvisioningStateArgs
- Succeeded
- Succeeded
- Deleting
- Deleting
- Failed
- Failed
- Pending
- Pending
- Provisioning
State Succeeded - Succeeded
- Provisioning
State Deleting - Deleting
- Provisioning
State Failed - Failed
- Provisioning
State Pending - Pending
- Succeeded
- Succeeded
- Deleting
- Deleting
- Failed
- Failed
- Pending
- Pending
- Succeeded
- Succeeded
- Deleting
- Deleting
- Failed
- Failed
- Pending
- Pending
- SUCCEEDED
- Succeeded
- DELETING
- Deleting
- FAILED
- Failed
- PENDING
- Pending
- "Succeeded"
- Succeeded
- "Deleting"
- Deleting
- "Failed"
- Failed
- "Pending"
- Pending
VaultSubResourceType, VaultSubResourceTypeArgs
- Azure
Backup - AzureBackup
- Azure
Backup_ secondary - AzureBackup_secondary
- Azure
Site Recovery - AzureSiteRecovery
- Vault
Sub Resource Type Azure Backup - AzureBackup
- Vault
Sub Resource Type_Azure Backup_ secondary - AzureBackup_secondary
- Vault
Sub Resource Type Azure Site Recovery - AzureSiteRecovery
- Azure
Backup - AzureBackup
- Azure
Backup_ secondary - AzureBackup_secondary
- Azure
Site Recovery - AzureSiteRecovery
- Azure
Backup - AzureBackup
- Azure
Backup_ secondary - AzureBackup_secondary
- Azure
Site Recovery - AzureSiteRecovery
- AZURE_BACKUP
- AzureBackup
- AZURE_BACKUP_SECONDARY
- AzureBackup_secondary
- AZURE_SITE_RECOVERY
- AzureSiteRecovery
- "Azure
Backup" - AzureBackup
- "Azure
Backup_ secondary" - AzureBackup_secondary
- "Azure
Site Recovery" - AzureSiteRecovery
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:recoveryservices:PrivateEndpointConnection gaallatestpe1.3592346090307038890.backup.5704c932-249a-490b-a142-1396838cd3b /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/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