1. Packages
  2. Azure Native v2
  3. API Docs
  4. search
  5. PrivateEndpointConnection
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.search.PrivateEndpointConnection

Explore with Pulumi AI

Describes an existing Private Endpoint connection to the Azure Cognitive Search service. Azure REST API version: 2022-09-01. Prior API version in Azure Native 1.x: 2020-08-01.

Other available API versions: 2023-11-01, 2024-03-01-preview, 2024-06-01-preview.

Example Usage

PrivateEndpointConnectionUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var privateEndpointConnection = new AzureNative.Search.PrivateEndpointConnection("privateEndpointConnection", new()
    {
        PrivateEndpointConnectionName = "testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546",
        Properties = new AzureNative.Search.Inputs.PrivateEndpointConnectionPropertiesArgs
        {
            PrivateLinkServiceConnectionState = new AzureNative.Search.Inputs.PrivateEndpointConnectionPropertiesPrivateLinkServiceConnectionStateArgs
            {
                Description = "Rejected for some reason",
                Status = AzureNative.Search.PrivateLinkServiceConnectionStatus.Rejected,
            },
        },
        ResourceGroupName = "rg1",
        SearchServiceName = "mysearchservice",
    });

});
Copy
package main

import (
	search "github.com/pulumi/pulumi-azure-native-sdk/search/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := search.NewPrivateEndpointConnection(ctx, "privateEndpointConnection", &search.PrivateEndpointConnectionArgs{
			PrivateEndpointConnectionName: pulumi.String("testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546"),
			Properties: &search.PrivateEndpointConnectionPropertiesArgs{
				PrivateLinkServiceConnectionState: &search.PrivateEndpointConnectionPropertiesPrivateLinkServiceConnectionStateArgs{
					Description: pulumi.String("Rejected for some reason"),
					Status:      search.PrivateLinkServiceConnectionStatusRejected,
				},
			},
			ResourceGroupName: pulumi.String("rg1"),
			SearchServiceName: pulumi.String("mysearchservice"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.search.PrivateEndpointConnection;
import com.pulumi.azurenative.search.PrivateEndpointConnectionArgs;
import com.pulumi.azurenative.search.inputs.PrivateEndpointConnectionPropertiesArgs;
import com.pulumi.azurenative.search.inputs.PrivateEndpointConnectionPropertiesPrivateLinkServiceConnectionStateArgs;
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("testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546")
            .properties(PrivateEndpointConnectionPropertiesArgs.builder()
                .privateLinkServiceConnectionState(PrivateEndpointConnectionPropertiesPrivateLinkServiceConnectionStateArgs.builder()
                    .description("Rejected for some reason")
                    .status("Rejected")
                    .build())
                .build())
            .resourceGroupName("rg1")
            .searchServiceName("mysearchservice")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const privateEndpointConnection = new azure_native.search.PrivateEndpointConnection("privateEndpointConnection", {
    privateEndpointConnectionName: "testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546",
    properties: {
        privateLinkServiceConnectionState: {
            description: "Rejected for some reason",
            status: azure_native.search.PrivateLinkServiceConnectionStatus.Rejected,
        },
    },
    resourceGroupName: "rg1",
    searchServiceName: "mysearchservice",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

private_endpoint_connection = azure_native.search.PrivateEndpointConnection("privateEndpointConnection",
    private_endpoint_connection_name="testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546",
    properties={
        "private_link_service_connection_state": {
            "description": "Rejected for some reason",
            "status": azure_native.search.PrivateLinkServiceConnectionStatus.REJECTED,
        },
    },
    resource_group_name="rg1",
    search_service_name="mysearchservice")
Copy
resources:
  privateEndpointConnection:
    type: azure-native:search:PrivateEndpointConnection
    properties:
      privateEndpointConnectionName: testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546
      properties:
        privateLinkServiceConnectionState:
          description: Rejected for some reason
          status: Rejected
      resourceGroupName: rg1
      searchServiceName: mysearchservice
Copy

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,
                              resource_group_name: Optional[str] = None,
                              search_service_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:search:PrivateEndpointConnection
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PrivateEndpointConnectionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. PrivateEndpointConnectionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PrivateEndpointConnectionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 exampleprivateEndpointConnectionResourceResourceFromSearch = new AzureNative.Search.PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromSearch", new()
{
    ResourceGroupName = "string",
    SearchServiceName = "string",
    PrivateEndpointConnectionName = "string",
    Properties = 
    {
        { "groupId", "string" },
        { "privateEndpoint", 
        {
            { "id", "string" },
        } },
        { "privateLinkServiceConnectionState", 
        {
            { "actionsRequired", "string" },
            { "description", "string" },
            { "status", "Pending" },
        } },
        { "provisioningState", "string" },
    },
});
Copy
example, err := search.NewPrivateEndpointConnection(ctx, "exampleprivateEndpointConnectionResourceResourceFromSearch", &search.PrivateEndpointConnectionArgs{
	ResourceGroupName:             "string",
	SearchServiceName:             "string",
	PrivateEndpointConnectionName: "string",
	Properties: map[string]interface{}{
		"groupId": "string",
		"privateEndpoint": map[string]interface{}{
			"id": "string",
		},
		"privateLinkServiceConnectionState": map[string]interface{}{
			"actionsRequired": "string",
			"description":     "string",
			"status":          "Pending",
		},
		"provisioningState": "string",
	},
})
Copy
var exampleprivateEndpointConnectionResourceResourceFromSearch = new PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromSearch", PrivateEndpointConnectionArgs.builder()
    .resourceGroupName("string")
    .searchServiceName("string")
    .privateEndpointConnectionName("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
exampleprivate_endpoint_connection_resource_resource_from_search = azure_native.search.PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromSearch",
    resource_group_name=string,
    search_service_name=string,
    private_endpoint_connection_name=string,
    properties={
        groupId: string,
        privateEndpoint: {
            id: string,
        },
        privateLinkServiceConnectionState: {
            actionsRequired: string,
            description: string,
            status: Pending,
        },
        provisioningState: string,
    })
Copy
const exampleprivateEndpointConnectionResourceResourceFromSearch = new azure_native.search.PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromSearch", {
    resourceGroupName: "string",
    searchServiceName: "string",
    privateEndpointConnectionName: "string",
    properties: {
        groupId: "string",
        privateEndpoint: {
            id: "string",
        },
        privateLinkServiceConnectionState: {
            actionsRequired: "string",
            description: "string",
            status: "Pending",
        },
        provisioningState: "string",
    },
});
Copy
type: azure-native:search:PrivateEndpointConnection
properties:
    privateEndpointConnectionName: string
    properties:
        groupId: string
        privateEndpoint:
            id: string
        privateLinkServiceConnectionState:
            actionsRequired: string
            description: string
            status: Pending
        provisioningState: string
    resourceGroupName: string
    searchServiceName: string
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The PrivateEndpointConnection resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal.
SearchServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Azure Cognitive Search service associated with the specified resource group.
PrivateEndpointConnectionName Changes to this property will trigger replacement. string
The name of the private endpoint connection to the Azure Cognitive Search service with the specified resource group.
Properties Pulumi.AzureNative.Search.Inputs.PrivateEndpointConnectionProperties
Describes the properties of an existing Private Endpoint connection to the Azure Cognitive Search service.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal.
SearchServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Azure Cognitive Search service associated with the specified resource group.
PrivateEndpointConnectionName Changes to this property will trigger replacement. string
The name of the private endpoint connection to the Azure Cognitive Search service with the specified resource group.
Properties PrivateEndpointConnectionPropertiesArgs
Describes the properties of an existing Private Endpoint connection to the Azure Cognitive Search service.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal.
searchServiceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Azure Cognitive Search service associated with the specified resource group.
privateEndpointConnectionName Changes to this property will trigger replacement. String
The name of the private endpoint connection to the Azure Cognitive Search service with the specified resource group.
properties PrivateEndpointConnectionProperties
Describes the properties of an existing Private Endpoint connection to the Azure Cognitive Search service.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal.
searchServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Azure Cognitive Search service associated with the specified resource group.
privateEndpointConnectionName Changes to this property will trigger replacement. string
The name of the private endpoint connection to the Azure Cognitive Search service with the specified resource group.
properties PrivateEndpointConnectionProperties
Describes the properties of an existing Private Endpoint connection to the Azure Cognitive Search service.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal.
search_service_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Azure Cognitive Search service associated with the specified resource group.
private_endpoint_connection_name Changes to this property will trigger replacement. str
The name of the private endpoint connection to the Azure Cognitive Search service with the specified resource group.
properties PrivateEndpointConnectionPropertiesArgs
Describes the properties of an existing Private Endpoint connection to the Azure Cognitive Search service.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal.
searchServiceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Azure Cognitive Search service associated with the specified resource group.
privateEndpointConnectionName Changes to this property will trigger replacement. String
The name of the private endpoint connection to the Azure Cognitive Search service with the specified resource group.
properties Property Map
Describes the properties of an existing Private Endpoint connection to the Azure Cognitive Search service.

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
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
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
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
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
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
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

PrivateEndpointConnectionProperties
, PrivateEndpointConnectionPropertiesArgs

GroupId string
The group id from the provider of resource the private link service connection is for.
PrivateEndpoint Pulumi.AzureNative.Search.Inputs.PrivateEndpointConnectionPropertiesPrivateEndpoint
The private endpoint resource from Microsoft.Network provider.
PrivateLinkServiceConnectionState Pulumi.AzureNative.Search.Inputs.PrivateEndpointConnectionPropertiesPrivateLinkServiceConnectionState
Describes the current state of an existing Private Link Service connection to the Azure Private Endpoint.
ProvisioningState string | Pulumi.AzureNative.Search.PrivateLinkServiceConnectionProvisioningState
The provisioning state of the private link service connection. Can be Updating, Deleting, Failed, Succeeded, or Incomplete
GroupId string
The group id from the provider of resource the private link service connection is for.
PrivateEndpoint PrivateEndpointConnectionPropertiesPrivateEndpoint
The private endpoint resource from Microsoft.Network provider.
PrivateLinkServiceConnectionState PrivateEndpointConnectionPropertiesPrivateLinkServiceConnectionState
Describes the current state of an existing Private Link Service connection to the Azure Private Endpoint.
ProvisioningState string | PrivateLinkServiceConnectionProvisioningState
The provisioning state of the private link service connection. Can be Updating, Deleting, Failed, Succeeded, or Incomplete
groupId String
The group id from the provider of resource the private link service connection is for.
privateEndpoint PrivateEndpointConnectionPropertiesPrivateEndpoint
The private endpoint resource from Microsoft.Network provider.
privateLinkServiceConnectionState PrivateEndpointConnectionPropertiesPrivateLinkServiceConnectionState
Describes the current state of an existing Private Link Service connection to the Azure Private Endpoint.
provisioningState String | PrivateLinkServiceConnectionProvisioningState
The provisioning state of the private link service connection. Can be Updating, Deleting, Failed, Succeeded, or Incomplete
groupId string
The group id from the provider of resource the private link service connection is for.
privateEndpoint PrivateEndpointConnectionPropertiesPrivateEndpoint
The private endpoint resource from Microsoft.Network provider.
privateLinkServiceConnectionState PrivateEndpointConnectionPropertiesPrivateLinkServiceConnectionState
Describes the current state of an existing Private Link Service connection to the Azure Private Endpoint.
provisioningState string | PrivateLinkServiceConnectionProvisioningState
The provisioning state of the private link service connection. Can be Updating, Deleting, Failed, Succeeded, or Incomplete
group_id str
The group id from the provider of resource the private link service connection is for.
private_endpoint PrivateEndpointConnectionPropertiesPrivateEndpoint
The private endpoint resource from Microsoft.Network provider.
private_link_service_connection_state PrivateEndpointConnectionPropertiesPrivateLinkServiceConnectionState
Describes the current state of an existing Private Link Service connection to the Azure Private Endpoint.
provisioning_state str | PrivateLinkServiceConnectionProvisioningState
The provisioning state of the private link service connection. Can be Updating, Deleting, Failed, Succeeded, or Incomplete
groupId String
The group id from the provider of resource the private link service connection is for.
privateEndpoint Property Map
The private endpoint resource from Microsoft.Network provider.
privateLinkServiceConnectionState Property Map
Describes the current state of an existing Private Link Service connection to the Azure Private Endpoint.
provisioningState String | "Updating" | "Deleting" | "Failed" | "Succeeded" | "Incomplete" | "Canceled"
The provisioning state of the private link service connection. Can be Updating, Deleting, Failed, Succeeded, or Incomplete

PrivateEndpointConnectionPropertiesPrivateEndpoint
, PrivateEndpointConnectionPropertiesPrivateEndpointArgs

Id string
The resource id of the private endpoint resource from Microsoft.Network provider.
Id string
The resource id of the private endpoint resource from Microsoft.Network provider.
id String
The resource id of the private endpoint resource from Microsoft.Network provider.
id string
The resource id of the private endpoint resource from Microsoft.Network provider.
id str
The resource id of the private endpoint resource from Microsoft.Network provider.
id String
The resource id of the private endpoint resource from Microsoft.Network provider.

PrivateEndpointConnectionPropertiesPrivateLinkServiceConnectionState
, PrivateEndpointConnectionPropertiesPrivateLinkServiceConnectionStateArgs

ActionsRequired string
A description of any extra actions that may be required.
Description string
The description for the private link service connection state.
Status Pulumi.AzureNative.Search.PrivateLinkServiceConnectionStatus
Status of the the private link service connection. Can be Pending, Approved, Rejected, or Disconnected.
ActionsRequired string
A description of any extra actions that may be required.
Description string
The description for the private link service connection state.
Status PrivateLinkServiceConnectionStatus
Status of the the private link service connection. Can be Pending, Approved, Rejected, or Disconnected.
actionsRequired String
A description of any extra actions that may be required.
description String
The description for the private link service connection state.
status PrivateLinkServiceConnectionStatus
Status of the the private link service connection. Can be Pending, Approved, Rejected, or Disconnected.
actionsRequired string
A description of any extra actions that may be required.
description string
The description for the private link service connection state.
status PrivateLinkServiceConnectionStatus
Status of the the private link service connection. Can be Pending, Approved, Rejected, or Disconnected.
actions_required str
A description of any extra actions that may be required.
description str
The description for the private link service connection state.
status PrivateLinkServiceConnectionStatus
Status of the the private link service connection. Can be Pending, Approved, Rejected, or Disconnected.
actionsRequired String
A description of any extra actions that may be required.
description String
The description for the private link service connection state.
status "Pending" | "Approved" | "Rejected" | "Disconnected"
Status of the the private link service connection. Can be Pending, Approved, Rejected, or Disconnected.

PrivateEndpointConnectionPropertiesResponse
, PrivateEndpointConnectionPropertiesResponseArgs

GroupId string
The group id from the provider of resource the private link service connection is for.
PrivateEndpoint Pulumi.AzureNative.Search.Inputs.PrivateEndpointConnectionPropertiesResponsePrivateEndpoint
The private endpoint resource from Microsoft.Network provider.
PrivateLinkServiceConnectionState Pulumi.AzureNative.Search.Inputs.PrivateEndpointConnectionPropertiesResponsePrivateLinkServiceConnectionState
Describes the current state of an existing Private Link Service connection to the Azure Private Endpoint.
ProvisioningState string
The provisioning state of the private link service connection. Can be Updating, Deleting, Failed, Succeeded, or Incomplete
GroupId string
The group id from the provider of resource the private link service connection is for.
PrivateEndpoint PrivateEndpointConnectionPropertiesResponsePrivateEndpoint
The private endpoint resource from Microsoft.Network provider.
PrivateLinkServiceConnectionState PrivateEndpointConnectionPropertiesResponsePrivateLinkServiceConnectionState
Describes the current state of an existing Private Link Service connection to the Azure Private Endpoint.
ProvisioningState string
The provisioning state of the private link service connection. Can be Updating, Deleting, Failed, Succeeded, or Incomplete
groupId String
The group id from the provider of resource the private link service connection is for.
privateEndpoint PrivateEndpointConnectionPropertiesResponsePrivateEndpoint
The private endpoint resource from Microsoft.Network provider.
privateLinkServiceConnectionState PrivateEndpointConnectionPropertiesResponsePrivateLinkServiceConnectionState
Describes the current state of an existing Private Link Service connection to the Azure Private Endpoint.
provisioningState String
The provisioning state of the private link service connection. Can be Updating, Deleting, Failed, Succeeded, or Incomplete
groupId string
The group id from the provider of resource the private link service connection is for.
privateEndpoint PrivateEndpointConnectionPropertiesResponsePrivateEndpoint
The private endpoint resource from Microsoft.Network provider.
privateLinkServiceConnectionState PrivateEndpointConnectionPropertiesResponsePrivateLinkServiceConnectionState
Describes the current state of an existing Private Link Service connection to the Azure Private Endpoint.
provisioningState string
The provisioning state of the private link service connection. Can be Updating, Deleting, Failed, Succeeded, or Incomplete
group_id str
The group id from the provider of resource the private link service connection is for.
private_endpoint PrivateEndpointConnectionPropertiesResponsePrivateEndpoint
The private endpoint resource from Microsoft.Network provider.
private_link_service_connection_state PrivateEndpointConnectionPropertiesResponsePrivateLinkServiceConnectionState
Describes the current state of an existing Private Link Service connection to the Azure Private Endpoint.
provisioning_state str
The provisioning state of the private link service connection. Can be Updating, Deleting, Failed, Succeeded, or Incomplete
groupId String
The group id from the provider of resource the private link service connection is for.
privateEndpoint Property Map
The private endpoint resource from Microsoft.Network provider.
privateLinkServiceConnectionState Property Map
Describes the current state of an existing Private Link Service connection to the Azure Private Endpoint.
provisioningState String
The provisioning state of the private link service connection. Can be Updating, Deleting, Failed, Succeeded, or Incomplete

PrivateEndpointConnectionPropertiesResponsePrivateEndpoint
, PrivateEndpointConnectionPropertiesResponsePrivateEndpointArgs

Id string
The resource id of the private endpoint resource from Microsoft.Network provider.
Id string
The resource id of the private endpoint resource from Microsoft.Network provider.
id String
The resource id of the private endpoint resource from Microsoft.Network provider.
id string
The resource id of the private endpoint resource from Microsoft.Network provider.
id str
The resource id of the private endpoint resource from Microsoft.Network provider.
id String
The resource id of the private endpoint resource from Microsoft.Network provider.

PrivateEndpointConnectionPropertiesResponsePrivateLinkServiceConnectionState
, PrivateEndpointConnectionPropertiesResponsePrivateLinkServiceConnectionStateArgs

ActionsRequired string
A description of any extra actions that may be required.
Description string
The description for the private link service connection state.
Status string
Status of the the private link service connection. Can be Pending, Approved, Rejected, or Disconnected.
ActionsRequired string
A description of any extra actions that may be required.
Description string
The description for the private link service connection state.
Status string
Status of the the private link service connection. Can be Pending, Approved, Rejected, or Disconnected.
actionsRequired String
A description of any extra actions that may be required.
description String
The description for the private link service connection state.
status String
Status of the the private link service connection. Can be Pending, Approved, Rejected, or Disconnected.
actionsRequired string
A description of any extra actions that may be required.
description string
The description for the private link service connection state.
status string
Status of the the private link service connection. Can be Pending, Approved, Rejected, or Disconnected.
actions_required str
A description of any extra actions that may be required.
description str
The description for the private link service connection state.
status str
Status of the the private link service connection. Can be Pending, Approved, Rejected, or Disconnected.
actionsRequired String
A description of any extra actions that may be required.
description String
The description for the private link service connection state.
status String
Status of the the private link service connection. Can be Pending, Approved, Rejected, or Disconnected.

PrivateLinkServiceConnectionProvisioningState
, PrivateLinkServiceConnectionProvisioningStateArgs

Updating
UpdatingThe private link service connection is in the process of being created along with other resources for it to be fully functional.
Deleting
DeletingThe private link service connection is in the process of being deleted.
Failed
FailedThe private link service connection has failed to be provisioned or deleted.
Succeeded
SucceededThe private link service connection has finished provisioning and is ready for approval.
Incomplete
IncompleteProvisioning request for the private link service connection resource has been accepted but the process of creation has not commenced yet.
Canceled
CanceledProvisioning request for the private link service connection resource has been canceled
PrivateLinkServiceConnectionProvisioningStateUpdating
UpdatingThe private link service connection is in the process of being created along with other resources for it to be fully functional.
PrivateLinkServiceConnectionProvisioningStateDeleting
DeletingThe private link service connection is in the process of being deleted.
PrivateLinkServiceConnectionProvisioningStateFailed
FailedThe private link service connection has failed to be provisioned or deleted.
PrivateLinkServiceConnectionProvisioningStateSucceeded
SucceededThe private link service connection has finished provisioning and is ready for approval.
PrivateLinkServiceConnectionProvisioningStateIncomplete
IncompleteProvisioning request for the private link service connection resource has been accepted but the process of creation has not commenced yet.
PrivateLinkServiceConnectionProvisioningStateCanceled
CanceledProvisioning request for the private link service connection resource has been canceled
Updating
UpdatingThe private link service connection is in the process of being created along with other resources for it to be fully functional.
Deleting
DeletingThe private link service connection is in the process of being deleted.
Failed
FailedThe private link service connection has failed to be provisioned or deleted.
Succeeded
SucceededThe private link service connection has finished provisioning and is ready for approval.
Incomplete
IncompleteProvisioning request for the private link service connection resource has been accepted but the process of creation has not commenced yet.
Canceled
CanceledProvisioning request for the private link service connection resource has been canceled
Updating
UpdatingThe private link service connection is in the process of being created along with other resources for it to be fully functional.
Deleting
DeletingThe private link service connection is in the process of being deleted.
Failed
FailedThe private link service connection has failed to be provisioned or deleted.
Succeeded
SucceededThe private link service connection has finished provisioning and is ready for approval.
Incomplete
IncompleteProvisioning request for the private link service connection resource has been accepted but the process of creation has not commenced yet.
Canceled
CanceledProvisioning request for the private link service connection resource has been canceled
UPDATING
UpdatingThe private link service connection is in the process of being created along with other resources for it to be fully functional.
DELETING
DeletingThe private link service connection is in the process of being deleted.
FAILED
FailedThe private link service connection has failed to be provisioned or deleted.
SUCCEEDED
SucceededThe private link service connection has finished provisioning and is ready for approval.
INCOMPLETE
IncompleteProvisioning request for the private link service connection resource has been accepted but the process of creation has not commenced yet.
CANCELED
CanceledProvisioning request for the private link service connection resource has been canceled
"Updating"
UpdatingThe private link service connection is in the process of being created along with other resources for it to be fully functional.
"Deleting"
DeletingThe private link service connection is in the process of being deleted.
"Failed"
FailedThe private link service connection has failed to be provisioned or deleted.
"Succeeded"
SucceededThe private link service connection has finished provisioning and is ready for approval.
"Incomplete"
IncompleteProvisioning request for the private link service connection resource has been accepted but the process of creation has not commenced yet.
"Canceled"
CanceledProvisioning request for the private link service connection resource has been canceled

PrivateLinkServiceConnectionStatus
, PrivateLinkServiceConnectionStatusArgs

Pending
PendingThe private endpoint connection has been created and is pending approval.
Approved
ApprovedThe private endpoint connection is approved and is ready for use.
Rejected
RejectedThe private endpoint connection has been rejected and cannot be used.
Disconnected
DisconnectedThe private endpoint connection has been removed from the service.
PrivateLinkServiceConnectionStatusPending
PendingThe private endpoint connection has been created and is pending approval.
PrivateLinkServiceConnectionStatusApproved
ApprovedThe private endpoint connection is approved and is ready for use.
PrivateLinkServiceConnectionStatusRejected
RejectedThe private endpoint connection has been rejected and cannot be used.
PrivateLinkServiceConnectionStatusDisconnected
DisconnectedThe private endpoint connection has been removed from the service.
Pending
PendingThe private endpoint connection has been created and is pending approval.
Approved
ApprovedThe private endpoint connection is approved and is ready for use.
Rejected
RejectedThe private endpoint connection has been rejected and cannot be used.
Disconnected
DisconnectedThe private endpoint connection has been removed from the service.
Pending
PendingThe private endpoint connection has been created and is pending approval.
Approved
ApprovedThe private endpoint connection is approved and is ready for use.
Rejected
RejectedThe private endpoint connection has been rejected and cannot be used.
Disconnected
DisconnectedThe private endpoint connection has been removed from the service.
PENDING
PendingThe private endpoint connection has been created and is pending approval.
APPROVED
ApprovedThe private endpoint connection is approved and is ready for use.
REJECTED
RejectedThe private endpoint connection has been rejected and cannot be used.
DISCONNECTED
DisconnectedThe private endpoint connection has been removed from the service.
"Pending"
PendingThe private endpoint connection has been created and is pending approval.
"Approved"
ApprovedThe private endpoint connection is approved and is ready for use.
"Rejected"
RejectedThe private endpoint connection has been rejected and cannot be used.
"Disconnected"
DisconnectedThe private endpoint connection has been removed from the service.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:search:PrivateEndpointConnection testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/privateEndpointConnections/{privateEndpointConnectionName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0