src/client/stackdriver/status-message.ts
Properties |
|
constructor(refersTo: stackdriver.Reference, description: string, isError: boolean)
|
|
Defined in src/client/stackdriver/status-message.ts:22
|
|
Status Message to be sent to the server |
| Static Readonly BREAKPOINT_AGE |
Type : stackdriver.Reference
|
Default value : 'BREAKPOINT_AGE'
|
|
Defined in src/client/stackdriver/status-message.ts:49
|
| Static Readonly BREAKPOINT_CONDITION |
Type : stackdriver.Reference
|
Default value : 'BREAKPOINT_CONDITION'
|
|
Defined in src/client/stackdriver/status-message.ts:43
|
| Static Readonly BREAKPOINT_EXPRESSION |
Type : stackdriver.Reference
|
Default value : 'BREAKPOINT_EXPRESSION'
|
|
Defined in src/client/stackdriver/status-message.ts:45
|
| Static Readonly BREAKPOINT_SOURCE_LOCATION |
Type : stackdriver.Reference
|
Default value : 'BREAKPOINT_SOURCE_LOCATION'
|
|
Defined in src/client/stackdriver/status-message.ts:41
|
| description |
Type : stackdriver.FormatMessage
|
|
Defined in src/client/stackdriver/status-message.ts:21
|
| isError |
Type : boolean
|
|
Defined in src/client/stackdriver/status-message.ts:22
|
| refersTo |
Type : stackdriver.Reference
|
|
Defined in src/client/stackdriver/status-message.ts:20
|
| Static Readonly UNSPECIFIED |
Type : stackdriver.Reference
|
Default value : 'UNSPECIFIED'
|
|
Defined in src/client/stackdriver/status-message.ts:40
|
| Static Readonly VARIABLE_NAME |
Type : stackdriver.Reference
|
Default value : 'VARIABLE_NAME'
|
|
Defined in src/client/stackdriver/status-message.ts:47
|
| Static Readonly VARIABLE_VALUE |
Type : stackdriver.Reference
|
Default value : 'VARIABLE_VALUE'
|
|
Defined in src/client/stackdriver/status-message.ts:48
|
import * as stackdriver from '../../types/stackdriver';
export class StatusMessage implements stackdriver.StatusMessage {
refersTo: stackdriver.Reference;
description: stackdriver.FormatMessage;
isError: boolean;
/**
* Status Message to be sent to the server
* @constructor
*/
constructor(
refersTo: stackdriver.Reference,
description: string,
isError: boolean
) {
this.refersTo = refersTo;
this.description = {format: description};
this.isError = isError;
}
// These status messages come from a proto definition.
// New status messages cannot be added here.
static readonly UNSPECIFIED: stackdriver.Reference = 'UNSPECIFIED';
static readonly BREAKPOINT_SOURCE_LOCATION: stackdriver.Reference =
'BREAKPOINT_SOURCE_LOCATION';
static readonly BREAKPOINT_CONDITION: stackdriver.Reference =
'BREAKPOINT_CONDITION';
static readonly BREAKPOINT_EXPRESSION: stackdriver.Reference =
'BREAKPOINT_EXPRESSION';
static readonly VARIABLE_NAME: stackdriver.Reference = 'VARIABLE_NAME';
static readonly VARIABLE_VALUE: stackdriver.Reference = 'VARIABLE_VALUE';
static readonly BREAKPOINT_AGE: stackdriver.Reference = 'BREAKPOINT_AGE';
}