@@ -1231,7 +1231,7 @@ async def create_contact_point(
12311231 region : Optional [ScwRegion ] = None ,
12321232 project_id : Optional [str ] = None ,
12331233 email : Optional [ContactPointEmail ] = None ,
1234- receive_resolved_notifications : Optional [bool ] = None ,
1234+ send_resolved_notifications : Optional [bool ] = None ,
12351235 ) -> ContactPoint :
12361236 """
12371237 Create a contact point.
@@ -1242,7 +1242,7 @@ async def create_contact_point(
12421242 :param project_id: ID of the Project to create the contact point in.
12431243 :param email: Email address of the contact point to create.
12441244 One-Of ('configuration'): at most one of 'email' could be set.
1245- :param receive_resolved_notifications : Send an email notification when an alert is marked as resolved.
1245+ :param send_resolved_notifications : Send an email notification when an alert is marked as resolved.
12461246 :return: :class:`ContactPoint <ContactPoint>`
12471247
12481248 Usage:
@@ -1262,7 +1262,7 @@ async def create_contact_point(
12621262 RegionalApiCreateContactPointRequest (
12631263 region = region ,
12641264 project_id = project_id ,
1265- receive_resolved_notifications = receive_resolved_notifications ,
1265+ send_resolved_notifications = send_resolved_notifications ,
12661266 email = email ,
12671267 ),
12681268 self .client ,
@@ -1353,14 +1353,14 @@ async def update_contact_point(
13531353 region : Optional [ScwRegion ] = None ,
13541354 project_id : Optional [str ] = None ,
13551355 email : Optional [ContactPointEmail ] = None ,
1356- receive_resolved_notifications : Optional [bool ] = None ,
1356+ send_resolved_notifications : Optional [bool ] = None ,
13571357 ) -> ContactPoint :
13581358 """
13591359 :param region: Region to target. If none is passed will use default region from the config.
13601360 :param project_id: ID of the Project containing the contact point to update.
13611361 :param email: Email address of the contact point to update.
13621362 One-Of ('configuration'): at most one of 'email' could be set.
1363- :param receive_resolved_notifications : Enable or disable notifications when alert is resolved.
1363+ :param send_resolved_notifications : Enable or disable notifications when alert is resolved.
13641364 :return: :class:`ContactPoint <ContactPoint>`
13651365
13661366 Usage:
@@ -1380,7 +1380,7 @@ async def update_contact_point(
13801380 RegionalApiUpdateContactPointRequest (
13811381 region = region ,
13821382 project_id = project_id ,
1383- receive_resolved_notifications = receive_resolved_notifications ,
1383+ send_resolved_notifications = send_resolved_notifications ,
13841384 email = email ,
13851385 ),
13861386 self .client ,
0 commit comments