Skip to content

Commit

Permalink
-Fixed DescribeVodMediaPlayData接口返回数据类型错误
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed May 8, 2024
1 parent 317f3fb commit ff0c207
Show file tree
Hide file tree
Showing 3 changed files with 72 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-05-08 Version: 2.16.23
-Fixed DescribeVodMediaPlayData接口返回数据类型错误

2024-04-25 Version: 2.16.22
- Generated 2017-03-21 for `vod`.

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.22'
__version__ = '2.16.23'
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

from aliyunsdkcore.request import RpcRequest
from aliyunsdkvod.endpoint import endpoint_data

class DescribeVodDomainQpsDataRequest(RpcRequest):

def __init__(self):
RpcRequest.__init__(self, 'vod', '2017-03-21', 'DescribeVodDomainQpsData','vod')
self.set_method('POST')

if hasattr(self, "endpoint_map"):
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
if hasattr(self, "endpoint_regional"):
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())

def get_LocationNameEn(self): # String
return self.get_query_params().get('LocationNameEn')

def set_LocationNameEn(self, LocationNameEn): # String
self.add_query_param('LocationNameEn', LocationNameEn)
def get_StartTime(self): # String
return self.get_query_params().get('StartTime')

def set_StartTime(self, StartTime): # String
self.add_query_param('StartTime', StartTime)
def get_IspNameEn(self): # String
return self.get_query_params().get('IspNameEn')

def set_IspNameEn(self, IspNameEn): # String
self.add_query_param('IspNameEn', IspNameEn)
def get_DomainName(self): # String
return self.get_query_params().get('DomainName')

def set_DomainName(self, DomainName): # String
self.add_query_param('DomainName', DomainName)
def get_EndTime(self): # String
return self.get_query_params().get('EndTime')

def set_EndTime(self, EndTime): # String
self.add_query_param('EndTime', EndTime)
def get_OwnerId(self): # Long
return self.get_query_params().get('OwnerId')

def set_OwnerId(self, OwnerId): # Long
self.add_query_param('OwnerId', OwnerId)
def get_Interval(self): # String
return self.get_query_params().get('Interval')

def set_Interval(self, Interval): # String
self.add_query_param('Interval', Interval)

0 comments on commit ff0c207

Please sign in to comment.