tencentcloud-sdk-rum 1.0.277 → 1.0.280

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210622/models.rb +35 -18
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bee239ca60ceee1122be97a0419490b8fe9a25c9
4
- data.tar.gz: ed336fd4015ae25d5c95cf5dda332109c4f0523f
3
+ metadata.gz: 310a45f77adadd6f8cdc981e96862e766862ad0f
4
+ data.tar.gz: eee954df75e05a6562f12031937671e4efe93464
5
5
  SHA512:
6
- metadata.gz: bfa3d14cd4fd0971ebe87c893908ddf3e789abd381017da67298210c7f26d21dd394b10d23a7734416f6cc592378ed8e8fb9e67774e5a92c8d43324355154536
7
- data.tar.gz: 768ca038a9ee83147a73a1891482cfe5eb0685450e5da199d5bb0e5983d166b94743923cc71c32d21141ad06a19eadf558a3dda55ee3842daee30ef3d4ed4455
6
+ metadata.gz: 8e26d677ccadae8c8a8eaa0a8392021f665bd1e1baef399efee79998bab8f56068a4e4ccb0bcf7bbfa6fe0e5c58533bd1a22bd0ede3a5d18e9f5b668010d48af
7
+ data.tar.gz: dcebce8ca220bce392015602837eff25e9f710cf87f11bbc54f75c283454c8ca4155cd4920cc523469c67aaf4b4ef6c2b9e0421615398a3d35d4736a337f0097
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.277
1
+ 1.0.280
@@ -2983,13 +2983,16 @@ module TencentCloud
2983
2983
  # @type Offset: Integer
2984
2984
  # @param Filters: 过滤条件
2985
2985
  # @type Filters: Array
2986
+ # @param IsDemo: 是否为demo模式(1=是,2=否)
2987
+ # @type IsDemo: Integer
2986
2988
 
2987
- attr_accessor :Limit, :Offset, :Filters
2989
+ attr_accessor :Limit, :Offset, :Filters, :IsDemo
2988
2990
 
2989
- def initialize(limit=nil, offset=nil, filters=nil)
2991
+ def initialize(limit=nil, offset=nil, filters=nil, isdemo=nil)
2990
2992
  @Limit = limit
2991
2993
  @Offset = offset
2992
2994
  @Filters = filters
2995
+ @IsDemo = isdemo
2993
2996
  end
2994
2997
 
2995
2998
  def deserialize(params)
@@ -3003,6 +3006,7 @@ module TencentCloud
3003
3006
  @Filters << filter_tmp
3004
3007
  end
3005
3008
  end
3009
+ @IsDemo = params['IsDemo']
3006
3010
  end
3007
3011
  end
3008
3012
 
@@ -3200,19 +3204,23 @@ module TencentCloud
3200
3204
  # @type StartTime: String
3201
3205
  # @param ID: 项目ID
3202
3206
  # @type ID: Integer
3207
+ # @param IsDemo: 是否为demo模式(1=是,2=否)
3208
+ # @type IsDemo: Integer
3203
3209
 
3204
- attr_accessor :EndTime, :StartTime, :ID
3210
+ attr_accessor :EndTime, :StartTime, :ID, :IsDemo
3205
3211
 
3206
- def initialize(endtime=nil, starttime=nil, id=nil)
3212
+ def initialize(endtime=nil, starttime=nil, id=nil, isdemo=nil)
3207
3213
  @EndTime = endtime
3208
3214
  @StartTime = starttime
3209
3215
  @ID = id
3216
+ @IsDemo = isdemo
3210
3217
  end
3211
3218
 
3212
3219
  def deserialize(params)
3213
3220
  @EndTime = params['EndTime']
3214
3221
  @StartTime = params['StartTime']
3215
3222
  @ID = params['ID']
3223
+ @IsDemo = params['IsDemo']
3216
3224
  end
3217
3225
  end
3218
3226
 
@@ -3324,10 +3332,12 @@ module TencentCloud
3324
3332
  # @type InstanceIds: Array
3325
3333
  # @param Filters: 过滤参数
3326
3334
  # @type Filters: Array
3335
+ # @param IsDemo: 是否为demo模式(1=是,2=否)
3336
+ # @type IsDemo: Integer
3327
3337
 
3328
- attr_accessor :ChargeStatuses, :ChargeTypes, :Limit, :Offset, :AreaIds, :InstanceStatuses, :InstanceIds, :Filters
3338
+ attr_accessor :ChargeStatuses, :ChargeTypes, :Limit, :Offset, :AreaIds, :InstanceStatuses, :InstanceIds, :Filters, :IsDemo
3329
3339
 
3330
- def initialize(chargestatuses=nil, chargetypes=nil, limit=nil, offset=nil, areaids=nil, instancestatuses=nil, instanceids=nil, filters=nil)
3340
+ def initialize(chargestatuses=nil, chargetypes=nil, limit=nil, offset=nil, areaids=nil, instancestatuses=nil, instanceids=nil, filters=nil, isdemo=nil)
3331
3341
  @ChargeStatuses = chargestatuses
3332
3342
  @ChargeTypes = chargetypes
3333
3343
  @Limit = limit
@@ -3336,6 +3346,7 @@ module TencentCloud
3336
3346
  @InstanceStatuses = instancestatuses
