class Azure::Labservices::Mgmt::V2018_10_15::Models::NetworkInterface
Network details of the environment
Attributes
private_ip_address[RW]
@return [String] PrivateIp address of the Compute VM
username[RW]
@return [String] Username of the VM
Private Class Methods
mapper()
click to toggle source
Mapper for NetworkInterface
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-10-15/generated/azure_mgmt_labservices/models/network_interface.rb, line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'NetworkInterface', type: { name: 'Composite', class_name: 'NetworkInterface', model_properties: { private_ip_address: { client_side_validation: true, required: false, read_only: true, serialized_name: 'privateIpAddress', type: { name: 'String' } }, ssh_authority: { client_side_validation: true, required: false, read_only: true, serialized_name: 'sshAuthority', type: { name: 'String' } }, rdp_authority: { client_side_validation: true, required: false, read_only: true, serialized_name: 'rdpAuthority', type: { name: 'String' } }, username: { client_side_validation: true, required: false, read_only: true, serialized_name: 'username', type: { name: 'String' } } } } } end