Skip to content
Docs Try Aspire
Docs Try

IAzurePrivateEndpointTarget Methods

Interface Methods 2 members
Represents an Azure resource that can be connected to via a private endpoint.
GetPrivateDnsZoneNames Section titled GetPrivateDnsZoneNames abstract IEnumerable<string>
Gets the private DNS zone names for this resource type (e.g., "privatelink.blob.core.windows.net" for blob storage).
public interface IAzurePrivateEndpointTarget
{
public abstract IEnumerable<string> GetPrivateDnsZoneNames()
{
// ...
}
}
IEnumerable<string> A collection of private DNS zone names 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.