#[allow(unused_imports)]
use super::*;
impl std::fmt::Debug for super::ListActiveDirectoriesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListActiveDirectoriesRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("filter", &self.filter);
debug_struct.field("order_by", &self.order_by);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListActiveDirectoriesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListActiveDirectoriesResponse");
debug_struct.field("active_directories", &self.active_directories);
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("unreachable", &self.unreachable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetActiveDirectoryRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetActiveDirectoryRequest");
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::CreateActiveDirectoryRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateActiveDirectoryRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("active_directory", &self.active_directory);
debug_struct.field("active_directory_id", &self.active_directory_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateActiveDirectoryRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateActiveDirectoryRequest");
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("active_directory", &self.active_directory);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteActiveDirectoryRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteActiveDirectoryRequest");
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::ActiveDirectory {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ActiveDirectory");
debug_struct.field("name", &self.name);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("state", &self.state);
debug_struct.field("domain", &self.domain);
debug_struct.field("site", &self.site);
debug_struct.field("dns", &self.dns);
debug_struct.field("net_bios_prefix", &self.net_bios_prefix);
debug_struct.field("organizational_unit", &self.organizational_unit);
debug_struct.field("aes_encryption", &self.aes_encryption);
debug_struct.field("username", &self.username);
debug_struct.field("password", &self.password);
debug_struct.field("backup_operators", &self.backup_operators);
debug_struct.field("administrators", &self.administrators);
debug_struct.field("security_operators", &self.security_operators);
debug_struct.field("kdc_hostname", &self.kdc_hostname);
debug_struct.field("kdc_ip", &self.kdc_ip);
debug_struct.field("nfs_users_with_ldap", &self.nfs_users_with_ldap);
debug_struct.field("description", &self.description);
debug_struct.field("ldap_signing", &self.ldap_signing);
debug_struct.field("encrypt_dc_connections", &self.encrypt_dc_connections);
debug_struct.field("labels", &self.labels);
debug_struct.field("state_details", &self.state_details);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::Backup {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Backup");
debug_struct.field("name", &self.name);
debug_struct.field("state", &self.state);
debug_struct.field("description", &self.description);
debug_struct.field("volume_usage_bytes", &self.volume_usage_bytes);
debug_struct.field("backup_type", &self.backup_type);
debug_struct.field("source_volume", &self.source_volume);
debug_struct.field("source_snapshot", &self.source_snapshot);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("labels", &self.labels);
debug_struct.field("chain_storage_bytes", &self.chain_storage_bytes);
debug_struct.field("satisfies_pzs", &self.satisfies_pzs);
debug_struct.field("satisfies_pzi", &self.satisfies_pzi);
debug_struct.field("volume_region", &self.volume_region);
debug_struct.field("backup_region", &self.backup_region);
debug_struct.field(
"enforced_retention_end_time",
&self.enforced_retention_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::ListBackupsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListBackupsRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("order_by", &self.order_by);
debug_struct.field("filter", &self.filter);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListBackupsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListBackupsResponse");
debug_struct.field("backups", &self.backups);
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("unreachable", &self.unreachable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetBackupRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetBackupRequest");
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::CreateBackupRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateBackupRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("backup_id", &self.backup_id);
debug_struct.field("backup", &self.backup);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteBackupRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteBackupRequest");
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::UpdateBackupRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateBackupRequest");
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("backup", &self.backup);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::BackupPolicy {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("BackupPolicy");
debug_struct.field("name", &self.name);
debug_struct.field("daily_backup_limit", &self.daily_backup_limit);
debug_struct.field("weekly_backup_limit", &self.weekly_backup_limit);
debug_struct.field("monthly_backup_limit", &self.monthly_backup_limit);
debug_struct.field("description", &self.description);
debug_struct.field("enabled", &self.enabled);
debug_struct.field("assigned_volume_count", &self.assigned_volume_count);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("labels", &self.labels);
debug_struct.field("state", &self.state);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CreateBackupPolicyRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateBackupPolicyRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("backup_policy", &self.backup_policy);
debug_struct.field("backup_policy_id", &self.backup_policy_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetBackupPolicyRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetBackupPolicyRequest");
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::ListBackupPoliciesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListBackupPoliciesRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("filter", &self.filter);
debug_struct.field("order_by", &self.order_by);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListBackupPoliciesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListBackupPoliciesResponse");
debug_struct.field("backup_policies", &self.backup_policies);
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("unreachable", &self.unreachable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateBackupPolicyRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateBackupPolicyRequest");
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("backup_policy", &self.backup_policy);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteBackupPolicyRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteBackupPolicyRequest");
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::BackupVault {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("BackupVault");
debug_struct.field("name", &self.name);
debug_struct.field("state", &self.state);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("description", &self.description);
debug_struct.field("labels", &self.labels);
debug_struct.field("backup_vault_type", &self.backup_vault_type);
debug_struct.field("source_region", &self.source_region);
debug_struct.field("backup_region", &self.backup_region);
debug_struct.field("source_backup_vault", &self.source_backup_vault);
debug_struct.field("destination_backup_vault", &self.destination_backup_vault);
debug_struct.field("backup_retention_policy", &self.backup_retention_policy);
debug_struct.field("kms_config", &self.kms_config);
debug_struct.field("encryption_state", &self.encryption_state);
debug_struct.field(
"backups_crypto_key_version",
&self.backups_crypto_key_version,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::backup_vault::BackupRetentionPolicy {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("BackupRetentionPolicy");
debug_struct.field(
"backup_minimum_enforced_retention_days",
&self.backup_minimum_enforced_retention_days,
);
debug_struct.field("daily_backup_immutable", &self.daily_backup_immutable);
debug_struct.field("weekly_backup_immutable", &self.weekly_backup_immutable);
debug_struct.field("monthly_backup_immutable", &self.monthly_backup_immutable);
debug_struct.field("manual_backup_immutable", &self.manual_backup_immutable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetBackupVaultRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetBackupVaultRequest");
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::ListBackupVaultsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListBackupVaultsRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("order_by", &self.order_by);
debug_struct.field("filter", &self.filter);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListBackupVaultsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListBackupVaultsResponse");
debug_struct.field("backup_vaults", &self.backup_vaults);
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("unreachable", &self.unreachable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CreateBackupVaultRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateBackupVaultRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("backup_vault_id", &self.backup_vault_id);
debug_struct.field("backup_vault", &self.backup_vault);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteBackupVaultRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteBackupVaultRequest");
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::UpdateBackupVaultRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateBackupVaultRequest");
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("backup_vault", &self.backup_vault);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::OperationMetadata {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("OperationMetadata");
debug_struct.field("create_time", &self.create_time);
debug_struct.field("end_time", &self.end_time);
debug_struct.field("target", &self.target);
debug_struct.field("verb", &self.verb);
debug_struct.field("status_message", &self.status_message);
debug_struct.field("requested_cancellation", &self.requested_cancellation);
debug_struct.field("api_version", &self.api_version);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::LocationMetadata {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("LocationMetadata");
debug_struct.field("supported_service_levels", &self.supported_service_levels);
debug_struct.field(
"supported_flex_performance",
&self.supported_flex_performance,
);
debug_struct.field("has_vcp", &self.has_vcp);
debug_struct.field("has_ontap_proxy", &self.has_ontap_proxy);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UserCommands {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UserCommands");
debug_struct.field("commands", &self.commands);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListHostGroupsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListHostGroupsRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("filter", &self.filter);
debug_struct.field("order_by", &self.order_by);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListHostGroupsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListHostGroupsResponse");
debug_struct.field("host_groups", &self.host_groups);
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("unreachable", &self.unreachable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetHostGroupRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetHostGroupRequest");
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::CreateHostGroupRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateHostGroupRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("host_group", &self.host_group);
debug_struct.field("host_group_id", &self.host_group_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateHostGroupRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateHostGroupRequest");
debug_struct.field("host_group", &self.host_group);
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::DeleteHostGroupRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteHostGroupRequest");
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::HostGroup {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("HostGroup");
debug_struct.field("name", &self.name);
debug_struct.field("r#type", &self.r#type);
debug_struct.field("state", &self.state);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("hosts", &self.hosts);
debug_struct.field("os_type", &self.os_type);
debug_struct.field("description", &self.description);
debug_struct.field("labels", &self.labels);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetKmsConfigRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetKmsConfigRequest");
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::ListKmsConfigsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListKmsConfigsRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("order_by", &self.order_by);
debug_struct.field("filter", &self.filter);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListKmsConfigsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListKmsConfigsResponse");
debug_struct.field("kms_configs", &self.kms_configs);
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("unreachable", &self.unreachable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CreateKmsConfigRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateKmsConfigRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("kms_config_id", &self.kms_config_id);
debug_struct.field("kms_config", &self.kms_config);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateKmsConfigRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateKmsConfigRequest");
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("kms_config", &self.kms_config);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteKmsConfigRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteKmsConfigRequest");
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::EncryptVolumesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("EncryptVolumesRequest");
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::VerifyKmsConfigRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("VerifyKmsConfigRequest");
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::VerifyKmsConfigResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("VerifyKmsConfigResponse");
debug_struct.field("healthy", &self.healthy);
debug_struct.field("health_error", &self.health_error);
debug_struct.field("instructions", &self.instructions);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::KmsConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("KmsConfig");
debug_struct.field("name", &self.name);
debug_struct.field("crypto_key_name", &self.crypto_key_name);
debug_struct.field("state", &self.state);
debug_struct.field("state_details", &self.state_details);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("description", &self.description);
debug_struct.field("labels", &self.labels);
debug_struct.field("instructions", &self.instructions);
debug_struct.field("service_account", &self.service_account);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ExecuteOntapPostRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ExecuteOntapPostRequest");
debug_struct.field("body", &self.body);
debug_struct.field("ontap_path", &self.ontap_path);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ExecuteOntapPostResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ExecuteOntapPostResponse");
debug_struct.field("body", &self.body);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ExecuteOntapGetRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ExecuteOntapGetRequest");
debug_struct.field("ontap_path", &self.ontap_path);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ExecuteOntapGetResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ExecuteOntapGetResponse");
debug_struct.field("body", &self.body);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ExecuteOntapDeleteRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ExecuteOntapDeleteRequest");
debug_struct.field("ontap_path", &self.ontap_path);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ExecuteOntapDeleteResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ExecuteOntapDeleteResponse");
debug_struct.field("body", &self.body);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ExecuteOntapPatchRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ExecuteOntapPatchRequest");
debug_struct.field("body", &self.body);
debug_struct.field("ontap_path", &self.ontap_path);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ExecuteOntapPatchResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ExecuteOntapPatchResponse");
debug_struct.field("body", &self.body);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListQuotaRulesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListQuotaRulesRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("filter", &self.filter);
debug_struct.field("order_by", &self.order_by);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListQuotaRulesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListQuotaRulesResponse");
debug_struct.field("quota_rules", &self.quota_rules);
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("unreachable", &self.unreachable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetQuotaRuleRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetQuotaRuleRequest");
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::CreateQuotaRuleRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateQuotaRuleRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("quota_rule", &self.quota_rule);
debug_struct.field("quota_rule_id", &self.quota_rule_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateQuotaRuleRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateQuotaRuleRequest");
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("quota_rule", &self.quota_rule);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteQuotaRuleRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteQuotaRuleRequest");
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::QuotaRule {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("QuotaRule");
debug_struct.field("name", &self.name);
debug_struct.field("target", &self.target);
debug_struct.field("r#type", &self.r#type);
debug_struct.field("disk_limit_mib", &self.disk_limit_mib);
debug_struct.field("state", &self.state);
debug_struct.field("state_details", &self.state_details);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("description", &self.description);
debug_struct.field("labels", &self.labels);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::TransferStats {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("TransferStats");
debug_struct.field("transfer_bytes", &self.transfer_bytes);
debug_struct.field("total_transfer_duration", &self.total_transfer_duration);
debug_struct.field("last_transfer_bytes", &self.last_transfer_bytes);
debug_struct.field("last_transfer_duration", &self.last_transfer_duration);
debug_struct.field("lag_duration", &self.lag_duration);
debug_struct.field("update_time", &self.update_time);
debug_struct.field("last_transfer_end_time", &self.last_transfer_end_time);
debug_struct.field("last_transfer_error", &self.last_transfer_error);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::Replication {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Replication");
debug_struct.field("name", &self.name);
debug_struct.field("state", &self.state);
debug_struct.field("state_details", &self.state_details);
debug_struct.field("role", &self.role);
debug_struct.field("replication_schedule", &self.replication_schedule);
debug_struct.field("mirror_state", &self.mirror_state);
debug_struct.field("healthy", &self.healthy);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("destination_volume", &self.destination_volume);
debug_struct.field("transfer_stats", &self.transfer_stats);
debug_struct.field("labels", &self.labels);
debug_struct.field("description", &self.description);
debug_struct.field(
"destination_volume_parameters",
&self.destination_volume_parameters,
);
debug_struct.field("source_volume", &self.source_volume);
debug_struct.field("hybrid_peering_details", &self.hybrid_peering_details);
debug_struct.field("cluster_location", &self.cluster_location);
debug_struct.field("hybrid_replication_type", &self.hybrid_replication_type);
debug_struct.field(
"hybrid_replication_user_commands",
&self.hybrid_replication_user_commands,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::HybridPeeringDetails {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("HybridPeeringDetails");
debug_struct.field("subnet_ip", &self.subnet_ip);
debug_struct.field("command", &self.command);
debug_struct.field("command_expiry_time", &self.command_expiry_time);
debug_struct.field("passphrase", &self.passphrase);
debug_struct.field("peer_volume_name", &self.peer_volume_name);
debug_struct.field("peer_cluster_name", &self.peer_cluster_name);
debug_struct.field("peer_svm_name", &self.peer_svm_name);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListReplicationsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListReplicationsRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("order_by", &self.order_by);
debug_struct.field("filter", &self.filter);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListReplicationsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListReplicationsResponse");
debug_struct.field("replications", &self.replications);
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("unreachable", &self.unreachable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetReplicationRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetReplicationRequest");
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::DestinationVolumeParameters {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DestinationVolumeParameters");
debug_struct.field("storage_pool", &self.storage_pool);
debug_struct.field("volume_id", &self.volume_id);
debug_struct.field("share_name", &self.share_name);
debug_struct.field("description", &self.description);
debug_struct.field("tiering_policy", &self.tiering_policy);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CreateReplicationRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateReplicationRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("replication", &self.replication);
debug_struct.field("replication_id", &self.replication_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteReplicationRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteReplicationRequest");
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::UpdateReplicationRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateReplicationRequest");
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("replication", &self.replication);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::StopReplicationRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("StopReplicationRequest");
debug_struct.field("name", &self.name);
debug_struct.field("force", &self.force);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ResumeReplicationRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ResumeReplicationRequest");
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::ReverseReplicationDirectionRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ReverseReplicationDirectionRequest");
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::EstablishPeeringRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("EstablishPeeringRequest");
debug_struct.field("name", &self.name);
debug_struct.field("peer_cluster_name", &self.peer_cluster_name);
debug_struct.field("peer_svm_name", &self.peer_svm_name);
debug_struct.field("peer_ip_addresses", &self.peer_ip_addresses);
debug_struct.field("peer_volume_name", &self.peer_volume_name);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::SyncReplicationRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SyncReplicationRequest");
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::ListSnapshotsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListSnapshotsRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("order_by", &self.order_by);
debug_struct.field("filter", &self.filter);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListSnapshotsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListSnapshotsResponse");
debug_struct.field("snapshots", &self.snapshots);
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("unreachable", &self.unreachable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetSnapshotRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetSnapshotRequest");
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::CreateSnapshotRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateSnapshotRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("snapshot", &self.snapshot);
debug_struct.field("snapshot_id", &self.snapshot_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteSnapshotRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteSnapshotRequest");
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::UpdateSnapshotRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateSnapshotRequest");
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("snapshot", &self.snapshot);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::Snapshot {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Snapshot");
debug_struct.field("name", &self.name);
debug_struct.field("state", &self.state);
debug_struct.field("state_details", &self.state_details);
debug_struct.field("description", &self.description);
debug_struct.field("used_bytes", &self.used_bytes);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("labels", &self.labels);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetStoragePoolRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetStoragePoolRequest");
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::ListStoragePoolsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListStoragePoolsRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("order_by", &self.order_by);
debug_struct.field("filter", &self.filter);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListStoragePoolsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListStoragePoolsResponse");
debug_struct.field("storage_pools", &self.storage_pools);
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("unreachable", &self.unreachable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CreateStoragePoolRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateStoragePoolRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("storage_pool_id", &self.storage_pool_id);
debug_struct.field("storage_pool", &self.storage_pool);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateStoragePoolRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateStoragePoolRequest");
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("storage_pool", &self.storage_pool);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteStoragePoolRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteStoragePoolRequest");
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::SwitchActiveReplicaZoneRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SwitchActiveReplicaZoneRequest");
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::StoragePool {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("StoragePool");
debug_struct.field("name", &self.name);
debug_struct.field("service_level", &self.service_level);
debug_struct.field("capacity_gib", &self.capacity_gib);
debug_struct.field("volume_capacity_gib", &self.volume_capacity_gib);
debug_struct.field("volume_count", &self.volume_count);
debug_struct.field("state", &self.state);
debug_struct.field("state_details", &self.state_details);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("description", &self.description);
debug_struct.field("labels", &self.labels);
debug_struct.field("network", &self.network);
debug_struct.field("active_directory", &self.active_directory);
debug_struct.field("kms_config", &self.kms_config);
debug_struct.field("ldap_enabled", &self.ldap_enabled);
debug_struct.field("psa_range", &self.psa_range);
debug_struct.field("encryption_type", &self.encryption_type);
debug_struct.field("global_access_allowed", &self.global_access_allowed);
debug_struct.field("allow_auto_tiering", &self.allow_auto_tiering);
debug_struct.field("replica_zone", &self.replica_zone);
debug_struct.field("zone", &self.zone);
debug_struct.field("satisfies_pzs", &self.satisfies_pzs);
debug_struct.field("satisfies_pzi", &self.satisfies_pzi);
debug_struct.field(
"custom_performance_enabled",
&self.custom_performance_enabled,
);
debug_struct.field("total_throughput_mibps", &self.total_throughput_mibps);
debug_struct.field("total_iops", &self.total_iops);
debug_struct.field("hot_tier_size_gib", &self.hot_tier_size_gib);
debug_struct.field(
"enable_hot_tier_auto_resize",
&self.enable_hot_tier_auto_resize,
);
debug_struct.field("qos_type", &self.qos_type);
debug_struct.field(
"available_throughput_mibps",
&self.available_throughput_mibps,
);
debug_struct.field("cold_tier_size_used_gib", &self.cold_tier_size_used_gib);
debug_struct.field("hot_tier_size_used_gib", &self.hot_tier_size_used_gib);
debug_struct.field("r#type", &self.r#type);
debug_struct.field("mode", &self.mode);
debug_struct.field("scale_type", &self.scale_type);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ValidateDirectoryServiceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ValidateDirectoryServiceRequest");
debug_struct.field("name", &self.name);
debug_struct.field("directory_service_type", &self.directory_service_type);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListVolumesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListVolumesRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("filter", &self.filter);
debug_struct.field("order_by", &self.order_by);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListVolumesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListVolumesResponse");
debug_struct.field("volumes", &self.volumes);
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("unreachable", &self.unreachable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetVolumeRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetVolumeRequest");
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::CreateVolumeRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateVolumeRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("volume_id", &self.volume_id);
debug_struct.field("volume", &self.volume);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateVolumeRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateVolumeRequest");
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("volume", &self.volume);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteVolumeRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteVolumeRequest");
debug_struct.field("name", &self.name);
debug_struct.field("force", &self.force);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::RevertVolumeRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RevertVolumeRequest");
debug_struct.field("name", &self.name);
debug_struct.field("snapshot_id", &self.snapshot_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::Volume {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Volume");
debug_struct.field("name", &self.name);
debug_struct.field("state", &self.state);
debug_struct.field("state_details", &self.state_details);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("share_name", &self.share_name);
debug_struct.field("psa_range", &self.psa_range);
debug_struct.field("storage_pool", &self.storage_pool);
debug_struct.field("network", &self.network);
debug_struct.field("service_level", &self.service_level);
debug_struct.field("capacity_gib", &self.capacity_gib);
debug_struct.field("export_policy", &self.export_policy);
debug_struct.field("protocols", &self.protocols);
debug_struct.field("smb_settings", &self.smb_settings);
debug_struct.field("mount_options", &self.mount_options);
debug_struct.field("unix_permissions", &self.unix_permissions);
debug_struct.field("labels", &self.labels);
debug_struct.field("description", &self.description);
debug_struct.field("snapshot_policy", &self.snapshot_policy);
debug_struct.field("snap_reserve", &self.snap_reserve);
debug_struct.field("snapshot_directory", &self.snapshot_directory);
debug_struct.field("used_gib", &self.used_gib);
debug_struct.field("security_style", &self.security_style);
debug_struct.field("kerberos_enabled", &self.kerberos_enabled);
debug_struct.field("ldap_enabled", &self.ldap_enabled);
debug_struct.field("active_directory", &self.active_directory);
debug_struct.field("restore_parameters", &self.restore_parameters);
debug_struct.field("kms_config", &self.kms_config);
debug_struct.field("encryption_type", &self.encryption_type);
debug_struct.field("has_replication", &self.has_replication);
debug_struct.field("backup_config", &self.backup_config);
debug_struct.field("restricted_actions", &self.restricted_actions);
debug_struct.field("large_capacity", &self.large_capacity);
debug_struct.field("multiple_endpoints", &self.multiple_endpoints);
debug_struct.field("tiering_policy", &self.tiering_policy);
debug_struct.field("replica_zone", &self.replica_zone);
debug_struct.field("zone", &self.zone);
debug_struct.field("cold_tier_size_gib", &self.cold_tier_size_gib);
debug_struct.field(
"hybrid_replication_parameters",
&self.hybrid_replication_parameters,
);
debug_struct.field("throughput_mibps", &self.throughput_mibps);
debug_struct.field("cache_parameters", &self.cache_parameters);
debug_struct.field("hot_tier_size_used_gib", &self.hot_tier_size_used_gib);
debug_struct.field("block_devices", &self.block_devices);
debug_struct.field("large_capacity_config", &self.large_capacity_config);
debug_struct.field("clone_details", &self.clone_details);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::volume::CloneDetails {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CloneDetails");
debug_struct.field("source_snapshot", &self.source_snapshot);
debug_struct.field("source_volume", &self.source_volume);
debug_struct.field("shared_space_gib", &self.shared_space_gib);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::LargeCapacityConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("LargeCapacityConfig");
debug_struct.field("constituent_count", &self.constituent_count);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ExportPolicy {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ExportPolicy");
debug_struct.field("rules", &self.rules);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::SimpleExportPolicyRule {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SimpleExportPolicyRule");
debug_struct.field("allowed_clients", &self.allowed_clients);
debug_struct.field("has_root_access", &self.has_root_access);
debug_struct.field("access_type", &self.access_type);
debug_struct.field("nfsv3", &self.nfsv3);
debug_struct.field("nfsv4", &self.nfsv4);
debug_struct.field("kerberos_5_read_only", &self.kerberos_5_read_only);
debug_struct.field("kerberos_5_read_write", &self.kerberos_5_read_write);
debug_struct.field("kerberos_5i_read_only", &self.kerberos_5i_read_only);
debug_struct.field("kerberos_5i_read_write", &self.kerberos_5i_read_write);
debug_struct.field("kerberos_5p_read_only", &self.kerberos_5p_read_only);
debug_struct.field("kerberos_5p_read_write", &self.kerberos_5p_read_write);
debug_struct.field("squash_mode", &self.squash_mode);
debug_struct.field("anon_uid", &self.anon_uid);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::SnapshotPolicy {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SnapshotPolicy");
debug_struct.field("enabled", &self.enabled);
debug_struct.field("hourly_schedule", &self.hourly_schedule);
debug_struct.field("daily_schedule", &self.daily_schedule);
debug_struct.field("weekly_schedule", &self.weekly_schedule);
debug_struct.field("monthly_schedule", &self.monthly_schedule);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::HourlySchedule {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("HourlySchedule");
debug_struct.field("snapshots_to_keep", &self.snapshots_to_keep);
debug_struct.field("minute", &self.minute);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DailySchedule {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DailySchedule");
debug_struct.field("snapshots_to_keep", &self.snapshots_to_keep);
debug_struct.field("minute", &self.minute);
debug_struct.field("hour", &self.hour);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::WeeklySchedule {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("WeeklySchedule");
debug_struct.field("snapshots_to_keep", &self.snapshots_to_keep);
debug_struct.field("minute", &self.minute);
debug_struct.field("hour", &self.hour);
debug_struct.field("day", &self.day);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::MonthlySchedule {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("MonthlySchedule");
debug_struct.field("snapshots_to_keep", &self.snapshots_to_keep);
debug_struct.field("minute", &self.minute);
debug_struct.field("hour", &self.hour);
debug_struct.field("days_of_month", &self.days_of_month);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::MountOption {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("MountOption");
debug_struct.field("export", &self.export);
debug_struct.field("export_full", &self.export_full);
debug_struct.field("protocol", &self.protocol);
debug_struct.field("instructions", &self.instructions);
debug_struct.field("ip_address", &self.ip_address);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::RestoreParameters {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RestoreParameters");
debug_struct.field("source", &self.source);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::BackupConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("BackupConfig");
debug_struct.field("backup_policies", &self.backup_policies);
debug_struct.field("backup_vault", &self.backup_vault);
debug_struct.field("scheduled_backup_enabled", &self.scheduled_backup_enabled);
debug_struct.field("backup_chain_bytes", &self.backup_chain_bytes);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::TieringPolicy {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("TieringPolicy");
debug_struct.field("tier_action", &self.tier_action);
debug_struct.field("cooling_threshold_days", &self.cooling_threshold_days);
debug_struct.field(
"hot_tier_bypass_mode_enabled",
&self.hot_tier_bypass_mode_enabled,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::HybridReplicationParameters {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("HybridReplicationParameters");
debug_struct.field("replication", &self.replication);
debug_struct.field("peer_volume_name", &self.peer_volume_name);
debug_struct.field("peer_cluster_name", &self.peer_cluster_name);
debug_struct.field("peer_svm_name", &self.peer_svm_name);
debug_struct.field("peer_ip_addresses", &self.peer_ip_addresses);
debug_struct.field("cluster_location", &self.cluster_location);
debug_struct.field("description", &self.description);
debug_struct.field("labels", &self.labels);
debug_struct.field("replication_schedule", &self.replication_schedule);
debug_struct.field("hybrid_replication_type", &self.hybrid_replication_type);
debug_struct.field(
"large_volume_constituent_count",
&self.large_volume_constituent_count,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CacheParameters {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CacheParameters");
debug_struct.field("peer_volume_name", &self.peer_volume_name);
debug_struct.field("peer_cluster_name", &self.peer_cluster_name);
debug_struct.field("peer_svm_name", &self.peer_svm_name);
debug_struct.field("peer_ip_addresses", &self.peer_ip_addresses);
debug_struct.field("enable_global_file_lock", &self.enable_global_file_lock);
debug_struct.field("cache_config", &self.cache_config);
debug_struct.field("cache_state", &self.cache_state);
debug_struct.field("command", &self.command);
debug_struct.field(
"peering_command_expiry_time",
&self.peering_command_expiry_time,
);
debug_struct.field("passphrase", &self.passphrase);
debug_struct.field("state_details", &self.state_details);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CacheConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CacheConfig");
debug_struct.field("cache_pre_populate", &self.cache_pre_populate);
debug_struct.field("writeback_enabled", &self.writeback_enabled);
debug_struct.field(
"cifs_change_notify_enabled",
&self.cifs_change_notify_enabled,
);
debug_struct.field("cache_pre_populate_state", &self.cache_pre_populate_state);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CachePrePopulate {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CachePrePopulate");
debug_struct.field("path_list", &self.path_list);
debug_struct.field("exclude_path_list", &self.exclude_path_list);
debug_struct.field("recursion", &self.recursion);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::BlockDevice {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("BlockDevice");
debug_struct.field("name", &self.name);
debug_struct.field("host_groups", &self.host_groups);
debug_struct.field("identifier", &self.identifier);
debug_struct.field("size_gib", &self.size_gib);
debug_struct.field("os_type", &self.os_type);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::RestoreBackupFilesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RestoreBackupFilesRequest");
debug_struct.field("name", &self.name);
debug_struct.field("backup", &self.backup);
debug_struct.field("file_list", &self.file_list);
debug_struct.field("restore_destination_path", &self.restore_destination_path);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::RestoreBackupFilesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RestoreBackupFilesResponse");
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::EstablishVolumePeeringRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("EstablishVolumePeeringRequest");
debug_struct.field("name", &self.name);
debug_struct.field("peer_cluster_name", &self.peer_cluster_name);
debug_struct.field("peer_svm_name", &self.peer_svm_name);
debug_struct.field("peer_ip_addresses", &self.peer_ip_addresses);
debug_struct.field("peer_volume_name", &self.peer_volume_name);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}