tencentcloud-sdk-tcr 3.0.390 → 3.0.393
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190924/client.rb +384 -0
- data/lib/v20190924/models.rb +879 -33
- metadata +2 -2
data/lib/v20190924/models.rb
CHANGED
@@ -321,6 +321,69 @@ module TencentCloud
|
|
321
321
|
end
|
322
322
|
end
|
323
323
|
|
324
|
+
# CreateImageAccelerationService请求参数结构体
|
325
|
+
class CreateImageAccelerationServiceRequest < TencentCloud::Common::AbstractModel
|
326
|
+
# @param RegistryId: 实例Id
|
327
|
+
# @type RegistryId: String
|
328
|
+
# @param VpcId: 创建CFS的归属的VPCID
|
329
|
+
# @type VpcId: String
|
330
|
+
# @param SubnetId: 创建CFS的归属的子网ID
|
331
|
+
# @type SubnetId: String
|
332
|
+
# @param StorageType: 创建CFS的存储类型,其中 SD 为标准型存储, HP为性能存储。
|
333
|
+
# @type StorageType: String
|
334
|
+
# @param PGroupId: 权限组 ID
|
335
|
+
# @type PGroupId: String
|
336
|
+
# @param Zone: 可用区名称,例如ap-beijing-1,请参考 概览 文档中的地域与可用区列表
|
337
|
+
# @type Zone: String
|
338
|
+
# @param TagSpecification: 云标签描述
|
339
|
+
# @type TagSpecification: :class:`Tencentcloud::Tcr.v20190924.models.TagSpecification`
|
340
|
+
|
341
|
+
attr_accessor :RegistryId, :VpcId, :SubnetId, :StorageType, :PGroupId, :Zone, :TagSpecification
|
342
|
+
|
343
|
+
def initialize(registryid=nil, vpcid=nil, subnetid=nil, storagetype=nil, pgroupid=nil, zone=nil, tagspecification=nil)
|
344
|
+
@RegistryId = registryid
|
345
|
+
@VpcId = vpcid
|
346
|
+
@SubnetId = subnetid
|
347
|
+
@StorageType = storagetype
|
348
|
+
@PGroupId = pgroupid
|
349
|
+
@Zone = zone
|
350
|
+
@TagSpecification = tagspecification
|
351
|
+
end
|
352
|
+
|
353
|
+
def deserialize(params)
|
354
|
+
@RegistryId = params['RegistryId']
|
355
|
+
@VpcId = params['VpcId']
|
356
|
+
@SubnetId = params['SubnetId']
|
357
|
+
@StorageType = params['StorageType']
|
358
|
+
@PGroupId = params['PGroupId']
|
359
|
+
@Zone = params['Zone']
|
360
|
+
unless params['TagSpecification'].nil?
|
361
|
+
@TagSpecification = TagSpecification.new
|
362
|
+
@TagSpecification.deserialize(params['TagSpecification'])
|
363
|
+
end
|
364
|
+
end
|
365
|
+
end
|
366
|
+
|
367
|
+
# CreateImageAccelerationService返回参数结构体
|
368
|
+
class CreateImageAccelerationServiceResponse < TencentCloud::Common::AbstractModel
|
369
|
+
# @param RegistryId: 实例Id
|
370
|
+
# @type RegistryId: String
|
371
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
372
|
+
# @type RequestId: String
|
373
|
+
|
374
|
+
attr_accessor :RegistryId, :RequestId
|
375
|
+
|
376
|
+
def initialize(registryid=nil, requestid=nil)
|
377
|
+
@RegistryId = registryid
|
378
|
+
@RequestId = requestid
|
379
|
+
end
|
380
|
+
|
381
|
+
def deserialize(params)
|
382
|
+
@RegistryId = params['RegistryId']
|
383
|
+
@RequestId = params['RequestId']
|
384
|
+
end
|
385
|
+
end
|
386
|
+
|
324
387
|
# CreateImageLifecyclePersonal请求参数结构体
|
325
388
|
class CreateImageLifecyclePersonalRequest < TencentCloud::Common::AbstractModel
|
326
389
|
# @param RepoName: 仓库名称
|
@@ -404,6 +467,46 @@ module TencentCloud
|
|
404
467
|
end
|
405
468
|
end
|
406
469
|
|
470
|
+
# CreateInstanceCustomizedDomain请求参数结构体
|
471
|
+
class CreateInstanceCustomizedDomainRequest < TencentCloud::Common::AbstractModel
|
472
|
+
# @param RegistryId: 主实例iD
|
473
|
+
# @type RegistryId: String
|
474
|
+
# @param DomainName: 自定义域名
|
475
|
+
# @type DomainName: String
|
476
|
+
# @param CertificateId: 证书ID
|
477
|
+
# @type CertificateId: String
|
478
|
+
|
479
|
+
attr_accessor :RegistryId, :DomainName, :CertificateId
|
480
|
+
|
481
|
+
def initialize(registryid=nil, domainname=nil, certificateid=nil)
|
482
|
+
@RegistryId = registryid
|
483
|
+
@DomainName = domainname
|
484
|
+
@CertificateId = certificateid
|
485
|
+
end
|
486
|
+
|
487
|
+
def deserialize(params)
|
488
|
+
@RegistryId = params['RegistryId']
|
489
|
+
@DomainName = params['DomainName']
|
490
|
+
@CertificateId = params['CertificateId']
|
491
|
+
end
|
492
|
+
end
|
493
|
+
|
494
|
+
# CreateInstanceCustomizedDomain返回参数结构体
|
495
|
+
class CreateInstanceCustomizedDomainResponse < TencentCloud::Common::AbstractModel
|
496
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
497
|
+
# @type RequestId: String
|
498
|
+
|
499
|
+
attr_accessor :RequestId
|
500
|
+
|
501
|
+
def initialize(requestid=nil)
|
502
|
+
@RequestId = requestid
|
503
|
+
end
|
504
|
+
|
505
|
+
def deserialize(params)
|
506
|
+
@RequestId = params['RequestId']
|
507
|
+
end
|
508
|
+
end
|
509
|
+
|
407
510
|
# CreateInstance请求参数结构体
|
408
511
|
class CreateInstanceRequest < TencentCloud::Common::AbstractModel
|
409
512
|
# @param RegistryName: 企业版实例名称
|
@@ -829,6 +932,50 @@ module TencentCloud
|
|
829
932
|
end
|
830
933
|
end
|
831
934
|
|
935
|
+
# CreateSecurityPolicies请求参数结构体
|
936
|
+
class CreateSecurityPoliciesRequest < TencentCloud::Common::AbstractModel
|
937
|
+
# @param RegistryId: 实例Id
|
938
|
+
# @type RegistryId: String
|
939
|
+
# @param CidrBlock: 192.168.0.0/24
|
940
|
+
# @type CidrBlock: String
|
941
|
+
# @param Description: 描述
|
942
|
+
# @type Description: String
|
943
|
+
|
944
|
+
attr_accessor :RegistryId, :CidrBlock, :Description
|
945
|
+
|
946
|
+
def initialize(registryid=nil, cidrblock=nil, description=nil)
|
947
|
+
@RegistryId = registryid
|
948
|
+
@CidrBlock = cidrblock
|
949
|
+
@Description = description
|
950
|
+
end
|
951
|
+
|
952
|
+
def deserialize(params)
|
953
|
+
@RegistryId = params['RegistryId']
|
954
|
+
@CidrBlock = params['CidrBlock']
|
955
|
+
@Description = params['Description']
|
956
|
+
end
|
957
|
+
end
|
958
|
+
|
959
|
+
# CreateSecurityPolicies返回参数结构体
|
960
|
+
class CreateSecurityPoliciesResponse < TencentCloud::Common::AbstractModel
|
961
|
+
# @param RegistryId: 实例Id
|
962
|
+
# @type RegistryId: String
|
963
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
964
|
+
# @type RequestId: String
|
965
|
+
|
966
|
+
attr_accessor :RegistryId, :RequestId
|
967
|
+
|
968
|
+
def initialize(registryid=nil, requestid=nil)
|
969
|
+
@RegistryId = registryid
|
970
|
+
@RequestId = requestid
|
971
|
+
end
|
972
|
+
|
973
|
+
def deserialize(params)
|
974
|
+
@RegistryId = params['RegistryId']
|
975
|
+
@RequestId = params['RequestId']
|
976
|
+
end
|
977
|
+
end
|
978
|
+
|
832
979
|
# CreateSecurityPolicy请求参数结构体
|
833
980
|
class CreateSecurityPolicyRequest < TencentCloud::Common::AbstractModel
|
834
981
|
# @param RegistryId: 实例Id
|
@@ -873,6 +1020,106 @@ module TencentCloud
|
|
873
1020
|
end
|
874
1021
|
end
|
875
1022
|
|
1023
|
+
# CreateSignaturePolicy请求参数结构体
|
1024
|
+
class CreateSignaturePolicyRequest < TencentCloud::Common::AbstractModel
|
1025
|
+
# @param RegistryId: 实例 Id
|
1026
|
+
# @type RegistryId: String
|
1027
|
+
# @param Name: 策略名称
|
1028
|
+
# @type Name: String
|
1029
|
+
# @param NamespaceName: 命名空间名称
|
1030
|
+
# @type NamespaceName: String
|
1031
|
+
# @param KmsId: KMS 密钥
|
1032
|
+
# @type KmsId: String
|
1033
|
+
# @param KmsRegion: KMS 密钥所属地域
|
1034
|
+
# @type KmsRegion: String
|
1035
|
+
# @param Domain: 用户自定义域名,为空时使用 TCR 实例默认域名生成签名
|
1036
|
+
# @type Domain: String
|
1037
|
+
# @param Disabled: 禁用加签策略,默认为 false
|
1038
|
+
# @type Disabled: Boolean
|
1039
|
+
|
1040
|
+
attr_accessor :RegistryId, :Name, :NamespaceName, :KmsId, :KmsRegion, :Domain, :Disabled
|
1041
|
+
|
1042
|
+
def initialize(registryid=nil, name=nil, namespacename=nil, kmsid=nil, kmsregion=nil, domain=nil, disabled=nil)
|
1043
|
+
@RegistryId = registryid
|
1044
|
+
@Name = name
|
1045
|
+
@NamespaceName = namespacename
|
1046
|
+
@KmsId = kmsid
|
1047
|
+
@KmsRegion = kmsregion
|
1048
|
+
@Domain = domain
|
1049
|
+
@Disabled = disabled
|
1050
|
+
end
|
1051
|
+
|
1052
|
+
def deserialize(params)
|
1053
|
+
@RegistryId = params['RegistryId']
|
1054
|
+
@Name = params['Name']
|
1055
|
+
@NamespaceName = params['NamespaceName']
|
1056
|
+
@KmsId = params['KmsId']
|
1057
|
+
@KmsRegion = params['KmsRegion']
|
1058
|
+
@Domain = params['Domain']
|
1059
|
+
@Disabled = params['Disabled']
|
1060
|
+
end
|
1061
|
+
end
|
1062
|
+
|
1063
|
+
# CreateSignaturePolicy返回参数结构体
|
1064
|
+
class CreateSignaturePolicyResponse < TencentCloud::Common::AbstractModel
|
1065
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1066
|
+
# @type RequestId: String
|
1067
|
+
|
1068
|
+
attr_accessor :RequestId
|
1069
|
+
|
1070
|
+
def initialize(requestid=nil)
|
1071
|
+
@RequestId = requestid
|
1072
|
+
end
|
1073
|
+
|
1074
|
+
def deserialize(params)
|
1075
|
+
@RequestId = params['RequestId']
|
1076
|
+
end
|
1077
|
+
end
|
1078
|
+
|
1079
|
+
# CreateSignature请求参数结构体
|
1080
|
+
class CreateSignatureRequest < TencentCloud::Common::AbstractModel
|
1081
|
+
# @param RegistryId: 实例ID
|
1082
|
+
# @type RegistryId: String
|
1083
|
+
# @param NamespaceName: 命名空间名称
|
1084
|
+
# @type NamespaceName: String
|
1085
|
+
# @param RepositoryName: 仓库名称
|
1086
|
+
# @type RepositoryName: String
|
1087
|
+
# @param ImageVersion: Tag名称
|
1088
|
+
# @type ImageVersion: String
|
1089
|
+
|
1090
|
+
attr_accessor :RegistryId, :NamespaceName, :RepositoryName, :ImageVersion
|
1091
|
+
|
1092
|
+
def initialize(registryid=nil, namespacename=nil, repositoryname=nil, imageversion=nil)
|
1093
|
+
@RegistryId = registryid
|
1094
|
+
@NamespaceName = namespacename
|
1095
|
+
@RepositoryName = repositoryname
|
1096
|
+
@ImageVersion = imageversion
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
def deserialize(params)
|
1100
|
+
@RegistryId = params['RegistryId']
|
1101
|
+
@NamespaceName = params['NamespaceName']
|
1102
|
+
@RepositoryName = params['RepositoryName']
|
1103
|
+
@ImageVersion = params['ImageVersion']
|
1104
|
+
end
|
1105
|
+
end
|
1106
|
+
|
1107
|
+
# CreateSignature返回参数结构体
|
1108
|
+
class CreateSignatureResponse < TencentCloud::Common::AbstractModel
|
1109
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1110
|
+
# @type RequestId: String
|
1111
|
+
|
1112
|
+
attr_accessor :RequestId
|
1113
|
+
|
1114
|
+
def initialize(requestid=nil)
|
1115
|
+
@RequestId = requestid
|
1116
|
+
end
|
1117
|
+
|
1118
|
+
def deserialize(params)
|
1119
|
+
@RequestId = params['RequestId']
|
1120
|
+
end
|
1121
|
+
end
|
1122
|
+
|
876
1123
|
# CreateTagRetentionExecution请求参数结构体
|
877
1124
|
class CreateTagRetentionExecutionRequest < TencentCloud::Common::AbstractModel
|
878
1125
|
# @param RegistryId: 主实例iD
|
@@ -1046,6 +1293,34 @@ module TencentCloud
|
|
1046
1293
|
end
|
1047
1294
|
end
|
1048
1295
|
|
1296
|
+
# 自定义域名信息
|
1297
|
+
class CustomizedDomainInfo < TencentCloud::Common::AbstractModel
|
1298
|
+
# @param RegistryId: 实例ID
|
1299
|
+
# @type RegistryId: String
|
1300
|
+
# @param CertId: 证书ID
|
1301
|
+
# @type CertId: String
|
1302
|
+
# @param DomainName: 域名名称
|
1303
|
+
# @type DomainName: String
|
1304
|
+
# @param Status: 域名创建状态(SUCCESS, FAILURE, CREATING, DELETING)
|
1305
|
+
# @type Status: String
|
1306
|
+
|
1307
|
+
attr_accessor :RegistryId, :CertId, :DomainName, :Status
|
1308
|
+
|
1309
|
+
def initialize(registryid=nil, certid=nil, domainname=nil, status=nil)
|
1310
|
+
@RegistryId = registryid
|
1311
|
+
@CertId = certid
|
1312
|
+
@DomainName = domainname
|
1313
|
+
@Status = status
|
1314
|
+
end
|
1315
|
+
|
1316
|
+
def deserialize(params)
|
1317
|
+
@RegistryId = params['RegistryId']
|
1318
|
+
@CertId = params['CertId']
|
1319
|
+
@DomainName = params['DomainName']
|
1320
|
+
@Status = params['Status']
|
1321
|
+
end
|
1322
|
+
end
|
1323
|
+
|
1049
1324
|
# DeleteApplicationTriggerPersonal请求参数结构体
|
1050
1325
|
class DeleteApplicationTriggerPersonalRequest < TencentCloud::Common::AbstractModel
|
1051
1326
|
# @param TriggerName: 触发器名称
|
@@ -1078,6 +1353,38 @@ module TencentCloud
|
|
1078
1353
|
end
|
1079
1354
|
end
|
1080
1355
|
|
1356
|
+
# DeleteImageAccelerateService请求参数结构体
|
1357
|
+
class DeleteImageAccelerateServiceRequest < TencentCloud::Common::AbstractModel
|
1358
|
+
# @param RegistryId: 实例Id
|
1359
|
+
# @type RegistryId: String
|
1360
|
+
|
1361
|
+
attr_accessor :RegistryId
|
1362
|
+
|
1363
|
+
def initialize(registryid=nil)
|
1364
|
+
@RegistryId = registryid
|
1365
|
+
end
|
1366
|
+
|
1367
|
+
def deserialize(params)
|
1368
|
+
@RegistryId = params['RegistryId']
|
1369
|
+
end
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
# DeleteImageAccelerateService返回参数结构体
|
1373
|
+
class DeleteImageAccelerateServiceResponse < TencentCloud::Common::AbstractModel
|
1374
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1375
|
+
# @type RequestId: String
|
1376
|
+
|
1377
|
+
attr_accessor :RequestId
|
1378
|
+
|
1379
|
+
def initialize(requestid=nil)
|
1380
|
+
@RequestId = requestid
|
1381
|
+
end
|
1382
|
+
|
1383
|
+
def deserialize(params)
|
1384
|
+
@RequestId = params['RequestId']
|
1385
|
+
end
|
1386
|
+
end
|
1387
|
+
|
1081
1388
|
# DeleteImageLifecycleGlobalPersonal请求参数结构体
|
1082
1389
|
class DeleteImageLifecycleGlobalPersonalRequest < TencentCloud::Common::AbstractModel
|
1083
1390
|
|
@@ -1257,6 +1564,46 @@ module TencentCloud
|
|
1257
1564
|
end
|
1258
1565
|
end
|
1259
1566
|
|
1567
|
+
# DeleteInstanceCustomizedDomain请求参数结构体
|
1568
|
+
class DeleteInstanceCustomizedDomainRequest < TencentCloud::Common::AbstractModel
|
1569
|
+
# @param RegistryId: 主实例iD
|
1570
|
+
# @type RegistryId: String
|
1571
|
+
# @param DomainName: 自定义域名
|
1572
|
+
# @type DomainName: String
|
1573
|
+
# @param CertificateId: 证书ID
|
1574
|
+
# @type CertificateId: String
|
1575
|
+
|
1576
|
+
attr_accessor :RegistryId, :DomainName, :CertificateId
|
1577
|
+
|
1578
|
+
def initialize(registryid=nil, domainname=nil, certificateid=nil)
|
1579
|
+
@RegistryId = registryid
|
1580
|
+
@DomainName = domainname
|
1581
|
+
@CertificateId = certificateid
|
1582
|
+
end
|
1583
|
+
|
1584
|
+
def deserialize(params)
|
1585
|
+
@RegistryId = params['RegistryId']
|
1586
|
+
@DomainName = params['DomainName']
|
1587
|
+
@CertificateId = params['CertificateId']
|
1588
|
+
end
|
1589
|
+
end
|
1590
|
+
|
1591
|
+
# DeleteInstanceCustomizedDomain返回参数结构体
|
1592
|
+
class DeleteInstanceCustomizedDomainResponse < TencentCloud::Common::AbstractModel
|
1593
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1594
|
+
# @type RequestId: String
|
1595
|
+
|
1596
|
+
attr_accessor :RequestId
|
1597
|
+
|
1598
|
+
def initialize(requestid=nil)
|
1599
|
+
@RequestId = requestid
|
1600
|
+
end
|
1601
|
+
|
1602
|
+
def deserialize(params)
|
1603
|
+
@RequestId = params['RequestId']
|
1604
|
+
end
|
1605
|
+
end
|
1606
|
+
|
1260
1607
|
# DeleteInstance请求参数结构体
|
1261
1608
|
class DeleteInstanceRequest < TencentCloud::Common::AbstractModel
|
1262
1609
|
# @param RegistryId: 实例id
|
@@ -1497,6 +1844,46 @@ module TencentCloud
|
|
1497
1844
|
end
|
1498
1845
|
end
|
1499
1846
|
|
1847
|
+
# DeleteReplicationInstance请求参数结构体
|
1848
|
+
class DeleteReplicationInstanceRequest < TencentCloud::Common::AbstractModel
|
1849
|
+
# @param RegistryId: 实例id
|
1850
|
+
# @type RegistryId: String
|
1851
|
+
# @param ReplicationRegistryId: 复制实例ID
|
1852
|
+
# @type ReplicationRegistryId: String
|
1853
|
+
# @param ReplicationRegionId: 复制实例地域Id
|
1854
|
+
# @type ReplicationRegionId: Integer
|
1855
|
+
|
1856
|
+
attr_accessor :RegistryId, :ReplicationRegistryId, :ReplicationRegionId
|
1857
|
+
|
1858
|
+
def initialize(registryid=nil, replicationregistryid=nil, replicationregionid=nil)
|
1859
|
+
@RegistryId = registryid
|
1860
|
+
@ReplicationRegistryId = replicationregistryid
|
1861
|
+
@ReplicationRegionId = replicationregionid
|
1862
|
+
end
|
1863
|
+
|
1864
|
+
def deserialize(params)
|
1865
|
+
@RegistryId = params['RegistryId']
|
1866
|
+
@ReplicationRegistryId = params['ReplicationRegistryId']
|
1867
|
+
@ReplicationRegionId = params['ReplicationRegionId']
|
1868
|
+
end
|
1869
|
+
end
|
1870
|
+
|
1871
|
+
# DeleteReplicationInstance返回参数结构体
|
1872
|
+
class DeleteReplicationInstanceResponse < TencentCloud::Common::AbstractModel
|
1873
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1874
|
+
# @type RequestId: String
|
1875
|
+
|
1876
|
+
attr_accessor :RequestId
|
1877
|
+
|
1878
|
+
def initialize(requestid=nil)
|
1879
|
+
@RequestId = requestid
|
1880
|
+
end
|
1881
|
+
|
1882
|
+
def deserialize(params)
|
1883
|
+
@RequestId = params['RequestId']
|
1884
|
+
end
|
1885
|
+
end
|
1886
|
+
|
1500
1887
|
# DeleteRepositoryPersonal请求参数结构体
|
1501
1888
|
class DeleteRepositoryPersonalRequest < TencentCloud::Common::AbstractModel
|
1502
1889
|
# @param RepoName: 仓库名称
|
@@ -1569,6 +1956,50 @@ module TencentCloud
|
|
1569
1956
|
end
|
1570
1957
|
end
|
1571
1958
|
|
1959
|
+
# DeleteRepositoryTags请求参数结构体
|
1960
|
+
class DeleteRepositoryTagsRequest < TencentCloud::Common::AbstractModel
|
1961
|
+
# @param RegistryId: 实例ID
|
1962
|
+
# @type RegistryId: String
|
1963
|
+
# @param NamespaceName: 命名空间名称
|
1964
|
+
# @type NamespaceName: String
|
1965
|
+
# @param RepositoryName: 仓库名称
|
1966
|
+
# @type RepositoryName: String
|
1967
|
+
# @param Tags: Tag列表,单次请求Tag数量最大为20
|
1968
|
+
# @type Tags: Array
|
1969
|
+
|
1970
|
+
attr_accessor :RegistryId, :NamespaceName, :RepositoryName, :Tags
|
1971
|
+
|
1972
|
+
def initialize(registryid=nil, namespacename=nil, repositoryname=nil, tags=nil)
|
1973
|
+
@RegistryId = registryid
|
1974
|
+
@NamespaceName = namespacename
|
1975
|
+
@RepositoryName = repositoryname
|
1976
|
+
@Tags = tags
|
1977
|
+
end
|
1978
|
+
|
1979
|
+
def deserialize(params)
|
1980
|
+
@RegistryId = params['RegistryId']
|
1981
|
+
@NamespaceName = params['NamespaceName']
|
1982
|
+
@RepositoryName = params['RepositoryName']
|
1983
|
+
@Tags = params['Tags']
|
1984
|
+
end
|
1985
|
+
end
|
1986
|
+
|
1987
|
+
# DeleteRepositoryTags返回参数结构体
|
1988
|
+
class DeleteRepositoryTagsResponse < TencentCloud::Common::AbstractModel
|
1989
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1990
|
+
# @type RequestId: String
|
1991
|
+
|
1992
|
+
attr_accessor :RequestId
|
1993
|
+
|
1994
|
+
def initialize(requestid=nil)
|
1995
|
+
@RequestId = requestid
|
1996
|
+
end
|
1997
|
+
|
1998
|
+
def deserialize(params)
|
1999
|
+
@RequestId = params['RequestId']
|
2000
|
+
end
|
2001
|
+
end
|
2002
|
+
|
1572
2003
|
# DeleteSecurityPolicy请求参数结构体
|
1573
2004
|
class DeleteSecurityPolicyRequest < TencentCloud::Common::AbstractModel
|
1574
2005
|
# @param RegistryId: 实例Id
|
@@ -1613,6 +2044,42 @@ module TencentCloud
|
|
1613
2044
|
end
|
1614
2045
|
end
|
1615
2046
|
|
2047
|
+
# DeleteSignaturePolicy请求参数结构体
|
2048
|
+
class DeleteSignaturePolicyRequest < TencentCloud::Common::AbstractModel
|
2049
|
+
# @param RegistryId: 实例ID
|
2050
|
+
# @type RegistryId: String
|
2051
|
+
# @param NamespaceName: 命名空间的名称
|
2052
|
+
# @type NamespaceName: String
|
2053
|
+
|
2054
|
+
attr_accessor :RegistryId, :NamespaceName
|
2055
|
+
|
2056
|
+
def initialize(registryid=nil, namespacename=nil)
|
2057
|
+
@RegistryId = registryid
|
2058
|
+
@NamespaceName = namespacename
|
2059
|
+
end
|
2060
|
+
|
2061
|
+
def deserialize(params)
|
2062
|
+
@RegistryId = params['RegistryId']
|
2063
|
+
@NamespaceName = params['NamespaceName']
|
2064
|
+
end
|
2065
|
+
end
|
2066
|
+
|
2067
|
+
# DeleteSignaturePolicy返回参数结构体
|
2068
|
+
class DeleteSignaturePolicyResponse < TencentCloud::Common::AbstractModel
|
2069
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2070
|
+
# @type RequestId: String
|
2071
|
+
|
2072
|
+
attr_accessor :RequestId
|
2073
|
+
|
2074
|
+
def initialize(requestid=nil)
|
2075
|
+
@RequestId = requestid
|
2076
|
+
end
|
2077
|
+
|
2078
|
+
def deserialize(params)
|
2079
|
+
@RequestId = params['RequestId']
|
2080
|
+
end
|
2081
|
+
end
|
2082
|
+
|
1616
2083
|
# DeleteTagRetentionRule请求参数结构体
|
1617
2084
|
class DeleteTagRetentionRuleRequest < TencentCloud::Common::AbstractModel
|
1618
2085
|
# @param RegistryId: 主实例iD
|
@@ -1924,64 +2391,151 @@ module TencentCloud
|
|
1924
2391
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1925
2392
|
# @type RequestId: String
|
1926
2393
|
|
1927
|
-
attr_accessor :Status, :Reason, :RequestId
|
2394
|
+
attr_accessor :Status, :Reason, :RequestId
|
2395
|
+
|
2396
|
+
def initialize(status=nil, reason=nil, requestid=nil)
|
2397
|
+
@Status = status
|
2398
|
+
@Reason = reason
|
2399
|
+
@RequestId = requestid
|
2400
|
+
end
|
2401
|
+
|
2402
|
+
def deserialize(params)
|
2403
|
+
@Status = params['Status']
|
2404
|
+
@Reason = params['Reason']
|
2405
|
+
@RequestId = params['RequestId']
|
2406
|
+
end
|
2407
|
+
end
|
2408
|
+
|
2409
|
+
# DescribeFavorRepositoryPersonal请求参数结构体
|
2410
|
+
class DescribeFavorRepositoryPersonalRequest < TencentCloud::Common::AbstractModel
|
2411
|
+
# @param RepoName: 仓库名称
|
2412
|
+
# @type RepoName: String
|
2413
|
+
# @param Limit: 分页Limit
|
2414
|
+
# @type Limit: Integer
|
2415
|
+
# @param Offset: Offset用于分页
|
2416
|
+
# @type Offset: Integer
|
2417
|
+
|
2418
|
+
attr_accessor :RepoName, :Limit, :Offset
|
2419
|
+
|
2420
|
+
def initialize(reponame=nil, limit=nil, offset=nil)
|
2421
|
+
@RepoName = reponame
|
2422
|
+
@Limit = limit
|
2423
|
+
@Offset = offset
|
2424
|
+
end
|
2425
|
+
|
2426
|
+
def deserialize(params)
|
2427
|
+
@RepoName = params['RepoName']
|
2428
|
+
@Limit = params['Limit']
|
2429
|
+
@Offset = params['Offset']
|
2430
|
+
end
|
2431
|
+
end
|
2432
|
+
|
2433
|
+
# DescribeFavorRepositoryPersonal返回参数结构体
|
2434
|
+
class DescribeFavorRepositoryPersonalResponse < TencentCloud::Common::AbstractModel
|
2435
|
+
# @param Data: 个人收藏仓库列表返回信息
|
2436
|
+
# @type Data: :class:`Tencentcloud::Tcr.v20190924.models.FavorResp`
|
2437
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2438
|
+
# @type RequestId: String
|
2439
|
+
|
2440
|
+
attr_accessor :Data, :RequestId
|
2441
|
+
|
2442
|
+
def initialize(data=nil, requestid=nil)
|
2443
|
+
@Data = data
|
2444
|
+
@RequestId = requestid
|
2445
|
+
end
|
2446
|
+
|
2447
|
+
def deserialize(params)
|
2448
|
+
unless params['Data'].nil?
|
2449
|
+
@Data = FavorResp.new
|
2450
|
+
@Data.deserialize(params['Data'])
|
2451
|
+
end
|
2452
|
+
@RequestId = params['RequestId']
|
2453
|
+
end
|
2454
|
+
end
|
2455
|
+
|
2456
|
+
# DescribeGCJobs请求参数结构体
|
2457
|
+
class DescribeGCJobsRequest < TencentCloud::Common::AbstractModel
|
2458
|
+
# @param RegistryId: 实例 Id
|
2459
|
+
# @type RegistryId: String
|
2460
|
+
|
2461
|
+
attr_accessor :RegistryId
|
2462
|
+
|
2463
|
+
def initialize(registryid=nil)
|
2464
|
+
@RegistryId = registryid
|
2465
|
+
end
|
2466
|
+
|
2467
|
+
def deserialize(params)
|
2468
|
+
@RegistryId = params['RegistryId']
|
2469
|
+
end
|
2470
|
+
end
|
2471
|
+
|
2472
|
+
# DescribeGCJobs返回参数结构体
|
2473
|
+
class DescribeGCJobsResponse < TencentCloud::Common::AbstractModel
|
2474
|
+
# @param Jobs: GC Job 列表
|
2475
|
+
# @type Jobs: Array
|
2476
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2477
|
+
# @type RequestId: String
|
2478
|
+
|
2479
|
+
attr_accessor :Jobs, :RequestId
|
1928
2480
|
|
1929
|
-
def initialize(
|
1930
|
-
@
|
1931
|
-
@Reason = reason
|
2481
|
+
def initialize(jobs=nil, requestid=nil)
|
2482
|
+
@Jobs = jobs
|
1932
2483
|
@RequestId = requestid
|
1933
2484
|
end
|
1934
2485
|
|
1935
2486
|
def deserialize(params)
|
1936
|
-
|
1937
|
-
|
2487
|
+
unless params['Jobs'].nil?
|
2488
|
+
@Jobs = []
|
2489
|
+
params['Jobs'].each do |i|
|
2490
|
+
gcjobinfo_tmp = GCJobInfo.new
|
2491
|
+
gcjobinfo_tmp.deserialize(i)
|
2492
|
+
@Jobs << gcjobinfo_tmp
|
2493
|
+
end
|
2494
|
+
end
|
1938
2495
|
@RequestId = params['RequestId']
|
1939
2496
|
end
|
1940
2497
|
end
|
1941
2498
|
|
1942
|
-
#
|
1943
|
-
class
|
1944
|
-
# @param
|
1945
|
-
# @type
|
1946
|
-
# @param Limit: 分页Limit
|
1947
|
-
# @type Limit: Integer
|
1948
|
-
# @param Offset: Offset用于分页
|
1949
|
-
# @type Offset: Integer
|
2499
|
+
# DescribeImageAccelerateService请求参数结构体
|
2500
|
+
class DescribeImageAccelerateServiceRequest < TencentCloud::Common::AbstractModel
|
2501
|
+
# @param RegistryId: 实例Id
|
2502
|
+
# @type RegistryId: String
|
1950
2503
|
|
1951
|
-
attr_accessor :
|
2504
|
+
attr_accessor :RegistryId
|
1952
2505
|
|
1953
|
-
def initialize(
|
1954
|
-
@
|
1955
|
-
@Limit = limit
|
1956
|
-
@Offset = offset
|
2506
|
+
def initialize(registryid=nil)
|
2507
|
+
@RegistryId = registryid
|
1957
2508
|
end
|
1958
2509
|
|
1959
2510
|
def deserialize(params)
|
1960
|
-
@
|
1961
|
-
@Limit = params['Limit']
|
1962
|
-
@Offset = params['Offset']
|
2511
|
+
@RegistryId = params['RegistryId']
|
1963
2512
|
end
|
1964
2513
|
end
|
1965
2514
|
|
1966
|
-
#
|
1967
|
-
class
|
1968
|
-
# @param
|
1969
|
-
# @type
|
2515
|
+
# DescribeImageAccelerateService返回参数结构体
|
2516
|
+
class DescribeImageAccelerateServiceResponse < TencentCloud::Common::AbstractModel
|
2517
|
+
# @param Status: 镜像加速状态
|
2518
|
+
# @type Status: String
|
2519
|
+
# @param CFSVIP: CFS的VIP
|
2520
|
+
# @type CFSVIP: String
|
2521
|
+
# @param IsEnable: 是否开通
|
2522
|
+
# @type IsEnable: Boolean
|
1970
2523
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1971
2524
|
# @type RequestId: String
|
1972
2525
|
|
1973
|
-
attr_accessor :
|
2526
|
+
attr_accessor :Status, :CFSVIP, :IsEnable, :RequestId
|
1974
2527
|
|
1975
|
-
def initialize(
|
1976
|
-
@
|
2528
|
+
def initialize(status=nil, cfsvip=nil, isenable=nil, requestid=nil)
|
2529
|
+
@Status = status
|
2530
|
+
@CFSVIP = cfsvip
|
2531
|
+
@IsEnable = isenable
|
1977
2532
|
@RequestId = requestid
|
1978
2533
|
end
|
1979
2534
|
|
1980
2535
|
def deserialize(params)
|
1981
|
-
|
1982
|
-
|
1983
|
-
|
1984
|
-
end
|
2536
|
+
@Status = params['Status']
|
2537
|
+
@CFSVIP = params['CFSVIP']
|
2538
|
+
@IsEnable = params['IsEnable']
|
1985
2539
|
@RequestId = params['RequestId']
|
1986
2540
|
end
|
1987
2541
|
end
|
@@ -2329,6 +2883,161 @@ module TencentCloud
|
|
2329
2883
|
end
|
2330
2884
|
end
|
2331
2885
|
|
2886
|
+
# DescribeInstanceAllNamespaces请求参数结构体
|
2887
|
+
class DescribeInstanceAllNamespacesRequest < TencentCloud::Common::AbstractModel
|
2888
|
+
|
2889
|
+
|
2890
|
+
def initialize()
|
2891
|
+
end
|
2892
|
+
|
2893
|
+
def deserialize(params)
|
2894
|
+
end
|
2895
|
+
end
|
2896
|
+
|
2897
|
+
# DescribeInstanceAllNamespaces返回参数结构体
|
2898
|
+
class DescribeInstanceAllNamespacesResponse < TencentCloud::Common::AbstractModel
|
2899
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2900
|
+
# @type RequestId: String
|
2901
|
+
|
2902
|
+
attr_accessor :RequestId
|
2903
|
+
|
2904
|
+
def initialize(requestid=nil)
|
2905
|
+
@RequestId = requestid
|
2906
|
+
end
|
2907
|
+
|
2908
|
+
def deserialize(params)
|
2909
|
+
@RequestId = params['RequestId']
|
2910
|
+
end
|
2911
|
+
end
|
2912
|
+
|
2913
|
+
# DescribeInstanceAll请求参数结构体
|
2914
|
+
class DescribeInstanceAllRequest < TencentCloud::Common::AbstractModel
|
2915
|
+
# @param Registryids: 实例ID列表(为空时,
|
2916
|
+
# 表示获取账号下所有实例)
|
2917
|
+
# @type Registryids: Array
|
2918
|
+
# @param Offset: 偏移量,默认0
|
2919
|
+
# @type Offset: Integer
|
2920
|
+
# @param Limit: 最大输出条数,默认20,最大为100
|
2921
|
+
# @type Limit: Integer
|
2922
|
+
# @param Filters: 过滤条件
|
2923
|
+
# @type Filters: Array
|
2924
|
+
# @param AllRegion: 获取所有地域的实例,默认为False
|
2925
|
+
# @type AllRegion: Boolean
|
2926
|
+
|
2927
|
+
attr_accessor :Registryids, :Offset, :Limit, :Filters, :AllRegion
|
2928
|
+
|
2929
|
+
def initialize(registryids=nil, offset=nil, limit=nil, filters=nil, allregion=nil)
|
2930
|
+
@Registryids = registryids
|
2931
|
+
@Offset = offset
|
2932
|
+
@Limit = limit
|
2933
|
+
@Filters = filters
|
2934
|
+
@AllRegion = allregion
|
2935
|
+
end
|
2936
|
+
|
2937
|
+
def deserialize(params)
|
2938
|
+
@Registryids = params['Registryids']
|
2939
|
+
@Offset = params['Offset']
|
2940
|
+
@Limit = params['Limit']
|
2941
|
+
unless params['Filters'].nil?
|
2942
|
+
@Filters = []
|
2943
|
+
params['Filters'].each do |i|
|
2944
|
+
filter_tmp = Filter.new
|
2945
|
+
filter_tmp.deserialize(i)
|
2946
|
+
@Filters << filter_tmp
|
2947
|
+
end
|
2948
|
+
end
|
2949
|
+
@AllRegion = params['AllRegion']
|
2950
|
+
end
|
2951
|
+
end
|
2952
|
+
|
2953
|
+
# DescribeInstanceAll返回参数结构体
|
2954
|
+
class DescribeInstanceAllResponse < TencentCloud::Common::AbstractModel
|
2955
|
+
# @param TotalCount: 总实例个数
|
2956
|
+
# @type TotalCount: Integer
|
2957
|
+
# @param Registries: 实例信息列表
|
2958
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2959
|
+
# @type Registries: Array
|
2960
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2961
|
+
# @type RequestId: String
|
2962
|
+
|
2963
|
+
attr_accessor :TotalCount, :Registries, :RequestId
|
2964
|
+
|
2965
|
+
def initialize(totalcount=nil, registries=nil, requestid=nil)
|
2966
|
+
@TotalCount = totalcount
|
2967
|
+
@Registries = registries
|
2968
|
+
@RequestId = requestid
|
2969
|
+
end
|
2970
|
+
|
2971
|
+
def deserialize(params)
|
2972
|
+
@TotalCount = params['TotalCount']
|
2973
|
+
unless params['Registries'].nil?
|
2974
|
+
@Registries = []
|
2975
|
+
params['Registries'].each do |i|
|
2976
|
+
registry_tmp = Registry.new
|
2977
|
+
registry_tmp.deserialize(i)
|
2978
|
+
@Registries << registry_tmp
|
2979
|
+
end
|
2980
|
+
end
|
2981
|
+
@RequestId = params['RequestId']
|
2982
|
+
end
|
2983
|
+
end
|
2984
|
+
|
2985
|
+
# DescribeInstanceCustomizedDomain请求参数结构体
|
2986
|
+
class DescribeInstanceCustomizedDomainRequest < TencentCloud::Common::AbstractModel
|
2987
|
+
# @param RegistryId: 主实例iD
|
2988
|
+
# @type RegistryId: String
|
2989
|
+
# @param Limit: 分页Limit
|
2990
|
+
# @type Limit: Integer
|
2991
|
+
# @param Offset: 分页Offset
|
2992
|
+
# @type Offset: Integer
|
2993
|
+
|
2994
|
+
attr_accessor :RegistryId, :Limit, :Offset
|
2995
|
+
|
2996
|
+
def initialize(registryid=nil, limit=nil, offset=nil)
|
2997
|
+
@RegistryId = registryid
|
2998
|
+
@Limit = limit
|
2999
|
+
@Offset = offset
|
3000
|
+
end
|
3001
|
+
|
3002
|
+
def deserialize(params)
|
3003
|
+
@RegistryId = params['RegistryId']
|
3004
|
+
@Limit = params['Limit']
|
3005
|
+
@Offset = params['Offset']
|
3006
|
+
end
|
3007
|
+
end
|
3008
|
+
|
3009
|
+
# DescribeInstanceCustomizedDomain返回参数结构体
|
3010
|
+
class DescribeInstanceCustomizedDomainResponse < TencentCloud::Common::AbstractModel
|
3011
|
+
# @param DomainInfoList: 域名信息列表
|
3012
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3013
|
+
# @type DomainInfoList: Array
|
3014
|
+
# @param TotalCount: 总个数
|
3015
|
+
# @type TotalCount: Integer
|
3016
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3017
|
+
# @type RequestId: String
|
3018
|
+
|
3019
|
+
attr_accessor :DomainInfoList, :TotalCount, :RequestId
|
3020
|
+
|
3021
|
+
def initialize(domaininfolist=nil, totalcount=nil, requestid=nil)
|
3022
|
+
@DomainInfoList = domaininfolist
|
3023
|
+
@TotalCount = totalcount
|
3024
|
+
@RequestId = requestid
|
3025
|
+
end
|
3026
|
+
|
3027
|
+
def deserialize(params)
|
3028
|
+
unless params['DomainInfoList'].nil?
|
3029
|
+
@DomainInfoList = []
|
3030
|
+
params['DomainInfoList'].each do |i|
|
3031
|
+
customizeddomaininfo_tmp = CustomizedDomainInfo.new
|
3032
|
+
customizeddomaininfo_tmp.deserialize(i)
|
3033
|
+
@DomainInfoList << customizeddomaininfo_tmp
|
3034
|
+
end
|
3035
|
+
end
|
3036
|
+
@TotalCount = params['TotalCount']
|
3037
|
+
@RequestId = params['RequestId']
|
3038
|
+
end
|
3039
|
+
end
|
3040
|
+
|
2332
3041
|
# DescribeInstanceStatus请求参数结构体
|
2333
3042
|
class DescribeInstanceStatusRequest < TencentCloud::Common::AbstractModel
|
2334
3043
|
# @param RegistryIds: 实例ID的数组
|
@@ -2724,6 +3433,48 @@ module TencentCloud
|
|
2724
3433
|
end
|
2725
3434
|
end
|
2726
3435
|
|
3436
|
+
# DescribeRegions请求参数结构体
|
3437
|
+
class DescribeRegionsRequest < TencentCloud::Common::AbstractModel
|
3438
|
+
|
3439
|
+
|
3440
|
+
def initialize()
|
3441
|
+
end
|
3442
|
+
|
3443
|
+
def deserialize(params)
|
3444
|
+
end
|
3445
|
+
end
|
3446
|
+
|
3447
|
+
# DescribeRegions返回参数结构体
|
3448
|
+
class DescribeRegionsResponse < TencentCloud::Common::AbstractModel
|
3449
|
+
# @param TotalCount: 返回的总数
|
3450
|
+
# @type TotalCount: Integer
|
3451
|
+
# @param Regions: 地域信息列表
|
3452
|
+
# @type Regions: Array
|
3453
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3454
|
+
# @type RequestId: String
|
3455
|
+
|
3456
|
+
attr_accessor :TotalCount, :Regions, :RequestId
|
3457
|
+
|
3458
|
+
def initialize(totalcount=nil, regions=nil, requestid=nil)
|
3459
|
+
@TotalCount = totalcount
|
3460
|
+
@Regions = regions
|
3461
|
+
@RequestId = requestid
|
3462
|
+
end
|
3463
|
+
|
3464
|
+
def deserialize(params)
|
3465
|
+
@TotalCount = params['TotalCount']
|
3466
|
+
unless params['Regions'].nil?
|
3467
|
+
@Regions = []
|
3468
|
+
params['Regions'].each do |i|
|
3469
|
+
region_tmp = Region.new
|
3470
|
+
region_tmp.deserialize(i)
|
3471
|
+
@Regions << region_tmp
|
3472
|
+
end
|
3473
|
+
end
|
3474
|
+
@RequestId = params['RequestId']
|
3475
|
+
end
|
3476
|
+
end
|
3477
|
+
|
2727
3478
|
# DescribeReplicationInstanceCreateTasks请求参数结构体
|
2728
3479
|
class DescribeReplicationInstanceCreateTasksRequest < TencentCloud::Common::AbstractModel
|
2729
3480
|
# @param ReplicationRegistryId: 同步实例Id,见实例返回列表中的同步实例ID
|
@@ -3729,6 +4480,41 @@ module TencentCloud
|
|
3729
4480
|
end
|
3730
4481
|
end
|
3731
4482
|
|
4483
|
+
# GC 执行信息
|
4484
|
+
class GCJobInfo < TencentCloud::Common::AbstractModel
|
4485
|
+
# @param ID: 作业 ID
|
4486
|
+
# @type ID: Integer
|
4487
|
+
# @param JobStatus: 作业状态
|
4488
|
+
# @type JobStatus: String
|
4489
|
+
# @param CreationTime: 创建时间
|
4490
|
+
# @type CreationTime: String
|
4491
|
+
# @param UpdateTime: 更新时间
|
4492
|
+
# @type UpdateTime: String
|
4493
|
+
# @param Schedule: 调度信息
|
4494
|
+
# @type Schedule: :class:`Tencentcloud::Tcr.v20190924.models.Schedule`
|
4495
|
+
|
4496
|
+
attr_accessor :ID, :JobStatus, :CreationTime, :UpdateTime, :Schedule
|
4497
|
+
|
4498
|
+
def initialize(id=nil, jobstatus=nil, creationtime=nil, updatetime=nil, schedule=nil)
|
4499
|
+
@ID = id
|
4500
|
+
@JobStatus = jobstatus
|
4501
|
+
@CreationTime = creationtime
|
4502
|
+
@UpdateTime = updatetime
|
4503
|
+
@Schedule = schedule
|
4504
|
+
end
|
4505
|
+
|
4506
|
+
def deserialize(params)
|
4507
|
+
@ID = params['ID']
|
4508
|
+
@JobStatus = params['JobStatus']
|
4509
|
+
@CreationTime = params['CreationTime']
|
4510
|
+
@UpdateTime = params['UpdateTime']
|
4511
|
+
unless params['Schedule'].nil?
|
4512
|
+
@Schedule = Schedule.new
|
4513
|
+
@Schedule.deserialize(params['Schedule'])
|
4514
|
+
end
|
4515
|
+
end
|
4516
|
+
end
|
4517
|
+
|
3732
4518
|
# Header KV
|
3733
4519
|
class Header < TencentCloud::Common::AbstractModel
|
3734
4520
|
# @param Key: Header Key
|
@@ -4659,6 +5445,50 @@ module TencentCloud
|
|
4659
5445
|
end
|
4660
5446
|
end
|
4661
5447
|
|
5448
|
+
# 地域信息
|
5449
|
+
class Region < TencentCloud::Common::AbstractModel
|
5450
|
+
# @param Alias: gz
|
5451
|
+
# @type Alias: String
|
5452
|
+
# @param RegionId: 1
|
5453
|
+
# @type RegionId: Integer
|
5454
|
+
# @param RegionName: ap-guangzhou
|
5455
|
+
# @type RegionName: String
|
5456
|
+
# @param Status: alluser
|
5457
|
+
# @type Status: String
|
5458
|
+
# @param Remark: remark
|
5459
|
+
# @type Remark: String
|
5460
|
+
# @param CreatedAt: 创建时间
|
5461
|
+
# @type CreatedAt: String
|
5462
|
+
# @param UpdatedAt: 更新时间
|
5463
|
+
# @type UpdatedAt: String
|
5464
|
+
# @param Id: id
|
5465
|
+
# @type Id: Integer
|
5466
|
+
|
5467
|
+
attr_accessor :Alias, :RegionId, :RegionName, :Status, :Remark, :CreatedAt, :UpdatedAt, :Id
|
5468
|
+
|
5469
|
+
def initialize(_alias=nil, regionid=nil, regionname=nil, status=nil, remark=nil, createdat=nil, updatedat=nil, id=nil)
|
5470
|
+
@Alias = _alias
|
5471
|
+
@RegionId = regionid
|
5472
|
+
@RegionName = regionname
|
5473
|
+
@Status = status
|
5474
|
+
@Remark = remark
|
5475
|
+
@CreatedAt = createdat
|
5476
|
+
@UpdatedAt = updatedat
|
5477
|
+
@Id = id
|
5478
|
+
end
|
5479
|
+
|
5480
|
+
def deserialize(params)
|
5481
|
+
@Alias = params['Alias']
|
5482
|
+
@RegionId = params['RegionId']
|
5483
|
+
@RegionName = params['RegionName']
|
5484
|
+
@Status = params['Status']
|
5485
|
+
@Remark = params['Remark']
|
5486
|
+
@CreatedAt = params['CreatedAt']
|
5487
|
+
@UpdatedAt = params['UpdatedAt']
|
5488
|
+
@Id = params['Id']
|
5489
|
+
end
|
5490
|
+
end
|
5491
|
+
|
4662
5492
|
# 实例信息结构体
|
4663
5493
|
class Registry < TencentCloud::Common::AbstractModel
|
4664
5494
|
# @param RegistryId: 实例ID
|
@@ -5330,6 +6160,22 @@ module TencentCloud
|
|
5330
6160
|
end
|
5331
6161
|
end
|
5332
6162
|
|
6163
|
+
# 作业调度信息
|
6164
|
+
class Schedule < TencentCloud::Common::AbstractModel
|
6165
|
+
# @param Type: 类型:Hourly, Daily, Weekly, Custom, Manual, Dryrun, None
|
6166
|
+
# @type Type: String
|
6167
|
+
|
6168
|
+
attr_accessor :Type
|
6169
|
+
|
6170
|
+
def initialize(type=nil)
|
6171
|
+
@Type = type
|
6172
|
+
end
|
6173
|
+
|
6174
|
+
def deserialize(params)
|
6175
|
+
@Type = params['Type']
|
6176
|
+
end
|
6177
|
+
end
|
6178
|
+
|
5333
6179
|
# 获取满足输入搜索条件的用户镜像仓库
|
5334
6180
|
class SearchUserRepositoryResp < TencentCloud::Common::AbstractModel
|
5335
6181
|
# @param TotalCount: 总个数
|