Class: Google::Apis::NotebooksV1::InstanceConfig

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InstanceConfig

Returns a new instance of InstanceConfig.

[View source]

1191
1192
1193
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1191

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

Instance Attribute Details

#enable_health_monitoringBoolean Also known as: enable_health_monitoring?

Verifies core internal services are running. Corresponds to the JSON property enableHealthMonitoring

Returns:

  • (Boolean)

1182
1183
1184
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1182

def enable_health_monitoring
  @enable_health_monitoring
end

#notebook_upgrade_scheduleString

Cron expression in UTC timezone, used to schedule instance auto upgrade. Please follow the cron format. Corresponds to the JSON property notebookUpgradeSchedule

Returns:

  • (String)

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

[View source]

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