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

    Interface ScopeServiceBaseClient

    Defines the low-level gRPC client for the nebius.vpc.v1alpha1.ScopeService service.

    interface ScopeServiceBaseClient {
        get(
            request: GetScopeRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (error: ServiceError | null, response: Scope) => void,
        ): SurfaceCall;
        getByName(
            request: GetScopeByNameRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (error: ServiceError | null, response: Scope) => void,
        ): SurfaceCall;
        list(
            request: ListScopesRequest,
            metadata: Metadata,
            options: Partial<CallOptions>,
            callback: (
                error: ServiceError | null,
                response: ListScopesResponse,
            ) => void,
        ): SurfaceCall;
    }

    Hierarchy

    • Client
      • ScopeServiceBaseClient
    Index
    • Calls the Get RPC.

      Parameters

      • request: GetScopeRequest
      • metadata: Metadata
      • options: Partial<CallOptions>
      • callback: (error: ServiceError | null, response: Scope) => void
          • (error: ServiceError | null, response: Scope): void
          • Calls the Get RPC.

            Parameters

            • error: ServiceError | null
            • response: Scope

            Returns void

      Returns SurfaceCall

    • Calls the GetByName RPC.

      Parameters

      • request: GetScopeByNameRequest
      • metadata: Metadata
      • options: Partial<CallOptions>
      • callback: (error: ServiceError | null, response: Scope) => void
          • (error: ServiceError | null, response: Scope): void
          • Calls the GetByName RPC.

            Parameters

            • error: ServiceError | null
            • response: Scope

            Returns void

      Returns SurfaceCall

    • Calls the List RPC.

      Parameters

      Returns SurfaceCall