Class: Google::Apis::FirebasemlV1::ModelOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::FirebasemlV1::ModelOperationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/firebaseml_v1/classes.rb,
generated/google/apis/firebaseml_v1/representations.rb,
generated/google/apis/firebaseml_v1/representations.rb
Overview
This is returned in the longrunning operations for create/update.
Instance Attribute Summary collapse
-
#basic_operation_status ⇒ String
Corresponds to the JSON property
basicOperationStatus
. -
#name ⇒ String
The name of the model we are creating/updating The name must have the form
projects/
project_id/models/
model_id`Corresponds to the JSON property
name`.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ModelOperationMetadata
constructor
A new instance of ModelOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ModelOperationMetadata
Returns a new instance of ModelOperationMetadata.
95 96 97 |
# File 'generated/google/apis/firebaseml_v1/classes.rb', line 95 def initialize(**args) update!(**args) end |
Instance Attribute Details
#basic_operation_status ⇒ String
Corresponds to the JSON property basicOperationStatus
87 88 89 |
# File 'generated/google/apis/firebaseml_v1/classes.rb', line 87 def basic_operation_status @basic_operation_status end |
#name ⇒ String
The name of the model we are creating/updating The name must have the form
projects/
project_id/models/
model_id`
Corresponds to the JSON property
name`
93 94 95 |
# File 'generated/google/apis/firebaseml_v1/classes.rb', line 93 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
100 101 102 103 |
# File 'generated/google/apis/firebaseml_v1/classes.rb', line 100 def update!(**args) @basic_operation_status = args[:basic_operation_status] if args.key?(:basic_operation_status) @name = args[:name] if args.key?(:name) end |