Class: Google::Apis::SqladminV1::SqlOutOfDiskReport
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1::SqlOutOfDiskReport
- 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
This message wraps up the information written by out-of-disk detection job.
Instance Attribute Summary collapse
-
#sql_min_recommended_increase_size_gb ⇒ Fixnum
The minimum recommended increase size in GigaBytes This field is consumed by the frontend Writers: -- the proactive database wellness job for OOD.
-
#sql_out_of_disk_state ⇒ String
This field represents the state generated by the proactive database wellness job for OutOfDisk issues.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SqlOutOfDiskReport
constructor
A new instance of SqlOutOfDiskReport.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SqlOutOfDiskReport
Returns a new instance of SqlOutOfDiskReport.
2935 2936 2937 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2935 def initialize(**args) update!(**args) end |
Instance Attribute Details
#sql_min_recommended_increase_size_gb ⇒ Fixnum
The minimum recommended increase size in GigaBytes This field is consumed by
the frontend Writers: -- the proactive database wellness job for OOD. Readers:
-- the Pantheon frontend
Corresponds to the JSON property sqlMinRecommendedIncreaseSizeGb
2926 2927 2928 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2926 def sql_min_recommended_increase_size_gb @sql_min_recommended_increase_size_gb end |
#sql_out_of_disk_state ⇒ String
This field represents the state generated by the proactive database wellness
job for OutOfDisk issues. Writers: -- the proactive database wellness job for
OOD. Readers: -- the Pantheon frontend -- the proactive database wellness job
Corresponds to the JSON property sqlOutOfDiskState
2933 2934 2935 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2933 def sql_out_of_disk_state @sql_out_of_disk_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2940 2941 2942 2943 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 2940 def update!(**args) @sql_min_recommended_increase_size_gb = args[:sql_min_recommended_increase_size_gb] if args.key?(:sql_min_recommended_increase_size_gb) @sql_out_of_disk_state = args[:sql_out_of_disk_state] if args.key?(:sql_out_of_disk_state) end |