@aws-sdk/client-route-53-domains 3.687.0 → 3.692.0
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.
- package/dist-types/models/models_0.d.ts +171 -171
- package/dist-types/ts3.4/models/models_0.d.ts +171 -171
- package/package.json +35 -35
|
@@ -5,7 +5,7 @@ export interface AcceptDomainTransferFromAnotherAwsAccountRequest {
|
|
|
5
5
|
Password: string | undefined;
|
|
6
6
|
}
|
|
7
7
|
export interface AcceptDomainTransferFromAnotherAwsAccountResponse {
|
|
8
|
-
OperationId?: string;
|
|
8
|
+
OperationId?: string | undefined;
|
|
9
9
|
}
|
|
10
10
|
export declare class DomainLimitExceeded extends __BaseException {
|
|
11
11
|
readonly name: "DomainLimitExceeded";
|
|
@@ -32,16 +32,16 @@ export declare class UnsupportedTLD extends __BaseException {
|
|
|
32
32
|
constructor(opts: __ExceptionOptionType<UnsupportedTLD, __BaseException>);
|
|
33
33
|
}
|
|
34
34
|
export interface DnssecSigningAttributes {
|
|
35
|
-
Algorithm?: number;
|
|
36
|
-
Flags?: number;
|
|
37
|
-
PublicKey?: string;
|
|
35
|
+
Algorithm?: number | undefined;
|
|
36
|
+
Flags?: number | undefined;
|
|
37
|
+
PublicKey?: string | undefined;
|
|
38
38
|
}
|
|
39
39
|
export interface AssociateDelegationSignerToDomainRequest {
|
|
40
40
|
DomainName: string | undefined;
|
|
41
41
|
SigningAttributes: DnssecSigningAttributes | undefined;
|
|
42
42
|
}
|
|
43
43
|
export interface AssociateDelegationSignerToDomainResponse {
|
|
44
|
-
OperationId?: string;
|
|
44
|
+
OperationId?: string | undefined;
|
|
45
45
|
}
|
|
46
46
|
export declare class DnssecLimitExceeded extends __BaseException {
|
|
47
47
|
readonly name: "DnssecLimitExceeded";
|
|
@@ -53,7 +53,7 @@ export declare class DnssecLimitExceeded extends __BaseException {
|
|
|
53
53
|
export declare class DuplicateRequest extends __BaseException {
|
|
54
54
|
readonly name: "DuplicateRequest";
|
|
55
55
|
readonly $fault: "client";
|
|
56
|
-
requestId?: string;
|
|
56
|
+
requestId?: string | undefined;
|
|
57
57
|
constructor(opts: __ExceptionOptionType<DuplicateRequest, __BaseException>);
|
|
58
58
|
}
|
|
59
59
|
export declare class TLDRulesViolation extends __BaseException {
|
|
@@ -85,21 +85,21 @@ export declare const OperationType: {
|
|
|
85
85
|
};
|
|
86
86
|
export type OperationType = (typeof OperationType)[keyof typeof OperationType];
|
|
87
87
|
export interface BillingRecord {
|
|
88
|
-
DomainName?: string;
|
|
89
|
-
Operation?: OperationType;
|
|
90
|
-
InvoiceId?: string;
|
|
91
|
-
BillDate?: Date;
|
|
92
|
-
Price?: number;
|
|
88
|
+
DomainName?: string | undefined;
|
|
89
|
+
Operation?: OperationType | undefined;
|
|
90
|
+
InvoiceId?: string | undefined;
|
|
91
|
+
BillDate?: Date | undefined;
|
|
92
|
+
Price?: number | undefined;
|
|
93
93
|
}
|
|
94
94
|
export interface CancelDomainTransferToAnotherAwsAccountRequest {
|
|
95
95
|
DomainName: string | undefined;
|
|
96
96
|
}
|
|
97
97
|
export interface CancelDomainTransferToAnotherAwsAccountResponse {
|
|
98
|
-
OperationId?: string;
|
|
98
|
+
OperationId?: string | undefined;
|
|
99
99
|
}
|
|
100
100
|
export interface CheckDomainAvailabilityRequest {
|
|
101
101
|
DomainName: string | undefined;
|
|
102
|
-
IdnLangCode?: string;
|
|
102
|
+
IdnLangCode?: string | undefined;
|
|
103
103
|
}
|
|
104
104
|
export declare const DomainAvailability: {
|
|
105
105
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -116,11 +116,11 @@ export declare const DomainAvailability: {
|
|
|
116
116
|
export type DomainAvailability =
|
|
117
117
|
(typeof DomainAvailability)[keyof typeof DomainAvailability];
|
|
118
118
|
export interface CheckDomainAvailabilityResponse {
|
|
119
|
-
Availability?: DomainAvailability;
|
|
119
|
+
Availability?: DomainAvailability | undefined;
|
|
120
120
|
}
|
|
121
121
|
export interface CheckDomainTransferabilityRequest {
|
|
122
122
|
DomainName: string | undefined;
|
|
123
|
-
AuthCode?: string;
|
|
123
|
+
AuthCode?: string | undefined;
|
|
124
124
|
}
|
|
125
125
|
export declare const Transferable: {
|
|
126
126
|
readonly DOMAIN_IN_ANOTHER_ACCOUNT: "DOMAIN_IN_ANOTHER_ACCOUNT";
|
|
@@ -132,11 +132,11 @@ export declare const Transferable: {
|
|
|
132
132
|
};
|
|
133
133
|
export type Transferable = (typeof Transferable)[keyof typeof Transferable];
|
|
134
134
|
export interface DomainTransferability {
|
|
135
|
-
Transferable?: Transferable;
|
|
135
|
+
Transferable?: Transferable | undefined;
|
|
136
136
|
}
|
|
137
137
|
export interface CheckDomainTransferabilityResponse {
|
|
138
|
-
Transferability?: DomainTransferability;
|
|
139
|
-
Message?: string;
|
|
138
|
+
Transferability?: DomainTransferability | undefined;
|
|
139
|
+
Message?: string | undefined;
|
|
140
140
|
}
|
|
141
141
|
export interface Consent {
|
|
142
142
|
MaxPrice: number | undefined;
|
|
@@ -444,26 +444,26 @@ export interface ExtraParam {
|
|
|
444
444
|
Value: string | undefined;
|
|
445
445
|
}
|
|
446
446
|
export interface ContactDetail {
|
|
447
|
-
FirstName?: string;
|
|
448
|
-
LastName?: string;
|
|
449
|
-
ContactType?: ContactType;
|
|
450
|
-
OrganizationName?: string;
|
|
451
|
-
AddressLine1?: string;
|
|
452
|
-
AddressLine2?: string;
|
|
453
|
-
City?: string;
|
|
454
|
-
State?: string;
|
|
455
|
-
CountryCode?: CountryCode;
|
|
456
|
-
ZipCode?: string;
|
|
457
|
-
PhoneNumber?: string;
|
|
458
|
-
Email?: string;
|
|
459
|
-
Fax?: string;
|
|
460
|
-
ExtraParams?: ExtraParam[];
|
|
447
|
+
FirstName?: string | undefined;
|
|
448
|
+
LastName?: string | undefined;
|
|
449
|
+
ContactType?: ContactType | undefined;
|
|
450
|
+
OrganizationName?: string | undefined;
|
|
451
|
+
AddressLine1?: string | undefined;
|
|
452
|
+
AddressLine2?: string | undefined;
|
|
453
|
+
City?: string | undefined;
|
|
454
|
+
State?: string | undefined;
|
|
455
|
+
CountryCode?: CountryCode | undefined;
|
|
456
|
+
ZipCode?: string | undefined;
|
|
457
|
+
PhoneNumber?: string | undefined;
|
|
458
|
+
Email?: string | undefined;
|
|
459
|
+
Fax?: string | undefined;
|
|
460
|
+
ExtraParams?: ExtraParam[] | undefined;
|
|
461
461
|
}
|
|
462
462
|
export interface DeleteDomainRequest {
|
|
463
463
|
DomainName: string | undefined;
|
|
464
464
|
}
|
|
465
465
|
export interface DeleteDomainResponse {
|
|
466
|
-
OperationId?: string;
|
|
466
|
+
OperationId?: string | undefined;
|
|
467
467
|
}
|
|
468
468
|
export interface DeleteTagsForDomainRequest {
|
|
469
469
|
DomainName: string | undefined;
|
|
@@ -478,45 +478,45 @@ export interface DisableDomainTransferLockRequest {
|
|
|
478
478
|
DomainName: string | undefined;
|
|
479
479
|
}
|
|
480
480
|
export interface DisableDomainTransferLockResponse {
|
|
481
|
-
OperationId?: string;
|
|
481
|
+
OperationId?: string | undefined;
|
|
482
482
|
}
|
|
483
483
|
export interface DisassociateDelegationSignerFromDomainRequest {
|
|
484
484
|
DomainName: string | undefined;
|
|
485
485
|
Id: string | undefined;
|
|
486
486
|
}
|
|
487
487
|
export interface DisassociateDelegationSignerFromDomainResponse {
|
|
488
|
-
OperationId?: string;
|
|
488
|
+
OperationId?: string | undefined;
|
|
489
489
|
}
|
|
490
490
|
export interface DnssecKey {
|
|
491
|
-
Algorithm?: number;
|
|
492
|
-
Flags?: number;
|
|
493
|
-
PublicKey?: string;
|
|
494
|
-
DigestType?: number;
|
|
495
|
-
Digest?: string;
|
|
496
|
-
KeyTag?: number;
|
|
497
|
-
Id?: string;
|
|
491
|
+
Algorithm?: number | undefined;
|
|
492
|
+
Flags?: number | undefined;
|
|
493
|
+
PublicKey?: string | undefined;
|
|
494
|
+
DigestType?: number | undefined;
|
|
495
|
+
Digest?: string | undefined;
|
|
496
|
+
KeyTag?: number | undefined;
|
|
497
|
+
Id?: string | undefined;
|
|
498
498
|
}
|
|
499
499
|
export interface PriceWithCurrency {
|
|
500
500
|
Price: number | undefined;
|
|
501
501
|
Currency: string | undefined;
|
|
502
502
|
}
|
|
503
503
|
export interface DomainPrice {
|
|
504
|
-
Name?: string;
|
|
505
|
-
RegistrationPrice?: PriceWithCurrency;
|
|
506
|
-
TransferPrice?: PriceWithCurrency;
|
|
507
|
-
RenewalPrice?: PriceWithCurrency;
|
|
508
|
-
ChangeOwnershipPrice?: PriceWithCurrency;
|
|
509
|
-
RestorationPrice?: PriceWithCurrency;
|
|
504
|
+
Name?: string | undefined;
|
|
505
|
+
RegistrationPrice?: PriceWithCurrency | undefined;
|
|
506
|
+
TransferPrice?: PriceWithCurrency | undefined;
|
|
507
|
+
RenewalPrice?: PriceWithCurrency | undefined;
|
|
508
|
+
ChangeOwnershipPrice?: PriceWithCurrency | undefined;
|
|
509
|
+
RestorationPrice?: PriceWithCurrency | undefined;
|
|
510
510
|
}
|
|
511
511
|
export interface DomainSuggestion {
|
|
512
|
-
DomainName?: string;
|
|
513
|
-
Availability?: string;
|
|
512
|
+
DomainName?: string | undefined;
|
|
513
|
+
Availability?: string | undefined;
|
|
514
514
|
}
|
|
515
515
|
export interface DomainSummary {
|
|
516
|
-
DomainName?: string;
|
|
517
|
-
AutoRenew?: boolean;
|
|
518
|
-
TransferLock?: boolean;
|
|
519
|
-
Expiry?: Date;
|
|
516
|
+
DomainName?: string | undefined;
|
|
517
|
+
AutoRenew?: boolean | undefined;
|
|
518
|
+
TransferLock?: boolean | undefined;
|
|
519
|
+
Expiry?: Date | undefined;
|
|
520
520
|
}
|
|
521
521
|
export interface EnableDomainAutoRenewRequest {
|
|
522
522
|
DomainName: string | undefined;
|
|
@@ -526,7 +526,7 @@ export interface EnableDomainTransferLockRequest {
|
|
|
526
526
|
DomainName: string | undefined;
|
|
527
527
|
}
|
|
528
528
|
export interface EnableDomainTransferLockResponse {
|
|
529
|
-
OperationId?: string;
|
|
529
|
+
OperationId?: string | undefined;
|
|
530
530
|
}
|
|
531
531
|
export declare const ListDomainsAttributeName: {
|
|
532
532
|
readonly DomainName: "DomainName";
|
|
@@ -546,7 +546,7 @@ export interface FilterCondition {
|
|
|
546
546
|
Values: string[] | undefined;
|
|
547
547
|
}
|
|
548
548
|
export interface GetContactReachabilityStatusRequest {
|
|
549
|
-
domainName?: string;
|
|
549
|
+
domainName?: string | undefined;
|
|
550
550
|
}
|
|
551
551
|
export declare const ReachabilityStatus: {
|
|
552
552
|
readonly DONE: "DONE";
|
|
@@ -556,41 +556,41 @@ export declare const ReachabilityStatus: {
|
|
|
556
556
|
export type ReachabilityStatus =
|
|
557
557
|
(typeof ReachabilityStatus)[keyof typeof ReachabilityStatus];
|
|
558
558
|
export interface GetContactReachabilityStatusResponse {
|
|
559
|
-
domainName?: string;
|
|
560
|
-
status?: ReachabilityStatus;
|
|
559
|
+
domainName?: string | undefined;
|
|
560
|
+
status?: ReachabilityStatus | undefined;
|
|
561
561
|
}
|
|
562
562
|
export interface GetDomainDetailRequest {
|
|
563
563
|
DomainName: string | undefined;
|
|
564
564
|
}
|
|
565
565
|
export interface Nameserver {
|
|
566
566
|
Name: string | undefined;
|
|
567
|
-
GlueIps?: string[];
|
|
567
|
+
GlueIps?: string[] | undefined;
|
|
568
568
|
}
|
|
569
569
|
export interface GetDomainDetailResponse {
|
|
570
|
-
DomainName?: string;
|
|
571
|
-
Nameservers?: Nameserver[];
|
|
572
|
-
AutoRenew?: boolean;
|
|
573
|
-
AdminContact?: ContactDetail;
|
|
574
|
-
RegistrantContact?: ContactDetail;
|
|
575
|
-
TechContact?: ContactDetail;
|
|
576
|
-
AdminPrivacy?: boolean;
|
|
577
|
-
RegistrantPrivacy?: boolean;
|
|
578
|
-
TechPrivacy?: boolean;
|
|
579
|
-
RegistrarName?: string;
|
|
580
|
-
WhoIsServer?: string;
|
|
581
|
-
RegistrarUrl?: string;
|
|
582
|
-
AbuseContactEmail?: string;
|
|
583
|
-
AbuseContactPhone?: string;
|
|
584
|
-
RegistryDomainId?: string;
|
|
585
|
-
CreationDate?: Date;
|
|
586
|
-
UpdatedDate?: Date;
|
|
587
|
-
ExpirationDate?: Date;
|
|
588
|
-
Reseller?: string;
|
|
589
|
-
DnsSec?: string;
|
|
590
|
-
StatusList?: string[];
|
|
591
|
-
DnssecKeys?: DnssecKey[];
|
|
592
|
-
BillingContact?: ContactDetail;
|
|
593
|
-
BillingPrivacy?: boolean;
|
|
570
|
+
DomainName?: string | undefined;
|
|
571
|
+
Nameservers?: Nameserver[] | undefined;
|
|
572
|
+
AutoRenew?: boolean | undefined;
|
|
573
|
+
AdminContact?: ContactDetail | undefined;
|
|
574
|
+
RegistrantContact?: ContactDetail | undefined;
|
|
575
|
+
TechContact?: ContactDetail | undefined;
|
|
576
|
+
AdminPrivacy?: boolean | undefined;
|
|
577
|
+
RegistrantPrivacy?: boolean | undefined;
|
|
578
|
+
TechPrivacy?: boolean | undefined;
|
|
579
|
+
RegistrarName?: string | undefined;
|
|
580
|
+
WhoIsServer?: string | undefined;
|
|
581
|
+
RegistrarUrl?: string | undefined;
|
|
582
|
+
AbuseContactEmail?: string | undefined;
|
|
583
|
+
AbuseContactPhone?: string | undefined;
|
|
584
|
+
RegistryDomainId?: string | undefined;
|
|
585
|
+
CreationDate?: Date | undefined;
|
|
586
|
+
UpdatedDate?: Date | undefined;
|
|
587
|
+
ExpirationDate?: Date | undefined;
|
|
588
|
+
Reseller?: string | undefined;
|
|
589
|
+
DnsSec?: string | undefined;
|
|
590
|
+
StatusList?: string[] | undefined;
|
|
591
|
+
DnssecKeys?: DnssecKey[] | undefined;
|
|
592
|
+
BillingContact?: ContactDetail | undefined;
|
|
593
|
+
BillingPrivacy?: boolean | undefined;
|
|
594
594
|
}
|
|
595
595
|
export interface GetDomainSuggestionsRequest {
|
|
596
596
|
DomainName: string | undefined;
|
|
@@ -598,7 +598,7 @@ export interface GetDomainSuggestionsRequest {
|
|
|
598
598
|
OnlyAvailable: boolean | undefined;
|
|
599
599
|
}
|
|
600
600
|
export interface GetDomainSuggestionsResponse {
|
|
601
|
-
SuggestionsList?: DomainSuggestion[];
|
|
601
|
+
SuggestionsList?: DomainSuggestion[] | undefined;
|
|
602
602
|
}
|
|
603
603
|
export interface GetOperationDetailRequest {
|
|
604
604
|
OperationId: string | undefined;
|
|
@@ -621,14 +621,14 @@ export declare const StatusFlag: {
|
|
|
621
621
|
};
|
|
622
622
|
export type StatusFlag = (typeof StatusFlag)[keyof typeof StatusFlag];
|
|
623
623
|
export interface GetOperationDetailResponse {
|
|
624
|
-
OperationId?: string;
|
|
625
|
-
Status?: OperationStatus;
|
|
626
|
-
Message?: string;
|
|
627
|
-
DomainName?: string;
|
|
628
|
-
Type?: OperationType;
|
|
629
|
-
SubmittedDate?: Date;
|
|
630
|
-
LastUpdatedDate?: Date;
|
|
631
|
-
StatusFlag?: StatusFlag;
|
|
624
|
+
OperationId?: string | undefined;
|
|
625
|
+
Status?: OperationStatus | undefined;
|
|
626
|
+
Message?: string | undefined;
|
|
627
|
+
DomainName?: string | undefined;
|
|
628
|
+
Type?: OperationType | undefined;
|
|
629
|
+
SubmittedDate?: Date | undefined;
|
|
630
|
+
LastUpdatedDate?: Date | undefined;
|
|
631
|
+
StatusFlag?: StatusFlag | undefined;
|
|
632
632
|
}
|
|
633
633
|
export declare const SortOrder: {
|
|
634
634
|
readonly ASC: "ASC";
|
|
@@ -640,14 +640,14 @@ export interface SortCondition {
|
|
|
640
640
|
SortOrder: SortOrder | undefined;
|
|
641
641
|
}
|
|
642
642
|
export interface ListDomainsRequest {
|
|
643
|
-
FilterConditions?: FilterCondition[];
|
|
644
|
-
SortCondition?: SortCondition;
|
|
645
|
-
Marker?: string;
|
|
646
|
-
MaxItems?: number;
|
|
643
|
+
FilterConditions?: FilterCondition[] | undefined;
|
|
644
|
+
SortCondition?: SortCondition | undefined;
|
|
645
|
+
Marker?: string | undefined;
|
|
646
|
+
MaxItems?: number | undefined;
|
|
647
647
|
}
|
|
648
648
|
export interface ListDomainsResponse {
|
|
649
|
-
Domains?: DomainSummary[];
|
|
650
|
-
NextPageMarker?: string;
|
|
649
|
+
Domains?: DomainSummary[] | undefined;
|
|
650
|
+
NextPageMarker?: string | undefined;
|
|
651
651
|
}
|
|
652
652
|
export declare const ListOperationsSortAttributeName: {
|
|
653
653
|
readonly SubmittedDate: "SubmittedDate";
|
|
@@ -655,46 +655,46 @@ export declare const ListOperationsSortAttributeName: {
|
|
|
655
655
|
export type ListOperationsSortAttributeName =
|
|
656
656
|
(typeof ListOperationsSortAttributeName)[keyof typeof ListOperationsSortAttributeName];
|
|
657
657
|
export interface ListOperationsRequest {
|
|
658
|
-
SubmittedSince?: Date;
|
|
659
|
-
Marker?: string;
|
|
660
|
-
MaxItems?: number;
|
|
661
|
-
Status?: OperationStatus[];
|
|
662
|
-
Type?: OperationType[];
|
|
663
|
-
SortBy?: ListOperationsSortAttributeName;
|
|
664
|
-
SortOrder?: SortOrder;
|
|
658
|
+
SubmittedSince?: Date | undefined;
|
|
659
|
+
Marker?: string | undefined;
|
|
660
|
+
MaxItems?: number | undefined;
|
|
661
|
+
Status?: OperationStatus[] | undefined;
|
|
662
|
+
Type?: OperationType[] | undefined;
|
|
663
|
+
SortBy?: ListOperationsSortAttributeName | undefined;
|
|
664
|
+
SortOrder?: SortOrder | undefined;
|
|
665
665
|
}
|
|
666
666
|
export interface OperationSummary {
|
|
667
|
-
OperationId?: string;
|
|
668
|
-
Status?: OperationStatus;
|
|
669
|
-
Type?: OperationType;
|
|
670
|
-
SubmittedDate?: Date;
|
|
671
|
-
DomainName?: string;
|
|
672
|
-
Message?: string;
|
|
673
|
-
StatusFlag?: StatusFlag;
|
|
674
|
-
LastUpdatedDate?: Date;
|
|
667
|
+
OperationId?: string | undefined;
|
|
668
|
+
Status?: OperationStatus | undefined;
|
|
669
|
+
Type?: OperationType | undefined;
|
|
670
|
+
SubmittedDate?: Date | undefined;
|
|
671
|
+
DomainName?: string | undefined;
|
|
672
|
+
Message?: string | undefined;
|
|
673
|
+
StatusFlag?: StatusFlag | undefined;
|
|
674
|
+
LastUpdatedDate?: Date | undefined;
|
|
675
675
|
}
|
|
676
676
|
export interface ListOperationsResponse {
|
|
677
|
-
Operations?: OperationSummary[];
|
|
678
|
-
NextPageMarker?: string;
|
|
677
|
+
Operations?: OperationSummary[] | undefined;
|
|
678
|
+
NextPageMarker?: string | undefined;
|
|
679
679
|
}
|
|
680
680
|
export interface ListPricesRequest {
|
|
681
|
-
Tld?: string;
|
|
682
|
-
Marker?: string;
|
|
683
|
-
MaxItems?: number;
|
|
681
|
+
Tld?: string | undefined;
|
|
682
|
+
Marker?: string | undefined;
|
|
683
|
+
MaxItems?: number | undefined;
|
|
684
684
|
}
|
|
685
685
|
export interface ListPricesResponse {
|
|
686
|
-
Prices?: DomainPrice[];
|
|
687
|
-
NextPageMarker?: string;
|
|
686
|
+
Prices?: DomainPrice[] | undefined;
|
|
687
|
+
NextPageMarker?: string | undefined;
|
|
688
688
|
}
|
|
689
689
|
export interface ListTagsForDomainRequest {
|
|
690
690
|
DomainName: string | undefined;
|
|
691
691
|
}
|
|
692
692
|
export interface Tag {
|
|
693
|
-
Key?: string;
|
|
694
|
-
Value?: string;
|
|
693
|
+
Key?: string | undefined;
|
|
694
|
+
Value?: string | undefined;
|
|
695
695
|
}
|
|
696
696
|
export interface ListTagsForDomainResponse {
|
|
697
|
-
TagList?: Tag[];
|
|
697
|
+
TagList?: Tag[] | undefined;
|
|
698
698
|
}
|
|
699
699
|
export interface PushDomainRequest {
|
|
700
700
|
DomainName: string | undefined;
|
|
@@ -702,42 +702,42 @@ export interface PushDomainRequest {
|
|
|
702
702
|
}
|
|
703
703
|
export interface RegisterDomainRequest {
|
|
704
704
|
DomainName: string | undefined;
|
|
705
|
-
IdnLangCode?: string;
|
|
705
|
+
IdnLangCode?: string | undefined;
|
|
706
706
|
DurationInYears: number | undefined;
|
|
707
|
-
AutoRenew?: boolean;
|
|
707
|
+
AutoRenew?: boolean | undefined;
|
|
708
708
|
AdminContact: ContactDetail | undefined;
|
|
709
709
|
RegistrantContact: ContactDetail | undefined;
|
|
710
710
|
TechContact: ContactDetail | undefined;
|
|
711
|
-
PrivacyProtectAdminContact?: boolean;
|
|
712
|
-
PrivacyProtectRegistrantContact?: boolean;
|
|
713
|
-
PrivacyProtectTechContact?: boolean;
|
|
714
|
-
BillingContact?: ContactDetail;
|
|
715
|
-
PrivacyProtectBillingContact?: boolean;
|
|
711
|
+
PrivacyProtectAdminContact?: boolean | undefined;
|
|
712
|
+
PrivacyProtectRegistrantContact?: boolean | undefined;
|
|
713
|
+
PrivacyProtectTechContact?: boolean | undefined;
|
|
714
|
+
BillingContact?: ContactDetail | undefined;
|
|
715
|
+
PrivacyProtectBillingContact?: boolean | undefined;
|
|
716
716
|
}
|
|
717
717
|
export interface RegisterDomainResponse {
|
|
718
|
-
OperationId?: string;
|
|
718
|
+
OperationId?: string | undefined;
|
|
719
719
|
}
|
|
720
720
|
export interface RejectDomainTransferFromAnotherAwsAccountRequest {
|
|
721
721
|
DomainName: string | undefined;
|
|
722
722
|
}
|
|
723
723
|
export interface RejectDomainTransferFromAnotherAwsAccountResponse {
|
|
724
|
-
OperationId?: string;
|
|
724
|
+
OperationId?: string | undefined;
|
|
725
725
|
}
|
|
726
726
|
export interface RenewDomainRequest {
|
|
727
727
|
DomainName: string | undefined;
|
|
728
|
-
DurationInYears?: number;
|
|
728
|
+
DurationInYears?: number | undefined;
|
|
729
729
|
CurrentExpiryYear: number | undefined;
|
|
730
730
|
}
|
|
731
731
|
export interface RenewDomainResponse {
|
|
732
|
-
OperationId?: string;
|
|
732
|
+
OperationId?: string | undefined;
|
|
733
733
|
}
|
|
734
734
|
export interface ResendContactReachabilityEmailRequest {
|
|
735
|
-
domainName?: string;
|
|
735
|
+
domainName?: string | undefined;
|
|
736
736
|
}
|
|
737
737
|
export interface ResendContactReachabilityEmailResponse {
|
|
738
|
-
domainName?: string;
|
|
739
|
-
emailAddress?: string;
|
|
740
|
-
isAlreadyVerified?: boolean;
|
|
738
|
+
domainName?: string | undefined;
|
|
739
|
+
emailAddress?: string | undefined;
|
|
740
|
+
isAlreadyVerified?: boolean | undefined;
|
|
741
741
|
}
|
|
742
742
|
export interface ResendOperationAuthorizationRequest {
|
|
743
743
|
OperationId: string | undefined;
|
|
@@ -746,78 +746,78 @@ export interface RetrieveDomainAuthCodeRequest {
|
|
|
746
746
|
DomainName: string | undefined;
|
|
747
747
|
}
|
|
748
748
|
export interface RetrieveDomainAuthCodeResponse {
|
|
749
|
-
AuthCode?: string;
|
|
749
|
+
AuthCode?: string | undefined;
|
|
750
750
|
}
|
|
751
751
|
export interface TransferDomainRequest {
|
|
752
752
|
DomainName: string | undefined;
|
|
753
|
-
IdnLangCode?: string;
|
|
753
|
+
IdnLangCode?: string | undefined;
|
|
754
754
|
DurationInYears: number | undefined;
|
|
755
|
-
Nameservers?: Nameserver[];
|
|
756
|
-
AuthCode?: string;
|
|
757
|
-
AutoRenew?: boolean;
|
|
755
|
+
Nameservers?: Nameserver[] | undefined;
|
|
756
|
+
AuthCode?: string | undefined;
|
|
757
|
+
AutoRenew?: boolean | undefined;
|
|
758
758
|
AdminContact: ContactDetail | undefined;
|
|
759
759
|
RegistrantContact: ContactDetail | undefined;
|
|
760
760
|
TechContact: ContactDetail | undefined;
|
|
761
|
-
PrivacyProtectAdminContact?: boolean;
|
|
762
|
-
PrivacyProtectRegistrantContact?: boolean;
|
|
763
|
-
PrivacyProtectTechContact?: boolean;
|
|
764
|
-
BillingContact?: ContactDetail;
|
|
765
|
-
PrivacyProtectBillingContact?: boolean;
|
|
761
|
+
PrivacyProtectAdminContact?: boolean | undefined;
|
|
762
|
+
PrivacyProtectRegistrantContact?: boolean | undefined;
|
|
763
|
+
PrivacyProtectTechContact?: boolean | undefined;
|
|
764
|
+
BillingContact?: ContactDetail | undefined;
|
|
765
|
+
PrivacyProtectBillingContact?: boolean | undefined;
|
|
766
766
|
}
|
|
767
767
|
export interface TransferDomainResponse {
|
|
768
|
-
OperationId?: string;
|
|
768
|
+
OperationId?: string | undefined;
|
|
769
769
|
}
|
|
770
770
|
export interface TransferDomainToAnotherAwsAccountRequest {
|
|
771
771
|
DomainName: string | undefined;
|
|
772
772
|
AccountId: string | undefined;
|
|
773
773
|
}
|
|
774
774
|
export interface TransferDomainToAnotherAwsAccountResponse {
|
|
775
|
-
OperationId?: string;
|
|
776
|
-
Password?: string;
|
|
775
|
+
OperationId?: string | undefined;
|
|
776
|
+
Password?: string | undefined;
|
|
777
777
|
}
|
|
778
778
|
export interface UpdateDomainContactRequest {
|
|
779
779
|
DomainName: string | undefined;
|
|
780
|
-
AdminContact?: ContactDetail;
|
|
781
|
-
RegistrantContact?: ContactDetail;
|
|
782
|
-
TechContact?: ContactDetail;
|
|
783
|
-
Consent?: Consent;
|
|
784
|
-
BillingContact?: ContactDetail;
|
|
780
|
+
AdminContact?: ContactDetail | undefined;
|
|
781
|
+
RegistrantContact?: ContactDetail | undefined;
|
|
782
|
+
TechContact?: ContactDetail | undefined;
|
|
783
|
+
Consent?: Consent | undefined;
|
|
784
|
+
BillingContact?: ContactDetail | undefined;
|
|
785
785
|
}
|
|
786
786
|
export interface UpdateDomainContactResponse {
|
|
787
|
-
OperationId?: string;
|
|
787
|
+
OperationId?: string | undefined;
|
|
788
788
|
}
|
|
789
789
|
export interface UpdateDomainContactPrivacyRequest {
|
|
790
790
|
DomainName: string | undefined;
|
|
791
|
-
AdminPrivacy?: boolean;
|
|
792
|
-
RegistrantPrivacy?: boolean;
|
|
793
|
-
TechPrivacy?: boolean;
|
|
794
|
-
BillingPrivacy?: boolean;
|
|
791
|
+
AdminPrivacy?: boolean | undefined;
|
|
792
|
+
RegistrantPrivacy?: boolean | undefined;
|
|
793
|
+
TechPrivacy?: boolean | undefined;
|
|
794
|
+
BillingPrivacy?: boolean | undefined;
|
|
795
795
|
}
|
|
796
796
|
export interface UpdateDomainContactPrivacyResponse {
|
|
797
|
-
OperationId?: string;
|
|
797
|
+
OperationId?: string | undefined;
|
|
798
798
|
}
|
|
799
799
|
export interface UpdateDomainNameserversRequest {
|
|
800
800
|
DomainName: string | undefined;
|
|
801
|
-
FIAuthKey?: string;
|
|
801
|
+
FIAuthKey?: string | undefined;
|
|
802
802
|
Nameservers: Nameserver[] | undefined;
|
|
803
803
|
}
|
|
804
804
|
export interface UpdateDomainNameserversResponse {
|
|
805
|
-
OperationId?: string;
|
|
805
|
+
OperationId?: string | undefined;
|
|
806
806
|
}
|
|
807
807
|
export interface UpdateTagsForDomainRequest {
|
|
808
808
|
DomainName: string | undefined;
|
|
809
|
-
TagsToUpdate?: Tag[];
|
|
809
|
+
TagsToUpdate?: Tag[] | undefined;
|
|
810
810
|
}
|
|
811
811
|
export interface UpdateTagsForDomainResponse {}
|
|
812
812
|
export interface ViewBillingRequest {
|
|
813
|
-
Start?: Date;
|
|
814
|
-
End?: Date;
|
|
815
|
-
Marker?: string;
|
|
816
|
-
MaxItems?: number;
|
|
813
|
+
Start?: Date | undefined;
|
|
814
|
+
End?: Date | undefined;
|
|
815
|
+
Marker?: string | undefined;
|
|
816
|
+
MaxItems?: number | undefined;
|
|
817
817
|
}
|
|
818
818
|
export interface ViewBillingResponse {
|
|
819
|
-
NextPageMarker?: string;
|
|
820
|
-
BillingRecords?: BillingRecord[];
|
|
819
|
+
NextPageMarker?: string | undefined;
|
|
820
|
+
BillingRecords?: BillingRecord[] | undefined;
|
|
821
821
|
}
|
|
822
822
|
export declare const AcceptDomainTransferFromAnotherAwsAccountRequestFilterSensitiveLog: (
|
|
823
823
|
obj: AcceptDomainTransferFromAnotherAwsAccountRequest
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route-53-domains",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route 53 Domains Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.692.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-route-53-domains",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.692.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.692.0",
|
|
25
|
+
"@aws-sdk/core": "3.692.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.692.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.692.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.692.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.692.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.692.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.692.0",
|
|
32
|
+
"@aws-sdk/types": "3.692.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.692.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.692.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.692.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.11",
|
|
37
|
+
"@smithy/core": "^2.5.2",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.0",
|
|
39
|
+
"@smithy/hash-node": "^3.0.9",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.9",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.11",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.2",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.26",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.9",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.9",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.10",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.6",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.3",
|
|
50
|
+
"@smithy/types": "^3.7.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.9",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.26",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.26",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.5",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.9",
|
|
59
|
+
"@smithy/util-retry": "^3.0.9",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|