Class: Google::Apis::LoggingV2::LogEntryOperation
- Inherits:
-
Object
- Object
- Google::Apis::LoggingV2::LogEntryOperation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/logging_v2/classes.rb,
generated/google/apis/logging_v2/representations.rb,
generated/google/apis/logging_v2/representations.rb
Overview
Additional information about a potentially long-running operation with which a log entry is associated.
Instance Attribute Summary collapse
-
#first ⇒ Boolean
(also: #first?)
Optional.
-
#id ⇒ String
Optional.
-
#last ⇒ Boolean
(also: #last?)
Optional.
-
#producer ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LogEntryOperation
constructor
A new instance of LogEntryOperation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LogEntryOperation
Returns a new instance of LogEntryOperation
1017 1018 1019 |
# File 'generated/google/apis/logging_v2/classes.rb', line 1017 def initialize(**args) update!(**args) end |
Instance Attribute Details
#first ⇒ Boolean Also known as: first?
Optional. Set this to True if this is the first log entry in the operation.
Corresponds to the JSON property first
1014 1015 1016 |
# File 'generated/google/apis/logging_v2/classes.rb', line 1014 def first @first end |
#id ⇒ String
Optional. An arbitrary operation identifier. Log entries with the same
identifier are assumed to be part of the same operation.
Corresponds to the JSON property id
1002 1003 1004 |
# File 'generated/google/apis/logging_v2/classes.rb', line 1002 def id @id end |
#last ⇒ Boolean Also known as: last?
Optional. Set this to True if this is the last log entry in the operation.
Corresponds to the JSON property last
995 996 997 |
# File 'generated/google/apis/logging_v2/classes.rb', line 995 def last @last end |
#producer ⇒ String
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".
Corresponds to the JSON property producer
1009 1010 1011 |
# File 'generated/google/apis/logging_v2/classes.rb', line 1009 def producer @producer end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1022 1023 1024 1025 1026 1027 |
# File 'generated/google/apis/logging_v2/classes.rb', line 1022 def update!(**args) @last = args[:last] if args.key?(:last) @id = args[:id] if args.key?(:id) @producer = args[:producer] if args.key?(:producer) @first = args[:first] if args.key?(:first) end |