Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookExecutionJobCustomEnvironmentSpecShieldedInstanceConfig

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

Overview

A set of Shielded VM options for the execution VM. Mirrors google.cloud. notebooks.v2.ShieldedInstanceConfig. See https://cloud.google.com/compute/ docs/instances/modifying-shielded-vm.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1NotebookExecutionJobCustomEnvironmentSpecShieldedInstanceConfig

Returns a new instance of GoogleCloudAiplatformV1NotebookExecutionJobCustomEnvironmentSpecShieldedInstanceConfig.



28460
28461
28462
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28460

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

Instance Attribute Details

#enable_integrity_monitoringBoolean Also known as: enable_integrity_monitoring?

Optional. Whether the VM instance has integrity monitoring enabled. Corresponds to the JSON property enableIntegrityMonitoring

Returns:

  • (Boolean)


28445
28446
28447
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28445

def enable_integrity_monitoring
  @enable_integrity_monitoring
end

#enable_secure_bootBoolean Also known as: enable_secure_boot?

Optional. Whether the VM instance has Secure Boot enabled. Disabled by default. Corresponds to the JSON property enableSecureBoot

Returns:

  • (Boolean)


28451
28452
28453
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28451

def enable_secure_boot
  @enable_secure_boot
end

#enable_vtpmBoolean Also known as: enable_vtpm?

Optional. Whether the VM instance has vTPM enabled. Corresponds to the JSON property enableVtpm

Returns:

  • (Boolean)


28457
28458
28459
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28457

def enable_vtpm
  @enable_vtpm
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



28465
28466
28467
28468
28469
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28465

def update!(**args)
  @enable_integrity_monitoring = args[:enable_integrity_monitoring] if args.key?(:enable_integrity_monitoring)
  @enable_secure_boot = args[:enable_secure_boot] if args.key?(:enable_secure_boot)
  @enable_vtpm = args[:enable_vtpm] if args.key?(:enable_vtpm)
end