Class: Google::Apis::PrivatecaV1beta1::GoogleApiServicecontrolV1LogEntryOperation
- Inherits:
-
Object
- Object
- Google::Apis::PrivatecaV1beta1::GoogleApiServicecontrolV1LogEntryOperation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/privateca_v1beta1/classes.rb,
lib/google/apis/privateca_v1beta1/representations.rb,
lib/google/apis/privateca_v1beta1/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) ⇒ GoogleApiServicecontrolV1LogEntryOperation
constructor
A new instance of GoogleApiServicecontrolV1LogEntryOperation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleApiServicecontrolV1LogEntryOperation
Returns a new instance of GoogleApiServicecontrolV1LogEntryOperation.
1616 1617 1618 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1616 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
1594 1595 1596 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1594 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
1601 1602 1603 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1601 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
1606 1607 1608 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1606 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
1614 1615 1616 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1614 def producer @producer end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1621 1622 1623 1624 1625 1626 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1621 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 |