tencentcloud-sdk-iecp 1.0.261 → 1.0.264

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: 5b87c2dfd6a5c2b96b03302aad9de4f72fdcdc51
4
- data.tar.gz: 7f1e89e3ab063abcd981933a914b8ef00fbccbae
3
+ metadata.gz: f968a448276e55c975087658e0bcbc7b5656e7c4
4
+ data.tar.gz: 86081073ff5258b23d0d86e2eeaa43fcd9aa9206
5
5
  SHA512:
6
- metadata.gz: a87d0f16c2692e69d9f9aaa08d33f6f7fc00f380588420a3876ec2a43b13fb60820e1321e5a92eed35267589ac41e3c1f7abcbb2348468a7a2d496c2623b5ff0
7
- data.tar.gz: 02b0980199f189c205e3c725b2c344bf1285ad7abf37d842fc3654315510eac0f320e6597814ae9c48079aa42baa1dbae24584ca468e42f1f4192c06718b97ce
6
+ metadata.gz: 18429d7bec4d43ebd16462688cf0e97364b40d51070f7c9a452a280c7252d0a9e45d721d1123e86ed49e6dace3beb7628150e8b96ad910a788d03eec4ff3b497
7
+ data.tar.gz: e3b5c32ce214086cb495affbfcc20cbae74252cb01d4437e244a95d28f77dcb7cc3bdbf97f35572645876370f17006690f038e46eb1b03187594024f79b1c779
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.261
1
+ 1.0.264
@@ -149,7 +149,7 @@ module TencentCloud
149
149
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
150
150
  end
151
151
 
152
- # 创建边缘单元NodeUnit模版
152
+ # 创建边缘单元NodeUnit模板
153
153
 
154
154
  # @param request: Request instance for CreateEdgeNodeUnitTemplate.
155
155
  # @type request: :class:`Tencentcloud::iecp::V20210914::CreateEdgeNodeUnitTemplateRequest`
@@ -389,7 +389,7 @@ module TencentCloud
389
389
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
390
390
  end
391
391
 
392
- # 删除边缘单元NodeUnit模版
392
+ # 删除边缘单元NodeUnit模板
393
393
 
394
394
  # @param request: Request instance for DeleteEdgeNodeUnitTemplates.
395
395
  # @type request: :class:`Tencentcloud::iecp::V20210914::DeleteEdgeNodeUnitTemplatesRequest`
@@ -1373,7 +1373,7 @@ module TencentCloud
1373
1373
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1374
1374
  end
1375
1375
 
1376
- # 查询边缘单元EdgeUnit模版列表
1376
+ # 查询边缘单元EdgeUnit模板列表
1377
1377
 
1378
1378
  # @param request: Request instance for DescribeEdgeUnitNodeUnitTemplates.
1379
1379
  # @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitNodeUnitTemplatesRequest`
@@ -1541,7 +1541,7 @@ module TencentCloud
1541
1541
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1542
1542
  end
1543
1543
 
1544
- # 查询指定NodeGroup下NodeUnit模版列表
1544
+ # 查询指定NodeGroup下NodeUnit模板列表
1545
1545
 
1546
1546
  # @param request: Request instance for DescribeNodeUnitTemplateOnNodeGroup.
1547
1547
  # @type request: :class:`Tencentcloud::iecp::V20210914::DescribeNodeUnitTemplateOnNodeGroupRequest`
@@ -1901,7 +1901,7 @@ module TencentCloud
1901
1901
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1902
1902
  end
1903
1903
 
1904
- # 修改边缘单元NodeUnit模版
1904
+ # 修改边缘单元NodeUnit模板
1905
1905
 
1906
1906
  # @param request: Request instance for ModifyNodeUnitTemplate.
1907
1907
  # @type request: :class:`Tencentcloud::iecp::V20210914::ModifyNodeUnitTemplateRequest`
@@ -707,7 +707,7 @@ module TencentCloud
707
707
  class CreateEdgeNodeUnitTemplateRequest < TencentCloud::Common::AbstractModel
708
708
  # @param EdgeUnitId: IECP边缘单元ID
709
709
  # @type EdgeUnitId: Integer
710
- # @param Name: NodeUnit模版名称
710
+ # @param Name: NodeUnit模板名称
711
711
  # @type Name: String
712
712
  # @param Namespace: 命名空间,默认default
713
713
  # @type Namespace: String
@@ -879,26 +879,26 @@ module TencentCloud
879
879
  class CreateEdgeUnitApplicationYamlRequest < TencentCloud::Common::AbstractModel
880
880
  # @param EdgeUnitId: 单元ID
881
881
  # @type EdgeUnitId: Integer
882
+ # @param Yaml: base64后的Yaml配置
883
+ # @type Yaml: String
882
884
  # @param BasicInfo: 基本信息
883
885
  # @type BasicInfo: :class:`Tencentcloud::Iecp.v20210914.models.ApplicationBasicInfo`
884
- # @param Yaml: Yaml配置
885
- # @type Yaml: String
886
886
 
887
- attr_accessor :EdgeUnitId, :BasicInfo, :Yaml
887
+ attr_accessor :EdgeUnitId, :Yaml, :BasicInfo
888
888
 
889
- def initialize(edgeunitid=nil, basicinfo=nil, yaml=nil)
889
+ def initialize(edgeunitid=nil, yaml=nil, basicinfo=nil)
890
890
  @EdgeUnitId = edgeunitid
