Skip to content
Open
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
2 changes: 2 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47860,11 +47860,13 @@ components:
enum:
- logs
- metrics
- audit
example: logs
type: string
x-enum-varnames:
- LOGS
- METRICS
- AUDIT
OrgConnectionUpdate:
description: Org connection update data.
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,18 @@ class OrgConnectionTypeEnum(ModelSimple):
"""
Available connection types between organizations.

:param value: Must be one of ["logs", "metrics"].
:param value: Must be one of ["logs", "metrics", "audit"].
:type value: str
"""

allowed_values = {
"logs",
"metrics",
"audit",
}
LOGS: ClassVar["OrgConnectionTypeEnum"]
METRICS: ClassVar["OrgConnectionTypeEnum"]
AUDIT: ClassVar["OrgConnectionTypeEnum"]

@cached_property
def openapi_types(_):
Expand All @@ -36,3 +38,4 @@ def openapi_types(_):

OrgConnectionTypeEnum.LOGS = OrgConnectionTypeEnum("logs")
OrgConnectionTypeEnum.METRICS = OrgConnectionTypeEnum("metrics")
OrgConnectionTypeEnum.AUDIT = OrgConnectionTypeEnum("audit")
Loading