Class: Kaltura::KalturaControlPanelCommand

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#batch_indexObject

The index of the batch process that the command refers to



2994
2995
2996
# File 'lib/kaltura_types.rb', line 2994

def batch_index
  @batch_index
end

#causeObject

The reason for the command



3002
3003
3004
# File 'lib/kaltura_types.rb', line 3002

def cause
  @cause
end

#created_atObject

Creation date as Unix timestamp (In seconds)



2976
2977
2978
# File 'lib/kaltura_types.rb', line 2976

def created_at
  @created_at
end

#created_byObject

Creator name



2978
2979
2980
# File 'lib/kaltura_types.rb', line 2978

def created_by
  @created_by
end

#created_by_idObject

Creator id



2984
2985
2986
# File 'lib/kaltura_types.rb', line 2984

def created_by_id
  @created_by_id
end

#descriptionObject

Command description



3004
3005
3006
# File 'lib/kaltura_types.rb', line 3004

def description
  @description
end

#error_descriptionObject

Error description



3006
3007
3008
# File 'lib/kaltura_types.rb', line 3006

def error_description
  @error_description
end

#idObject

The id of the Category



2974
2975
2976
# File 'lib/kaltura_types.rb', line 2974

def id
  @id
end

#scheduler_idObject

The id of the scheduler that the command refers to



2986
2987
2988
# File 'lib/kaltura_types.rb', line 2986

def scheduler_id
  @scheduler_id
end

#statusObject

The command status



3000
3001
3002
# File 'lib/kaltura_types.rb', line 3000

def status
  @status
end

#target_typeObject

The command target type - data center / scheduler / job / job type



2998
2999
3000
# File 'lib/kaltura_types.rb', line 2998

def target_type
  @target_type
end

#typeObject

The command type - stop / start / config



2996
2997
2998
# File 'lib/kaltura_types.rb', line 2996

def type
  @type
end

#updated_atObject

Update date as Unix timestamp (In seconds)



2980
2981
2982
# File 'lib/kaltura_types.rb', line 2980

def updated_at
  @updated_at
end

#updated_byObject

Updater name



2982
2983
2984
# File 'lib/kaltura_types.rb', line 2982

def updated_by
  @updated_by
end

#worker_configured_idObject

The id of the scheduler worker as configured in the ini file



2990
2991
2992
# File 'lib/kaltura_types.rb', line 2990

def worker_configured_id
  @worker_configured_id
end

#worker_idObject

The id of the scheduler worker that the command refers to



2988
2989
2990
# File 'lib/kaltura_types.rb', line 2988

def worker_id
  @worker_id
end

#worker_nameObject

The name of the scheduler worker that the command refers to



2992
2993
2994
# File 'lib/kaltura_types.rb', line 2992

def worker_name
  @worker_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
# File 'lib/kaltura_types.rb', line 3045

def from_xml(xml_element)
	super
	if xml_element.elements['id'] != nil
		self.id = xml_element.elements['id'].text
	end
	if xml_element.elements['createdAt'] != nil
		self.created_at = xml_element.elements['createdAt'].text
	end
	if xml_element.elements['createdBy'] != nil
		self.created_by = xml_element.elements['createdBy'].text
	end
	if xml_element.elements['updatedAt'] != nil
		self.updated_at = xml_element.elements['updatedAt'].text
	end
	if xml_element.elements['updatedBy'] != nil
		self.updated_by = xml_element.elements['updatedBy'].text
	end
	if xml_element.elements['createdById'] != nil
		self.created_by_id = xml_element.elements['createdById'].text
	end
	if xml_element.elements['schedulerId'] != nil
		self.scheduler_id = xml_element.elements['schedulerId'].text
	end
	if xml_element.elements['workerId'] != nil
		self.worker_id = xml_element.elements['workerId'].text
	end
	if xml_element.elements['workerConfiguredId'] != nil
		self.worker_configured_id = xml_element.elements['workerConfiguredId'].text
	end
	if xml_element.elements['workerName'] != nil
		self.worker_name = xml_element.elements['workerName'].text
	end
	if xml_element.elements['batchIndex'] != nil
		self.batch_index = xml_element.elements['batchIndex'].text
	end
	if xml_element.elements['type'] != nil
		self.type = xml_element.elements['type'].text
	end
	if xml_element.elements['targetType'] != nil
		self.target_type = xml_element.elements['targetType'].text
	end
	if xml_element.elements['status'] != nil
		self.status = xml_element.elements['status'].text
	end
	if xml_element.elements['cause'] != nil
		self.cause = xml_element.elements['cause'].text
	end
	if xml_element.elements['description'] != nil
		self.description = xml_element.elements['description'].text
	end
	if xml_element.elements['errorDescription'] != nil
		self.error_description = xml_element.elements['errorDescription'].text
	end
end