@@ -39,6 +39,7 @@ def list(
3939 include_parent : typing .Optional [bool ] = None ,
4040 in_trace_filter : typing .Optional [typing .Union [bool , typing .Sequence [bool ]]] = None ,
4141 sample : typing .Optional [int ] = None ,
42+ include_trace_children : typing .Optional [bool ] = None ,
4243 request_options : typing .Optional [RequestOptions ] = None ,
4344 ) -> SyncPager [LogResponse ]:
4445 """
@@ -85,6 +86,9 @@ def list(
8586 sample : typing.Optional[int]
8687 If provided, limit the response to a random subset of logs from the filtered results. (This will be an approximate sample, not a strict limit.)
8788
89+ include_trace_children : typing.Optional[bool]
90+ If true, populate `trace_children` for the retrieved Logs. Only applicable when retrieving Flow Logs.
91+
8892 request_options : typing.Optional[RequestOptions]
8993 Request-specific configuration.
9094
@@ -128,6 +132,7 @@ def list(
128132 "include_parent" : include_parent ,
129133 "in_trace_filter" : in_trace_filter ,
130134 "sample" : sample ,
135+ "include_trace_children" : include_trace_children ,
131136 },
132137 request_options = request_options ,
133138 )
@@ -155,6 +160,7 @@ def list(
155160 include_parent = include_parent ,
156161 in_trace_filter = in_trace_filter ,
157162 sample = sample ,
163+ include_trace_children = include_trace_children ,
158164 request_options = request_options ,
159165 )
160166 _items = _parsed_response .records
@@ -308,6 +314,7 @@ async def list(
308314 include_parent : typing .Optional [bool ] = None ,
309315 in_trace_filter : typing .Optional [typing .Union [bool , typing .Sequence [bool ]]] = None ,
310316 sample : typing .Optional [int ] = None ,
317+ include_trace_children : typing .Optional [bool ] = None ,
311318 request_options : typing .Optional [RequestOptions ] = None ,
312319 ) -> AsyncPager [LogResponse ]:
313320 """
@@ -354,6 +361,9 @@ async def list(
354361 sample : typing.Optional[int]
355362 If provided, limit the response to a random subset of logs from the filtered results. (This will be an approximate sample, not a strict limit.)
356363
364+ include_trace_children : typing.Optional[bool]
365+ If true, populate `trace_children` for the retrieved Logs. Only applicable when retrieving Flow Logs.
366+
357367 request_options : typing.Optional[RequestOptions]
358368 Request-specific configuration.
359369
@@ -405,6 +415,7 @@ async def main() -> None:
405415 "include_parent" : include_parent ,
406416 "in_trace_filter" : in_trace_filter ,
407417 "sample" : sample ,
418+ "include_trace_children" : include_trace_children ,
408419 },
409420 request_options = request_options ,
410421 )
@@ -432,6 +443,7 @@ async def main() -> None:
432443 include_parent = include_parent ,
433444 in_trace_filter = in_trace_filter ,
434445 sample = sample ,
446+ include_trace_children = include_trace_children ,
435447 request_options = request_options ,
436448 )
437449 _items = _parsed_response .records
0 commit comments