1. Packages
  2. Azure Native
  3. API Docs
  4. search
  5. PrivateEndpointConnection
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

azure-native.search.PrivateEndpointConnection

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

    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: 2019-10-01-preview, 2023-11-01, 2024-03-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",
        });
    
    });
    
    package main
    
    import (
    	"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
    	})
    }
    
    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());
    
        }
    }
    
    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=azure_native.search.PrivateEndpointConnectionPropertiesArgs(
            private_link_service_connection_state=azure_native.search.PrivateEndpointConnectionPropertiesPrivateLinkServiceConnectionStateArgs(
                description="Rejected for some reason",
                status=azure_native.search.PrivateLinkServiceConnectionStatus.REJECTED,
            ),
        ),
        resource_group_name="rg1",
        search_service_name="mysearchservice")
    
    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",
    });
    
    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
    

    Create PrivateEndpointConnection Resource

    new PrivateEndpointConnection(name: string, args: PrivateEndpointConnectionArgs, opts?: CustomResourceOptions);
    @overload
    def PrivateEndpointConnection(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  private_endpoint_connection_name: Optional[str] = None,
                                  properties: Optional[PrivateEndpointConnectionPropertiesArgs] = None,
                                  resource_group_name: Optional[str] = None,
                                  search_service_name: Optional[str] = None)
    @overload
    def PrivateEndpointConnection(resource_name: str,
                                  args: PrivateEndpointConnectionArgs,
                                  opts: Optional[ResourceOptions] = 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.
    
    
    name string
    The unique name of the resource.
    args PrivateEndpointConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args PrivateEndpointConnectionArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args PrivateEndpointConnectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PrivateEndpointConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PrivateEndpointConnectionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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:

    ResourceGroupName 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 string
    The name of the Azure Cognitive Search service associated with the specified resource group.
    PrivateEndpointConnectionName 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 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 string
    The name of the Azure Cognitive Search service associated with the specified resource group.
    PrivateEndpointConnectionName 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 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 String
    The name of the Azure Cognitive Search service associated with the specified resource group.
    privateEndpointConnectionName 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 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 string
    The name of the Azure Cognitive Search service associated with the specified resource group.
    privateEndpointConnectionName 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 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 str
    The name of the Azure Cognitive Search service associated with the specified resource group.
    private_endpoint_connection_name 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 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 String
    The name of the Azure Cognitive Search service associated with the specified resource group.
    privateEndpointConnectionName 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} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi