tencentcloud-sdk-tem 3.0.931 → 3.0.933
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210701/models.rb +101 -97
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e9a26000b806ed6885f3d6e2274d1429496df0dd
|
4
|
+
data.tar.gz: 5918823d5c0d64ed8f20001aef235fb53ee1fde8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebf7a1747e829ca1cae9f9bd647f489b53e218171f8e1d8ec9d8615cff902f4e89a31890dde05f0f9256d45aca46e8713a61b8f5df2941a17bd20b522e72f2f0
|
7
|
+
data.tar.gz: df76b9a96d513d6a4e921427bdfba84e9201cf2e0fd3647d75665318cd81bc24201b293f5df36737179d055ac8ba9678b0c3c3d46675eca2f7027a8ab120a2ea
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.933
|
data/lib/v20210701/models.rb
CHANGED
@@ -23,10 +23,10 @@ module TencentCloud
|
|
23
23
|
# @type MinReplicas: Integer
|
24
24
|
# @param MaxReplicas: 弹性伸缩最大实例数
|
25
25
|
# @type MaxReplicas: Integer
|
26
|
-
# @param HorizontalAutoscaler: 指标弹性伸缩策略
|
26
|
+
# @param HorizontalAutoscaler: 指标弹性伸缩策略(指标策略和定时策略必须填写一个)
|
27
27
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
28
28
|
# @type HorizontalAutoscaler: Array
|
29
|
-
# @param CronHorizontalAutoscaler: 定时弹性伸缩策略
|
29
|
+
# @param CronHorizontalAutoscaler: 定时弹性伸缩策略(指标策略和定时策略必须填写一个)
|
30
30
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
31
31
|
# @type CronHorizontalAutoscaler: Array
|
32
32
|
# @param AutoscalerId: 弹性伸缩ID
|
@@ -192,28 +192,28 @@ module TencentCloud
|
|
192
192
|
# @type ApplicationId: String
|
193
193
|
# @param EnvironmentId: 环境ID
|
194
194
|
# @type EnvironmentId: String
|
195
|
-
# @param SourceChannel: 来源渠道
|
196
|
-
# @type SourceChannel: Integer
|
197
195
|
# @param Autoscaler: 弹性伸缩策略
|
198
196
|
# @type Autoscaler: :class:`Tencentcloud::Tem.v20210701.models.Autoscaler`
|
197
|
+
# @param SourceChannel: 来源渠道
|
198
|
+
# @type SourceChannel: Integer
|
199
199
|
|
200
|
-
attr_accessor :ApplicationId, :EnvironmentId, :
|
200
|
+
attr_accessor :ApplicationId, :EnvironmentId, :Autoscaler, :SourceChannel
|
201
201
|
|
202
|
-
def initialize(applicationid=nil, environmentid=nil,
|
202
|
+
def initialize(applicationid=nil, environmentid=nil, autoscaler=nil, sourcechannel=nil)
|
203
203
|
@ApplicationId = applicationid
|
204
204
|
@EnvironmentId = environmentid
|
205
|
-
@SourceChannel = sourcechannel
|
206
205
|
@Autoscaler = autoscaler
|
206
|
+
@SourceChannel = sourcechannel
|
207
207
|
end
|
208
208
|
|
209
209
|
def deserialize(params)
|
210
210
|
@ApplicationId = params['ApplicationId']
|
211
211
|
@EnvironmentId = params['EnvironmentId']
|
212
|
-
@SourceChannel = params['SourceChannel']
|
213
212
|
unless params['Autoscaler'].nil?
|
214
213
|
@Autoscaler = Autoscaler.new
|
215
214
|
@Autoscaler.deserialize(params['Autoscaler'])
|
216
215
|
end
|
216
|
+
@SourceChannel = params['SourceChannel']
|
217
217
|
end
|
218
218
|
end
|
219
219
|
|
@@ -347,28 +347,28 @@ module TencentCloud
|
|
347
347
|
# @type ApplicationId: String
|
348
348
|
# @param EnvironmentId: 环境ID
|
349
349
|
# @type EnvironmentId: String
|
350
|
-
# @param SourceChannel: 来源渠道
|
351
|
-
# @type SourceChannel: Integer
|
352
350
|
# @param Service: 访问方式详情
|
353
351
|
# @type Service: :class:`Tencentcloud::Tem.v20210701.models.ServicePortMapping`
|
352
|
+
# @param SourceChannel: 来源渠道
|
353
|
+
# @type SourceChannel: Integer
|
354
354
|
|
355
|
-
attr_accessor :ApplicationId, :EnvironmentId, :
|
355
|
+
attr_accessor :ApplicationId, :EnvironmentId, :Service, :SourceChannel
|
356
356
|
|
357
|
-
def initialize(applicationid=nil, environmentid=nil,
|
357
|
+
def initialize(applicationid=nil, environmentid=nil, service=nil, sourcechannel=nil)
|
358
358
|
@ApplicationId = applicationid
|
359
359
|
@EnvironmentId = environmentid
|
360
|
-
@SourceChannel = sourcechannel
|
361
360
|
@Service = service
|
361
|
+
@SourceChannel = sourcechannel
|
362
362
|
end
|
363
363
|
|
364
364
|
def deserialize(params)
|
365
365
|
@ApplicationId = params['ApplicationId']
|
366
366
|
@EnvironmentId = params['EnvironmentId']
|
367
|
-
@SourceChannel = params['SourceChannel']
|
368
367
|
unless params['Service'].nil?
|
369
368
|
@Service = ServicePortMapping.new
|
370
369
|
@Service.deserialize(params['Service'])
|
371
370
|
end
|
371
|
+
@SourceChannel = params['SourceChannel']
|
372
372
|
end
|
373
373
|
end
|
374
374
|
|
@@ -399,24 +399,23 @@ module TencentCloud
|
|
399
399
|
# @type EnvironmentId: String
|
400
400
|
# @param Name: 配置名
|
401
401
|
# @type Name: String
|
402
|
-
# @param SourceChannel: 来源渠道
|
403
|
-
# @type SourceChannel: Integer
|
404
402
|
# @param Data: 配置信息
|
405
403
|
# @type Data: Array
|
404
|
+
# @param SourceChannel: 来源渠道
|
405
|
+
# @type SourceChannel: Integer
|
406
406
|
|
407
|
-
attr_accessor :EnvironmentId, :Name, :
|
407
|
+
attr_accessor :EnvironmentId, :Name, :Data, :SourceChannel
|
408
408
|
|
409
|
-
def initialize(environmentid=nil, name=nil,
|
409
|
+
def initialize(environmentid=nil, name=nil, data=nil, sourcechannel=nil)
|
410
410
|
@EnvironmentId = environmentid
|
411
411
|
@Name = name
|
412
|
-
@SourceChannel = sourcechannel
|
413
412
|
@Data = data
|
413
|
+
@SourceChannel = sourcechannel
|
414
414
|
end
|
415
415
|
|
416
416
|
def deserialize(params)
|
417
417
|
@EnvironmentId = params['EnvironmentId']
|
418
418
|
@Name = params['Name']
|
419
|
-
@SourceChannel = params['SourceChannel']
|
420
419
|
unless params['Data'].nil?
|
421
420
|
@Data = []
|
422
421
|
params['Data'].each do |i|
|
@@ -425,6 +424,7 @@ module TencentCloud
|
|
425
424
|
@Data << pair_tmp
|
426
425
|
end
|
427
426
|
end
|
427
|
+
@SourceChannel = params['SourceChannel']
|
428
428
|
end
|
429
429
|
end
|
430
430
|
|
@@ -683,7 +683,7 @@ module TencentCloud
|
|
683
683
|
class CreateResourceRequest < TencentCloud::Common::AbstractModel
|
684
684
|
# @param EnvironmentId: 环境 Id
|
685
685
|
# @type EnvironmentId: String
|
686
|
-
# @param ResourceType: 资源类型,目前支持文件系统:CFS
|
686
|
+
# @param ResourceType: 资源类型,目前支持文件系统:CFS;注册中心:TSE_SRE
|
687
687
|
# @type ResourceType: String
|
688
688
|
# @param ResourceId: 资源 Id
|
689
689
|
# @type ResourceId: String
|
@@ -809,25 +809,25 @@ module TencentCloud
|
|
809
809
|
# @type ApplicationId: String
|
810
810
|
# @param EnvironmentId: 环境ID
|
811
811
|
# @type EnvironmentId: String
|
812
|
-
# @param SourceChannel: 来源渠道
|
813
|
-
# @type SourceChannel: Integer
|
814
812
|
# @param AutoscalerId: 弹性伸缩策略ID
|
815
813
|
# @type AutoscalerId: String
|
814
|
+
# @param SourceChannel: 来源渠道
|
815
|
+
# @type SourceChannel: Integer
|
816
816
|
|
817
|
-
attr_accessor :ApplicationId, :EnvironmentId, :
|
817
|
+
attr_accessor :ApplicationId, :EnvironmentId, :AutoscalerId, :SourceChannel
|
818
818
|
|
819
|
-
def initialize(applicationid=nil, environmentid=nil,
|
819
|
+
def initialize(applicationid=nil, environmentid=nil, autoscalerid=nil, sourcechannel=nil)
|
820
820
|
@ApplicationId = applicationid
|
821
821
|
@EnvironmentId = environmentid
|
822
|
-
@SourceChannel = sourcechannel
|
823
822
|
@AutoscalerId = autoscalerid
|
823
|
+
@SourceChannel = sourcechannel
|
824
824
|
end
|
825
825
|
|
826
826
|
def deserialize(params)
|
827
827
|
@ApplicationId = params['ApplicationId']
|
828
828
|
@EnvironmentId = params['EnvironmentId']
|
829
|
-
@SourceChannel = params['SourceChannel']
|
830
829
|
@AutoscalerId = params['AutoscalerId']
|
830
|
+
@SourceChannel = params['SourceChannel']
|
831
831
|
end
|
832
832
|
end
|
833
833
|
|
@@ -904,27 +904,27 @@ module TencentCloud
|
|
904
904
|
class DeleteApplicationServiceRequest < TencentCloud::Common::AbstractModel
|
905
905
|
# @param ApplicationId: 服务id
|
906
906
|
# @type ApplicationId: String
|
907
|
-
# @param SourceChannel: 来源渠道
|
908
|
-
# @type SourceChannel: Integer
|
909
907
|
# @param EnvironmentId: 环境ID
|
910
908
|
# @type EnvironmentId: String
|
911
909
|
# @param ServiceName: 访问方式服务名
|
912
910
|
# @type ServiceName: String
|
911
|
+
# @param SourceChannel: 来源渠道
|
912
|
+
# @type SourceChannel: Integer
|
913
913
|
|
914
|
-
attr_accessor :ApplicationId, :
|
914
|
+
attr_accessor :ApplicationId, :EnvironmentId, :ServiceName, :SourceChannel
|
915
915
|
|
916
|
-
def initialize(applicationid=nil,
|
916
|
+
def initialize(applicationid=nil, environmentid=nil, servicename=nil, sourcechannel=nil)
|
917
917
|
@ApplicationId = applicationid
|
918
|
-
@SourceChannel = sourcechannel
|
919
918
|
@EnvironmentId = environmentid
|
920
919
|
@ServiceName = servicename
|
920
|
+
@SourceChannel = sourcechannel
|
921
921
|
end
|
922
922
|
|
923
923
|
def deserialize(params)
|
924
924
|
@ApplicationId = params['ApplicationId']
|
925
|
-
@SourceChannel = params['SourceChannel']
|
926
925
|
@EnvironmentId = params['EnvironmentId']
|
927
926
|
@ServiceName = params['ServiceName']
|
927
|
+
@SourceChannel = params['SourceChannel']
|
928
928
|
end
|
929
929
|
end
|
930
930
|
|
@@ -1003,9 +1003,9 @@ module TencentCloud
|
|
1003
1003
|
# @type ApplicationId: String
|
1004
1004
|
# @param InitPodNum: 初始化 pod 数
|
1005
1005
|
# @type InitPodNum: Integer
|
1006
|
-
# @param CpuSpec: cpu规格
|
1006
|
+
# @param CpuSpec: cpu规格 单位:核
|
1007
1007
|
# @type CpuSpec: Float
|
1008
|
-
# @param MemorySpec: 内存规格
|
1008
|
+
# @param MemorySpec: 内存规格 单位:G
|
1009
1009
|
# @type MemorySpec: Float
|
1010
1010
|
# @param EnvironmentId: 环境ID
|
1011
1011
|
# @type EnvironmentId: String
|
@@ -1629,7 +1629,7 @@ module TencentCloud
|
|
1629
1629
|
# @type EnvironmentId: String
|
1630
1630
|
# @param ApplicationId: 服务ID
|
1631
1631
|
# @type ApplicationId: String
|
1632
|
-
# @param SourceChannel:
|
1632
|
+
# @param SourceChannel: 来源渠道
|
1633
1633
|
# @type SourceChannel: Integer
|
1634
1634
|
|
1635
1635
|
attr_accessor :EnvironmentId, :ApplicationId, :SourceChannel
|
@@ -1674,9 +1674,9 @@ module TencentCloud
|
|
1674
1674
|
class DescribeApplicationsRequest < TencentCloud::Common::AbstractModel
|
1675
1675
|
# @param EnvironmentId: 命名空间ID
|
1676
1676
|
# @type EnvironmentId: String
|
1677
|
-
# @param Limit: 分页Limit
|
1677
|
+
# @param Limit: 分页Limit,默认值:20
|
1678
1678
|
# @type Limit: Integer
|
1679
|
-
# @param Offset: 分页offset
|
1679
|
+
# @param Offset: 分页offset,默认值:0
|
1680
1680
|
# @type Offset: Integer
|
1681
1681
|
# @param SourceChannel: 来源渠道
|
1682
1682
|
# @type SourceChannel: Integer
|
@@ -1749,21 +1749,21 @@ module TencentCloud
|
|
1749
1749
|
|
1750
1750
|
# DescribeApplicationsStatus请求参数结构体
|
1751
1751
|
class DescribeApplicationsStatusRequest < TencentCloud::Common::AbstractModel
|
1752
|
-
# @param SourceChannel: 来源渠道
|
1753
|
-
# @type SourceChannel: Integer
|
1754
1752
|
# @param EnvironmentId: 环境ID
|
1755
1753
|
# @type EnvironmentId: String
|
1754
|
+
# @param SourceChannel: 来源渠道
|
1755
|
+
# @type SourceChannel: Integer
|
1756
1756
|
|
1757
|
-
attr_accessor :
|
1757
|
+
attr_accessor :EnvironmentId, :SourceChannel
|
1758
1758
|
|
1759
|
-
def initialize(
|
1760
|
-
@SourceChannel = sourcechannel
|
1759
|
+
def initialize(environmentid=nil, sourcechannel=nil)
|
1761
1760
|
@EnvironmentId = environmentid
|
1761
|
+
@SourceChannel = sourcechannel
|
1762
1762
|
end
|
1763
1763
|
|
1764
1764
|
def deserialize(params)
|
1765
|
-
@SourceChannel = params['SourceChannel']
|
1766
1765
|
@EnvironmentId = params['EnvironmentId']
|
1766
|
+
@SourceChannel = params['SourceChannel']
|
1767
1767
|
end
|
1768
1768
|
end
|
1769
1769
|
|
@@ -2064,9 +2064,9 @@ module TencentCloud
|
|
2064
2064
|
|
2065
2065
|
# DescribeEnvironments请求参数结构体
|
2066
2066
|
class DescribeEnvironmentsRequest < TencentCloud::Common::AbstractModel
|
2067
|
-
# @param Limit: 分页limit
|
2067
|
+
# @param Limit: 分页limit,默认:20
|
2068
2068
|
# @type Limit: Integer
|
2069
|
-
# @param Offset:
|
2069
|
+
# @param Offset: 分页下标,默认:0
|
2070
2070
|
# @type Offset: Integer
|
2071
2071
|
# @param SourceChannel: 来源source
|
2072
2072
|
# @type SourceChannel: Integer
|
@@ -2350,25 +2350,25 @@ module TencentCloud
|
|
2350
2350
|
# @type EnvironmentId: String
|
2351
2351
|
# @param ClusterNamespace: 环境 namespace
|
2352
2352
|
# @type ClusterNamespace: String
|
2353
|
-
# @param SourceChannel: 来源渠道
|
2354
|
-
# @type SourceChannel: Integer
|
2355
2353
|
# @param ApplicationId: 应用 ID
|
2356
2354
|
# @type ApplicationId: String
|
2355
|
+
# @param SourceChannel: 来源渠道
|
2356
|
+
# @type SourceChannel: Integer
|
2357
2357
|
|
2358
|
-
attr_accessor :EnvironmentId, :ClusterNamespace, :
|
2358
|
+
attr_accessor :EnvironmentId, :ClusterNamespace, :ApplicationId, :SourceChannel
|
2359
2359
|
|
2360
|
-
def initialize(environmentid=nil, clusternamespace=nil,
|
2360
|
+
def initialize(environmentid=nil, clusternamespace=nil, applicationid=nil, sourcechannel=nil)
|
2361
2361
|
@EnvironmentId = environmentid
|
2362
2362
|
@ClusterNamespace = clusternamespace
|
2363
|
-
@SourceChannel = sourcechannel
|
2364
2363
|
@ApplicationId = applicationid
|
2364
|
+
@SourceChannel = sourcechannel
|
2365
2365
|
end
|
2366
2366
|
|
2367
2367
|
def deserialize(params)
|
2368
2368
|
@EnvironmentId = params['EnvironmentId']
|
2369
2369
|
@ClusterNamespace = params['ClusterNamespace']
|
2370
|
-
@SourceChannel = params['SourceChannel']
|
2371
2370
|
@ApplicationId = params['ApplicationId']
|
2371
|
+
@SourceChannel = params['SourceChannel']
|
2372
2372
|
end
|
2373
2373
|
end
|
2374
2374
|
|
@@ -2487,7 +2487,7 @@ module TencentCloud
|
|
2487
2487
|
class DestroyEnvironmentRequest < TencentCloud::Common::AbstractModel
|
2488
2488
|
# @param EnvironmentId: 命名空间ID
|
2489
2489
|
# @type EnvironmentId: String
|
2490
|
-
# @param SourceChannel:
|
2490
|
+
# @param SourceChannel: 来源渠道 示例值:0
|
2491
2491
|
# @type SourceChannel: Integer
|
2492
2492
|
|
2493
2493
|
attr_accessor :EnvironmentId, :SourceChannel
|
@@ -2573,25 +2573,25 @@ module TencentCloud
|
|
2573
2573
|
# @type ApplicationId: String
|
2574
2574
|
# @param EnvironmentId: 环境ID
|
2575
2575
|
# @type EnvironmentId: String
|
2576
|
-
# @param SourceChannel: 来源渠道
|
2577
|
-
# @type SourceChannel: Integer
|
2578
2576
|
# @param AutoscalerId: 弹性伸缩策略ID
|
2579
2577
|
# @type AutoscalerId: String
|
2578
|
+
# @param SourceChannel: 来源渠道
|
2579
|
+
# @type SourceChannel: Integer
|
2580
2580
|
|
2581
|
-
attr_accessor :ApplicationId, :EnvironmentId, :
|
2581
|
+
attr_accessor :ApplicationId, :EnvironmentId, :AutoscalerId, :SourceChannel
|
2582
2582
|
|
2583
|
-
def initialize(applicationid=nil, environmentid=nil,
|
2583
|
+
def initialize(applicationid=nil, environmentid=nil, autoscalerid=nil, sourcechannel=nil)
|
2584
2584
|
@ApplicationId = applicationid
|
2585
2585
|
@EnvironmentId = environmentid
|
2586
|
-
@SourceChannel = sourcechannel
|
2587
2586
|
@AutoscalerId = autoscalerid
|
2587
|
+
@SourceChannel = sourcechannel
|
2588
2588
|
end
|
2589
2589
|
|
2590
2590
|
def deserialize(params)
|
2591
2591
|
@ApplicationId = params['ApplicationId']
|
2592
2592
|
@EnvironmentId = params['EnvironmentId']
|
2593
|
-
@SourceChannel = params['SourceChannel']
|
2594
2593
|
@AutoscalerId = params['AutoscalerId']
|
2594
|
+
@SourceChannel = params['SourceChannel']
|
2595
2595
|
end
|
2596
2596
|
end
|
2597
2597
|
|
@@ -2733,25 +2733,25 @@ module TencentCloud
|
|
2733
2733
|
# @type ApplicationId: String
|
2734
2734
|
# @param EnvironmentId: 环境ID
|
2735
2735
|
# @type EnvironmentId: String
|
2736
|
-
# @param SourceChannel: 来源渠道
|
2737
|
-
# @type SourceChannel: Integer
|
2738
2736
|
# @param AutoscalerId: 弹性伸缩策略ID
|
2739
2737
|
# @type AutoscalerId: String
|
2738
|
+
# @param SourceChannel: 来源渠道
|
2739
|
+
# @type SourceChannel: Integer
|
2740
2740
|
|
2741
|
-
attr_accessor :ApplicationId, :EnvironmentId, :
|
2741
|
+
attr_accessor :ApplicationId, :EnvironmentId, :AutoscalerId, :SourceChannel
|
2742
2742
|
|
2743
|
-
def initialize(applicationid=nil, environmentid=nil,
|
2743
|
+
def initialize(applicationid=nil, environmentid=nil, autoscalerid=nil, sourcechannel=nil)
|
2744
2744
|
@ApplicationId = applicationid
|
2745
2745
|
@EnvironmentId = environmentid
|
2746
|
-
@SourceChannel = sourcechannel
|
2747
2746
|
@AutoscalerId = autoscalerid
|
2747
|
+
@SourceChannel = sourcechannel
|
2748
2748
|
end
|
2749
2749
|
|
2750
2750
|
def deserialize(params)
|
2751
2751
|
@ApplicationId = params['ApplicationId']
|
2752
2752
|
@EnvironmentId = params['EnvironmentId']
|
2753
|
-
@SourceChannel = params['SourceChannel']
|
2754
2753
|
@AutoscalerId = params['AutoscalerId']
|
2754
|
+
@SourceChannel = params['SourceChannel']
|
2755
2755
|
end
|
2756
2756
|
end
|
2757
2757
|
|
@@ -2977,8 +2977,6 @@ module TencentCloud
|
|
2977
2977
|
# @param EnvironmentId: 环境ID
|
2978
2978
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2979
2979
|
# @type EnvironmentId: String
|
2980
|
-
# @param ClusterNamespace: 环境namespace
|
2981
|
-
# @type ClusterNamespace: String
|
2982
2980
|
# @param AddressIPVersion: ip version
|
2983
2981
|
# @type AddressIPVersion: String
|
2984
2982
|
# @param IngressName: ingress name
|
@@ -2988,6 +2986,8 @@ module TencentCloud
|
|
2988
2986
|
# @param ClbId: clb ID
|
2989
2987
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2990
2988
|
# @type ClbId: String
|
2989
|
+
# @param ClusterNamespace: 环境namespace
|
2990
|
+
# @type ClusterNamespace: String
|
2991
2991
|
# @param Tls: tls 配置
|
2992
2992
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2993
2993
|
# @type Tls: Array
|
@@ -3011,15 +3011,15 @@ module TencentCloud
|
|
3011
3011
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3012
3012
|
# @type Domain: String
|
3013
3013
|
|
3014
|
-
attr_accessor :EnvironmentId, :
|
3014
|
+
attr_accessor :EnvironmentId, :AddressIPVersion, :IngressName, :Rules, :ClbId, :ClusterNamespace, :Tls, :ClusterId, :Vip, :CreateTime, :Mixed, :RewriteType, :Domain
|
3015
3015
|
|
3016
|
-
def initialize(environmentid=nil,
|
3016
|
+
def initialize(environmentid=nil, addressipversion=nil, ingressname=nil, rules=nil, clbid=nil, clusternamespace=nil, tls=nil, clusterid=nil, vip=nil, createtime=nil, mixed=nil, rewritetype=nil, domain=nil)
|
3017
3017
|
@EnvironmentId = environmentid
|
3018
|
-
@ClusterNamespace = clusternamespace
|
3019
3018
|
@AddressIPVersion = addressipversion
|
3020
3019
|
@IngressName = ingressname
|
3021
3020
|
@Rules = rules
|
3022
3021
|
@ClbId = clbid
|
3022
|
+
@ClusterNamespace = clusternamespace
|
3023
3023
|
@Tls = tls
|
3024
3024
|
@ClusterId = clusterid
|
3025
3025
|
@Vip = vip
|
@@ -3031,7 +3031,6 @@ module TencentCloud
|
|
3031
3031
|
|
3032
3032
|
def deserialize(params)
|
3033
3033
|
@EnvironmentId = params['EnvironmentId']
|
3034
|
-
@ClusterNamespace = params['ClusterNamespace']
|
3035
3034
|
@AddressIPVersion = params['AddressIPVersion']
|
3036
3035
|
@IngressName = params['IngressName']
|
3037
3036
|
unless params['Rules'].nil?
|
@@ -3043,6 +3042,7 @@ module TencentCloud
|
|
3043
3042
|
end
|
3044
3043
|
end
|
3045
3044
|
@ClbId = params['ClbId']
|
3045
|
+
@ClusterNamespace = params['ClusterNamespace']
|
3046
3046
|
unless params['Tls'].nil?
|
3047
3047
|
@Tls = []
|
3048
3048
|
params['Tls'].each do |i|
|
@@ -3389,32 +3389,32 @@ module TencentCloud
|
|
3389
3389
|
# @type ApplicationId: String
|
3390
3390
|
# @param EnvironmentId: 环境ID
|
3391
3391
|
# @type EnvironmentId: String
|
3392
|
-
# @param SourceChannel: 来源渠道
|
3393
|
-
# @type SourceChannel: Integer
|
3394
3392
|
# @param AutoscalerId: 弹性伸缩策略ID
|
3395
3393
|
# @type AutoscalerId: String
|
3396
3394
|
# @param Autoscaler: 弹性伸缩策略
|
3397
3395
|
# @type Autoscaler: :class:`Tencentcloud::Tem.v20210701.models.Autoscaler`
|
3396
|
+
# @param SourceChannel: 来源渠道
|
3397
|
+
# @type SourceChannel: Integer
|
3398
3398
|
|
3399
|
-
attr_accessor :ApplicationId, :EnvironmentId, :
|
3399
|
+
attr_accessor :ApplicationId, :EnvironmentId, :AutoscalerId, :Autoscaler, :SourceChannel
|
3400
3400
|
|
3401
|
-
def initialize(applicationid=nil, environmentid=nil,
|
3401
|
+
def initialize(applicationid=nil, environmentid=nil, autoscalerid=nil, autoscaler=nil, sourcechannel=nil)
|
3402
3402
|
@ApplicationId = applicationid
|
3403
3403
|
@EnvironmentId = environmentid
|
3404
|
-
@SourceChannel = sourcechannel
|
3405
3404
|
@AutoscalerId = autoscalerid
|
3406
3405
|
@Autoscaler = autoscaler
|
3406
|
+
@SourceChannel = sourcechannel
|
3407
3407
|
end
|
3408
3408
|
|
3409
3409
|
def deserialize(params)
|
3410
3410
|
@ApplicationId = params['ApplicationId']
|
3411
3411
|
@EnvironmentId = params['EnvironmentId']
|
3412
|
-
@SourceChannel = params['SourceChannel']
|
3413
3412
|
@AutoscalerId = params['AutoscalerId']
|
3414
3413
|
unless params['Autoscaler'].nil?
|
3415
3414
|
@Autoscaler = Autoscaler.new
|
3416
3415
|
@Autoscaler.deserialize(params['Autoscaler'])
|
3417
3416
|
end
|
3417
|
+
@SourceChannel = params['SourceChannel']
|
3418
3418
|
end
|
3419
3419
|
end
|
3420
3420
|
|
@@ -3602,24 +3602,23 @@ module TencentCloud
|
|
3602
3602
|
# @type EnvironmentId: String
|
3603
3603
|
# @param Name: 配置名
|
3604
3604
|
# @type Name: String
|
3605
|
-
# @param SourceChannel: 来源渠道
|
3606
|
-
# @type SourceChannel: Integer
|
3607
3605
|
# @param Data: 配置信息
|
3608
3606
|
# @type Data: Array
|
3607
|
+
# @param SourceChannel: 来源渠道
|
3608
|
+
# @type SourceChannel: Integer
|
3609
3609
|
|
3610
|
-
attr_accessor :EnvironmentId, :Name, :
|
3610
|
+
attr_accessor :EnvironmentId, :Name, :Data, :SourceChannel
|
3611
3611
|
|
3612
|
-
def initialize(environmentid=nil, name=nil,
|
3612
|
+
def initialize(environmentid=nil, name=nil, data=nil, sourcechannel=nil)
|
3613
3613
|
@EnvironmentId = environmentid
|
3614
3614
|
@Name = name
|
3615
|
-
@SourceChannel = sourcechannel
|
3616
3615
|
@Data = data
|
3616
|
+
@SourceChannel = sourcechannel
|
3617
3617
|
end
|
3618
3618
|
|
3619
3619
|
def deserialize(params)
|
3620
3620
|
@EnvironmentId = params['EnvironmentId']
|
3621
3621
|
@Name = params['Name']
|
3622
|
-
@SourceChannel = params['SourceChannel']
|
3623
3622
|
unless params['Data'].nil?
|
3624
3623
|
@Data = []
|
3625
3624
|
params['Data'].each do |i|
|
@@ -3628,6 +3627,7 @@ module TencentCloud
|
|
3628
3627
|
@Data << pair_tmp
|
3629
3628
|
end
|
3630
3629
|
end
|
3630
|
+
@SourceChannel = params['SourceChannel']
|
3631
3631
|
end
|
3632
3632
|
end
|
3633
3633
|
|
@@ -3655,7 +3655,7 @@ module TencentCloud
|
|
3655
3655
|
class ModifyEnvironmentRequest < TencentCloud::Common::AbstractModel
|
3656
3656
|
# @param EnvironmentId: 环境id
|
3657
3657
|
# @type EnvironmentId: String
|
3658
|
-
# @param EnvironmentName:
|
3658
|
+
# @param EnvironmentName: 环境名称。环境名称不可修改
|
3659
3659
|
# @type EnvironmentName: String
|
3660
3660
|
# @param Description: 环境描述
|
3661
3661
|
# @type Description: String
|
@@ -3810,12 +3810,16 @@ module TencentCloud
|
|
3810
3810
|
# 挂载配置信息
|
3811
3811
|
class MountedSettingConf < TencentCloud::Common::AbstractModel
|
3812
3812
|
# @param ConfigDataName: 配置名称
|
3813
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3813
3814
|
# @type ConfigDataName: String
|
3814
3815
|
# @param MountedPath: 挂载路径
|
3816
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3815
3817
|
# @type MountedPath: String
|
3816
3818
|
# @param Data: 配置内容
|
3819
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3817
3820
|
# @type Data: Array
|
3818
3821
|
# @param SecretDataName: 加密配置名称
|
3822
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3819
3823
|
# @type SecretDataName: String
|
3820
3824
|
|
3821
3825
|
attr_accessor :ConfigDataName, :MountedPath, :Data, :SecretDataName
|
@@ -4182,23 +4186,23 @@ module TencentCloud
|
|
4182
4186
|
class RestartApplicationRequest < TencentCloud::Common::AbstractModel
|
4183
4187
|
# @param ApplicationId: 服务id
|
4184
4188
|
# @type ApplicationId: String
|
4185
|
-
# @param SourceChannel: 来源渠道
|
4186
|
-
# @type SourceChannel: Integer
|
4187
4189
|
# @param EnvironmentId: 环境ID/命名空间ID
|
4188
4190
|
# @type EnvironmentId: String
|
4191
|
+
# @param SourceChannel: 来源渠道
|
4192
|
+
# @type SourceChannel: Integer
|
4189
4193
|
|
4190
|
-
attr_accessor :ApplicationId, :
|
4194
|
+
attr_accessor :ApplicationId, :EnvironmentId, :SourceChannel
|
4191
4195
|
|
4192
|
-
def initialize(applicationid=nil,
|
4196
|
+
def initialize(applicationid=nil, environmentid=nil, sourcechannel=nil)
|
4193
4197
|
@ApplicationId = applicationid
|
4194
|
-
@SourceChannel = sourcechannel
|
4195
4198
|
@EnvironmentId = environmentid
|
4199
|
+
@SourceChannel = sourcechannel
|
4196
4200
|
end
|
4197
4201
|
|
4198
4202
|
def deserialize(params)
|
4199
4203
|
@ApplicationId = params['ApplicationId']
|
4200
|
-
@SourceChannel = params['SourceChannel']
|
4201
4204
|
@EnvironmentId = params['EnvironmentId']
|
4205
|
+
@SourceChannel = params['SourceChannel']
|
4202
4206
|
end
|
4203
4207
|
end
|
4204
4208
|
|
@@ -4510,7 +4514,7 @@ module TencentCloud
|
|
4510
4514
|
|
4511
4515
|
# 端口映射详细信息结构体
|
4512
4516
|
class ServicePortMapping < TencentCloud::Common::AbstractModel
|
4513
|
-
# @param Type:
|
4517
|
+
# @param Type: 服务类型:如:EXTERNAL,VPC,CLUSTER
|
4514
4518
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4515
4519
|
# @type Type: String
|
4516
4520
|
# @param ServiceName: 服务名称
|
@@ -4761,23 +4765,23 @@ module TencentCloud
|
|
4761
4765
|
class StopApplicationRequest < TencentCloud::Common::AbstractModel
|
4762
4766
|
# @param ApplicationId: 服务id
|
4763
4767
|
# @type ApplicationId: String
|
4764
|
-
# @param SourceChannel: 来源渠道
|
4765
|
-
# @type SourceChannel: Integer
|
4766
4768
|
# @param EnvironmentId: 环境ID/命名空间ID
|
4767
4769
|
# @type EnvironmentId: String
|
4770
|
+
# @param SourceChannel: 来源渠道
|
4771
|
+
# @type SourceChannel: Integer
|
4768
4772
|
|
4769
|
-
attr_accessor :ApplicationId, :
|
4773
|
+
attr_accessor :ApplicationId, :EnvironmentId, :SourceChannel
|
4770
4774
|
|
4771
|
-
def initialize(applicationid=nil,
|
4775
|
+
def initialize(applicationid=nil, environmentid=nil, sourcechannel=nil)
|
4772
4776
|
@ApplicationId = applicationid
|
4773
|
-
@SourceChannel = sourcechannel
|
4774
4777
|
@EnvironmentId = environmentid
|
4778
|
+
@SourceChannel = sourcechannel
|
4775
4779
|
end
|
4776
4780
|
|
4777
4781
|
def deserialize(params)
|
4778
4782
|
@ApplicationId = params['ApplicationId']
|
4779
|
-
@SourceChannel = params['SourceChannel']
|
4780
4783
|
@EnvironmentId = params['EnvironmentId']
|
4784
|
+
@SourceChannel = params['SourceChannel']
|
4781
4785
|
end
|
4782
4786
|
end
|
4783
4787
|
|
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.
|
4
|
+
version: 3.0.933
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|