Class: Google::Apis::MigrationcenterV1alpha1::GuestConfigDetails

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GuestConfigDetails

Returns a new instance of GuestConfigDetails.



1843
1844
1845
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1843

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

Instance Attribute Details

#fstabGoogle::Apis::MigrationcenterV1alpha1::FstabEntryList

Fstab content. Corresponds to the JSON property fstab



1821
1822
1823
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1821

def fstab
  @fstab
end

#hostsGoogle::Apis::MigrationcenterV1alpha1::HostsEntryList

Hosts content. Corresponds to the JSON property hosts



1826
1827
1828
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1826

def hosts
  @hosts
end

#issueString

OS issue (typically /etc/issue in Linux). Corresponds to the JSON property issue

Returns:

  • (String)


1831
1832
1833
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1831

def issue
  @issue
end

#nfs_exportsGoogle::Apis::MigrationcenterV1alpha1::NfsExportList

NFS exports. Corresponds to the JSON property nfsExports



1836
1837
1838
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1836

def nfs_exports
  @nfs_exports
end

#selinuxGoogle::Apis::MigrationcenterV1alpha1::Selinux

SELinux details. Corresponds to the JSON property selinux



1841
1842
1843
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1841

def selinux
  @selinux
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1848
1849
1850
1851
1852
1853
1854
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1848

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