Skip to content

Commit 26afff0

Browse files
committed
JARVIS SDK Auto Released By shenshi,Version:1.2.4
发布日志: 1, Update Dependency
1 parent e9b0c19 commit 26afff0

38 files changed

+860
-30
lines changed

aliyun-python-sdk-jarvis/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-03-13 Version: 1.2.4
2+
1, Update Dependency
3+
14
2018-06-21 Version: 1.2.3
25
1, This is add InstanceList.
36

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.2.3"
1+
__version__ = "1.2.4"

aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateAccessWhiteListGroupRequest.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class CreateAccessWhiteListGroupRequest(RpcRequest):
2222

2323
def __init__(self):
24-
RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateAccessWhiteListGroup')
24+
RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateAccessWhiteListGroup','jarvis')
2525

2626
def get_Note(self):
2727
return self.get_query_params().get('Note')
@@ -77,6 +77,12 @@ def get_WhiteListType(self):
7777
def set_WhiteListType(self,WhiteListType):
7878
self.add_query_param('WhiteListType',WhiteListType)
7979

80+
def get_InstanceInfoList(self):
81+
return self.get_query_params().get('InstanceInfoList')
82+
83+
def set_InstanceInfoList(self,InstanceInfoList):
84+
self.add_query_param('InstanceInfoList',InstanceInfoList)
85+
8086
def get_Lang(self):
8187
return self.get_query_params().get('Lang')
8288

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class CreateAllEcsWhiteListRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateAllEcsWhiteList','jarvis')
25+
26+
def get_ResourceOwnerId(self):
27+
return self.get_query_params().get('ResourceOwnerId')
28+
29+
def set_ResourceOwnerId(self,ResourceOwnerId):
30+
self.add_query_param('ResourceOwnerId',ResourceOwnerId)
31+
32+
def get_SrcIP(self):
33+
return self.get_query_params().get('SrcIP')
34+
35+
def set_SrcIP(self,SrcIP):
36+
self.add_query_param('SrcIP',SrcIP)
37+
38+
def get_SourceIp(self):
39+
return self.get_query_params().get('SourceIp')
40+
41+
def set_SourceIp(self,SourceIp):
42+
self.add_query_param('SourceIp',SourceIp)
43+
44+
def get_SourceCode(self):
45+
return self.get_query_params().get('SourceCode')
46+
47+
def set_SourceCode(self,SourceCode):
48+
self.add_query_param('SourceCode',SourceCode)
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class CreateCdnIpRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateCdnIp','jarvis')
25+
26+
def get_CdnIpList(self):
27+
return self.get_query_params().get('CdnIpList')
28+
29+
def set_CdnIpList(self,CdnIpList):
30+
self.add_query_param('CdnIpList',CdnIpList)
31+
32+
def get_ResourceOwnerId(self):
33+
return self.get_query_params().get('ResourceOwnerId')
34+
35+
def set_ResourceOwnerId(self,ResourceOwnerId):
36+
self.add_query_param('ResourceOwnerId',ResourceOwnerId)
37+
38+
def get_SourceIp(self):
39+
return self.get_query_params().get('SourceIp')
40+
41+
def set_SourceIp(self,SourceIp):
42+
self.add_query_param('SourceIp',SourceIp)
43+
44+
def get_Lang(self):
45+
return self.get_query_params().get('Lang')
46+
47+
def set_Lang(self,Lang):
48+
self.add_query_param('Lang',Lang)
49+
50+
def get_SourceCode(self):
51+
return self.get_query_params().get('SourceCode')
52+
53+
def set_SourceCode(self,SourceCode):
54+
self.add_query_param('SourceCode',SourceCode)
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class CreateCdnSubscriptionRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateCdnSubscription','jarvis')
25+
26+
def get_ResourceOwnerId(self):
27+
return self.get_query_params().get('ResourceOwnerId')
28+
29+
def set_ResourceOwnerId(self,ResourceOwnerId):
30+
self.add_query_param('ResourceOwnerId',ResourceOwnerId)
31+
32+
def get_SourceIp(self):
33+
return self.get_query_params().get('SourceIp')
34+
35+
def set_SourceIp(self,SourceIp):
36+
self.add_query_param('SourceIp',SourceIp)
37+
38+
def get_Lang(self):
39+
return self.get_query_params().get('Lang')
40+
41+
def set_Lang(self,Lang):
42+
self.add_query_param('Lang',Lang)
43+
44+
def get_CdnUidList(self):
45+
return self.get_query_params().get('CdnUidList')
46+
47+
def set_CdnUidList(self,CdnUidList):
48+
self.add_query_param('CdnUidList',CdnUidList)
49+
50+
def get_SourceCode(self):
51+
return self.get_query_params().get('SourceCode')
52+
53+
def set_SourceCode(self,SourceCode):
54+
self.add_query_param('SourceCode',SourceCode)
Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class CreateConsoleAccessWhiteListRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateConsoleAccessWhiteList','jarvis')
25+
26+
def get_Note(self):
27+
return self.get_query_params().get('Note')
28+
29+
def set_Note(self,Note):
30+
self.add_query_param('Note',Note)
31+
32+
def get_ResourceOwnerId(self):
33+
return self.get_query_params().get('ResourceOwnerId')
34+
35+
def set_ResourceOwnerId(self,ResourceOwnerId):
36+
self.add_query_param('ResourceOwnerId',ResourceOwnerId)
37+
38+
def get_SrcIP(self):
39+
return self.get_query_params().get('SrcIP')
40+
41+
def set_SrcIP(self,SrcIP):
42+
self.add_query_param('SrcIP',SrcIP)
43+
44+
def get_SourceIp(self):
45+
return self.get_query_params().get('SourceIp')
46+
47+
def set_SourceIp(self,SourceIp):
48+
self.add_query_param('SourceIp',SourceIp)
49+
50+
def get_DstPort(self):
51+
return self.get_query_params().get('DstPort')
52+
53+
def set_DstPort(self,DstPort):
54+
self.add_query_param('DstPort',DstPort)
55+
56+
def get_InstanceIdList(self):
57+
return self.get_query_params().get('InstanceIdList')
58+
59+
def set_InstanceIdList(self,InstanceIdList):
60+
self.add_query_param('InstanceIdList',InstanceIdList)
61+
62+
def get_LiveTime(self):
63+
return self.get_query_params().get('LiveTime')
64+
65+
def set_LiveTime(self,LiveTime):
66+
self.add_query_param('LiveTime',LiveTime)
67+
68+
def get_ProductName(self):
69+
return self.get_query_params().get('ProductName')
70+
71+
def set_ProductName(self,ProductName):
72+
self.add_query_param('ProductName',ProductName)
73+
74+
def get_WhiteListType(self):
75+
return self.get_query_params().get('WhiteListType')
76+
77+
def set_WhiteListType(self,WhiteListType):
78+
self.add_query_param('WhiteListType',WhiteListType)
79+
80+
def get_InstanceInfoList(self):
81+
return self.get_query_params().get('InstanceInfoList')
82+
83+
def set_InstanceInfoList(self,InstanceInfoList):
84+
self.add_query_param('InstanceInfoList',InstanceInfoList)
85+
86+
def get_Lang(self):
87+
return self.get_query_params().get('Lang')
88+
89+
def set_Lang(self,Lang):
90+
self.add_query_param('Lang',Lang)
91+
92+
def get_SourceCode(self):
93+
return self.get_query_params().get('SourceCode')
94+
95+
def set_SourceCode(self,SourceCode):
96+
self.add_query_param('SourceCode',SourceCode)

aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateCpmcPunishFeedBackRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class CreateCpmcPunishFeedBackRequest(RpcRequest):
2222

2323
def __init__(self):
24-
RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateCpmcPunishFeedBack')
24+
RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateCpmcPunishFeedBack','jarvis')
2525

2626
def get_FeedBack(self):
2727
return self.get_query_params().get('FeedBack')

aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/CreateUidWhiteListGroupRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class CreateUidWhiteListGroupRequest(RpcRequest):
2222

2323
def __init__(self):
24-
RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateUidWhiteListGroup')
24+
RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'CreateUidWhiteListGroup','jarvis')
2525

2626
def get_Note(self):
2727
return self.get_query_params().get('Note')

aliyun-python-sdk-jarvis/aliyunsdkjarvis/request/v20180206/DeleteAccessWhiteListGroupRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class DeleteAccessWhiteListGroupRequest(RpcRequest):
2222

2323
def __init__(self):
24-
RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DeleteAccessWhiteListGroup')
24+
RpcRequest.__init__(self, 'jarvis', '2018-02-06', 'DeleteAccessWhiteListGroup','jarvis')
2525

2626
def get_GroupIdList(self):
2727
return self.get_query_params().get('GroupIdList')

0 commit comments

Comments
 (0)