You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="The expiration date of the invite link. 72 hours after creation.",
@@ -1370,12 +1369,12 @@ class UsageReportPeriod(CustomBaseModel):
1370
1369
The usage report for a specific month
1371
1370
"""
1372
1371
1373
-
period_start: datetime|None=Field(
1372
+
period_start: AwareDatetime|None=Field(
1374
1373
None,
1375
1374
alias="periodStart",
1376
1375
description="The UTC date and time when the reported time period started",
1377
1376
)
1378
-
period_end: datetime|None=Field(
1377
+
period_end: AwareDatetime|None=Field(
1379
1378
None,
1380
1379
alias="periodEnd",
1381
1380
description="The UTC date and time when the reported time period started",
@@ -1845,7 +1844,7 @@ class Notification(CustomBaseModel):
1845
1844
type: NotificationType
1846
1845
message: str=Field(..., description="The message of the notification.")
1847
1846
status: NotificationStatus
1848
-
created_at: datetime=Field(
1847
+
created_at: AwareDatetime=Field(
1849
1848
...,
1850
1849
alias="createdAt",
1851
1850
description="The UTC date and time when the notification has been created.",
@@ -1869,7 +1868,7 @@ class Metadata(CustomBaseModel):
1869
1868
alias="creatorName",
1870
1869
description="The name of a user.\nContains only alphanumeric characters, hyphens, and underscores. Must start or end with alphanumeric.\nIt must be globally case-insensitive unique considering organizations and users.\n",
1871
1870
)
1872
-
created_at: datetime|None=Field(
1871
+
created_at: AwareDatetime|None=Field(
1873
1872
None,
1874
1873
alias="createdAt",
1875
1874
description="The UTC date and time when the resource has been created.",
@@ -2314,7 +2313,7 @@ class GeneratorListItem(CustomBaseModel):
2314
2313
name: str|None=Field(None, description="The name of a generator.")
2315
2314
description: str|None=Field(None, description="The description of a generator.")
description="The UTC date and time when the generation has finished.",
@@ -2607,17 +2606,17 @@ class SyntheticTableConfiguration(CustomBaseModel):
2607
2606
sample_seed_connector_id: str|None=Field(
2608
2607
None,
2609
2608
alias="sampleSeedConnectorId",
2610
-
description="The connector id of the seed data for conditional simulation.\nOnly applicable for subject tables.\n",
2609
+
description="The connector id of the seed data for conditional simulation",
2611
2610
)
2612
2611
sample_seed_dict: str|None=Field(
2613
2612
None,
2614
2613
alias="sampleSeedDict",
2615
-
description="The base64-encoded string derived from a json line file containing the specified sample seed data.\nThis allows conditional live probing via non-python clients.\nOnly applicable for subject tables.\n",
2614
+
description="The base64-encoded string derived from a json line file containing the specified sample seed data.\nThis allows conditional live probing via non-python clients.\n",
2616
2615
)
2617
2616
sample_seed_data: str|None=Field(
2618
2617
None,
2619
2618
alias="sampleSeedData",
2620
-
description="The base64-encoded string derived from a Parquet file containing the specified sample seed data.\nThis allows conditional simulation as well as live probing via python clients.\nOnly applicable for subject tables.\n",
2619
+
description="The base64-encoded string derived from a Parquet file containing the specified sample seed data.\nThis allows conditional simulation as well as live probing via python clients.\n",
2621
2620
)
2622
2621
sampling_temperature: float|None=Field(
2623
2622
1.0,
@@ -3117,13 +3116,13 @@ class JobProgress(CustomBaseModel):
3117
3116
"""
3118
3117
3119
3118
id: str|None=None
3120
-
start_date: datetime|None=Field(
3119
+
start_date: AwareDatetime|None=Field(
3121
3120
None,
3122
3121
alias="startDate",
3123
3122
description="The UTC date and time when the job has started.\nIf the job has not started yet, then this is None.\n",
3124
3123
examples=["2024-01-25T12:34:56Z"],
3125
3124
)
3126
-
end_date: datetime|None=Field(
3125
+
end_date: AwareDatetime|None=Field(
3127
3126
None,
3128
3127
alias="endDate",
3129
3128
description="The UTC date and time when the job has ended.\nIf the job is still, then this is None.\n",
@@ -3313,7 +3312,7 @@ class Generator(CustomBaseModel):
3313
3312
name: str|None=Field(None, description="The name of a generator.")
3314
3313
description: str|None=Field(None, description="The description of a generator.")
0 commit comments