tencentcloud-sdk-cfg 3.0.896 → 3.0.897

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/v20210820/models.rb +83 -10
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 52939c82f108f7236df0c6cb2c2d8b63ffa9e1a8
4
- data.tar.gz: d7aa9946e743f496940ba41b9202c7f2426bfd52
3
+ metadata.gz: 411dccf47d9a7fa9f13a115bbcceb2ce98b91707
4
+ data.tar.gz: f3d14dca437db08cb18e3245c45123e6acd8d2a5
5
5
  SHA512:
6
- metadata.gz: 4ca8177f57439dc3ec925f6eb4f7889d04026c394c127b74d74058a10af421fd85bcbfc646f0eaab9ccde72e5043d0ac61cf178c77580a8eb5a661a3db26d2c7
7
- data.tar.gz: a7eb86ee2bce9a95f004732b886aaf1f5195b14b95cad6eb1053e46027eab3e7756bf9ea4e8bade7a8af03d45a1c0c6e5514de5b5c2731beb9ea60faf8b86f51
6
+ metadata.gz: 675002e0ee3ac851461d0715b08df206d7240c265b742d55d0955d1de82885df05cbc1c9ac99ad2a944fa6cc7ad4caab471f1acb5c15813d35215b62caa64216
7
+ data.tar.gz: 566dd13d109aa06898a36ec037d56e16b2e06b54faf20fd939e41c0d9dcdcd43ac164ceee6763d2b0917892a6fbb3453d153197fd859eb98b571736800120309
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.896
1
+ 3.0.897
@@ -1115,14 +1115,17 @@ module TencentCloud
1115
1115
  # @type IsExpect: Boolean
1116
1116
  # @param Summary: 演习结论(当演习状态转变为执行结束时,需要填写此字段)
1117
1117
  # @type Summary: String
1118
+ # @param Issue: 问题以及改进
1119
+ # @type Issue: String
1118
1120
 
1119
- attr_accessor :TaskId, :Status, :IsExpect, :Summary
1121
+ attr_accessor :TaskId, :Status, :IsExpect, :Summary, :Issue
1120
1122
 
1121
- def initialize(taskid=nil, status=nil, isexpect=nil, summary=nil)
1123
+ def initialize(taskid=nil, status=nil, isexpect=nil, summary=nil, issue=nil)
1122
1124
  @TaskId = taskid
1123
1125
  @Status = status
1124
1126
  @IsExpect = isexpect
1125
1127
  @Summary = summary
1128
+ @Issue = issue
1126
1129
  end
1127
1130
 
1128
1131
  def deserialize(params)
@@ -1130,6 +1133,7 @@ module TencentCloud
1130
1133
  @Status = params['Status']
1131
1134
  @IsExpect = params['IsExpect']
1132
1135
  @Summary = params['Summary']
1136
+ @Issue = params['Issue']
1133
1137
  end
1134
1138
  end
1135
1139
 
@@ -1165,16 +1169,24 @@ module TencentCloud
1165
1169
  # @param ObjectHasNewAction: 是否包含新动作
1166
1170
  # 注意:此字段可能返回 null,表示取不到有效值。
1167
1171
  # @type ObjectHasNewAction: Boolean
1172
+ # @param ObjectPlatformName: 对应在平台架构图中的资源类型名称
1173
+ # 注意:此字段可能返回 null,表示取不到有效值。
1174
+ # @type ObjectPlatformName: String
1175
+ # @param ObjectSupportType: 1:平台支持的对象 2:应用支持的部分对象
1176
+ # 注意:此字段可能返回 null,表示取不到有效值。
1177
+ # @type ObjectSupportType: Integer
1168
1178
 
1169
- attr_accessor :ObjectTypeId, :ObjectTypeTitle, :ObjectTypeLevelOne, :ObjectTypeParams, :ObjectTypeJsonParse, :ObjectHasNewAction
1179
+ attr_accessor :ObjectTypeId, :ObjectTypeTitle, :ObjectTypeLevelOne, :ObjectTypeParams, :ObjectTypeJsonParse, :ObjectHasNewAction, :ObjectPlatformName, :ObjectSupportType
1170
1180
 
1171
- def initialize(objecttypeid=nil, objecttypetitle=nil, objecttypelevelone=nil, objecttypeparams=nil, objecttypejsonparse=nil, objecthasnewaction=nil)
1181
+ def initialize(objecttypeid=nil, objecttypetitle=nil, objecttypelevelone=nil, objecttypeparams=nil, objecttypejsonparse=nil, objecthasnewaction=nil, objectplatformname=nil, objectsupporttype=nil)
1172
1182
  @ObjectTypeId = objecttypeid
1173
1183
  @ObjectTypeTitle = objecttypetitle
1174
1184
  @ObjectTypeLevelOne = objecttypelevelone
1175
1185
  @ObjectTypeParams = objecttypeparams
1176
1186
  @ObjectTypeJsonParse = objecttypejsonparse
1177
1187
  @ObjectHasNewAction = objecthasnewaction
1188
+ @ObjectPlatformName = objectplatformname
1189
+ @ObjectSupportType = objectsupporttype
1178
1190
  end
1179
1191
 
1180
1192
  def deserialize(params)
@@ -1190,6 +1202,8 @@ module TencentCloud
1190
1202
  @ObjectTypeJsonParse.deserialize(params['ObjectTypeJsonParse'])
1191
1203
  end
1192
1204
  @ObjectHasNewAction = params['ObjectHasNewAction']
1205
+ @ObjectPlatformName = params['ObjectPlatformName']
1206
+ @ObjectSupportType = params['ObjectSupportType']
1193
1207
  end
1194
1208
  end
1195
1209
 
@@ -1349,8 +1363,10 @@ module TencentCloud
1349
1363
  # 用于传入创建、编辑标签
1350
1364
  class TagWithCreate < TencentCloud::Common::AbstractModel
1351
1365
  # @param TagKey: 标签键
1366
+ # 注意:此字段可能返回 null,表示取不到有效值。
1352
1367
  # @type TagKey: String
1353
1368
  # @param TagValue: 标签值
1369
+ # 注意:此字段可能返回 null,表示取不到有效值。
1354
1370
  # @type TagValue: String
1355
1371
 
1356
1372
  attr_accessor :TagKey, :TagValue
@@ -1464,10 +1480,22 @@ module TencentCloud
1464
1480
  # @param PolicyDealType: 护栏处理方式,1--顺序回滚,2--演练暂停
1465
1481
  # 注意:此字段可能返回 null,表示取不到有效值。
1466
1482
  # @type PolicyDealType: Integer
1483
+ # @param TaskPlanStartTime: 计划开始时间
1484
+ # 注意:此字段可能返回 null,表示取不到有效值。
1485
+ # @type TaskPlanStartTime: String
1486
+ # @param TaskPlanEndTime: 计划结束时间
1487
+ # 注意:此字段可能返回 null,表示取不到有效值。
1488
+ # @type TaskPlanEndTime: String
1489
+ # @param TaskOrg: 人员组织
1490
+ # 注意:此字段可能返回 null,表示取不到有效值。
1491
+ # @type TaskOrg: Array
1492
+ # @param TaskIssue: 问题和改进
1493
+ # 注意:此字段可能返回 null,表示取不到有效值。
1494
+ # @type TaskIssue: String
1467
1495
 
1468
- attr_accessor :TaskId, :TaskTitle, :TaskDescription, :TaskTag, :TaskStatus, :TaskStatusType, :TaskProtectStrategy, :TaskCreateTime, :TaskUpdateTime, :TaskGroups, :TaskStartTime, :TaskEndTime, :TaskExpect, :TaskSummary, :TaskMode, :TaskPauseDuration, :TaskOwnerUin, :TaskRegionId, :TaskMonitors, :TaskPolicy, :Tags, :TaskPlanId, :TaskPlanTitle, :ApplicationId, :ApplicationName, :AlarmPolicy, :ApmServiceList, :VerifyId, :PolicyDealType
1496
+ attr_accessor :TaskId, :TaskTitle, :TaskDescription, :TaskTag, :TaskStatus, :TaskStatusType, :TaskProtectStrategy, :TaskCreateTime, :TaskUpdateTime, :TaskGroups, :TaskStartTime, :TaskEndTime, :TaskExpect, :TaskSummary, :TaskMode, :TaskPauseDuration, :TaskOwnerUin, :TaskRegionId, :TaskMonitors, :TaskPolicy, :Tags, :TaskPlanId, :TaskPlanTitle, :ApplicationId, :ApplicationName, :AlarmPolicy, :ApmServiceList, :VerifyId, :PolicyDealType, :TaskPlanStartTime, :TaskPlanEndTime, :TaskOrg, :TaskIssue
1469
1497
 
