Class: Google::Apis::NotebooksV1::InstanceConfig
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::InstanceConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/notebooks_v1/classes.rb,
lib/google/apis/notebooks_v1/representations.rb,
lib/google/apis/notebooks_v1/representations.rb more...
Overview
Notebook instance configurations that can be updated.
Instance Attribute Summary collapse
-
#enable_health_monitoring ⇒ Boolean
(also: #enable_health_monitoring?)
Verifies core internal services are running.
-
#notebook_upgrade_schedule ⇒ String
Cron expression in UTC timezone, used to schedule instance auto upgrade.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstanceConfig
constructor
A new instance of InstanceConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstanceConfig
Returns a new instance of InstanceConfig.
1191 1192 1193 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1191 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enable_health_monitoring ⇒ Boolean Also known as: enable_health_monitoring?
Verifies core internal services are running.
Corresponds to the JSON property enableHealthMonitoring
1182 1183 1184 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1182 def enable_health_monitoring @enable_health_monitoring end |
#notebook_upgrade_schedule ⇒ String
Cron expression in UTC timezone, used to schedule instance auto upgrade.
Please follow the cron format.
Corresponds to the JSON property notebookUpgradeSchedule
1189 1190 1191 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1189 def notebook_upgrade_schedule @notebook_upgrade_schedule end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1196 1197 1198 1199 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1196 def update!(**args) @enable_health_monitoring = args[:enable_health_monitoring] if args.key?(:enable_health_monitoring) @notebook_upgrade_schedule = args[:notebook_upgrade_schedule] if args.key?(:notebook_upgrade_schedule) end |