/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 980896c291c6 */ import { remoteBindingsCreateExternalAccess } from "../funcs/remoteBindingsCreateExternalAccess.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 RemoteBindings extends ClientSDK { /** * Create short-lived Remote Bindings access for a external resource * * @remarks * Selects a connected external resource by Project and external ID, then returns a short-lived deployment-scoped Manager capability. The caller never receives the external cloud credentials from Platform. */ async createExternalAccess( request: operations.CreateRemoteBindingsExternalAccessRequest, options?: RequestOptions, ): Promise { return unwrapAsync(remoteBindingsCreateExternalAccess( this, request, options, )); } }