import { PrivateLinkResources } from "../operationsInterfaces"; import { AzureMediaServices } from "../azureMediaServices"; import { PrivateLinkResourcesListOptionalParams, PrivateLinkResourcesListResponse, PrivateLinkResourcesGetOptionalParams, PrivateLinkResourcesGetResponse } from "../models"; /** Class containing PrivateLinkResources operations. */ export declare class PrivateLinkResourcesImpl implements PrivateLinkResources { private readonly client; /** * Initialize a new instance of the class PrivateLinkResources class. * @param client Reference to the service client */ constructor(client: AzureMediaServices); /** * List supported group IDs. * @param resourceGroupName The name of the resource group within the Azure subscription. * @param accountName The Media Services account name. * @param options The options parameters. */ list(resourceGroupName: string, accountName: string, options?: PrivateLinkResourcesListOptionalParams): Promise; /** * Get details of a group ID. * @param resourceGroupName The name of the resource group within the Azure subscription. * @param accountName The Media Services account name. * @param name * @param options The options parameters. */ get(resourceGroupName: string, accountName: string, name: string, options?: PrivateLinkResourcesGetOptionalParams): Promise; } //# sourceMappingURL=privateLinkResources.d.ts.map