tencentcloud-sdk-tem 3.0.467 → 3.0.469

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/v20210701/models.rb +73 -12
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5af4ff152e61ed4486fce8d0bdd330efd40eb4f4
4
- data.tar.gz: 4d8d6b3eb646b4a52b7cac4d119c841b54ca5e18
3
+ metadata.gz: 246c591d502755362612e21c2d76fc1dba4f0a96
4
+ data.tar.gz: c2df0b84497eefee31f106f756c9d87a4761bf5c
5
5
  SHA512:
6
- metadata.gz: 128128ab25ea3341506e68dbcba93eccf2079ec0d85077a2aee6b40343f65b60d45a93f02db19070fd37ec2297c4b05cab484d2b0e4b79b0e0504f09e3b155e4
7
- data.tar.gz: 46fe2be5b693ed944e023c13d39bae6a42b188fde5645145dd5c52bbbf5d2f528e3345313ded2355eba527c38b03399bd9dc72e2815a3e9287735436cf583ed2
6
+ metadata.gz: c399a079b0e3e31c97f0f888f1fefc9e288b0f5f101f2cbef25f9732e1d658ae9fc8caffd6e54dd1ed99d7005cefa147917aac838731d9d8f11e00c95c49d48a
7
+ data.tar.gz: 4bbece12524a911df18ae3f74eae07037e01a5bd78ac5d2f1dc278572fa006b009443447600ec86b471fd42f9aadbc441d24b45de6bd4915d16e19eb8c184880
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.467
1
+ 3.0.469
@@ -522,10 +522,14 @@ module TencentCloud
522
522
  # @type EnableTswTraceService: Boolean
523
523
  # @param Tags: 标签
524
524
  # @type Tags: Array
525
+ # @param EnvType: 环境类型:test、pre、prod
526
+ # @type EnvType: String
527
+ # @param CreateRegion: 创建环境的region
528
+ # @type CreateRegion: String
525
529
 
526
- attr_accessor :EnvironmentName, :Vpc, :SubnetIds, :Description, :K8sVersion, :SourceChannel, :EnableTswTraceService, :Tags
530
+ attr_accessor :EnvironmentName, :Vpc, :SubnetIds, :Description, :K8sVersion, :SourceChannel, :EnableTswTraceService, :Tags, :EnvType, :CreateRegion
527
531
 
528
- def initialize(environmentname=nil, vpc=nil, subnetids=nil, description=nil, k8sversion=nil, sourcechannel=nil, enabletswtraceservice=nil, tags=nil)
532
+ def initialize(environmentname=nil, vpc=nil, subnetids=nil, description=nil, k8sversion=nil, sourcechannel=nil, enabletswtraceservice=nil, tags=nil, envtype=nil, createregion=nil)
529
533
  @EnvironmentName = environmentname
530
534
  @Vpc = vpc
531
535
  @SubnetIds = subnetids
@@ -534,6 +538,8 @@ module TencentCloud
534
538
  @SourceChannel = sourcechannel
535
539
  @EnableTswTraceService = enabletswtraceservice
536
540
  @Tags = tags
541
+ @EnvType = envtype
542
+ @CreateRegion = createregion
537
543
  end
538
544
 
539
545
  def deserialize(params)
@@ -552,6 +558,8 @@ module TencentCloud
552
558
  @Tags << tag_tmp
553
559
  end
554
560
  end
561
+ @EnvType = params['EnvType']
562
+ @CreateRegion = params['CreateRegion']
555
563
  end
556
564
  end
557
565
 
@@ -1650,10 +1658,12 @@ module TencentCloud
1650
1658
  # @type Keyword: String
1651
1659
  # @param Filters: 查询过滤器
1652
1660
  # @type Filters: Array
1661
+ # @param SortInfo: 排序字段
1662
+ # @type SortInfo: :class:`Tencentcloud::Tem.v20210701.models.SortType`
1653
1663
 
1654
- attr_accessor :EnvironmentId, :Limit, :Offset, :SourceChannel, :ApplicationId, :Keyword, :Filters
1664
+ attr_accessor :EnvironmentId, :Limit, :Offset, :SourceChannel, :ApplicationId, :Keyword, :Filters, :SortInfo
1655
1665
 
1656
- def initialize(environmentid=nil, limit=nil, offset=nil, sourcechannel=nil, applicationid=nil, keyword=nil, filters=nil)
1666
+ def initialize(environmentid=nil, limit=nil, offset=nil, sourcechannel=nil, applicationid=nil, keyword=nil, filters=nil, sortinfo=nil)
1657
1667
  @EnvironmentId = environmentid
1658
1668
  @Limit = limit
1659
1669
  @Offset = offset
@@ -1661,6 +1671,7 @@ module TencentCloud
1661
1671
  @ApplicationId = applicationid
1662
1672
  @Keyword = keyword
1663
1673
  @Filters = filters
1674
+ @SortInfo = sortinfo
1664
1675
  end
1665
1676
 
1666
1677
  def deserialize(params)
@@ -1678,6 +1689,10 @@ module TencentCloud
1678
1689
  @Filters << queryfilter_tmp
