tencentcloud-sdk-mongodb 1.0.219 → 1.0.220

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a415d2d2f373488aabb8ebde324fbd2252a2ffd7
4
- data.tar.gz: 90ada5e2272802162ac2f0daccb76bb314d7e8cc
3
+ metadata.gz: cf6f9354b462731ad8a425c553bd27f24261fafc
4
+ data.tar.gz: 99df1972c8a11106b372f00b8db4fd8ce3d09987
5
5
  SHA512:
6
- metadata.gz: 296e29689df6b115223ad4769b767571aed5091ec7675443f975f1d494bcbda831478c392c7bbf1368d1bceec17db0d78550106e7f44e72b6d4b94d4b19d56ad
7
- data.tar.gz: 5eabb12271e7e3048ad23d6024b8615e06e68c051643f8c1d2a21ae3c312a7d04c7218113cb4b1f11f9243eff1a7f65d538e9f69464cd2ccd91116003d742e12
6
+ metadata.gz: 63a5124f9ac8c98c862de41127cc618ea6dbfbe519ab18b12d681bc7edc3ada4e12e3221322061f2c815949c2996b6a7260cabd4b07f2eb1a0f9a63dc0fba23b
7
+ data.tar.gz: 8cf56700d9ebfa2bdafb3087d9a4c35e3759c80b6702cf2ab29a234ca98471495cdb61c7b046671fc65ae7c9ea2c998caa2b5fa66a1511c28fecd6762f61825d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.219
1
+ 1.0.220
@@ -199,17 +199,21 @@ module TencentCloud
199
199
  # @type IP: String
200
200
  # @param Count: 对应客户端IP的连接数
201
201
  # @type Count: Integer
202
+ # @param InternalService: 是否为内部ip
203
+ # @type InternalService: Boolean
202
204
 
203
- attr_accessor :IP, :Count
205
+ attr_accessor :IP, :Count, :InternalService
204
206
 
205
- def initialize(ip=nil, count=nil)
207
+ def initialize(ip=nil, count=nil, internalservice=nil)
206
208
  @IP = ip
207
209
  @Count = count
210
+ @InternalService = internalservice
208
211
  end
209
212
 
210
213
  def deserialize(params)
211
214
  @IP = params['IP']
212
215
  @Count = params['Count']
216
+ @InternalService = params['InternalService']
213
217
  end
214
218
  end
215
219
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-mongodb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.219
4
+ version: 1.0.220
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-08 00:00:00.000000000 Z
11
+ date: 2021-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common