tencentcloud-sdk-apigateway 1.0.277 → 1.0.278

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180808/models.rb +31 -7
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 858585f525ca3de738e3583b2b7f201041e41128
4
- data.tar.gz: fee14506d83256583abf5c87ecbfbeeb3cd489b8
3
+ metadata.gz: 36e666dbc063a1cfab0596aa149e7b0ac2c99616
4
+ data.tar.gz: 97f99e1f2defc99fb1ff42961545fa15941c36ef
5
5
  SHA512:
6
- metadata.gz: 280282d9d8e80c58b13be5b7b24c2c5c292c100f8c448821d6885c905b2d8563fbc180d5244afd208c83c39f365b84386fac16c70269623ec8f92309a8976f2d
7
- data.tar.gz: 59ae5168a300e4fb92f357ca595a57ce1da87dd8d678c72ff988e2bf7af390ee8065e6521e124ebf433314ffb5680fa5b6a74728f0bb46df849a4ad49147a2c9
6
+ metadata.gz: 3c2321f23f23af7131516b1d605fa0bee3f240f1379a54e0088781a741513a6e0ece35deb3ef58e6329562b0c30480dec8606378e94b48ed7c247943cd8904aa
7
+ data.tar.gz: 31c30b13bcea4c1bae0a305b96516567f6eeccac588e1a978b8b98af15e0f4a7a7d3433781c5ed32c3f1b08d74540fad5c7f083ea623839e2a473011748133f9
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.277
1
+ 1.0.278
@@ -1617,19 +1617,28 @@ module TencentCloud
1617
1617
  # @param Authorization: API调用后端COS的签名开关,默认为false。
1618
1618
  # 注意:此字段可能返回 null,表示取不到有效值。
1619
1619
  # @type Authorization: Boolean
1620
+ # @param PathMatchMode: API后端COS的路径匹配模式,可选值:
1621
+ # BackEndPath : 后端路径匹配
1622
+ # FullPath : 全路径匹配
1620
1623
 
1621
- attr_accessor :Action, :BucketName, :Authorization
1624
+ # 默认值为:BackEndPath
1625
+ # 注意:此字段可能返回 null,表示取不到有效值。
1626
+ # @type PathMatchMode: String
1627
+
1628
+ attr_accessor :Action, :BucketName, :Authorization, :PathMatchMode
1622
1629
 
1623
- def initialize(action=nil, bucketname=nil, authorization=nil)
1630
+ def initialize(action=nil, bucketname=nil, authorization=nil, pathmatchmode=nil)
1624
1631
  @Action = action
1625
1632
  @BucketName = bucketname
1626
1633
  @Authorization = authorization
1634
+ @PathMatchMode = pathmatchmode
1627
1635
  end
1628
1636
 
1629
1637
  def deserialize(params)
1630
1638
  @Action = params['Action']
1631
1639
  @BucketName = params['BucketName']
1632
1640
  @Authorization = params['Authorization']
1641
+ @PathMatchMode = params['PathMatchMode']
1633
1642
  end
1634
1643
  end
1635
1644
 
@@ -2089,23 +2098,35 @@ module TencentCloud
2089
2098
  # @param ApiId: api id
2090
2099
  # 注意:此字段可能返回 null,表示取不到有效值。
2091
2100
  # @type ApiId: String
2092
- # @param Path: path
2101
+ # @param Path: 路径
2093
2102
  # 注意:此字段可能返回 null,表示取不到有效值。
2094
2103
  # @type Path: String
2095
- # @param Method: method
2104
+ # @param Method: 请求方法
2096
2105
  # 注意:此字段可能返回 null,表示取不到有效值。
2097
2106
  # @type Method: String
2098
2107
  # @param CreatedTime: 创建时间
2099
2108
  # 注意:此字段可能返回 null,表示取不到有效值。
2100
2109
  # @type CreatedTime: String
2110
+ # @param Status: 导入状态
2111
+ # 注意:此字段可能返回 null,表示取不到有效值。
2112
+ # @type Status: String
2113
+ # @param ErrMsg: 异常信息
2114
+ # 注意:此字段可能返回 null,表示取不到有效值。
2115
+ # @type ErrMsg: String
2116
+ # @param ApiName: api name
2117
+ # 注意:此字段可能返回 null,表示取不到有效值。
2118
+ # @type ApiName: String
2101
2119
 
2102
- attr_accessor :ApiId, :Path, :Method, :CreatedTime
2120
+ attr_accessor :ApiId, :Path, :Method, :CreatedTime, :Status, :ErrMsg, :ApiName
2103
2121
 
2104
- def initialize(apiid=nil, path=nil, method=nil, createdtime=nil)
2122
+ def initialize(apiid=nil, path=nil, method=nil, createdtime=nil, status=nil, errmsg=nil, apiname=nil)
2105
2123
  @ApiId = apiid
2106
2124
  @Path = path
2107
2125
  @Method = method
2108
2126
  @CreatedTime = createdtime
2127
+ @Status = status
2128
+ @ErrMsg = errmsg
2129
+ @ApiName = apiname
2109
2130
  end
2110
2131
 
2111
2132
  def deserialize(params)
@@ -2113,6 +2134,9 @@ module TencentCloud
2113
2134
  @Path = params['Path']
2114
2135
  @Method = params['Method']
2115
2136
  @CreatedTime = params['CreatedTime']
2137
+ @Status = params['Status']
2138
+ @ErrMsg = params['ErrMsg']
2139
+ @ApiName = params['ApiName']
2116
2140
  end
2117
2141
  end
2118
2142
 
@@ -7762,7 +7786,7 @@ module TencentCloud
7762
7786
 
7763
7787
  # ServiceConfig配置
7764
7788
  class ServiceConfig < TencentCloud::Common::AbstractModel
7765
- # @param Product: 后端类型。启用vpc时生效,目前支持的类型为clb和vpc通道
7789
+ # @param Product: 后端类型。启用vpc时生效,目前支持的类型为clb, cvmupstream
7766
7790
  # @type Product: String
7767
7791
  # @param UniqVpcId: vpc 的唯一ID。
7768
7792
  # @type UniqVpcId: String
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: 1.0.277
4
+ version: 1.0.278
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-03-16 00:00:00.000000000 Z
11
+ date: 2022-03-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common