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.



787
788
789
# File 'lib/google/apis/recommender_v1/classes.rb', line 787

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)


780
781
782
# File 'lib/google/apis/recommender_v1/classes.rb', line 780

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>)


785
786
787
# File 'lib/google/apis/recommender_v1/classes.rb', line 785

def 
  @state_metadata
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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