@nebius/js-sdk - v0.2.54
    Preparing search index...

    Interface OneTimeExportServiceBaseClient

    Defines the low-level gRPC client for the nebius.billing.v1alpha1.OneTimeExportService service.

    interface OneTimeExportServiceBaseClient {
        create(
            request: CreateOneTimeExportRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (error: ServiceError | null, response: Operation) => void,
        ): SurfaceCall;
        get(
            request: GetOneTimeExportRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (error: ServiceError | null, response: OneTimeExport) => void,
        ): SurfaceCall;
        list(
            request: ListOneTimeExportsRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (
                error: ServiceError | null,
                response: ListOneTimeExportsResponse,
            ) => void,
        ): SurfaceCall;
    }

    Hierarchy

    • Client
      • OneTimeExportServiceBaseClient
    Index
    • Creates a new one-time export of billing reports for the requested period.

      Parameters

      • request: CreateOneTimeExportRequest
      • metadata: Metadata
      • options: Partial<CallOptions>
      • callback: (error: ServiceError | null, response: Operation) => void
          • (error: ServiceError | null, response: Operation): void
          • Creates a new one-time export of billing reports for the requested period.

            Parameters

            • error: ServiceError | null
            • response: Operation

            Returns void

      Returns SurfaceCall

    • Retrieves details of a specific one-time export. When the export is complete, the response includes a fresh presigned download URL.

      Parameters

      • request: GetOneTimeExportRequest
      • metadata: Metadata
      • options: Partial<CallOptions>
      • callback: (error: ServiceError | null, response: OneTimeExport) => void
          • (error: ServiceError | null, response: OneTimeExport): void
          • Retrieves details of a specific one-time export. When the export is complete, the response includes a fresh presigned download URL.

            Parameters

            Returns void

      Returns SurfaceCall