1470
- def initialize(taskid=nil, tasktitle=nil, taskdescription=nil, tasktag=nil, taskstatus=nil, taskstatustype=nil, taskprotectstrategy=nil, taskcreatetime=nil, taskupdatetime=nil, taskgroups=nil, taskstarttime=nil, taskendtime=nil, taskexpect=nil, tasksummary=nil, taskmode=nil, taskpauseduration=nil, taskowneruin=nil, taskregionid=nil, taskmonitors=nil, taskpolicy=nil, tags=nil, taskplanid=nil, taskplantitle=nil, applicationid=nil, applicationname=nil, alarmpolicy=nil, apmservicelist=nil, verifyid=nil, policydealtype=nil)
1498
+ def initialize(taskid=nil, tasktitle=nil, taskdescription=nil, tasktag=nil, taskstatus=nil, taskstatustype=nil, taskprotectstrategy=nil, taskcreatetime=nil, taskupdatetime=nil, taskgroups=nil, taskstarttime=nil, taskendtime=nil, taskexpect=nil, tasksummary=nil, taskmode=nil, taskpauseduration=nil, taskowneruin=nil, taskregionid=nil, taskmonitors=nil, taskpolicy=nil, tags=nil, taskplanid=nil, taskplantitle=nil, applicationid=nil, applicationname=nil, alarmpolicy=nil, apmservicelist=nil, verifyid=nil, policydealtype=nil, taskplanstarttime=nil, taskplanendtime=nil, taskorg=nil, taskissue=nil)
1471
1499
  @TaskId = taskid
1472
1500
  @TaskTitle = tasktitle
1473
1501
  @TaskDescription = taskdescription
@@ -1497,6 +1525,10 @@ module TencentCloud
1497
1525
  @ApmServiceList = apmservicelist
1498
1526
  @VerifyId = verifyid
1499
1527
  @PolicyDealType = policydealtype
1528
+ @TaskPlanStartTime = taskplanstarttime
1529
+ @TaskPlanEndTime = taskplanendtime
1530
+ @TaskOrg = taskorg
1531
+ @TaskIssue = taskissue
1500
1532
  end
1501
1533
 
1502
1534
  def deserialize(params)
@@ -1560,6 +1592,17 @@ module TencentCloud
1560
1592
  end
1561
1593
  @VerifyId = params['VerifyId']
1562
1594
  @PolicyDealType = params['PolicyDealType']
1595
+ @TaskPlanStartTime = params['TaskPlanStartTime']
1596
+ @TaskPlanEndTime = params['TaskPlanEndTime']
1597
+ unless params['TaskOrg'].nil?
1598
+ @TaskOrg = []
1599
+ params['TaskOrg'].each do |i|
1600
+ taskorg_tmp = TaskOrg.new
1601
+ taskorg_tmp.deserialize(i)
1602
+ @TaskOrg << taskorg_tmp
1603
+ end
1604
+ end
1605
+ @TaskIssue = params['TaskIssue']
1563
1606
  end
1564
1607
  end
1565
1608
 
@@ -1904,8 +1947,8 @@ module TencentCloud
1904
1947
 
1905
1948
  attr_accessor :TaskGroupInstanceId, :TaskGroupInstanceObjectId, :TaskGroupInstanceStatus, :TaskGroupInstanceCreateTime, :TaskGroupInstanceUpdateTime, :TaskGroupInstanceStatusType, :TaskGroupInstanceStartTime, :TaskGroupInstanceEndTime, :TaskGroupInstanceExecuteLog, :TaskGroupInstanceIsRedo, :TaskGroupInstanceExecuteTime
1906
1949
  extend Gem::Deprecate
