@@ -69,6 +69,9 @@ def create(
6969 To get current the operation status, invoke the
7070 `Get bulk operation status` endpoint with the returned `operation_id`.
7171
72+ There is a limit of 1 pending bulk operation per account. If an outstanding bulk
73+ operation is in progress, the request will be rejected.
74+
7275 Args:
7376 account_id: The Account ID for this resource.
7477
@@ -119,6 +122,9 @@ def update(
119122 This operation is asynchronous. To get current the operation status, invoke the
120123 `Get bulk operation status` endpoint with the returned `operation_id`.
121124
125+ There is a limit of 1 pending bulk operation per account. If an outstanding bulk
126+ operation is in progress, the request will be rejected.
127+
122128 Args:
123129 account_id: The Account ID for this resource.
124130
@@ -237,6 +243,9 @@ def delete(
237243 To get current the operation status, invoke the
238244 `Get bulk operation status` endpoint with the returned `operation_id`.
239245
246+ There is a limit of 1 pending bulk operation per account. If an outstanding bulk
247+ operation is in progress, the request will be rejected.
248+
240249 Args:
241250 account_id: The Account ID for this resource.
242251
@@ -362,6 +371,9 @@ async def create(
362371 To get current the operation status, invoke the
363372 `Get bulk operation status` endpoint with the returned `operation_id`.
364373
374+ There is a limit of 1 pending bulk operation per account. If an outstanding bulk
375+ operation is in progress, the request will be rejected.
376+
365377 Args:
366378 account_id: The Account ID for this resource.
367379
@@ -412,6 +424,9 @@ async def update(
412424 This operation is asynchronous. To get current the operation status, invoke the
413425 `Get bulk operation status` endpoint with the returned `operation_id`.
414426
427+ There is a limit of 1 pending bulk operation per account. If an outstanding bulk
428+ operation is in progress, the request will be rejected.
429+
415430 Args:
416431 account_id: The Account ID for this resource.
417432
@@ -530,6 +545,9 @@ async def delete(
530545 To get current the operation status, invoke the
531546 `Get bulk operation status` endpoint with the returned `operation_id`.
532547
548+ There is a limit of 1 pending bulk operation per account. If an outstanding bulk
549+ operation is in progress, the request will be rejected.
550+
533551 Args:
534552 account_id: The Account ID for this resource.
535553
0 commit comments