#[allow(unused_imports)]
use super::*;
impl std::fmt::Debug for super::CreateConnectionRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateConnectionRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("connection_id", &self.connection_id);
debug_struct.field("connection", &self.connection);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetConnectionRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetConnectionRequest");
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::ListConnectionsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListConnectionsRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.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::ListConnectionsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListConnectionsResponse");
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("connections", &self.connections);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateConnectionRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateConnectionRequest");
debug_struct.field("name", &self.name);
debug_struct.field("connection", &self.connection);
debug_struct.field("update_mask", &self.update_mask);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteConnectionRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteConnectionRequest");
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::Connection {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Connection");
debug_struct.field("name", &self.name);
debug_struct.field("friendly_name", &self.friendly_name);
debug_struct.field("description", &self.description);
debug_struct.field("creation_time", &self.creation_time);
debug_struct.field("last_modified_time", &self.last_modified_time);
debug_struct.field("has_credential", &self.has_credential);
debug_struct.field("properties", &self.properties);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CloudSqlProperties {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CloudSqlProperties");
debug_struct.field("instance_id", &self.instance_id);
debug_struct.field("database", &self.database);
debug_struct.field("r#type", &self.r#type);
debug_struct.field("credential", &self.credential);
debug_struct.field("service_account_id", &self.service_account_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CloudSqlCredential {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CloudSqlCredential");
debug_struct.field("username", &self.username);
debug_struct.field("password", &self.password);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CloudSpannerProperties {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CloudSpannerProperties");
debug_struct.field("database", &self.database);
debug_struct.field("use_parallelism", &self.use_parallelism);
debug_struct.field("max_parallelism", &self.max_parallelism);
debug_struct.field("use_serverless_analytics", &self.use_serverless_analytics);
debug_struct.field("use_data_boost", &self.use_data_boost);
debug_struct.field("database_role", &self.database_role);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::AwsProperties {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("AwsProperties");
debug_struct.field("authentication_method", &self.authentication_method);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::AwsCrossAccountRole {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("AwsCrossAccountRole");
debug_struct.field("iam_role_id", &self.iam_role_id);
debug_struct.field("iam_user_id", &self.iam_user_id);
debug_struct.field("external_id", &self.external_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::AwsAccessRole {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("AwsAccessRole");
debug_struct.field("iam_role_id", &self.iam_role_id);
debug_struct.field("identity", &self.identity);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::AzureProperties {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("AzureProperties");
debug_struct.field("application", &self.application);
debug_struct.field("client_id", &self.client_id);
debug_struct.field("object_id", &self.object_id);
debug_struct.field("customer_tenant_id", &self.customer_tenant_id);
debug_struct.field("redirect_uri", &self.redirect_uri);
debug_struct.field(
"federated_application_client_id",
&self.federated_application_client_id,
);
debug_struct.field("identity", &self.identity);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CloudResourceProperties {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CloudResourceProperties");
debug_struct.field("service_account_id", &self.service_account_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::MetastoreServiceConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("MetastoreServiceConfig");
debug_struct.field("metastore_service", &self.metastore_service);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::SparkHistoryServerConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SparkHistoryServerConfig");
debug_struct.field("dataproc_cluster", &self.dataproc_cluster);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::SparkProperties {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SparkProperties");
debug_struct.field("service_account_id", &self.service_account_id);
debug_struct.field("metastore_service_config", &self.metastore_service_config);
debug_struct.field(
"spark_history_server_config",
&self.spark_history_server_config,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::SalesforceDataCloudProperties {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SalesforceDataCloudProperties");
debug_struct.field("instance_uri", &self.instance_uri);
debug_struct.field("identity", &self.identity);
debug_struct.field("tenant_id", &self.tenant_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}