Class: Google::Cloud::Recommender::V1::Impact
- Inherits:
-
Object
- Object
- Google::Cloud::Recommender::V1::Impact
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/recommender/v1/recommendation.rb
Overview
Contains the impact a recommendation can have for a given category.
Defined Under Namespace
Modules: Category
Instance Attribute Summary collapse
-
#category ⇒ ::Google::Cloud::Recommender::V1::Impact::Category
Category that is being targeted.
-
#cost_projection ⇒ ::Google::Cloud::Recommender::V1::CostProjection
Use with CategoryType.COST.
Instance Attribute Details
#category ⇒ ::Google::Cloud::Recommender::V1::Impact::Category
Returns Category that is being targeted.
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
# File 'proto_docs/google/cloud/recommender/v1/recommendation.rb', line 237 class Impact include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The category of the impact. module Category # Default unspecified category. Don't use directly. CATEGORY_UNSPECIFIED = 0 # Indicates a potential increase or decrease in cost. COST = 1 # Indicates a potential increase or decrease in security. SECURITY = 2 # Indicates a potential increase or decrease in performance. PERFORMANCE = 3 # Indicates a potential increase or decrease in manageability. MANAGEABILITY = 4 end end |
#cost_projection ⇒ ::Google::Cloud::Recommender::V1::CostProjection
Returns Use with CategoryType.COST.
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
# File 'proto_docs/google/cloud/recommender/v1/recommendation.rb', line 237 class Impact include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The category of the impact. module Category # Default unspecified category. Don't use directly. CATEGORY_UNSPECIFIED = 0 # Indicates a potential increase or decrease in cost. COST = 1 # Indicates a potential increase or decrease in security. SECURITY = 2 # Indicates a potential increase or decrease in performance. PERFORMANCE = 3 # Indicates a potential increase or decrease in manageability. MANAGEABILITY = 4 end end |