tencentcloud-sdk-apigateway 3.0.390 → 3.0.397

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f72e8eb555479f0dd70eba69e093aa2b083e556c
4
- data.tar.gz: 3c7fc9673b9be192ce8cde57f02f4acda9c8524e
3
+ metadata.gz: 1b88d9e6dd721e375a8704bd47f6949f6bbf2050
4
+ data.tar.gz: 3a1131574cef8c8cacf9477c1514ea9ec15ab661
5
5
  SHA512:
6
- metadata.gz: b19f6ec6d571750025fe1a5aa1c9c65701426332c6460914c06edeea5e28635cf06107b19dc9d762ad93b94e22ae6008d0dbf272024bb4ce8087b16d577149a1
7
- data.tar.gz: a46400a628fe941a4b1642b91c1e9066bf8e1e52b30102d0f3f050ec568395d7af13f7bb6631660f6895cd2824e2f19159a643badc0803ce4249c713ed81d3e5
6
+ metadata.gz: 9678af4b033df57158957c96d31e66ad02620f359de961e6ce2e4ba43119c0605f50e8cb1d5280e9be3b3aee7596b7b3de8d77442bba968ecbc5bd34ea42c399
7
+ data.tar.gz: a046c80e6dbb0a5afd03ae345f4196960b901592579dc8dcf149594895cd1e6688cf8f2aaed7e6cdd9d782d62782eff345d7c8b143087119cacff00bc6a9f72a
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.390
1
+ 3.0.397
@@ -1752,6 +1752,30 @@ module TencentCloud
1752
1752
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1753
1753
  end
1754
1754
 
1755
+ # 本接口(ImportOpenApi)用于将OpenAPI规范定义的API导入到API网关。
1756
+
1757
+ # @param request: Request instance for ImportOpenApi.
1758
+ # @type request: :class:`Tencentcloud::apigateway::V20180808::ImportOpenApiRequest`
1759
+ # @rtype: :class:`Tencentcloud::apigateway::V20180808::ImportOpenApiResponse`
1760
+ def ImportOpenApi(request)
1761
+ body = send_request('ImportOpenApi', request.serialize)
1762
+ response = JSON.parse(body)
1763
+ if response['Response'].key?('Error') == false
1764
+ model = ImportOpenApiResponse.new
1765
+ model.deserialize(response['Response'])
1766
+ model
1767
+ else
1768
+ code = response['Response']['Error']['Code']
1769
+ message = response['Response']['Error']['Message']
1770
+ reqid = response['Response']['RequestId']
1771
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1772
+ end
1773
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1774
+ raise e
1775
+ rescue StandardError => e
1776
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1777
+ end
1778
+
1755
1779
  # 修改 API 文档
1756
1780
 
1757
1781
  # @param request: Request instance for ModifyAPIDoc.
@@ -2144,6 +2144,33 @@ module TencentCloud
2144
2144
  end
2145
2145
  end
2146
2146
 
2147
+ # CreateApiRsp 返回加TotalCount
2148
+ class CreateApiRspSet < TencentCloud::Common::AbstractModel
2149
+ # @param TotalCount: 个数
2150
+ # @type TotalCount: Integer
2151
+ # @param ApiSet: 返回的数组
2152
+ # @type ApiSet: Array
2153
+
2154
+ attr_accessor :TotalCount, :ApiSet
2155
+
2156
+ def initialize(totalcount=nil, apiset=nil)
2157
+ @TotalCount = totalcount
2158
+ @ApiSet = apiset
2159
+ end
2160
+
2161
+ def deserialize(params)
2162
+ @TotalCount = params['TotalCount']
2163
+ unless params['ApiSet'].nil?
2164
+ @ApiSet = []
2165
+ params['ApiSet'].each do |i|
2166
+ createapirsp_tmp = CreateApiRsp.new
2167
+ createapirsp_tmp.deserialize(i)
2168
+ @ApiSet << createapirsp_tmp
2169
+ end
2170
+ end
2171
+ end
2172
+ end
2173
+
2147
2174
  # CreateIPStrategy请求参数结构体
2148
2175
  class CreateIPStrategyRequest < TencentCloud::Common::AbstractModel
2149
2176
  # @param ServiceId: 服务的唯一ID。
@@ -6024,6 +6051,57 @@ module TencentCloud
6024
6051
  end
6025
6052
  end
6026
6053
 
6054
+ # ImportOpenApi请求参数结构体
6055
+ class ImportOpenApiRequest < TencentCloud::Common::AbstractModel
6056
+ # @param ServiceId: API所在的服务唯一ID。
6057
+ # @type ServiceId: String
6058
+ # @param Content: openAPI正文内容。
6059
+ # @type Content: String
6060
+ # @param EncodeType: Content格式,只能是YAML或者JSON,默认是YAML。
6061
+ # @type EncodeType: String
6062
+ # @param ContentVersion: Content版本,默认是openAPI,目前只支持openAPI。
6063
+ # @type ContentVersion: String
6064
+
6065
+ attr_accessor :ServiceId, :Content, :EncodeType, :ContentVersion
6066
+
6067
+ def initialize(serviceid=nil, content=nil, encodetype=nil, contentversion=nil)
6068
+ @ServiceId = serviceid
6069
+ @Content = content
6070
+ @EncodeType = encodetype
6071
+ @ContentVersion = contentversion
6072
+ end
6073
+
6074
+ def deserialize(params)
6075
+ @ServiceId = params['ServiceId']
6076
+ @Content = params['Content']
6077
+ @EncodeType = params['EncodeType']
6078
+ @ContentVersion = params['ContentVersion']
6079
+ end
6080
+ end
6081
+
6082
+ # ImportOpenApi返回参数结构体
6083
+ class ImportOpenApiResponse < TencentCloud::Common::AbstractModel
6084
+ # @param Result: 导入OpenApi返回参数。
6085
+ # @type Result: :class:`Tencentcloud::Apigateway.v20180808.models.CreateApiRspSet`
6086
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6087
+ # @type RequestId: String
6088
+
6089
+ attr_accessor :Result, :RequestId
6090
+
6091
+ def initialize(result=nil, requestid=nil)
6092
+ @Result = result
6093
+ @RequestId = requestid
6094
+ end
6095
+
6096
+ def deserialize(params)
6097
+ unless params['Result'].nil?
6098
+ @Result = CreateApiRspSet.new
6099
+ @Result.deserialize(params['Result'])
6100
+ end
6101
+ @RequestId = params['RequestId']
6102
+ end
6103
+ end
6104
+
6027
6105
  # 独享实例预付费详情
6028
6106
  class InstanceChargePrepaid < TencentCloud::Common::AbstractModel
6029
6107
  # @param RenewFlag: 自动续费标示
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-apigateway
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.390
4
+ version: 3.0.397
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-18 00:00:00.000000000 Z
11
+ date: 2022-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common