tencentcloud-sdk-mongodb 1.0.217 → 1.0.221

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: 9614c3a6cc3746a10e153e9252bd3750df21db6a
4
- data.tar.gz: 8ffcf5aed0b0e79d1abbb6f00398d5b5ed76592c
3
+ metadata.gz: 9208cb1a21bf3fe6ebabfe463edbe73723b214a3
4
+ data.tar.gz: 9e0b700ebc5457af7f72b438a9fe702ec9772e68
5
5
  SHA512:
6
- metadata.gz: 00f30c7e7d686c0b2c77f331be7dc3199ed211a6533c39155bab46fea31648594ffa430966fde209863301708849de2f7e1aa1c459a899d00572150824aa0a68
7
- data.tar.gz: f19cb60e4768fba597cad5e4a6156fdc9870bbaece30d875fa1b2e8d88b8ff0a1c46874d38506105cc6506fe05c77beaa60157c62089ec5c797a650fac2f700a
6
+ metadata.gz: f6910f5687b96065db56d2bad0f99a3c3155cdc415bc34e0ac4a82cae99adcc436d280423db7d4303d0b9e7dfe0f268afa08b6e4cb3d9e3c576d3d09d75ab05a
7
+ data.tar.gz: c8481413cdd397e9e2d90a8493f6a27924bb12eff0c825c2704b3e3a31e0e425680ac7b41984551bd2a31286fdb38be19416930515911353340c11d4cf669c4c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.217
1
+ 1.0.221
@@ -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.217
4
+ version: 1.0.221
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-06 00:00:00.000000000 Z
11
+ date: 2021-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common