tencentcloud-sdk-aca 3.0.967

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: dc3fda193761c49edc5bed4fb00ffdd2b375ac87
4
+ data.tar.gz: f3170e4d2bff028c12d89abd3991f912572d23f5
5
+ SHA512:
6
+ metadata.gz: b2596fbb22d3f8dd71cf48c9b160872034dd7d8a2a6adb1daa948f9470705785f9782202baf6496624b4561bf78357e59c7abe723693a31e27706fd76b47bede
7
+ data.tar.gz: 96e795ded966eeb64aef030f2a16244f9e30aec3cf2f506f0c4f9a176727cd5f9fab5e1237129a508d385887dca6479affb345ab205902a993f1933a814440f7
data/lib/VERSION ADDED
@@ -0,0 +1 @@
1
+ 3.0.967
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'tencentcloud-sdk-common'
4
+
5
+ require_relative 'v20210323/client'
6
+ require_relative 'v20210323/models'
7
+
8
+ module TencentCloud
9
+ module Aca
10
+ end
11
+ end
@@ -0,0 +1,228 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
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
+ require 'json'
18
+
19
+ module TencentCloud
20
+ module Aca
21
+ module V20210323
22
+ class Client < TencentCloud::Common::AbstractClient
23
+
24
+ def initialize(credential, region, profile = nil)
25
+ api_version = '2021-03-23'
26
+ api_endpoint = 'aca.tencentcloudapi.com'
27
+ sdk_version = 'ACA_' + File.read(File.expand_path('../VERSION', __dir__)).strip
28
+ super(credential, region, api_version, api_endpoint, sdk_version, profile)
29
+ end
30
+
31
+
32
+ # 药品适应症接口
33
+
34
+ # @param request: Request instance for GetDrugIndications.
35
+ # @type request: :class:`Tencentcloud::aca::V20210323::GetDrugIndicationsRequest`
36
+ # @rtype: :class:`Tencentcloud::aca::V20210323::GetDrugIndicationsResponse`
37
+ def GetDrugIndications(request)
38
+ body = send_request('GetDrugIndications', request.serialize)
39
+ response = JSON.parse(body)
40
+ if response['Response'].key?('Error') == false
41
+ model = GetDrugIndicationsResponse.new
42
+ model.deserialize(response['Response'])
43
+ model
44
+ else
45
+ code = response['Response']['Error']['Code']
46
+ message = response['Response']['Error']['Message']
47
+ reqid = response['Response']['RequestId']
48
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
49
+ end
50
+ rescue TencentCloud::Common::TencentCloudSDKException => e
51
+ raise e
52
+ rescue StandardError => e
53
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
54
+ end
55
+
56
+ # 登录获取token
57
+
58
+ # @param request: Request instance for LoginHisTool.
59
+ # @type request: :class:`Tencentcloud::aca::V20210323::LoginHisToolRequest`
60
+ # @rtype: :class:`Tencentcloud::aca::V20210323::LoginHisToolResponse`
61
+ def LoginHisTool(request)
62
+ body = send_request('LoginHisTool', request.serialize)
63
+ response = JSON.parse(body)
64
+ if response['Response'].key?('Error') == false
65
+ model = LoginHisToolResponse.new
66
+ model.deserialize(response['Response'])
67
+ model
68
+ else
69
+ code = response['Response']['Error']['Code']
70
+ message = response['Response']['Error']['Message']
71
+ reqid = response['Response']['RequestId']
72
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
73
+ end
74
+ rescue TencentCloud::Common::TencentCloudSDKException => e
75
+ raise e
76
+ rescue StandardError => e
77
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
78
+ end
79
+
80
+ # 登出
81
+
82
+ # @param request: Request instance for LoginOutHisTool.
83
+ # @type request: :class:`Tencentcloud::aca::V20210323::LoginOutHisToolRequest`
84
+ # @rtype: :class:`Tencentcloud::aca::V20210323::LoginOutHisToolResponse`
85
+ def LoginOutHisTool(request)
86
+ body = send_request('LoginOutHisTool', request.serialize)
87
+ response = JSON.parse(body)
88
+ if response['Response'].key?('Error') == false
89
+ model = LoginOutHisToolResponse.new
90
+ model.deserialize(response['Response'])
91
+ model
92
+ else
93
+ code = response['Response']['Error']['Code']
94
+ message = response['Response']['Error']['Message']
95
+ reqid = response['Response']['RequestId']
96
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
97
+ end
98
+ rescue TencentCloud::Common::TencentCloudSDKException => e
99
+ raise e
100
+ rescue StandardError => e
101
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
102
+ end
103
+
104
+ # 智能用药接口
105
+
106
+ # @param request: Request instance for SmartDrugInfo.
107
+ # @type request: :class:`Tencentcloud::aca::V20210323::SmartDrugInfoRequest`
108
+ # @rtype: :class:`Tencentcloud::aca::V20210323::SmartDrugInfoResponse`
109
+ def SmartDrugInfo(request)
110
+ body = send_request('SmartDrugInfo', request.serialize)
111
+ response = JSON.parse(body)
112
+ if response['Response'].key?('Error') == false
113
+ model = SmartDrugInfoResponse.new
114
+ model.deserialize(response['Response'])
115
+ model
116
+ else
117
+ code = response['Response']['Error']['Code']
118
+ message = response['Response']['Error']['Message']
119
+ reqid = response['Response']['RequestId']
120
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
121
+ end
122
+ rescue TencentCloud::Common::TencentCloudSDKException => e
123
+ raise e
124
+ rescue StandardError => e
125
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
126
+ end
127
+
128
+ # 辅诊智能预测接口
129
+
130
+ # @param request: Request instance for SmartPredict.
131
+ # @type request: :class:`Tencentcloud::aca::V20210323::SmartPredictRequest`
132
+ # @rtype: :class:`Tencentcloud::aca::V20210323::SmartPredictResponse`
133
+ def SmartPredict(request)
134
+ body = send_request('SmartPredict', request.serialize)
135
+ response = JSON.parse(body)
136
+ if response['Response'].key?('Error') == false
137
+ model = SmartPredictResponse.new
138
+ model.deserialize(response['Response'])
139
+ model
140
+ else
141
+ code = response['Response']['Error']['Code']
142
+ message = response['Response']['Error']['Message']
143
+ reqid = response['Response']['RequestId']
144
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
145
+ end
146
+ rescue TencentCloud::Common::TencentCloudSDKException => e
147
+ raise e
148
+ rescue StandardError => e
149
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
150
+ end
151
+
152
+ # 用于院方科室管理,获取科室列表和状态、新增或修改科室信息、删除科室。
153
+
154
+ # @param request: Request instance for SyncDepartment.
155
+ # @type request: :class:`Tencentcloud::aca::V20210323::SyncDepartmentRequest`
156
+ # @rtype: :class:`Tencentcloud::aca::V20210323::SyncDepartmentResponse`
157
+ def SyncDepartment(request)
158
+ body = send_request('SyncDepartment', request.serialize)
159
+ response = JSON.parse(body)
160
+ if response['Response'].key?('Error') == false
161
+ model = SyncDepartmentResponse.new
162
+ model.deserialize(response['Response'])
163
+ model
164
+ else
165
+ code = response['Response']['Error']['Code']
166
+ message = response['Response']['Error']['Message']
167
+ reqid = response['Response']['RequestId']
168
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
169
+ end
170
+ rescue TencentCloud::Common::TencentCloudSDKException => e
171
+ raise e
172
+ rescue StandardError => e
173
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
174
+ end
175
+
176
+ # 同步标准字典,如给药频次、给药途径、科室、诊断等
177
+
178
+ # @param request: Request instance for SyncStandardDict.
179
+ # @type request: :class:`Tencentcloud::aca::V20210323::SyncStandardDictRequest`
180
+ # @rtype: :class:`Tencentcloud::aca::V20210323::SyncStandardDictResponse`
181
+ def SyncStandardDict(request)
182
+ body = send_request('SyncStandardDict', request.serialize)
183
+ response = JSON.parse(body)
184
+ if response['Response'].key?('Error') == false
185
+ model = SyncStandardDictResponse.new
186
+ model.deserialize(response['Response'])
187
+ model
188
+ else
189
+ code = response['Response']['Error']['Code']
190
+ message = response['Response']['Error']['Message']
191
+ reqid = response['Response']['RequestId']
192
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
193
+ end
194
+ rescue TencentCloud::Common::TencentCloudSDKException => e
195
+ raise e
196
+ rescue StandardError => e
197
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
198
+ end
199
+
200
+ # 药品同步,一次同步数据不要超过500个
201
+
202
+ # @param request: Request instance for UploadDrugs.
203
+ # @type request: :class:`Tencentcloud::aca::V20210323::UploadDrugsRequest`
204
+ # @rtype: :class:`Tencentcloud::aca::V20210323::UploadDrugsResponse`
205
+ def UploadDrugs(request)
206
+ body = send_request('UploadDrugs', request.serialize)
207
+ response = JSON.parse(body)
208
+ if response['Response'].key?('Error') == false
209
+ model = UploadDrugsResponse.new
210
+ model.deserialize(response['Response'])
211
+ model
212
+ else
213
+ code = response['Response']['Error']['Code']
214
+ message = response['Response']['Error']['Message']
215
+ reqid = response['Response']['RequestId']
216
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
217
+ end
218
+ rescue TencentCloud::Common::TencentCloudSDKException => e
219
+ raise e
220
+ rescue StandardError => e
221
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
222
+ end
223
+
224
+
225
+ end
226
+ end
227
+ end
228
+ end