Class: Google::Apis::OsconfigV1beta::LookupEffectiveGuestPolicyRequest

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

Overview

A request message for getting the effective guest policy assigned to the instance.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ LookupEffectiveGuestPolicyRequest

Returns a new instance of LookupEffectiveGuestPolicyRequest.



805
806
807
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 805

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

Instance Attribute Details

#os_architectureString

Architecture of OS running on the instance. The OS Config agent only provides this field for targeting if OS Inventory is enabled for that instance. Corresponds to the JSON property osArchitecture

Returns:

  • (String)


789
790
791
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 789

def os_architecture
  @os_architecture
end

#os_short_nameString

Short name of the OS running on the instance. The OS Config agent only provides this field for targeting if OS Inventory is enabled for that instance. Corresponds to the JSON property osShortName

Returns:

  • (String)


796
797
798
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 796

def os_short_name
  @os_short_name
end

#os_versionString

Version of the OS running on the instance. The OS Config agent only provides this field for targeting if OS Inventory is enabled for that VM instance. Corresponds to the JSON property osVersion

Returns:

  • (String)


803
804
805
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 803

def os_version
  @os_version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



810
811
812
813
814
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 810

def update!(**args)
  @os_architecture = args[:os_architecture] if args.key?(:os_architecture)
  @os_short_name = args[:os_short_name] if args.key?(:os_short_name)
  @os_version = args[:os_version] if args.key?(:os_version)
end