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.
4351 4352 4353 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4351 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:
Corresponds to the JSON property sqlMinRecommendedIncreaseSizeGb
4342 4343 4344 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4342 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 proactive database wellness job
Corresponds to the JSON property sqlOutOfDiskState
4349 4350 4351 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4349 def sql_out_of_disk_state @sql_out_of_disk_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4356 4357 4358 4359 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4356 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 |