@@ -93,8 +93,11 @@ def create(
9393 def list (
9494 self ,
9595 * ,
96+ ending_before : str | Omit = omit ,
9697 label_selector : str | Omit = omit ,
98+ limit : int | Omit = omit ,
9799 region : str | Omit = omit ,
100+ starting_after : str | Omit = omit ,
98101 state : Literal ["unknown" , "creating" , "ready" , "terminated" ] | Omit = omit ,
99102 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
100103 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -107,11 +110,19 @@ def list(
107110 List Android instances belonging to given organization
108111
109112 Args:
113+ ending_before: Return records up until this instance ID. If not given, it will return up until
114+ the 50th instance.
115+
110116 label_selector: Labels filter to apply to Android instances to return. Expects a comma-separated
111117 list of key=value pairs (e.g., env=prod,region=us-west).
112118
119+ limit: Maximum number of instances to be returned. The default is 50.
120+
113121 region: Region where the instance is scheduled on.
114122
123+ starting_after: Return records starting after this instance ID. If not given, it will start from
124+ the most recent one.
125+
115126 state: State filter to apply to Android instances to return.
116127
117128 extra_headers: Send extra headers
@@ -131,8 +142,11 @@ def list(
131142 timeout = timeout ,
132143 query = maybe_transform (
133144 {
145+ "ending_before" : ending_before ,
134146 "label_selector" : label_selector ,
147+ "limit" : limit ,
135148 "region" : region ,
149+ "starting_after" : starting_after ,
136150 "state" : state ,
137151 },
138152 android_instance_list_params .AndroidInstanceListParams ,
@@ -280,8 +294,11 @@ async def create(
280294 async def list (
281295 self ,
282296 * ,
297+ ending_before : str | Omit = omit ,
283298 label_selector : str | Omit = omit ,
299+ limit : int | Omit = omit ,
284300 region : str | Omit = omit ,
301+ starting_after : str | Omit = omit ,
285302 state : Literal ["unknown" , "creating" , "ready" , "terminated" ] | Omit = omit ,
286303 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
287304 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -294,11 +311,19 @@ async def list(
294311 List Android instances belonging to given organization
295312
296313 Args:
314+ ending_before: Return records up until this instance ID. If not given, it will return up until
315+ the 50th instance.
316+
297317 label_selector: Labels filter to apply to Android instances to return. Expects a comma-separated
298318 list of key=value pairs (e.g., env=prod,region=us-west).
299319
320+ limit: Maximum number of instances to be returned. The default is 50.
321+
300322 region: Region where the instance is scheduled on.
301323
324+ starting_after: Return records starting after this instance ID. If not given, it will start from
325+ the most recent one.
326+
302327 state: State filter to apply to Android instances to return.
303328
304329 extra_headers: Send extra headers
@@ -318,8 +343,11 @@ async def list(
318343 timeout = timeout ,
319344 query = await async_maybe_transform (
320345 {
346+ "ending_before" : ending_before ,
321347 "label_selector" : label_selector ,
348+ "limit" : limit ,
322349 "region" : region ,
350+ "starting_after" : starting_after ,
323351 "state" : state ,
324352 },
325353 android_instance_list_params .AndroidInstanceListParams ,
0 commit comments