Class: Google::Apis::LoggingV2beta1::LogEntryOperation

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/logging_v2beta1/classes.rb,
generated/google/apis/logging_v2beta1/representations.rb,
generated/google/apis/logging_v2beta1/representations.rb

Overview

Additional information about a potentially long-running operation with which a log entry is associated.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ LogEntryOperation

Returns a new instance of LogEntryOperation.



372
373
374
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 372

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#firstBoolean 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

Returns:

  • (Boolean)


363
364
365
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 363

def first
  @first
end

#idString

Required. 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

Returns:

  • (String)


351
352
353
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 351

def id
  @id
end

#lastBoolean 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

Returns:

  • (Boolean)


369
370
371
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 369

def last
  @last
end

#producerString

Required. 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 propertyproducer`

Returns:

  • (String)


358
359
360
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 358

def producer
  @producer
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



377
378
379
380
381
382
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 377

def update!(**args)
  @id = args[:id] if args.key?(:id)
  @producer = args[:producer] if args.key?(:producer)
  @first = args[:first] if args.key?(:first)
  @last = args[:last] if args.key?(:last)
end