Class: Google::Apis::SqladminV1::InsightsConfig

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

Overview

Insights configuration. This specifies when Cloud SQL Insights feature is enabled and optional configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InsightsConfig

Returns a new instance of InsightsConfig.



758
759
760
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 758

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

Instance Attribute Details

#query_insights_enabledBoolean Also known as: query_insights_enabled?

Whether Query Insights feature is enabled. Corresponds to the JSON property queryInsightsEnabled

Returns:

  • (Boolean)


729
730
731
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 729

def query_insights_enabled
  @query_insights_enabled
end

#query_plans_per_minuteFixnum

Number of query plans generated by Insights per minute. Default is 5. Changing this will restart the database. Corresponds to the JSON property queryPlansPerMinute

Returns:

  • (Fixnum)


736
737
738
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 736

def query_plans_per_minute
  @query_plans_per_minute
end

#query_string_lengthFixnum

Maximum query length stored in bytes. Default value: 1024 bytes. Range: 256- 4500 bytes. Query length more than this field value will be truncated to this value. When unset, query length will be the default value. Changing query length will restart the database. Corresponds to the JSON property queryStringLength

Returns:

  • (Fixnum)


744
745
746
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 744

def query_string_length
  @query_string_length
end

#record_application_tagsBoolean Also known as: record_application_tags?

Whether Query Insights will record application tags from query when enabled. Corresponds to the JSON property recordApplicationTags

Returns:

  • (Boolean)


749
750
751
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 749

def record_application_tags
  @record_application_tags
end

#record_client_addressBoolean Also known as: record_client_address?

Whether Query Insights will record client address when enabled. Corresponds to the JSON property recordClientAddress

Returns:

  • (Boolean)


755
756
757
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 755

def record_client_address
  @record_client_address
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



763
764
765
766
767
768
769
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 763

def update!(**args)
  @query_insights_enabled = args[:query_insights_enabled] if args.key?(:query_insights_enabled)
  @query_plans_per_minute = args[:query_plans_per_minute] if args.key?(:query_plans_per_minute)
  @query_string_length = args[:query_string_length] if args.key?(:query_string_length)
  @record_application_tags = args[:record_application_tags] if args.key?(:record_application_tags)
  @record_client_address = args[:record_client_address] if args.key?(:record_client_address)
end