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