Class: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1ReliabilityProjection
- Inherits:
-
Object
- Object
- Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1ReliabilityProjection
- 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
-
#details ⇒ Hash<String,Object>
Per-recommender projection.
-
#risks ⇒ Array<String>
Reliability risks mitigated by this recommendation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRecommenderV1beta1ReliabilityProjection
constructor
A new instance of GoogleCloudRecommenderV1beta1ReliabilityProjection.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRecommenderV1beta1ReliabilityProjection
Returns a new instance of GoogleCloudRecommenderV1beta1ReliabilityProjection.
1069 1070 1071 |
# File 'lib/google/apis/recommender_v1beta1/classes.rb', line 1069 def initialize(**args) update!(**args) end |
Instance Attribute Details
#details ⇒ Hash<String,Object>
Per-recommender projection.
Corresponds to the JSON property details
1062 1063 1064 |
# File 'lib/google/apis/recommender_v1beta1/classes.rb', line 1062 def details @details end |
#risks ⇒ Array<String>
Reliability risks mitigated by this recommendation.
Corresponds to the JSON property risks
1067 1068 1069 |
# File 'lib/google/apis/recommender_v1beta1/classes.rb', line 1067 def risks @risks end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1074 1075 1076 1077 |
# File 'lib/google/apis/recommender_v1beta1/classes.rb', line 1074 def update!(**args) @details = args[:details] if args.key?(:details) @risks = args[:risks] if args.key?(:risks) end |