Skip to content

Commit

Permalink
SubmitTranscodeJobs Add SessionId.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Nov 28, 2024
1 parent b486fb1 commit 60dac25
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-python-sdk-vod/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-11-28 Version: 2.16.27
- SubmitTranscodeJobs Add SessionId.

2024-10-11 Version: 2.16.26
- GetPlayInfo Add EncryptMode.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-python-sdk-vod/aliyunsdkvod/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.16.26'
__version__ = '2.16.27'
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ def __init__(self):
if hasattr(self, "endpoint_regional"):
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())

def get_SessionId(self): # String
return self.get_query_params().get('SessionId')

def set_SessionId(self, SessionId): # String
self.add_query_param('SessionId', SessionId)
def get_UserData(self): # String
return self.get_query_params().get('UserData')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ def get_CoverURL(self): # String

def set_CoverURL(self, CoverURL): # String
self.add_query_param('CoverURL', CoverURL)
def get_UserData(self): # String
return self.get_query_params().get('UserData')

def set_UserData(self, UserData): # String
self.add_query_param('UserData', UserData)
def get_CateId(self): # Long
return self.get_query_params().get('CateId')

Expand Down

0 comments on commit 60dac25

Please sign in to comment.