Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions okta/models/dns_record_type_domains.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ class DNSRecordTypeDomains(str, Enum):
"""
CNAME = "CNAME"
TXT = "TXT"
CAA = "CAA"
Comment thread
aniket-okta marked this conversation as resolved.

@classmethod
def from_json(cls, json_str: str) -> Self:
Expand Down
1 change: 1 addition & 0 deletions okta/models/email_domain_dns_record_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ class EmailDomainDNSRecordType(str, Enum):
"""
CNAME = "CNAME"
TXT = "TXT"
CAA = "CAA"
Comment thread
aniket-okta marked this conversation as resolved.

@classmethod
def from_json(cls, json_str: str) -> Self:
Expand Down
2 changes: 2 additions & 0 deletions openapi/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63370,6 +63370,7 @@ components:
enum:
- CNAME
- TXT
- CAA
Comment thread
aniket-okta marked this conversation as resolved.
DRStatusItem:
description: Status whether a domain has been failed over or not
type: object
Expand Down Expand Up @@ -64698,6 +64699,7 @@ components:
enum:
- CNAME
- TXT
Comment thread
aniket-okta marked this conversation as resolved.
- CAA
EmailDomainResponse:
allOf:
- $ref: '#/components/schemas/BaseEmailDomain'
Expand Down
Loading