Class: Google::Apis::WorkstationsV1beta::GceShieldedInstanceConfig

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

Overview

A set of Compute Engine Shielded instance options.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GceShieldedInstanceConfig

Returns a new instance of GceShieldedInstanceConfig.



779
780
781
# File 'lib/google/apis/workstations_v1beta/classes.rb', line 779

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

Instance Attribute Details

#enable_integrity_monitoringBoolean Also known as: enable_integrity_monitoring?

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

Returns:

  • (Boolean)


764
765
766
# File 'lib/google/apis/workstations_v1beta/classes.rb', line 764

def enable_integrity_monitoring
  @enable_integrity_monitoring
end

#enable_secure_bootBoolean Also known as: enable_secure_boot?

Optional. Whether the instance has Secure Boot enabled. Corresponds to the JSON property enableSecureBoot

Returns:

  • (Boolean)


770
771
772
# File 'lib/google/apis/workstations_v1beta/classes.rb', line 770

def enable_secure_boot
  @enable_secure_boot
end

#enable_vtpmBoolean Also known as: enable_vtpm?

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

Returns:

  • (Boolean)


776
777
778
# File 'lib/google/apis/workstations_v1beta/classes.rb', line 776

def enable_vtpm
  @enable_vtpm
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



784
785
786
787
788
# File 'lib/google/apis/workstations_v1beta/classes.rb', line 784

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