-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathout.fields.txt
More file actions
2914 lines (2914 loc) · 236 KB
/
out.fields.txt
File metadata and controls
2914 lines (2914 loc) · 236 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
resources.alerts.*.create_time string ALL
resources.alerts.*.custom_description string ALL
resources.alerts.*.custom_summary string ALL
resources.alerts.*.display_name string ALL
resources.alerts.*.effective_run_as *sql.AlertV2RunAs ALL
resources.alerts.*.effective_run_as.service_principal_name string ALL
resources.alerts.*.effective_run_as.user_name string ALL
resources.alerts.*.evaluation sql.AlertV2Evaluation ALL
resources.alerts.*.evaluation.comparison_operator sql.ComparisonOperator ALL
resources.alerts.*.evaluation.empty_result_state sql.AlertEvaluationState ALL
resources.alerts.*.evaluation.last_evaluated_at string ALL
resources.alerts.*.evaluation.notification *sql.AlertV2Notification ALL
resources.alerts.*.evaluation.notification.notify_on_ok bool ALL
resources.alerts.*.evaluation.notification.retrigger_seconds int ALL
resources.alerts.*.evaluation.notification.subscriptions []sql.AlertV2Subscription ALL
resources.alerts.*.evaluation.notification.subscriptions[*] sql.AlertV2Subscription ALL
resources.alerts.*.evaluation.notification.subscriptions[*].destination_id string ALL
resources.alerts.*.evaluation.notification.subscriptions[*].user_email string ALL
resources.alerts.*.evaluation.source sql.AlertV2OperandColumn ALL
resources.alerts.*.evaluation.source.aggregation sql.Aggregation ALL
resources.alerts.*.evaluation.source.display string ALL
resources.alerts.*.evaluation.source.name string ALL
resources.alerts.*.evaluation.state sql.AlertEvaluationState ALL
resources.alerts.*.evaluation.threshold *sql.AlertV2Operand ALL
resources.alerts.*.evaluation.threshold.column *sql.AlertV2OperandColumn ALL
resources.alerts.*.evaluation.threshold.column.aggregation sql.Aggregation ALL
resources.alerts.*.evaluation.threshold.column.display string ALL
resources.alerts.*.evaluation.threshold.column.name string ALL
resources.alerts.*.evaluation.threshold.value *sql.AlertV2OperandValue ALL
resources.alerts.*.evaluation.threshold.value.bool_value bool ALL
resources.alerts.*.evaluation.threshold.value.double_value float64 ALL
resources.alerts.*.evaluation.threshold.value.string_value string ALL
resources.alerts.*.file_path string INPUT
resources.alerts.*.id string ALL
resources.alerts.*.lifecycle resources.Lifecycle INPUT
resources.alerts.*.lifecycle.prevent_destroy bool INPUT
resources.alerts.*.lifecycle_state sql.AlertLifecycleState ALL
resources.alerts.*.modified_status string INPUT
resources.alerts.*.owner_user_name string ALL
resources.alerts.*.parent_path string ALL
resources.alerts.*.query_text string ALL
resources.alerts.*.run_as *sql.AlertV2RunAs ALL
resources.alerts.*.run_as.service_principal_name string ALL
resources.alerts.*.run_as.user_name string ALL
resources.alerts.*.run_as_user_name string ALL
resources.alerts.*.schedule sql.CronSchedule ALL
resources.alerts.*.schedule.pause_status sql.SchedulePauseStatus ALL
resources.alerts.*.schedule.quartz_cron_schedule string ALL
resources.alerts.*.schedule.timezone_id string ALL
resources.alerts.*.update_time string ALL
resources.alerts.*.url string INPUT
resources.alerts.*.warehouse_id string ALL
resources.alerts.*.permissions.object_id string ALL
resources.alerts.*.permissions[*] dresources.StatePermission ALL
resources.alerts.*.permissions[*].group_name string ALL
resources.alerts.*.permissions[*].level iam.PermissionLevel ALL
resources.alerts.*.permissions[*].service_principal_name string ALL
resources.alerts.*.permissions[*].user_name string ALL
resources.apps.*.active_deployment *apps.AppDeployment ALL
resources.apps.*.active_deployment.command []string ALL
resources.apps.*.active_deployment.command[*] string ALL
resources.apps.*.active_deployment.create_time string ALL
resources.apps.*.active_deployment.creator string ALL
resources.apps.*.active_deployment.deployment_artifacts *apps.AppDeploymentArtifacts ALL
resources.apps.*.active_deployment.deployment_artifacts.source_code_path string ALL
resources.apps.*.active_deployment.deployment_id string ALL
resources.apps.*.active_deployment.env_vars []apps.EnvVar ALL
resources.apps.*.active_deployment.env_vars[*] apps.EnvVar ALL
resources.apps.*.active_deployment.env_vars[*].name string ALL
resources.apps.*.active_deployment.env_vars[*].value string ALL
resources.apps.*.active_deployment.env_vars[*].value_from string ALL
resources.apps.*.active_deployment.git_source *apps.GitSource ALL
resources.apps.*.active_deployment.git_source.branch string ALL
resources.apps.*.active_deployment.git_source.commit string ALL
resources.apps.*.active_deployment.git_source.git_repository *apps.GitRepository ALL
resources.apps.*.active_deployment.git_source.git_repository.provider string ALL
resources.apps.*.active_deployment.git_source.git_repository.url string ALL
resources.apps.*.active_deployment.git_source.resolved_commit string ALL
resources.apps.*.active_deployment.git_source.source_code_path string ALL
resources.apps.*.active_deployment.git_source.tag string ALL
resources.apps.*.active_deployment.mode apps.AppDeploymentMode ALL
resources.apps.*.active_deployment.source_code_path string ALL
resources.apps.*.active_deployment.status *apps.AppDeploymentStatus ALL
resources.apps.*.active_deployment.status.message string ALL
resources.apps.*.active_deployment.status.state apps.AppDeploymentState ALL
resources.apps.*.active_deployment.update_time string ALL
resources.apps.*.app_status *apps.ApplicationStatus ALL
resources.apps.*.app_status.message string ALL
resources.apps.*.app_status.state apps.ApplicationState ALL
resources.apps.*.budget_policy_id string ALL
resources.apps.*.compute_size apps.ComputeSize ALL
resources.apps.*.compute_status *apps.ComputeStatus ALL
resources.apps.*.compute_status.active_instances int ALL
resources.apps.*.compute_status.message string ALL
resources.apps.*.compute_status.state apps.ComputeState ALL
resources.apps.*.config *resources.AppConfig INPUT
resources.apps.*.config.command []string INPUT
resources.apps.*.config.command[*] string INPUT
resources.apps.*.config.env []resources.AppEnvVar INPUT
resources.apps.*.config.env[*] resources.AppEnvVar INPUT
resources.apps.*.config.env[*].name string INPUT
resources.apps.*.config.env[*].value string INPUT
resources.apps.*.config.env[*].value_from string INPUT
resources.apps.*.create_time string ALL
resources.apps.*.creator string ALL
resources.apps.*.default_source_code_path string ALL
resources.apps.*.description string ALL
resources.apps.*.effective_budget_policy_id string ALL
resources.apps.*.effective_usage_policy_id string ALL
resources.apps.*.effective_user_api_scopes []string ALL
resources.apps.*.effective_user_api_scopes[*] string ALL
resources.apps.*.git_repository *apps.GitRepository ALL
resources.apps.*.git_repository.provider string ALL
resources.apps.*.git_repository.url string ALL
resources.apps.*.git_source *apps.GitSource INPUT
resources.apps.*.git_source.branch string INPUT
resources.apps.*.git_source.commit string INPUT
resources.apps.*.git_source.git_repository *apps.GitRepository INPUT
resources.apps.*.git_source.git_repository.provider string INPUT
resources.apps.*.git_source.git_repository.url string INPUT
resources.apps.*.git_source.resolved_commit string INPUT
resources.apps.*.git_source.source_code_path string INPUT
resources.apps.*.git_source.tag string INPUT
resources.apps.*.id string ALL
resources.apps.*.lifecycle resources.Lifecycle INPUT
resources.apps.*.lifecycle.prevent_destroy bool INPUT
resources.apps.*.modified_status string INPUT
resources.apps.*.name string ALL
resources.apps.*.oauth2_app_client_id string ALL
resources.apps.*.oauth2_app_integration_id string ALL
resources.apps.*.pending_deployment *apps.AppDeployment ALL
resources.apps.*.pending_deployment.command []string ALL
resources.apps.*.pending_deployment.command[*] string ALL
resources.apps.*.pending_deployment.create_time string ALL
resources.apps.*.pending_deployment.creator string ALL
resources.apps.*.pending_deployment.deployment_artifacts *apps.AppDeploymentArtifacts ALL
resources.apps.*.pending_deployment.deployment_artifacts.source_code_path string ALL
resources.apps.*.pending_deployment.deployment_id string ALL
resources.apps.*.pending_deployment.env_vars []apps.EnvVar ALL
resources.apps.*.pending_deployment.env_vars[*] apps.EnvVar ALL
resources.apps.*.pending_deployment.env_vars[*].name string ALL
resources.apps.*.pending_deployment.env_vars[*].value string ALL
resources.apps.*.pending_deployment.env_vars[*].value_from string ALL
resources.apps.*.pending_deployment.git_source *apps.GitSource ALL
resources.apps.*.pending_deployment.git_source.branch string ALL
resources.apps.*.pending_deployment.git_source.commit string ALL
resources.apps.*.pending_deployment.git_source.git_repository *apps.GitRepository ALL
resources.apps.*.pending_deployment.git_source.git_repository.provider string ALL
resources.apps.*.pending_deployment.git_source.git_repository.url string ALL
resources.apps.*.pending_deployment.git_source.resolved_commit string ALL
resources.apps.*.pending_deployment.git_source.source_code_path string ALL
resources.apps.*.pending_deployment.git_source.tag string ALL
resources.apps.*.pending_deployment.mode apps.AppDeploymentMode ALL
resources.apps.*.pending_deployment.source_code_path string ALL
resources.apps.*.pending_deployment.status *apps.AppDeploymentStatus ALL
resources.apps.*.pending_deployment.status.message string ALL
resources.apps.*.pending_deployment.status.state apps.AppDeploymentState ALL
resources.apps.*.pending_deployment.update_time string ALL
resources.apps.*.resources []apps.AppResource ALL
resources.apps.*.resources[*] apps.AppResource ALL
resources.apps.*.resources[*].app *apps.AppResourceApp ALL
resources.apps.*.resources[*].database *apps.AppResourceDatabase ALL
resources.apps.*.resources[*].database.database_name string ALL
resources.apps.*.resources[*].database.instance_name string ALL
resources.apps.*.resources[*].database.permission apps.AppResourceDatabaseDatabasePermission ALL
resources.apps.*.resources[*].description string ALL
resources.apps.*.resources[*].experiment *apps.AppResourceExperiment ALL
resources.apps.*.resources[*].experiment.experiment_id string ALL
resources.apps.*.resources[*].experiment.permission apps.AppResourceExperimentExperimentPermission ALL
resources.apps.*.resources[*].genie_space *apps.AppResourceGenieSpace ALL
resources.apps.*.resources[*].genie_space.name string ALL
resources.apps.*.resources[*].genie_space.permission apps.AppResourceGenieSpaceGenieSpacePermission ALL
resources.apps.*.resources[*].genie_space.space_id string ALL
resources.apps.*.resources[*].job *apps.AppResourceJob ALL
resources.apps.*.resources[*].job.id string ALL
resources.apps.*.resources[*].job.permission apps.AppResourceJobJobPermission ALL
resources.apps.*.resources[*].name string ALL
resources.apps.*.resources[*].postgres *apps.AppResourcePostgres ALL
resources.apps.*.resources[*].postgres.branch string ALL
resources.apps.*.resources[*].postgres.database string ALL
resources.apps.*.resources[*].postgres.permission apps.AppResourcePostgresPostgresPermission ALL
resources.apps.*.resources[*].secret *apps.AppResourceSecret ALL
resources.apps.*.resources[*].secret.key string ALL
resources.apps.*.resources[*].secret.permission apps.AppResourceSecretSecretPermission ALL
resources.apps.*.resources[*].secret.scope string ALL
resources.apps.*.resources[*].serving_endpoint *apps.AppResourceServingEndpoint ALL
resources.apps.*.resources[*].serving_endpoint.name string ALL
resources.apps.*.resources[*].serving_endpoint.permission apps.AppResourceServingEndpointServingEndpointPermission ALL
resources.apps.*.resources[*].sql_warehouse *apps.AppResourceSqlWarehouse ALL
resources.apps.*.resources[*].sql_warehouse.id string ALL
resources.apps.*.resources[*].sql_warehouse.permission apps.AppResourceSqlWarehouseSqlWarehousePermission ALL
resources.apps.*.resources[*].uc_securable *apps.AppResourceUcSecurable ALL
resources.apps.*.resources[*].uc_securable.permission apps.AppResourceUcSecurableUcSecurablePermission ALL
resources.apps.*.resources[*].uc_securable.securable_full_name string ALL
resources.apps.*.resources[*].uc_securable.securable_kind string ALL
resources.apps.*.resources[*].uc_securable.securable_type apps.AppResourceUcSecurableUcSecurableType ALL
resources.apps.*.service_principal_client_id string ALL
resources.apps.*.service_principal_id int64 ALL
resources.apps.*.service_principal_name string ALL
resources.apps.*.source_code_path string INPUT
resources.apps.*.space string ALL
resources.apps.*.telemetry_export_destinations []apps.TelemetryExportDestination ALL
resources.apps.*.telemetry_export_destinations[*] apps.TelemetryExportDestination ALL
resources.apps.*.telemetry_export_destinations[*].unity_catalog *apps.UnityCatalog ALL
resources.apps.*.telemetry_export_destinations[*].unity_catalog.logs_table string ALL
resources.apps.*.telemetry_export_destinations[*].unity_catalog.metrics_table string ALL
resources.apps.*.telemetry_export_destinations[*].unity_catalog.traces_table string ALL
resources.apps.*.update_time string ALL
resources.apps.*.updater string ALL
resources.apps.*.url string ALL
resources.apps.*.usage_policy_id string ALL
resources.apps.*.user_api_scopes []string ALL
resources.apps.*.user_api_scopes[*] string ALL
resources.apps.*.permissions.object_id string ALL
resources.apps.*.permissions[*] dresources.StatePermission ALL
resources.apps.*.permissions[*].group_name string ALL
resources.apps.*.permissions[*].level iam.PermissionLevel ALL
resources.apps.*.permissions[*].service_principal_name string ALL
resources.apps.*.permissions[*].user_name string ALL
resources.catalogs.*.browse_only bool REMOTE
resources.catalogs.*.catalog_type catalog.CatalogType REMOTE
resources.catalogs.*.comment string ALL
resources.catalogs.*.connection_name string ALL
resources.catalogs.*.created_at int64 REMOTE
resources.catalogs.*.created_by string REMOTE
resources.catalogs.*.effective_predictive_optimization_flag *catalog.EffectivePredictiveOptimizationFlag REMOTE
resources.catalogs.*.effective_predictive_optimization_flag.inherited_from_name string REMOTE
resources.catalogs.*.effective_predictive_optimization_flag.inherited_from_type catalog.EffectivePredictiveOptimizationFlagInheritedFromType REMOTE
resources.catalogs.*.effective_predictive_optimization_flag.value catalog.EnablePredictiveOptimization REMOTE
resources.catalogs.*.enable_predictive_optimization catalog.EnablePredictiveOptimization ALL
resources.catalogs.*.full_name string REMOTE
resources.catalogs.*.id string INPUT
resources.catalogs.*.isolation_mode catalog.CatalogIsolationMode ALL
resources.catalogs.*.lifecycle resources.Lifecycle INPUT
resources.catalogs.*.lifecycle.prevent_destroy bool INPUT
resources.catalogs.*.metastore_id string REMOTE
resources.catalogs.*.modified_status string INPUT
resources.catalogs.*.name string ALL
resources.catalogs.*.options map[string]string ALL
resources.catalogs.*.options.* string ALL
resources.catalogs.*.owner string ALL
resources.catalogs.*.properties map[string]string ALL
resources.catalogs.*.properties.* string ALL
resources.catalogs.*.provider_name string ALL
resources.catalogs.*.provisioning_info *catalog.ProvisioningInfo REMOTE
resources.catalogs.*.provisioning_info.state catalog.ProvisioningInfoState REMOTE
resources.catalogs.*.securable_type catalog.SecurableType REMOTE
resources.catalogs.*.share_name string ALL
resources.catalogs.*.storage_location string REMOTE
resources.catalogs.*.storage_root string ALL
resources.catalogs.*.updated_at int64 REMOTE
resources.catalogs.*.updated_by string REMOTE
resources.catalogs.*.url string INPUT
resources.catalogs.*.grants.full_name string ALL
resources.catalogs.*.grants.securable_type string ALL
resources.catalogs.*.grants[*] catalog.PrivilegeAssignment ALL
resources.catalogs.*.grants[*].principal string ALL
resources.catalogs.*.grants[*].privileges []catalog.Privilege ALL
resources.catalogs.*.grants[*].privileges[*] catalog.Privilege ALL
resources.clusters.*.apply_policy_default_values bool INPUT STATE
resources.clusters.*.autoscale *compute.AutoScale ALL
resources.clusters.*.autoscale.max_workers int ALL
resources.clusters.*.autoscale.min_workers int ALL
resources.clusters.*.autotermination_minutes int ALL
resources.clusters.*.aws_attributes *compute.AwsAttributes ALL
resources.clusters.*.aws_attributes.availability compute.AwsAvailability ALL
resources.clusters.*.aws_attributes.ebs_volume_count int ALL
resources.clusters.*.aws_attributes.ebs_volume_iops int ALL
resources.clusters.*.aws_attributes.ebs_volume_size int ALL
resources.clusters.*.aws_attributes.ebs_volume_throughput int ALL
resources.clusters.*.aws_attributes.ebs_volume_type compute.EbsVolumeType ALL
resources.clusters.*.aws_attributes.first_on_demand int ALL
resources.clusters.*.aws_attributes.instance_profile_arn string ALL
resources.clusters.*.aws_attributes.spot_bid_price_percent int ALL
resources.clusters.*.aws_attributes.zone_id string ALL
resources.clusters.*.azure_attributes *compute.AzureAttributes ALL
resources.clusters.*.azure_attributes.availability compute.AzureAvailability ALL
resources.clusters.*.azure_attributes.first_on_demand int ALL
resources.clusters.*.azure_attributes.log_analytics_info *compute.LogAnalyticsInfo ALL
resources.clusters.*.azure_attributes.log_analytics_info.log_analytics_primary_key string ALL
resources.clusters.*.azure_attributes.log_analytics_info.log_analytics_workspace_id string ALL
resources.clusters.*.azure_attributes.spot_bid_max_price float64 ALL
resources.clusters.*.cluster_cores float64 REMOTE
resources.clusters.*.cluster_id string REMOTE
resources.clusters.*.cluster_log_conf *compute.ClusterLogConf ALL
resources.clusters.*.cluster_log_conf.dbfs *compute.DbfsStorageInfo ALL
resources.clusters.*.cluster_log_conf.dbfs.destination string ALL
resources.clusters.*.cluster_log_conf.s3 *compute.S3StorageInfo ALL
resources.clusters.*.cluster_log_conf.s3.canned_acl string ALL
resources.clusters.*.cluster_log_conf.s3.destination string ALL
resources.clusters.*.cluster_log_conf.s3.enable_encryption bool ALL
resources.clusters.*.cluster_log_conf.s3.encryption_type string ALL
resources.clusters.*.cluster_log_conf.s3.endpoint string ALL
resources.clusters.*.cluster_log_conf.s3.kms_key string ALL
resources.clusters.*.cluster_log_conf.s3.region string ALL
resources.clusters.*.cluster_log_conf.volumes *compute.VolumesStorageInfo ALL
resources.clusters.*.cluster_log_conf.volumes.destination string ALL
resources.clusters.*.cluster_log_status *compute.LogSyncStatus REMOTE
resources.clusters.*.cluster_log_status.last_attempted int64 REMOTE
resources.clusters.*.cluster_log_status.last_exception string REMOTE
resources.clusters.*.cluster_memory_mb int64 REMOTE
resources.clusters.*.cluster_name string ALL
resources.clusters.*.cluster_source compute.ClusterSource REMOTE
resources.clusters.*.creator_user_name string REMOTE
resources.clusters.*.custom_tags map[string]string ALL
resources.clusters.*.custom_tags.* string ALL
resources.clusters.*.data_security_mode compute.DataSecurityMode ALL
resources.clusters.*.default_tags map[string]string REMOTE
resources.clusters.*.default_tags.* string REMOTE
resources.clusters.*.docker_image *compute.DockerImage ALL
resources.clusters.*.docker_image.basic_auth *compute.DockerBasicAuth ALL
resources.clusters.*.docker_image.basic_auth.password string ALL
resources.clusters.*.docker_image.basic_auth.username string ALL
resources.clusters.*.docker_image.url string ALL
resources.clusters.*.driver *compute.SparkNode REMOTE
resources.clusters.*.driver.host_private_ip string REMOTE
resources.clusters.*.driver.instance_id string REMOTE
resources.clusters.*.driver.node_aws_attributes *compute.SparkNodeAwsAttributes REMOTE
resources.clusters.*.driver.node_aws_attributes.is_spot bool REMOTE
resources.clusters.*.driver.node_id string REMOTE
resources.clusters.*.driver.private_ip string REMOTE
resources.clusters.*.driver.public_dns string REMOTE
resources.clusters.*.driver.start_timestamp int64 REMOTE
resources.clusters.*.driver_instance_pool_id string ALL
resources.clusters.*.driver_node_type_flexibility *compute.NodeTypeFlexibility ALL
resources.clusters.*.driver_node_type_flexibility.alternate_node_type_ids []string ALL
resources.clusters.*.driver_node_type_flexibility.alternate_node_type_ids[*] string ALL
resources.clusters.*.driver_node_type_id string ALL
resources.clusters.*.enable_elastic_disk bool ALL
resources.clusters.*.enable_local_disk_encryption bool ALL
resources.clusters.*.executors []compute.SparkNode REMOTE
resources.clusters.*.executors[*] compute.SparkNode REMOTE
resources.clusters.*.executors[*].host_private_ip string REMOTE
resources.clusters.*.executors[*].instance_id string REMOTE
resources.clusters.*.executors[*].node_aws_attributes *compute.SparkNodeAwsAttributes REMOTE
resources.clusters.*.executors[*].node_aws_attributes.is_spot bool REMOTE
resources.clusters.*.executors[*].node_id string REMOTE
resources.clusters.*.executors[*].private_ip string REMOTE
resources.clusters.*.executors[*].public_dns string REMOTE
resources.clusters.*.executors[*].start_timestamp int64 REMOTE
resources.clusters.*.gcp_attributes *compute.GcpAttributes ALL
resources.clusters.*.gcp_attributes.availability compute.GcpAvailability ALL
resources.clusters.*.gcp_attributes.boot_disk_size int ALL
resources.clusters.*.gcp_attributes.first_on_demand int ALL
resources.clusters.*.gcp_attributes.google_service_account string ALL
resources.clusters.*.gcp_attributes.local_ssd_count int ALL
resources.clusters.*.gcp_attributes.use_preemptible_executors bool ALL
resources.clusters.*.gcp_attributes.zone_id string ALL
resources.clusters.*.id string INPUT
resources.clusters.*.init_scripts []compute.InitScriptInfo ALL
resources.clusters.*.init_scripts[*] compute.InitScriptInfo ALL
resources.clusters.*.init_scripts[*].abfss *compute.Adlsgen2Info ALL
resources.clusters.*.init_scripts[*].abfss.destination string ALL
resources.clusters.*.init_scripts[*].dbfs *compute.DbfsStorageInfo ALL
resources.clusters.*.init_scripts[*].dbfs.destination string ALL
resources.clusters.*.init_scripts[*].file *compute.LocalFileInfo ALL
resources.clusters.*.init_scripts[*].file.destination string ALL
resources.clusters.*.init_scripts[*].gcs *compute.GcsStorageInfo ALL
resources.clusters.*.init_scripts[*].gcs.destination string ALL
resources.clusters.*.init_scripts[*].s3 *compute.S3StorageInfo ALL
resources.clusters.*.init_scripts[*].s3.canned_acl string ALL
resources.clusters.*.init_scripts[*].s3.destination string ALL
resources.clusters.*.init_scripts[*].s3.enable_encryption bool ALL
resources.clusters.*.init_scripts[*].s3.encryption_type string ALL
resources.clusters.*.init_scripts[*].s3.endpoint string ALL
resources.clusters.*.init_scripts[*].s3.kms_key string ALL
resources.clusters.*.init_scripts[*].s3.region string ALL
resources.clusters.*.init_scripts[*].volumes *compute.VolumesStorageInfo ALL
resources.clusters.*.init_scripts[*].volumes.destination string ALL
resources.clusters.*.init_scripts[*].workspace *compute.WorkspaceStorageInfo ALL
resources.clusters.*.init_scripts[*].workspace.destination string ALL
resources.clusters.*.instance_pool_id string ALL
resources.clusters.*.is_single_node bool ALL
resources.clusters.*.jdbc_port int REMOTE
resources.clusters.*.kind compute.Kind ALL
resources.clusters.*.last_restarted_time int64 REMOTE
resources.clusters.*.last_state_loss_time int64 REMOTE
resources.clusters.*.lifecycle resources.Lifecycle INPUT
resources.clusters.*.lifecycle.prevent_destroy bool INPUT
resources.clusters.*.modified_status string INPUT
resources.clusters.*.node_type_id string ALL
resources.clusters.*.num_workers int ALL
resources.clusters.*.policy_id string ALL
resources.clusters.*.remote_disk_throughput int ALL
resources.clusters.*.runtime_engine compute.RuntimeEngine ALL
resources.clusters.*.single_user_name string ALL
resources.clusters.*.spark_conf map[string]string ALL
resources.clusters.*.spark_conf.* string ALL
resources.clusters.*.spark_context_id int64 REMOTE
resources.clusters.*.spark_env_vars map[string]string ALL
resources.clusters.*.spark_env_vars.* string ALL
resources.clusters.*.spark_version string ALL
resources.clusters.*.spec *compute.ClusterSpec REMOTE
resources.clusters.*.spec.apply_policy_default_values bool REMOTE
resources.clusters.*.spec.autoscale *compute.AutoScale REMOTE
resources.clusters.*.spec.autoscale.max_workers int REMOTE
resources.clusters.*.spec.autoscale.min_workers int REMOTE
resources.clusters.*.spec.autotermination_minutes int REMOTE
resources.clusters.*.spec.aws_attributes *compute.AwsAttributes REMOTE
resources.clusters.*.spec.aws_attributes.availability compute.AwsAvailability REMOTE
resources.clusters.*.spec.aws_attributes.ebs_volume_count int REMOTE
resources.clusters.*.spec.aws_attributes.ebs_volume_iops int REMOTE
resources.clusters.*.spec.aws_attributes.ebs_volume_size int REMOTE
resources.clusters.*.spec.aws_attributes.ebs_volume_throughput int REMOTE
resources.clusters.*.spec.aws_attributes.ebs_volume_type compute.EbsVolumeType REMOTE
resources.clusters.*.spec.aws_attributes.first_on_demand int REMOTE
resources.clusters.*.spec.aws_attributes.instance_profile_arn string REMOTE
resources.clusters.*.spec.aws_attributes.spot_bid_price_percent int REMOTE
resources.clusters.*.spec.aws_attributes.zone_id string REMOTE
resources.clusters.*.spec.azure_attributes *compute.AzureAttributes REMOTE
resources.clusters.*.spec.azure_attributes.availability compute.AzureAvailability REMOTE
resources.clusters.*.spec.azure_attributes.first_on_demand int REMOTE
resources.clusters.*.spec.azure_attributes.log_analytics_info *compute.LogAnalyticsInfo REMOTE
resources.clusters.*.spec.azure_attributes.log_analytics_info.log_analytics_primary_key string REMOTE
resources.clusters.*.spec.azure_attributes.log_analytics_info.log_analytics_workspace_id string REMOTE
resources.clusters.*.spec.azure_attributes.spot_bid_max_price float64 REMOTE
resources.clusters.*.spec.cluster_log_conf *compute.ClusterLogConf REMOTE
resources.clusters.*.spec.cluster_log_conf.dbfs *compute.DbfsStorageInfo REMOTE
resources.clusters.*.spec.cluster_log_conf.dbfs.destination string REMOTE
resources.clusters.*.spec.cluster_log_conf.s3 *compute.S3StorageInfo REMOTE
resources.clusters.*.spec.cluster_log_conf.s3.canned_acl string REMOTE
resources.clusters.*.spec.cluster_log_conf.s3.destination string REMOTE
resources.clusters.*.spec.cluster_log_conf.s3.enable_encryption bool REMOTE
resources.clusters.*.spec.cluster_log_conf.s3.encryption_type string REMOTE
resources.clusters.*.spec.cluster_log_conf.s3.endpoint string REMOTE
resources.clusters.*.spec.cluster_log_conf.s3.kms_key string REMOTE
resources.clusters.*.spec.cluster_log_conf.s3.region string REMOTE
resources.clusters.*.spec.cluster_log_conf.volumes *compute.VolumesStorageInfo REMOTE
resources.clusters.*.spec.cluster_log_conf.volumes.destination string REMOTE
resources.clusters.*.spec.cluster_name string REMOTE
resources.clusters.*.spec.custom_tags map[string]string REMOTE
resources.clusters.*.spec.custom_tags.* string REMOTE
resources.clusters.*.spec.data_security_mode compute.DataSecurityMode REMOTE
resources.clusters.*.spec.docker_image *compute.DockerImage REMOTE
resources.clusters.*.spec.docker_image.basic_auth *compute.DockerBasicAuth REMOTE
resources.clusters.*.spec.docker_image.basic_auth.password string REMOTE
resources.clusters.*.spec.docker_image.basic_auth.username string REMOTE
resources.clusters.*.spec.docker_image.url string REMOTE
resources.clusters.*.spec.driver_instance_pool_id string REMOTE
resources.clusters.*.spec.driver_node_type_flexibility *compute.NodeTypeFlexibility REMOTE
resources.clusters.*.spec.driver_node_type_flexibility.alternate_node_type_ids []string REMOTE
resources.clusters.*.spec.driver_node_type_flexibility.alternate_node_type_ids[*] string REMOTE
resources.clusters.*.spec.driver_node_type_id string REMOTE
resources.clusters.*.spec.enable_elastic_disk bool REMOTE
resources.clusters.*.spec.enable_local_disk_encryption bool REMOTE
resources.clusters.*.spec.gcp_attributes *compute.GcpAttributes REMOTE
resources.clusters.*.spec.gcp_attributes.availability compute.GcpAvailability REMOTE
resources.clusters.*.spec.gcp_attributes.boot_disk_size int REMOTE
resources.clusters.*.spec.gcp_attributes.first_on_demand int REMOTE
resources.clusters.*.spec.gcp_attributes.google_service_account string REMOTE
resources.clusters.*.spec.gcp_attributes.local_ssd_count int REMOTE
resources.clusters.*.spec.gcp_attributes.use_preemptible_executors bool REMOTE
resources.clusters.*.spec.gcp_attributes.zone_id string REMOTE
resources.clusters.*.spec.init_scripts []compute.InitScriptInfo REMOTE
resources.clusters.*.spec.init_scripts[*] compute.InitScriptInfo REMOTE
resources.clusters.*.spec.init_scripts[*].abfss *compute.Adlsgen2Info REMOTE
resources.clusters.*.spec.init_scripts[*].abfss.destination string REMOTE
resources.clusters.*.spec.init_scripts[*].dbfs *compute.DbfsStorageInfo REMOTE
resources.clusters.*.spec.init_scripts[*].dbfs.destination string REMOTE
resources.clusters.*.spec.init_scripts[*].file *compute.LocalFileInfo REMOTE
resources.clusters.*.spec.init_scripts[*].file.destination string REMOTE
resources.clusters.*.spec.init_scripts[*].gcs *compute.GcsStorageInfo REMOTE
resources.clusters.*.spec.init_scripts[*].gcs.destination string REMOTE
resources.clusters.*.spec.init_scripts[*].s3 *compute.S3StorageInfo REMOTE
resources.clusters.*.spec.init_scripts[*].s3.canned_acl string REMOTE
resources.clusters.*.spec.init_scripts[*].s3.destination string REMOTE
resources.clusters.*.spec.init_scripts[*].s3.enable_encryption bool REMOTE
resources.clusters.*.spec.init_scripts[*].s3.encryption_type string REMOTE
resources.clusters.*.spec.init_scripts[*].s3.endpoint string REMOTE
resources.clusters.*.spec.init_scripts[*].s3.kms_key string REMOTE
resources.clusters.*.spec.init_scripts[*].s3.region string REMOTE
resources.clusters.*.spec.init_scripts[*].volumes *compute.VolumesStorageInfo REMOTE
resources.clusters.*.spec.init_scripts[*].volumes.destination string REMOTE
resources.clusters.*.spec.init_scripts[*].workspace *compute.WorkspaceStorageInfo REMOTE
resources.clusters.*.spec.init_scripts[*].workspace.destination string REMOTE
resources.clusters.*.spec.instance_pool_id string REMOTE
resources.clusters.*.spec.is_single_node bool REMOTE
resources.clusters.*.spec.kind compute.Kind REMOTE
resources.clusters.*.spec.node_type_id string REMOTE
resources.clusters.*.spec.num_workers int REMOTE
resources.clusters.*.spec.policy_id string REMOTE
resources.clusters.*.spec.remote_disk_throughput int REMOTE
resources.clusters.*.spec.runtime_engine compute.RuntimeEngine REMOTE
resources.clusters.*.spec.single_user_name string REMOTE
resources.clusters.*.spec.spark_conf map[string]string REMOTE
resources.clusters.*.spec.spark_conf.* string REMOTE
resources.clusters.*.spec.spark_env_vars map[string]string REMOTE
resources.clusters.*.spec.spark_env_vars.* string REMOTE
resources.clusters.*.spec.spark_version string REMOTE
resources.clusters.*.spec.ssh_public_keys []string REMOTE
resources.clusters.*.spec.ssh_public_keys[*] string REMOTE
resources.clusters.*.spec.total_initial_remote_disk_size int REMOTE
resources.clusters.*.spec.use_ml_runtime bool REMOTE
resources.clusters.*.spec.worker_node_type_flexibility *compute.NodeTypeFlexibility REMOTE
resources.clusters.*.spec.worker_node_type_flexibility.alternate_node_type_ids []string REMOTE
resources.clusters.*.spec.worker_node_type_flexibility.alternate_node_type_ids[*] string REMOTE
resources.clusters.*.spec.workload_type *compute.WorkloadType REMOTE
resources.clusters.*.spec.workload_type.clients compute.ClientsTypes REMOTE
resources.clusters.*.spec.workload_type.clients.jobs bool REMOTE
resources.clusters.*.spec.workload_type.clients.notebooks bool REMOTE
resources.clusters.*.ssh_public_keys []string ALL
resources.clusters.*.ssh_public_keys[*] string ALL
resources.clusters.*.start_time int64 REMOTE
resources.clusters.*.state compute.State REMOTE
resources.clusters.*.state_message string REMOTE
resources.clusters.*.terminated_time int64 REMOTE
resources.clusters.*.termination_reason *compute.TerminationReason REMOTE
resources.clusters.*.termination_reason.code compute.TerminationReasonCode REMOTE
resources.clusters.*.termination_reason.parameters map[string]string REMOTE
resources.clusters.*.termination_reason.parameters.* string REMOTE
resources.clusters.*.termination_reason.type compute.TerminationReasonType REMOTE
resources.clusters.*.total_initial_remote_disk_size int ALL
resources.clusters.*.url string INPUT
resources.clusters.*.use_ml_runtime bool ALL
resources.clusters.*.worker_node_type_flexibility *compute.NodeTypeFlexibility ALL
resources.clusters.*.worker_node_type_flexibility.alternate_node_type_ids []string ALL
resources.clusters.*.worker_node_type_flexibility.alternate_node_type_ids[*] string ALL
resources.clusters.*.workload_type *compute.WorkloadType ALL
resources.clusters.*.workload_type.clients compute.ClientsTypes ALL
resources.clusters.*.workload_type.clients.jobs bool ALL
resources.clusters.*.workload_type.clients.notebooks bool ALL
resources.clusters.*.permissions.object_id string ALL
resources.clusters.*.permissions[*] dresources.StatePermission ALL
resources.clusters.*.permissions[*].group_name string ALL
resources.clusters.*.permissions[*].level iam.PermissionLevel ALL
resources.clusters.*.permissions[*].service_principal_name string ALL
resources.clusters.*.permissions[*].user_name string ALL
resources.dashboards.*.create_time string ALL
resources.dashboards.*.dashboard_id string ALL
resources.dashboards.*.dataset_catalog string ALL
resources.dashboards.*.dataset_schema string ALL
resources.dashboards.*.display_name string ALL
resources.dashboards.*.embed_credentials bool ALL
resources.dashboards.*.etag string ALL
resources.dashboards.*.file_path string INPUT
resources.dashboards.*.id string INPUT
resources.dashboards.*.lifecycle resources.Lifecycle INPUT
resources.dashboards.*.lifecycle.prevent_destroy bool INPUT
resources.dashboards.*.lifecycle_state dashboards.LifecycleState ALL
resources.dashboards.*.modified_status string INPUT
resources.dashboards.*.parent_path string ALL
resources.dashboards.*.path string ALL
resources.dashboards.*.published bool REMOTE STATE
resources.dashboards.*.serialized_dashboard any ALL
resources.dashboards.*.update_time string ALL
resources.dashboards.*.url string INPUT
resources.dashboards.*.warehouse_id string ALL
resources.dashboards.*.permissions.object_id string ALL
resources.dashboards.*.permissions[*] dresources.StatePermission ALL
resources.dashboards.*.permissions[*].group_name string ALL
resources.dashboards.*.permissions[*].level iam.PermissionLevel ALL
resources.dashboards.*.permissions[*].service_principal_name string ALL
resources.dashboards.*.permissions[*].user_name string ALL
resources.database_catalogs.*.create_database_if_not_exists bool ALL
resources.database_catalogs.*.database_instance_name string ALL
resources.database_catalogs.*.database_name string ALL
resources.database_catalogs.*.id string INPUT
resources.database_catalogs.*.lifecycle resources.Lifecycle INPUT
resources.database_catalogs.*.lifecycle.prevent_destroy bool INPUT
resources.database_catalogs.*.modified_status string INPUT
resources.database_catalogs.*.name string ALL
resources.database_catalogs.*.uid string ALL
resources.database_catalogs.*.url string INPUT
resources.database_instances.*.capacity string ALL
resources.database_instances.*.child_instance_refs []database.DatabaseInstanceRef ALL
resources.database_instances.*.child_instance_refs[*] database.DatabaseInstanceRef ALL
resources.database_instances.*.child_instance_refs[*].branch_time string ALL
resources.database_instances.*.child_instance_refs[*].effective_lsn string ALL
resources.database_instances.*.child_instance_refs[*].lsn string ALL
resources.database_instances.*.child_instance_refs[*].name string ALL
resources.database_instances.*.child_instance_refs[*].uid string ALL
resources.database_instances.*.creation_time string ALL
resources.database_instances.*.creator string ALL
resources.database_instances.*.custom_tags []database.CustomTag ALL
resources.database_instances.*.custom_tags[*] database.CustomTag ALL
resources.database_instances.*.custom_tags[*].key string ALL
resources.database_instances.*.custom_tags[*].value string ALL
resources.database_instances.*.effective_capacity string ALL
resources.database_instances.*.effective_custom_tags []database.CustomTag ALL
resources.database_instances.*.effective_custom_tags[*] database.CustomTag ALL
resources.database_instances.*.effective_custom_tags[*].key string ALL
resources.database_instances.*.effective_custom_tags[*].value string ALL
resources.database_instances.*.effective_enable_pg_native_login bool ALL
resources.database_instances.*.effective_enable_readable_secondaries bool ALL
resources.database_instances.*.effective_node_count int ALL
resources.database_instances.*.effective_retention_window_in_days int ALL
resources.database_instances.*.effective_stopped bool ALL
resources.database_instances.*.effective_usage_policy_id string ALL
resources.database_instances.*.enable_pg_native_login bool ALL
resources.database_instances.*.enable_readable_secondaries bool ALL
resources.database_instances.*.id string INPUT
resources.database_instances.*.lifecycle resources.Lifecycle INPUT
resources.database_instances.*.lifecycle.prevent_destroy bool INPUT
resources.database_instances.*.modified_status string INPUT
resources.database_instances.*.name string ALL
resources.database_instances.*.node_count int ALL
resources.database_instances.*.parent_instance_ref *database.DatabaseInstanceRef ALL
resources.database_instances.*.parent_instance_ref.branch_time string ALL
resources.database_instances.*.parent_instance_ref.effective_lsn string ALL
resources.database_instances.*.parent_instance_ref.lsn string ALL
resources.database_instances.*.parent_instance_ref.name string ALL
resources.database_instances.*.parent_instance_ref.uid string ALL
resources.database_instances.*.pg_version string ALL
resources.database_instances.*.read_only_dns string ALL
resources.database_instances.*.read_write_dns string ALL
resources.database_instances.*.retention_window_in_days int ALL
resources.database_instances.*.state database.DatabaseInstanceState ALL
resources.database_instances.*.stopped bool ALL
resources.database_instances.*.uid string ALL
resources.database_instances.*.url string INPUT
resources.database_instances.*.usage_policy_id string ALL
resources.database_instances.*.permissions.object_id string ALL
resources.database_instances.*.permissions[*] dresources.StatePermission ALL
resources.database_instances.*.permissions[*].group_name string ALL
resources.database_instances.*.permissions[*].level iam.PermissionLevel ALL
resources.database_instances.*.permissions[*].service_principal_name string ALL
resources.database_instances.*.permissions[*].user_name string ALL
resources.experiments.*.artifact_location string ALL
resources.experiments.*.creation_time int64 REMOTE
resources.experiments.*.experiment_id string REMOTE
resources.experiments.*.id string INPUT
resources.experiments.*.last_update_time int64 REMOTE
resources.experiments.*.lifecycle resources.Lifecycle INPUT
resources.experiments.*.lifecycle.prevent_destroy bool INPUT
resources.experiments.*.lifecycle_stage string REMOTE
resources.experiments.*.modified_status string INPUT
resources.experiments.*.name string ALL
resources.experiments.*.tags []ml.ExperimentTag ALL
resources.experiments.*.tags[*] ml.ExperimentTag ALL
resources.experiments.*.tags[*].key string ALL
resources.experiments.*.tags[*].value string ALL
resources.experiments.*.url string INPUT
resources.experiments.*.permissions.object_id string ALL
resources.experiments.*.permissions[*] dresources.StatePermission ALL
resources.experiments.*.permissions[*].group_name string ALL
resources.experiments.*.permissions[*].level iam.PermissionLevel ALL
resources.experiments.*.permissions[*].service_principal_name string ALL
resources.experiments.*.permissions[*].user_name string ALL
resources.external_locations.*.browse_only bool REMOTE
resources.external_locations.*.comment string ALL
resources.external_locations.*.created_at int64 REMOTE
resources.external_locations.*.created_by string REMOTE
resources.external_locations.*.credential_id string REMOTE
resources.external_locations.*.credential_name string ALL
resources.external_locations.*.effective_enable_file_events bool ALL
resources.external_locations.*.enable_file_events bool ALL
resources.external_locations.*.encryption_details *catalog.EncryptionDetails ALL
resources.external_locations.*.encryption_details.sse_encryption_details *catalog.SseEncryptionDetails ALL
resources.external_locations.*.encryption_details.sse_encryption_details.algorithm catalog.SseEncryptionDetailsAlgorithm ALL
resources.external_locations.*.encryption_details.sse_encryption_details.aws_kms_key_arn string ALL
resources.external_locations.*.fallback bool ALL
resources.external_locations.*.file_event_queue *catalog.FileEventQueue ALL
resources.external_locations.*.file_event_queue.managed_aqs *catalog.AzureQueueStorage ALL
resources.external_locations.*.file_event_queue.managed_aqs.managed_resource_id string ALL
resources.external_locations.*.file_event_queue.managed_aqs.queue_url string ALL
resources.external_locations.*.file_event_queue.managed_aqs.resource_group string ALL
resources.external_locations.*.file_event_queue.managed_aqs.subscription_id string ALL
resources.external_locations.*.file_event_queue.managed_pubsub *catalog.GcpPubsub ALL
resources.external_locations.*.file_event_queue.managed_pubsub.managed_resource_id string ALL
resources.external_locations.*.file_event_queue.managed_pubsub.subscription_name string ALL
resources.external_locations.*.file_event_queue.managed_sqs *catalog.AwsSqsQueue ALL
resources.external_locations.*.file_event_queue.managed_sqs.managed_resource_id string ALL
resources.external_locations.*.file_event_queue.managed_sqs.queue_url string ALL
resources.external_locations.*.file_event_queue.provided_aqs *catalog.AzureQueueStorage ALL
resources.external_locations.*.file_event_queue.provided_aqs.managed_resource_id string ALL
resources.external_locations.*.file_event_queue.provided_aqs.queue_url string ALL
resources.external_locations.*.file_event_queue.provided_aqs.resource_group string ALL
resources.external_locations.*.file_event_queue.provided_aqs.subscription_id string ALL
resources.external_locations.*.file_event_queue.provided_pubsub *catalog.GcpPubsub ALL
resources.external_locations.*.file_event_queue.provided_pubsub.managed_resource_id string ALL
resources.external_locations.*.file_event_queue.provided_pubsub.subscription_name string ALL
resources.external_locations.*.file_event_queue.provided_sqs *catalog.AwsSqsQueue ALL
resources.external_locations.*.file_event_queue.provided_sqs.managed_resource_id string ALL
resources.external_locations.*.file_event_queue.provided_sqs.queue_url string ALL
resources.external_locations.*.id string INPUT
resources.external_locations.*.isolation_mode catalog.IsolationMode REMOTE
resources.external_locations.*.lifecycle resources.Lifecycle INPUT
resources.external_locations.*.lifecycle.prevent_destroy bool INPUT
resources.external_locations.*.metastore_id string REMOTE
resources.external_locations.*.modified_status string INPUT
resources.external_locations.*.name string ALL
resources.external_locations.*.owner string REMOTE
resources.external_locations.*.read_only bool ALL
resources.external_locations.*.skip_validation bool INPUT STATE
resources.external_locations.*.updated_at int64 REMOTE
resources.external_locations.*.updated_by string REMOTE
resources.external_locations.*.url string ALL
resources.external_locations.*.grants.full_name string ALL
resources.external_locations.*.grants.securable_type string ALL
resources.external_locations.*.grants[*] catalog.PrivilegeAssignment ALL
resources.external_locations.*.grants[*].principal string ALL
resources.external_locations.*.grants[*].privileges []catalog.Privilege ALL
resources.external_locations.*.grants[*].privileges[*] catalog.Privilege ALL
resources.jobs.*.budget_policy_id string ALL
resources.jobs.*.continuous *jobs.Continuous ALL
resources.jobs.*.continuous.pause_status jobs.PauseStatus ALL
resources.jobs.*.continuous.task_retry_mode jobs.TaskRetryMode ALL
resources.jobs.*.created_time int64 REMOTE
resources.jobs.*.creator_user_name string REMOTE
resources.jobs.*.deployment *jobs.JobDeployment ALL
resources.jobs.*.deployment.kind jobs.JobDeploymentKind ALL
resources.jobs.*.deployment.metadata_file_path string ALL
resources.jobs.*.description string ALL
resources.jobs.*.edit_mode jobs.JobEditMode ALL
resources.jobs.*.effective_budget_policy_id string REMOTE
resources.jobs.*.effective_usage_policy_id string REMOTE
resources.jobs.*.email_notifications *jobs.JobEmailNotifications ALL
resources.jobs.*.email_notifications.no_alert_for_skipped_runs bool ALL
resources.jobs.*.email_notifications.on_duration_warning_threshold_exceeded []string ALL
resources.jobs.*.email_notifications.on_duration_warning_threshold_exceeded[*] string ALL
resources.jobs.*.email_notifications.on_failure []string ALL
resources.jobs.*.email_notifications.on_failure[*] string ALL
resources.jobs.*.email_notifications.on_start []string ALL
resources.jobs.*.email_notifications.on_start[*] string ALL
resources.jobs.*.email_notifications.on_streaming_backlog_exceeded []string ALL
resources.jobs.*.email_notifications.on_streaming_backlog_exceeded[*] string ALL
resources.jobs.*.email_notifications.on_success []string ALL
resources.jobs.*.email_notifications.on_success[*] string ALL
resources.jobs.*.environments []jobs.JobEnvironment ALL
resources.jobs.*.environments[*] jobs.JobEnvironment ALL
resources.jobs.*.environments[*].environment_key string ALL
resources.jobs.*.environments[*].spec *compute.Environment ALL
resources.jobs.*.environments[*].spec.base_environment string ALL
resources.jobs.*.environments[*].spec.client string ALL
resources.jobs.*.environments[*].spec.dependencies []string ALL
resources.jobs.*.environments[*].spec.dependencies[*] string ALL
resources.jobs.*.environments[*].spec.environment_version string ALL
resources.jobs.*.environments[*].spec.java_dependencies []string ALL
resources.jobs.*.environments[*].spec.java_dependencies[*] string ALL
resources.jobs.*.format jobs.Format ALL
resources.jobs.*.git_source *jobs.GitSource ALL
resources.jobs.*.git_source.git_branch string ALL
resources.jobs.*.git_source.git_commit string ALL
resources.jobs.*.git_source.git_provider jobs.GitProvider ALL
resources.jobs.*.git_source.git_snapshot *jobs.GitSnapshot ALL
resources.jobs.*.git_source.git_snapshot.used_commit string ALL
resources.jobs.*.git_source.git_tag string ALL
resources.jobs.*.git_source.git_url string ALL
resources.jobs.*.git_source.job_source *jobs.JobSource ALL
resources.jobs.*.git_source.job_source.dirty_state jobs.JobSourceDirtyState ALL
resources.jobs.*.git_source.job_source.import_from_git_branch string ALL
resources.jobs.*.git_source.job_source.job_config_path string ALL
resources.jobs.*.git_source.sparse_checkout *jobs.SparseCheckout ALL
resources.jobs.*.git_source.sparse_checkout.patterns []string ALL
resources.jobs.*.git_source.sparse_checkout.patterns[*] string ALL
resources.jobs.*.health *jobs.JobsHealthRules ALL
resources.jobs.*.health.rules []jobs.JobsHealthRule ALL
resources.jobs.*.health.rules[*] jobs.JobsHealthRule ALL
resources.jobs.*.health.rules[*].metric jobs.JobsHealthMetric ALL
resources.jobs.*.health.rules[*].op jobs.JobsHealthOperator ALL
resources.jobs.*.health.rules[*].value int64 ALL
resources.jobs.*.id string INPUT
resources.jobs.*.job_clusters []jobs.JobCluster ALL
resources.jobs.*.job_clusters[*] jobs.JobCluster ALL
resources.jobs.*.job_clusters[*].job_cluster_key string ALL
resources.jobs.*.job_clusters[*].new_cluster compute.ClusterSpec ALL
resources.jobs.*.job_clusters[*].new_cluster.apply_policy_default_values bool ALL
resources.jobs.*.job_clusters[*].new_cluster.autoscale *compute.AutoScale ALL
resources.jobs.*.job_clusters[*].new_cluster.autoscale.max_workers int ALL
resources.jobs.*.job_clusters[*].new_cluster.autoscale.min_workers int ALL
resources.jobs.*.job_clusters[*].new_cluster.autotermination_minutes int ALL
resources.jobs.*.job_clusters[*].new_cluster.aws_attributes *compute.AwsAttributes ALL
resources.jobs.*.job_clusters[*].new_cluster.aws_attributes.availability compute.AwsAvailability ALL
resources.jobs.*.job_clusters[*].new_cluster.aws_attributes.ebs_volume_count int ALL
resources.jobs.*.job_clusters[*].new_cluster.aws_attributes.ebs_volume_iops int ALL
resources.jobs.*.job_clusters[*].new_cluster.aws_attributes.ebs_volume_size int ALL
resources.jobs.*.job_clusters[*].new_cluster.aws_attributes.ebs_volume_throughput int ALL
resources.jobs.*.job_clusters[*].new_cluster.aws_attributes.ebs_volume_type compute.EbsVolumeType ALL
resources.jobs.*.job_clusters[*].new_cluster.aws_attributes.first_on_demand int ALL
resources.jobs.*.job_clusters[*].new_cluster.aws_attributes.instance_profile_arn string ALL
resources.jobs.*.job_clusters[*].new_cluster.aws_attributes.spot_bid_price_percent int ALL
resources.jobs.*.job_clusters[*].new_cluster.aws_attributes.zone_id string ALL
resources.jobs.*.job_clusters[*].new_cluster.azure_attributes *compute.AzureAttributes ALL
resources.jobs.*.job_clusters[*].new_cluster.azure_attributes.availability compute.AzureAvailability ALL
resources.jobs.*.job_clusters[*].new_cluster.azure_attributes.first_on_demand int ALL
resources.jobs.*.job_clusters[*].new_cluster.azure_attributes.log_analytics_info *compute.LogAnalyticsInfo ALL
resources.jobs.*.job_clusters[*].new_cluster.azure_attributes.log_analytics_info.log_analytics_primary_key string ALL
resources.jobs.*.job_clusters[*].new_cluster.azure_attributes.log_analytics_info.log_analytics_workspace_id string ALL
resources.jobs.*.job_clusters[*].new_cluster.azure_attributes.spot_bid_max_price float64 ALL
resources.jobs.*.job_clusters[*].new_cluster.cluster_log_conf *compute.ClusterLogConf ALL
resources.jobs.*.job_clusters[*].new_cluster.cluster_log_conf.dbfs *compute.DbfsStorageInfo ALL
resources.jobs.*.job_clusters[*].new_cluster.cluster_log_conf.dbfs.destination string ALL
resources.jobs.*.job_clusters[*].new_cluster.cluster_log_conf.s3 *compute.S3StorageInfo ALL
resources.jobs.*.job_clusters[*].new_cluster.cluster_log_conf.s3.canned_acl string ALL
resources.jobs.*.job_clusters[*].new_cluster.cluster_log_conf.s3.destination string ALL
resources.jobs.*.job_clusters[*].new_cluster.cluster_log_conf.s3.enable_encryption bool ALL
resources.jobs.*.job_clusters[*].new_cluster.cluster_log_conf.s3.encryption_type string ALL
resources.jobs.*.job_clusters[*].new_cluster.cluster_log_conf.s3.endpoint string ALL
resources.jobs.*.job_clusters[*].new_cluster.cluster_log_conf.s3.kms_key string ALL
resources.jobs.*.job_clusters[*].new_cluster.cluster_log_conf.s3.region string ALL
resources.jobs.*.job_clusters[*].new_cluster.cluster_log_conf.volumes *compute.VolumesStorageInfo ALL
resources.jobs.*.job_clusters[*].new_cluster.cluster_log_conf.volumes.destination string ALL
resources.jobs.*.job_clusters[*].new_cluster.cluster_name string ALL
resources.jobs.*.job_clusters[*].new_cluster.custom_tags map[string]string ALL
resources.jobs.*.job_clusters[*].new_cluster.custom_tags.* string ALL
resources.jobs.*.job_clusters[*].new_cluster.data_security_mode compute.DataSecurityMode ALL
resources.jobs.*.job_clusters[*].new_cluster.docker_image *compute.DockerImage ALL
resources.jobs.*.job_clusters[*].new_cluster.docker_image.basic_auth *compute.DockerBasicAuth ALL
resources.jobs.*.job_clusters[*].new_cluster.docker_image.basic_auth.password string ALL
resources.jobs.*.job_clusters[*].new_cluster.docker_image.basic_auth.username string ALL
resources.jobs.*.job_clusters[*].new_cluster.docker_image.url string ALL
resources.jobs.*.job_clusters[*].new_cluster.driver_instance_pool_id string ALL
resources.jobs.*.job_clusters[*].new_cluster.driver_node_type_flexibility *compute.NodeTypeFlexibility ALL
resources.jobs.*.job_clusters[*].new_cluster.driver_node_type_flexibility.alternate_node_type_ids []string ALL
resources.jobs.*.job_clusters[*].new_cluster.driver_node_type_flexibility.alternate_node_type_ids[*] string ALL
resources.jobs.*.job_clusters[*].new_cluster.driver_node_type_id string ALL
resources.jobs.*.job_clusters[*].new_cluster.enable_elastic_disk bool ALL
resources.jobs.*.job_clusters[*].new_cluster.enable_local_disk_encryption bool ALL
resources.jobs.*.job_clusters[*].new_cluster.gcp_attributes *compute.GcpAttributes ALL
resources.jobs.*.job_clusters[*].new_cluster.gcp_attributes.availability compute.GcpAvailability ALL
resources.jobs.*.job_clusters[*].new_cluster.gcp_attributes.boot_disk_size int ALL
resources.jobs.*.job_clusters[*].new_cluster.gcp_attributes.first_on_demand int ALL
resources.jobs.*.job_clusters[*].new_cluster.gcp_attributes.google_service_account string ALL
resources.jobs.*.job_clusters[*].new_cluster.gcp_attributes.local_ssd_count int ALL
resources.jobs.*.job_clusters[*].new_cluster.gcp_attributes.use_preemptible_executors bool ALL
resources.jobs.*.job_clusters[*].new_cluster.gcp_attributes.zone_id string ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts []compute.InitScriptInfo ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*] compute.InitScriptInfo ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].abfss *compute.Adlsgen2Info ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].abfss.destination string ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].dbfs *compute.DbfsStorageInfo ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].dbfs.destination string ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].file *compute.LocalFileInfo ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].file.destination string ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].gcs *compute.GcsStorageInfo ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].gcs.destination string ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].s3 *compute.S3StorageInfo ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].s3.canned_acl string ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].s3.destination string ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].s3.enable_encryption bool ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].s3.encryption_type string ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].s3.endpoint string ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].s3.kms_key string ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].s3.region string ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].volumes *compute.VolumesStorageInfo ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].volumes.destination string ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].workspace *compute.WorkspaceStorageInfo ALL
resources.jobs.*.job_clusters[*].new_cluster.init_scripts[*].workspace.destination string ALL
resources.jobs.*.job_clusters[*].new_cluster.instance_pool_id string ALL
resources.jobs.*.job_clusters[*].new_cluster.is_single_node bool ALL
resources.jobs.*.job_clusters[*].new_cluster.kind compute.Kind ALL
resources.jobs.*.job_clusters[*].new_cluster.node_type_id string ALL
resources.jobs.*.job_clusters[*].new_cluster.num_workers int ALL
resources.jobs.*.job_clusters[*].new_cluster.policy_id string ALL
resources.jobs.*.job_clusters[*].new_cluster.remote_disk_throughput int ALL
resources.jobs.*.job_clusters[*].new_cluster.runtime_engine compute.RuntimeEngine ALL
resources.jobs.*.job_clusters[*].new_cluster.single_user_name string ALL
resources.jobs.*.job_clusters[*].new_cluster.spark_conf map[string]string ALL
resources.jobs.*.job_clusters[*].new_cluster.spark_conf.* string ALL
resources.jobs.*.job_clusters[*].new_cluster.spark_env_vars map[string]string ALL
resources.jobs.*.job_clusters[*].new_cluster.spark_env_vars.* string ALL
resources.jobs.*.job_clusters[*].new_cluster.spark_version string ALL
resources.jobs.*.job_clusters[*].new_cluster.ssh_public_keys []string ALL
resources.jobs.*.job_clusters[*].new_cluster.ssh_public_keys[*] string ALL
resources.jobs.*.job_clusters[*].new_cluster.total_initial_remote_disk_size int ALL
resources.jobs.*.job_clusters[*].new_cluster.use_ml_runtime bool ALL
resources.jobs.*.job_clusters[*].new_cluster.worker_node_type_flexibility *compute.NodeTypeFlexibility ALL
resources.jobs.*.job_clusters[*].new_cluster.worker_node_type_flexibility.alternate_node_type_ids []string ALL
resources.jobs.*.job_clusters[*].new_cluster.worker_node_type_flexibility.alternate_node_type_ids[*] string ALL
resources.jobs.*.job_clusters[*].new_cluster.workload_type *compute.WorkloadType ALL
resources.jobs.*.job_clusters[*].new_cluster.workload_type.clients compute.ClientsTypes ALL
resources.jobs.*.job_clusters[*].new_cluster.workload_type.clients.jobs bool ALL
resources.jobs.*.job_clusters[*].new_cluster.workload_type.clients.notebooks bool ALL
resources.jobs.*.job_id int64 REMOTE
resources.jobs.*.lifecycle resources.Lifecycle INPUT
resources.jobs.*.lifecycle.prevent_destroy bool INPUT
resources.jobs.*.max_concurrent_runs int ALL
resources.jobs.*.modified_status string INPUT
resources.jobs.*.name string ALL
resources.jobs.*.notification_settings *jobs.JobNotificationSettings ALL
resources.jobs.*.notification_settings.no_alert_for_canceled_runs bool ALL
resources.jobs.*.notification_settings.no_alert_for_skipped_runs bool ALL
resources.jobs.*.parameters []jobs.JobParameterDefinition ALL
resources.jobs.*.parameters[*] jobs.JobParameterDefinition ALL
resources.jobs.*.parameters[*].default string ALL
resources.jobs.*.parameters[*].name string ALL
resources.jobs.*.performance_target jobs.PerformanceTarget ALL
resources.jobs.*.queue *jobs.QueueSettings ALL
resources.jobs.*.queue.enabled bool ALL
resources.jobs.*.run_as *jobs.JobRunAs ALL
resources.jobs.*.run_as.group_name string ALL
resources.jobs.*.run_as.service_principal_name string ALL
resources.jobs.*.run_as.user_name string ALL
resources.jobs.*.run_as_user_name string REMOTE
resources.jobs.*.schedule *jobs.CronSchedule ALL
resources.jobs.*.schedule.pause_status jobs.PauseStatus ALL
resources.jobs.*.schedule.quartz_cron_expression string ALL
resources.jobs.*.schedule.timezone_id string ALL
resources.jobs.*.tags map[string]string ALL
resources.jobs.*.tags.* string ALL
resources.jobs.*.tasks []jobs.Task ALL
resources.jobs.*.tasks[*] jobs.Task ALL
resources.jobs.*.tasks[*].alert_task *jobs.AlertTask ALL
resources.jobs.*.tasks[*].alert_task.alert_id string ALL
resources.jobs.*.tasks[*].alert_task.subscribers []jobs.AlertTaskSubscriber ALL
resources.jobs.*.tasks[*].alert_task.subscribers[*] jobs.AlertTaskSubscriber ALL
resources.jobs.*.tasks[*].alert_task.subscribers[*].destination_id string ALL
resources.jobs.*.tasks[*].alert_task.subscribers[*].user_name string ALL
resources.jobs.*.tasks[*].alert_task.warehouse_id string ALL
resources.jobs.*.tasks[*].alert_task.workspace_path string ALL
resources.jobs.*.tasks[*].clean_rooms_notebook_task *jobs.CleanRoomsNotebookTask ALL
resources.jobs.*.tasks[*].clean_rooms_notebook_task.clean_room_name string ALL
resources.jobs.*.tasks[*].clean_rooms_notebook_task.etag string ALL
resources.jobs.*.tasks[*].clean_rooms_notebook_task.notebook_base_parameters map[string]string ALL
resources.jobs.*.tasks[*].clean_rooms_notebook_task.notebook_base_parameters.* string ALL
resources.jobs.*.tasks[*].clean_rooms_notebook_task.notebook_name string ALL
resources.jobs.*.tasks[*].compute *jobs.Compute ALL
resources.jobs.*.tasks[*].compute.hardware_accelerator compute.HardwareAcceleratorType ALL
resources.jobs.*.tasks[*].condition_task *jobs.ConditionTask ALL
resources.jobs.*.tasks[*].condition_task.left string ALL
resources.jobs.*.tasks[*].condition_task.op jobs.ConditionTaskOp ALL
resources.jobs.*.tasks[*].condition_task.right string ALL
resources.jobs.*.tasks[*].dashboard_task *jobs.DashboardTask ALL
resources.jobs.*.tasks[*].dashboard_task.dashboard_id string ALL
resources.jobs.*.tasks[*].dashboard_task.filters map[string]string ALL
resources.jobs.*.tasks[*].dashboard_task.filters.* string ALL
resources.jobs.*.tasks[*].dashboard_task.subscription *jobs.Subscription ALL
resources.jobs.*.tasks[*].dashboard_task.subscription.custom_subject string ALL
resources.jobs.*.tasks[*].dashboard_task.subscription.paused bool ALL
resources.jobs.*.tasks[*].dashboard_task.subscription.subscribers []jobs.SubscriptionSubscriber ALL
resources.jobs.*.tasks[*].dashboard_task.subscription.subscribers[*] jobs.SubscriptionSubscriber ALL
resources.jobs.*.tasks[*].dashboard_task.subscription.subscribers[*].destination_id string ALL
resources.jobs.*.tasks[*].dashboard_task.subscription.subscribers[*].user_name string ALL
resources.jobs.*.tasks[*].dashboard_task.warehouse_id string ALL
resources.jobs.*.tasks[*].dbt_cloud_task *jobs.DbtCloudTask ALL
resources.jobs.*.tasks[*].dbt_cloud_task.connection_resource_name string ALL
resources.jobs.*.tasks[*].dbt_cloud_task.dbt_cloud_job_id int64 ALL
resources.jobs.*.tasks[*].dbt_platform_task *jobs.DbtPlatformTask ALL
resources.jobs.*.tasks[*].dbt_platform_task.connection_resource_name string ALL
resources.jobs.*.tasks[*].dbt_platform_task.dbt_platform_job_id string ALL
resources.jobs.*.tasks[*].dbt_task *jobs.DbtTask ALL
resources.jobs.*.tasks[*].dbt_task.catalog string ALL
resources.jobs.*.tasks[*].dbt_task.commands []string ALL
resources.jobs.*.tasks[*].dbt_task.commands[*] string ALL
resources.jobs.*.tasks[*].dbt_task.profiles_directory string ALL
resources.jobs.*.tasks[*].dbt_task.project_directory string ALL
resources.jobs.*.tasks[*].dbt_task.schema string ALL
resources.jobs.*.tasks[*].dbt_task.source jobs.Source ALL
resources.jobs.*.tasks[*].dbt_task.warehouse_id string ALL
resources.jobs.*.tasks[*].depends_on []jobs.TaskDependency ALL
resources.jobs.*.tasks[*].depends_on[*] jobs.TaskDependency ALL
resources.jobs.*.tasks[*].depends_on[*].outcome string ALL
resources.jobs.*.tasks[*].depends_on[*].task_key string ALL
resources.jobs.*.tasks[*].description string ALL
resources.jobs.*.tasks[*].disable_auto_optimization bool ALL
resources.jobs.*.tasks[*].disabled bool ALL
resources.jobs.*.tasks[*].email_notifications *jobs.TaskEmailNotifications ALL
resources.jobs.*.tasks[*].email_notifications.no_alert_for_skipped_runs bool ALL
resources.jobs.*.tasks[*].email_notifications.on_duration_warning_threshold_exceeded []string ALL
resources.jobs.*.tasks[*].email_notifications.on_duration_warning_threshold_exceeded[*] string ALL
resources.jobs.*.tasks[*].email_notifications.on_failure []string ALL
resources.jobs.*.tasks[*].email_notifications.on_failure[*] string ALL
resources.jobs.*.tasks[*].email_notifications.on_start []string ALL
resources.jobs.*.tasks[*].email_notifications.on_start[*] string ALL
resources.jobs.*.tasks[*].email_notifications.on_streaming_backlog_exceeded []string ALL
resources.jobs.*.tasks[*].email_notifications.on_streaming_backlog_exceeded[*] string ALL
resources.jobs.*.tasks[*].email_notifications.on_success []string ALL
resources.jobs.*.tasks[*].email_notifications.on_success[*] string ALL
resources.jobs.*.tasks[*].environment_key string ALL
resources.jobs.*.tasks[*].existing_cluster_id string ALL
resources.jobs.*.tasks[*].for_each_task *jobs.ForEachTask ALL
resources.jobs.*.tasks[*].for_each_task.concurrency int ALL
resources.jobs.*.tasks[*].for_each_task.inputs string ALL
resources.jobs.*.tasks[*].for_each_task.task jobs.Task ALL
resources.jobs.*.tasks[*].for_each_task.task.alert_task *jobs.AlertTask ALL
resources.jobs.*.tasks[*].for_each_task.task.alert_task.alert_id string ALL
resources.jobs.*.tasks[*].for_each_task.task.alert_task.subscribers []jobs.AlertTaskSubscriber ALL
resources.jobs.*.tasks[*].for_each_task.task.alert_task.subscribers[*] jobs.AlertTaskSubscriber ALL
resources.jobs.*.tasks[*].for_each_task.task.alert_task.subscribers[*].destination_id string ALL
resources.jobs.*.tasks[*].for_each_task.task.alert_task.subscribers[*].user_name string ALL
resources.jobs.*.tasks[*].for_each_task.task.alert_task.warehouse_id string ALL
resources.jobs.*.tasks[*].for_each_task.task.alert_task.workspace_path string ALL
resources.jobs.*.tasks[*].for_each_task.task.clean_rooms_notebook_task *jobs.CleanRoomsNotebookTask ALL
resources.jobs.*.tasks[*].for_each_task.task.clean_rooms_notebook_task.clean_room_name string ALL
resources.jobs.*.tasks[*].for_each_task.task.clean_rooms_notebook_task.etag string ALL
resources.jobs.*.tasks[*].for_each_task.task.clean_rooms_notebook_task.notebook_base_parameters map[string]string ALL
resources.jobs.*.tasks[*].for_each_task.task.clean_rooms_notebook_task.notebook_base_parameters.* string ALL
resources.jobs.*.tasks[*].for_each_task.task.clean_rooms_notebook_task.notebook_name string ALL
resources.jobs.*.tasks[*].for_each_task.task.compute *jobs.Compute ALL
resources.jobs.*.tasks[*].for_each_task.task.compute.hardware_accelerator compute.HardwareAcceleratorType ALL
resources.jobs.*.tasks[*].for_each_task.task.condition_task *jobs.ConditionTask ALL
resources.jobs.*.tasks[*].for_each_task.task.condition_task.left string ALL
resources.jobs.*.tasks[*].for_each_task.task.condition_task.op jobs.ConditionTaskOp ALL
resources.jobs.*.tasks[*].for_each_task.task.condition_task.right string ALL
resources.jobs.*.tasks[*].for_each_task.task.dashboard_task *jobs.DashboardTask ALL
resources.jobs.*.tasks[*].for_each_task.task.dashboard_task.dashboard_id string ALL
resources.jobs.*.tasks[*].for_each_task.task.dashboard_task.filters map[string]string ALL
resources.jobs.*.tasks[*].for_each_task.task.dashboard_task.filters.* string ALL
resources.jobs.*.tasks[*].for_each_task.task.dashboard_task.subscription *jobs.Subscription ALL
resources.jobs.*.tasks[*].for_each_task.task.dashboard_task.subscription.custom_subject string ALL
resources.jobs.*.tasks[*].for_each_task.task.dashboard_task.subscription.paused bool ALL
resources.jobs.*.tasks[*].for_each_task.task.dashboard_task.subscription.subscribers []jobs.SubscriptionSubscriber ALL
resources.jobs.*.tasks[*].for_each_task.task.dashboard_task.subscription.subscribers[*] jobs.SubscriptionSubscriber ALL
resources.jobs.*.tasks[*].for_each_task.task.dashboard_task.subscription.subscribers[*].destination_id string ALL
resources.jobs.*.tasks[*].for_each_task.task.dashboard_task.subscription.subscribers[*].user_name string ALL
resources.jobs.*.tasks[*].for_each_task.task.dashboard_task.warehouse_id string ALL
resources.jobs.*.tasks[*].for_each_task.task.dbt_cloud_task *jobs.DbtCloudTask ALL
resources.jobs.*.tasks[*].for_each_task.task.dbt_cloud_task.connection_resource_name string ALL
resources.jobs.*.tasks[*].for_each_task.task.dbt_cloud_task.dbt_cloud_job_id int64 ALL
resources.jobs.*.tasks[*].for_each_task.task.dbt_platform_task *jobs.DbtPlatformTask ALL