UNPKG

@azure/arm-mysql-flexible

Version:
29 lines (26 loc) 991 B
/* * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ import { VirtualNetworkSubnetUsageParameter, CheckVirtualNetworkSubnetUsageExecuteOptionalParams, CheckVirtualNetworkSubnetUsageExecuteResponse } from "../models"; /** Interface representing a CheckVirtualNetworkSubnetUsage. */ export interface CheckVirtualNetworkSubnetUsage { /** * Get virtual network subnet usage for a given vNet resource id. * @param locationName The name of the location. * @param parameters The required parameters for creating or updating a server. * @param options The options parameters. */ execute( locationName: string, parameters: VirtualNetworkSubnetUsageParameter, options?: CheckVirtualNetworkSubnetUsageExecuteOptionalParams ): Promise<CheckVirtualNetworkSubnetUsageExecuteResponse>; }