-
Notifications
You must be signed in to change notification settings - Fork 587
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CreateLindormInstance api support auto renew
- Loading branch information
Showing
10 changed files
with
490 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '3.1.13' | ||
__version__ = '3.1.14' |
73 changes: 73 additions & 0 deletions
73
aliyun-python-sdk-hitsdb/aliyunsdkhitsdb/request/v20200615/CreateLdpsComputeGroupRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# 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 aliyunsdkhitsdb.endpoint import endpoint_data | ||
|
||
class CreateLdpsComputeGroupRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'hitsdb', '2020-06-15', 'CreateLdpsComputeGroup','hitsdb') | ||
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_SecurityToken(self): # String | ||
return self.get_query_params().get('SecurityToken') | ||
|
||
def set_SecurityToken(self, SecurityToken): # String | ||
self.add_query_param('SecurityToken', SecurityToken) | ||
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_OwnerAccount(self): # String | ||
return self.get_query_params().get('OwnerAccount') | ||
|
||
def set_OwnerAccount(self, OwnerAccount): # String | ||
self.add_query_param('OwnerAccount', OwnerAccount) | ||
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_GroupName(self): # String | ||
return self.get_query_params().get('GroupName') | ||
|
||
def set_GroupName(self, GroupName): # String | ||
self.add_query_param('GroupName', GroupName) | ||
def get_InstanceId(self): # String | ||
return self.get_query_params().get('InstanceId') | ||
|
||
def set_InstanceId(self, InstanceId): # String | ||
self.add_query_param('InstanceId', InstanceId) | ||
def get_Properties(self): # String | ||
return self.get_query_params().get('Properties') | ||
|
||
def set_Properties(self, Properties): # String | ||
self.add_query_param('Properties', Properties) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
aliyun-python-sdk-hitsdb/aliyunsdkhitsdb/request/v20200615/DeleteLdpsComputeGroupRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 aliyunsdkhitsdb.endpoint import endpoint_data | ||
|
||
class DeleteLdpsComputeGroupRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'hitsdb', '2020-06-15', 'DeleteLdpsComputeGroup','hitsdb') | ||
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_SecurityToken(self): # String | ||
return self.get_query_params().get('SecurityToken') | ||
|
||
def set_SecurityToken(self, SecurityToken): # String | ||
self.add_query_param('SecurityToken', SecurityToken) | ||
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_OwnerAccount(self): # String | ||
return self.get_query_params().get('OwnerAccount') | ||
|
||
def set_OwnerAccount(self, OwnerAccount): # String | ||
self.add_query_param('OwnerAccount', OwnerAccount) | ||
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_GroupName(self): # String | ||
return self.get_query_params().get('GroupName') | ||
|
||
def set_GroupName(self, GroupName): # String | ||
self.add_query_param('GroupName', GroupName) | ||
def get_InstanceId(self): # String | ||
return self.get_query_params().get('InstanceId') | ||
|
||
def set_InstanceId(self, InstanceId): # String | ||
self.add_query_param('InstanceId', InstanceId) |
63 changes: 63 additions & 0 deletions
63
aliyun-python-sdk-hitsdb/aliyunsdkhitsdb/request/v20200615/GetEngineDefaultAuthRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# 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 aliyunsdkhitsdb.endpoint import endpoint_data | ||
|
||
class GetEngineDefaultAuthRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'hitsdb', '2020-06-15', 'GetEngineDefaultAuth','hitsdb') | ||
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_SecurityToken(self): # String | ||
return self.get_query_params().get('SecurityToken') | ||
|
||
def set_SecurityToken(self, SecurityToken): # String | ||
self.add_query_param('SecurityToken', SecurityToken) | ||
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_OwnerAccount(self): # String | ||
return self.get_query_params().get('OwnerAccount') | ||
|
||
def set_OwnerAccount(self, OwnerAccount): # String | ||
self.add_query_param('OwnerAccount', OwnerAccount) | ||
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_InstanceId(self): # String | ||
return self.get_query_params().get('InstanceId') | ||
|
||
def set_InstanceId(self, InstanceId): # String | ||
self.add_query_param('InstanceId', InstanceId) |
68 changes: 68 additions & 0 deletions
68
aliyun-python-sdk-hitsdb/aliyunsdkhitsdb/request/v20200615/GetLdpsComputeGroupRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 aliyunsdkhitsdb.endpoint import endpoint_data | ||
|
||
class GetLdpsComputeGroupRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'hitsdb', '2020-06-15', 'GetLdpsComputeGroup','hitsdb') | ||
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_SecurityToken(self): # String | ||
return self.get_query_params().get('SecurityToken') | ||
|
||
def set_SecurityToken(self, SecurityToken): # String | ||
self.add_query_param('SecurityToken', SecurityToken) | ||
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_OwnerAccount(self): # String | ||
return self.get_query_params().get('OwnerAccount') | ||
|
||
def set_OwnerAccount(self, OwnerAccount): # String | ||
self.add_query_param('OwnerAccount', OwnerAccount) | ||
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_GroupName(self): # String | ||
return self.get_query_params().get('GroupName') | ||
|
||
def set_GroupName(self, GroupName): # String | ||
self.add_query_param('GroupName', GroupName) | ||
def get_InstanceId(self): # String | ||
return self.get_query_params().get('InstanceId') | ||
|
||
def set_InstanceId(self, InstanceId): # String | ||
self.add_query_param('InstanceId', InstanceId) |
63 changes: 63 additions & 0 deletions
63
aliyun-python-sdk-hitsdb/aliyunsdkhitsdb/request/v20200615/ListLdpsComputeGroupsRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# 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 aliyunsdkhitsdb.endpoint import endpoint_data | ||
|
||
class ListLdpsComputeGroupsRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'hitsdb', '2020-06-15', 'ListLdpsComputeGroups','hitsdb') | ||
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_SecurityToken(self): # String | ||
return self.get_query_params().get('SecurityToken') | ||
|
||
def set_SecurityToken(self, SecurityToken): # String | ||
self.add_query_param('SecurityToken', SecurityToken) | ||
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_OwnerAccount(self): # String | ||
return self.get_query_params().get('OwnerAccount') | ||
|
||
def set_OwnerAccount(self, OwnerAccount): # String | ||
self.add_query_param('OwnerAccount', OwnerAccount) | ||
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_InstanceId(self): # String | ||
return self.get_query_params().get('InstanceId') | ||
|
||
def set_InstanceId(self, InstanceId): # String | ||
self.add_query_param('InstanceId', InstanceId) |
Oops, something went wrong.