@@ -95,7 +95,6 @@ def create(
9595 longitude : float | NotGiven = NOT_GIVEN ,
9696 minimum_origins : int | NotGiven = NOT_GIVEN ,
9797 monitor : str | NotGiven = NOT_GIVEN ,
98- monitor_group : str | NotGiven = NOT_GIVEN ,
9998 notification_email : str | NotGiven = NOT_GIVEN ,
10099 notification_filter : Optional [NotificationFilterParam ] | NotGiven = NOT_GIVEN ,
101100 origin_steering : OriginSteeringParam | NotGiven = NOT_GIVEN ,
@@ -139,9 +138,6 @@ def create(
139138 monitor: The ID of the Monitor to use for checking the health of origins within this
140139 pool.
141140
142- monitor_group: The ID of the Monitor Group to use for checking the health of origins within
143- this pool.
144-
145141 notification_email: This field is now deprecated. It has been moved to Cloudflare's Centralized
146142 Notification service
147143 https://developers.cloudflare.com/fundamentals/notifications/. The email address
@@ -177,7 +173,6 @@ def create(
177173 "longitude" : longitude ,
178174 "minimum_origins" : minimum_origins ,
179175 "monitor" : monitor ,
180- "monitor_group" : monitor_group ,
181176 "notification_email" : notification_email ,
182177 "notification_filter" : notification_filter ,
183178 "origin_steering" : origin_steering ,
@@ -209,7 +204,6 @@ def update(
209204 longitude : float | NotGiven = NOT_GIVEN ,
210205 minimum_origins : int | NotGiven = NOT_GIVEN ,
211206 monitor : str | NotGiven = NOT_GIVEN ,
212- monitor_group : str | NotGiven = NOT_GIVEN ,
213207 notification_email : str | NotGiven = NOT_GIVEN ,
214208 notification_filter : Optional [NotificationFilterParam ] | NotGiven = NOT_GIVEN ,
215209 origin_steering : OriginSteeringParam | NotGiven = NOT_GIVEN ,
@@ -256,9 +250,6 @@ def update(
256250 monitor: The ID of the Monitor to use for checking the health of origins within this
257251 pool.
258252
259- monitor_group: The ID of the Monitor Group to use for checking the health of origins within
260- this pool.
261-
262253 notification_email: This field is now deprecated. It has been moved to Cloudflare's Centralized
263254 Notification service
264255 https://developers.cloudflare.com/fundamentals/notifications/. The email address
@@ -297,7 +288,6 @@ def update(
297288 "longitude" : longitude ,
298289 "minimum_origins" : minimum_origins ,
299290 "monitor" : monitor ,
300- "monitor_group" : monitor_group ,
301291 "notification_email" : notification_email ,
302292 "notification_filter" : notification_filter ,
303293 "origin_steering" : origin_steering ,
@@ -460,7 +450,6 @@ def edit(
460450 longitude : float | NotGiven = NOT_GIVEN ,
461451 minimum_origins : int | NotGiven = NOT_GIVEN ,
462452 monitor : str | NotGiven = NOT_GIVEN ,
463- monitor_group : str | NotGiven = NOT_GIVEN ,
464453 name : str | NotGiven = NOT_GIVEN ,
465454 notification_email : str | NotGiven = NOT_GIVEN ,
466455 notification_filter : Optional [NotificationFilterParam ] | NotGiven = NOT_GIVEN ,
@@ -503,9 +492,6 @@ def edit(
503492 monitor: The ID of the Monitor to use for checking the health of origins within this
504493 pool.
505494
506- monitor_group: The ID of the Monitor Group to use for checking the health of origins within
507- this pool.
508-
509495 name: A short name (tag) for the pool. Only alphanumeric characters, hyphens, and
510496 underscores are allowed.
511497
@@ -548,7 +534,6 @@ def edit(
548534 "longitude" : longitude ,
549535 "minimum_origins" : minimum_origins ,
550536 "monitor" : monitor ,
551- "monitor_group" : monitor_group ,
552537 "name" : name ,
553538 "notification_email" : notification_email ,
554539 "notification_filter" : notification_filter ,
@@ -651,7 +636,6 @@ async def create(
651636 longitude : float | NotGiven = NOT_GIVEN ,
652637 minimum_origins : int | NotGiven = NOT_GIVEN ,
653638 monitor : str | NotGiven = NOT_GIVEN ,
654- monitor_group : str | NotGiven = NOT_GIVEN ,
655639 notification_email : str | NotGiven = NOT_GIVEN ,
656640 notification_filter : Optional [NotificationFilterParam ] | NotGiven = NOT_GIVEN ,
657641 origin_steering : OriginSteeringParam | NotGiven = NOT_GIVEN ,
@@ -695,9 +679,6 @@ async def create(
695679 monitor: The ID of the Monitor to use for checking the health of origins within this
696680 pool.
697681
698- monitor_group: The ID of the Monitor Group to use for checking the health of origins within
699- this pool.
700-
701682 notification_email: This field is now deprecated. It has been moved to Cloudflare's Centralized
702683 Notification service
703684 https://developers.cloudflare.com/fundamentals/notifications/. The email address
@@ -733,7 +714,6 @@ async def create(
733714 "longitude" : longitude ,
734715 "minimum_origins" : minimum_origins ,
735716 "monitor" : monitor ,
736- "monitor_group" : monitor_group ,
737717 "notification_email" : notification_email ,
738718 "notification_filter" : notification_filter ,
739719 "origin_steering" : origin_steering ,
@@ -765,7 +745,6 @@ async def update(
765745 longitude : float | NotGiven = NOT_GIVEN ,
766746 minimum_origins : int | NotGiven = NOT_GIVEN ,
767747 monitor : str | NotGiven = NOT_GIVEN ,
768- monitor_group : str | NotGiven = NOT_GIVEN ,
769748 notification_email : str | NotGiven = NOT_GIVEN ,
770749 notification_filter : Optional [NotificationFilterParam ] | NotGiven = NOT_GIVEN ,
771750 origin_steering : OriginSteeringParam | NotGiven = NOT_GIVEN ,
@@ -812,9 +791,6 @@ async def update(
812791 monitor: The ID of the Monitor to use for checking the health of origins within this
813792 pool.
814793
815- monitor_group: The ID of the Monitor Group to use for checking the health of origins within
816- this pool.
817-
818794 notification_email: This field is now deprecated. It has been moved to Cloudflare's Centralized
819795 Notification service
820796 https://developers.cloudflare.com/fundamentals/notifications/. The email address
@@ -853,7 +829,6 @@ async def update(
853829 "longitude" : longitude ,
854830 "minimum_origins" : minimum_origins ,
855831 "monitor" : monitor ,
856- "monitor_group" : monitor_group ,
857832 "notification_email" : notification_email ,
858833 "notification_filter" : notification_filter ,
859834 "origin_steering" : origin_steering ,
@@ -1016,7 +991,6 @@ async def edit(
1016991 longitude : float | NotGiven = NOT_GIVEN ,
1017992 minimum_origins : int | NotGiven = NOT_GIVEN ,
1018993 monitor : str | NotGiven = NOT_GIVEN ,
1019- monitor_group : str | NotGiven = NOT_GIVEN ,
1020994 name : str | NotGiven = NOT_GIVEN ,
1021995 notification_email : str | NotGiven = NOT_GIVEN ,
1022996 notification_filter : Optional [NotificationFilterParam ] | NotGiven = NOT_GIVEN ,
@@ -1059,9 +1033,6 @@ async def edit(
10591033 monitor: The ID of the Monitor to use for checking the health of origins within this
10601034 pool.
10611035
1062- monitor_group: The ID of the Monitor Group to use for checking the health of origins within
1063- this pool.
1064-
10651036 name: A short name (tag) for the pool. Only alphanumeric characters, hyphens, and
10661037 underscores are allowed.
10671038
@@ -1104,7 +1075,6 @@ async def edit(
11041075 "longitude" : longitude ,
11051076 "minimum_origins" : minimum_origins ,
11061077 "monitor" : monitor ,
1107- "monitor_group" : monitor_group ,
11081078 "name" : name ,
11091079 "notification_email" : notification_email ,
11101080 "notification_filter" : notification_filter ,
0 commit comments