Class: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1RecommendationStateInfo

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

Overview

Information for state. Contains state and metadata.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRecommenderV1RecommendationStateInfo

Returns a new instance of GoogleCloudRecommenderV1RecommendationStateInfo.



801
802
803
# File 'lib/google/apis/recommender_v1/classes.rb', line 801

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

Instance Attribute Details

#stateString

The state of the recommendation, Eg ACTIVE, SUCCEEDED, FAILED. Corresponds to the JSON property state

Returns:

  • (String)


794
795
796
# File 'lib/google/apis/recommender_v1/classes.rb', line 794

def state
  @state
end

#state_metadataHash<String,String>

A map of metadata for the state, provided by user or automations systems. Corresponds to the JSON property stateMetadata

Returns:

  • (Hash<String,String>)


799
800
801
# File 'lib/google/apis/recommender_v1/classes.rb', line 799

def 
  @state_metadata
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



806
807
808
809
# File 'lib/google/apis/recommender_v1/classes.rb', line 806

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