Class: Google::Apis::ServicecontrolV2::V2LogEntryOperation

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/servicecontrol_v2/classes.rb,
lib/google/apis/servicecontrol_v2/representations.rb,
lib/google/apis/servicecontrol_v2/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

Constructor Details

#initialize(**args) ⇒ V2LogEntryOperation

Returns a new instance of V2LogEntryOperation.



1511
1512
1513
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 1511

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)


1489
1490
1491
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 1489

def first
  @first
end

#idString

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

Returns:

  • (String)


1496
1497
1498
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 1496

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)


1501
1502
1503
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 1501

def last
  @last
end

#producerString

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

Returns:

  • (String)


1509
1510
1511
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 1509

def producer
  @producer
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1516
1517
1518
1519
1520
1521
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 1516

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