class Google::Apis::FirebasemlV1::ModelOperationMetadata
This is returned in the longrunning operations for create/update.
Attributes
basic_operation_status[RW]
Corresponds to the JSON property `basicOperationStatus` @return [String]
name[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/firebaseml_v1/classes.rb, line 95 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/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