tencentcloud-sdk-privatedns 3.0.590 → 3.0.592
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/v20201028/client.rb +24 -0
- data/lib/v20201028/models.rb +89 -57
- 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: cb28390eef8fa5aed769ec2d77fd8e83ebb45740
|
4
|
+
data.tar.gz: f04bc4a0cbc53fbd349ae230482c228e5ebadfeb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0067febab337270b594b3e4f10833e41d47d19d14babc489aea0df1a84424ad58ab2ac72119b8a0f80ce802ced07fb70cc4bc57f84d4e2f763bf9f9e04748ea4
|
7
|
+
data.tar.gz: acdf9fd5de0544c46f80e46b39d9ed17f5ea685a63c2cc7e7e55db7ddd4ed6c849a7e5fbac07907ce903d3f255a43fdab1ee2ba39d5e3af141e9746415e4015f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.592
|
data/lib/v20201028/client.rb
CHANGED
@@ -101,6 +101,30 @@ module TencentCloud
|
|
101
101
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
102
102
|
end
|
103
103
|
|
104
|
+
# 删除终端节点
|
105
|
+
|
106
|
+
# @param request: Request instance for DeleteEndPoint.
|
107
|
+
# @type request: :class:`Tencentcloud::privatedns::V20201028::DeleteEndPointRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::privatedns::V20201028::DeleteEndPointResponse`
|
109
|
+
def DeleteEndPoint(request)
|
110
|
+
body = send_request('DeleteEndPoint', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = DeleteEndPointResponse.new
|
114
|
+
model.deserialize(response['Response'])
|
115
|
+
model
|
116
|
+
else
|
117
|
+
code = response['Response']['Error']['Code']
|
118
|
+
message = response['Response']['Error']['Message']
|
119
|
+
reqid = response['Response']['RequestId']
|
120
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
121
|
+
end
|
122
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
123
|
+
raise e
|
124
|
+
rescue StandardError => e
|
125
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
126
|
+
end
|
127
|
+
|
104
128
|
# 删除私有域解析账号
|
105
129
|
|
106
130
|
# @param request: Request instance for DeletePrivateDNSAccount.
|
data/lib/v20201028/models.rb
CHANGED
@@ -32,7 +32,7 @@ module TencentCloud
|
|
32
32
|
# @type VpcName: String
|
33
33
|
|
34
34
|
attr_accessor :UniqVpcId, :Region, :Uin, :VpcName
|
35
|
-
|
35
|
+
|
36
36
|
def initialize(uniqvpcid=nil, region=nil, uin=nil, vpcname=nil)
|
37
37
|
@UniqVpcId = uniqvpcid
|
38
38
|
@Region = region
|
@@ -60,7 +60,7 @@ module TencentCloud
|
|
60
60
|
# @type VpcName: String
|
61
61
|
|
62
62
|
attr_accessor :VpcId, :Region, :Uin, :VpcName
|
63
|
-
|
63
|
+
|
64
64
|
def initialize(vpcid=nil, region=nil, uin=nil, vpcname=nil)
|
65
65
|
@VpcId = vpcid
|
66
66
|
@Region = region
|
@@ -86,7 +86,7 @@ module TencentCloud
|
|
86
86
|
# @type Region: String
|
87
87
|
|
88
88
|
attr_accessor :Uin, :UniqVpcId, :Region
|
89
|
-
|
89
|
+
|
90
90
|
def initialize(uin=nil, uniqvpcid=nil, region=nil)
|
91
91
|
@Uin = uin
|
92
92
|
@UniqVpcId = uniqvpcid
|
@@ -112,7 +112,7 @@ module TencentCloud
|
|
112
112
|
# @type DataSet: Array
|
113
113
|
|
114
114
|
attr_accessor :Resource, :Metric, :TotalCount, :DataSet
|
115
|
-
|
115
|
+
|
116
116
|
def initialize(resource=nil, metric=nil, totalcount=nil, dataset=nil)
|
117
117
|
@Resource = resource
|
118
118
|
@Metric = metric
|
@@ -145,7 +145,7 @@ module TencentCloud
|
|
145
145
|
# @type Content: String
|
146
146
|
|
147
147
|
attr_accessor :Date, :OperatorUin, :Content
|
148
|
-
|
148
|
+
|
149
149
|
def initialize(date=nil, operatoruin=nil, content=nil)
|
150
150
|
@Date = date
|
151
151
|
@OperatorUin = operatoruin
|
@@ -165,7 +165,7 @@ module TencentCloud
|
|
165
165
|
# @type Account: :class:`Tencentcloud::Privatedns.v20201028.models.PrivateDNSAccount`
|
166
166
|
|
167
167
|
attr_accessor :Account
|
168
|
-
|
168
|
+
|
169
169
|
def initialize(account=nil)
|
170
170
|
@Account = account
|
171
171
|
end
|
@@ -184,7 +184,7 @@ module TencentCloud
|
|
184
184
|
# @type RequestId: String
|
185
185
|
|
186
186
|
attr_accessor :RequestId
|
187
|
-
|
187
|
+
|
188
188
|
def initialize(requestid=nil)
|
189
189
|
@RequestId = requestid
|
190
190
|
end
|
@@ -212,7 +212,7 @@ module TencentCloud
|
|
212
212
|
# @type TTL: Integer
|
213
213
|
|
214
214
|
attr_accessor :ZoneId, :RecordType, :SubDomain, :RecordValue, :Weight, :MX, :TTL
|
215
|
-
|
215
|
+
|
216
216
|
def initialize(zoneid=nil, recordtype=nil, subdomain=nil, recordvalue=nil, weight=nil, mx=nil, ttl=nil)
|
217
217
|
@ZoneId = zoneid
|
218
218
|
@RecordType = recordtype
|
@@ -242,7 +242,7 @@ module TencentCloud
|
|
242
242
|
# @type RequestId: String
|
243
243
|
|
244
244
|
attr_accessor :RecordId, :RequestId
|
245
|
-
|
245
|
+
|
246
246
|
def initialize(recordid=nil, requestid=nil)
|
247
247
|
@RecordId = recordid
|
248
248
|
@RequestId = requestid
|
@@ -274,7 +274,7 @@ module TencentCloud
|
|
274
274
|
# @type CnameSpeedupStatus: String
|
275
275
|
|
276
276
|
attr_accessor :Domain, :TagSet, :VpcSet, :Remark, :DnsForwardStatus, :Vpcs, :AccountVpcSet, :CnameSpeedupStatus
|
277
|
-
|
277
|
+
|
278
278
|
def initialize(domain=nil, tagset=nil, vpcset=nil, remark=nil, dnsforwardstatus=nil, vpcs=nil, accountvpcset=nil, cnamespeedupstatus=nil)
|
279
279
|
@Domain = domain
|
280
280
|
@TagSet = tagset
|
@@ -336,7 +336,7 @@ module TencentCloud
|
|
336
336
|
# @type RequestId: String
|
337
337
|
|
338
338
|
attr_accessor :ZoneId, :Domain, :RequestId
|
339
|
-
|
339
|
+
|
340
340
|
def initialize(zoneid=nil, domain=nil, requestid=nil)
|
341
341
|
@ZoneId = zoneid
|
342
342
|
@Domain = domain
|
@@ -358,7 +358,7 @@ module TencentCloud
|
|
358
358
|
# @type Value: Integer
|
359
359
|
|
360
360
|
attr_accessor :Date, :Value
|
361
|
-
|
361
|
+
|
362
362
|
def initialize(date=nil, value=nil)
|
363
363
|
@Date = date
|
364
364
|
@Value = value
|
@@ -370,13 +370,45 @@ module TencentCloud
|
|
370
370
|
end
|
371
371
|
end
|
372
372
|
|
373
|
+
# DeleteEndPoint请求参数结构体
|
374
|
+
class DeleteEndPointRequest < TencentCloud::Common::AbstractModel
|
375
|
+
# @param EndPointId: 终端节点ID
|
376
|
+
# @type EndPointId: String
|
377
|
+
|
378
|
+
attr_accessor :EndPointId
|
379
|
+
|
380
|
+
def initialize(endpointid=nil)
|
381
|
+
@EndPointId = endpointid
|
382
|
+
end
|
383
|
+
|
384
|
+
def deserialize(params)
|
385
|
+
@EndPointId = params['EndPointId']
|
386
|
+
end
|
387
|
+
end
|
388
|
+
|
389
|
+
# DeleteEndPoint返回参数结构体
|
390
|
+
class DeleteEndPointResponse < TencentCloud::Common::AbstractModel
|
391
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
392
|
+
# @type RequestId: String
|
393
|
+
|
394
|
+
attr_accessor :RequestId
|
395
|
+
|
396
|
+
def initialize(requestid=nil)
|
397
|
+
@RequestId = requestid
|
398
|
+
end
|
399
|
+
|
400
|
+
def deserialize(params)
|
401
|
+
@RequestId = params['RequestId']
|
402
|
+
end
|
403
|
+
end
|
404
|
+
|
373
405
|
# DeletePrivateDNSAccount请求参数结构体
|
374
406
|
class DeletePrivateDNSAccountRequest < TencentCloud::Common::AbstractModel
|
375
407
|
# @param Account: 私有域解析账号
|
376
408
|
# @type Account: :class:`Tencentcloud::Privatedns.v20201028.models.PrivateDNSAccount`
|
377
409
|
|
378
410
|
attr_accessor :Account
|
379
|
-
|
411
|
+
|
380
412
|
def initialize(account=nil)
|
381
413
|
@Account = account
|
382
414
|
end
|
@@ -395,7 +427,7 @@ module TencentCloud
|
|
395
427
|
# @type RequestId: String
|
396
428
|
|
397
429
|
attr_accessor :RequestId
|
398
|
-
|
430
|
+
|
399
431
|
def initialize(requestid=nil)
|
400
432
|
@RequestId = requestid
|
401
433
|
end
|
@@ -415,7 +447,7 @@ module TencentCloud
|
|
415
447
|
# @type RecordIdSet: Array
|
416
448
|
|
417
449
|
attr_accessor :ZoneId, :RecordId, :RecordIdSet
|
418
|
-
|
450
|
+
|
419
451
|
def initialize(zoneid=nil, recordid=nil, recordidset=nil)
|
420
452
|
@ZoneId = zoneid
|
421
453
|
@RecordId = recordid
|
@@ -435,7 +467,7 @@ module TencentCloud
|
|
435
467
|
# @type RequestId: String
|
436
468
|
|
437
469
|
attr_accessor :RequestId
|
438
|
-
|
470
|
+
|
439
471
|
def initialize(requestid=nil)
|
440
472
|
@RequestId = requestid
|
441
473
|
end
|
@@ -453,7 +485,7 @@ module TencentCloud
|
|
453
485
|
# @type ZoneIdSet: Array
|
454
486
|
|
455
487
|
attr_accessor :ZoneId, :ZoneIdSet
|
456
|
-
|
488
|
+
|
457
489
|
def initialize(zoneid=nil, zoneidset=nil)
|
458
490
|
@ZoneId = zoneid
|
459
491
|
@ZoneIdSet = zoneidset
|
@@ -471,7 +503,7 @@ module TencentCloud
|
|
471
503
|
# @type RequestId: String
|
472
504
|
|
473
505
|
attr_accessor :RequestId
|
474
|
-
|
506
|
+
|
475
507
|
def initialize(requestid=nil)
|
476
508
|
@RequestId = requestid
|
477
509
|
end
|
@@ -493,7 +525,7 @@ module TencentCloud
|
|
493
525
|
# @type Filters: Array
|
494
526
|
|
495
527
|
attr_accessor :AccountUin, :Offset, :Limit, :Filters
|
496
|
-
|
528
|
+
|
497
529
|
def initialize(accountuin=nil, offset=nil, limit=nil, filters=nil)
|
498
530
|
@AccountUin = accountuin
|
499
531
|
@Offset = offset
|
@@ -526,7 +558,7 @@ module TencentCloud
|
|
526
558
|
# @type RequestId: String
|
527
559
|
|
528
560
|
attr_accessor :TotalCount, :VpcSet, :RequestId
|
529
|
-
|
561
|
+
|
530
562
|
def initialize(totalcount=nil, vpcset=nil, requestid=nil)
|
531
563
|
@TotalCount = totalcount
|
532
564
|
@VpcSet = vpcset
|
@@ -561,7 +593,7 @@ module TencentCloud
|
|
561
593
|
# @type Limit: Integer
|
562
594
|
|
563
595
|
attr_accessor :TimeRangeBegin, :Filters, :TimeRangeEnd, :Offset, :Limit
|
564
|
-
|
596
|
+
|
565
597
|
def initialize(timerangebegin=nil, filters=nil, timerangeend=nil, offset=nil, limit=nil)
|
566
598
|
@TimeRangeBegin = timerangebegin
|
567
599
|
@Filters = filters
|
@@ -594,7 +626,7 @@ module TencentCloud
|
|
594
626
|
# @type RequestId: String
|
595
627
|
|
596
628
|
attr_accessor :Data, :RequestId
|
597
|
-
|
629
|
+
|
598
630
|
def initialize(data=nil, requestid=nil)
|
599
631
|
@Data = data
|
600
632
|
@RequestId = requestid
|
@@ -616,7 +648,7 @@ module TencentCloud
|
|
616
648
|
# DescribeDashboard请求参数结构体
|
617
649
|
class DescribeDashboardRequest < TencentCloud::Common::AbstractModel
|
618
650
|
|
619
|
-
|
651
|
+
|
620
652
|
def initialize()
|
621
653
|
end
|
622
654
|
|
@@ -638,7 +670,7 @@ module TencentCloud
|
|
638
670
|
# @type RequestId: String
|
639
671
|
|
640
672
|
attr_accessor :ZoneTotal, :ZoneVpcCount, :RequestTotalCount, :FlowUsage, :RequestId
|
641
|
-
|
673
|
+
|
642
674
|
def initialize(zonetotal=nil, zonevpccount=nil, requesttotalcount=nil, flowusage=nil, requestid=nil)
|
643
675
|
@ZoneTotal = zonetotal
|
644
676
|
@ZoneVpcCount = zonevpccount
|
@@ -673,7 +705,7 @@ module TencentCloud
|
|
673
705
|
# @type Filters: Array
|
674
706
|
|
675
707
|
attr_accessor :Offset, :Limit, :Filters
|
676
|
-
|
708
|
+
|
677
709
|
def initialize(offset=nil, limit=nil, filters=nil)
|
678
710
|
@Offset = offset
|
679
711
|
@Limit = limit
|
@@ -704,7 +736,7 @@ module TencentCloud
|
|
704
736
|
# @type RequestId: String
|
705
737
|
|
706
738
|
attr_accessor :TotalCount, :AccountSet, :RequestId
|
707
|
-
|
739
|
+
|
708
740
|
def initialize(totalcount=nil, accountset=nil, requestid=nil)
|
709
741
|
@TotalCount = totalcount
|
710
742
|
@AccountSet = accountset
|
@@ -735,7 +767,7 @@ module TencentCloud
|
|
735
767
|
# @type Filters: Array
|
736
768
|
|
737
769
|
attr_accessor :Offset, :Limit, :Filters
|
738
|
-
|
770
|
+
|
739
771
|
def initialize(offset=nil, limit=nil, filters=nil)
|
740
772
|
@Offset = offset
|
741
773
|
@Limit = limit
|
@@ -766,7 +798,7 @@ module TencentCloud
|
|
766
798
|
# @type RequestId: String
|
767
799
|
|
768
800
|
attr_accessor :TotalCount, :PrivateZoneSet, :RequestId
|
769
|
-
|
801
|
+
|
770
802
|
def initialize(totalcount=nil, privatezoneset=nil, requestid=nil)
|
771
803
|
@TotalCount = totalcount
|
772
804
|
@PrivateZoneSet = privatezoneset
|
@@ -799,7 +831,7 @@ module TencentCloud
|
|
799
831
|
# @type Limit: Integer
|
800
832
|
|
801
833
|
attr_accessor :ZoneId, :Filters, :Offset, :Limit
|
802
|
-
|
834
|
+
|
803
835
|
def initialize(zoneid=nil, filters=nil, offset=nil, limit=nil)
|
804
836
|
@ZoneId = zoneid
|
805
837
|
@Filters = filters
|
@@ -832,7 +864,7 @@ module TencentCloud
|
|
832
864
|
# @type RequestId: String
|
833
865
|
|
834
866
|
attr_accessor :TotalCount, :RecordSet, :RequestId
|
835
|
-
|
867
|
+
|
836
868
|
def initialize(totalcount=nil, recordset=nil, requestid=nil)
|
837
869
|
@TotalCount = totalcount
|
838
870
|
@RecordSet = recordset
|
@@ -859,7 +891,7 @@ module TencentCloud
|
|
859
891
|
# @type ZoneId: String
|
860
892
|
|
861
893
|
attr_accessor :ZoneId
|
862
|
-
|
894
|
+
|
863
895
|
def initialize(zoneid=nil)
|
864
896
|
@ZoneId = zoneid
|
865
897
|
end
|
@@ -877,7 +909,7 @@ module TencentCloud
|
|
877
909
|
# @type RequestId: String
|
878
910
|
|
879
911
|
attr_accessor :PrivateZone, :RequestId
|
880
|
-
|
912
|
+
|
881
913
|
def initialize(privatezone=nil, requestid=nil)
|
882
914
|
@PrivateZone = privatezone
|
883
915
|
@RequestId = requestid
|
@@ -895,7 +927,7 @@ module TencentCloud
|
|
895
927
|
# DescribePrivateZoneService请求参数结构体
|
896
928
|
class DescribePrivateZoneServiceRequest < TencentCloud::Common::AbstractModel
|
897
929
|
|
898
|
-
|
930
|
+
|
899
931
|
def initialize()
|
900
932
|
end
|
901
933
|
|
@@ -911,7 +943,7 @@ module TencentCloud
|
|
911
943
|
# @type RequestId: String
|
912
944
|
|
913
945
|
attr_accessor :ServiceStatus, :RequestId
|
914
|
-
|
946
|
+
|
915
947
|
def initialize(servicestatus=nil, requestid=nil)
|
916
948
|
@ServiceStatus = servicestatus
|
917
949
|
@RequestId = requestid
|
@@ -926,7 +958,7 @@ module TencentCloud
|
|
926
958
|
# DescribeQuotaUsage请求参数结构体
|
927
959
|
class DescribeQuotaUsageRequest < TencentCloud::Common::AbstractModel
|
928
960
|
|
929
|
-
|
961
|
+
|
930
962
|
def initialize()
|
931
963
|
end
|
932
964
|
|
@@ -942,7 +974,7 @@ module TencentCloud
|
|
942
974
|
# @type RequestId: String
|
943
975
|
|
944
976
|
attr_accessor :TldQuota, :RequestId
|
945
|
-
|
977
|
+
|
946
978
|
def initialize(tldquota=nil, requestid=nil)
|
947
979
|
@TldQuota = tldquota
|
948
980
|
@RequestId = requestid
|
@@ -967,7 +999,7 @@ module TencentCloud
|
|
967
999
|
# @type TimeRangeEnd: String
|
968
1000
|
|
969
1001
|
attr_accessor :TimeRangeBegin, :Filters, :TimeRangeEnd
|
970
|
-
|
1002
|
+
|
971
1003
|
def initialize(timerangebegin=nil, filters=nil, timerangeend=nil)
|
972
1004
|
@TimeRangeBegin = timerangebegin
|
973
1005
|
@Filters = filters
|
@@ -998,7 +1030,7 @@ module TencentCloud
|
|
998
1030
|
# @type RequestId: String
|
999
1031
|
|
1000
1032
|
attr_accessor :Data, :Interval, :RequestId
|
1001
|
-
|
1033
|
+
|
1002
1034
|
def initialize(data=nil, interval=nil, requestid=nil)
|
1003
1035
|
@Data = data
|
1004
1036
|
@Interval = interval
|
@@ -1027,7 +1059,7 @@ module TencentCloud
|
|
1027
1059
|
# @type Values: Array
|
1028
1060
|
|
1029
1061
|
attr_accessor :Name, :Values
|
1030
|
-
|
1062
|
+
|
1031
1063
|
def initialize(name=nil, values=nil)
|
1032
1064
|
@Name = name
|
1033
1065
|
@Values = values
|
@@ -1049,7 +1081,7 @@ module TencentCloud
|
|
1049
1081
|
# @type AvailableQuantity: Integer
|
1050
1082
|
|
1051
1083
|
attr_accessor :FlowType, :TotalQuantity, :AvailableQuantity
|
1052
|
-
|
1084
|
+
|
1053
1085
|
def initialize(flowtype=nil, totalquantity=nil, availablequantity=nil)
|
1054
1086
|
@FlowType = flowtype
|
1055
1087
|
@TotalQuantity = totalquantity
|
@@ -1076,7 +1108,7 @@ module TencentCloud
|
|
1076
1108
|
# @type MetricCount: Integer
|
1077
1109
|
|
1078
1110
|
attr_accessor :Resource, :Metric, :DataSet, :MetricCount
|
1079
|
-
|
1111
|
+
|
1080
1112
|
def initialize(resource=nil, metric=nil, dataset=nil, metriccount=nil)
|
1081
1113
|
@Resource = resource
|
1082
1114
|
@Metric = metric
|
@@ -1119,7 +1151,7 @@ module TencentCloud
|
|
1119
1151
|
# @type TTL: Integer
|
1120
1152
|
|
1121
1153
|
attr_accessor :ZoneId, :RecordId, :RecordType, :SubDomain, :RecordValue, :Weight, :MX, :TTL
|
1122
|
-
|
1154
|
+
|
1123
1155
|
def initialize(zoneid=nil, recordid=nil, recordtype=nil, subdomain=nil, recordvalue=nil, weight=nil, mx=nil, ttl=nil)
|
1124
1156
|
@ZoneId = zoneid
|
1125
1157
|
@RecordId = recordid
|
@@ -1149,7 +1181,7 @@ module TencentCloud
|
|
1149
1181
|
# @type RequestId: String
|
1150
1182
|
|
1151
1183
|
attr_accessor :RequestId
|
1152
|
-
|
1184
|
+
|
1153
1185
|
def initialize(requestid=nil)
|
1154
1186
|
@RequestId = requestid
|
1155
1187
|
end
|
@@ -1171,7 +1203,7 @@ module TencentCloud
|
|
1171
1203
|
# @type CnameSpeedupStatus: String
|
1172
1204
|
|
1173
1205
|
attr_accessor :ZoneId, :Remark, :DnsForwardStatus, :CnameSpeedupStatus
|
1174
|
-
|
1206
|
+
|
1175
1207
|
def initialize(zoneid=nil, remark=nil, dnsforwardstatus=nil, cnamespeedupstatus=nil)
|
1176
1208
|
@ZoneId = zoneid
|
1177
1209
|
@Remark = remark
|
@@ -1193,7 +1225,7 @@ module TencentCloud
|
|
1193
1225
|
# @type RequestId: String
|
1194
1226
|
|
1195
1227
|
attr_accessor :RequestId
|
1196
|
-
|
1228
|
+
|
1197
1229
|
def initialize(requestid=nil)
|
1198
1230
|
@RequestId = requestid
|
1199
1231
|
end
|
@@ -1213,7 +1245,7 @@ module TencentCloud
|
|
1213
1245
|
# @type AccountVpcSet: Array
|
1214
1246
|
|
1215
1247
|
attr_accessor :ZoneId, :VpcSet, :AccountVpcSet
|
1216
|
-
|
1248
|
+
|
1217
1249
|
def initialize(zoneid=nil, vpcset=nil, accountvpcset=nil)
|
1218
1250
|
@ZoneId = zoneid
|
1219
1251
|
@VpcSet = vpcset
|
@@ -1253,7 +1285,7 @@ module TencentCloud
|
|
1253
1285
|
# @type RequestId: String
|
1254
1286
|
|
1255
1287
|
attr_accessor :ZoneId, :VpcSet, :AccountVpcSet, :RequestId
|
1256
|
-
|
1288
|
+
|
1257
1289
|
def initialize(zoneid=nil, vpcset=nil, accountvpcset=nil, requestid=nil)
|
1258
1290
|
@ZoneId = zoneid
|
1259
1291
|
@VpcSet = vpcset
|
@@ -1293,7 +1325,7 @@ module TencentCloud
|
|
1293
1325
|
# @type Status: String
|
1294
1326
|
|
1295
1327
|
attr_accessor :ZoneId, :RecordIds, :Status
|
1296
|
-
|
1328
|
+
|
1297
1329
|
def initialize(zoneid=nil, recordids=nil, status=nil)
|
1298
1330
|
@ZoneId = zoneid
|
1299
1331
|
@RecordIds = recordids
|
@@ -1319,7 +1351,7 @@ module TencentCloud
|
|
1319
1351
|
# @type RequestId: String
|
1320
1352
|
|
1321
1353
|
attr_accessor :ZoneId, :RecordIds, :Status, :RequestId
|
1322
|
-
|
1354
|
+
|
1323
1355
|
def initialize(zoneid=nil, recordids=nil, status=nil, requestid=nil)
|
1324
1356
|
@ZoneId = zoneid
|
1325
1357
|
@RecordIds = recordids
|
@@ -1345,7 +1377,7 @@ module TencentCloud
|
|
1345
1377
|
# @type Nickname: String
|
1346
1378
|
|
1347
1379
|
attr_accessor :Uin, :Account, :Nickname
|
1348
|
-
|
1380
|
+
|
1349
1381
|
def initialize(uin=nil, account=nil, nickname=nil)
|
1350
1382
|
@Uin = uin
|
1351
1383
|
@Account = account
|
@@ -1406,7 +1438,7 @@ module TencentCloud
|
|
1406
1438
|
# @type EndPointName: String
|
1407
1439
|
|
1408
1440
|
attr_accessor :ZoneId, :OwnerUin, :Domain, :CreatedOn, :UpdatedOn, :RecordCount, :Remark, :VpcSet, :Status, :DnsForwardStatus, :Tags, :AccountVpcSet, :IsCustomTld, :CnameSpeedupStatus, :ForwardRuleName, :ForwardRuleType, :ForwardAddress, :EndPointName
|
1409
|
-
|
1441
|
+
|
1410
1442
|
def initialize(zoneid=nil, owneruin=nil, domain=nil, createdon=nil, updatedon=nil, recordcount=nil, remark=nil, vpcset=nil, status=nil, dnsforwardstatus=nil, tags=nil, accountvpcset=nil, iscustomtld=nil, cnamespeedupstatus=nil, forwardrulename=nil, forwardruletype=nil, forwardaddress=nil, endpointname=nil)
|
1411
1443
|
@ZoneId = zoneid
|
1412
1444
|
@OwnerUin = owneruin
|
@@ -1505,7 +1537,7 @@ module TencentCloud
|
|
1505
1537
|
# @type Enabled: Integer
|
1506
1538
|
|
1507
1539
|
attr_accessor :RecordId, :ZoneId, :SubDomain, :RecordType, :RecordValue, :TTL, :MX, :Status, :Weight, :CreatedOn, :UpdatedOn, :Extra, :Enabled
|
1508
|
-
|
1540
|
+
|
1509
1541
|
def initialize(recordid=nil, zoneid=nil, subdomain=nil, recordtype=nil, recordvalue=nil, ttl=nil, mx=nil, status=nil, weight=nil, createdon=nil, updatedon=nil, extra=nil, enabled=nil)
|
1510
1542
|
@RecordId = recordid
|
1511
1543
|
@ZoneId = zoneid
|
@@ -1542,7 +1574,7 @@ module TencentCloud
|
|
1542
1574
|
# SubscribePrivateZoneService请求参数结构体
|
1543
1575
|
class SubscribePrivateZoneServiceRequest < TencentCloud::Common::AbstractModel
|
1544
1576
|
|
1545
|
-
|
1577
|
+
|
1546
1578
|
def initialize()
|
1547
1579
|
end
|
1548
1580
|
|
@@ -1558,7 +1590,7 @@ module TencentCloud
|
|
1558
1590
|
# @type RequestId: String
|
1559
1591
|
|
1560
1592
|
attr_accessor :ServiceStatus, :RequestId
|
1561
|
-
|
1593
|
+
|
1562
1594
|
def initialize(servicestatus=nil, requestid=nil)
|
1563
1595
|
@ServiceStatus = servicestatus
|
1564
1596
|
@RequestId = requestid
|
@@ -1578,7 +1610,7 @@ module TencentCloud
|
|
1578
1610
|
# @type TagValue: String
|
1579
1611
|
|
1580
1612
|
attr_accessor :TagKey, :TagValue
|
1581
|
-
|
1613
|
+
|
1582
1614
|
def initialize(tagkey=nil, tagvalue=nil)
|
1583
1615
|
@TagKey = tagkey
|
1584
1616
|
@TagValue = tagvalue
|
@@ -1602,7 +1634,7 @@ module TencentCloud
|
|
1602
1634
|
# @type Quota: Integer
|
1603
1635
|
|
1604
1636
|
attr_accessor :Total, :Used, :Stock, :Quota
|
1605
|
-
|
1637
|
+
|
1606
1638
|
def initialize(total=nil, used=nil, stock=nil, quota=nil)
|
1607
1639
|
@Total = total
|
1608
1640
|
@Used = used
|
@@ -1626,7 +1658,7 @@ module TencentCloud
|
|
1626
1658
|
# @type Region: String
|
1627
1659
|
|
1628
1660
|
attr_accessor :UniqVpcId, :Region
|
1629
|
-
|
1661
|
+
|
1630
1662
|
def initialize(uniqvpcid=nil, region=nil)
|
1631
1663
|
@UniqVpcId = uniqvpcid
|
1632
1664
|
@Region = region
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-privatedns
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.592
|
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-06-
|
11
|
+
date: 2023-06-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|