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.
2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 |
# File 'proto_docs/google/cloud/migrationcenter/v1/migrationcenter.rb', line 2975 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 |