Class: Google::Apis::GkehubV2alpha::ResourceState

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

Overview

ResourceState describes the state of a MembershipFeature resource in the GkeHub API. See FeatureState for the "running state" of the MembershipFeature.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ResourceState

Returns a new instance of ResourceState.



600
601
602
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 600

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

Instance Attribute Details

#stateString

Output only. The current state of the Feature resource in the Hub API. Corresponds to the JSON property state

Returns:

  • (String)


598
599
600
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 598

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



605
606
607
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 605

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