Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ class CatalogDeclarativeAutomation(CatalogAnalyticsBaseMeta):
export_definitions: Optional[list[CatalogExportDefinitionIdentifier]] = None
notification_channel: Optional[CatalogNotificationChannelIdentifier] = None
schedule: Optional[CatalogAutomationSchedule] = None
tabular_exports: Optional[CatalogAutomationTabularExport] = None
visual_exports: Optional[CatalogAutomationVisualExport] = None
tabular_exports: Optional[list[CatalogAutomationTabularExport]] = None
visual_exports: Optional[list[CatalogAutomationVisualExport]] = None

@staticmethod
def client_class() -> builtins.type[DeclarativeAutomation]:
Expand Down
Loading