2828from .dnskey_record_param import DNSKEYRecordParam
2929from .smimea_record_param import SMIMEARecordParam
3030
31- __all__ = ["RecordParam" , "DNSRecordsOpenpgpkeyRecord " , "DNSRecordsOpenpgpkeyRecordSettings " ]
31+ __all__ = ["RecordParam" , "Openpgpkey " , "OpenpgpkeySettings " ]
3232
3333
34- class DNSRecordsOpenpgpkeyRecordSettings (TypedDict , total = False ):
34+ class OpenpgpkeySettings (TypedDict , total = False ):
3535 ipv4_only : bool
3636 """
3737 When enabled, only A records will be generated, and AAAA records will not be
@@ -49,7 +49,7 @@ class DNSRecordsOpenpgpkeyRecordSettings(TypedDict, total=False):
4949 """
5050
5151
52- class DNSRecordsOpenpgpkeyRecord (TypedDict , total = False ):
52+ class Openpgpkey (TypedDict , total = False ):
5353 comment : str
5454 """Comments or notes about the DNS record.
5555
@@ -68,7 +68,7 @@ class DNSRecordsOpenpgpkeyRecord(TypedDict, total=False):
6868 Cloudflare.
6969 """
7070
71- settings : DNSRecordsOpenpgpkeyRecordSettings
71+ settings : OpenpgpkeySettings
7272 """Settings for the DNS record."""
7373
7474 tags : List [RecordTags ]
@@ -98,7 +98,7 @@ class DNSRecordsOpenpgpkeyRecord(TypedDict, total=False):
9898 MXRecordParam ,
9999 NAPTRRecordParam ,
100100 NSRecordParam ,
101- DNSRecordsOpenpgpkeyRecord ,
101+ Openpgpkey ,
102102 PTRRecordParam ,
103103 SMIMEARecordParam ,
104104 SRVRecordParam ,
0 commit comments