UNPKG

@azure/arm-monitor

Version:
81 lines 5.39 kB
import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PrivateLinkScopedResources } from "../operationsInterfaces"; import { MonitorClient } from "../monitorClient"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { ScopedResource, PrivateLinkScopedResourcesListByPrivateLinkScopeOptionalParams, PrivateLinkScopedResourcesGetOptionalParams, PrivateLinkScopedResourcesGetResponse, PrivateLinkScopedResourcesCreateOrUpdateOptionalParams, PrivateLinkScopedResourcesCreateOrUpdateResponse, PrivateLinkScopedResourcesDeleteOptionalParams } from "../models"; /** Class containing PrivateLinkScopedResources operations. */ export declare class PrivateLinkScopedResourcesImpl implements PrivateLinkScopedResources { private readonly client; /** * Initialize a new instance of the class PrivateLinkScopedResources class. * @param client Reference to the service client */ constructor(client: MonitorClient); /** * Gets all private endpoint connections on a private link scope. * @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?: PrivateLinkScopedResourcesListByPrivateLinkScopeOptionalParams): PagedAsyncIterableIterator<ScopedResource>; private listByPrivateLinkScopePagingPage; private listByPrivateLinkScopePagingAll; /** * Gets a scoped resource in a private link scope. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param scopeName The name of the Azure Monitor PrivateLinkScope resource. * @param name The name of the scoped resource object. * @param options The options parameters. */ get(resourceGroupName: string, scopeName: string, name: string, options?: PrivateLinkScopedResourcesGetOptionalParams): Promise<PrivateLinkScopedResourcesGetResponse>; /** * Approve or reject a private endpoint connection with a given name. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param scopeName The name of the Azure Monitor PrivateLinkScope resource. * @param name The name of the scoped resource object. * @param parameters A private link scoped resource * @param options The options parameters. */ beginCreateOrUpdate(resourceGroupName: string, scopeName: string, name: string, parameters: ScopedResource, options?: PrivateLinkScopedResourcesCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<PrivateLinkScopedResourcesCreateOrUpdateResponse>, PrivateLinkScopedResourcesCreateOrUpdateResponse>>; /** * Approve or reject a private endpoint connection with a given name. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param scopeName The name of the Azure Monitor PrivateLinkScope resource. * @param name The name of the scoped resource object. * @param parameters A private link scoped resource * @param options The options parameters. */ beginCreateOrUpdateAndWait(resourceGroupName: string, scopeName: string, name: string, parameters: ScopedResource, options?: PrivateLinkScopedResourcesCreateOrUpdateOptionalParams): Promise<PrivateLinkScopedResourcesCreateOrUpdateResponse>; /** * Deletes a private endpoint connection with a given name. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param scopeName The name of the Azure Monitor PrivateLinkScope resource. * @param name The name of the scoped resource object. * @param options The options parameters. */ beginDelete(resourceGroupName: string, scopeName: string, name: string, options?: PrivateLinkScopedResourcesDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>; /** * Deletes a private endpoint connection with a given name. * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param scopeName The name of the Azure Monitor PrivateLinkScope resource. * @param name The name of the scoped resource object. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, scopeName: string, name: string, options?: PrivateLinkScopedResourcesDeleteOptionalParams): Promise<void>; /** * Gets all private endpoint connections on a private link scope. * @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. */ private _listByPrivateLinkScope; /** * ListByPrivateLinkScopeNext * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param scopeName The name of the Azure Monitor PrivateLinkScope resource. * @param nextLink The nextLink from the previous successful call to the ListByPrivateLinkScope method. * @param options The options parameters. */ private _listByPrivateLinkScopeNext; } //# sourceMappingURL=privateLinkScopedResources.d.ts.map