Class: Google::Apis::SqladminV1beta4::Flag

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

Overview

A Google Cloud SQL service flag resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Flag

Returns a new instance of Flag.



794
795
796
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 794

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

Instance Attribute Details

#allowed_string_valuesArray<String>

For STRING flags, a list of strings that the value can be set to. Corresponds to the JSON property allowedStringValues

Returns:

  • (Array<String>)


751
752
753
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 751

def allowed_string_values
  @allowed_string_values
end

#applies_toArray<String>

The database version this flag applies to. Can be MYSQL_5_5, MYSQL_5_6, or MYSQL_5_7. MYSQL_5_7 is applicable only to Second Generation instances. Corresponds to the JSON property appliesTo

Returns:

  • (Array<String>)


757
758
759
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 757

def applies_to
  @applies_to
end

#kindString

This is always sql#flag. Corresponds to the JSON property kind

Returns:

  • (String)


762
763
764
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 762

def kind
  @kind
end

#max_valueString

For INTEGER flags, the maximum allowed value. Corresponds to the JSON property maxValue

Returns:

  • (String)


767
768
769
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 767

def max_value
  @max_value
end

#min_valueString

For INTEGER flags, the minimum allowed value. Corresponds to the JSON property minValue

Returns:

  • (String)


772
773
774
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 772

def min_value
  @min_value
end

#nameString

This is the name of the flag. Flag names always use underscores, not hyphens, e.g. max_allowed_packet Corresponds to the JSON property name

Returns:

  • (String)


778
779
780
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 778

def name
  @name
end

#requires_restartBoolean Also known as: requires_restart?

Indicates whether changing this flag will trigger a database restart. Only applicable to Second Generation instances. Corresponds to the JSON property requiresRestart

Returns:

  • (Boolean)


784
785
786
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 784

def requires_restart
  @requires_restart
end

#typeString

The type of the flag. Flags are typed to being BOOLEAN, STRING, INTEGER or NONE. NONE is used for flags which do not take a value, such as skip_grant_tables. Corresponds to the JSON property type

Returns:

  • (String)


792
793
794
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 792

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



799
800
801
802
803
804
805
806
807
808
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 799

def update!(**args)
  @allowed_string_values = args[:allowed_string_values] if args.key?(:allowed_string_values)
  @applies_to = args[:applies_to] if args.key?(:applies_to)
  @kind = args[:kind] if args.key?(:kind)
  @max_value = args[:max_value] if args.key?(:max_value)
  @min_value = args[:min_value] if args.key?(:min_value)
  @name = args[:name] if args.key?(:name)
  @requires_restart = args[:requires_restart] if args.key?(:requires_restart)
  @type = args[:type] if args.key?(:type)
end