1679
1690
  end
1680
1691
  end
1692
+ unless params['SortInfo'].nil?
1693
+ @SortInfo = SortType.new
1694
+ @SortInfo.deserialize(params['SortInfo'])
1695
+ end
1681
1696
  end
1682
1697
  end
1683
1698
 
@@ -2029,14 +2044,17 @@ module TencentCloud
2029
2044
  # @type SourceChannel: Integer
2030
2045
  # @param Filters: 查询过滤器
2031
2046
  # @type Filters: Array
2047
+ # @param SortInfo: 排序字段
2048
+ # @type SortInfo: :class:`Tencentcloud::Tem.v20210701.models.SortType`
2032
2049
 
2033
- attr_accessor :Limit, :Offset, :SourceChannel, :Filters
2050
+ attr_accessor :Limit, :Offset, :SourceChannel, :Filters, :SortInfo
2034
2051
 
2035
- def initialize(limit=nil, offset=nil, sourcechannel=nil, filters=nil)
2052
+ def initialize(limit=nil, offset=nil, sourcechannel=nil, filters=nil, sortinfo=nil)
2036
2053
  @Limit = limit
2037
2054
  @Offset = offset
2038
2055
  @SourceChannel = sourcechannel
2039
2056
  @Filters = filters
2057
+ @SortInfo = sortinfo
2040
2058
  end
2041
2059
 
2042
2060
  def deserialize(params)
@@ -2051,6 +2069,10 @@ module TencentCloud
2051
2069
  @Filters << queryfilter_tmp
2052
2070
  end
2053
2071
  end
2072
+ unless params['SortInfo'].nil?
2073
+ @SortInfo = SortType.new
2074
+ @SortInfo.deserialize(params['SortInfo'])
2075
+ end
2054
2076
  end
2055
2077
  end
2056
2078
 
@@ -3591,16 +3613,19 @@ module TencentCloud
3591
3613
  # @type SubnetIds: Array
3592
3614
  # @param SourceChannel: 来源渠道
3593
3615
  # @type SourceChannel: Integer
3616
+ # @param EnvType: 环境类型:test、pre、prod
3617
+ # @type EnvType: String
3594
3618
 
3595
- attr_accessor :EnvironmentId, :EnvironmentName, :Description, :Vpc, :SubnetIds, :SourceChannel
3619
+ attr_accessor :EnvironmentId, :EnvironmentName, :Description, :Vpc, :SubnetIds, :SourceChannel, :EnvType
3596
3620
 
3597
- def initialize(environmentid=nil, environmentname=nil, description=nil, vpc=nil, subnetids=nil, sourcechannel=nil)
3621
+ def initialize(environmentid=nil, environmentname=nil, description=nil, vpc=nil, subnetids=nil, sourcechannel=nil, envtype=nil)
3598
3622
  @EnvironmentId = environmentid
3599
3623
  @EnvironmentName = environmentname
3600
3624
  @Description = description
3601
3625
  @Vpc = vpc
3602
3626
  @SubnetIds = subnetids
3603
3627
  @SourceChannel = sourcechannel
3628
+ @EnvType = envtype
3604
3629
  end
3605
3630
 
3606
3631
  def deserialize(params)
@@ -3610,6 +3635,7 @@ module TencentCloud
3610
3635
  @Vpc = params['Vpc']
3611
3636
  @SubnetIds = params['SubnetIds']
3612
3637
  @SourceChannel = params['SourceChannel']
3638
+ @EnvType = params['EnvType']
3613
3639
  end
3614
3640
  end
3615
3641
 
@@ -3792,10 +3818,13 @@ module TencentCloud
3792
3818
  # @param Tags: 标签
3793
3819
  # 注意:此字段可能返回 null,表示取不到有效值。
3794
3820
  # @type Tags: Array
3821
+ # @param EnvType: 环境类型:test、pre、prod
3822
+ # 注意:此字段可能返回 null,表示取不到有效值。
3823
+ # @type EnvType: String
3795
3824
 
3796
- attr_accessor :EnvironmentId, :NamespaceName, :Region, :VpcId, :SubnetIds, :Description, :CreatedDate, :EnvironmentName, :ApmInstanceId, :Locked, :Tags
3825
+ attr_accessor :EnvironmentId, :NamespaceName, :Region, :VpcId, :SubnetIds, :Description, :CreatedDate, :EnvironmentName, :ApmInstanceId, :Locked, :Tags, :EnvType
3797
3826
 
3798
- def initialize(environmentid=nil, namespacename=nil, region=nil, vpcid=nil, subnetids=nil, description=nil, createddate=nil, environmentname=nil, apminstanceid=nil, locked=nil, tags=nil)
3827
+ def initialize(environmentid=nil, namespacename=nil, region=nil, vpcid=nil, subnetids=nil, description=nil, createddate=nil, environmentname=nil, apminstanceid=nil, locked=nil, tags=nil, envtype=nil)
3799
3828
  @EnvironmentId = environmentid
3800
3829
  @NamespaceName = namespacename
