1. Packages
  2. Azure Native v1
  3. API Docs
  4. search
  5. PrivateEndpointConnection
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.search.PrivateEndpointConnection

Explore with Pulumi AI

azure-native-v1 logo
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

    Describes an existing Private Endpoint connection to the Azure Cognitive Search service. API Version: 2020-08-01.

    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 (
    	search "github.com/pulumi/pulumi-azure-native-sdk/search"
    	"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.PrivateEndpointConnectionPropertiesResponse{
    				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 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(Map.of("privateLinkServiceConnectionState", Map.ofEntries(
                    Map.entry("description", "Rejected for some reason"),
                    Map.entry("status", "Rejected")
                )))
                .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.PrivateEndpointConnectionPropertiesResponseArgs(
            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

    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 string
    The unique name of the resource.
    args PrivateEndpointConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args PrivateEndpointConnectionArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args PrivateEndpointConnectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PrivateEndpointConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PrivateEndpointConnectionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var exampleprivateEndpointConnectionResourceResourceFromSearch = new AzureNative.Search.PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromSearch", new()
    {
        ResourceGroupName = "string",
        SearchServiceName = "string",
        PrivateEndpointConnectionName = "string",
        Properties = 
        {
            { "privateEndpoint", 
            {
                { "id", "string" },
            } },
            { "privateLinkServiceConnectionState", 
            {
                { "actionsRequired", "string" },
                { "description", "string" },
                { "status", "Pending" },
            } },
        },
    });
    
    example, err := search.NewPrivateEndpointConnection(ctx, "exampleprivateEndpointConnectionResourceResourceFromSearch", &search.PrivateEndpointConnectionArgs{
    	ResourceGroupName:             "string",
    	SearchServiceName:             "string",
    	PrivateEndpointConnectionName: "string",
    	Properties: map[string]interface{}{
    		"privateEndpoint": map[string]interface{}{
    			"id": "string",
    		},
    		"privateLinkServiceConnectionState": map[string]interface{}{
    			"actionsRequired": "string",
    			"description":     "string",
    			"status":          "Pending",
    		},
    	},
    })
    
    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());
    
    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={
            privateEndpoint: {
                id: string,
            },
            privateLinkServiceConnectionState: {
                actionsRequired: string,
                description: string,
                status: Pending,
            },
        })
    
    const exampleprivateEndpointConnectionResourceResourceFromSearch = new azure_native.search.PrivateEndpointConnection("exampleprivateEndpointConnectionResourceResourceFromSearch", {
        resourceGroupName: "string",
        searchServiceName: "string",
        privateEndpointConnectionName: "string",
        properties: {
            privateEndpoint: {
                id: "string",
            },
            privateLinkServiceConnectionState: {
                actionsRequired: "string",
                description: "string",
                status: "Pending",
            },
        },
    });
    
    type: azure-native:search:PrivateEndpointConnection
    properties:
        privateEndpointConnectionName: string
        properties:
            privateEndpoint:
                id: string
            privateLinkServiceConnectionState:
                actionsRequired: string
                description: string
                status: Pending
        resourceGroupName: string
        searchServiceName: 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:

    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

    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.
    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.
    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.
    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.
    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.
    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.

    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

    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.
    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.
    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.
    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.
    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.
    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.

    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.

    PrivateLinkServiceConnectionStatus, PrivateLinkServiceConnectionStatusArgs

    Pending
    Pending
    Approved
    Approved
    Rejected
    Rejected
    Disconnected
    Disconnected
    PrivateLinkServiceConnectionStatusPending
    Pending
    PrivateLinkServiceConnectionStatusApproved
    Approved
    PrivateLinkServiceConnectionStatusRejected
    Rejected
    PrivateLinkServiceConnectionStatusDisconnected
    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

    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/subid/resourceGroups/rg1/providers/Microsoft.Search/searchServices/mysearchservice/privateEndpointConnections/testEndpoint.50bf4fbe-d7c1-4b48-a642-4f5892642546 
    

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

    Package Details

    Repository
    azure-native-v1 pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native-v1 logo
    These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
    Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi