Skip to main content

google_cloud_dataform_v1/model/
debug.rs

1// Copyright 2025 Google LLC
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
15// Code generated by sidekick. DO NOT EDIT.
16
17#[allow(unused_imports)]
18use super::*;
19
20impl std::fmt::Debug for super::DataEncryptionState {
21    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
22        let mut debug_struct = f.debug_struct("DataEncryptionState");
23        debug_struct.field("kms_key_version_name", &self.kms_key_version_name);
24        if !self._unknown_fields.is_empty() {
25            debug_struct.field("_unknown_fields", &self._unknown_fields);
26        }
27        debug_struct.finish()
28    }
29}
30
31impl std::fmt::Debug for super::Repository {
32    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
33        let mut debug_struct = f.debug_struct("Repository");
34        debug_struct.field("name", &self.name);
35        debug_struct.field("containing_folder", &self.containing_folder);
36        debug_struct.field("team_folder_name", &self.team_folder_name);
37        debug_struct.field("create_time", &self.create_time);
38        debug_struct.field("display_name", &self.display_name);
39        debug_struct.field("git_remote_settings", &self.git_remote_settings);
40        debug_struct.field(
41            "npmrc_environment_variables_secret_version",
42            &self.npmrc_environment_variables_secret_version,
43        );
44        debug_struct.field(
45            "workspace_compilation_overrides",
46            &self.workspace_compilation_overrides,
47        );
48        debug_struct.field("labels", &self.labels);
49        debug_struct.field(
50            "set_authenticated_user_admin",
51            &self.set_authenticated_user_admin,
52        );
53        debug_struct.field("service_account", &self.service_account);
54        debug_struct.field("kms_key_name", &self.kms_key_name);
55        debug_struct.field("data_encryption_state", &self.data_encryption_state);
56        debug_struct.field("internal_metadata", &self.internal_metadata);
57        if !self._unknown_fields.is_empty() {
58            debug_struct.field("_unknown_fields", &self._unknown_fields);
59        }
60        debug_struct.finish()
61    }
62}
63
64impl std::fmt::Debug for super::repository::GitRemoteSettings {
65    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
66        let mut debug_struct = f.debug_struct("GitRemoteSettings");
67        debug_struct.field("url", &self.url);
68        debug_struct.field("default_branch", &self.default_branch);
69        debug_struct.field(
70            "authentication_token_secret_version",
71            &self.authentication_token_secret_version,
72        );
73        debug_struct.field("ssh_authentication_config", &self.ssh_authentication_config);
74        debug_struct.field("token_status", &self.token_status);
75        if !self._unknown_fields.is_empty() {
76            debug_struct.field("_unknown_fields", &self._unknown_fields);
77        }
78        debug_struct.finish()
79    }
80}
81
82impl std::fmt::Debug for super::repository::git_remote_settings::SshAuthenticationConfig {
83    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
84        let mut debug_struct = f.debug_struct("SshAuthenticationConfig");
85        debug_struct.field(
86            "user_private_key_secret_version",
87            &self.user_private_key_secret_version,
88        );
89        debug_struct.field("host_public_key", &self.host_public_key);
90        if !self._unknown_fields.is_empty() {
91            debug_struct.field("_unknown_fields", &self._unknown_fields);
92        }
93        debug_struct.finish()
94    }
95}
96
97impl std::fmt::Debug for super::repository::WorkspaceCompilationOverrides {
98    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
99        let mut debug_struct = f.debug_struct("WorkspaceCompilationOverrides");
100        debug_struct.field("default_database", &self.default_database);
101        debug_struct.field("schema_suffix", &self.schema_suffix);
102        debug_struct.field("table_prefix", &self.table_prefix);
103        if !self._unknown_fields.is_empty() {
104            debug_struct.field("_unknown_fields", &self._unknown_fields);
105        }
106        debug_struct.finish()
107    }
108}
109
110impl std::fmt::Debug for super::PrivateResourceMetadata {
111    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
112        let mut debug_struct = f.debug_struct("PrivateResourceMetadata");
113        debug_struct.field("user_scoped", &self.user_scoped);
114        if !self._unknown_fields.is_empty() {
115            debug_struct.field("_unknown_fields", &self._unknown_fields);
116        }
117        debug_struct.finish()
118    }
119}
120
121impl std::fmt::Debug for super::ListRepositoriesRequest {
122    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
123        let mut debug_struct = f.debug_struct("ListRepositoriesRequest");
124        debug_struct.field("parent", &self.parent);
125        debug_struct.field("page_size", &self.page_size);
126        debug_struct.field("page_token", &self.page_token);
127        debug_struct.field("order_by", &self.order_by);
128        debug_struct.field("filter", &self.filter);
129        if !self._unknown_fields.is_empty() {
130            debug_struct.field("_unknown_fields", &self._unknown_fields);
131        }
132        debug_struct.finish()
133    }
134}
135
136impl std::fmt::Debug for super::ListRepositoriesResponse {
137    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
138        let mut debug_struct = f.debug_struct("ListRepositoriesResponse");
139        debug_struct.field("repositories", &self.repositories);
140        debug_struct.field("next_page_token", &self.next_page_token);
141        debug_struct.field("unreachable", &self.unreachable);
142        if !self._unknown_fields.is_empty() {
143            debug_struct.field("_unknown_fields", &self._unknown_fields);
144        }
145        debug_struct.finish()
146    }
147}
148
149impl std::fmt::Debug for super::MoveRepositoryRequest {
150    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
151        let mut debug_struct = f.debug_struct("MoveRepositoryRequest");
152        debug_struct.field("name", &self.name);
153        debug_struct.field(
154            "destination_containing_folder",
155            &self.destination_containing_folder,
156        );
157        if !self._unknown_fields.is_empty() {
158            debug_struct.field("_unknown_fields", &self._unknown_fields);
159        }
160        debug_struct.finish()
161    }
162}
163
164impl std::fmt::Debug for super::GetRepositoryRequest {
165    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
166        let mut debug_struct = f.debug_struct("GetRepositoryRequest");
167        debug_struct.field("name", &self.name);
168        if !self._unknown_fields.is_empty() {
169            debug_struct.field("_unknown_fields", &self._unknown_fields);
170        }
171        debug_struct.finish()
172    }
173}
174
175impl std::fmt::Debug for super::CreateRepositoryRequest {
176    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
177        let mut debug_struct = f.debug_struct("CreateRepositoryRequest");
178        debug_struct.field("parent", &self.parent);
179        debug_struct.field("repository", &self.repository);
180        debug_struct.field("repository_id", &self.repository_id);
181        if !self._unknown_fields.is_empty() {
182            debug_struct.field("_unknown_fields", &self._unknown_fields);
183        }
184        debug_struct.finish()
185    }
186}
187
188impl std::fmt::Debug for super::UpdateRepositoryRequest {
189    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
190        let mut debug_struct = f.debug_struct("UpdateRepositoryRequest");
191        debug_struct.field("update_mask", &self.update_mask);
192        debug_struct.field("repository", &self.repository);
193        if !self._unknown_fields.is_empty() {
194            debug_struct.field("_unknown_fields", &self._unknown_fields);
195        }
196        debug_struct.finish()
197    }
198}
199
200impl std::fmt::Debug for super::DeleteRepositoryRequest {
201    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
202        let mut debug_struct = f.debug_struct("DeleteRepositoryRequest");
203        debug_struct.field("name", &self.name);
204        debug_struct.field("force", &self.force);
205        if !self._unknown_fields.is_empty() {
206            debug_struct.field("_unknown_fields", &self._unknown_fields);
207        }
208        debug_struct.finish()
209    }
210}
211
212impl std::fmt::Debug for super::CommitRepositoryChangesRequest {
213    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
214        let mut debug_struct = f.debug_struct("CommitRepositoryChangesRequest");
215        debug_struct.field("name", &self.name);
216        debug_struct.field("commit_metadata", &self.commit_metadata);
217        debug_struct.field("required_head_commit_sha", &self.required_head_commit_sha);
218        debug_struct.field("file_operations", &self.file_operations);
219        if !self._unknown_fields.is_empty() {
220            debug_struct.field("_unknown_fields", &self._unknown_fields);
221        }
222        debug_struct.finish()
223    }
224}
225
226impl std::fmt::Debug for super::commit_repository_changes_request::FileOperation {
227    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
228        let mut debug_struct = f.debug_struct("FileOperation");
229        debug_struct.field("operation", &self.operation);
230        if !self._unknown_fields.is_empty() {
231            debug_struct.field("_unknown_fields", &self._unknown_fields);
232        }
233        debug_struct.finish()
234    }
235}
236
237impl std::fmt::Debug for super::commit_repository_changes_request::file_operation::WriteFile {
238    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
239        let mut debug_struct = f.debug_struct("WriteFile");
240        debug_struct.field("contents", &self.contents);
241        if !self._unknown_fields.is_empty() {
242            debug_struct.field("_unknown_fields", &self._unknown_fields);
243        }
244        debug_struct.finish()
245    }
246}
247
248impl std::fmt::Debug for super::commit_repository_changes_request::file_operation::DeleteFile {
249    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
250        let mut debug_struct = f.debug_struct("DeleteFile");
251        if !self._unknown_fields.is_empty() {
252            debug_struct.field("_unknown_fields", &self._unknown_fields);
253        }
254        debug_struct.finish()
255    }
256}
257
258impl std::fmt::Debug for super::CommitRepositoryChangesResponse {
259    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
260        let mut debug_struct = f.debug_struct("CommitRepositoryChangesResponse");
261        debug_struct.field("commit_sha", &self.commit_sha);
262        if !self._unknown_fields.is_empty() {
263            debug_struct.field("_unknown_fields", &self._unknown_fields);
264        }
265        debug_struct.finish()
266    }
267}
268
269impl std::fmt::Debug for super::ReadRepositoryFileRequest {
270    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
271        let mut debug_struct = f.debug_struct("ReadRepositoryFileRequest");
272        debug_struct.field("name", &self.name);
273        debug_struct.field("commit_sha", &self.commit_sha);
274        debug_struct.field("path", &self.path);
275        if !self._unknown_fields.is_empty() {
276            debug_struct.field("_unknown_fields", &self._unknown_fields);
277        }
278        debug_struct.finish()
279    }
280}
281
282impl std::fmt::Debug for super::ReadRepositoryFileResponse {
283    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
284        let mut debug_struct = f.debug_struct("ReadRepositoryFileResponse");
285        debug_struct.field("contents", &self.contents);
286        if !self._unknown_fields.is_empty() {
287            debug_struct.field("_unknown_fields", &self._unknown_fields);
288        }
289        debug_struct.finish()
290    }
291}
292
293impl std::fmt::Debug for super::QueryRepositoryDirectoryContentsRequest {
294    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
295        let mut debug_struct = f.debug_struct("QueryRepositoryDirectoryContentsRequest");
296        debug_struct.field("name", &self.name);
297        debug_struct.field("commit_sha", &self.commit_sha);
298        debug_struct.field("path", &self.path);
299        debug_struct.field("page_size", &self.page_size);
300        debug_struct.field("page_token", &self.page_token);
301        if !self._unknown_fields.is_empty() {
302            debug_struct.field("_unknown_fields", &self._unknown_fields);
303        }
304        debug_struct.finish()
305    }
306}
307
308impl std::fmt::Debug for super::QueryRepositoryDirectoryContentsResponse {
309    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
310        let mut debug_struct = f.debug_struct("QueryRepositoryDirectoryContentsResponse");
311        debug_struct.field("directory_entries", &self.directory_entries);
312        debug_struct.field("next_page_token", &self.next_page_token);
313        if !self._unknown_fields.is_empty() {
314            debug_struct.field("_unknown_fields", &self._unknown_fields);
315        }
316        debug_struct.finish()
317    }
318}
319
320impl std::fmt::Debug for super::FetchRepositoryHistoryRequest {
321    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
322        let mut debug_struct = f.debug_struct("FetchRepositoryHistoryRequest");
323        debug_struct.field("name", &self.name);
324        debug_struct.field("page_size", &self.page_size);
325        debug_struct.field("page_token", &self.page_token);
326        if !self._unknown_fields.is_empty() {
327            debug_struct.field("_unknown_fields", &self._unknown_fields);
328        }
329        debug_struct.finish()
330    }
331}
332
333impl std::fmt::Debug for super::FetchRepositoryHistoryResponse {
334    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
335        let mut debug_struct = f.debug_struct("FetchRepositoryHistoryResponse");
336        debug_struct.field("commits", &self.commits);
337        debug_struct.field("next_page_token", &self.next_page_token);
338        if !self._unknown_fields.is_empty() {
339            debug_struct.field("_unknown_fields", &self._unknown_fields);
340        }
341        debug_struct.finish()
342    }
343}
344
345impl std::fmt::Debug for super::CommitLogEntry {
346    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
347        let mut debug_struct = f.debug_struct("CommitLogEntry");
348        debug_struct.field("commit_time", &self.commit_time);
349        debug_struct.field("commit_sha", &self.commit_sha);
350        debug_struct.field("author", &self.author);
351        debug_struct.field("commit_message", &self.commit_message);
352        if !self._unknown_fields.is_empty() {
353            debug_struct.field("_unknown_fields", &self._unknown_fields);
354        }
355        debug_struct.finish()
356    }
357}
358
359impl std::fmt::Debug for super::CommitMetadata {
360    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
361        let mut debug_struct = f.debug_struct("CommitMetadata");
362        debug_struct.field("author", &self.author);
363        debug_struct.field("commit_message", &self.commit_message);
364        if !self._unknown_fields.is_empty() {
365            debug_struct.field("_unknown_fields", &self._unknown_fields);
366        }
367        debug_struct.finish()
368    }
369}
370
371impl std::fmt::Debug for super::ComputeRepositoryAccessTokenStatusRequest {
372    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
373        let mut debug_struct = f.debug_struct("ComputeRepositoryAccessTokenStatusRequest");
374        debug_struct.field("name", &self.name);
375        if !self._unknown_fields.is_empty() {
376            debug_struct.field("_unknown_fields", &self._unknown_fields);
377        }
378        debug_struct.finish()
379    }
380}
381
382impl std::fmt::Debug for super::ComputeRepositoryAccessTokenStatusResponse {
383    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
384        let mut debug_struct = f.debug_struct("ComputeRepositoryAccessTokenStatusResponse");
385        debug_struct.field("token_status", &self.token_status);
386        if !self._unknown_fields.is_empty() {
387            debug_struct.field("_unknown_fields", &self._unknown_fields);
388        }
389        debug_struct.finish()
390    }
391}
392
393impl std::fmt::Debug for super::FetchRemoteBranchesRequest {
394    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
395        let mut debug_struct = f.debug_struct("FetchRemoteBranchesRequest");
396        debug_struct.field("name", &self.name);
397        if !self._unknown_fields.is_empty() {
398            debug_struct.field("_unknown_fields", &self._unknown_fields);
399        }
400        debug_struct.finish()
401    }
402}
403
404impl std::fmt::Debug for super::FetchRemoteBranchesResponse {
405    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
406        let mut debug_struct = f.debug_struct("FetchRemoteBranchesResponse");
407        debug_struct.field("branches", &self.branches);
408        if !self._unknown_fields.is_empty() {
409            debug_struct.field("_unknown_fields", &self._unknown_fields);
410        }
411        debug_struct.finish()
412    }
413}
414
415impl std::fmt::Debug for super::Workspace {
416    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
417        let mut debug_struct = f.debug_struct("Workspace");
418        debug_struct.field("name", &self.name);
419        debug_struct.field("create_time", &self.create_time);
420        debug_struct.field("data_encryption_state", &self.data_encryption_state);
421        debug_struct.field("internal_metadata", &self.internal_metadata);
422        debug_struct.field("disable_moves", &self.disable_moves);
423        debug_struct.field("private_resource_metadata", &self.private_resource_metadata);
424        if !self._unknown_fields.is_empty() {
425            debug_struct.field("_unknown_fields", &self._unknown_fields);
426        }
427        debug_struct.finish()
428    }
429}
430
431impl std::fmt::Debug for super::ListWorkspacesRequest {
432    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
433        let mut debug_struct = f.debug_struct("ListWorkspacesRequest");
434        debug_struct.field("parent", &self.parent);
435        debug_struct.field("page_size", &self.page_size);
436        debug_struct.field("page_token", &self.page_token);
437        debug_struct.field("order_by", &self.order_by);
438        debug_struct.field("filter", &self.filter);
439        if !self._unknown_fields.is_empty() {
440            debug_struct.field("_unknown_fields", &self._unknown_fields);
441        }
442        debug_struct.finish()
443    }
444}
445
446impl std::fmt::Debug for super::ListWorkspacesResponse {
447    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
448        let mut debug_struct = f.debug_struct("ListWorkspacesResponse");
449        debug_struct.field("workspaces", &self.workspaces);
450        debug_struct.field("next_page_token", &self.next_page_token);
451        debug_struct.field("unreachable", &self.unreachable);
452        if !self._unknown_fields.is_empty() {
453            debug_struct.field("_unknown_fields", &self._unknown_fields);
454        }
455        debug_struct.finish()
456    }
457}
458
459impl std::fmt::Debug for super::GetWorkspaceRequest {
460    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
461        let mut debug_struct = f.debug_struct("GetWorkspaceRequest");
462        debug_struct.field("name", &self.name);
463        if !self._unknown_fields.is_empty() {
464            debug_struct.field("_unknown_fields", &self._unknown_fields);
465        }
466        debug_struct.finish()
467    }
468}
469
470impl std::fmt::Debug for super::CreateWorkspaceRequest {
471    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
472        let mut debug_struct = f.debug_struct("CreateWorkspaceRequest");
473        debug_struct.field("parent", &self.parent);
474        debug_struct.field("workspace", &self.workspace);
475        debug_struct.field("workspace_id", &self.workspace_id);
476        if !self._unknown_fields.is_empty() {
477            debug_struct.field("_unknown_fields", &self._unknown_fields);
478        }
479        debug_struct.finish()
480    }
481}
482
483impl std::fmt::Debug for super::DeleteWorkspaceRequest {
484    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
485        let mut debug_struct = f.debug_struct("DeleteWorkspaceRequest");
486        debug_struct.field("name", &self.name);
487        if !self._unknown_fields.is_empty() {
488            debug_struct.field("_unknown_fields", &self._unknown_fields);
489        }
490        debug_struct.finish()
491    }
492}
493
494impl std::fmt::Debug for super::CommitAuthor {
495    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
496        let mut debug_struct = f.debug_struct("CommitAuthor");
497        debug_struct.field("name", &self.name);
498        debug_struct.field("email_address", &self.email_address);
499        if !self._unknown_fields.is_empty() {
500            debug_struct.field("_unknown_fields", &self._unknown_fields);
501        }
502        debug_struct.finish()
503    }
504}
505
506impl std::fmt::Debug for super::PullGitCommitsRequest {
507    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
508        let mut debug_struct = f.debug_struct("PullGitCommitsRequest");
509        debug_struct.field("name", &self.name);
510        debug_struct.field("remote_branch", &self.remote_branch);
511        debug_struct.field("author", &self.author);
512        if !self._unknown_fields.is_empty() {
513            debug_struct.field("_unknown_fields", &self._unknown_fields);
514        }
515        debug_struct.finish()
516    }
517}
518
519impl std::fmt::Debug for super::PullGitCommitsResponse {
520    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
521        let mut debug_struct = f.debug_struct("PullGitCommitsResponse");
522        if !self._unknown_fields.is_empty() {
523            debug_struct.field("_unknown_fields", &self._unknown_fields);
524        }
525        debug_struct.finish()
526    }
527}
528
529impl std::fmt::Debug for super::PushGitCommitsRequest {
530    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
531        let mut debug_struct = f.debug_struct("PushGitCommitsRequest");
532        debug_struct.field("name", &self.name);
533        debug_struct.field("remote_branch", &self.remote_branch);
534        if !self._unknown_fields.is_empty() {
535            debug_struct.field("_unknown_fields", &self._unknown_fields);
536        }
537        debug_struct.finish()
538    }
539}
540
541impl std::fmt::Debug for super::PushGitCommitsResponse {
542    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
543        let mut debug_struct = f.debug_struct("PushGitCommitsResponse");
544        if !self._unknown_fields.is_empty() {
545            debug_struct.field("_unknown_fields", &self._unknown_fields);
546        }
547        debug_struct.finish()
548    }
549}
550
551impl std::fmt::Debug for super::FetchFileGitStatusesRequest {
552    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
553        let mut debug_struct = f.debug_struct("FetchFileGitStatusesRequest");
554        debug_struct.field("name", &self.name);
555        if !self._unknown_fields.is_empty() {
556            debug_struct.field("_unknown_fields", &self._unknown_fields);
557        }
558        debug_struct.finish()
559    }
560}
561
562impl std::fmt::Debug for super::FetchFileGitStatusesResponse {
563    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
564        let mut debug_struct = f.debug_struct("FetchFileGitStatusesResponse");
565        debug_struct.field("uncommitted_file_changes", &self.uncommitted_file_changes);
566        if !self._unknown_fields.is_empty() {
567            debug_struct.field("_unknown_fields", &self._unknown_fields);
568        }
569        debug_struct.finish()
570    }
571}
572
573impl std::fmt::Debug for super::fetch_file_git_statuses_response::UncommittedFileChange {
574    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
575        let mut debug_struct = f.debug_struct("UncommittedFileChange");
576        debug_struct.field("path", &self.path);
577        debug_struct.field("state", &self.state);
578        if !self._unknown_fields.is_empty() {
579            debug_struct.field("_unknown_fields", &self._unknown_fields);
580        }
581        debug_struct.finish()
582    }
583}
584
585impl std::fmt::Debug for super::FetchGitAheadBehindRequest {
586    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
587        let mut debug_struct = f.debug_struct("FetchGitAheadBehindRequest");
588        debug_struct.field("name", &self.name);
589        debug_struct.field("remote_branch", &self.remote_branch);
590        if !self._unknown_fields.is_empty() {
591            debug_struct.field("_unknown_fields", &self._unknown_fields);
592        }
593        debug_struct.finish()
594    }
595}
596
597impl std::fmt::Debug for super::FetchGitAheadBehindResponse {
598    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
599        let mut debug_struct = f.debug_struct("FetchGitAheadBehindResponse");
600        debug_struct.field("commits_ahead", &self.commits_ahead);
601        debug_struct.field("commits_behind", &self.commits_behind);
602        if !self._unknown_fields.is_empty() {
603            debug_struct.field("_unknown_fields", &self._unknown_fields);
604        }
605        debug_struct.finish()
606    }
607}
608
609impl std::fmt::Debug for super::CommitWorkspaceChangesRequest {
610    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
611        let mut debug_struct = f.debug_struct("CommitWorkspaceChangesRequest");
612        debug_struct.field("name", &self.name);
613        debug_struct.field("author", &self.author);
614        debug_struct.field("commit_message", &self.commit_message);
615        debug_struct.field("paths", &self.paths);
616        if !self._unknown_fields.is_empty() {
617            debug_struct.field("_unknown_fields", &self._unknown_fields);
618        }
619        debug_struct.finish()
620    }
621}
622
623impl std::fmt::Debug for super::CommitWorkspaceChangesResponse {
624    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
625        let mut debug_struct = f.debug_struct("CommitWorkspaceChangesResponse");
626        if !self._unknown_fields.is_empty() {
627            debug_struct.field("_unknown_fields", &self._unknown_fields);
628        }
629        debug_struct.finish()
630    }
631}
632
633impl std::fmt::Debug for super::ResetWorkspaceChangesRequest {
634    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
635        let mut debug_struct = f.debug_struct("ResetWorkspaceChangesRequest");
636        debug_struct.field("name", &self.name);
637        debug_struct.field("paths", &self.paths);
638        debug_struct.field("clean", &self.clean);
639        if !self._unknown_fields.is_empty() {
640            debug_struct.field("_unknown_fields", &self._unknown_fields);
641        }
642        debug_struct.finish()
643    }
644}
645
646impl std::fmt::Debug for super::ResetWorkspaceChangesResponse {
647    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
648        let mut debug_struct = f.debug_struct("ResetWorkspaceChangesResponse");
649        if !self._unknown_fields.is_empty() {
650            debug_struct.field("_unknown_fields", &self._unknown_fields);
651        }
652        debug_struct.finish()
653    }
654}
655
656impl std::fmt::Debug for super::FetchFileDiffRequest {
657    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
658        let mut debug_struct = f.debug_struct("FetchFileDiffRequest");
659        debug_struct.field("workspace", &self.workspace);
660        debug_struct.field("path", &self.path);
661        if !self._unknown_fields.is_empty() {
662            debug_struct.field("_unknown_fields", &self._unknown_fields);
663        }
664        debug_struct.finish()
665    }
666}
667
668impl std::fmt::Debug for super::FetchFileDiffResponse {
669    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
670        let mut debug_struct = f.debug_struct("FetchFileDiffResponse");
671        debug_struct.field("formatted_diff", &self.formatted_diff);
672        if !self._unknown_fields.is_empty() {
673            debug_struct.field("_unknown_fields", &self._unknown_fields);
674        }
675        debug_struct.finish()
676    }
677}
678
679impl std::fmt::Debug for super::QueryDirectoryContentsRequest {
680    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
681        let mut debug_struct = f.debug_struct("QueryDirectoryContentsRequest");
682        debug_struct.field("workspace", &self.workspace);
683        debug_struct.field("path", &self.path);
684        debug_struct.field("page_size", &self.page_size);
685        debug_struct.field("page_token", &self.page_token);
686        debug_struct.field("view", &self.view);
687        if !self._unknown_fields.is_empty() {
688            debug_struct.field("_unknown_fields", &self._unknown_fields);
689        }
690        debug_struct.finish()
691    }
692}
693
694impl std::fmt::Debug for super::QueryDirectoryContentsResponse {
695    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
696        let mut debug_struct = f.debug_struct("QueryDirectoryContentsResponse");
697        debug_struct.field("directory_entries", &self.directory_entries);
698        debug_struct.field("next_page_token", &self.next_page_token);
699        if !self._unknown_fields.is_empty() {
700            debug_struct.field("_unknown_fields", &self._unknown_fields);
701        }
702        debug_struct.finish()
703    }
704}
705
706impl std::fmt::Debug for super::DirectoryEntry {
707    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
708        let mut debug_struct = f.debug_struct("DirectoryEntry");
709        debug_struct.field("metadata", &self.metadata);
710        debug_struct.field("entry", &self.entry);
711        if !self._unknown_fields.is_empty() {
712            debug_struct.field("_unknown_fields", &self._unknown_fields);
713        }
714        debug_struct.finish()
715    }
716}
717
718impl std::fmt::Debug for super::FilesystemEntryMetadata {
719    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
720        let mut debug_struct = f.debug_struct("FilesystemEntryMetadata");
721        debug_struct.field("size_bytes", &self.size_bytes);
722        debug_struct.field("update_time", &self.update_time);
723        if !self._unknown_fields.is_empty() {
724            debug_struct.field("_unknown_fields", &self._unknown_fields);
725        }
726        debug_struct.finish()
727    }
728}
729
730impl std::fmt::Debug for super::SearchFilesRequest {
731    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
732        let mut debug_struct = f.debug_struct("SearchFilesRequest");
733        debug_struct.field("workspace", &self.workspace);
734        debug_struct.field("page_size", &self.page_size);
735        debug_struct.field("page_token", &self.page_token);
736        debug_struct.field("filter", &self.filter);
737        if !self._unknown_fields.is_empty() {
738            debug_struct.field("_unknown_fields", &self._unknown_fields);
739        }
740        debug_struct.finish()
741    }
742}
743
744impl std::fmt::Debug for super::SearchFilesResponse {
745    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
746        let mut debug_struct = f.debug_struct("SearchFilesResponse");
747        debug_struct.field("search_results", &self.search_results);
748        debug_struct.field("next_page_token", &self.next_page_token);
749        if !self._unknown_fields.is_empty() {
750            debug_struct.field("_unknown_fields", &self._unknown_fields);
751        }
752        debug_struct.finish()
753    }
754}
755
756impl std::fmt::Debug for super::SearchResult {
757    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
758        let mut debug_struct = f.debug_struct("SearchResult");
759        debug_struct.field("entry", &self.entry);
760        if !self._unknown_fields.is_empty() {
761            debug_struct.field("_unknown_fields", &self._unknown_fields);
762        }
763        debug_struct.finish()
764    }
765}
766
767impl std::fmt::Debug for super::FileSearchResult {
768    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
769        let mut debug_struct = f.debug_struct("FileSearchResult");
770        debug_struct.field("path", &self.path);
771        if !self._unknown_fields.is_empty() {
772            debug_struct.field("_unknown_fields", &self._unknown_fields);
773        }
774        debug_struct.finish()
775    }
776}
777
778impl std::fmt::Debug for super::DirectorySearchResult {
779    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
780        let mut debug_struct = f.debug_struct("DirectorySearchResult");
781        debug_struct.field("path", &self.path);
782        if !self._unknown_fields.is_empty() {
783            debug_struct.field("_unknown_fields", &self._unknown_fields);
784        }
785        debug_struct.finish()
786    }
787}
788
789impl std::fmt::Debug for super::MakeDirectoryRequest {
790    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
791        let mut debug_struct = f.debug_struct("MakeDirectoryRequest");
792        debug_struct.field("workspace", &self.workspace);
793        debug_struct.field("path", &self.path);
794        if !self._unknown_fields.is_empty() {
795            debug_struct.field("_unknown_fields", &self._unknown_fields);
796        }
797        debug_struct.finish()
798    }
799}
800
801impl std::fmt::Debug for super::MakeDirectoryResponse {
802    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
803        let mut debug_struct = f.debug_struct("MakeDirectoryResponse");
804        if !self._unknown_fields.is_empty() {
805            debug_struct.field("_unknown_fields", &self._unknown_fields);
806        }
807        debug_struct.finish()
808    }
809}
810
811impl std::fmt::Debug for super::RemoveDirectoryRequest {
812    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
813        let mut debug_struct = f.debug_struct("RemoveDirectoryRequest");
814        debug_struct.field("workspace", &self.workspace);
815        debug_struct.field("path", &self.path);
816        if !self._unknown_fields.is_empty() {
817            debug_struct.field("_unknown_fields", &self._unknown_fields);
818        }
819        debug_struct.finish()
820    }
821}
822
823impl std::fmt::Debug for super::RemoveDirectoryResponse {
824    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
825        let mut debug_struct = f.debug_struct("RemoveDirectoryResponse");
826        if !self._unknown_fields.is_empty() {
827            debug_struct.field("_unknown_fields", &self._unknown_fields);
828        }
829        debug_struct.finish()
830    }
831}
832
833impl std::fmt::Debug for super::MoveDirectoryRequest {
834    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
835        let mut debug_struct = f.debug_struct("MoveDirectoryRequest");
836        debug_struct.field("workspace", &self.workspace);
837        debug_struct.field("path", &self.path);
838        debug_struct.field("new_path", &self.new_path);
839        if !self._unknown_fields.is_empty() {
840            debug_struct.field("_unknown_fields", &self._unknown_fields);
841        }
842        debug_struct.finish()
843    }
844}
845
846impl std::fmt::Debug for super::MoveDirectoryResponse {
847    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
848        let mut debug_struct = f.debug_struct("MoveDirectoryResponse");
849        if !self._unknown_fields.is_empty() {
850            debug_struct.field("_unknown_fields", &self._unknown_fields);
851        }
852        debug_struct.finish()
853    }
854}
855
856impl std::fmt::Debug for super::ReadFileRequest {
857    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
858        let mut debug_struct = f.debug_struct("ReadFileRequest");
859        debug_struct.field("workspace", &self.workspace);
860        debug_struct.field("path", &self.path);
861        debug_struct.field("revision", &self.revision);
862        if !self._unknown_fields.is_empty() {
863            debug_struct.field("_unknown_fields", &self._unknown_fields);
864        }
865        debug_struct.finish()
866    }
867}
868
869impl std::fmt::Debug for super::ReadFileResponse {
870    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
871        let mut debug_struct = f.debug_struct("ReadFileResponse");
872        debug_struct.field("file_contents", &self.file_contents);
873        if !self._unknown_fields.is_empty() {
874            debug_struct.field("_unknown_fields", &self._unknown_fields);
875        }
876        debug_struct.finish()
877    }
878}
879
880impl std::fmt::Debug for super::RemoveFileRequest {
881    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
882        let mut debug_struct = f.debug_struct("RemoveFileRequest");
883        debug_struct.field("workspace", &self.workspace);
884        debug_struct.field("path", &self.path);
885        if !self._unknown_fields.is_empty() {
886            debug_struct.field("_unknown_fields", &self._unknown_fields);
887        }
888        debug_struct.finish()
889    }
890}
891
892impl std::fmt::Debug for super::RemoveFileResponse {
893    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
894        let mut debug_struct = f.debug_struct("RemoveFileResponse");
895        if !self._unknown_fields.is_empty() {
896            debug_struct.field("_unknown_fields", &self._unknown_fields);
897        }
898        debug_struct.finish()
899    }
900}
901
902impl std::fmt::Debug for super::MoveFileRequest {
903    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
904        let mut debug_struct = f.debug_struct("MoveFileRequest");
905        debug_struct.field("workspace", &self.workspace);
906        debug_struct.field("path", &self.path);
907        debug_struct.field("new_path", &self.new_path);
908        if !self._unknown_fields.is_empty() {
909            debug_struct.field("_unknown_fields", &self._unknown_fields);
910        }
911        debug_struct.finish()
912    }
913}
914
915impl std::fmt::Debug for super::MoveFileResponse {
916    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
917        let mut debug_struct = f.debug_struct("MoveFileResponse");
918        if !self._unknown_fields.is_empty() {
919            debug_struct.field("_unknown_fields", &self._unknown_fields);
920        }
921        debug_struct.finish()
922    }
923}
924
925impl std::fmt::Debug for super::WriteFileRequest {
926    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
927        let mut debug_struct = f.debug_struct("WriteFileRequest");
928        debug_struct.field("workspace", &self.workspace);
929        debug_struct.field("path", &self.path);
930        debug_struct.field("contents", &self.contents);
931        if !self._unknown_fields.is_empty() {
932            debug_struct.field("_unknown_fields", &self._unknown_fields);
933        }
934        debug_struct.finish()
935    }
936}
937
938impl std::fmt::Debug for super::WriteFileResponse {
939    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
940        let mut debug_struct = f.debug_struct("WriteFileResponse");
941        if !self._unknown_fields.is_empty() {
942            debug_struct.field("_unknown_fields", &self._unknown_fields);
943        }
944        debug_struct.finish()
945    }
946}
947
948impl std::fmt::Debug for super::InstallNpmPackagesRequest {
949    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
950        let mut debug_struct = f.debug_struct("InstallNpmPackagesRequest");
951        debug_struct.field("workspace", &self.workspace);
952        if !self._unknown_fields.is_empty() {
953            debug_struct.field("_unknown_fields", &self._unknown_fields);
954        }
955        debug_struct.finish()
956    }
957}
958
959impl std::fmt::Debug for super::InstallNpmPackagesResponse {
960    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
961        let mut debug_struct = f.debug_struct("InstallNpmPackagesResponse");
962        if !self._unknown_fields.is_empty() {
963            debug_struct.field("_unknown_fields", &self._unknown_fields);
964        }
965        debug_struct.finish()
966    }
967}
968
969impl std::fmt::Debug for super::ReleaseConfig {
970    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
971        let mut debug_struct = f.debug_struct("ReleaseConfig");
972        debug_struct.field("name", &self.name);
973        debug_struct.field("git_commitish", &self.git_commitish);
974        debug_struct.field("code_compilation_config", &self.code_compilation_config);
975        debug_struct.field("cron_schedule", &self.cron_schedule);
976        debug_struct.field("time_zone", &self.time_zone);
977        debug_struct.field(
978            "recent_scheduled_release_records",
979            &self.recent_scheduled_release_records,
980        );
981        debug_struct.field(
982            "release_compilation_result",
983            &self.release_compilation_result,
984        );
985        debug_struct.field("disabled", &self.disabled);
986        debug_struct.field("internal_metadata", &self.internal_metadata);
987        if !self._unknown_fields.is_empty() {
988            debug_struct.field("_unknown_fields", &self._unknown_fields);
989        }
990        debug_struct.finish()
991    }
992}
993
994impl std::fmt::Debug for super::release_config::ScheduledReleaseRecord {
995    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
996        let mut debug_struct = f.debug_struct("ScheduledReleaseRecord");
997        debug_struct.field("release_time", &self.release_time);
998        debug_struct.field("result", &self.result);
999        if !self._unknown_fields.is_empty() {
1000            debug_struct.field("_unknown_fields", &self._unknown_fields);
1001        }
1002        debug_struct.finish()
1003    }
1004}
1005
1006impl std::fmt::Debug for super::ListReleaseConfigsRequest {
1007    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1008        let mut debug_struct = f.debug_struct("ListReleaseConfigsRequest");
1009        debug_struct.field("parent", &self.parent);
1010        debug_struct.field("page_size", &self.page_size);
1011        debug_struct.field("page_token", &self.page_token);
1012        if !self._unknown_fields.is_empty() {
1013            debug_struct.field("_unknown_fields", &self._unknown_fields);
1014        }
1015        debug_struct.finish()
1016    }
1017}
1018
1019impl std::fmt::Debug for super::ListReleaseConfigsResponse {
1020    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1021        let mut debug_struct = f.debug_struct("ListReleaseConfigsResponse");
1022        debug_struct.field("release_configs", &self.release_configs);
1023        debug_struct.field("next_page_token", &self.next_page_token);
1024        debug_struct.field("unreachable", &self.unreachable);
1025        if !self._unknown_fields.is_empty() {
1026            debug_struct.field("_unknown_fields", &self._unknown_fields);
1027        }
1028        debug_struct.finish()
1029    }
1030}
1031
1032impl std::fmt::Debug for super::GetReleaseConfigRequest {
1033    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1034        let mut debug_struct = f.debug_struct("GetReleaseConfigRequest");
1035        debug_struct.field("name", &self.name);
1036        if !self._unknown_fields.is_empty() {
1037            debug_struct.field("_unknown_fields", &self._unknown_fields);
1038        }
1039        debug_struct.finish()
1040    }
1041}
1042
1043impl std::fmt::Debug for super::CreateReleaseConfigRequest {
1044    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1045        let mut debug_struct = f.debug_struct("CreateReleaseConfigRequest");
1046        debug_struct.field("parent", &self.parent);
1047        debug_struct.field("release_config", &self.release_config);
1048        debug_struct.field("release_config_id", &self.release_config_id);
1049        if !self._unknown_fields.is_empty() {
1050            debug_struct.field("_unknown_fields", &self._unknown_fields);
1051        }
1052        debug_struct.finish()
1053    }
1054}
1055
1056impl std::fmt::Debug for super::UpdateReleaseConfigRequest {
1057    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1058        let mut debug_struct = f.debug_struct("UpdateReleaseConfigRequest");
1059        debug_struct.field("update_mask", &self.update_mask);
1060        debug_struct.field("release_config", &self.release_config);
1061        if !self._unknown_fields.is_empty() {
1062            debug_struct.field("_unknown_fields", &self._unknown_fields);
1063        }
1064        debug_struct.finish()
1065    }
1066}
1067
1068impl std::fmt::Debug for super::DeleteReleaseConfigRequest {
1069    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1070        let mut debug_struct = f.debug_struct("DeleteReleaseConfigRequest");
1071        debug_struct.field("name", &self.name);
1072        if !self._unknown_fields.is_empty() {
1073            debug_struct.field("_unknown_fields", &self._unknown_fields);
1074        }
1075        debug_struct.finish()
1076    }
1077}
1078
1079impl std::fmt::Debug for super::CompilationResult {
1080    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1081        let mut debug_struct = f.debug_struct("CompilationResult");
1082        debug_struct.field("name", &self.name);
1083        debug_struct.field("code_compilation_config", &self.code_compilation_config);
1084        debug_struct.field("resolved_git_commit_sha", &self.resolved_git_commit_sha);
1085        debug_struct.field("dataform_core_version", &self.dataform_core_version);
1086        debug_struct.field("compilation_errors", &self.compilation_errors);
1087        debug_struct.field("data_encryption_state", &self.data_encryption_state);
1088        debug_struct.field("create_time", &self.create_time);
1089        debug_struct.field("internal_metadata", &self.internal_metadata);
1090        debug_struct.field("private_resource_metadata", &self.private_resource_metadata);
1091        debug_struct.field("source", &self.source);
1092        if !self._unknown_fields.is_empty() {
1093            debug_struct.field("_unknown_fields", &self._unknown_fields);
1094        }
1095        debug_struct.finish()
1096    }
1097}
1098
1099impl std::fmt::Debug for super::compilation_result::CompilationError {
1100    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1101        let mut debug_struct = f.debug_struct("CompilationError");
1102        debug_struct.field("message", &self.message);
1103        debug_struct.field("stack", &self.stack);
1104        debug_struct.field("path", &self.path);
1105        debug_struct.field("action_target", &self.action_target);
1106        if !self._unknown_fields.is_empty() {
1107            debug_struct.field("_unknown_fields", &self._unknown_fields);
1108        }
1109        debug_struct.finish()
1110    }
1111}
1112
1113impl std::fmt::Debug for super::CodeCompilationConfig {
1114    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1115        let mut debug_struct = f.debug_struct("CodeCompilationConfig");
1116        debug_struct.field("default_database", &self.default_database);
1117        debug_struct.field("default_schema", &self.default_schema);
1118        debug_struct.field("default_location", &self.default_location);
1119        debug_struct.field("assertion_schema", &self.assertion_schema);
1120        debug_struct.field("vars", &self.vars);
1121        debug_struct.field("database_suffix", &self.database_suffix);
1122        debug_struct.field("schema_suffix", &self.schema_suffix);
1123        debug_struct.field("table_prefix", &self.table_prefix);
1124        debug_struct.field(
1125            "builtin_assertion_name_prefix",
1126            &self.builtin_assertion_name_prefix,
1127        );
1128        debug_struct.field(
1129            "default_notebook_runtime_options",
1130            &self.default_notebook_runtime_options,
1131        );
1132        if !self._unknown_fields.is_empty() {
1133            debug_struct.field("_unknown_fields", &self._unknown_fields);
1134        }
1135        debug_struct.finish()
1136    }
1137}
1138
1139impl std::fmt::Debug for super::NotebookRuntimeOptions {
1140    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1141        let mut debug_struct = f.debug_struct("NotebookRuntimeOptions");
1142        debug_struct.field(
1143            "ai_platform_notebook_runtime_template",
1144            &self.ai_platform_notebook_runtime_template,
1145        );
1146        debug_struct.field("execution_sink", &self.execution_sink);
1147        if !self._unknown_fields.is_empty() {
1148            debug_struct.field("_unknown_fields", &self._unknown_fields);
1149        }
1150        debug_struct.finish()
1151    }
1152}
1153
1154impl std::fmt::Debug for super::ListCompilationResultsRequest {
1155    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1156        let mut debug_struct = f.debug_struct("ListCompilationResultsRequest");
1157        debug_struct.field("parent", &self.parent);
1158        debug_struct.field("page_size", &self.page_size);
1159        debug_struct.field("page_token", &self.page_token);
1160        debug_struct.field("order_by", &self.order_by);
1161        debug_struct.field("filter", &self.filter);
1162        if !self._unknown_fields.is_empty() {
1163            debug_struct.field("_unknown_fields", &self._unknown_fields);
1164        }
1165        debug_struct.finish()
1166    }
1167}
1168
1169impl std::fmt::Debug for super::ListCompilationResultsResponse {
1170    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1171        let mut debug_struct = f.debug_struct("ListCompilationResultsResponse");
1172        debug_struct.field("compilation_results", &self.compilation_results);
1173        debug_struct.field("next_page_token", &self.next_page_token);
1174        debug_struct.field("unreachable", &self.unreachable);
1175        if !self._unknown_fields.is_empty() {
1176            debug_struct.field("_unknown_fields", &self._unknown_fields);
1177        }
1178        debug_struct.finish()
1179    }
1180}
1181
1182impl std::fmt::Debug for super::GetCompilationResultRequest {
1183    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1184        let mut debug_struct = f.debug_struct("GetCompilationResultRequest");
1185        debug_struct.field("name", &self.name);
1186        if !self._unknown_fields.is_empty() {
1187            debug_struct.field("_unknown_fields", &self._unknown_fields);
1188        }
1189        debug_struct.finish()
1190    }
1191}
1192
1193impl std::fmt::Debug for super::CreateCompilationResultRequest {
1194    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1195        let mut debug_struct = f.debug_struct("CreateCompilationResultRequest");
1196        debug_struct.field("parent", &self.parent);
1197        debug_struct.field("compilation_result", &self.compilation_result);
1198        if !self._unknown_fields.is_empty() {
1199            debug_struct.field("_unknown_fields", &self._unknown_fields);
1200        }
1201        debug_struct.finish()
1202    }
1203}
1204
1205impl std::fmt::Debug for super::Target {
1206    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1207        let mut debug_struct = f.debug_struct("Target");
1208        debug_struct.field("database", &self.database);
1209        debug_struct.field("schema", &self.schema);
1210        debug_struct.field("name", &self.name);
1211        if !self._unknown_fields.is_empty() {
1212            debug_struct.field("_unknown_fields", &self._unknown_fields);
1213        }
1214        debug_struct.finish()
1215    }
1216}
1217
1218impl std::fmt::Debug for super::RelationDescriptor {
1219    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1220        let mut debug_struct = f.debug_struct("RelationDescriptor");
1221        debug_struct.field("description", &self.description);
1222        debug_struct.field("columns", &self.columns);
1223        debug_struct.field("bigquery_labels", &self.bigquery_labels);
1224        if !self._unknown_fields.is_empty() {
1225            debug_struct.field("_unknown_fields", &self._unknown_fields);
1226        }
1227        debug_struct.finish()
1228    }
1229}
1230
1231impl std::fmt::Debug for super::relation_descriptor::ColumnDescriptor {
1232    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1233        let mut debug_struct = f.debug_struct("ColumnDescriptor");
1234        debug_struct.field("path", &self.path);
1235        debug_struct.field("description", &self.description);
1236        debug_struct.field("bigquery_policy_tags", &self.bigquery_policy_tags);
1237        if !self._unknown_fields.is_empty() {
1238            debug_struct.field("_unknown_fields", &self._unknown_fields);
1239        }
1240        debug_struct.finish()
1241    }
1242}
1243
1244impl std::fmt::Debug for super::CompilationResultAction {
1245    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1246        let mut debug_struct = f.debug_struct("CompilationResultAction");
1247        debug_struct.field("target", &self.target);
1248        debug_struct.field("canonical_target", &self.canonical_target);
1249        debug_struct.field("file_path", &self.file_path);
1250        debug_struct.field("internal_metadata", &self.internal_metadata);
1251        debug_struct.field("compiled_object", &self.compiled_object);
1252        if !self._unknown_fields.is_empty() {
1253            debug_struct.field("_unknown_fields", &self._unknown_fields);
1254        }
1255        debug_struct.finish()
1256    }
1257}
1258
1259impl std::fmt::Debug for super::compilation_result_action::Relation {
1260    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1261        let mut debug_struct = f.debug_struct("Relation");
1262        debug_struct.field("dependency_targets", &self.dependency_targets);
1263        debug_struct.field("disabled", &self.disabled);
1264        debug_struct.field("tags", &self.tags);
1265        debug_struct.field("relation_descriptor", &self.relation_descriptor);
1266        debug_struct.field("relation_type", &self.relation_type);
1267        debug_struct.field("select_query", &self.select_query);
1268        debug_struct.field("pre_operations", &self.pre_operations);
1269        debug_struct.field("post_operations", &self.post_operations);
1270        debug_struct.field("incremental_table_config", &self.incremental_table_config);
1271        debug_struct.field("partition_expression", &self.partition_expression);
1272        debug_struct.field("cluster_expressions", &self.cluster_expressions);
1273        debug_struct.field("partition_expiration_days", &self.partition_expiration_days);
1274        debug_struct.field("require_partition_filter", &self.require_partition_filter);
1275        debug_struct.field("additional_options", &self.additional_options);
1276        debug_struct.field("connection", &self.connection);
1277        debug_struct.field("table_format", &self.table_format);
1278        debug_struct.field("file_format", &self.file_format);
1279        debug_struct.field("storage_uri", &self.storage_uri);
1280        if !self._unknown_fields.is_empty() {
1281            debug_struct.field("_unknown_fields", &self._unknown_fields);
1282        }
1283        debug_struct.finish()
1284    }
1285}
1286
1287impl std::fmt::Debug for super::compilation_result_action::relation::IncrementalTableConfig {
1288    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1289        let mut debug_struct = f.debug_struct("IncrementalTableConfig");
1290        debug_struct.field("incremental_select_query", &self.incremental_select_query);
1291        debug_struct.field("refresh_disabled", &self.refresh_disabled);
1292        debug_struct.field("unique_key_parts", &self.unique_key_parts);
1293        debug_struct.field("update_partition_filter", &self.update_partition_filter);
1294        debug_struct.field(
1295            "incremental_pre_operations",
1296            &self.incremental_pre_operations,
1297        );
1298        debug_struct.field(
1299            "incremental_post_operations",
1300            &self.incremental_post_operations,
1301        );
1302        if !self._unknown_fields.is_empty() {
1303            debug_struct.field("_unknown_fields", &self._unknown_fields);
1304        }
1305        debug_struct.finish()
1306    }
1307}
1308
1309impl std::fmt::Debug for super::compilation_result_action::Operations {
1310    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1311        let mut debug_struct = f.debug_struct("Operations");
1312        debug_struct.field("dependency_targets", &self.dependency_targets);
1313        debug_struct.field("disabled", &self.disabled);
1314        debug_struct.field("tags", &self.tags);
1315        debug_struct.field("relation_descriptor", &self.relation_descriptor);
1316        debug_struct.field("queries", &self.queries);
1317        debug_struct.field("has_output", &self.has_output);
1318        if !self._unknown_fields.is_empty() {
1319            debug_struct.field("_unknown_fields", &self._unknown_fields);
1320        }
1321        debug_struct.finish()
1322    }
1323}
1324
1325impl std::fmt::Debug for super::compilation_result_action::Assertion {
1326    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1327        let mut debug_struct = f.debug_struct("Assertion");
1328        debug_struct.field("dependency_targets", &self.dependency_targets);
1329        debug_struct.field("parent_action", &self.parent_action);
1330        debug_struct.field("disabled", &self.disabled);
1331        debug_struct.field("tags", &self.tags);
1332        debug_struct.field("select_query", &self.select_query);
1333        debug_struct.field("relation_descriptor", &self.relation_descriptor);
1334        if !self._unknown_fields.is_empty() {
1335            debug_struct.field("_unknown_fields", &self._unknown_fields);
1336        }
1337        debug_struct.finish()
1338    }
1339}
1340
1341impl std::fmt::Debug for super::compilation_result_action::Declaration {
1342    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1343        let mut debug_struct = f.debug_struct("Declaration");
1344        debug_struct.field("relation_descriptor", &self.relation_descriptor);
1345        if !self._unknown_fields.is_empty() {
1346            debug_struct.field("_unknown_fields", &self._unknown_fields);
1347        }
1348        debug_struct.finish()
1349    }
1350}
1351
1352impl std::fmt::Debug for super::compilation_result_action::Notebook {
1353    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1354        let mut debug_struct = f.debug_struct("Notebook");
1355        debug_struct.field("dependency_targets", &self.dependency_targets);
1356        debug_struct.field("disabled", &self.disabled);
1357        debug_struct.field("contents", &self.contents);
1358        debug_struct.field("tags", &self.tags);
1359        if !self._unknown_fields.is_empty() {
1360            debug_struct.field("_unknown_fields", &self._unknown_fields);
1361        }
1362        debug_struct.finish()
1363    }
1364}
1365
1366impl std::fmt::Debug for super::compilation_result_action::DataPreparation {
1367    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1368        let mut debug_struct = f.debug_struct("DataPreparation");
1369        debug_struct.field("dependency_targets", &self.dependency_targets);
1370        debug_struct.field("disabled", &self.disabled);
1371        debug_struct.field("tags", &self.tags);
1372        debug_struct.field("definition", &self.definition);
1373        if !self._unknown_fields.is_empty() {
1374            debug_struct.field("_unknown_fields", &self._unknown_fields);
1375        }
1376        debug_struct.finish()
1377    }
1378}
1379
1380impl std::fmt::Debug for super::compilation_result_action::data_preparation::SqlDefinition {
1381    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1382        let mut debug_struct = f.debug_struct("SqlDefinition");
1383        debug_struct.field("query", &self.query);
1384        debug_struct.field("error_table", &self.error_table);
1385        debug_struct.field("load", &self.load);
1386        if !self._unknown_fields.is_empty() {
1387            debug_struct.field("_unknown_fields", &self._unknown_fields);
1388        }
1389        debug_struct.finish()
1390    }
1391}
1392
1393impl std::fmt::Debug for super::compilation_result_action::data_preparation::ErrorTable {
1394    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1395        let mut debug_struct = f.debug_struct("ErrorTable");
1396        debug_struct.field("target", &self.target);
1397        debug_struct.field("retention_days", &self.retention_days);
1398        if !self._unknown_fields.is_empty() {
1399            debug_struct.field("_unknown_fields", &self._unknown_fields);
1400        }
1401        debug_struct.finish()
1402    }
1403}
1404
1405impl std::fmt::Debug for super::compilation_result_action::LoadConfig {
1406    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1407        let mut debug_struct = f.debug_struct("LoadConfig");
1408        debug_struct.field("mode", &self.mode);
1409        if !self._unknown_fields.is_empty() {
1410            debug_struct.field("_unknown_fields", &self._unknown_fields);
1411        }
1412        debug_struct.finish()
1413    }
1414}
1415
1416impl std::fmt::Debug for super::compilation_result_action::SimpleLoadMode {
1417    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1418        let mut debug_struct = f.debug_struct("SimpleLoadMode");
1419        if !self._unknown_fields.is_empty() {
1420            debug_struct.field("_unknown_fields", &self._unknown_fields);
1421        }
1422        debug_struct.finish()
1423    }
1424}
1425
1426impl std::fmt::Debug for super::compilation_result_action::IncrementalLoadMode {
1427    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1428        let mut debug_struct = f.debug_struct("IncrementalLoadMode");
1429        debug_struct.field("column", &self.column);
1430        if !self._unknown_fields.is_empty() {
1431            debug_struct.field("_unknown_fields", &self._unknown_fields);
1432        }
1433        debug_struct.finish()
1434    }
1435}
1436
1437impl std::fmt::Debug for super::QueryCompilationResultActionsRequest {
1438    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1439        let mut debug_struct = f.debug_struct("QueryCompilationResultActionsRequest");
1440        debug_struct.field("name", &self.name);
1441        debug_struct.field("page_size", &self.page_size);
1442        debug_struct.field("page_token", &self.page_token);
1443        debug_struct.field("filter", &self.filter);
1444        if !self._unknown_fields.is_empty() {
1445            debug_struct.field("_unknown_fields", &self._unknown_fields);
1446        }
1447        debug_struct.finish()
1448    }
1449}
1450
1451impl std::fmt::Debug for super::QueryCompilationResultActionsResponse {
1452    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1453        let mut debug_struct = f.debug_struct("QueryCompilationResultActionsResponse");
1454        debug_struct.field(
1455            "compilation_result_actions",
1456            &self.compilation_result_actions,
1457        );
1458        debug_struct.field("next_page_token", &self.next_page_token);
1459        if !self._unknown_fields.is_empty() {
1460            debug_struct.field("_unknown_fields", &self._unknown_fields);
1461        }
1462        debug_struct.finish()
1463    }
1464}
1465
1466impl std::fmt::Debug for super::WorkflowConfig {
1467    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1468        let mut debug_struct = f.debug_struct("WorkflowConfig");
1469        debug_struct.field("name", &self.name);
1470        debug_struct.field("release_config", &self.release_config);
1471        debug_struct.field("invocation_config", &self.invocation_config);
1472        debug_struct.field("cron_schedule", &self.cron_schedule);
1473        debug_struct.field("time_zone", &self.time_zone);
1474        debug_struct.field(
1475            "recent_scheduled_execution_records",
1476            &self.recent_scheduled_execution_records,
1477        );
1478        debug_struct.field("disabled", &self.disabled);
1479        debug_struct.field("create_time", &self.create_time);
1480        debug_struct.field("update_time", &self.update_time);
1481        debug_struct.field("internal_metadata", &self.internal_metadata);
1482        if !self._unknown_fields.is_empty() {
1483            debug_struct.field("_unknown_fields", &self._unknown_fields);
1484        }
1485        debug_struct.finish()
1486    }
1487}
1488
1489impl std::fmt::Debug for super::workflow_config::ScheduledExecutionRecord {
1490    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1491        let mut debug_struct = f.debug_struct("ScheduledExecutionRecord");
1492        debug_struct.field("execution_time", &self.execution_time);
1493        debug_struct.field("result", &self.result);
1494        if !self._unknown_fields.is_empty() {
1495            debug_struct.field("_unknown_fields", &self._unknown_fields);
1496        }
1497        debug_struct.finish()
1498    }
1499}
1500
1501impl std::fmt::Debug for super::InvocationConfig {
1502    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1503        let mut debug_struct = f.debug_struct("InvocationConfig");
1504        debug_struct.field("included_targets", &self.included_targets);
1505        debug_struct.field("included_tags", &self.included_tags);
1506        debug_struct.field(
1507            "transitive_dependencies_included",
1508            &self.transitive_dependencies_included,
1509        );
1510        debug_struct.field(
1511            "transitive_dependents_included",
1512            &self.transitive_dependents_included,
1513        );
1514        debug_struct.field(
1515            "fully_refresh_incremental_tables_enabled",
1516            &self.fully_refresh_incremental_tables_enabled,
1517        );
1518        debug_struct.field("service_account", &self.service_account);
1519        debug_struct.field("query_priority", &self.query_priority);
1520        if !self._unknown_fields.is_empty() {
1521            debug_struct.field("_unknown_fields", &self._unknown_fields);
1522        }
1523        debug_struct.finish()
1524    }
1525}
1526
1527impl std::fmt::Debug for super::ListWorkflowConfigsRequest {
1528    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1529        let mut debug_struct = f.debug_struct("ListWorkflowConfigsRequest");
1530        debug_struct.field("parent", &self.parent);
1531        debug_struct.field("page_size", &self.page_size);
1532        debug_struct.field("page_token", &self.page_token);
1533        if !self._unknown_fields.is_empty() {
1534            debug_struct.field("_unknown_fields", &self._unknown_fields);
1535        }
1536        debug_struct.finish()
1537    }
1538}
1539
1540impl std::fmt::Debug for super::ListWorkflowConfigsResponse {
1541    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1542        let mut debug_struct = f.debug_struct("ListWorkflowConfigsResponse");
1543        debug_struct.field("workflow_configs", &self.workflow_configs);
1544        debug_struct.field("next_page_token", &self.next_page_token);
1545        debug_struct.field("unreachable", &self.unreachable);
1546        if !self._unknown_fields.is_empty() {
1547            debug_struct.field("_unknown_fields", &self._unknown_fields);
1548        }
1549        debug_struct.finish()
1550    }
1551}
1552
1553impl std::fmt::Debug for super::GetWorkflowConfigRequest {
1554    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1555        let mut debug_struct = f.debug_struct("GetWorkflowConfigRequest");
1556        debug_struct.field("name", &self.name);
1557        if !self._unknown_fields.is_empty() {
1558            debug_struct.field("_unknown_fields", &self._unknown_fields);
1559        }
1560        debug_struct.finish()
1561    }
1562}
1563
1564impl std::fmt::Debug for super::CreateWorkflowConfigRequest {
1565    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1566        let mut debug_struct = f.debug_struct("CreateWorkflowConfigRequest");
1567        debug_struct.field("parent", &self.parent);
1568        debug_struct.field("workflow_config", &self.workflow_config);
1569        debug_struct.field("workflow_config_id", &self.workflow_config_id);
1570        if !self._unknown_fields.is_empty() {
1571            debug_struct.field("_unknown_fields", &self._unknown_fields);
1572        }
1573        debug_struct.finish()
1574    }
1575}
1576
1577impl std::fmt::Debug for super::UpdateWorkflowConfigRequest {
1578    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1579        let mut debug_struct = f.debug_struct("UpdateWorkflowConfigRequest");
1580        debug_struct.field("update_mask", &self.update_mask);
1581        debug_struct.field("workflow_config", &self.workflow_config);
1582        if !self._unknown_fields.is_empty() {
1583            debug_struct.field("_unknown_fields", &self._unknown_fields);
1584        }
1585        debug_struct.finish()
1586    }
1587}
1588
1589impl std::fmt::Debug for super::DeleteWorkflowConfigRequest {
1590    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1591        let mut debug_struct = f.debug_struct("DeleteWorkflowConfigRequest");
1592        debug_struct.field("name", &self.name);
1593        if !self._unknown_fields.is_empty() {
1594            debug_struct.field("_unknown_fields", &self._unknown_fields);
1595        }
1596        debug_struct.finish()
1597    }
1598}
1599
1600impl std::fmt::Debug for super::WorkflowInvocation {
1601    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1602        let mut debug_struct = f.debug_struct("WorkflowInvocation");
1603        debug_struct.field("name", &self.name);
1604        debug_struct.field("invocation_config", &self.invocation_config);
1605        debug_struct.field("state", &self.state);
1606        debug_struct.field("invocation_timing", &self.invocation_timing);
1607        debug_struct.field(
1608            "resolved_compilation_result",
1609            &self.resolved_compilation_result,
1610        );
1611        debug_struct.field("data_encryption_state", &self.data_encryption_state);
1612        debug_struct.field("internal_metadata", &self.internal_metadata);
1613        debug_struct.field("private_resource_metadata", &self.private_resource_metadata);
1614        debug_struct.field("compilation_source", &self.compilation_source);
1615        if !self._unknown_fields.is_empty() {
1616            debug_struct.field("_unknown_fields", &self._unknown_fields);
1617        }
1618        debug_struct.finish()
1619    }
1620}
1621
1622impl std::fmt::Debug for super::ListWorkflowInvocationsRequest {
1623    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1624        let mut debug_struct = f.debug_struct("ListWorkflowInvocationsRequest");
1625        debug_struct.field("parent", &self.parent);
1626        debug_struct.field("page_size", &self.page_size);
1627        debug_struct.field("page_token", &self.page_token);
1628        debug_struct.field("order_by", &self.order_by);
1629        debug_struct.field("filter", &self.filter);
1630        if !self._unknown_fields.is_empty() {
1631            debug_struct.field("_unknown_fields", &self._unknown_fields);
1632        }
1633        debug_struct.finish()
1634    }
1635}
1636
1637impl std::fmt::Debug for super::ListWorkflowInvocationsResponse {
1638    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1639        let mut debug_struct = f.debug_struct("ListWorkflowInvocationsResponse");
1640        debug_struct.field("workflow_invocations", &self.workflow_invocations);
1641        debug_struct.field("next_page_token", &self.next_page_token);
1642        debug_struct.field("unreachable", &self.unreachable);
1643        if !self._unknown_fields.is_empty() {
1644            debug_struct.field("_unknown_fields", &self._unknown_fields);
1645        }
1646        debug_struct.finish()
1647    }
1648}
1649
1650impl std::fmt::Debug for super::GetWorkflowInvocationRequest {
1651    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1652        let mut debug_struct = f.debug_struct("GetWorkflowInvocationRequest");
1653        debug_struct.field("name", &self.name);
1654        if !self._unknown_fields.is_empty() {
1655            debug_struct.field("_unknown_fields", &self._unknown_fields);
1656        }
1657        debug_struct.finish()
1658    }
1659}
1660
1661impl std::fmt::Debug for super::CreateWorkflowInvocationRequest {
1662    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1663        let mut debug_struct = f.debug_struct("CreateWorkflowInvocationRequest");
1664        debug_struct.field("parent", &self.parent);
1665        debug_struct.field("workflow_invocation", &self.workflow_invocation);
1666        if !self._unknown_fields.is_empty() {
1667            debug_struct.field("_unknown_fields", &self._unknown_fields);
1668        }
1669        debug_struct.finish()
1670    }
1671}
1672
1673impl std::fmt::Debug for super::DeleteWorkflowInvocationRequest {
1674    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1675        let mut debug_struct = f.debug_struct("DeleteWorkflowInvocationRequest");
1676        debug_struct.field("name", &self.name);
1677        if !self._unknown_fields.is_empty() {
1678            debug_struct.field("_unknown_fields", &self._unknown_fields);
1679        }
1680        debug_struct.finish()
1681    }
1682}
1683
1684impl std::fmt::Debug for super::CancelWorkflowInvocationRequest {
1685    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1686        let mut debug_struct = f.debug_struct("CancelWorkflowInvocationRequest");
1687        debug_struct.field("name", &self.name);
1688        if !self._unknown_fields.is_empty() {
1689            debug_struct.field("_unknown_fields", &self._unknown_fields);
1690        }
1691        debug_struct.finish()
1692    }
1693}
1694
1695impl std::fmt::Debug for super::CancelWorkflowInvocationResponse {
1696    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1697        let mut debug_struct = f.debug_struct("CancelWorkflowInvocationResponse");
1698        if !self._unknown_fields.is_empty() {
1699            debug_struct.field("_unknown_fields", &self._unknown_fields);
1700        }
1701        debug_struct.finish()
1702    }
1703}
1704
1705impl std::fmt::Debug for super::WorkflowInvocationAction {
1706    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1707        let mut debug_struct = f.debug_struct("WorkflowInvocationAction");
1708        debug_struct.field("target", &self.target);
1709        debug_struct.field("canonical_target", &self.canonical_target);
1710        debug_struct.field("state", &self.state);
1711        debug_struct.field("failure_reason", &self.failure_reason);
1712        debug_struct.field("invocation_timing", &self.invocation_timing);
1713        debug_struct.field("internal_metadata", &self.internal_metadata);
1714        debug_struct.field("action", &self.action);
1715        if !self._unknown_fields.is_empty() {
1716            debug_struct.field("_unknown_fields", &self._unknown_fields);
1717        }
1718        debug_struct.finish()
1719    }
1720}
1721
1722impl std::fmt::Debug for super::workflow_invocation_action::BigQueryAction {
1723    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1724        let mut debug_struct = f.debug_struct("BigQueryAction");
1725        debug_struct.field("sql_script", &self.sql_script);
1726        debug_struct.field("job_id", &self.job_id);
1727        if !self._unknown_fields.is_empty() {
1728            debug_struct.field("_unknown_fields", &self._unknown_fields);
1729        }
1730        debug_struct.finish()
1731    }
1732}
1733
1734impl std::fmt::Debug for super::workflow_invocation_action::NotebookAction {
1735    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1736        let mut debug_struct = f.debug_struct("NotebookAction");
1737        debug_struct.field("contents", &self.contents);
1738        debug_struct.field("job_id", &self.job_id);
1739        if !self._unknown_fields.is_empty() {
1740            debug_struct.field("_unknown_fields", &self._unknown_fields);
1741        }
1742        debug_struct.finish()
1743    }
1744}
1745
1746impl std::fmt::Debug for super::workflow_invocation_action::DataPreparationAction {
1747    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1748        let mut debug_struct = f.debug_struct("DataPreparationAction");
1749        debug_struct.field("generated_sql", &self.generated_sql);
1750        debug_struct.field("job_id", &self.job_id);
1751        debug_struct.field("definition", &self.definition);
1752        if !self._unknown_fields.is_empty() {
1753            debug_struct.field("_unknown_fields", &self._unknown_fields);
1754        }
1755        debug_struct.finish()
1756    }
1757}
1758
1759impl std::fmt::Debug
1760    for super::workflow_invocation_action::data_preparation_action::ActionSqlDefinition
1761{
1762    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1763        let mut debug_struct = f.debug_struct("ActionSqlDefinition");
1764        debug_struct.field("query", &self.query);
1765        debug_struct.field("error_table", &self.error_table);
1766        debug_struct.field("load_config", &self.load_config);
1767        if !self._unknown_fields.is_empty() {
1768            debug_struct.field("_unknown_fields", &self._unknown_fields);
1769        }
1770        debug_struct.finish()
1771    }
1772}
1773
1774impl std::fmt::Debug
1775    for super::workflow_invocation_action::data_preparation_action::ActionErrorTable
1776{
1777    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1778        let mut debug_struct = f.debug_struct("ActionErrorTable");
1779        debug_struct.field("target", &self.target);
1780        debug_struct.field("retention_days", &self.retention_days);
1781        if !self._unknown_fields.is_empty() {
1782            debug_struct.field("_unknown_fields", &self._unknown_fields);
1783        }
1784        debug_struct.finish()
1785    }
1786}
1787
1788impl std::fmt::Debug
1789    for super::workflow_invocation_action::data_preparation_action::ActionLoadConfig
1790{
1791    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1792        let mut debug_struct = f.debug_struct("ActionLoadConfig");
1793        debug_struct.field("mode", &self.mode);
1794        if !self._unknown_fields.is_empty() {
1795            debug_struct.field("_unknown_fields", &self._unknown_fields);
1796        }
1797        debug_struct.finish()
1798    }
1799}
1800
1801impl std::fmt::Debug
1802    for super::workflow_invocation_action::data_preparation_action::ActionSimpleLoadMode
1803{
1804    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1805        let mut debug_struct = f.debug_struct("ActionSimpleLoadMode");
1806        if !self._unknown_fields.is_empty() {
1807            debug_struct.field("_unknown_fields", &self._unknown_fields);
1808        }
1809        debug_struct.finish()
1810    }
1811}
1812
1813impl std::fmt::Debug
1814    for super::workflow_invocation_action::data_preparation_action::ActionIncrementalLoadMode
1815{
1816    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1817        let mut debug_struct = f.debug_struct("ActionIncrementalLoadMode");
1818        debug_struct.field("column", &self.column);
1819        if !self._unknown_fields.is_empty() {
1820            debug_struct.field("_unknown_fields", &self._unknown_fields);
1821        }
1822        debug_struct.finish()
1823    }
1824}
1825
1826impl std::fmt::Debug for super::QueryWorkflowInvocationActionsRequest {
1827    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1828        let mut debug_struct = f.debug_struct("QueryWorkflowInvocationActionsRequest");
1829        debug_struct.field("name", &self.name);
1830        debug_struct.field("page_size", &self.page_size);
1831        debug_struct.field("page_token", &self.page_token);
1832        if !self._unknown_fields.is_empty() {
1833            debug_struct.field("_unknown_fields", &self._unknown_fields);
1834        }
1835        debug_struct.finish()
1836    }
1837}
1838
1839impl std::fmt::Debug for super::QueryWorkflowInvocationActionsResponse {
1840    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1841        let mut debug_struct = f.debug_struct("QueryWorkflowInvocationActionsResponse");
1842        debug_struct.field(
1843            "workflow_invocation_actions",
1844            &self.workflow_invocation_actions,
1845        );
1846        debug_struct.field("next_page_token", &self.next_page_token);
1847        if !self._unknown_fields.is_empty() {
1848            debug_struct.field("_unknown_fields", &self._unknown_fields);
1849        }
1850        debug_struct.finish()
1851    }
1852}
1853
1854impl std::fmt::Debug for super::Config {
1855    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1856        let mut debug_struct = f.debug_struct("Config");
1857        debug_struct.field("name", &self.name);
1858        debug_struct.field("default_kms_key_name", &self.default_kms_key_name);
1859        debug_struct.field("internal_metadata", &self.internal_metadata);
1860        if !self._unknown_fields.is_empty() {
1861            debug_struct.field("_unknown_fields", &self._unknown_fields);
1862        }
1863        debug_struct.finish()
1864    }
1865}
1866
1867impl std::fmt::Debug for super::GetConfigRequest {
1868    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1869        let mut debug_struct = f.debug_struct("GetConfigRequest");
1870        debug_struct.field("name", &self.name);
1871        if !self._unknown_fields.is_empty() {
1872            debug_struct.field("_unknown_fields", &self._unknown_fields);
1873        }
1874        debug_struct.finish()
1875    }
1876}
1877
1878impl std::fmt::Debug for super::UpdateConfigRequest {
1879    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1880        let mut debug_struct = f.debug_struct("UpdateConfigRequest");
1881        debug_struct.field("config", &self.config);
1882        debug_struct.field("update_mask", &self.update_mask);
1883        if !self._unknown_fields.is_empty() {
1884            debug_struct.field("_unknown_fields", &self._unknown_fields);
1885        }
1886        debug_struct.finish()
1887    }
1888}
1889
1890impl std::fmt::Debug for super::Folder {
1891    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1892        let mut debug_struct = f.debug_struct("Folder");
1893        debug_struct.field("name", &self.name);
1894        debug_struct.field("display_name", &self.display_name);
1895        debug_struct.field("containing_folder", &self.containing_folder);
1896        debug_struct.field("team_folder_name", &self.team_folder_name);
1897        debug_struct.field("create_time", &self.create_time);
1898        debug_struct.field("update_time", &self.update_time);
1899        debug_struct.field("internal_metadata", &self.internal_metadata);
1900        debug_struct.field("creator_iam_principal", &self.creator_iam_principal);
1901        if !self._unknown_fields.is_empty() {
1902            debug_struct.field("_unknown_fields", &self._unknown_fields);
1903        }
1904        debug_struct.finish()
1905    }
1906}
1907
1908impl std::fmt::Debug for super::CreateFolderRequest {
1909    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1910        let mut debug_struct = f.debug_struct("CreateFolderRequest");
1911        debug_struct.field("parent", &self.parent);
1912        debug_struct.field("folder", &self.folder);
1913        if !self._unknown_fields.is_empty() {
1914            debug_struct.field("_unknown_fields", &self._unknown_fields);
1915        }
1916        debug_struct.finish()
1917    }
1918}
1919
1920impl std::fmt::Debug for super::MoveFolderRequest {
1921    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1922        let mut debug_struct = f.debug_struct("MoveFolderRequest");
1923        debug_struct.field("name", &self.name);
1924        debug_struct.field(
1925            "destination_containing_folder",
1926            &self.destination_containing_folder,
1927        );
1928        if !self._unknown_fields.is_empty() {
1929            debug_struct.field("_unknown_fields", &self._unknown_fields);
1930        }
1931        debug_struct.finish()
1932    }
1933}
1934
1935impl std::fmt::Debug for super::GetFolderRequest {
1936    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1937        let mut debug_struct = f.debug_struct("GetFolderRequest");
1938        debug_struct.field("name", &self.name);
1939        if !self._unknown_fields.is_empty() {
1940            debug_struct.field("_unknown_fields", &self._unknown_fields);
1941        }
1942        debug_struct.finish()
1943    }
1944}
1945
1946impl std::fmt::Debug for super::UpdateFolderRequest {
1947    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1948        let mut debug_struct = f.debug_struct("UpdateFolderRequest");
1949        debug_struct.field("update_mask", &self.update_mask);
1950        debug_struct.field("folder", &self.folder);
1951        if !self._unknown_fields.is_empty() {
1952            debug_struct.field("_unknown_fields", &self._unknown_fields);
1953        }
1954        debug_struct.finish()
1955    }
1956}
1957
1958impl std::fmt::Debug for super::DeleteFolderRequest {
1959    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1960        let mut debug_struct = f.debug_struct("DeleteFolderRequest");
1961        debug_struct.field("name", &self.name);
1962        if !self._unknown_fields.is_empty() {
1963            debug_struct.field("_unknown_fields", &self._unknown_fields);
1964        }
1965        debug_struct.finish()
1966    }
1967}
1968
1969impl std::fmt::Debug for super::DeleteFolderTreeRequest {
1970    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1971        let mut debug_struct = f.debug_struct("DeleteFolderTreeRequest");
1972        debug_struct.field("name", &self.name);
1973        debug_struct.field("force", &self.force);
1974        if !self._unknown_fields.is_empty() {
1975            debug_struct.field("_unknown_fields", &self._unknown_fields);
1976        }
1977        debug_struct.finish()
1978    }
1979}
1980
1981impl std::fmt::Debug for super::DeleteTeamFolderTreeRequest {
1982    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1983        let mut debug_struct = f.debug_struct("DeleteTeamFolderTreeRequest");
1984        debug_struct.field("name", &self.name);
1985        debug_struct.field("force", &self.force);
1986        if !self._unknown_fields.is_empty() {
1987            debug_struct.field("_unknown_fields", &self._unknown_fields);
1988        }
1989        debug_struct.finish()
1990    }
1991}
1992
1993impl std::fmt::Debug for super::DeleteFolderTreeMetadata {
1994    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
1995        let mut debug_struct = f.debug_struct("DeleteFolderTreeMetadata");
1996        debug_struct.field("create_time", &self.create_time);
1997        debug_struct.field("end_time", &self.end_time);
1998        debug_struct.field("target", &self.target);
1999        debug_struct.field("state", &self.state);
2000        debug_struct.field("percent_complete", &self.percent_complete);
2001        if !self._unknown_fields.is_empty() {
2002            debug_struct.field("_unknown_fields", &self._unknown_fields);
2003        }
2004        debug_struct.finish()
2005    }
2006}
2007
2008impl std::fmt::Debug for super::QueryFolderContentsRequest {
2009    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2010        let mut debug_struct = f.debug_struct("QueryFolderContentsRequest");
2011        debug_struct.field("folder", &self.folder);
2012        debug_struct.field("page_size", &self.page_size);
2013        debug_struct.field("page_token", &self.page_token);
2014        debug_struct.field("order_by", &self.order_by);
2015        debug_struct.field("filter", &self.filter);
2016        if !self._unknown_fields.is_empty() {
2017            debug_struct.field("_unknown_fields", &self._unknown_fields);
2018        }
2019        debug_struct.finish()
2020    }
2021}
2022
2023impl std::fmt::Debug for super::QueryFolderContentsResponse {
2024    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2025        let mut debug_struct = f.debug_struct("QueryFolderContentsResponse");
2026        debug_struct.field("entries", &self.entries);
2027        debug_struct.field("next_page_token", &self.next_page_token);
2028        if !self._unknown_fields.is_empty() {
2029            debug_struct.field("_unknown_fields", &self._unknown_fields);
2030        }
2031        debug_struct.finish()
2032    }
2033}
2034
2035impl std::fmt::Debug for super::query_folder_contents_response::FolderContentsEntry {
2036    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2037        let mut debug_struct = f.debug_struct("FolderContentsEntry");
2038        debug_struct.field("entry", &self.entry);
2039        if !self._unknown_fields.is_empty() {
2040            debug_struct.field("_unknown_fields", &self._unknown_fields);
2041        }
2042        debug_struct.finish()
2043    }
2044}
2045
2046impl std::fmt::Debug for super::QueryUserRootContentsRequest {
2047    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2048        let mut debug_struct = f.debug_struct("QueryUserRootContentsRequest");
2049        debug_struct.field("location", &self.location);
2050        debug_struct.field("page_size", &self.page_size);
2051        debug_struct.field("page_token", &self.page_token);
2052        debug_struct.field("order_by", &self.order_by);
2053        debug_struct.field("filter", &self.filter);
2054        if !self._unknown_fields.is_empty() {
2055            debug_struct.field("_unknown_fields", &self._unknown_fields);
2056        }
2057        debug_struct.finish()
2058    }
2059}
2060
2061impl std::fmt::Debug for super::QueryUserRootContentsResponse {
2062    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2063        let mut debug_struct = f.debug_struct("QueryUserRootContentsResponse");
2064        debug_struct.field("entries", &self.entries);
2065        debug_struct.field("next_page_token", &self.next_page_token);
2066        if !self._unknown_fields.is_empty() {
2067            debug_struct.field("_unknown_fields", &self._unknown_fields);
2068        }
2069        debug_struct.finish()
2070    }
2071}
2072
2073impl std::fmt::Debug for super::query_user_root_contents_response::RootContentsEntry {
2074    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2075        let mut debug_struct = f.debug_struct("RootContentsEntry");
2076        debug_struct.field("entry", &self.entry);
2077        if !self._unknown_fields.is_empty() {
2078            debug_struct.field("_unknown_fields", &self._unknown_fields);
2079        }
2080        debug_struct.finish()
2081    }
2082}
2083
2084impl std::fmt::Debug for super::TeamFolder {
2085    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2086        let mut debug_struct = f.debug_struct("TeamFolder");
2087        debug_struct.field("name", &self.name);
2088        debug_struct.field("display_name", &self.display_name);
2089        debug_struct.field("create_time", &self.create_time);
2090        debug_struct.field("update_time", &self.update_time);
2091        debug_struct.field("internal_metadata", &self.internal_metadata);
2092        debug_struct.field("creator_iam_principal", &self.creator_iam_principal);
2093        if !self._unknown_fields.is_empty() {
2094            debug_struct.field("_unknown_fields", &self._unknown_fields);
2095        }
2096        debug_struct.finish()
2097    }
2098}
2099
2100impl std::fmt::Debug for super::CreateTeamFolderRequest {
2101    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2102        let mut debug_struct = f.debug_struct("CreateTeamFolderRequest");
2103        debug_struct.field("parent", &self.parent);
2104        debug_struct.field("team_folder", &self.team_folder);
2105        if !self._unknown_fields.is_empty() {
2106            debug_struct.field("_unknown_fields", &self._unknown_fields);
2107        }
2108        debug_struct.finish()
2109    }
2110}
2111
2112impl std::fmt::Debug for super::GetTeamFolderRequest {
2113    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2114        let mut debug_struct = f.debug_struct("GetTeamFolderRequest");
2115        debug_struct.field("name", &self.name);
2116        if !self._unknown_fields.is_empty() {
2117            debug_struct.field("_unknown_fields", &self._unknown_fields);
2118        }
2119        debug_struct.finish()
2120    }
2121}
2122
2123impl std::fmt::Debug for super::UpdateTeamFolderRequest {
2124    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2125        let mut debug_struct = f.debug_struct("UpdateTeamFolderRequest");
2126        debug_struct.field("update_mask", &self.update_mask);
2127        debug_struct.field("team_folder", &self.team_folder);
2128        if !self._unknown_fields.is_empty() {
2129            debug_struct.field("_unknown_fields", &self._unknown_fields);
2130        }
2131        debug_struct.finish()
2132    }
2133}
2134
2135impl std::fmt::Debug for super::DeleteTeamFolderRequest {
2136    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2137        let mut debug_struct = f.debug_struct("DeleteTeamFolderRequest");
2138        debug_struct.field("name", &self.name);
2139        if !self._unknown_fields.is_empty() {
2140            debug_struct.field("_unknown_fields", &self._unknown_fields);
2141        }
2142        debug_struct.finish()
2143    }
2144}
2145
2146impl std::fmt::Debug for super::QueryTeamFolderContentsRequest {
2147    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2148        let mut debug_struct = f.debug_struct("QueryTeamFolderContentsRequest");
2149        debug_struct.field("team_folder", &self.team_folder);
2150        debug_struct.field("page_size", &self.page_size);
2151        debug_struct.field("page_token", &self.page_token);
2152        debug_struct.field("order_by", &self.order_by);
2153        debug_struct.field("filter", &self.filter);
2154        if !self._unknown_fields.is_empty() {
2155            debug_struct.field("_unknown_fields", &self._unknown_fields);
2156        }
2157        debug_struct.finish()
2158    }
2159}
2160
2161impl std::fmt::Debug for super::QueryTeamFolderContentsResponse {
2162    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2163        let mut debug_struct = f.debug_struct("QueryTeamFolderContentsResponse");
2164        debug_struct.field("entries", &self.entries);
2165        debug_struct.field("next_page_token", &self.next_page_token);
2166        if !self._unknown_fields.is_empty() {
2167            debug_struct.field("_unknown_fields", &self._unknown_fields);
2168        }
2169        debug_struct.finish()
2170    }
2171}
2172
2173impl std::fmt::Debug for super::query_team_folder_contents_response::TeamFolderContentsEntry {
2174    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2175        let mut debug_struct = f.debug_struct("TeamFolderContentsEntry");
2176        debug_struct.field("entry", &self.entry);
2177        if !self._unknown_fields.is_empty() {
2178            debug_struct.field("_unknown_fields", &self._unknown_fields);
2179        }
2180        debug_struct.finish()
2181    }
2182}
2183
2184impl std::fmt::Debug for super::SearchTeamFoldersRequest {
2185    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2186        let mut debug_struct = f.debug_struct("SearchTeamFoldersRequest");
2187        debug_struct.field("location", &self.location);
2188        debug_struct.field("page_size", &self.page_size);
2189        debug_struct.field("page_token", &self.page_token);
2190        debug_struct.field("order_by", &self.order_by);
2191        debug_struct.field("filter", &self.filter);
2192        if !self._unknown_fields.is_empty() {
2193            debug_struct.field("_unknown_fields", &self._unknown_fields);
2194        }
2195        debug_struct.finish()
2196    }
2197}
2198
2199impl std::fmt::Debug for super::SearchTeamFoldersResponse {
2200    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2201        let mut debug_struct = f.debug_struct("SearchTeamFoldersResponse");
2202        debug_struct.field("results", &self.results);
2203        debug_struct.field("next_page_token", &self.next_page_token);
2204        if !self._unknown_fields.is_empty() {
2205            debug_struct.field("_unknown_fields", &self._unknown_fields);
2206        }
2207        debug_struct.finish()
2208    }
2209}
2210
2211impl std::fmt::Debug for super::search_team_folders_response::TeamFolderSearchResult {
2212    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2213        let mut debug_struct = f.debug_struct("TeamFolderSearchResult");
2214        debug_struct.field("entry", &self.entry);
2215        if !self._unknown_fields.is_empty() {
2216            debug_struct.field("_unknown_fields", &self._unknown_fields);
2217        }
2218        debug_struct.finish()
2219    }
2220}
2221
2222impl std::fmt::Debug for super::MoveFolderMetadata {
2223    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2224        let mut debug_struct = f.debug_struct("MoveFolderMetadata");
2225        debug_struct.field("create_time", &self.create_time);
2226        debug_struct.field("end_time", &self.end_time);
2227        debug_struct.field("target", &self.target);
2228        debug_struct.field("state", &self.state);
2229        debug_struct.field("percent_complete", &self.percent_complete);
2230        if !self._unknown_fields.is_empty() {
2231            debug_struct.field("_unknown_fields", &self._unknown_fields);
2232        }
2233        debug_struct.finish()
2234    }
2235}
2236
2237impl std::fmt::Debug for super::MoveRepositoryMetadata {
2238    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2239        let mut debug_struct = f.debug_struct("MoveRepositoryMetadata");
2240        debug_struct.field("create_time", &self.create_time);
2241        debug_struct.field("end_time", &self.end_time);
2242        debug_struct.field("target", &self.target);
2243        debug_struct.field("state", &self.state);
2244        debug_struct.field("percent_complete", &self.percent_complete);
2245        if !self._unknown_fields.is_empty() {
2246            debug_struct.field("_unknown_fields", &self._unknown_fields);
2247        }
2248        debug_struct.finish()
2249    }
2250}