Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineRuntimeRevision

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

Overview

ReasoningEngineRuntimeRevision is a specific version of the runtime related part of ReasoningEngine. Contains only the fields that are revision specific.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ReasoningEngineRuntimeRevision

Returns a new instance of GoogleCloudAiplatformV1beta1ReasoningEngineRuntimeRevision.



39009
39010
39011
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 39009

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

Instance Attribute Details

#create_timeString

Output only. Timestamp when this ReasoningEngineRuntimeRevision was created. Corresponds to the JSON property createTime

Returns:

  • (String)


38990
38991
38992
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 38990

def create_time
  @create_time
end

#nameString

Identifier. The resource name of the ReasoningEngineRuntimeRevision. Format: projects/project/locations/location/reasoningEngines/reasoning_engine/ runtimeRevisions/runtime_revision` Corresponds to the JSON propertyname`

Returns:

  • (String)


38997
38998
38999
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 38997

def name
  @name
end

#specGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpec

ReasoningEngine configurations Corresponds to the JSON property spec



39002
39003
39004
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 39002

def spec
  @spec
end

#stateString

Output only. The state of the revision. Corresponds to the JSON property state

Returns:

  • (String)


39007
39008
39009
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 39007

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



39014
39015
39016
39017
39018
39019
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 39014

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @name = args[:name] if args.key?(:name)
  @spec = args[:spec] if args.key?(:spec)
  @state = args[:state] if args.key?(:state)
end