Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineRuntimeRevision
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineRuntimeRevision
- 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
-
#create_time ⇒ String
Output only.
-
#name ⇒ String
Identifier.
-
#spec ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpec
ReasoningEngine configurations Corresponds to the JSON property
spec. -
#state ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ReasoningEngineRuntimeRevision
constructor
A new instance of GoogleCloudAiplatformV1beta1ReasoningEngineRuntimeRevision.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ReasoningEngineRuntimeRevision
Returns a new instance of GoogleCloudAiplatformV1beta1ReasoningEngineRuntimeRevision.
43948 43949 43950 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 43948 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Timestamp when this ReasoningEngineRuntimeRevision was created.
Corresponds to the JSON property createTime
43929 43930 43931 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 43929 def create_time @create_time end |
#name ⇒ String
Identifier. The resource name of the ReasoningEngineRuntimeRevision. Format:
projects/project/locations/location/reasoningEngines/reasoning_engine/
runtimeRevisions/runtime_revision`
Corresponds to the JSON propertyname`
43936 43937 43938 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 43936 def name @name end |
#spec ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpec
ReasoningEngine configurations
Corresponds to the JSON property spec
43941 43942 43943 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 43941 def spec @spec end |
#state ⇒ String
Output only. The state of the revision.
Corresponds to the JSON property state
43946 43947 43948 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 43946 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
43953 43954 43955 43956 43957 43958 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 43953 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 |