kaltura-node-typescript-client
Version:
Kaltura Node Typescript client
33 lines (32 loc) • 1.1 kB
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaServerNodeStatus } from './KalturaServerNodeStatus';
import { KalturaServerNodeType } from './KalturaServerNodeType';
import { KalturaObjectBase, KalturaObjectBaseArgs } from '../kaltura-object-base';
export interface KalturaServerNodeArgs extends KalturaObjectBaseArgs {
name?: string;
systemName?: string;
description?: string;
hostName?: string;
tags?: string;
parentId?: string;
environment?: string;
}
export declare class KalturaServerNode extends KalturaObjectBase {
readonly id: number;
readonly partnerId: number;
readonly createdAt: Date;
readonly updatedAt: Date;
readonly heartbeatTime: Date;
name: string;
systemName: string;
description: string;
hostName: string;
readonly status: KalturaServerNodeStatus;
readonly type: KalturaServerNodeType;
tags: string;
readonly dc: number;
parentId: string;
environment: string;
constructor(data?: KalturaServerNodeArgs);
protected _getMetadata(): KalturaObjectMetadata;
}