class Azure::MachineLearningServices::Mgmt::V2019_05_01::Models::SystemService
A system service running on a compute.
Attributes
public_ip_address[RW]
@return [String] Public IP address
system_service_type[RW]
@return [String] The type of this system service.
version[RW]
@return [String] The version for this type.
Private Class Methods
mapper()
click to toggle source
Mapper for SystemService
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-05-01/generated/azure_mgmt_machine_learning_services/models/system_service.rb, line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SystemService', type: { name: 'Composite', class_name: 'SystemService', model_properties: { system_service_type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'systemServiceType', type: { name: 'String' } }, public_ip_address: { client_side_validation: true, required: false, read_only: true, serialized_name: 'publicIpAddress', type: { name: 'String' } }, version: { client_side_validation: true, required: false, read_only: true, serialized_name: 'version', type: { name: 'String' } } } } } end