Skip to content

Commit e46011c

Browse files
digitalocean-engineeringAPI Engineering
andauthored
[bot] Updated client based on openapi-7b21224/clientgen (#526)
Co-authored-by: API Engineering <api-engineering@digitalocean.com>
1 parent 8761373 commit e46011c

File tree

3 files changed

+19
-20
lines changed

3 files changed

+19
-20
lines changed

DO_OPENAPI_COMMIT_SHA.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
3f29d36
2-
1+
7b21224

src/pydo/aio/operations/_operations.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -167798,7 +167798,7 @@ def __init__(self, *args, **kwargs) -> None:
167798167798
@distributed_trace_async
167799167799
async def list(self, *, per_page: int = 20, page: int = 1, **kwargs: Any) -> JSON:
167800167800
# pylint: disable=line-too-long
167801-
"""[Public Preview] List All Reserved IPv6s.
167801+
"""List All Reserved IPv6s.
167802167802

167803167803
To list all of the reserved IPv6s available on your account, send a GET request to
167804167804
``/v2/reserved_ipv6``.
@@ -167902,7 +167902,7 @@ async def create(
167902167902
self, body: JSON, *, content_type: str = "application/json", **kwargs: Any
167903167903
) -> JSON:
167904167904
# pylint: disable=line-too-long
167905-
"""[Public Preview] Create a New Reserved IPv6.
167905+
"""Create a New Reserved IPv6.
167906167906

167907167907
On creation, a reserved IPv6 must be reserved to a region.
167908167908

@@ -167946,7 +167946,7 @@ async def create(
167946167946
self, body: IO[bytes], *, content_type: str = "application/json", **kwargs: Any
167947167947
) -> JSON:
167948167948
# pylint: disable=line-too-long
167949-
"""[Public Preview] Create a New Reserved IPv6.
167949+
"""Create a New Reserved IPv6.
167950167950

167951167951
On creation, a reserved IPv6 must be reserved to a region.
167952167952

@@ -167982,7 +167982,7 @@ async def create(
167982167982
@distributed_trace_async
167983167983
async def create(self, body: Union[JSON, IO[bytes]], **kwargs: Any) -> JSON:
167984167984
# pylint: disable=line-too-long
167985-
"""[Public Preview] Create a New Reserved IPv6.
167985+
"""Create a New Reserved IPv6.
167986167986

167987167987
On creation, a reserved IPv6 must be reserved to a region.
167988167988

@@ -168094,7 +168094,7 @@ async def create(self, body: Union[JSON, IO[bytes]], **kwargs: Any) -> JSON:
168094168094
@distributed_trace_async
168095168095
async def get(self, reserved_ipv6: str, **kwargs: Any) -> JSON:
168096168096
# pylint: disable=line-too-long
168097-
"""[Public Preview] Retrieve an Existing Reserved IPv6.
168097+
"""Retrieve an Existing Reserved IPv6.
168098168098

168099168099
To show information about a reserved IPv6, send a GET request to
168100168100
``/v2/reserved_ipv6/$RESERVED_IPV6``.
@@ -168214,7 +168214,7 @@ async def get(self, reserved_ipv6: str, **kwargs: Any) -> JSON:
168214168214
@distributed_trace_async
168215168215
async def delete(self, reserved_ipv6: str, **kwargs: Any) -> Optional[JSON]:
168216168216
# pylint: disable=line-too-long
168217-
"""[Public Preview] Delete a Reserved IPv6.
168217+
"""Delete a Reserved IPv6.
168218168218

168219168219
To delete a reserved IP and remove it from your account, send a DELETE request
168220168220
to ``/v2/reserved_ipv6/$RESERVED_IPV6``.
@@ -168363,7 +168363,7 @@ async def post(
168363168363
**kwargs: Any
168364168364
) -> JSON:
168365168365
# pylint: disable=line-too-long
168366-
"""[Public Preview] Initiate a Reserved IPv6 Action.
168366+
"""Initiate a Reserved IPv6 Action.
168367168367

168368168368
To initiate an action on a reserved IPv6 send a POST request to
168369168369
``/v2/reserved_ipv6/$RESERVED_IPV6/actions``. In the JSON body to the request,
@@ -168463,7 +168463,7 @@ async def post(
168463168463
**kwargs: Any
168464168464
) -> JSON:
168465168465
# pylint: disable=line-too-long
168466-
"""[Public Preview] Initiate a Reserved IPv6 Action.
168466+
"""Initiate a Reserved IPv6 Action.
168467168467

168468168468
To initiate an action on a reserved IPv6 send a POST request to
168469168469
``/v2/reserved_ipv6/$RESERVED_IPV6/actions``. In the JSON body to the request,
@@ -168558,7 +168558,7 @@ async def post(
168558168558
**kwargs: Any
168559168559
) -> JSON:
168560168560
# pylint: disable=line-too-long
168561-
"""[Public Preview] Initiate a Reserved IPv6 Action.
168561+
"""Initiate a Reserved IPv6 Action.
168562168562

168563168563
To initiate an action on a reserved IPv6 send a POST request to
168564168564
``/v2/reserved_ipv6/$RESERVED_IPV6/actions``. In the JSON body to the request,

src/pydo/operations/_operations.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -179925,7 +179925,7 @@ def __init__(self, *args, **kwargs):
179925179925
@distributed_trace
179926179926
def list(self, *, per_page: int = 20, page: int = 1, **kwargs: Any) -> JSON:
179927179927
# pylint: disable=line-too-long
179928-
"""[Public Preview] List All Reserved IPv6s.
179928+
"""List All Reserved IPv6s.
179929179929

179930179930
To list all of the reserved IPv6s available on your account, send a GET request to
179931179931
``/v2/reserved_ipv6``.
@@ -180029,7 +180029,7 @@ def create(
180029180029
self, body: JSON, *, content_type: str = "application/json", **kwargs: Any
180030180030
) -> JSON:
180031180031
# pylint: disable=line-too-long
180032-
"""[Public Preview] Create a New Reserved IPv6.
180032+
"""Create a New Reserved IPv6.
180033180033

180034180034
On creation, a reserved IPv6 must be reserved to a region.
180035180035

@@ -180073,7 +180073,7 @@ def create(
180073180073
self, body: IO[bytes], *, content_type: str = "application/json", **kwargs: Any
180074180074
) -> JSON:
180075180075
# pylint: disable=line-too-long
180076-
"""[Public Preview] Create a New Reserved IPv6.
180076+
"""Create a New Reserved IPv6.
180077180077

180078180078
On creation, a reserved IPv6 must be reserved to a region.
180079180079

@@ -180109,7 +180109,7 @@ def create(
180109180109
@distributed_trace
180110180110
def create(self, body: Union[JSON, IO[bytes]], **kwargs: Any) -> JSON:
180111180111
# pylint: disable=line-too-long
180112-
"""[Public Preview] Create a New Reserved IPv6.
180112+
"""Create a New Reserved IPv6.
180113180113

180114180114
On creation, a reserved IPv6 must be reserved to a region.
180115180115

@@ -180221,7 +180221,7 @@ def create(self, body: Union[JSON, IO[bytes]], **kwargs: Any) -> JSON:
180221180221
@distributed_trace
180222180222
def get(self, reserved_ipv6: str, **kwargs: Any) -> JSON:
180223180223
# pylint: disable=line-too-long
180224-
"""[Public Preview] Retrieve an Existing Reserved IPv6.
180224+
"""Retrieve an Existing Reserved IPv6.
180225180225

180226180226
To show information about a reserved IPv6, send a GET request to
180227180227
``/v2/reserved_ipv6/$RESERVED_IPV6``.
@@ -180341,7 +180341,7 @@ def get(self, reserved_ipv6: str, **kwargs: Any) -> JSON:
180341180341
@distributed_trace
180342180342
def delete(self, reserved_ipv6: str, **kwargs: Any) -> Optional[JSON]:
180343180343
# pylint: disable=line-too-long
180344-
"""[Public Preview] Delete a Reserved IPv6.
180344+
"""Delete a Reserved IPv6.
180345180345

180346180346
To delete a reserved IP and remove it from your account, send a DELETE request
180347180347
to ``/v2/reserved_ipv6/$RESERVED_IPV6``.
@@ -180490,7 +180490,7 @@ def post(
180490180490
**kwargs: Any,
180491180491
) -> JSON:
180492180492
# pylint: disable=line-too-long
180493-
"""[Public Preview] Initiate a Reserved IPv6 Action.
180493+
"""Initiate a Reserved IPv6 Action.
180494180494

180495180495
To initiate an action on a reserved IPv6 send a POST request to
180496180496
``/v2/reserved_ipv6/$RESERVED_IPV6/actions``. In the JSON body to the request,
@@ -180590,7 +180590,7 @@ def post(
180590180590
**kwargs: Any,
180591180591
) -> JSON:
180592180592
# pylint: disable=line-too-long
180593-
"""[Public Preview] Initiate a Reserved IPv6 Action.
180593+
"""Initiate a Reserved IPv6 Action.
180594180594

180595180595
To initiate an action on a reserved IPv6 send a POST request to
180596180596
``/v2/reserved_ipv6/$RESERVED_IPV6/actions``. In the JSON body to the request,
@@ -180685,7 +180685,7 @@ def post(
180685180685
**kwargs: Any,
180686180686
) -> JSON:
180687180687
# pylint: disable=line-too-long
180688-
"""[Public Preview] Initiate a Reserved IPv6 Action.
180688+
"""Initiate a Reserved IPv6 Action.
180689180689

180690180690
To initiate an action on a reserved IPv6 send a POST request to
180691180691
``/v2/reserved_ipv6/$RESERVED_IPV6/actions``. In the JSON body to the request,

0 commit comments

Comments
 (0)