Skip to content

Commit

Permalink
Publish sdk.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jan 30, 2024
1 parent 69b90a9 commit befe4e0
Show file tree
Hide file tree
Showing 5 changed files with 162 additions and 6 deletions.
3 changes: 3 additions & 0 deletions aliyun-python-sdk-dypnsapi/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-01-30 Version: 1.1.11
- Publish sdk.

2023-10-25 Version: 1.1.10
- Publish sdk.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-python-sdk-dypnsapi/aliyunsdkdypnsapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.1.10'
__version__ = '1.1.11'
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,21 @@ def get_ResourceOwnerId(self): # Long

def set_ResourceOwnerId(self, ResourceOwnerId): # Long
self.add_query_param('ResourceOwnerId', ResourceOwnerId)
def get_ResourceOwnerAccount(self): # String
return self.get_query_params().get('ResourceOwnerAccount')

def set_ResourceOwnerAccount(self, ResourceOwnerAccount): # String
self.add_query_param('ResourceOwnerAccount', ResourceOwnerAccount)
def get_Origin(self): # String
return self.get_query_params().get('Origin')

def set_Origin(self, Origin): # String
self.add_query_param('Origin', Origin)
def get_SceneCode(self): # String
return self.get_query_params().get('SceneCode')

def set_SceneCode(self, SceneCode): # String
self.add_query_param('SceneCode', SceneCode)
def get_ResourceOwnerAccount(self): # String
return self.get_query_params().get('ResourceOwnerAccount')

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

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
# 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 aliyunsdkdypnsapi.endpoint import endpoint_data

class JyCreateVerifySchemeRequest(RpcRequest):

def __init__(self):
RpcRequest.__init__(self, 'Dypnsapi', '2017-05-25', 'JyCreateVerifyScheme','dypnsapi')
self.set_protocol_type('https')
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_ResourceOwnerId(self): # Long
return self.get_query_params().get('ResourceOwnerId')

def set_ResourceOwnerId(self, ResourceOwnerId): # Long
self.add_query_param('ResourceOwnerId', ResourceOwnerId)
def get_BundleId(self): # String
return self.get_query_params().get('BundleId')

def set_BundleId(self, BundleId): # String
self.add_query_param('BundleId', BundleId)
def get_AppName(self): # String
return self.get_query_params().get('AppName')

def set_AppName(self, AppName): # String
self.add_query_param('AppName', AppName)
def get_PackSign(self): # String
return self.get_query_params().get('PackSign')

def set_PackSign(self, PackSign): # String
self.add_query_param('PackSign', PackSign)
def get_PackName(self): # String
return self.get_query_params().get('PackName')

def set_PackName(self, PackName): # String
self.add_query_param('PackName', PackName)
def get_CuApiCode(self): # Long
return self.get_query_params().get('CuApiCode')

def set_CuApiCode(self, CuApiCode): # Long
self.add_query_param('CuApiCode', CuApiCode)
def get_ResourceOwnerAccount(self): # String
return self.get_query_params().get('ResourceOwnerAccount')

def set_ResourceOwnerAccount(self, ResourceOwnerAccount): # String
self.add_query_param('ResourceOwnerAccount', ResourceOwnerAccount)
def get_CtApiCode(self): # Long
return self.get_query_params().get('CtApiCode')

def set_CtApiCode(self, CtApiCode): # Long
self.add_query_param('CtApiCode', CtApiCode)
def get_OsType(self): # String
return self.get_query_params().get('OsType')

def set_OsType(self, OsType): # String
self.add_query_param('OsType', OsType)
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_CmApiCode(self): # Long
return self.get_query_params().get('CmApiCode')

def set_CmApiCode(self, CmApiCode): # Long
self.add_query_param('CmApiCode', CmApiCode)
def get_SchemeName(self): # String
return self.get_query_params().get('SchemeName')

def set_SchemeName(self, SchemeName): # String
self.add_query_param('SchemeName', SchemeName)
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# 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 aliyunsdkdypnsapi.endpoint import endpoint_data

class JyQueryAppInfoBySceneCodeRequest(RpcRequest):

def __init__(self):
RpcRequest.__init__(self, 'Dypnsapi', '2017-05-25', 'JyQueryAppInfoBySceneCode','dypnsapi')
self.set_protocol_type('https')
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_ResourceOwnerId(self): # Long
return self.get_query_params().get('ResourceOwnerId')

def set_ResourceOwnerId(self, ResourceOwnerId): # Long
self.add_query_param('ResourceOwnerId', ResourceOwnerId)
def get_SceneCode(self): # String
return self.get_query_params().get('SceneCode')

def set_SceneCode(self, SceneCode): # String
self.add_query_param('SceneCode', SceneCode)
def get_ResourceOwnerAccount(self): # String
return self.get_query_params().get('ResourceOwnerAccount')

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

def set_OwnerId(self, OwnerId): # Long
self.add_query_param('OwnerId', OwnerId)

0 comments on commit befe4e0

Please sign in to comment.