#[allow(unused_imports)]
use super::*;
impl std::fmt::Debug for super::DiagnosticConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DiagnosticConfig");
debug_struct.field("gcs_bucket", &self.gcs_bucket);
debug_struct.field("relative_path", &self.relative_path);
debug_struct.field("enable_repair_flag", &self.enable_repair_flag);
debug_struct.field(
"enable_packet_capture_flag",
&self.enable_packet_capture_flag,
);
debug_struct.field(
"enable_copy_home_files_flag",
&self.enable_copy_home_files_flag,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::Event {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Event");
debug_struct.field("report_time", &self.report_time);
debug_struct.field("r#type", &self.r#type);
debug_struct.field("details", &self.details);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::NetworkInterface {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("NetworkInterface");
debug_struct.field("network", &self.network);
debug_struct.field("subnet", &self.subnet);
debug_struct.field("nic_type", &self.nic_type);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::VmImage {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("VmImage");
debug_struct.field("project", &self.project);
debug_struct.field("image", &self.image);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ContainerImage {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ContainerImage");
debug_struct.field("repository", &self.repository);
debug_struct.field("tag", &self.tag);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::AcceleratorConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("AcceleratorConfig");
debug_struct.field("r#type", &self.r#type);
debug_struct.field("core_count", &self.core_count);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ShieldedInstanceConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ShieldedInstanceConfig");
debug_struct.field("enable_secure_boot", &self.enable_secure_boot);
debug_struct.field("enable_vtpm", &self.enable_vtpm);
debug_struct.field(
"enable_integrity_monitoring",
&self.enable_integrity_monitoring,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GPUDriverConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GPUDriverConfig");
debug_struct.field("enable_gpu_driver", &self.enable_gpu_driver);
debug_struct.field("custom_gpu_driver_path", &self.custom_gpu_driver_path);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DataDisk {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DataDisk");
debug_struct.field("disk_size_gb", &self.disk_size_gb);
debug_struct.field("disk_type", &self.disk_type);
debug_struct.field("disk_encryption", &self.disk_encryption);
debug_struct.field("kms_key", &self.kms_key);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::BootDisk {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("BootDisk");
debug_struct.field("disk_size_gb", &self.disk_size_gb);
debug_struct.field("disk_type", &self.disk_type);
debug_struct.field("disk_encryption", &self.disk_encryption);
debug_struct.field("kms_key", &self.kms_key);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ServiceAccount {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ServiceAccount");
debug_struct.field("email", &self.email);
debug_struct.field("scopes", &self.scopes);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GceSetup {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GceSetup");
debug_struct.field("machine_type", &self.machine_type);
debug_struct.field("accelerator_configs", &self.accelerator_configs);
debug_struct.field("service_accounts", &self.service_accounts);
debug_struct.field("boot_disk", &self.boot_disk);
debug_struct.field("data_disks", &self.data_disks);
debug_struct.field("shielded_instance_config", &self.shielded_instance_config);
debug_struct.field("network_interfaces", &self.network_interfaces);
debug_struct.field("disable_public_ip", &self.disable_public_ip);
debug_struct.field("tags", &self.tags);
debug_struct.field("metadata", &self.metadata);
debug_struct.field("enable_ip_forwarding", &self.enable_ip_forwarding);
debug_struct.field("gpu_driver_config", &self.gpu_driver_config);
debug_struct.field("image", &self.image);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpgradeHistoryEntry {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpgradeHistoryEntry");
debug_struct.field("snapshot", &self.snapshot);
debug_struct.field("vm_image", &self.vm_image);
debug_struct.field("container_image", &self.container_image);
debug_struct.field("framework", &self.framework);
debug_struct.field("version", &self.version);
debug_struct.field("state", &self.state);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("action", &self.action);
debug_struct.field("target_version", &self.target_version);
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("proxy_uri", &self.proxy_uri);
debug_struct.field("instance_owners", &self.instance_owners);
debug_struct.field("creator", &self.creator);
debug_struct.field("state", &self.state);
debug_struct.field("upgrade_history", &self.upgrade_history);
debug_struct.field("id", &self.id);
debug_struct.field("health_state", &self.health_state);
debug_struct.field("health_info", &self.health_info);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("update_time", &self.update_time);
debug_struct.field("disable_proxy_access", &self.disable_proxy_access);
debug_struct.field("labels", &self.labels);
debug_struct.field("infrastructure", &self.infrastructure);
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);
debug_struct.field("endpoint", &self.endpoint);
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("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::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::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::CreateInstanceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateInstanceRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("instance_id", &self.instance_id);
debug_struct.field("instance", &self.instance);
debug_struct.field("request_id", &self.request_id);
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);
debug_struct.field("request_id", &self.request_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteInstanceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteInstanceRequest");
debug_struct.field("name", &self.name);
debug_struct.field("request_id", &self.request_id);
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::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::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::CheckInstanceUpgradabilityRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CheckInstanceUpgradabilityRequest");
debug_struct.field("notebook_instance", &self.notebook_instance);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CheckInstanceUpgradabilityResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CheckInstanceUpgradabilityResponse");
debug_struct.field("upgradeable", &self.upgradeable);
debug_struct.field("upgrade_version", &self.upgrade_version);
debug_struct.field("upgrade_info", &self.upgrade_info);
debug_struct.field("upgrade_image", &self.upgrade_image);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpgradeInstanceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpgradeInstanceRequest");
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::RollbackInstanceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RollbackInstanceRequest");
debug_struct.field("name", &self.name);
debug_struct.field("target_snapshot", &self.target_snapshot);
debug_struct.field("revision_id", &self.revision_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DiagnoseInstanceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DiagnoseInstanceRequest");
debug_struct.field("name", &self.name);
debug_struct.field("diagnostic_config", &self.diagnostic_config);
debug_struct.field("timeout_minutes", &self.timeout_minutes);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}