Class: Google::Apis::OsconfigV1::InventoryOsInfo
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::OsconfigV1::InventoryOsInfo
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/osconfig_v1/classes.rb,
 lib/google/apis/osconfig_v1/representations.rb,
 lib/google/apis/osconfig_v1/representations.rb
Overview
Operating system information for the VM.
Instance Attribute Summary collapse
- 
  
    
      #architecture  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The system architecture of the operating system. 
- 
  
    
      #hostname  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The VM hostname. 
- 
  
    
      #kernel_release  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The kernel release of the operating system. 
- 
  
    
      #kernel_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The kernel version of the operating system. 
- 
  
    
      #long_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The operating system long name. 
- 
  
    
      #osconfig_agent_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The current version of the OS Config agent running on the VM. 
- 
  
    
      #short_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The operating system short name. 
- 
  
    
      #version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The version of the operating system. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InventoryOsInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of InventoryOsInfo. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ InventoryOsInfo
Returns a new instance of InventoryOsInfo.
| 624 625 626 | # File 'lib/google/apis/osconfig_v1/classes.rb', line 624 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#architecture ⇒ String
The system architecture of the operating system.
Corresponds to the JSON property architecture
| 586 587 588 | # File 'lib/google/apis/osconfig_v1/classes.rb', line 586 def architecture @architecture end | 
#hostname ⇒ String
The VM hostname.
Corresponds to the JSON property hostname
| 591 592 593 | # File 'lib/google/apis/osconfig_v1/classes.rb', line 591 def hostname @hostname end | 
#kernel_release ⇒ String
The kernel release of the operating system.
Corresponds to the JSON property kernelRelease
| 596 597 598 | # File 'lib/google/apis/osconfig_v1/classes.rb', line 596 def kernel_release @kernel_release end | 
#kernel_version ⇒ String
The kernel version of the operating system.
Corresponds to the JSON property kernelVersion
| 601 602 603 | # File 'lib/google/apis/osconfig_v1/classes.rb', line 601 def kernel_version @kernel_version end | 
#long_name ⇒ String
The operating system long name. For example 'Debian GNU/Linux 9' or 'Microsoft
Window Server 2019 Datacenter'.
Corresponds to the JSON property longName
| 607 608 609 | # File 'lib/google/apis/osconfig_v1/classes.rb', line 607 def long_name @long_name end | 
#osconfig_agent_version ⇒ String
The current version of the OS Config agent running on the VM.
Corresponds to the JSON property osconfigAgentVersion
| 612 613 614 | # File 'lib/google/apis/osconfig_v1/classes.rb', line 612 def osconfig_agent_version @osconfig_agent_version end | 
#short_name ⇒ String
The operating system short name. For example, 'windows' or 'debian'.
Corresponds to the JSON property shortName
| 617 618 619 | # File 'lib/google/apis/osconfig_v1/classes.rb', line 617 def short_name @short_name end | 
#version ⇒ String
The version of the operating system.
Corresponds to the JSON property version
| 622 623 624 | # File 'lib/google/apis/osconfig_v1/classes.rb', line 622 def version @version end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 629 630 631 632 633 634 635 636 637 638 | # File 'lib/google/apis/osconfig_v1/classes.rb', line 629 def update!(**args) @architecture = args[:architecture] if args.key?(:architecture) @hostname = args[:hostname] if args.key?(:hostname) @kernel_release = args[:kernel_release] if args.key?(:kernel_release) @kernel_version = args[:kernel_version] if args.key?(:kernel_version) @long_name = args[:long_name] if args.key?(:long_name) @osconfig_agent_version = args[:osconfig_agent_version] if args.key?(:osconfig_agent_version) @short_name = args[:short_name] if args.key?(:short_name) @version = args[:version] if args.key?(:version) end |