Class: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1ReliabilityProjection

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/recommender_v1beta1/classes.rb,
lib/google/apis/recommender_v1beta1/representations.rb,
lib/google/apis/recommender_v1beta1/representations.rb

Overview

Contains information on the impact of a reliability recommendation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRecommenderV1beta1ReliabilityProjection

Returns a new instance of GoogleCloudRecommenderV1beta1ReliabilityProjection.



997
998
999
# File 'lib/google/apis/recommender_v1beta1/classes.rb', line 997

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#detailsHash<String,Object>

Per-recommender projection. Corresponds to the JSON property details

Returns:

  • (Hash<String,Object>)


990
991
992
# File 'lib/google/apis/recommender_v1beta1/classes.rb', line 990

def details
  @details
end

#risksArray<String>

Reliability risks mitigated by this recommendation. Corresponds to the JSON property risks

Returns:

  • (Array<String>)


995
996
997
# File 'lib/google/apis/recommender_v1beta1/classes.rb', line 995

def risks
  @risks
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1002
1003
1004
1005
# File 'lib/google/apis/recommender_v1beta1/classes.rb', line 1002

def update!(**args)
  @details = args[:details] if args.key?(:details)
  @risks = args[:risks] if args.key?(:risks)
end