Represents a Value.
Package
@google-cloud/loggingConstructors
(constructor)(properties)
constructor
(
properties
?:
google
.
protobuf
.
IValue
);
Constructs a new Value.
Properties
boolValue
public
boolValue
?:
(
boolean
|
null
);
Value boolValue.
kind
public
kind
?:
(
"nullValue"
|
"numberValue"
|
"stringValue"
|
"boolValue"
|
"structValue"
|
"listValue"
);
Value kind.
listValue
public
listValue
?:
(
google
.
protobuf
.
IListValue
|
null
);
Value listValue.
nullValue
public
nullValue
?:
(
google
.
protobuf
.
NullValue
|
keyof
typeof
google
.
protobuf
.
NullValue
|
null
);
Value nullValue.
numberValue
public
numberValue
?:
(
number
|
null
);
Value numberValue.
stringValue
public
stringValue
?:
(
string
|
null
);
Value stringValue.
structValue
public
structValue
?:
(
google
.
protobuf
.
IStruct
|
null
);
Value structValue.
Methods
create(properties)
public
static
create
(
properties
?:
google
.
protobuf
.
IValue
)
:
google
.
protobuf
.
Value
;
Creates a new Value instance using the specified properties.
decode(reader, length)
public
static
decode
(
reader
:
(
$protobuf
.
Reader
|
Uint8Array
),
length
?:
number
)
:
google
.
protobuf
.
Value
;
Decodes a Value message from the specified reader or buffer.
reader
( Reader
| Uint8Array
)
Reader or buffer to decode from
length
number
Message length if known beforehand
decodeDelimited(reader)
public
static
decodeDelimited
(
reader
:
(
$protobuf
.
Reader
|
Uint8Array
))
:
google
.
protobuf
.
Value
;
Decodes a Value message from the specified reader or buffer, length delimited.
reader
( Reader
| Uint8Array
)
Reader or buffer to decode from
encode(message, writer)
public
static
encode
(
message
:
google
.
protobuf
.
IValue
,
writer
?:
$protobuf
.
Writer
)
:
$protobuf
.
Writer
;
Encodes the specified Value message. Does not implicitly messages.
message
writer
$protobuf.Writer
Writer to encode to
$protobuf.Writer
Writer
encodeDelimited(message, writer)
public
static
encodeDelimited
(
message
:
google
.
protobuf
.
IValue
,
writer
?:
$protobuf
.
Writer
)
:
$protobuf
.
Writer
;
Encodes the specified Value message, length delimited. Does not implicitly messages.
message
writer
$protobuf.Writer
Writer to encode to
$protobuf.Writer
Writer
fromObject(object)
public
static
fromObject
(
object
:
{
[
k
:
string
]
:
any
})
:
google
.
protobuf
.
Value
;
Creates a Value message from a plain object. Also converts values to their respective internal types.
object
{ [k: string]: any }
Plain object
getTypeUrl(typeUrlPrefix)
public
static
getTypeUrl
(
typeUrlPrefix
?:
string
)
:
string
;
Gets the default type url for Value
typeUrlPrefix
string
your custom typeUrlPrefix(default "type.googleapis.com")
string
The default type url
toJSON()
public
toJSON
()
:
{
[
k
:
string
]
:
any
};
Converts this Value to JSON.
{ [k: string]: any }
JSON object
toObject(message, options)
public
static
toObject
(
message
:
google
.
protobuf
.
Value
,
options
?:
$protobuf
.
IConversionOptions
)
:
{
[
k
:
string
]
:
any
};
Creates a plain object from a Value message. Also converts values to other types if specified.
message
options
$protobuf.IConversionOptions
Conversion options
{ [k: string]: any }
Plain object
verify(message)
public
static
verify
(
message
:
{
[
k
:
string
]
:
any
})
:
(
string
|
null
);
Verifies a Value message.
message
{ [k: string]: any }
Plain object to verify
(string|null)
null
if valid, otherwise the reason why it is not