Class: Google::Apis::MigrationcenterV1alpha1::GuestConfigDetails
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::GuestConfigDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1alpha1/classes.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb
Overview
Guest OS config information.
Instance Attribute Summary collapse
-
#fstab ⇒ Google::Apis::MigrationcenterV1alpha1::FstabEntryList
Fstab content.
-
#hosts ⇒ Google::Apis::MigrationcenterV1alpha1::HostsEntryList
Hosts content.
-
#issue ⇒ String
OS issue (typically /etc/issue in Linux).
-
#nfs_exports ⇒ Google::Apis::MigrationcenterV1alpha1::NfsExportList
NFS exports.
-
#selinux ⇒ Google::Apis::MigrationcenterV1alpha1::Selinux
SELinux details.
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.
1718 1719 1720 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1718 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fstab ⇒ Google::Apis::MigrationcenterV1alpha1::FstabEntryList
Fstab content.
Corresponds to the JSON property fstab
1696 1697 1698 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1696 def fstab @fstab end |
#hosts ⇒ Google::Apis::MigrationcenterV1alpha1::HostsEntryList
Hosts content.
Corresponds to the JSON property hosts
1701 1702 1703 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1701 def hosts @hosts end |
#issue ⇒ String
OS issue (typically /etc/issue in Linux).
Corresponds to the JSON property issue
1706 1707 1708 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1706 def issue @issue end |
#nfs_exports ⇒ Google::Apis::MigrationcenterV1alpha1::NfsExportList
NFS exports.
Corresponds to the JSON property nfsExports
1711 1712 1713 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1711 def nfs_exports @nfs_exports end |
#selinux ⇒ Google::Apis::MigrationcenterV1alpha1::Selinux
SELinux details.
Corresponds to the JSON property selinux
1716 1717 1718 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1716 def selinux @selinux end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1723 1724 1725 1726 1727 1728 1729 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1723 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 = args[:selinux] if args.key?(:selinux) end |