azure-native.search.SharedPrivateLinkResource
Explore with Pulumi AI
Describes a shared private link resource managed by the Azure AI Search service.
Uses Azure REST API version 2025-05-01. In version 2.x of the Azure Native provider, it used API version 2022-09-01.
Other available API versions: 2022-09-01, 2023-11-01, 2024-03-01-preview, 2024-06-01-preview, 2025-02-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native search [ApiVersion]
. See the version guide for details.
Example Usage
SharedPrivateLinkResourceCreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var sharedPrivateLinkResource = new AzureNative.Search.SharedPrivateLinkResource("sharedPrivateLinkResource", new()
{
Properties = new AzureNative.Search.Inputs.SharedPrivateLinkResourcePropertiesArgs
{
GroupId = "blob",
PrivateLinkResourceId = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Storage/storageAccounts/storageAccountName",
RequestMessage = "please approve",
},
ResourceGroupName = "rg1",
SearchServiceName = "mysearchservice",
SharedPrivateLinkResourceName = "testResource",
});
});
package main
import (
search "github.com/pulumi/pulumi-azure-native-sdk/search/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := search.NewSharedPrivateLinkResource(ctx, "sharedPrivateLinkResource", &search.SharedPrivateLinkResourceArgs{
Properties: &search.SharedPrivateLinkResourcePropertiesArgs{
GroupId: pulumi.String("blob"),
PrivateLinkResourceId: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Storage/storageAccounts/storageAccountName"),
RequestMessage: pulumi.String("please approve"),
},
ResourceGroupName: pulumi.String("rg1"),
SearchServiceName: pulumi.String("mysearchservice"),
SharedPrivateLinkResourceName: pulumi.String("testResource"),
})
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.SharedPrivateLinkResource;
import com.pulumi.azurenative.search.SharedPrivateLinkResourceArgs;
import com.pulumi.azurenative.search.inputs.SharedPrivateLinkResourcePropertiesArgs;
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 sharedPrivateLinkResource = new SharedPrivateLinkResource("sharedPrivateLinkResource", SharedPrivateLinkResourceArgs.builder()
.properties(SharedPrivateLinkResourcePropertiesArgs.builder()
.groupId("blob")
.privateLinkResourceId("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Storage/storageAccounts/storageAccountName")
.requestMessage("please approve")
.build())
.resourceGroupName("rg1")
.searchServiceName("mysearchservice")
.sharedPrivateLinkResourceName("testResource")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const sharedPrivateLinkResource = new azure_native.search.SharedPrivateLinkResource("sharedPrivateLinkResource", {
properties: {
groupId: "blob",
privateLinkResourceId: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Storage/storageAccounts/storageAccountName",
requestMessage: "please approve",
},
resourceGroupName: "rg1",
searchServiceName: "mysearchservice",
sharedPrivateLinkResourceName: "testResource",
});
import pulumi
import pulumi_azure_native as azure_native
shared_private_link_resource = azure_native.search.SharedPrivateLinkResource("sharedPrivateLinkResource",
properties={
"group_id": "blob",
"private_link_resource_id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Storage/storageAccounts/storageAccountName",
"request_message": "please approve",
},
resource_group_name="rg1",
search_service_name="mysearchservice",
shared_private_link_resource_name="testResource")
resources:
sharedPrivateLinkResource:
type: azure-native:search:SharedPrivateLinkResource
properties:
properties:
groupId: blob
privateLinkResourceId: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Storage/storageAccounts/storageAccountName
requestMessage: please approve
resourceGroupName: rg1
searchServiceName: mysearchservice
sharedPrivateLinkResourceName: testResource
Create SharedPrivateLinkResource Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SharedPrivateLinkResource(name: string, args: SharedPrivateLinkResourceArgs, opts?: CustomResourceOptions);
@overload
def SharedPrivateLinkResource(resource_name: str,
args: SharedPrivateLinkResourceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SharedPrivateLinkResource(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
search_service_name: Optional[str] = None,
properties: Optional[SharedPrivateLinkResourcePropertiesArgs] = None,
shared_private_link_resource_name: Optional[str] = None)
func NewSharedPrivateLinkResource(ctx *Context, name string, args SharedPrivateLinkResourceArgs, opts ...ResourceOption) (*SharedPrivateLinkResource, error)
public SharedPrivateLinkResource(string name, SharedPrivateLinkResourceArgs args, CustomResourceOptions? opts = null)
public SharedPrivateLinkResource(String name, SharedPrivateLinkResourceArgs args)
public SharedPrivateLinkResource(String name, SharedPrivateLinkResourceArgs args, CustomResourceOptions options)
type: azure-native:search:SharedPrivateLinkResource
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 SharedPrivateLinkResourceArgs
- 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 SharedPrivateLinkResourceArgs
- 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 SharedPrivateLinkResourceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SharedPrivateLinkResourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SharedPrivateLinkResourceArgs
- 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 azure_nativeSharedPrivateLinkResourceResource = new AzureNative.Search.SharedPrivateLinkResource("azure-nativeSharedPrivateLinkResourceResource", new()
{
ResourceGroupName = "string",
SearchServiceName = "string",
Properties = new AzureNative.Search.Inputs.SharedPrivateLinkResourcePropertiesArgs
{
GroupId = "string",
PrivateLinkResourceId = "string",
ProvisioningState = "string",
RequestMessage = "string",
ResourceRegion = "string",
Status = "string",
},
SharedPrivateLinkResourceName = "string",
});
example, err := search.NewSharedPrivateLinkResource(ctx, "azure-nativeSharedPrivateLinkResourceResource", &search.SharedPrivateLinkResourceArgs{
ResourceGroupName: pulumi.String("string"),
SearchServiceName: pulumi.String("string"),
Properties: &search.SharedPrivateLinkResourcePropertiesArgs{
GroupId: pulumi.String("string"),
PrivateLinkResourceId: pulumi.String("string"),
ProvisioningState: pulumi.String("string"),
RequestMessage: pulumi.String("string"),
ResourceRegion: pulumi.String("string"),
Status: pulumi.String("string"),
},
SharedPrivateLinkResourceName: pulumi.String("string"),
})
var azure_nativeSharedPrivateLinkResourceResource = new com.pulumi.azurenative.search.SharedPrivateLinkResource("azure-nativeSharedPrivateLinkResourceResource", com.pulumi.azurenative.search.SharedPrivateLinkResourceArgs.builder()
.resourceGroupName("string")
.searchServiceName("string")
.properties(SharedPrivateLinkResourcePropertiesArgs.builder()
.groupId("string")
.privateLinkResourceId("string")
.provisioningState("string")
.requestMessage("string")
.resourceRegion("string")
.status("string")
.build())
.sharedPrivateLinkResourceName("string")
.build());
azure_native_shared_private_link_resource_resource = azure_native.search.SharedPrivateLinkResource("azure-nativeSharedPrivateLinkResourceResource",
resource_group_name="string",
search_service_name="string",
properties={
"group_id": "string",
"private_link_resource_id": "string",
"provisioning_state": "string",
"request_message": "string",
"resource_region": "string",
"status": "string",
},
shared_private_link_resource_name="string")
const azure_nativeSharedPrivateLinkResourceResource = new azure_native.search.SharedPrivateLinkResource("azure-nativeSharedPrivateLinkResourceResource", {
resourceGroupName: "string",
searchServiceName: "string",
properties: {
groupId: "string",
privateLinkResourceId: "string",
provisioningState: "string",
requestMessage: "string",
resourceRegion: "string",
status: "string",
},
sharedPrivateLinkResourceName: "string",
});
type: azure-native:search:SharedPrivateLinkResource
properties:
properties:
groupId: string
privateLinkResourceId: string
provisioningState: string
requestMessage: string
resourceRegion: string
status: string
resourceGroupName: string
searchServiceName: string
sharedPrivateLinkResourceName: string
SharedPrivateLinkResource 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 SharedPrivateLinkResource resource accepts the following input properties:
- Resource
Group stringName - 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 stringName - The name of the Azure AI Search service associated with the specified resource group.
- Properties
Pulumi.
Azure Native. Search. Inputs. Shared Private Link Resource Properties - Describes the properties of a shared private link resource managed by the Azure AI Search service.
- string
- The name of the shared private link resource managed by the Azure AI Search service within the specified resource group.
- Resource
Group stringName - 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 stringName - The name of the Azure AI Search service associated with the specified resource group.
- Properties
Shared
Private Link Resource Properties Args - Describes the properties of a shared private link resource managed by the Azure AI Search service.
- string
- The name of the shared private link resource managed by the Azure AI Search service within the specified resource group.
- resource
Group StringName - 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 StringName - The name of the Azure AI Search service associated with the specified resource group.
- properties
Shared
Private Link Resource Properties - Describes the properties of a shared private link resource managed by the Azure AI Search service.
- String
- The name of the shared private link resource managed by the Azure AI Search service within the specified resource group.
- resource
Group stringName - 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 stringName - The name of the Azure AI Search service associated with the specified resource group.
- properties
Shared
Private Link Resource Properties - Describes the properties of a shared private link resource managed by the Azure AI Search service.
- string
- The name of the shared private link resource managed by the Azure AI Search service within the specified resource group.
- resource_
group_ strname - 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_ strname - The name of the Azure AI Search service associated with the specified resource group.
- properties
Shared
Private Link Resource Properties Args - Describes the properties of a shared private link resource managed by the Azure AI Search service.
- str
- The name of the shared private link resource managed by the Azure AI Search service within the specified resource group.
- resource
Group StringName - 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 StringName - The name of the Azure AI Search service associated with the specified resource group.
- properties Property Map
- Describes the properties of a shared private link resource managed by the Azure AI Search service.
- String
- The name of the shared private link resource managed by the Azure AI Search service within the specified resource group.
Outputs
All input properties are implicitly available as output properties. Additionally, the SharedPrivateLinkResource resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Search. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
SharedPrivateLinkResourceProperties, SharedPrivateLinkResourcePropertiesArgs
- Group
Id string - The group ID from the provider of resource the shared private link resource is for.
- Private
Link stringResource Id - The resource ID of the resource the shared private link resource is for.
- Provisioning
State string | Pulumi.Azure Native. Search. Shared Private Link Resource Provisioning State - The provisioning state of the shared private link resource. Valid values are Updating, Deleting, Failed, Succeeded or Incomplete.
- Request
Message string - The message for requesting approval of the shared private link resource.
- Resource
Region string - Optional. Can be used to specify the Azure Resource Manager location of the resource for which a shared private link is being created. This is only required for those resources whose DNS configuration are regional (such as Azure Kubernetes Service).
- Status
string | Pulumi.
Azure Native. Search. Shared Private Link Resource Status - Status of the shared private link resource. Valid values are Pending, Approved, Rejected or Disconnected.
- Group
Id string - The group ID from the provider of resource the shared private link resource is for.
- Private
Link stringResource Id - The resource ID of the resource the shared private link resource is for.
- Provisioning
State string | SharedPrivate Link Resource Provisioning State - The provisioning state of the shared private link resource. Valid values are Updating, Deleting, Failed, Succeeded or Incomplete.
- Request
Message string - The message for requesting approval of the shared private link resource.
- Resource
Region string - Optional. Can be used to specify the Azure Resource Manager location of the resource for which a shared private link is being created. This is only required for those resources whose DNS configuration are regional (such as Azure Kubernetes Service).
- Status
string | Shared
Private Link Resource Status - Status of the shared private link resource. Valid values are Pending, Approved, Rejected or Disconnected.
- group
Id String - The group ID from the provider of resource the shared private link resource is for.
- private
Link StringResource Id - The resource ID of the resource the shared private link resource is for.
- provisioning
State String | SharedPrivate Link Resource Provisioning State - The provisioning state of the shared private link resource. Valid values are Updating, Deleting, Failed, Succeeded or Incomplete.
- request
Message String - The message for requesting approval of the shared private link resource.
- resource
Region String - Optional. Can be used to specify the Azure Resource Manager location of the resource for which a shared private link is being created. This is only required for those resources whose DNS configuration are regional (such as Azure Kubernetes Service).
- status
String | Shared
Private Link Resource Status - Status of the shared private link resource. Valid values are Pending, Approved, Rejected or Disconnected.
- group
Id string - The group ID from the provider of resource the shared private link resource is for.
- private
Link stringResource Id - The resource ID of the resource the shared private link resource is for.
- provisioning
State string | SharedPrivate Link Resource Provisioning State - The provisioning state of the shared private link resource. Valid values are Updating, Deleting, Failed, Succeeded or Incomplete.
- request
Message string - The message for requesting approval of the shared private link resource.
- resource
Region string - Optional. Can be used to specify the Azure Resource Manager location of the resource for which a shared private link is being created. This is only required for those resources whose DNS configuration are regional (such as Azure Kubernetes Service).
- status
string | Shared
Private Link Resource Status - Status of the shared private link resource. Valid values are Pending, Approved, Rejected or Disconnected.
- group_
id str - The group ID from the provider of resource the shared private link resource is for.
- private_
link_ strresource_ id - The resource ID of the resource the shared private link resource is for.
- provisioning_
state str | SharedPrivate Link Resource Provisioning State - The provisioning state of the shared private link resource. Valid values are Updating, Deleting, Failed, Succeeded or Incomplete.
- request_
message str - The message for requesting approval of the shared private link resource.
- resource_
region str - Optional. Can be used to specify the Azure Resource Manager location of the resource for which a shared private link is being created. This is only required for those resources whose DNS configuration are regional (such as Azure Kubernetes Service).
- status
str | Shared
Private Link Resource Status - Status of the shared private link resource. Valid values are Pending, Approved, Rejected or Disconnected.
- group
Id String - The group ID from the provider of resource the shared private link resource is for.
- private
Link StringResource Id - The resource ID of the resource the shared private link resource is for.
- provisioning
State String | "Updating" | "Deleting" | "Failed" | "Succeeded" | "Incomplete" - The provisioning state of the shared private link resource. Valid values are Updating, Deleting, Failed, Succeeded or Incomplete.
- request
Message String - The message for requesting approval of the shared private link resource.
- resource
Region String - Optional. Can be used to specify the Azure Resource Manager location of the resource for which a shared private link is being created. This is only required for those resources whose DNS configuration are regional (such as Azure Kubernetes Service).
- status String | "Pending" | "Approved" | "Rejected" | "Disconnected"
- Status of the shared private link resource. Valid values are Pending, Approved, Rejected or Disconnected.
SharedPrivateLinkResourcePropertiesResponse, SharedPrivateLinkResourcePropertiesResponseArgs
- Group
Id string - The group ID from the provider of resource the shared private link resource is for.
- Private
Link stringResource Id - The resource ID of the resource the shared private link resource is for.
- Provisioning
State string - The provisioning state of the shared private link resource. Valid values are Updating, Deleting, Failed, Succeeded or Incomplete.
- Request
Message string - The message for requesting approval of the shared private link resource.
- Resource
Region string - Optional. Can be used to specify the Azure Resource Manager location of the resource for which a shared private link is being created. This is only required for those resources whose DNS configuration are regional (such as Azure Kubernetes Service).
- Status string
- Status of the shared private link resource. Valid values are Pending, Approved, Rejected or Disconnected.
- Group
Id string - The group ID from the provider of resource the shared private link resource is for.
- Private
Link stringResource Id - The resource ID of the resource the shared private link resource is for.
- Provisioning
State string - The provisioning state of the shared private link resource. Valid values are Updating, Deleting, Failed, Succeeded or Incomplete.
- Request
Message string - The message for requesting approval of the shared private link resource.
- Resource
Region string - Optional. Can be used to specify the Azure Resource Manager location of the resource for which a shared private link is being created. This is only required for those resources whose DNS configuration are regional (such as Azure Kubernetes Service).
- Status string
- Status of the shared private link resource. Valid values are Pending, Approved, Rejected or Disconnected.
- group
Id String - The group ID from the provider of resource the shared private link resource is for.
- private
Link StringResource Id - The resource ID of the resource the shared private link resource is for.
- provisioning
State String - The provisioning state of the shared private link resource. Valid values are Updating, Deleting, Failed, Succeeded or Incomplete.
- request
Message String - The message for requesting approval of the shared private link resource.
- resource
Region String - Optional. Can be used to specify the Azure Resource Manager location of the resource for which a shared private link is being created. This is only required for those resources whose DNS configuration are regional (such as Azure Kubernetes Service).
- status String
- Status of the shared private link resource. Valid values are Pending, Approved, Rejected or Disconnected.
- group
Id string - The group ID from the provider of resource the shared private link resource is for.
- private
Link stringResource Id - The resource ID of the resource the shared private link resource is for.
- provisioning
State string - The provisioning state of the shared private link resource. Valid values are Updating, Deleting, Failed, Succeeded or Incomplete.
- request
Message string - The message for requesting approval of the shared private link resource.
- resource
Region string - Optional. Can be used to specify the Azure Resource Manager location of the resource for which a shared private link is being created. This is only required for those resources whose DNS configuration are regional (such as Azure Kubernetes Service).
- status string
- Status of the shared private link resource. Valid values are Pending, Approved, Rejected or Disconnected.
- group_
id str - The group ID from the provider of resource the shared private link resource is for.
- private_
link_ strresource_ id - The resource ID of the resource the shared private link resource is for.
- provisioning_
state str - The provisioning state of the shared private link resource. Valid values are Updating, Deleting, Failed, Succeeded or Incomplete.
- request_
message str - The message for requesting approval of the shared private link resource.
- resource_
region str - Optional. Can be used to specify the Azure Resource Manager location of the resource for which a shared private link is being created. This is only required for those resources whose DNS configuration are regional (such as Azure Kubernetes Service).
- status str
- Status of the shared private link resource. Valid values are Pending, Approved, Rejected or Disconnected.
- group
Id String - The group ID from the provider of resource the shared private link resource is for.
- private
Link StringResource Id - The resource ID of the resource the shared private link resource is for.
- provisioning
State String - The provisioning state of the shared private link resource. Valid values are Updating, Deleting, Failed, Succeeded or Incomplete.
- request
Message String - The message for requesting approval of the shared private link resource.
- resource
Region String - Optional. Can be used to specify the Azure Resource Manager location of the resource for which a shared private link is being created. This is only required for those resources whose DNS configuration are regional (such as Azure Kubernetes Service).
- status String
- Status of the shared private link resource. Valid values are Pending, Approved, Rejected or Disconnected.
SharedPrivateLinkResourceProvisioningState, SharedPrivateLinkResourceProvisioningStateArgs
- Updating
- UpdatingThe shared private link resource is in the process of being created along with other resources for it to be fully functional.
- Deleting
- DeletingThe shared private link resource is in the process of being deleted.
- Failed
- FailedThe shared private link resource has failed to be provisioned or deleted.
- Succeeded
- SucceededThe shared private link resource has finished provisioning and is ready for approval.
- Incomplete
- IncompleteProvisioning request for the shared private link resource has been accepted but the process of creation has not commenced yet.
- Shared
Private Link Resource Provisioning State Updating - UpdatingThe shared private link resource is in the process of being created along with other resources for it to be fully functional.
- Shared
Private Link Resource Provisioning State Deleting - DeletingThe shared private link resource is in the process of being deleted.
- Shared
Private Link Resource Provisioning State Failed - FailedThe shared private link resource has failed to be provisioned or deleted.
- Shared
Private Link Resource Provisioning State Succeeded - SucceededThe shared private link resource has finished provisioning and is ready for approval.
- Shared
Private Link Resource Provisioning State Incomplete - IncompleteProvisioning request for the shared private link resource has been accepted but the process of creation has not commenced yet.
- Updating
- UpdatingThe shared private link resource is in the process of being created along with other resources for it to be fully functional.
- Deleting
- DeletingThe shared private link resource is in the process of being deleted.
- Failed
- FailedThe shared private link resource has failed to be provisioned or deleted.
- Succeeded
- SucceededThe shared private link resource has finished provisioning and is ready for approval.
- Incomplete
- IncompleteProvisioning request for the shared private link resource has been accepted but the process of creation has not commenced yet.
- Updating
- UpdatingThe shared private link resource is in the process of being created along with other resources for it to be fully functional.
- Deleting
- DeletingThe shared private link resource is in the process of being deleted.
- Failed
- FailedThe shared private link resource has failed to be provisioned or deleted.
- Succeeded
- SucceededThe shared private link resource has finished provisioning and is ready for approval.
- Incomplete
- IncompleteProvisioning request for the shared private link resource has been accepted but the process of creation has not commenced yet.
- UPDATING
- UpdatingThe shared private link resource is in the process of being created along with other resources for it to be fully functional.
- DELETING
- DeletingThe shared private link resource is in the process of being deleted.
- FAILED
- FailedThe shared private link resource has failed to be provisioned or deleted.
- SUCCEEDED
- SucceededThe shared private link resource has finished provisioning and is ready for approval.
- INCOMPLETE
- IncompleteProvisioning request for the shared private link resource has been accepted but the process of creation has not commenced yet.
- "Updating"
- UpdatingThe shared private link resource is in the process of being created along with other resources for it to be fully functional.
- "Deleting"
- DeletingThe shared private link resource is in the process of being deleted.
- "Failed"
- FailedThe shared private link resource has failed to be provisioned or deleted.
- "Succeeded"
- SucceededThe shared private link resource has finished provisioning and is ready for approval.
- "Incomplete"
- IncompleteProvisioning request for the shared private link resource has been accepted but the process of creation has not commenced yet.
SharedPrivateLinkResourceStatus, SharedPrivateLinkResourceStatusArgs
- Pending
- PendingThe shared private link resource has been created and is pending approval.
- Approved
- ApprovedThe shared private link resource is approved and is ready for use.
- Rejected
- RejectedThe shared private link resource has been rejected and cannot be used.
- Disconnected
- DisconnectedThe shared private link resource has been removed from the service.
- Shared
Private Link Resource Status Pending - PendingThe shared private link resource has been created and is pending approval.
- Shared
Private Link Resource Status Approved - ApprovedThe shared private link resource is approved and is ready for use.
- Shared
Private Link Resource Status Rejected - RejectedThe shared private link resource has been rejected and cannot be used.
- Shared
Private Link Resource Status Disconnected - DisconnectedThe shared private link resource has been removed from the service.
- Pending
- PendingThe shared private link resource has been created and is pending approval.
- Approved
- ApprovedThe shared private link resource is approved and is ready for use.
- Rejected
- RejectedThe shared private link resource has been rejected and cannot be used.
- Disconnected
- DisconnectedThe shared private link resource has been removed from the service.
- Pending
- PendingThe shared private link resource has been created and is pending approval.
- Approved
- ApprovedThe shared private link resource is approved and is ready for use.
- Rejected
- RejectedThe shared private link resource has been rejected and cannot be used.
- Disconnected
- DisconnectedThe shared private link resource has been removed from the service.
- PENDING
- PendingThe shared private link resource has been created and is pending approval.
- APPROVED
- ApprovedThe shared private link resource is approved and is ready for use.
- REJECTED
- RejectedThe shared private link resource has been rejected and cannot be used.
- DISCONNECTED
- DisconnectedThe shared private link resource has been removed from the service.
- "Pending"
- PendingThe shared private link resource has been created and is pending approval.
- "Approved"
- ApprovedThe shared private link resource is approved and is ready for use.
- "Rejected"
- RejectedThe shared private link resource has been rejected and cannot be used.
- "Disconnected"
- DisconnectedThe shared private link resource has been removed from the service.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:search:SharedPrivateLinkResource testResource /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/sharedPrivateLinkResources/{sharedPrivateLinkResourceName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0