#[allow(unused_imports)]
use super::*;
impl std::fmt::Debug for super::DataSourceParameter {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DataSourceParameter");
debug_struct.field("param_id", &self.param_id);
debug_struct.field("display_name", &self.display_name);
debug_struct.field("description", &self.description);
debug_struct.field("r#type", &self.r#type);
debug_struct.field("required", &self.required);
debug_struct.field("repeated", &self.repeated);
debug_struct.field("validation_regex", &self.validation_regex);
debug_struct.field("allowed_values", &self.allowed_values);
debug_struct.field("min_value", &self.min_value);
debug_struct.field("max_value", &self.max_value);
debug_struct.field("fields", &self.fields);
debug_struct.field("validation_description", &self.validation_description);
debug_struct.field("validation_help_url", &self.validation_help_url);
debug_struct.field("immutable", &self.immutable);
debug_struct.field("recurse", &self.recurse);
debug_struct.field("deprecated", &self.deprecated);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DataSource {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DataSource");
debug_struct.field("name", &self.name);
debug_struct.field("data_source_id", &self.data_source_id);
debug_struct.field("display_name", &self.display_name);
debug_struct.field("description", &self.description);
debug_struct.field("client_id", &self.client_id);
debug_struct.field("scopes", &self.scopes);
debug_struct.field("transfer_type", &self.transfer_type);
debug_struct.field(
"supports_multiple_transfers",
&self.supports_multiple_transfers,
);
debug_struct.field("update_deadline_seconds", &self.update_deadline_seconds);
debug_struct.field("default_schedule", &self.default_schedule);
debug_struct.field("supports_custom_schedule", &self.supports_custom_schedule);
debug_struct.field("parameters", &self.parameters);
debug_struct.field("help_url", &self.help_url);
debug_struct.field("authorization_type", &self.authorization_type);
debug_struct.field("data_refresh_type", &self.data_refresh_type);
debug_struct.field(
"default_data_refresh_window_days",
&self.default_data_refresh_window_days,
);
debug_struct.field("manual_runs_disabled", &self.manual_runs_disabled);
debug_struct.field("minimum_schedule_interval", &self.minimum_schedule_interval);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetDataSourceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetDataSourceRequest");
debug_struct.field("name", &self.name);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListDataSourcesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListDataSourcesRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("page_size", &self.page_size);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListDataSourcesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListDataSourcesResponse");
debug_struct.field("data_sources", &self.data_sources);
debug_struct.field("next_page_token", &self.next_page_token);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CreateTransferConfigRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateTransferConfigRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("transfer_config", &self.transfer_config);
debug_struct.field("authorization_code", &self.authorization_code);
debug_struct.field("version_info", &self.version_info);
debug_struct.field("service_account_name", &self.service_account_name);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateTransferConfigRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateTransferConfigRequest");
debug_struct.field("transfer_config", &self.transfer_config);
debug_struct.field("authorization_code", &self.authorization_code);
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("version_info", &self.version_info);
debug_struct.field("service_account_name", &self.service_account_name);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetTransferConfigRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetTransferConfigRequest");
debug_struct.field("name", &self.name);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteTransferConfigRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteTransferConfigRequest");
debug_struct.field("name", &self.name);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetTransferRunRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetTransferRunRequest");
debug_struct.field("name", &self.name);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteTransferRunRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteTransferRunRequest");
debug_struct.field("name", &self.name);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListTransferConfigsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListTransferConfigsRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("data_source_ids", &self.data_source_ids);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("page_size", &self.page_size);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListTransferConfigsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListTransferConfigsResponse");
debug_struct.field("transfer_configs", &self.transfer_configs);
debug_struct.field("next_page_token", &self.next_page_token);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListTransferRunsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListTransferRunsRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("states", &self.states);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("run_attempt", &self.run_attempt);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListTransferRunsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListTransferRunsResponse");
debug_struct.field("transfer_runs", &self.transfer_runs);
debug_struct.field("next_page_token", &self.next_page_token);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListTransferLogsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListTransferLogsRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("message_types", &self.message_types);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListTransferLogsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListTransferLogsResponse");
debug_struct.field("transfer_messages", &self.transfer_messages);
debug_struct.field("next_page_token", &self.next_page_token);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CheckValidCredsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CheckValidCredsRequest");
debug_struct.field("name", &self.name);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CheckValidCredsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CheckValidCredsResponse");
debug_struct.field("has_valid_creds", &self.has_valid_creds);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ScheduleTransferRunsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ScheduleTransferRunsRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("start_time", &self.start_time);
debug_struct.field("end_time", &self.end_time);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ScheduleTransferRunsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ScheduleTransferRunsResponse");
debug_struct.field("runs", &self.runs);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::StartManualTransferRunsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("StartManualTransferRunsRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("time", &self.time);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::start_manual_transfer_runs_request::TimeRange {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("TimeRange");
debug_struct.field("start_time", &self.start_time);
debug_struct.field("end_time", &self.end_time);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::StartManualTransferRunsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("StartManualTransferRunsResponse");
debug_struct.field("runs", &self.runs);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::EnrollDataSourcesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("EnrollDataSourcesRequest");
debug_struct.field("name", &self.name);
debug_struct.field("data_source_ids", &self.data_source_ids);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UnenrollDataSourcesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UnenrollDataSourcesRequest");
debug_struct.field("name", &self.name);
debug_struct.field("data_source_ids", &self.data_source_ids);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::EmailPreferences {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("EmailPreferences");
debug_struct.field("enable_failure_email", &self.enable_failure_email);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ScheduleOptions {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ScheduleOptions");
debug_struct.field("disable_auto_scheduling", &self.disable_auto_scheduling);
debug_struct.field("start_time", &self.start_time);
debug_struct.field("end_time", &self.end_time);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ScheduleOptionsV2 {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ScheduleOptionsV2");
debug_struct.field("schedule", &self.schedule);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::TimeBasedSchedule {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("TimeBasedSchedule");
debug_struct.field("schedule", &self.schedule);
debug_struct.field("start_time", &self.start_time);
debug_struct.field("end_time", &self.end_time);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ManualSchedule {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ManualSchedule");
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::EventDrivenSchedule {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("EventDrivenSchedule");
debug_struct.field("pubsub_subscription", &self.pubsub_subscription);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UserInfo {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UserInfo");
debug_struct.field("email", &self.email);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::TransferConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("TransferConfig");
debug_struct.field("name", &self.name);
debug_struct.field("display_name", &self.display_name);
debug_struct.field("data_source_id", &self.data_source_id);
debug_struct.field("params", &self.params);
debug_struct.field("schedule", &self.schedule);
debug_struct.field("schedule_options", &self.schedule_options);
debug_struct.field("schedule_options_v2", &self.schedule_options_v2);
debug_struct.field("data_refresh_window_days", &self.data_refresh_window_days);
debug_struct.field("disabled", &self.disabled);
debug_struct.field("update_time", &self.update_time);
debug_struct.field("next_run_time", &self.next_run_time);
debug_struct.field("state", &self.state);
debug_struct.field("user_id", &self.user_id);
debug_struct.field("dataset_region", &self.dataset_region);
debug_struct.field("notification_pubsub_topic", &self.notification_pubsub_topic);
debug_struct.field("email_preferences", &self.email_preferences);
debug_struct.field("owner_info", &self.owner_info);
debug_struct.field("encryption_configuration", &self.encryption_configuration);
debug_struct.field("error", &self.error);
debug_struct.field("destination", &self.destination);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::EncryptionConfiguration {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("EncryptionConfiguration");
debug_struct.field("kms_key_name", &self.kms_key_name);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::TransferRun {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("TransferRun");
debug_struct.field("name", &self.name);
debug_struct.field("schedule_time", &self.schedule_time);
debug_struct.field("run_time", &self.run_time);
debug_struct.field("error_status", &self.error_status);
debug_struct.field("start_time", &self.start_time);
debug_struct.field("end_time", &self.end_time);
debug_struct.field("update_time", &self.update_time);
debug_struct.field("params", &self.params);
debug_struct.field("data_source_id", &self.data_source_id);
debug_struct.field("state", &self.state);
debug_struct.field("user_id", &self.user_id);
debug_struct.field("schedule", &self.schedule);
debug_struct.field("notification_pubsub_topic", &self.notification_pubsub_topic);
debug_struct.field("email_preferences", &self.email_preferences);
debug_struct.field("destination", &self.destination);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::TransferMessage {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("TransferMessage");
debug_struct.field("message_time", &self.message_time);
debug_struct.field("severity", &self.severity);
debug_struct.field("message_text", &self.message_text);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}