@@ -512,7 +512,7 @@ def list(
512
512
cls ,
513
513
filter : Optional [str ] = None ,
514
514
order_by : Optional [str ] = None ,
515
- enable_simple_view : Optional [ bool ] = False ,
515
+ enable_simple_view : bool = False ,
516
516
project : Optional [str ] = None ,
517
517
location : Optional [str ] = None ,
518
518
credentials : Optional [auth_credentials .Credentials ] = None ,
@@ -536,10 +536,10 @@ def list(
536
536
Supported fields: `display_name`, `create_time`, `update_time`
537
537
enable_simple_view (bool):
538
538
Optional. Whether to pass the `read_mask` parameter to the list call.
539
- This will improve the performance of calling list(). However, the
540
- returned PipelineJob list will not include all fields for each PipelineJob.
541
- Setting this to True will exclude the following fields in your response:
542
- `runtime_config`, `service_account`, `network`, and some subfields of
539
+ Defaults to False if not provided. This will improve the performance of calling
540
+ list(). However, the returned PipelineJob list will not include all fields for
541
+ each PipelineJob. Setting this to True will exclude the following fields in your
542
+ response: `runtime_config`, `service_account`, `network`, and some subfields of
543
543
`pipeline_spec` and `job_detail`. The following fields will be included in
544
544
each PipelineJob resource in your response: `state`, `display_name`,
545
545
`pipeline_spec.pipeline_info`, `create_time`, `start_time`, `end_time`,
0 commit comments