1907
- deprecate :TaskGroupInstanceExecuteLog, :none, 2024, 8
1908
- deprecate :TaskGroupInstanceExecuteLog=, :none, 2024, 8
1950
+ deprecate :TaskGroupInstanceExecuteLog, :none, 2024, 9
1951
+ deprecate :TaskGroupInstanceExecuteLog=, :none, 2024, 9
1909
1952
 
1910
1953
  def initialize(taskgroupinstanceid=nil, taskgroupinstanceobjectid=nil, taskgroupinstancestatus=nil, taskgroupinstancecreatetime=nil, taskgroupinstanceupdatetime=nil, taskgroupinstancestatustype=nil, taskgroupinstancestarttime=nil, taskgroupinstanceendtime=nil, taskgroupinstanceexecutelog=nil, taskgroupinstanceisredo=nil, taskgroupinstanceexecutetime=nil)
1911
1954
  @TaskGroupInstanceId = taskgroupinstanceid
@@ -2082,6 +2125,28 @@ module TencentCloud
2082
2125
  end
2083
2126
  end
2084
2127
 
2128
+ # 演练人员组织
2129
+ class TaskOrg < TencentCloud::Common::AbstractModel
2130
+ # @param TaskRole: 演练角色
2131
+ # 注意:此字段可能返回 null,表示取不到有效值。
2132
+ # @type TaskRole: String
2133
+ # @param TaskOperator: 负责人
2134
+ # 注意:此字段可能返回 null,表示取不到有效值。
2135
+ # @type TaskOperator: String
2136
+
2137
+ attr_accessor :TaskRole, :TaskOperator
2138
+
2139
+ def initialize(taskrole=nil, taskoperator=nil)
2140
+ @TaskRole = taskrole
2141
+ @TaskOperator = taskoperator
2142
+ end
2143
+
2144
+ def deserialize(params)
2145
+ @TaskRole = params['TaskRole']
2146
+ @TaskOperator = params['TaskOperator']
2147
+ end
2148
+ end
2149
+
2085
2150
  # 演练报告状态信息
2086
2151
  class TaskReportInfo < TencentCloud::Common::AbstractModel
2087
2152
  # @param Stage: 0--未开始,1--正在导出,2--导出成功,3--导出失败
@@ -2098,16 +2163,22 @@ module TencentCloud
2098
2163
  # @param Log: 演练报告导出日志
2099
2164
  # 注意:此字段可能返回 null,表示取不到有效值。
2100
2165
  # @type Log: String
2166
+ # @param ArchiveStage: 0--未开始,1--正在归档,2--归档成功,3--归档失败
2167
+ # @type ArchiveStage: Integer
2168
+ # @param ArchiveTime: 归档时间
2169
+ # @type ArchiveTime: String
2101
2170
 
2102
- attr_accessor :Stage, :CreateTime, :ExpirationTime, :Expired, :CosUrl, :Log
2171
+ attr_accessor :Stage, :CreateTime, :ExpirationTime, :Expired, :CosUrl, :Log, :ArchiveStage, :ArchiveTime
2103
2172
 
2104
- def initialize(stage=nil, createtime=nil, expirationtime=nil, expired=nil, cosurl=nil, log=nil)
2173
+ def initialize(stage=nil, createtime=nil, expirationtime=nil, expired=nil, cosurl=nil, log=nil, archivestage=nil, archivetime=nil)
2105
2174
  @Stage = stage
2106
2175
  @CreateTime = createtime
2107
2176
  @ExpirationTime = expirationtime
2108
2177
  @Expired = expired
2109
2178
  @CosUrl = cosurl
2110
2179
  @Log = log
2180
+ @ArchiveStage = archivestage
2181
+ @ArchiveTime = archivetime
2111
2182
  end
2112
2183
 
2113
2184
  def deserialize(params)
@@ -2117,6 +2188,8 @@ module TencentCloud
2117
2188
  @Expired = params['Expired']
2118
2189
  @CosUrl = params['CosUrl']
2119
2190
  @Log = params['Log']
2191
+ @ArchiveStage = params['ArchiveStage']
2192
+ @ArchiveTime = params['ArchiveTime']
2120
2193
  end
2121
2194
  end
2122
2195
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cfg
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.896
4
+ version: 3.0.897
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-08-28 00:00:00.000000000 Z
11
+ date: 2024-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common