@@ -196,6 +196,7 @@ def update(
196196 max_upload_bytes : Optional [int ] | NotGiven = NOT_GIVEN ,
197197 max_upload_interval_seconds : Optional [int ] | NotGiven = NOT_GIVEN ,
198198 max_upload_records : Optional [int ] | NotGiven = NOT_GIVEN ,
199+ name : Optional [str ] | NotGiven = NOT_GIVEN ,
199200 output_options : Optional [OutputOptionsParam ] | NotGiven = NOT_GIVEN ,
200201 ownership_challenge : str | NotGiven = NOT_GIVEN ,
201202 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -253,6 +254,10 @@ def update(
253254 lines than this. This parameter is not available for jobs with `edge` as its
254255 kind.
255256
257+ name: Optional human readable job name. Not unique. Cloudflare suggests that you set
258+ this to a meaningful string, like the domain name, to make it easier to identify
259+ your job.
260+
256261 output_options: The structured replacement for `logpull_options`. When including this field, the
257262 `logpull_option` field will be ignored.
258263
@@ -290,6 +295,7 @@ def update(
290295 "max_upload_bytes" : max_upload_bytes ,
291296 "max_upload_interval_seconds" : max_upload_interval_seconds ,
292297 "max_upload_records" : max_upload_records ,
298+ "name" : name ,
293299 "output_options" : output_options ,
294300 "ownership_challenge" : ownership_challenge ,
295301 },
@@ -630,6 +636,7 @@ async def update(
630636 max_upload_bytes : Optional [int ] | NotGiven = NOT_GIVEN ,
631637 max_upload_interval_seconds : Optional [int ] | NotGiven = NOT_GIVEN ,
632638 max_upload_records : Optional [int ] | NotGiven = NOT_GIVEN ,
639+ name : Optional [str ] | NotGiven = NOT_GIVEN ,
633640 output_options : Optional [OutputOptionsParam ] | NotGiven = NOT_GIVEN ,
634641 ownership_challenge : str | NotGiven = NOT_GIVEN ,
635642 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -687,6 +694,10 @@ async def update(
687694 lines than this. This parameter is not available for jobs with `edge` as its
688695 kind.
689696
697+ name: Optional human readable job name. Not unique. Cloudflare suggests that you set
698+ this to a meaningful string, like the domain name, to make it easier to identify
699+ your job.
700+
690701 output_options: The structured replacement for `logpull_options`. When including this field, the
691702 `logpull_option` field will be ignored.
692703
@@ -724,6 +735,7 @@ async def update(
724735 "max_upload_bytes" : max_upload_bytes ,
725736 "max_upload_interval_seconds" : max_upload_interval_seconds ,
726737 "max_upload_records" : max_upload_records ,
738+ "name" : name ,
727739 "output_options" : output_options ,
728740 "ownership_challenge" : ownership_challenge ,
729741 },
0 commit comments