LogEntryOperation
class LogEntryOperation extends Message
Additional information about a potentially long-running operation with which a log entry is associated.
Protobuf type Google\Logging\V2\LogEntryOperation
Methods
No description
Optional. An arbitrary operation identifier. Log entries with the same identifier are assumed to be part of the same operation.
Optional. An arbitrary operation identifier. Log entries with the same identifier are assumed to be part of the same operation.
Optional. An arbitrary producer identifier. The combination of
id
and producer
must be globally unique. Examples for producer
:
"MyDivision.MyBigCompany.com"
, "github.com/MyProject/MyApplication"
.
Optional. An arbitrary producer identifier. The combination of
id
and producer
must be globally unique. Examples for producer
:
"MyDivision.MyBigCompany.com"
, "github.com/MyProject/MyApplication"
.
Optional. Set this to True if this is the first log entry in the operation.
Optional. Set this to True if this is the first log entry in the operation.
Optional. Set this to True if this is the last log entry in the operation.
Optional. Set this to True if this is the last log entry in the operation.
Details
at line 47
__construct()
at line 59
string
getId()
Optional. An arbitrary operation identifier. Log entries with the same identifier are assumed to be part of the same operation.
Generated from protobuf field string id = 1;
at line 71
setId(string $var)
Optional. An arbitrary operation identifier. Log entries with the same identifier are assumed to be part of the same operation.
Generated from protobuf field string id = 1;
at line 85
string
getProducer()
Optional. An arbitrary producer identifier. The combination of
id
and producer
must be globally unique. Examples for producer
:
"MyDivision.MyBigCompany.com"
, "github.com/MyProject/MyApplication"
.
Generated from protobuf field string producer = 2;
at line 98
setProducer(string $var)
Optional. An arbitrary producer identifier. The combination of
id
and producer
must be globally unique. Examples for producer
:
"MyDivision.MyBigCompany.com"
, "github.com/MyProject/MyApplication"
.
Generated from protobuf field string producer = 2;
at line 110
bool
getFirst()
Optional. Set this to True if this is the first log entry in the operation.
Generated from protobuf field bool first = 3;
at line 121
setFirst(bool $var)
Optional. Set this to True if this is the first log entry in the operation.
Generated from protobuf field bool first = 3;
at line 133
bool
getLast()
Optional. Set this to True if this is the last log entry in the operation.
Generated from protobuf field bool last = 4;
at line 144
setLast(bool $var)
Optional. Set this to True if this is the last log entry in the operation.
Generated from protobuf field bool last = 4;