3337
3347
  @InstanceIds = instanceids
3338
3348
  @Filters = filters
3349
+ @IsDemo = isdemo
3339
3350
  end
3340
3351
 
3341
3352
  def deserialize(params)
@@ -3354,6 +3365,7 @@ module TencentCloud
3354
3365
  @Filters << filter_tmp
3355
3366
  end
3356
3367
  end
3368
+ @IsDemo = params['IsDemo']
3357
3369
  end
3358
3370
  end
3359
3371
 
@@ -3736,33 +3748,33 @@ module TencentCloud
3736
3748
 
3737
3749
  # 项目接口限制类型
3738
3750
  class ProjectLimit < TencentCloud::Common::AbstractModel
3739
- # @param ID: 主键ID
3740
- # @type ID: Integer
3741
- # @param ProjectID: 项目ID
3742
- # @type ProjectID: Integer
3743
3751
  # @param ProjectInterface: 接口
3744
3752
  # @type ProjectInterface: String
3745
3753
  # @param ReportRate: 上报率
3746
3754
  # @type ReportRate: Integer
3747
3755
  # @param ReportType: 上报类型 1:上报率 2:上报量限制
3748
3756
  # @type ReportType: Integer
3757
+ # @param ID: 主键ID
3758
+ # @type ID: Integer
3759
+ # @param ProjectID: 项目ID
3760
+ # @type ProjectID: Integer
3749
3761
 
3750
- attr_accessor :ID, :ProjectID, :ProjectInterface, :ReportRate, :ReportType
3762
+ attr_accessor :ProjectInterface, :ReportRate, :ReportType, :ID, :ProjectID
3751
3763
 
3752
- def initialize(id=nil, projectid=nil, projectinterface=nil, reportrate=nil, reporttype=nil)
3753
- @ID = id
3754
- @ProjectID = projectid
3764
+ def initialize(projectinterface=nil, reportrate=nil, reporttype=nil, id=nil, projectid=nil)
3755
3765
  @ProjectInterface = projectinterface
3756
3766
  @ReportRate = reportrate
3757
3767
  @ReportType = reporttype
3768
+ @ID = id
3769
+ @ProjectID = projectid
3758
3770
  end
3759
3771
 
3760
3772
  def deserialize(params)
3761
- @ID = params['ID']
3762
- @ProjectID = params['ProjectID']
3763
3773
  @ProjectInterface = params['ProjectInterface']
3764
3774
  @ReportRate = params['ReportRate']
3765
3775
  @ReportType = params['ReportType']
3776
+ @ID = params['ID']
3777
+ @ProjectID = params['ProjectID']
3766
3778
  end
3767
3779
  end
3768
3780
 
@@ -3962,10 +3974,13 @@ module TencentCloud
3962
3974
  # @param IsStar: 是否星标 1:是 0:否
3963
3975
  # 注意:此字段可能返回 null,表示取不到有效值。
3964
3976
  # @type IsStar: Integer
3977
+ # @param ProjectStatus: 项目状态(1 创建中,2 运行中,3 异常,4 重启中,5 停止中,6 已停止, 7 销毁中,8 已销毁)
3978
+ # 注意:此字段可能返回 null,表示取不到有效值。
3979
+ # @type ProjectStatus: Integer
3965
3980
 
3966
- attr_accessor :Name, :Creator, :InstanceID, :Type, :CreateTime, :Repo, :URL, :Rate, :Key, :EnableURLGroup, :InstanceName, :ID, :InstanceKey, :Desc, :IsStar
3981
+ attr_accessor :Name, :Creator, :InstanceID, :Type, :CreateTime, :Repo, :URL, :Rate, :Key, :EnableURLGroup, :InstanceName, :ID, :InstanceKey, :Desc, :IsStar, :ProjectStatus
3967
3982
 
3968
- def initialize(name=nil, creator=nil, instanceid=nil, type=nil, createtime=nil, repo=nil, url=nil, rate=nil, key=nil, enableurlgroup=nil, instancename=nil, id=nil, instancekey=nil, desc=nil, isstar=nil)
3983
+ def initialize(name=nil, creator=nil, instanceid=nil, type=nil, createtime=nil, repo=nil, url=nil, rate=nil, key=nil, enableurlgroup=nil, instancename=nil, id=nil, instancekey=nil, desc=nil, isstar=nil, projectstatus=nil)
3969
3984
  @Name = name
3970
3985
  @Creator = creator
3971
3986
  @InstanceID = instanceid
@@ -3981,6 +3996,7 @@ module TencentCloud
3981
3996
  @InstanceKey = instancekey
3982
3997
  @Desc = desc
3983
3998
  @IsStar = isstar
3999
+ @ProjectStatus = projectstatus
3984
4000
  end
3985
4001
 
3986
4002
  def deserialize(params)
@@ -3999,6 +4015,7 @@ module TencentCloud
3999
4015
  @InstanceKey = params['InstanceKey']
4000
4016
  @Desc = params['Desc']
4001
4017
  @IsStar = params['IsStar']
4018
+ @ProjectStatus = params['ProjectStatus']
4002
4019
  end
4003
4020
  end
4004
4021
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-rum
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.277
4
+ version: 1.0.280
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-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common