Class: Google::Apis::FirebasedataconnectV1beta::GenerationStatus
- Inherits:
-
Object
- Object
- Google::Apis::FirebasedataconnectV1beta::GenerationStatus
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebasedataconnect_v1beta/classes.rb,
lib/google/apis/firebasedataconnect_v1beta/representations.rb,
lib/google/apis/firebasedataconnect_v1beta/representations.rb
Overview
Represents the progress of the server side generation request.
Instance Attribute Summary collapse
-
#message ⇒ String
Output only.
-
#state ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GenerationStatus
constructor
A new instance of GenerationStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GenerationStatus
Returns a new instance of GenerationStatus.
552 553 554 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 552 def initialize(**args) update!(**args) end |
Instance Attribute Details
#message ⇒ String
Output only. A message providing more details about the state.
Corresponds to the JSON property message
545 546 547 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 545 def @message end |
#state ⇒ String
Output only. The state of generation.
Corresponds to the JSON property state
550 551 552 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 550 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
557 558 559 560 |
# File 'lib/google/apis/firebasedataconnect_v1beta/classes.rb', line 557 def update!(**args) @message = args[:message] if args.key?(:message) @state = args[:state] if args.key?(:state) end |