tencentcloud-sdk-tem 3.0.502 → 3.0.504

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 +24 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 23466690f7557ae6b9fa7f2ca76714c6e9245e96
4
- data.tar.gz: ca1e02faa2397abe66645f24864c00995c1c5b82
3
+ metadata.gz: eacd8c8621fa1c75d0a4094e88df7a6d4e607cfa
4
+ data.tar.gz: 21446749adeeb879cd96b5ceb48d95b9ed418c3e
5
5
  SHA512:
6
- metadata.gz: 727da84e1c65d6a3e842db0fa6f61c10257b2a99b2253d15fe9caecce4a0495acdb238f127d17e16459d51d06b42670e1d78bee88a87c854c320f3666d4a5af1
7
- data.tar.gz: 90379011e4d319855f35983ccc14fcb51c8f4b31e376be5039e03fa65d778d05656c836aa10da2998c1896868611bdfd1d7ce7dd799885edad849e0140153310
6
+ metadata.gz: d1d1a63cfd88f1a4b72f16d5c49e8febe74ef8b9bc92e16d58b17a1459798801886f6195d9161690141a9f0a7278727c6c27c46d308cdfff0feddc0269f113db
7
+ data.tar.gz: 4d0545c83cc7c31db1d1106dd957f5ef7a12ba665c672ac879f9b7d348135430646d7e93ea2a3630c19dbf20feff1cac82ab913ea58c4a8115cea7daed8fe043
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.502
1
+ 3.0.504
@@ -508,12 +508,12 @@ module TencentCloud
508
508
  class CreateEnvironmentRequest < TencentCloud::Common::AbstractModel
509
509
  # @param EnvironmentName: 环境名称
510
510
  # @type EnvironmentName: String
511
+ # @param Description: 环境描述
512
+ # @type Description: String
511
513
  # @param Vpc: 私有网络名称
512
514
  # @type Vpc: String
513
515
  # @param SubnetIds: 子网列表
514
516
  # @type SubnetIds: Array
515
- # @param Description: 环境描述
516
- # @type Description: String
517
517
  # @param K8sVersion: K8s version
518
518
  # @type K8sVersion: String
519
519
  # @param SourceChannel: 来源渠道
@@ -526,27 +526,39 @@ module TencentCloud
526
526
  # @type EnvType: String
527
527
  # @param CreateRegion: 创建环境的region
528
528
  # @type CreateRegion: String
529
-
530
- attr_accessor :EnvironmentName, :Vpc, :SubnetIds, :Description, :K8sVersion, :SourceChannel, :EnableTswTraceService, :Tags, :EnvType, :CreateRegion
531
-
532
- def initialize(environmentname=nil, vpc=nil, subnetids=nil, description=nil, k8sversion=nil, sourcechannel=nil, enabletswtraceservice=nil, tags=nil, envtype=nil, createregion=nil)
529
+ # @param SetupVpc: 是否创建私有网络
530
+ # @type SetupVpc: Boolean
531
+ # @param SetupPrometheus: 是否创建 Prometheus 实例
532
+ # @type SetupPrometheus: Boolean
533
+ # @param PrometheusId: prometheus 实例 id
534
+ # @type PrometheusId: String
535
+ # @param ApmId: apm id
536
+ # @type ApmId: String
537
+
538
+ attr_accessor :EnvironmentName, :Description, :Vpc, :SubnetIds, :K8sVersion, :SourceChannel, :EnableTswTraceService, :Tags, :EnvType, :CreateRegion, :SetupVpc, :SetupPrometheus, :PrometheusId, :ApmId
539
+
540
+ def initialize(environmentname=nil, description=nil, vpc=nil, subnetids=nil, k8sversion=nil, sourcechannel=nil, enabletswtraceservice=nil, tags=nil, envtype=nil, createregion=nil, setupvpc=nil, setupprometheus=nil, prometheusid=nil, apmid=nil)
533
541
  @EnvironmentName = environmentname
542
+ @Description = description
534
543
  @Vpc = vpc
535
544
  @SubnetIds = subnetids
536
- @Description = description
537
545
  @K8sVersion = k8sversion
538
546
  @SourceChannel = sourcechannel
539
547
  @EnableTswTraceService = enabletswtraceservice
540
548
  @Tags = tags
541
549
  @EnvType = envtype
542
550
  @CreateRegion = createregion
551
+ @SetupVpc = setupvpc
552
+ @SetupPrometheus = setupprometheus
553
+ @PrometheusId = prometheusid
554
+ @ApmId = apmid
543
555
  end
544
556
 
545
557
  def deserialize(params)
546
558
  @EnvironmentName = params['EnvironmentName']
559
+ @Description = params['Description']
547
560
  @Vpc = params['Vpc']
548
561
  @SubnetIds = params['SubnetIds']
549
- @Description = params['Description']
550
562
  @K8sVersion = params['K8sVersion']
551
563
  @SourceChannel = params['SourceChannel']
552
564
  @EnableTswTraceService = params['EnableTswTraceService']
@@ -560,6 +572,10 @@ module TencentCloud
560
572
  end
561
573
  @EnvType = params['EnvType']
562
574
  @CreateRegion = params['CreateRegion']
575
+ @SetupVpc = params['SetupVpc']
576
+ @SetupPrometheus = params['SetupPrometheus']
577
+ @PrometheusId = params['PrometheusId']
578
+ @ApmId = params['ApmId']
563
579
  end
564
580
  end
565
581
 
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.502
4
+ version: 3.0.504
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-06 00:00:00.000000000 Z
11
+ date: 2023-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common