Skip to content

Commit 88836f3

Browse files
publish jdcloud-sdk-python 1.6.159
1 parent 9ac4cb3 commit 88836f3

8 files changed

Lines changed: 67 additions & 1 deletion

File tree

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2019-05-27 version: 0.1.0
2+
1. 初始版本

jdcloud_sdk/services/jdworkspace/__init__.py

Whitespace-only changes.

jdcloud_sdk/services/jdworkspace/apis/__init__.py

Whitespace-only changes.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# coding=utf8
2+
3+
# Copyright 2018 JDCLOUD.COM
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
# NOTE: This class is auto generated by the jdcloud code generator program.
18+
19+
from jdcloud_sdk.core.jdcloudclient import JDCloudClient
20+
from jdcloud_sdk.core.config import Config
21+
22+
23+
class JdworkspaceClient(JDCloudClient):
24+
25+
def __init__(self, credential, config=None, logger=None):
26+
if config is None:
27+
config = Config('jdworkspace.jdcloud-api.com')
28+
29+
super(JdworkspaceClient, self).__init__(credential, config, 'jdworkspace', '0.1.0', logger)

jdcloud_sdk/services/jdworkspace/client/__init__.py

Whitespace-only changes.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# coding=utf8
2+
3+
# Copyright 2018 JDCLOUD.COM
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
# NOTE: This class is auto generated by the jdcloud code generator program.
18+
19+
20+
class ResourceInfo(object):
21+
22+
def __init__(self, resourceId=None, resourceName=None, remark=None, serviceCode=None, bind=None):
23+
"""
24+
:param resourceId: (Optional) 实例id
25+
:param resourceName: (Optional) 实例名称
26+
:param remark: (Optional) 备注
27+
:param serviceCode: (Optional) serivceCode
28+
:param bind: (Optional) 绑定实例信息列表
29+
"""
30+
31+
self.resourceId = resourceId
32+
self.resourceName = resourceName
33+
self.remark = remark
34+
self.serviceCode = serviceCode
35+
self.bind = bind

jdcloud_sdk/services/jdworkspace/models/__init__.py

Whitespace-only changes.

setup.py

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

1010
setup(
1111
name='jdcloud_sdk',
12-
version="1.6.158",
12+
version="1.6.159",
1313
long_description=long_description,
1414
long_description_content_type="text/markdown",
1515
author='JDCloud API Gateway Team',

0 commit comments

Comments
 (0)