#[allow(unused_imports)]
use super::*;
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::ResetInstanceResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ResetInstanceResponse");
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::Instance {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Instance");
debug_struct.field("name", &self.name);
debug_struct.field("id", &self.id);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("update_time", &self.update_time);
debug_struct.field("machine_type", &self.machine_type);
debug_struct.field("state", &self.state);
debug_struct.field("hyperthreading_enabled", &self.hyperthreading_enabled);
debug_struct.field("labels", &self.labels);
debug_struct.field("luns", &self.luns);
debug_struct.field("volumes", &self.volumes);
debug_struct.field("networks", &self.networks);
debug_struct.field(
"interactive_serial_console_enabled",
&self.interactive_serial_console_enabled,
);
debug_struct.field("os_image", &self.os_image);
debug_struct.field("pod", &self.pod);
debug_struct.field("network_template", &self.network_template);
debug_struct.field("logical_interfaces", &self.logical_interfaces);
debug_struct.field("login_info", &self.login_info);
debug_struct.field("workload_profile", &self.workload_profile);
debug_struct.field("firmware_version", &self.firmware_version);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetInstanceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetInstanceRequest");
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::ListInstancesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListInstancesRequest");
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);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListInstancesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListInstancesResponse");
debug_struct.field("instances", &self.instances);
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::UpdateInstanceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateInstanceRequest");
debug_struct.field("instance", &self.instance);
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::RenameInstanceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RenameInstanceRequest");
debug_struct.field("name", &self.name);
debug_struct.field("new_instance_id", &self.new_instance_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ResetInstanceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ResetInstanceRequest");
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::StartInstanceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("StartInstanceRequest");
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::StartInstanceResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("StartInstanceResponse");
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::StopInstanceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("StopInstanceRequest");
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::StopInstanceResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("StopInstanceResponse");
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::EnableInteractiveSerialConsoleRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("EnableInteractiveSerialConsoleRequest");
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::EnableInteractiveSerialConsoleResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("EnableInteractiveSerialConsoleResponse");
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DisableInteractiveSerialConsoleRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DisableInteractiveSerialConsoleRequest");
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::DisableInteractiveSerialConsoleResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DisableInteractiveSerialConsoleResponse");
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DetachLunRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DetachLunRequest");
debug_struct.field("instance", &self.instance);
debug_struct.field("lun", &self.lun);
debug_struct.field("skip_reboot", &self.skip_reboot);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ServerNetworkTemplate {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ServerNetworkTemplate");
debug_struct.field("name", &self.name);
debug_struct.field("applicable_instance_types", &self.applicable_instance_types);
debug_struct.field("logical_interfaces", &self.logical_interfaces);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::server_network_template::LogicalInterface {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("LogicalInterface");
debug_struct.field("name", &self.name);
debug_struct.field("r#type", &self.r#type);
debug_struct.field("required", &self.required);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::Lun {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Lun");
debug_struct.field("name", &self.name);
debug_struct.field("id", &self.id);
debug_struct.field("state", &self.state);
debug_struct.field("size_gb", &self.size_gb);
debug_struct.field("multiprotocol_type", &self.multiprotocol_type);
debug_struct.field("storage_volume", &self.storage_volume);
debug_struct.field("shareable", &self.shareable);
debug_struct.field("boot_lun", &self.boot_lun);
debug_struct.field("storage_type", &self.storage_type);
debug_struct.field("wwid", &self.wwid);
debug_struct.field("expire_time", &self.expire_time);
debug_struct.field("instances", &self.instances);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetLunRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetLunRequest");
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::ListLunsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListLunsRequest");
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::ListLunsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListLunsResponse");
debug_struct.field("luns", &self.luns);
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::EvictLunRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("EvictLunRequest");
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::Network {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Network");
debug_struct.field("name", &self.name);
debug_struct.field("id", &self.id);
debug_struct.field("r#type", &self.r#type);
debug_struct.field("ip_address", &self.ip_address);
debug_struct.field("mac_address", &self.mac_address);
debug_struct.field("state", &self.state);
debug_struct.field("vlan_id", &self.vlan_id);
debug_struct.field("cidr", &self.cidr);
debug_struct.field("vrf", &self.vrf);
debug_struct.field("labels", &self.labels);
debug_struct.field("services_cidr", &self.services_cidr);
debug_struct.field("reservations", &self.reservations);
debug_struct.field("pod", &self.pod);
debug_struct.field("mount_points", &self.mount_points);
debug_struct.field("jumbo_frames_enabled", &self.jumbo_frames_enabled);
debug_struct.field("gateway_ip", &self.gateway_ip);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::NetworkAddressReservation {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("NetworkAddressReservation");
debug_struct.field("start_address", &self.start_address);
debug_struct.field("end_address", &self.end_address);
debug_struct.field("note", &self.note);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::Vrf {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Vrf");
debug_struct.field("name", &self.name);
debug_struct.field("state", &self.state);
debug_struct.field("qos_policy", &self.qos_policy);
debug_struct.field("vlan_attachments", &self.vlan_attachments);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::vrf::QosPolicy {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("QosPolicy");
debug_struct.field("bandwidth_gbps", &self.bandwidth_gbps);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::vrf::VlanAttachment {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("VlanAttachment");
debug_struct.field("peer_vlan_id", &self.peer_vlan_id);
debug_struct.field("peer_ip", &self.peer_ip);
debug_struct.field("router_ip", &self.router_ip);
debug_struct.field("pairing_key", &self.pairing_key);
debug_struct.field("qos_policy", &self.qos_policy);
debug_struct.field("id", &self.id);
debug_struct.field("interconnect_attachment", &self.interconnect_attachment);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::LogicalInterface {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("LogicalInterface");
debug_struct.field(
"logical_network_interfaces",
&self.logical_network_interfaces,
);
debug_struct.field("name", &self.name);
debug_struct.field("interface_index", &self.interface_index);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::logical_interface::LogicalNetworkInterface {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("LogicalNetworkInterface");
debug_struct.field("network", &self.network);
debug_struct.field("ip_address", &self.ip_address);
debug_struct.field("default_gateway", &self.default_gateway);
debug_struct.field("network_type", &self.network_type);
debug_struct.field("id", &self.id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetNetworkRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetNetworkRequest");
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::ListNetworksRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListNetworksRequest");
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);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListNetworksResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListNetworksResponse");
debug_struct.field("networks", &self.networks);
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::UpdateNetworkRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateNetworkRequest");
debug_struct.field("network", &self.network);
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::NetworkUsage {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("NetworkUsage");
debug_struct.field("network", &self.network);
debug_struct.field("used_ips", &self.used_ips);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListNetworkUsageRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListNetworkUsageRequest");
debug_struct.field("location", &self.location);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListNetworkUsageResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListNetworkUsageResponse");
debug_struct.field("networks", &self.networks);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::NetworkMountPoint {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("NetworkMountPoint");
debug_struct.field("instance", &self.instance);
debug_struct.field("logical_interface", &self.logical_interface);
debug_struct.field("default_gateway", &self.default_gateway);
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::RenameNetworkRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RenameNetworkRequest");
debug_struct.field("name", &self.name);
debug_struct.field("new_network_id", &self.new_network_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::NfsShare {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("NfsShare");
debug_struct.field("name", &self.name);
debug_struct.field("nfs_share_id", &self.nfs_share_id);
debug_struct.field("id", &self.id);
debug_struct.field("state", &self.state);
debug_struct.field("volume", &self.volume);
debug_struct.field("allowed_clients", &self.allowed_clients);
debug_struct.field("labels", &self.labels);
debug_struct.field("requested_size_gib", &self.requested_size_gib);
debug_struct.field("storage_type", &self.storage_type);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::nfs_share::AllowedClient {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("AllowedClient");
debug_struct.field("network", &self.network);
debug_struct.field("share_ip", &self.share_ip);
debug_struct.field("allowed_clients_cidr", &self.allowed_clients_cidr);
debug_struct.field("mount_permissions", &self.mount_permissions);
debug_struct.field("allow_dev", &self.allow_dev);
debug_struct.field("allow_suid", &self.allow_suid);
debug_struct.field("no_root_squash", &self.no_root_squash);
debug_struct.field("nfs_path", &self.nfs_path);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetNfsShareRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetNfsShareRequest");
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::ListNfsSharesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListNfsSharesRequest");
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);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListNfsSharesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListNfsSharesResponse");
debug_struct.field("nfs_shares", &self.nfs_shares);
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::UpdateNfsShareRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateNfsShareRequest");
debug_struct.field("nfs_share", &self.nfs_share);
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::RenameNfsShareRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RenameNfsShareRequest");
debug_struct.field("name", &self.name);
debug_struct.field("new_nfsshare_id", &self.new_nfsshare_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CreateNfsShareRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateNfsShareRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("nfs_share", &self.nfs_share);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteNfsShareRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteNfsShareRequest");
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::OSImage {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("OSImage");
debug_struct.field("name", &self.name);
debug_struct.field("code", &self.code);
debug_struct.field("description", &self.description);
debug_struct.field("applicable_instance_types", &self.applicable_instance_types);
debug_struct.field(
"supported_network_templates",
&self.supported_network_templates,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListOSImagesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListOSImagesRequest");
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::ListOSImagesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListOSImagesResponse");
debug_struct.field("os_images", &self.os_images);
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::ProvisioningConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ProvisioningConfig");
debug_struct.field("name", &self.name);
debug_struct.field("instances", &self.instances);
debug_struct.field("networks", &self.networks);
debug_struct.field("volumes", &self.volumes);
debug_struct.field("ticket_id", &self.ticket_id);
debug_struct.field("handover_service_account", &self.handover_service_account);
debug_struct.field("email", &self.email);
debug_struct.field("state", &self.state);
debug_struct.field("location", &self.location);
debug_struct.field("update_time", &self.update_time);
debug_struct.field("cloud_console_uri", &self.cloud_console_uri);
debug_struct.field("vpc_sc_enabled", &self.vpc_sc_enabled);
debug_struct.field("status_message", &self.status_message);
debug_struct.field("custom_id", &self.custom_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::SubmitProvisioningConfigRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SubmitProvisioningConfigRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("provisioning_config", &self.provisioning_config);
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::SubmitProvisioningConfigResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SubmitProvisioningConfigResponse");
debug_struct.field("provisioning_config", &self.provisioning_config);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ProvisioningQuota {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ProvisioningQuota");
debug_struct.field("name", &self.name);
debug_struct.field("asset_type", &self.asset_type);
debug_struct.field("gcp_service", &self.gcp_service);
debug_struct.field("location", &self.location);
debug_struct.field("available_count", &self.available_count);
debug_struct.field("quota", &self.quota);
debug_struct.field("availability", &self.availability);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListProvisioningQuotasRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListProvisioningQuotasRequest");
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::ListProvisioningQuotasResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListProvisioningQuotasResponse");
debug_struct.field("provisioning_quotas", &self.provisioning_quotas);
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::InstanceConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("InstanceConfig");
debug_struct.field("name", &self.name);
debug_struct.field("id", &self.id);
debug_struct.field("instance_type", &self.instance_type);
debug_struct.field("hyperthreading", &self.hyperthreading);
debug_struct.field("os_image", &self.os_image);
debug_struct.field("client_network", &self.client_network);
debug_struct.field("private_network", &self.private_network);
debug_struct.field("user_note", &self.user_note);
debug_struct.field("account_networks_enabled", &self.account_networks_enabled);
debug_struct.field("network_config", &self.network_config);
debug_struct.field("network_template", &self.network_template);
debug_struct.field("logical_interfaces", &self.logical_interfaces);
debug_struct.field("ssh_key_names", &self.ssh_key_names);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::instance_config::NetworkAddress {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("NetworkAddress");
debug_struct.field("network_id", &self.network_id);
debug_struct.field("address", &self.address);
debug_struct.field("existing_network_id", &self.existing_network_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::VolumeConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("VolumeConfig");
debug_struct.field("name", &self.name);
debug_struct.field("id", &self.id);
debug_struct.field("snapshots_enabled", &self.snapshots_enabled);
debug_struct.field("r#type", &self.r#type);
debug_struct.field("protocol", &self.protocol);
debug_struct.field("size_gb", &self.size_gb);
debug_struct.field("lun_ranges", &self.lun_ranges);
debug_struct.field("machine_ids", &self.machine_ids);
debug_struct.field("nfs_exports", &self.nfs_exports);
debug_struct.field("user_note", &self.user_note);
debug_struct.field("gcp_service", &self.gcp_service);
debug_struct.field("performance_tier", &self.performance_tier);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::volume_config::LunRange {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("LunRange");
debug_struct.field("quantity", &self.quantity);
debug_struct.field("size_gb", &self.size_gb);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::volume_config::NfsExport {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("NfsExport");
debug_struct.field("network_id", &self.network_id);
debug_struct.field("permissions", &self.permissions);
debug_struct.field("no_root_squash", &self.no_root_squash);
debug_struct.field("allow_suid", &self.allow_suid);
debug_struct.field("allow_dev", &self.allow_dev);
debug_struct.field("client", &self.client);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::NetworkConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("NetworkConfig");
debug_struct.field("name", &self.name);
debug_struct.field("id", &self.id);
debug_struct.field("r#type", &self.r#type);
debug_struct.field("bandwidth", &self.bandwidth);
debug_struct.field("vlan_attachments", &self.vlan_attachments);
debug_struct.field("cidr", &self.cidr);
debug_struct.field("service_cidr", &self.service_cidr);
debug_struct.field("user_note", &self.user_note);
debug_struct.field("gcp_service", &self.gcp_service);
debug_struct.field("vlan_same_project", &self.vlan_same_project);
debug_struct.field("jumbo_frames_enabled", &self.jumbo_frames_enabled);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::network_config::IntakeVlanAttachment {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("IntakeVlanAttachment");
debug_struct.field("id", &self.id);
debug_struct.field("pairing_key", &self.pairing_key);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::InstanceQuota {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("InstanceQuota");
debug_struct.field("name", &self.name);
debug_struct.field("instance_type", &self.instance_type);
debug_struct.field("gcp_service", &self.gcp_service);
debug_struct.field("location", &self.location);
debug_struct.field("available_machine_count", &self.available_machine_count);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetProvisioningConfigRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetProvisioningConfigRequest");
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::CreateProvisioningConfigRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateProvisioningConfigRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("provisioning_config", &self.provisioning_config);
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::UpdateProvisioningConfigRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateProvisioningConfigRequest");
debug_struct.field("provisioning_config", &self.provisioning_config);
debug_struct.field("update_mask", &self.update_mask);
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::SSHKey {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SSHKey");
debug_struct.field("name", &self.name);
debug_struct.field("public_key", &self.public_key);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListSSHKeysRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListSSHKeysRequest");
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::ListSSHKeysResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListSSHKeysResponse");
debug_struct.field("ssh_keys", &self.ssh_keys);
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::CreateSSHKeyRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateSSHKeyRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("ssh_key", &self.ssh_key);
debug_struct.field("ssh_key_id", &self.ssh_key_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteSSHKeyRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteSSHKeyRequest");
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::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("id", &self.id);
debug_struct.field("storage_type", &self.storage_type);
debug_struct.field("state", &self.state);
debug_struct.field("requested_size_gib", &self.requested_size_gib);
debug_struct.field(
"originally_requested_size_gib",
&self.originally_requested_size_gib,
);
debug_struct.field("current_size_gib", &self.current_size_gib);
debug_struct.field("emergency_size_gib", &self.emergency_size_gib);
debug_struct.field("max_size_gib", &self.max_size_gib);
debug_struct.field("auto_grown_size_gib", &self.auto_grown_size_gib);
debug_struct.field("remaining_space_gib", &self.remaining_space_gib);
debug_struct.field(
"snapshot_reservation_detail",
&self.snapshot_reservation_detail,
);
debug_struct.field(
"snapshot_auto_delete_behavior",
&self.snapshot_auto_delete_behavior,
);
debug_struct.field("labels", &self.labels);
debug_struct.field("snapshot_enabled", &self.snapshot_enabled);
debug_struct.field("pod", &self.pod);
debug_struct.field("protocol", &self.protocol);
debug_struct.field("boot_volume", &self.boot_volume);
debug_struct.field("performance_tier", &self.performance_tier);
debug_struct.field("notes", &self.notes);
debug_struct.field("workload_profile", &self.workload_profile);
debug_struct.field("expire_time", &self.expire_time);
debug_struct.field("instances", &self.instances);
debug_struct.field("attached", &self.attached);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::volume::SnapshotReservationDetail {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SnapshotReservationDetail");
debug_struct.field("reserved_space_gib", &self.reserved_space_gib);
debug_struct.field(
"reserved_space_used_percent",
&self.reserved_space_used_percent,
);
debug_struct.field(
"reserved_space_remaining_gib",
&self.reserved_space_remaining_gib,
);
debug_struct.field("reserved_space_percent", &self.reserved_space_percent);
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::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);
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::UpdateVolumeRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateVolumeRequest");
debug_struct.field("volume", &self.volume);
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::RenameVolumeRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RenameVolumeRequest");
debug_struct.field("name", &self.name);
debug_struct.field("new_volume_id", &self.new_volume_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::EvictVolumeRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("EvictVolumeRequest");
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::ResizeVolumeRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ResizeVolumeRequest");
debug_struct.field("volume", &self.volume);
debug_struct.field("size_gib", &self.size_gib);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::VolumeSnapshot {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("VolumeSnapshot");
debug_struct.field("name", &self.name);
debug_struct.field("id", &self.id);
debug_struct.field("description", &self.description);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("storage_volume", &self.storage_volume);
debug_struct.field("r#type", &self.r#type);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetVolumeSnapshotRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetVolumeSnapshotRequest");
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::ListVolumeSnapshotsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListVolumeSnapshotsRequest");
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::ListVolumeSnapshotsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListVolumeSnapshotsResponse");
debug_struct.field("volume_snapshots", &self.volume_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::DeleteVolumeSnapshotRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteVolumeSnapshotRequest");
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::CreateVolumeSnapshotRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateVolumeSnapshotRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("volume_snapshot", &self.volume_snapshot);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::RestoreVolumeSnapshotRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RestoreVolumeSnapshotRequest");
debug_struct.field("volume_snapshot", &self.volume_snapshot);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}