Class: Google::Apis::ComputeBeta::ShieldedInstanceConfig

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 Instance options.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ShieldedInstanceConfig

Returns a new instance of ShieldedInstanceConfig.



61536
61537
61538
# File 'lib/google/apis/compute_beta/classes.rb', line 61536

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.Enabled by default. Corresponds to the JSON property enableIntegrityMonitoring

Returns:

  • (Boolean)


61519
61520
61521
# File 'lib/google/apis/compute_beta/classes.rb', line 61519

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.Disabled by default. Corresponds to the JSON property enableSecureBoot

Returns:

  • (Boolean)


61526
61527
61528
# File 'lib/google/apis/compute_beta/classes.rb', line 61526

def enable_secure_boot
  @enable_secure_boot
end

#enable_vtpmBoolean Also known as: enable_vtpm?

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

Returns:

  • (Boolean)


61533
61534
61535
# File 'lib/google/apis/compute_beta/classes.rb', line 61533

def enable_vtpm
  @enable_vtpm
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



61541
61542
61543
61544
61545
# File 'lib/google/apis/compute_beta/classes.rb', line 61541

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