Class: Google::Apis::MlV1::GoogleCloudMlV1beta1OperationMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/ml_v1/classes.rb,
generated/google/apis/ml_v1/representations.rb,
generated/google/apis/ml_v1/representations.rb

Overview

Represents the metadata of the long-running operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudMlV1beta1OperationMetadata

Returns a new instance of GoogleCloudMlV1beta1OperationMetadata



989
990
991
# File 'generated/google/apis/ml_v1/classes.rb', line 989

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#create_timeString

The time the operation was submitted. Corresponds to the JSON property createTime

Returns:

  • (String)


987
988
989
# File 'generated/google/apis/ml_v1/classes.rb', line 987

def create_time
  @create_time
end

#end_timeString

The time operation processing completed. Corresponds to the JSON property endTime

Returns:

  • (String)


966
967
968
# File 'generated/google/apis/ml_v1/classes.rb', line 966

def end_time
  @end_time
end

#is_cancellation_requestedBoolean Also known as: is_cancellation_requested?

Indicates whether a request to cancel this operation has been made. Corresponds to the JSON property isCancellationRequested

Returns:

  • (Boolean)


981
982
983
# File 'generated/google/apis/ml_v1/classes.rb', line 981

def is_cancellation_requested
  @is_cancellation_requested
end

#model_nameString

Contains the name of the model associated with the operation. Corresponds to the JSON property modelName

Returns:

  • (String)


951
952
953
# File 'generated/google/apis/ml_v1/classes.rb', line 951

def model_name
  @model_name
end

#operation_typeString

The operation type. Corresponds to the JSON property operationType

Returns:

  • (String)


971
972
973
# File 'generated/google/apis/ml_v1/classes.rb', line 971

def operation_type
  @operation_type
end

#start_timeString

The time operation processing started. Corresponds to the JSON property startTime

Returns:

  • (String)


976
977
978
# File 'generated/google/apis/ml_v1/classes.rb', line 976

def start_time
  @start_time
end

#versionGoogle::Apis::MlV1::GoogleCloudMlV1beta1Version

Represents a version of the model. Each version is a trained model deployed in the cloud, ready to handle prediction requests. A model can have multiple versions. You can get information about all of the versions of a given model by calling projects.models.versions.list. Corresponds to the JSON property version



961
962
963
# File 'generated/google/apis/ml_v1/classes.rb', line 961

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



994
995
996
997
998
999
1000
1001
1002
# File 'generated/google/apis/ml_v1/classes.rb', line 994

def update!(**args)
  @model_name = args[:model_name] if args.key?(:model_name)
  @version = args[:version] if args.key?(:version)
  @end_time = args[:end_time] if args.key?(:end_time)
  @operation_type = args[:operation_type] if args.key?(:operation_type)
  @start_time = args[:start_time] if args.key?(:start_time)
  @is_cancellation_requested = args[:is_cancellation_requested] if args.key?(:is_cancellation_requested)
  @create_time = args[:create_time] if args.key?(:create_time)
end