Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 1.44 KB

File metadata and controls

41 lines (30 loc) · 1.44 KB

API Report File for "@azure/arm-containerservicefleet"

Do not edit this file. It is a report generated by API Extractor.

import type { Client } from '@azure-rest/core-client';
import type { OperationOptions } from '@azure-rest/core-client';
import type { OperationState } from '@azure/core-lro';
import type { PollerLike } from '@azure/core-lro';

// @public
export interface GatesGetOptionalParams extends OperationOptions {
}

// @public
export interface GatesListByFleetOptionalParams extends OperationOptions {
    filter?: string;
    skipToken?: string;
    top?: number;
}

// @public
export interface GatesUpdateOptionalParams extends OperationOptions {
    ifMatch?: string;
    ifNoneMatch?: string;
    updateIntervalInMs?: number;
}

// @public
export function get(context: ContainerServiceFleetContext, resourceGroupName: string, fleetName: string, gateName: string, options?: GatesGetOptionalParams): Promise<Gate>;

// @public
export function listByFleet(context: ContainerServiceFleetContext, resourceGroupName: string, fleetName: string, options?: GatesListByFleetOptionalParams): PagedAsyncIterableIterator<Gate>;

// @public
export function update(context: ContainerServiceFleetContext, resourceGroupName: string, fleetName: string, gateName: string, properties: GatePatch, options?: GatesUpdateOptionalParams): PollerLike<OperationState<Gate>, Gate>;

// (No @packageDocumentation comment for this package)