@@ -40,6 +40,7 @@ def openapi_types(_):
4040 "completed_description" : (str ,),
4141 "components_affected" : ([MaintenanceDataAttributesComponentsAffectedItems ],),
4242 "in_progress_description" : (str ,),
43+ "is_backfilled" : (bool ,),
4344 "modified_at" : (datetime ,),
4445 "published_date" : (datetime ,),
4546 "scheduled_description" : (str ,),
@@ -54,6 +55,7 @@ def openapi_types(_):
5455 "completed_description" : "completed_description" ,
5556 "components_affected" : "components_affected" ,
5657 "in_progress_description" : "in_progress_description" ,
58+ "is_backfilled" : "is_backfilled" ,
5759 "modified_at" : "modified_at" ,
5860 "published_date" : "published_date" ,
5961 "scheduled_description" : "scheduled_description" ,
@@ -69,6 +71,7 @@ def __init__(
6971 completed_description : Union [str , UnsetType ] = unset ,
7072 components_affected : Union [List [MaintenanceDataAttributesComponentsAffectedItems ], UnsetType ] = unset ,
7173 in_progress_description : Union [str , UnsetType ] = unset ,
74+ is_backfilled : Union [bool , UnsetType ] = unset ,
7275 modified_at : Union [datetime , UnsetType ] = unset ,
7376 published_date : Union [datetime , UnsetType ] = unset ,
7477 scheduled_description : Union [str , UnsetType ] = unset ,
@@ -93,6 +96,9 @@ def __init__(
9396 :param in_progress_description: The description shown while the maintenance is in progress.
9497 :type in_progress_description: str, optional
9598
99+ :param is_backfilled: Whether the maintenance was backfilled.
100+ :type is_backfilled: bool, optional
101+
96102 :param modified_at: Timestamp of when the maintenance was last modified.
97103 :type modified_at: datetime, optional
98104
@@ -122,6 +128,8 @@ def __init__(
122128 kwargs ["components_affected" ] = components_affected
123129 if in_progress_description is not unset :
124130 kwargs ["in_progress_description" ] = in_progress_description
131+ if is_backfilled is not unset :
132+ kwargs ["is_backfilled" ] = is_backfilled
125133 if modified_at is not unset :
126134 kwargs ["modified_at" ] = modified_at
127135 if published_date is not unset :
0 commit comments