3801
3830
  @Region = region
@@ -3807,6 +3836,7 @@ module TencentCloud
3807
3836
  @ApmInstanceId = apminstanceid
3808
3837
  @Locked = locked
3809
3838
  @Tags = tags
3839
+ @EnvType = envtype
3810
3840
  end
3811
3841
 
3812
3842
  def deserialize(params)
@@ -3828,6 +3858,7 @@ module TencentCloud
3828
3858
  @Tags << tag_tmp
3829
3859
  end
3830
3860
  end
3861
+ @EnvType = params['EnvType']
3831
3862
  end
3832
3863
  end
3833
3864
 
@@ -4640,6 +4671,26 @@ module TencentCloud
4640
4671
  end
4641
4672
  end
4642
4673
 
4674
+ # 查询过滤器
4675
+ class SortType < TencentCloud::Common::AbstractModel
4676
+ # @param Key: 排序字段名称
4677
+ # @type Key: String
4678
+ # @param Type: 0:升序,1:倒序
4679
+ # @type Type: Integer
4680
+
4681
+ attr_accessor :Key, :Type
4682
+
4683
+ def initialize(key=nil, type=nil)
4684
+ @Key = key
4685
+ @Type = type
4686
+ end
4687
+
4688
+ def deserialize(params)
4689
+ @Key = params['Key']
4690
+ @Type = params['Type']
4691
+ end
4692
+ end
4693
+
4643
4694
  # StopApplication请求参数结构体
4644
4695
  class StopApplicationRequest < TencentCloud::Common::AbstractModel
4645
4696
  # @param ApplicationId: 服务id
@@ -4948,10 +4999,16 @@ module TencentCloud
4948
4999
  # @param HasAuthority: 资源是否有权限
4949
5000
  # 注意:此字段可能返回 null,表示取不到有效值。
4950
5001
  # @type HasAuthority: Boolean
5002
+ # @param EnvType: 环境类型: test、pre、prod
5003
+ # 注意:此字段可能返回 null,表示取不到有效值。
5004
+ # @type EnvType: String
5005
+ # @param RegionId: 地域码
5006
+ # 注意:此字段可能返回 null,表示取不到有效值。
5007
+ # @type RegionId: String
4951
5008
 
4952
- attr_accessor :EnvironmentId, :Channel, :EnvironmentName, :Region, :Description, :Status, :Vpc, :CreateDate, :ModifyDate, :Modifier, :Creator, :ApplicationNum, :RunInstancesNum, :SubnetId, :ClusterStatus, :EnableTswTraceService, :Locked, :AppId, :Uin, :SubAccountUin, :ClusterId, :Tags, :HasAuthority
5009
+ attr_accessor :EnvironmentId, :Channel, :EnvironmentName, :Region, :Description, :Status, :Vpc, :CreateDate, :ModifyDate, :Modifier, :Creator, :ApplicationNum, :RunInstancesNum, :SubnetId, :ClusterStatus, :EnableTswTraceService, :Locked, :AppId, :Uin, :SubAccountUin, :ClusterId, :Tags, :HasAuthority, :EnvType, :RegionId
4953
5010
 
4954
- def initialize(environmentid=nil, channel=nil, environmentname=nil, region=nil, description=nil, status=nil, vpc=nil, createdate=nil, modifydate=nil, modifier=nil, creator=nil, applicationnum=nil, runinstancesnum=nil, subnetid=nil, clusterstatus=nil, enabletswtraceservice=nil, locked=nil, appid=nil, uin=nil, subaccountuin=nil, clusterid=nil, tags=nil, hasauthority=nil)
5011
+ def initialize(environmentid=nil, channel=nil, environmentname=nil, region=nil, description=nil, status=nil, vpc=nil, createdate=nil, modifydate=nil, modifier=nil, creator=nil, applicationnum=nil, runinstancesnum=nil, subnetid=nil, clusterstatus=nil, enabletswtraceservice=nil, locked=nil, appid=nil, uin=nil, subaccountuin=nil, clusterid=nil, tags=nil, hasauthority=nil, envtype=nil, regionid=nil)
4955
5012
  @EnvironmentId = environmentid
4956
5013
  @Channel = channel
4957
5014
  @EnvironmentName = environmentname
@@ -4975,6 +5032,8 @@ module TencentCloud
4975
5032
  @ClusterId = clusterid
4976
5033
  @Tags = tags
4977
5034
  @HasAuthority = hasauthority
5035
+ @EnvType = envtype
5036
+ @RegionId = regionid
4978
5037
  end
4979
5038
 
4980
5039
  def deserialize(params)
@@ -5008,6 +5067,8 @@ module TencentCloud
5008
5067
  end
5009
5068
  end
5010
5069
  @HasAuthority = params['HasAuthority']
5070
+ @EnvType = params['EnvType']
5071
+ @RegionId = params['RegionId']
5011
5072
  end
5012
5073
  end
5013
5074
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tem
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.467
4
+ version: 3.0.469
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-12-07 00:00:00.000000000 Z
11
+ date: 2022-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common