Class: Google::Apis::ComputeBeta::InstanceGroupManagerStatusStateful

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InstanceGroupManagerStatusStateful

Returns a new instance of InstanceGroupManagerStatusStateful.



13258
13259
13260
# File 'generated/google/apis/compute_beta/classes.rb', line 13258

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

Instance Attribute Details

#has_stateful_configBoolean Also known as: has_stateful_config?

[Output Only] A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful config even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions. Corresponds to the JSON property hasStatefulConfig

Returns:

  • (Boolean)


13239
13240
13241
# File 'generated/google/apis/compute_beta/classes.rb', line 13239

def has_stateful_config
  @has_stateful_config
end

#is_statefulBoolean Also known as: is_stateful?

[Output Only] A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful config even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions. This field is deprecated in favor of has_stateful_config. Corresponds to the JSON property isStateful

Returns:

  • (Boolean)


13250
13251
13252
# File 'generated/google/apis/compute_beta/classes.rb', line 13250

def is_stateful
  @is_stateful
end

#per_instance_configsGoogle::Apis::ComputeBeta::InstanceGroupManagerStatusStatefulPerInstanceConfigs

[Output Only] Status of per-instance configs on the instance. Corresponds to the JSON property perInstanceConfigs



13256
13257
13258
# File 'generated/google/apis/compute_beta/classes.rb', line 13256

def per_instance_configs
  @per_instance_configs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13263
13264
13265
13266
13267
# File 'generated/google/apis/compute_beta/classes.rb', line 13263

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