@@ -748,7 +748,6 @@ def mark_active(
748748 def start (
749749 self ,
750750 * ,
751- acknowledge_token : str | Omit = omit ,
752751 environment_id : str | Omit = omit ,
753752 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
754753 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -775,10 +774,6 @@ def start(
775774 ```
776775
777776 Args:
778- acknowledge_token: acknowledge_token is the HMAC token from a previous
779- EnvironmentMaxLifetimeEnforcementDetails response, allowing the user to start an
780- environment past its max lifetime in warn mode.
781-
782777 environment_id: environment_id specifies which environment should be started.
783778
784779 extra_headers: Send extra headers
@@ -791,13 +786,7 @@ def start(
791786 """
792787 return self ._post (
793788 "/gitpod.v1.EnvironmentService/StartEnvironment" ,
794- body = maybe_transform (
795- {
796- "acknowledge_token" : acknowledge_token ,
797- "environment_id" : environment_id ,
798- },
799- environment_start_params .EnvironmentStartParams ,
800- ),
789+ body = maybe_transform ({"environment_id" : environment_id }, environment_start_params .EnvironmentStartParams ),
801790 options = make_request_options (
802791 extra_headers = extra_headers , extra_query = extra_query , extra_body = extra_body , timeout = timeout
803792 ),
@@ -1588,7 +1577,6 @@ async def mark_active(
15881577 async def start (
15891578 self ,
15901579 * ,
1591- acknowledge_token : str | Omit = omit ,
15921580 environment_id : str | Omit = omit ,
15931581 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
15941582 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -1615,10 +1603,6 @@ async def start(
16151603 ```
16161604
16171605 Args:
1618- acknowledge_token: acknowledge_token is the HMAC token from a previous
1619- EnvironmentMaxLifetimeEnforcementDetails response, allowing the user to start an
1620- environment past its max lifetime in warn mode.
1621-
16221606 environment_id: environment_id specifies which environment should be started.
16231607
16241608 extra_headers: Send extra headers
@@ -1632,11 +1616,7 @@ async def start(
16321616 return await self ._post (
16331617 "/gitpod.v1.EnvironmentService/StartEnvironment" ,
16341618 body = await async_maybe_transform (
1635- {
1636- "acknowledge_token" : acknowledge_token ,
1637- "environment_id" : environment_id ,
1638- },
1639- environment_start_params .EnvironmentStartParams ,
1619+ {"environment_id" : environment_id }, environment_start_params .EnvironmentStartParams
16401620 ),
16411621 options = make_request_options (
16421622 extra_headers = extra_headers , extra_query = extra_query , extra_body = extra_body , timeout = timeout
0 commit comments