891
- @BasicInfo = basicinfo
892
891
  @Yaml = yaml
892
+ @BasicInfo = basicinfo
893
893
  end
894
894
 
895
895
  def deserialize(params)
896
896
  @EdgeUnitId = params['EdgeUnitId']
897
+ @Yaml = params['Yaml']
897
898
  unless params['BasicInfo'].nil?
898
899
  @BasicInfo = ApplicationBasicInfo.new
899
900
  @BasicInfo.deserialize(params['BasicInfo'])
900
901
  end
901
- @Yaml = params['Yaml']
902
902
  end
903
903
  end
904
904
 
@@ -1290,7 +1290,7 @@ module TencentCloud
1290
1290
  class DeleteEdgeNodeUnitTemplatesRequest < TencentCloud::Common::AbstractModel
1291
1291
  # @param EdgeUnitId: IECP边缘单元ID
1292
1292
  # @type EdgeUnitId: Integer
1293
- # @param NodeUnitTemplateIDs: 删除的NodeUnit模版ID列表
1293
+ # @param NodeUnitTemplateIDs: 删除的NodeUnit模板ID列表
1294
1294
  # @type NodeUnitTemplateIDs: Array
1295
1295
 
1296
1296
  attr_accessor :EdgeUnitId, :NodeUnitTemplateIDs
@@ -3743,7 +3743,7 @@ module TencentCloud
3743
3743
  class DescribeEdgeUnitNodeUnitTemplatesResponse < TencentCloud::Common::AbstractModel
3744
3744
  # @param Total: 符合查询条件的记录总数
3745
3745
  # @type Total: Integer
3746
- # @param NodeUnitTemplates: NodeUnit模版列表
3746
+ # @param NodeUnitTemplates: NodeUnit模板列表
3747
3747
  # 注意:此字段可能返回 null,表示取不到有效值。
3748
3748
  # @type NodeUnitTemplates: Array
3749
3749
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -4181,7 +4181,7 @@ module TencentCloud
4181
4181
  class DescribeNodeUnitTemplateOnNodeGroupResponse < TencentCloud::Common::AbstractModel
4182
4182
  # @param Total: 记录总数
4183
4183
  # @type Total: Integer
4184
- # @param NodeUnitTemplates: NodeUnit模版
4184
+ # @param NodeUnitTemplates: NodeUnit模板
4185
4185
  # 注意:此字段可能返回 null,表示取不到有效值。
4186
4186
  # @type NodeUnitTemplates: Array
4187
4187
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -5486,10 +5486,14 @@ module TencentCloud
5486
5486
  # @type Version: String
5487
5487
  # @param WorkloadVisualConfig: 组件可视化信息
5488
5488
  # @type WorkloadVisualConfig: String
5489
+ # @param DetailUrl: 无
5490
+ # @type DetailUrl: String
5491
+ # @param Installed: 无
5492
+ # @type Installed: Boolean
5489
5493
 
5490
- attr_accessor :ID, :AppName, :Author, :ReleaseTime, :Outline, :Detail, :Icon, :Version, :WorkloadVisualConfig
5494
+ attr_accessor :ID, :AppName, :Author, :ReleaseTime, :Outline, :Detail, :Icon, :Version, :WorkloadVisualConfig, :DetailUrl, :Installed
5491
5495
 
5492
- def initialize(id=nil, appname=nil, author=nil, releasetime=nil, outline=nil, detail=nil, icon=nil, version=nil, workloadvisualconfig=nil)
5496
+ def initialize(id=nil, appname=nil, author=nil, releasetime=nil, outline=nil, detail=nil, icon=nil, version=nil, workloadvisualconfig=nil, detailurl=nil, installed=nil)
5493
5497
  @ID = id
5494
5498
  @AppName = appname
5495
5499
  @Author = author
@@ -5499,6 +5503,8 @@ module TencentCloud
5499
5503
  @Icon = icon
5500
5504
  @Version = version
5501
5505
  @WorkloadVisualConfig = workloadvisualconfig
5506
+ @DetailUrl = detailurl
5507
+ @Installed = installed
5502
5508
  end
5503
5509
 
5504
5510
  def deserialize(params)
@@ -5511,6 +5517,8 @@ module TencentCloud
5511
5517
  @Icon = params['Icon']
5512
5518
  @Version = params['Version']
5513
5519
  @WorkloadVisualConfig = params['WorkloadVisualConfig']
5520
+ @DetailUrl = params['DetailUrl']
5521
+ @Installed = params['Installed']
5514
5522
  end
5515
5523
  end
5516
5524
 
@@ -6046,7 +6054,7 @@ module TencentCloud
6046
6054
  class ModifyNodeUnitTemplateRequest < TencentCloud::Common::AbstractModel
6047
6055
  # @param EdgeUnitId: IECP边缘单元ID
6048
6056
  # @type EdgeUnitId: Integer
6049
- # @param NodeUnitTemplateID: NodeUnit模版ID
6057
+ # @param NodeUnitTemplateID: NodeUnit模板ID
6050
6058
  # @type NodeUnitTemplateID: Integer
6051
6059
  # @param Nodes: 包含的节点列表
6052
6060
  # @type Nodes: Array
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-iecp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.261
4
+ version: 1.0.264
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-02-21 00:00:00.000000000 Z
11
+ date: 2022-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common