UNPKG

@azure/arm-monitor

Version:
21 lines 1.49 kB
import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PrivateLinkResource, PrivateLinkResourcesListByPrivateLinkScopeOptionalParams, PrivateLinkResourcesGetOptionalParams, PrivateLinkResourcesGetResponse } from "../models"; /** Interface representing a PrivateLinkResources. */ export interface PrivateLinkResources { /** * Gets the private link resources that need to be created for a Azure Monitor PrivateLinkScope. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param scopeName The name of the Azure Monitor PrivateLinkScope resource. * @param options The options parameters. */ listByPrivateLinkScope(resourceGroupName: string, scopeName: string, options?: PrivateLinkResourcesListByPrivateLinkScopeOptionalParams): PagedAsyncIterableIterator<PrivateLinkResource>; /** * Gets the private link resources that need to be created for a Azure Monitor PrivateLinkScope. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param scopeName The name of the Azure Monitor PrivateLinkScope resource. * @param groupName The name of the private link resource. * @param options The options parameters. */ get(resourceGroupName: string, scopeName: string, groupName: string, options?: PrivateLinkResourcesGetOptionalParams): Promise<PrivateLinkResourcesGetResponse>; } //# sourceMappingURL=privateLinkResources.d.ts.map