Class: Google::Apis::ServicecontrolV1::LogEntryOperation
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServicecontrolV1::LogEntryOperation
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/servicecontrol_v1/classes.rb,
generated/google/apis/servicecontrol_v1/representations.rb,
generated/google/apis/servicecontrol_v1/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
      1146 1147 1148  | 
    
      # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1146 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
      1124 1125 1126  | 
    
      # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1124 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
      1131 1132 1133  | 
    
      # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1131 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
      1136 1137 1138  | 
    
      # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1136 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
      1144 1145 1146  | 
    
      # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1144 def producer @producer end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1151 1152 1153 1154 1155 1156  | 
    
      # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1151 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  |