Class: Google::Cloud::MigrationCenter::V1::FitDescriptor
- Inherits:
-
Object
- Object
- Google::Cloud::MigrationCenter::V1::FitDescriptor
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/migrationcenter/v1/migrationcenter.rb
Overview
Describes the fit level of an asset for migration to a specific target.
Defined Under Namespace
Modules: FitLevel
Instance Attribute Summary collapse
Instance Attribute Details
#fit_level ⇒ ::Google::Cloud::MigrationCenter::V1::FitDescriptor::FitLevel
Returns Fit level.
2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 |
# File 'proto_docs/google/cloud/migrationcenter/v1/migrationcenter.rb', line 2993 class FitDescriptor include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Fit level. module FitLevel # Not enough information. FIT_LEVEL_UNSPECIFIED = 0 # Fit. FIT = 1 # No Fit. NO_FIT = 2 # Fit with effort. REQUIRES_EFFORT = 3 end end |