@@ -38,6 +38,7 @@ def openapi_types(_):
3838 "name" : (str ,),
3939 "notifications" : ([MonitorSearchResultNotification ],),
4040 "org_id" : (int ,),
41+ "quality_issues" : ([str ],),
4142 "query" : (str ,),
4243 "scopes" : ([str ],),
4344 "status" : (MonitorOverallStates ,),
@@ -54,6 +55,7 @@ def openapi_types(_):
5455 "name" : "name" ,
5556 "notifications" : "notifications" ,
5657 "org_id" : "org_id" ,
58+ "quality_issues" : "quality_issues" ,
5759 "query" : "query" ,
5860 "scopes" : "scopes" ,
5961 "status" : "status" ,
@@ -69,6 +71,7 @@ def openapi_types(_):
6971 "name" ,
7072 "notifications" ,
7173 "org_id" ,
74+ "quality_issues" ,
7275 "status" ,
7376 "tags" ,
7477 }
@@ -83,6 +86,7 @@ def __init__(
8386 name : Union [str , UnsetType ] = unset ,
8487 notifications : Union [List [MonitorSearchResultNotification ], UnsetType ] = unset ,
8588 org_id : Union [int , UnsetType ] = unset ,
89+ quality_issues : Union [List [str ], UnsetType ] = unset ,
8690 query : Union [str , UnsetType ] = unset ,
8791 scopes : Union [List [str ], UnsetType ] = unset ,
8892 status : Union [MonitorOverallStates , UnsetType ] = unset ,
@@ -117,6 +121,9 @@ def __init__(
117121 :param org_id: The ID of the organization.
118122 :type org_id: int, optional
119123
124+ :param quality_issues: Quality issues detected with the monitor.
125+ :type quality_issues: [str], optional
126+
120127 :param query: The monitor query.
121128 :type query: str, optional
122129
@@ -151,6 +158,8 @@ def __init__(
151158 kwargs ["notifications" ] = notifications
152159 if org_id is not unset :
153160 kwargs ["org_id" ] = org_id
161+ if quality_issues is not unset :
162+ kwargs ["quality_issues" ] = quality_issues
154163 if query is not unset :
155164 kwargs ["query" ] = query
156165 if scopes is not unset :
0 commit comments