Class: Google::Cloud::FinancialServices::V1::EngineVersion
- Inherits:
-
Object
- Object
- Google::Cloud::FinancialServices::V1::EngineVersion
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/financialservices/v1/engine_version.rb
Overview
EngineVersion controls which version of the engine is used to tune, train, and run the model.
Defined Under Namespace
Modules: State
Instance Attribute Summary collapse
-
#expected_decommission_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#expected_limitation_start_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#line_of_business ⇒ ::Google::Cloud::FinancialServices::V1::LineOfBusiness
readonly
Output only.
-
#name ⇒ ::String
readonly
Output only.
-
#state ⇒ ::Google::Cloud::FinancialServices::V1::EngineVersion::State
readonly
Output only.
Instance Attribute Details
#expected_decommission_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Planned time to stop supporting the version, in addition to no training or tuning, models trained on this version can no longer be used for prediction/backtest.
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'proto_docs/google/cloud/financialservices/v1/engine_version.rb', line 47 class EngineVersion include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # State determines the lifecycle of a version and the models/engine configs # trained with it. module State # Default state, should never be used. STATE_UNSPECIFIED = 0 # Version is available for training and inference. ACTIVE = 1 # Models using this version can still be run, but new ones cannot be # trained. LIMITED = 2 # Version is deprecated, listed for informational purposes only. DECOMMISSIONED = 3 end end |
#expected_limitation_start_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Planned time to stop allowing training/tuning using this version. Existing trained models can still be used for prediction/backtest.
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'proto_docs/google/cloud/financialservices/v1/engine_version.rb', line 47 class EngineVersion include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # State determines the lifecycle of a version and the models/engine configs # trained with it. module State # Default state, should never be used. STATE_UNSPECIFIED = 0 # Version is available for training and inference. ACTIVE = 1 # Models using this version can still be run, but new ones cannot be # trained. LIMITED = 2 # Version is deprecated, listed for informational purposes only. DECOMMISSIONED = 3 end end |
#line_of_business ⇒ ::Google::Cloud::FinancialServices::V1::LineOfBusiness (readonly)
Returns Output only. The line of business (Retail/Commercial) this engine version is used for.
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'proto_docs/google/cloud/financialservices/v1/engine_version.rb', line 47 class EngineVersion include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # State determines the lifecycle of a version and the models/engine configs # trained with it. module State # Default state, should never be used. STATE_UNSPECIFIED = 0 # Version is available for training and inference. ACTIVE = 1 # Models using this version can still be run, but new ones cannot be # trained. LIMITED = 2 # Version is deprecated, listed for informational purposes only. DECOMMISSIONED = 3 end end |
#name ⇒ ::String (readonly)
Returns Output only. Identifier. The resource name of the EngineVersion
format:
/projects/{project_num}/locations/{location}/instances/{instance}/engineVersions/{engine_version}
.
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'proto_docs/google/cloud/financialservices/v1/engine_version.rb', line 47 class EngineVersion include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # State determines the lifecycle of a version and the models/engine configs # trained with it. module State # Default state, should never be used. STATE_UNSPECIFIED = 0 # Version is available for training and inference. ACTIVE = 1 # Models using this version can still be run, but new ones cannot be # trained. LIMITED = 2 # Version is deprecated, listed for informational purposes only. DECOMMISSIONED = 3 end end |
#state ⇒ ::Google::Cloud::FinancialServices::V1::EngineVersion::State (readonly)
Returns Output only. The state of the version.
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'proto_docs/google/cloud/financialservices/v1/engine_version.rb', line 47 class EngineVersion include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # State determines the lifecycle of a version and the models/engine configs # trained with it. module State # Default state, should never be used. STATE_UNSPECIFIED = 0 # Version is available for training and inference. ACTIVE = 1 # Models using this version can still be run, but new ones cannot be # trained. LIMITED = 2 # Version is deprecated, listed for informational purposes only. DECOMMISSIONED = 3 end end |