Skip to main content

GetCellOutputs

Returns outputs of the specified cell.

import { cloudApi, serviceClients, Session } from "@yandex-cloud/nodejs-sdk";

const CellOutputsRequest =
cloudApi.datasphere.project_service.CellOutputsRequest;

(async () => {
const authToken = process.env["YC_OAUTH_TOKEN"];
const session = new Session({ oauthToken: authToken });
const client = session.client(serviceClients.ProjectServiceClient);

const result = await client.getCellOutputs(
CellOutputsRequest.fromPartial({
projectId: "projectId",
cellId: "cellId",
// checkpointId: "checkpointId",
// startAt: {
// seconds: 0,
// nanos: 0
// }
})
);
console.log(result);
})();

CellOutputsRequest

projectId : string

ID of the project to return cell outputs for.

cellId : string

ID of the cell to return outputs for.

checkpointId : string

ID of the checkpoint to return cell outputs for.

startAt : google.protobuf.Timestamp

Timestamp from which to return outputs.

CellOutputsResponse

outputs : string

List of outputs.