Class: Google::Cloud::Recommender::V1::Impact

Inherits:
Object
  • Object
show all
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

Instance Attribute Details

#category::Google::Cloud::Recommender::V1::Impact::Category

Returns Category that is being targeted.

Returns:



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.

Returns:



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