Skip to content

Commit 19d6ba7

Browse files
Update client libraries for master
1 parent e083600 commit 19d6ba7

File tree

5 files changed

+22
-5
lines changed

5 files changed

+22
-5
lines changed

KalturaClient/Client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def __init__(self, config, remove_data_content:bool = False):
172172
self.callsQueue = []
173173
self.requestHeaders = {}
174174
self.clientConfiguration = {
175-
'clientTag': 'python-25-10-04',
175+
'clientTag': 'python-25-10-25',
176176
'apiVersion': API_VERSION,
177177
}
178178
self.requestConfiguration = {}

KalturaClient/Plugins/Core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
KalturaServiceBase,
4343
)
4444

45-
API_VERSION = '22.4.0'
45+
API_VERSION = '22.5.0'
4646

4747
########## enums ##########
4848
# @package Kaltura

KalturaClient/Plugins/Room.py

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ def __init__(self,
148148
responseLanguage = NotImplemented,
149149
roomType = NotImplemented,
150150
broadcastEntryId = NotImplemented,
151-
templateRoomEntryId = NotImplemented):
151+
templateRoomEntryId = NotImplemented,
152+
recordedEntryId = NotImplemented):
152153
KalturaBaseEntry.__init__(self,
153154
id,
154155
name,
@@ -215,11 +216,16 @@ def __init__(self,
215216
# @var str
216217
self.templateRoomEntryId = templateRoomEntryId
217218

219+
# The entryId of the recording
220+
# @var str
221+
self.recordedEntryId = recordedEntryId
222+
218223

219224
PROPERTY_LOADERS = {
220225
'roomType': (KalturaEnumsFactory.createInt, "KalturaRoomType"),
221226
'broadcastEntryId': getXmlNodeText,
222227
'templateRoomEntryId': getXmlNodeText,
228+
'recordedEntryId': getXmlNodeText,
223229
}
224230

225231
def fromXml(self, node):
@@ -232,6 +238,7 @@ def toParams(self):
232238
kparams.addIntEnumIfDefined("roomType", self.roomType)
233239
kparams.addStringIfDefined("broadcastEntryId", self.broadcastEntryId)
234240
kparams.addStringIfDefined("templateRoomEntryId", self.templateRoomEntryId)
241+
kparams.addStringIfDefined("recordedEntryId", self.recordedEntryId)
235242
return kparams
236243

237244
def getRoomType(self):
@@ -252,6 +259,12 @@ def getTemplateRoomEntryId(self):
252259
def setTemplateRoomEntryId(self, newTemplateRoomEntryId):
253260
self.templateRoomEntryId = newTemplateRoomEntryId
254261

262+
def getRecordedEntryId(self):
263+
return self.recordedEntryId
264+
265+
def setRecordedEntryId(self, newRecordedEntryId):
266+
self.recordedEntryId = newRecordedEntryId
267+
255268

256269
# @package Kaltura
257270
# @subpackage Client

KalturaClient/Plugins/Room.pyi

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ class KalturaRoomEntry(KalturaBaseEntry):
6969
roomType: KalturaRoomType
7070
broadcastEntryId: str
7171
templateRoomEntryId: str
72+
recordedEntryId: str
7273
def __init__(self,
7374
id: str = NotImplemented,
7475
name: str = NotImplemented,
@@ -125,14 +126,17 @@ class KalturaRoomEntry(KalturaBaseEntry):
125126
responseLanguage: str = NotImplemented,
126127
roomType: KalturaRoomType = NotImplemented,
127128
broadcastEntryId: str = NotImplemented,
128-
templateRoomEntryId: str = NotImplemented): ...
129+
templateRoomEntryId: str = NotImplemented,
130+
recordedEntryId: str = NotImplemented): ...
129131

130132
def getRoomType(self) -> KalturaRoomType: ...
131133
def setRoomType(self, newRoomType: KalturaRoomType) -> None: ...
132134
def getBroadcastEntryId(self) -> str: ...
133135
def setBroadcastEntryId(self, newBroadcastEntryId: str) -> None: ...
134136
def getTemplateRoomEntryId(self) -> str: ...
135137
def setTemplateRoomEntryId(self, newTemplateRoomEntryId: str) -> None: ...
138+
def getRecordedEntryId(self) -> str: ...
139+
def setRecordedEntryId(self, newRecordedEntryId: str) -> None: ...
136140

137141
class KalturaRoomEntryListResponse(KalturaListResponse):
138142
objects: List[KalturaRoomEntry]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='KalturaApiClient',
9-
version='22.4.0',
9+
version='22.5.0',
1010
url='https://github.com/kaltura/KalturaGeneratedAPIClientsPython',
1111
packages=['KalturaClient', 'KalturaClient.Plugins'],
1212
install_requires=['requests>=2.4.2', 'requests-toolbelt', 'six'],

0 commit comments

Comments
 (0)