/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { subnetsGetApiV3Subnets } from "../funcs/subnetsGetApiV3Subnets.js"; import { subnetsGetApiV3SubnetsSubnetId } from "../funcs/subnetsGetApiV3SubnetsSubnetId.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as models from "../models/index.js"; import * as operations from "../models/operations/index.js"; import { unwrapAsync } from "../types/fp.js"; export class Subnets extends ClientSDK { async getApiV3Subnets( request?: operations.GetApiV3SubnetsRequest | undefined, options?: RequestOptions, ): Promise { return unwrapAsync(subnetsGetApiV3Subnets( this, request, options, )); } async getApiV3SubnetsSubnetId( request: operations.GetApiV3SubnetsSubnetIdRequest, options?: RequestOptions, ): Promise { return unwrapAsync(subnetsGetApiV3SubnetsSubnetId( this, request, options, )); } }