Class: Google::Apis::MigrationcenterV1::GuestConfigDetails
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1::GuestConfigDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1/classes.rb,
lib/google/apis/migrationcenter_v1/representations.rb,
lib/google/apis/migrationcenter_v1/representations.rb
Overview
Guest OS config information.
Instance Attribute Summary collapse
-
#fstab ⇒ Google::Apis::MigrationcenterV1::FstabEntryList
Fstab content.
-
#hosts ⇒ Google::Apis::MigrationcenterV1::HostsEntryList
Hosts content.
-
#issue ⇒ String
OS issue (typically /etc/issue in Linux).
-
#nfs_exports ⇒ Google::Apis::MigrationcenterV1::NfsExportList
NFS exports.
-
#selinux_mode ⇒ String
Security-Enhanced Linux (SELinux) mode.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GuestConfigDetails
constructor
A new instance of GuestConfigDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GuestConfigDetails
Returns a new instance of GuestConfigDetails.
2204 2205 2206 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2204 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fstab ⇒ Google::Apis::MigrationcenterV1::FstabEntryList
Fstab content.
Corresponds to the JSON property fstab
2182 2183 2184 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2182 def fstab @fstab end |
#hosts ⇒ Google::Apis::MigrationcenterV1::HostsEntryList
Hosts content.
Corresponds to the JSON property hosts
2187 2188 2189 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2187 def hosts @hosts end |
#issue ⇒ String
OS issue (typically /etc/issue in Linux).
Corresponds to the JSON property issue
2192 2193 2194 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2192 def issue @issue end |
#nfs_exports ⇒ Google::Apis::MigrationcenterV1::NfsExportList
NFS exports.
Corresponds to the JSON property nfsExports
2197 2198 2199 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2197 def nfs_exports @nfs_exports end |
#selinux_mode ⇒ String
Security-Enhanced Linux (SELinux) mode.
Corresponds to the JSON property selinuxMode
2202 2203 2204 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2202 def selinux_mode @selinux_mode end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2209 2210 2211 2212 2213 2214 2215 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2209 def update!(**args) @fstab = args[:fstab] if args.key?(:fstab) @hosts = args[:hosts] if args.key?(:hosts) @issue = args[:issue] if args.key?(:issue) @nfs_exports = args[:nfs_exports] if args.key?(:nfs_exports) @selinux_mode = args[:selinux_mode] if args.key?(:selinux_mode) end |