Class: Google::Apis::ComputeBeta::ShieldedVmConfig

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

Overview

A set of Shielded VM options.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ShieldedVmConfig

Returns a new instance of ShieldedVmConfig.



38266
38267
38268
# File 'lib/google/apis/compute_beta/classes.rb', line 38266

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

Instance Attribute Details

#enable_integrity_monitoringBoolean Also known as: enable_integrity_monitoring?

Defines whether the instance has integrity monitoring enabled. Corresponds to the JSON property enableIntegrityMonitoring

Returns:

  • (Boolean)


38251
38252
38253
# File 'lib/google/apis/compute_beta/classes.rb', line 38251

def enable_integrity_monitoring
  @enable_integrity_monitoring
end

#enable_secure_bootBoolean Also known as: enable_secure_boot?

Defines whether the instance has Secure Boot enabled. Corresponds to the JSON property enableSecureBoot

Returns:

  • (Boolean)


38257
38258
38259
# File 'lib/google/apis/compute_beta/classes.rb', line 38257

def enable_secure_boot
  @enable_secure_boot
end

#enable_vtpmBoolean Also known as: enable_vtpm?

Defines whether the instance has the vTPM enabled. Corresponds to the JSON property enableVtpm

Returns:

  • (Boolean)


38263
38264
38265
# File 'lib/google/apis/compute_beta/classes.rb', line 38263

def enable_vtpm
  @enable_vtpm
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



38271
38272
38273
38274
38275
# File 'lib/google/apis/compute_beta/classes.rb', line 38271

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