class TencentCloud::Advisor::V20200721::Client
def DescribeStrategies(request)
-
request:
() -- Request instance for DescribeStrategies.
def DescribeStrategies(request) body = send_request('DescribeStrategies', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = DescribeStrategiesResponse.new model.deserialize(response['Response']) model else code = response['Response']['Error']['Code'] message = response['Response']['Error']['Message'] reqid = response['Response']['RequestId'] raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid) end rescue TencentCloud::Common::TencentCloudSDKException => e raise e rescue StandardError => e raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect) end
def DescribeTaskStrategyRisks(request)
-
request:
() -- Request instance for DescribeTaskStrategyRisks.
def DescribeTaskStrategyRisks(request) body = send_request('DescribeTaskStrategyRisks', request.serialize) response = JSON.parse(body) if response['Response'].key?('Error') == false model = DescribeTaskStrategyRisksResponse.new model.deserialize(response['Response']) model else code = response['Response']['Error']['Code'] message = response['Response']['Error']['Message'] reqid = response['Response']['RequestId'] raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid) end rescue TencentCloud::Common::TencentCloudSDKException => e raise e rescue StandardError => e raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect) end
def initialize(credential, region, profile = nil)
def initialize(credential, region, profile = nil) api_version = '2020-07-21' api_endpoint = 'advisor.tencentcloudapi.com' sdk_version = 'ADVISOR_' + File.read(File.expand_path('../VERSION', __dir__)).strip super(credential, region, api_version, api_endpoint, sdk_version, profile) end