Skip to content
Docs Try Aspire

IAzurePrivateEndpointTarget Methods

Interface Methods 2 members
Represents an Azure resource that can be connected to via a private endpoint.
GetPrivateDnsZoneName Section titled GetPrivateDnsZoneName abstract string
Gets the private DNS zone name for this resource type (e.g., "privatelink.blob.core.windows.net" for blob storage).
public interface IAzurePrivateEndpointTarget
{
public abstract string GetPrivateDnsZoneName()
{
// ...
}
}
string The private DNS zone name for the private endpoint.
GetPrivateLinkGroupIds Section titled GetPrivateLinkGroupIds abstract IEnumerable<string>
Gets the group IDs for the private link service connection (e.g., "blob", "file" for storage).
public interface IAzurePrivateEndpointTarget
{
public abstract IEnumerable<string> GetPrivateLinkGroupIds()
{
// ...
}
}
IEnumerable<string> A collection of group IDs for the private link service connection.