#[allow(unused_imports)]
use super::*;
impl std::fmt::Debug for super::Inventory {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Inventory");
debug_struct.field("name", &self.name);
debug_struct.field("os_info", &self.os_info);
debug_struct.field("items", &self.items);
debug_struct.field("update_time", &self.update_time);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::inventory::OsInfo {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("OsInfo");
debug_struct.field("hostname", &self.hostname);
debug_struct.field("long_name", &self.long_name);
debug_struct.field("short_name", &self.short_name);
debug_struct.field("version", &self.version);
debug_struct.field("architecture", &self.architecture);
debug_struct.field("kernel_version", &self.kernel_version);
debug_struct.field("kernel_release", &self.kernel_release);
debug_struct.field("osconfig_agent_version", &self.osconfig_agent_version);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::inventory::Item {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Item");
debug_struct.field("id", &self.id);
debug_struct.field("origin_type", &self.origin_type);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("update_time", &self.update_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::inventory::SoftwarePackage {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SoftwarePackage");
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::inventory::VersionedPackage {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("VersionedPackage");
debug_struct.field("package_name", &self.package_name);
debug_struct.field("architecture", &self.architecture);
debug_struct.field("version", &self.version);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::inventory::ZypperPatch {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ZypperPatch");
debug_struct.field("patch_name", &self.patch_name);
debug_struct.field("category", &self.category);
debug_struct.field("severity", &self.severity);
debug_struct.field("summary", &self.summary);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::inventory::WindowsUpdatePackage {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("WindowsUpdatePackage");
debug_struct.field("title", &self.title);
debug_struct.field("description", &self.description);
debug_struct.field("categories", &self.categories);
debug_struct.field("kb_article_ids", &self.kb_article_ids);
debug_struct.field("support_url", &self.support_url);
debug_struct.field("more_info_urls", &self.more_info_urls);
debug_struct.field("update_id", &self.update_id);
debug_struct.field("revision_number", &self.revision_number);
debug_struct.field(
"last_deployment_change_time",
&self.last_deployment_change_time,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::inventory::windows_update_package::WindowsUpdateCategory {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("WindowsUpdateCategory");
debug_struct.field("id", &self.id);
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::inventory::WindowsQuickFixEngineeringPackage {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("WindowsQuickFixEngineeringPackage");
debug_struct.field("caption", &self.caption);
debug_struct.field("description", &self.description);
debug_struct.field("hot_fix_id", &self.hot_fix_id);
debug_struct.field("install_time", &self.install_time);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::inventory::WindowsApplication {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("WindowsApplication");
debug_struct.field("display_name", &self.display_name);
debug_struct.field("display_version", &self.display_version);
debug_struct.field("publisher", &self.publisher);
debug_struct.field("install_date", &self.install_date);
debug_struct.field("help_link", &self.help_link);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetInventoryRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetInventoryRequest");
debug_struct.field("name", &self.name);
debug_struct.field("view", &self.view);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListInventoriesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListInventoriesRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("view", &self.view);
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::ListInventoriesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListInventoriesResponse");
debug_struct.field("inventories", &self.inventories);
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::OSPolicy {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("OSPolicy");
debug_struct.field("id", &self.id);
debug_struct.field("description", &self.description);
debug_struct.field("mode", &self.mode);
debug_struct.field("resource_groups", &self.resource_groups);
debug_struct.field(
"allow_no_resource_group_match",
&self.allow_no_resource_group_match,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy::InventoryFilter {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("InventoryFilter");
debug_struct.field("os_short_name", &self.os_short_name);
debug_struct.field("os_version", &self.os_version);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy::Resource {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Resource");
debug_struct.field("id", &self.id);
debug_struct.field("resource_type", &self.resource_type);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy::resource::File {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("File");
debug_struct.field("allow_insecure", &self.allow_insecure);
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::os_policy::resource::file::Remote {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Remote");
debug_struct.field("uri", &self.uri);
debug_struct.field("sha256_checksum", &self.sha256_checksum);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy::resource::file::Gcs {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Gcs");
debug_struct.field("bucket", &self.bucket);
debug_struct.field("object", &self.object);
debug_struct.field("generation", &self.generation);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy::resource::PackageResource {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("PackageResource");
debug_struct.field("desired_state", &self.desired_state);
debug_struct.field("system_package", &self.system_package);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy::resource::package_resource::Deb {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Deb");
debug_struct.field("source", &self.source);
debug_struct.field("pull_deps", &self.pull_deps);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy::resource::package_resource::Apt {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Apt");
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::os_policy::resource::package_resource::Rpm {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Rpm");
debug_struct.field("source", &self.source);
debug_struct.field("pull_deps", &self.pull_deps);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy::resource::package_resource::Yum {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Yum");
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::os_policy::resource::package_resource::Zypper {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Zypper");
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::os_policy::resource::package_resource::GooGet {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GooGet");
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::os_policy::resource::package_resource::Msi {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Msi");
debug_struct.field("source", &self.source);
debug_struct.field("properties", &self.properties);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy::resource::RepositoryResource {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RepositoryResource");
debug_struct.field("repository", &self.repository);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy::resource::repository_resource::AptRepository {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("AptRepository");
debug_struct.field("archive_type", &self.archive_type);
debug_struct.field("uri", &self.uri);
debug_struct.field("distribution", &self.distribution);
debug_struct.field("components", &self.components);
debug_struct.field("gpg_key", &self.gpg_key);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy::resource::repository_resource::YumRepository {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("YumRepository");
debug_struct.field("id", &self.id);
debug_struct.field("display_name", &self.display_name);
debug_struct.field("base_url", &self.base_url);
debug_struct.field("gpg_keys", &self.gpg_keys);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy::resource::repository_resource::ZypperRepository {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ZypperRepository");
debug_struct.field("id", &self.id);
debug_struct.field("display_name", &self.display_name);
debug_struct.field("base_url", &self.base_url);
debug_struct.field("gpg_keys", &self.gpg_keys);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy::resource::repository_resource::GooRepository {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GooRepository");
debug_struct.field("name", &self.name);
debug_struct.field("url", &self.url);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy::resource::ExecResource {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ExecResource");
debug_struct.field("validate", &self.validate);
debug_struct.field("enforce", &self.enforce);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy::resource::exec_resource::Exec {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Exec");
debug_struct.field("args", &self.args);
debug_struct.field("interpreter", &self.interpreter);
debug_struct.field("output_file_path", &self.output_file_path);
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::os_policy::resource::FileResource {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("FileResource");
debug_struct.field("path", &self.path);
debug_struct.field("state", &self.state);
debug_struct.field("permissions", &self.permissions);
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::os_policy::ResourceGroup {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ResourceGroup");
debug_struct.field("inventory_filters", &self.inventory_filters);
debug_struct.field("resources", &self.resources);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetOSPolicyAssignmentReportRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetOSPolicyAssignmentReportRequest");
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::ListOSPolicyAssignmentReportsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListOSPolicyAssignmentReportsRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("filter", &self.filter);
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::ListOSPolicyAssignmentReportsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListOSPolicyAssignmentReportsResponse");
debug_struct.field(
"os_policy_assignment_reports",
&self.os_policy_assignment_reports,
);
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::OSPolicyAssignmentReport {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("OSPolicyAssignmentReport");
debug_struct.field("name", &self.name);
debug_struct.field("instance", &self.instance);
debug_struct.field("os_policy_assignment", &self.os_policy_assignment);
debug_struct.field("os_policy_compliances", &self.os_policy_compliances);
debug_struct.field("update_time", &self.update_time);
debug_struct.field("last_run_id", &self.last_run_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy_assignment_report::OSPolicyCompliance {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("OSPolicyCompliance");
debug_struct.field("os_policy_id", &self.os_policy_id);
debug_struct.field("compliance_state", &self.compliance_state);
debug_struct.field("compliance_state_reason", &self.compliance_state_reason);
debug_struct.field(
"os_policy_resource_compliances",
&self.os_policy_resource_compliances,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug
for super::os_policy_assignment_report::os_policy_compliance::OSPolicyResourceCompliance
{
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("OSPolicyResourceCompliance");
debug_struct.field("os_policy_resource_id", &self.os_policy_resource_id);
debug_struct.field("config_steps", &self.config_steps);
debug_struct.field("compliance_state", &self.compliance_state);
debug_struct.field("compliance_state_reason", &self.compliance_state_reason);
debug_struct.field("output", &self.output);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy_assignment_report::os_policy_compliance::os_policy_resource_compliance::OSPolicyResourceConfigStep {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("OSPolicyResourceConfigStep");
debug_struct.field("r#type", &self.r#type);
debug_struct.field("error_message", &self.error_message);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy_assignment_report::os_policy_compliance::os_policy_resource_compliance::ExecResourceOutput {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ExecResourceOutput");
debug_struct.field("enforcement_output", &self.enforcement_output);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::OSPolicyAssignment {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("OSPolicyAssignment");
debug_struct.field("name", &self.name);
debug_struct.field("description", &self.description);
debug_struct.field("os_policies", &self.os_policies);
debug_struct.field("instance_filter", &self.instance_filter);
debug_struct.field("rollout", &self.rollout);
debug_struct.field("revision_id", &self.revision_id);
debug_struct.field("revision_create_time", &self.revision_create_time);
debug_struct.field("etag", &self.etag);
debug_struct.field("rollout_state", &self.rollout_state);
debug_struct.field("baseline", &self.baseline);
debug_struct.field("deleted", &self.deleted);
debug_struct.field("reconciling", &self.reconciling);
debug_struct.field("uid", &self.uid);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy_assignment::LabelSet {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("LabelSet");
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::os_policy_assignment::InstanceFilter {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("InstanceFilter");
debug_struct.field("all", &self.all);
debug_struct.field("inclusion_labels", &self.inclusion_labels);
debug_struct.field("exclusion_labels", &self.exclusion_labels);
debug_struct.field("inventories", &self.inventories);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy_assignment::instance_filter::Inventory {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Inventory");
debug_struct.field("os_short_name", &self.os_short_name);
debug_struct.field("os_version", &self.os_version);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::os_policy_assignment::Rollout {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Rollout");
debug_struct.field("disruption_budget", &self.disruption_budget);
debug_struct.field("min_wait_duration", &self.min_wait_duration);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::OSPolicyAssignmentOperationMetadata {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("OSPolicyAssignmentOperationMetadata");
debug_struct.field("os_policy_assignment", &self.os_policy_assignment);
debug_struct.field("api_method", &self.api_method);
debug_struct.field("rollout_state", &self.rollout_state);
debug_struct.field("rollout_start_time", &self.rollout_start_time);
debug_struct.field("rollout_update_time", &self.rollout_update_time);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CreateOSPolicyAssignmentRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateOSPolicyAssignmentRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("os_policy_assignment", &self.os_policy_assignment);
debug_struct.field("os_policy_assignment_id", &self.os_policy_assignment_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateOSPolicyAssignmentRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateOSPolicyAssignmentRequest");
debug_struct.field("os_policy_assignment", &self.os_policy_assignment);
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::GetOSPolicyAssignmentRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetOSPolicyAssignmentRequest");
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::ListOSPolicyAssignmentsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListOSPolicyAssignmentsRequest");
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::ListOSPolicyAssignmentsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListOSPolicyAssignmentsResponse");
debug_struct.field("os_policy_assignments", &self.os_policy_assignments);
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::ListOSPolicyAssignmentRevisionsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListOSPolicyAssignmentRevisionsRequest");
debug_struct.field("name", &self.name);
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::ListOSPolicyAssignmentRevisionsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListOSPolicyAssignmentRevisionsResponse");
debug_struct.field("os_policy_assignments", &self.os_policy_assignments);
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::DeleteOSPolicyAssignmentRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteOSPolicyAssignmentRequest");
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::FixedOrPercent {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("FixedOrPercent");
debug_struct.field("mode", &self.mode);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::PatchDeployment {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("PatchDeployment");
debug_struct.field("name", &self.name);
debug_struct.field("description", &self.description);
debug_struct.field("instance_filter", &self.instance_filter);
debug_struct.field("patch_config", &self.patch_config);
debug_struct.field("duration", &self.duration);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("update_time", &self.update_time);
debug_struct.field("last_execute_time", &self.last_execute_time);
debug_struct.field("rollout", &self.rollout);
debug_struct.field("state", &self.state);
debug_struct.field("schedule", &self.schedule);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::OneTimeSchedule {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("OneTimeSchedule");
debug_struct.field("execute_time", &self.execute_time);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::RecurringSchedule {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RecurringSchedule");
debug_struct.field("time_zone", &self.time_zone);
debug_struct.field("start_time", &self.start_time);
debug_struct.field("end_time", &self.end_time);
debug_struct.field("time_of_day", &self.time_of_day);
debug_struct.field("frequency", &self.frequency);
debug_struct.field("last_execute_time", &self.last_execute_time);
debug_struct.field("next_execute_time", &self.next_execute_time);
debug_struct.field("schedule_config", &self.schedule_config);
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("day_of_week", &self.day_of_week);
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("day_of_month", &self.day_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::WeekDayOfMonth {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("WeekDayOfMonth");
debug_struct.field("week_ordinal", &self.week_ordinal);
debug_struct.field("day_of_week", &self.day_of_week);
debug_struct.field("day_offset", &self.day_offset);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CreatePatchDeploymentRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreatePatchDeploymentRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("patch_deployment_id", &self.patch_deployment_id);
debug_struct.field("patch_deployment", &self.patch_deployment);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetPatchDeploymentRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetPatchDeploymentRequest");
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::ListPatchDeploymentsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListPatchDeploymentsRequest");
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::ListPatchDeploymentsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListPatchDeploymentsResponse");
debug_struct.field("patch_deployments", &self.patch_deployments);
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::DeletePatchDeploymentRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeletePatchDeploymentRequest");
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::UpdatePatchDeploymentRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdatePatchDeploymentRequest");
debug_struct.field("patch_deployment", &self.patch_deployment);
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::PausePatchDeploymentRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("PausePatchDeploymentRequest");
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::ResumePatchDeploymentRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ResumePatchDeploymentRequest");
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::ExecutePatchJobRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ExecutePatchJobRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("description", &self.description);
debug_struct.field("instance_filter", &self.instance_filter);
debug_struct.field("patch_config", &self.patch_config);
debug_struct.field("duration", &self.duration);
debug_struct.field("dry_run", &self.dry_run);
debug_struct.field("display_name", &self.display_name);
debug_struct.field("rollout", &self.rollout);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetPatchJobRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetPatchJobRequest");
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::ListPatchJobInstanceDetailsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListPatchJobInstanceDetailsRequest");
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::ListPatchJobInstanceDetailsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListPatchJobInstanceDetailsResponse");
debug_struct.field(
"patch_job_instance_details",
&self.patch_job_instance_details,
);
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::PatchJobInstanceDetails {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("PatchJobInstanceDetails");
debug_struct.field("name", &self.name);
debug_struct.field("instance_system_id", &self.instance_system_id);
debug_struct.field("state", &self.state);
debug_struct.field("failure_reason", &self.failure_reason);
debug_struct.field("attempt_count", &self.attempt_count);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListPatchJobsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListPatchJobsRequest");
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::ListPatchJobsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListPatchJobsResponse");
debug_struct.field("patch_jobs", &self.patch_jobs);
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::PatchJob {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("PatchJob");
debug_struct.field("name", &self.name);
debug_struct.field("display_name", &self.display_name);
debug_struct.field("description", &self.description);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("update_time", &self.update_time);
debug_struct.field("state", &self.state);
debug_struct.field("instance_filter", &self.instance_filter);
debug_struct.field("patch_config", &self.patch_config);
debug_struct.field("duration", &self.duration);
debug_struct.field("instance_details_summary", &self.instance_details_summary);
debug_struct.field("dry_run", &self.dry_run);
debug_struct.field("error_message", &self.error_message);
debug_struct.field("percent_complete", &self.percent_complete);
debug_struct.field("patch_deployment", &self.patch_deployment);
debug_struct.field("rollout", &self.rollout);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::patch_job::InstanceDetailsSummary {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("InstanceDetailsSummary");
debug_struct.field("pending_instance_count", &self.pending_instance_count);
debug_struct.field("inactive_instance_count", &self.inactive_instance_count);
debug_struct.field("notified_instance_count", &self.notified_instance_count);
debug_struct.field("started_instance_count", &self.started_instance_count);
debug_struct.field(
"downloading_patches_instance_count",
&self.downloading_patches_instance_count,
);
debug_struct.field(
"applying_patches_instance_count",
&self.applying_patches_instance_count,
);
debug_struct.field("rebooting_instance_count", &self.rebooting_instance_count);
debug_struct.field("succeeded_instance_count", &self.succeeded_instance_count);
debug_struct.field(
"succeeded_reboot_required_instance_count",
&self.succeeded_reboot_required_instance_count,
);
debug_struct.field("failed_instance_count", &self.failed_instance_count);
debug_struct.field("acked_instance_count", &self.acked_instance_count);
debug_struct.field("timed_out_instance_count", &self.timed_out_instance_count);
debug_struct.field(
"pre_patch_step_instance_count",
&self.pre_patch_step_instance_count,
);
debug_struct.field(
"post_patch_step_instance_count",
&self.post_patch_step_instance_count,
);
debug_struct.field(
"no_agent_detected_instance_count",
&self.no_agent_detected_instance_count,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::PatchConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("PatchConfig");
debug_struct.field("reboot_config", &self.reboot_config);
debug_struct.field("apt", &self.apt);
debug_struct.field("yum", &self.yum);
debug_struct.field("goo", &self.goo);
debug_struct.field("zypper", &self.zypper);
debug_struct.field("windows_update", &self.windows_update);
debug_struct.field("pre_step", &self.pre_step);
debug_struct.field("post_step", &self.post_step);
debug_struct.field("mig_instances_allowed", &self.mig_instances_allowed);
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");
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CancelPatchJobRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CancelPatchJobRequest");
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::AptSettings {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("AptSettings");
debug_struct.field("r#type", &self.r#type);
debug_struct.field("excludes", &self.excludes);
debug_struct.field("exclusive_packages", &self.exclusive_packages);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::YumSettings {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("YumSettings");
debug_struct.field("security", &self.security);
debug_struct.field("minimal", &self.minimal);
debug_struct.field("excludes", &self.excludes);
debug_struct.field("exclusive_packages", &self.exclusive_packages);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GooSettings {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GooSettings");
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ZypperSettings {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ZypperSettings");
debug_struct.field("with_optional", &self.with_optional);
debug_struct.field("with_update", &self.with_update);
debug_struct.field("categories", &self.categories);
debug_struct.field("severities", &self.severities);
debug_struct.field("excludes", &self.excludes);
debug_struct.field("exclusive_patches", &self.exclusive_patches);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::WindowsUpdateSettings {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("WindowsUpdateSettings");
debug_struct.field("classifications", &self.classifications);
debug_struct.field("excludes", &self.excludes);
debug_struct.field("exclusive_patches", &self.exclusive_patches);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ExecStep {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ExecStep");
debug_struct.field("linux_exec_step_config", &self.linux_exec_step_config);
debug_struct.field("windows_exec_step_config", &self.windows_exec_step_config);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ExecStepConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ExecStepConfig");
debug_struct.field("allowed_success_codes", &self.allowed_success_codes);
debug_struct.field("interpreter", &self.interpreter);
debug_struct.field("executable", &self.executable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GcsObject {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GcsObject");
debug_struct.field("bucket", &self.bucket);
debug_struct.field("object", &self.object);
debug_struct.field("generation_number", &self.generation_number);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::PatchInstanceFilter {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("PatchInstanceFilter");
debug_struct.field("all", &self.all);
debug_struct.field("group_labels", &self.group_labels);
debug_struct.field("zones", &self.zones);
debug_struct.field("instances", &self.instances);
debug_struct.field("instance_name_prefixes", &self.instance_name_prefixes);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::patch_instance_filter::GroupLabel {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GroupLabel");
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::PatchRollout {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("PatchRollout");
debug_struct.field("mode", &self.mode);
debug_struct.field("disruption_budget", &self.disruption_budget);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::VulnerabilityReport {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("VulnerabilityReport");
debug_struct.field("name", &self.name);
debug_struct.field("vulnerabilities", &self.vulnerabilities);
debug_struct.field("update_time", &self.update_time);
debug_struct.field(
"highest_upgradable_cve_severity",
&self.highest_upgradable_cve_severity,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::vulnerability_report::Vulnerability {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Vulnerability");
debug_struct.field("details", &self.details);
debug_struct.field(
"installed_inventory_item_ids",
&self.installed_inventory_item_ids,
);
debug_struct.field(
"available_inventory_item_ids",
&self.available_inventory_item_ids,
);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("update_time", &self.update_time);
debug_struct.field("items", &self.items);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::vulnerability_report::vulnerability::Details {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Details");
debug_struct.field("cve", &self.cve);
debug_struct.field("cvss_v2_score", &self.cvss_v2_score);
debug_struct.field("cvss_v3", &self.cvss_v3);
debug_struct.field("severity", &self.severity);
debug_struct.field("description", &self.description);
debug_struct.field("references", &self.references);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::vulnerability_report::vulnerability::details::Reference {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Reference");
debug_struct.field("url", &self.url);
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::vulnerability_report::vulnerability::Item {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Item");
debug_struct.field(
"installed_inventory_item_id",
&self.installed_inventory_item_id,
);
debug_struct.field(
"available_inventory_item_id",
&self.available_inventory_item_id,
);
debug_struct.field("fixed_cpe_uri", &self.fixed_cpe_uri);
debug_struct.field("upstream_fix", &self.upstream_fix);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetVulnerabilityReportRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetVulnerabilityReportRequest");
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::ListVulnerabilityReportsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListVulnerabilityReportsRequest");
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::ListVulnerabilityReportsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListVulnerabilityReportsResponse");
debug_struct.field("vulnerability_reports", &self.vulnerability_reports);
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::CVSSv3 {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CVSSv3");
debug_struct.field("base_score", &self.base_score);
debug_struct.field("exploitability_score", &self.exploitability_score);
debug_struct.field("impact_score", &self.impact_score);
debug_struct.field("attack_vector", &self.attack_vector);
debug_struct.field("attack_complexity", &self.attack_complexity);
debug_struct.field("privileges_required", &self.privileges_required);
debug_struct.field("user_interaction", &self.user_interaction);
debug_struct.field("scope", &self.scope);
debug_struct.field("confidentiality_impact", &self.confidentiality_impact);
debug_struct.field("integrity_impact", &self.integrity_impact);
debug_struct.field("availability_impact", &self.availability_impact);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}