Class: Google::Apis::WorkloadmanagerV1::SapDiscoveryResourceInstancePropertiesKernelVersion
- Inherits:
-
Object
- Object
- Google::Apis::WorkloadmanagerV1::SapDiscoveryResourceInstancePropertiesKernelVersion
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/workloadmanager_v1/classes.rb,
lib/google/apis/workloadmanager_v1/representations.rb,
lib/google/apis/workloadmanager_v1/representations.rb
Overview
KernelVersion encapsulates the kernel version data for the system.
Instance Attribute Summary collapse
-
#distro_kernel ⇒ Google::Apis::WorkloadmanagerV1::SapDiscoveryResourceInstancePropertiesKernelVersionVersion
Version is reported as Major.Minor.Build.Patch.
-
#os_kernel ⇒ Google::Apis::WorkloadmanagerV1::SapDiscoveryResourceInstancePropertiesKernelVersionVersion
Version is reported as Major.Minor.Build.Patch.
-
#raw_string ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SapDiscoveryResourceInstancePropertiesKernelVersion
constructor
A new instance of SapDiscoveryResourceInstancePropertiesKernelVersion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SapDiscoveryResourceInstancePropertiesKernelVersion
Returns a new instance of SapDiscoveryResourceInstancePropertiesKernelVersion.
3086 3087 3088 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 3086 def initialize(**args) update!(**args) end |
Instance Attribute Details
#distro_kernel ⇒ Google::Apis::WorkloadmanagerV1::SapDiscoveryResourceInstancePropertiesKernelVersionVersion
Version is reported as Major.Minor.Build.Patch.
Corresponds to the JSON property distroKernel
3074 3075 3076 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 3074 def distro_kernel @distro_kernel end |
#os_kernel ⇒ Google::Apis::WorkloadmanagerV1::SapDiscoveryResourceInstancePropertiesKernelVersionVersion
Version is reported as Major.Minor.Build.Patch.
Corresponds to the JSON property osKernel
3079 3080 3081 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 3079 def os_kernel @os_kernel end |
#raw_string ⇒ String
Optional. Raw string of the kernel version.
Corresponds to the JSON property rawString
3084 3085 3086 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 3084 def raw_string @raw_string end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3091 3092 3093 3094 3095 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 3091 def update!(**args) @distro_kernel = args[:distro_kernel] if args.key?(:distro_kernel) @os_kernel = args[:os_kernel] if args.key?(:os_kernel) @raw_string = args[:raw_string] if args.key?(:raw_string) end |