#[allow(unused_imports)]
use super::*;
impl std::fmt::Debug for super::ApiConfigHandler {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ApiConfigHandler");
debug_struct.field("auth_fail_action", &self.auth_fail_action);
debug_struct.field("login", &self.login);
debug_struct.field("script", &self.script);
debug_struct.field("security_level", &self.security_level);
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::ErrorHandler {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ErrorHandler");
debug_struct.field("error_code", &self.error_code);
debug_struct.field("static_file", &self.static_file);
debug_struct.field("mime_type", &self.mime_type);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UrlMap {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UrlMap");
debug_struct.field("url_regex", &self.url_regex);
debug_struct.field("security_level", &self.security_level);
debug_struct.field("login", &self.login);
debug_struct.field("auth_fail_action", &self.auth_fail_action);
debug_struct.field(
"redirect_http_response_code",
&self.redirect_http_response_code,
);
debug_struct.field("handler_type", &self.handler_type);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::StaticFilesHandler {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("StaticFilesHandler");
debug_struct.field("path", &self.path);
debug_struct.field("upload_path_regex", &self.upload_path_regex);
debug_struct.field("http_headers", &self.http_headers);
debug_struct.field("mime_type", &self.mime_type);
debug_struct.field("expiration", &self.expiration);
debug_struct.field("require_matching_file", &self.require_matching_file);
debug_struct.field("application_readable", &self.application_readable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ScriptHandler {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ScriptHandler");
debug_struct.field("script_path", &self.script_path);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ApiEndpointHandler {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ApiEndpointHandler");
debug_struct.field("script_path", &self.script_path);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::HealthCheck {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("HealthCheck");
debug_struct.field("disable_health_check", &self.disable_health_check);
debug_struct.field("host", &self.host);
debug_struct.field("healthy_threshold", &self.healthy_threshold);
debug_struct.field("unhealthy_threshold", &self.unhealthy_threshold);
debug_struct.field("restart_threshold", &self.restart_threshold);
debug_struct.field("check_interval", &self.check_interval);
debug_struct.field("timeout", &self.timeout);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ReadinessCheck {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ReadinessCheck");
debug_struct.field("path", &self.path);
debug_struct.field("host", &self.host);
debug_struct.field("failure_threshold", &self.failure_threshold);
debug_struct.field("success_threshold", &self.success_threshold);
debug_struct.field("check_interval", &self.check_interval);
debug_struct.field("timeout", &self.timeout);
debug_struct.field("app_start_timeout", &self.app_start_timeout);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::LivenessCheck {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("LivenessCheck");
debug_struct.field("path", &self.path);
debug_struct.field("host", &self.host);
debug_struct.field("failure_threshold", &self.failure_threshold);
debug_struct.field("success_threshold", &self.success_threshold);
debug_struct.field("check_interval", &self.check_interval);
debug_struct.field("timeout", &self.timeout);
debug_struct.field("initial_delay", &self.initial_delay);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::Library {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Library");
debug_struct.field("name", &self.name);
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::GetApplicationRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetApplicationRequest");
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::CreateApplicationRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateApplicationRequest");
debug_struct.field("application", &self.application);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateApplicationRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateApplicationRequest");
debug_struct.field("name", &self.name);
debug_struct.field("application", &self.application);
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::RepairApplicationRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RepairApplicationRequest");
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::ListServicesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListServicesRequest");
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::ListServicesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListServicesResponse");
debug_struct.field("services", &self.services);
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::GetServiceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetServiceRequest");
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::UpdateServiceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateServiceRequest");
debug_struct.field("name", &self.name);
debug_struct.field("service", &self.service);
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("migrate_traffic", &self.migrate_traffic);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteServiceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteServiceRequest");
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::ListVersionsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListVersionsRequest");
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);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListVersionsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListVersionsResponse");
debug_struct.field("versions", &self.versions);
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::GetVersionRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetVersionRequest");
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::CreateVersionRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateVersionRequest");
debug_struct.field("parent", &self.parent);
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::UpdateVersionRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateVersionRequest");
debug_struct.field("name", &self.name);
debug_struct.field("version", &self.version);
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::DeleteVersionRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteVersionRequest");
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);
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);
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::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);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DebugInstanceRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DebugInstanceRequest");
debug_struct.field("name", &self.name);
debug_struct.field("ssh_key", &self.ssh_key);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListIngressRulesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListIngressRulesRequest");
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("matching_address", &self.matching_address);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListIngressRulesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListIngressRulesResponse");
debug_struct.field("ingress_rules", &self.ingress_rules);
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::BatchUpdateIngressRulesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("BatchUpdateIngressRulesRequest");
debug_struct.field("name", &self.name);
debug_struct.field("ingress_rules", &self.ingress_rules);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::BatchUpdateIngressRulesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("BatchUpdateIngressRulesResponse");
debug_struct.field("ingress_rules", &self.ingress_rules);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CreateIngressRuleRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateIngressRuleRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("rule", &self.rule);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetIngressRuleRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetIngressRuleRequest");
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::UpdateIngressRuleRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateIngressRuleRequest");
debug_struct.field("name", &self.name);
debug_struct.field("rule", &self.rule);
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::DeleteIngressRuleRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteIngressRuleRequest");
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::ListAuthorizedDomainsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListAuthorizedDomainsRequest");
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::ListAuthorizedDomainsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListAuthorizedDomainsResponse");
debug_struct.field("domains", &self.domains);
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::ListAuthorizedCertificatesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListAuthorizedCertificatesRequest");
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);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListAuthorizedCertificatesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListAuthorizedCertificatesResponse");
debug_struct.field("certificates", &self.certificates);
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::GetAuthorizedCertificateRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetAuthorizedCertificateRequest");
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::CreateAuthorizedCertificateRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateAuthorizedCertificateRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("certificate", &self.certificate);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateAuthorizedCertificateRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateAuthorizedCertificateRequest");
debug_struct.field("name", &self.name);
debug_struct.field("certificate", &self.certificate);
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::DeleteAuthorizedCertificateRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteAuthorizedCertificateRequest");
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::ListDomainMappingsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListDomainMappingsRequest");
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::ListDomainMappingsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListDomainMappingsResponse");
debug_struct.field("domain_mappings", &self.domain_mappings);
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::GetDomainMappingRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetDomainMappingRequest");
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::CreateDomainMappingRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateDomainMappingRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("domain_mapping", &self.domain_mapping);
debug_struct.field("override_strategy", &self.override_strategy);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateDomainMappingRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateDomainMappingRequest");
debug_struct.field("name", &self.name);
debug_struct.field("domain_mapping", &self.domain_mapping);
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::DeleteDomainMappingRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteDomainMappingRequest");
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::Application {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Application");
debug_struct.field("name", &self.name);
debug_struct.field("id", &self.id);
debug_struct.field("dispatch_rules", &self.dispatch_rules);
debug_struct.field("auth_domain", &self.auth_domain);
debug_struct.field("location_id", &self.location_id);
debug_struct.field("code_bucket", &self.code_bucket);
debug_struct.field("default_cookie_expiration", &self.default_cookie_expiration);
debug_struct.field("serving_status", &self.serving_status);
debug_struct.field("default_hostname", &self.default_hostname);
debug_struct.field("default_bucket", &self.default_bucket);
debug_struct.field("service_account", &self.service_account);
debug_struct.field("iap", &self.iap);
debug_struct.field("gcr_domain", &self.gcr_domain);
debug_struct.field("database_type", &self.database_type);
debug_struct.field("feature_settings", &self.feature_settings);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::application::IdentityAwareProxy {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("IdentityAwareProxy");
debug_struct.field("enabled", &self.enabled);
debug_struct.field("oauth2_client_id", &self.oauth2_client_id);
debug_struct.field("oauth2_client_secret", &self.oauth2_client_secret);
debug_struct.field(
"oauth2_client_secret_sha256",
&self.oauth2_client_secret_sha256,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::application::FeatureSettings {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("FeatureSettings");
debug_struct.field("split_health_checks", &self.split_health_checks);
debug_struct.field(
"use_container_optimized_os",
&self.use_container_optimized_os,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UrlDispatchRule {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UrlDispatchRule");
debug_struct.field("domain", &self.domain);
debug_struct.field("path", &self.path);
debug_struct.field("service", &self.service);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::AuditData {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("AuditData");
debug_struct.field("method", &self.method);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateServiceMethod {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateServiceMethod");
debug_struct.field("request", &self.request);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CreateVersionMethod {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateVersionMethod");
debug_struct.field("request", &self.request);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::AuthorizedCertificate {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("AuthorizedCertificate");
debug_struct.field("name", &self.name);
debug_struct.field("id", &self.id);
debug_struct.field("display_name", &self.display_name);
debug_struct.field("domain_names", &self.domain_names);
debug_struct.field("expire_time", &self.expire_time);
debug_struct.field("certificate_raw_data", &self.certificate_raw_data);
debug_struct.field("managed_certificate", &self.managed_certificate);
debug_struct.field("visible_domain_mappings", &self.visible_domain_mappings);
debug_struct.field("domain_mappings_count", &self.domain_mappings_count);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CertificateRawData {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CertificateRawData");
debug_struct.field("public_certificate", &self.public_certificate);
debug_struct.field("private_key", &self.private_key);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ManagedCertificate {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ManagedCertificate");
debug_struct.field("last_renewal_time", &self.last_renewal_time);
debug_struct.field("status", &self.status);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::Deployment {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Deployment");
debug_struct.field("files", &self.files);
debug_struct.field("container", &self.container);
debug_struct.field("zip", &self.zip);
debug_struct.field("cloud_build_options", &self.cloud_build_options);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::FileInfo {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("FileInfo");
debug_struct.field("source_url", &self.source_url);
debug_struct.field("sha1_sum", &self.sha1_sum);
debug_struct.field("mime_type", &self.mime_type);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ContainerInfo {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ContainerInfo");
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::CloudBuildOptions {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CloudBuildOptions");
debug_struct.field("app_yaml_path", &self.app_yaml_path);
debug_struct.field("cloud_build_timeout", &self.cloud_build_timeout);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ZipInfo {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ZipInfo");
debug_struct.field("source_url", &self.source_url);
debug_struct.field("files_count", &self.files_count);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::AuthorizedDomain {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("AuthorizedDomain");
debug_struct.field("name", &self.name);
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::DomainMapping {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DomainMapping");
debug_struct.field("name", &self.name);
debug_struct.field("id", &self.id);
debug_struct.field("ssl_settings", &self.ssl_settings);
debug_struct.field("resource_records", &self.resource_records);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::SslSettings {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SslSettings");
debug_struct.field("certificate_id", &self.certificate_id);
debug_struct.field("ssl_management_type", &self.ssl_management_type);
debug_struct.field(
"pending_managed_certificate_id",
&self.pending_managed_certificate_id,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ResourceRecord {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ResourceRecord");
debug_struct.field("name", &self.name);
debug_struct.field("rrdata", &self.rrdata);
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::FirewallRule {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("FirewallRule");
debug_struct.field("priority", &self.priority);
debug_struct.field("action", &self.action);
debug_struct.field("source_range", &self.source_range);
debug_struct.field("description", &self.description);
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("app_engine_release", &self.app_engine_release);
debug_struct.field("availability", &self.availability);
debug_struct.field("vm_name", &self.vm_name);
debug_struct.field("vm_zone_name", &self.vm_zone_name);
debug_struct.field("vm_id", &self.vm_id);
debug_struct.field("start_time", &self.start_time);
debug_struct.field("requests", &self.requests);
debug_struct.field("errors", &self.errors);
debug_struct.field("qps", &self.qps);
debug_struct.field("average_latency", &self.average_latency);
debug_struct.field("memory_usage", &self.memory_usage);
debug_struct.field("vm_status", &self.vm_status);
debug_struct.field("vm_debug_enabled", &self.vm_debug_enabled);
debug_struct.field("vm_ip", &self.vm_ip);
debug_struct.field("vm_liveness", &self.vm_liveness);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::instance::Liveness {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Liveness");
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::LocationMetadata {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("LocationMetadata");
debug_struct.field(
"standard_environment_available",
&self.standard_environment_available,
);
debug_struct.field(
"flexible_environment_available",
&self.flexible_environment_available,
);
debug_struct.field("search_api_available", &self.search_api_available);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::NetworkSettings {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("NetworkSettings");
debug_struct.field("ingress_traffic_allowed", &self.ingress_traffic_allowed);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::OperationMetadataV1 {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("OperationMetadataV1");
debug_struct.field("method", &self.method);
debug_struct.field("insert_time", &self.insert_time);
debug_struct.field("end_time", &self.end_time);
debug_struct.field("user", &self.user);
debug_struct.field("target", &self.target);
debug_struct.field("ephemeral_message", &self.ephemeral_message);
debug_struct.field("warning", &self.warning);
debug_struct.field("method_metadata", &self.method_metadata);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CreateVersionMetadataV1 {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateVersionMetadataV1");
debug_struct.field("cloud_build_id", &self.cloud_build_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::Service {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Service");
debug_struct.field("name", &self.name);
debug_struct.field("id", &self.id);
debug_struct.field("split", &self.split);
debug_struct.field("labels", &self.labels);
debug_struct.field("network_settings", &self.network_settings);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::TrafficSplit {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("TrafficSplit");
debug_struct.field("shard_by", &self.shard_by);
debug_struct.field("allocations", &self.allocations);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::Version {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Version");
debug_struct.field("name", &self.name);
debug_struct.field("id", &self.id);
debug_struct.field("inbound_services", &self.inbound_services);
debug_struct.field("instance_class", &self.instance_class);
debug_struct.field("network", &self.network);
debug_struct.field("zones", &self.zones);
debug_struct.field("resources", &self.resources);
debug_struct.field("runtime", &self.runtime);
debug_struct.field("runtime_channel", &self.runtime_channel);
debug_struct.field("threadsafe", &self.threadsafe);
debug_struct.field("vm", &self.vm);
debug_struct.field("app_engine_apis", &self.app_engine_apis);
debug_struct.field("beta_settings", &self.beta_settings);
debug_struct.field("env", &self.env);
debug_struct.field("serving_status", &self.serving_status);
debug_struct.field("created_by", &self.created_by);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("disk_usage_bytes", &self.disk_usage_bytes);
debug_struct.field("runtime_api_version", &self.runtime_api_version);
debug_struct.field(
"runtime_main_executable_path",
&self.runtime_main_executable_path,
);
debug_struct.field("service_account", &self.service_account);
debug_struct.field("handlers", &self.handlers);
debug_struct.field("error_handlers", &self.error_handlers);
debug_struct.field("libraries", &self.libraries);
debug_struct.field("api_config", &self.api_config);
debug_struct.field("env_variables", &self.env_variables);
debug_struct.field("build_env_variables", &self.build_env_variables);
debug_struct.field("default_expiration", &self.default_expiration);
debug_struct.field("health_check", &self.health_check);
debug_struct.field("readiness_check", &self.readiness_check);
debug_struct.field("liveness_check", &self.liveness_check);
debug_struct.field("nobuild_files_regex", &self.nobuild_files_regex);
debug_struct.field("deployment", &self.deployment);
debug_struct.field("version_url", &self.version_url);
debug_struct.field("endpoints_api_service", &self.endpoints_api_service);
debug_struct.field("entrypoint", &self.entrypoint);
debug_struct.field("vpc_access_connector", &self.vpc_access_connector);
debug_struct.field("scaling", &self.scaling);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::EndpointsApiService {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("EndpointsApiService");
debug_struct.field("name", &self.name);
debug_struct.field("config_id", &self.config_id);
debug_struct.field("rollout_strategy", &self.rollout_strategy);
debug_struct.field("disable_trace_sampling", &self.disable_trace_sampling);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::AutomaticScaling {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("AutomaticScaling");
debug_struct.field("cool_down_period", &self.cool_down_period);
debug_struct.field("cpu_utilization", &self.cpu_utilization);
debug_struct.field("max_concurrent_requests", &self.max_concurrent_requests);
debug_struct.field("max_idle_instances", &self.max_idle_instances);
debug_struct.field("max_total_instances", &self.max_total_instances);
debug_struct.field("max_pending_latency", &self.max_pending_latency);
debug_struct.field("min_idle_instances", &self.min_idle_instances);
debug_struct.field("min_total_instances", &self.min_total_instances);
debug_struct.field("min_pending_latency", &self.min_pending_latency);
debug_struct.field("request_utilization", &self.request_utilization);
debug_struct.field("disk_utilization", &self.disk_utilization);
debug_struct.field("network_utilization", &self.network_utilization);
debug_struct.field(
"standard_scheduler_settings",
&self.standard_scheduler_settings,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::BasicScaling {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("BasicScaling");
debug_struct.field("idle_timeout", &self.idle_timeout);
debug_struct.field("max_instances", &self.max_instances);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ManualScaling {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ManualScaling");
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::CpuUtilization {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CpuUtilization");
debug_struct.field("aggregation_window_length", &self.aggregation_window_length);
debug_struct.field("target_utilization", &self.target_utilization);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::RequestUtilization {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RequestUtilization");
debug_struct.field(
"target_request_count_per_second",
&self.target_request_count_per_second,
);
debug_struct.field(
"target_concurrent_requests",
&self.target_concurrent_requests,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DiskUtilization {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DiskUtilization");
debug_struct.field(
"target_write_bytes_per_second",
&self.target_write_bytes_per_second,
);
debug_struct.field(
"target_write_ops_per_second",
&self.target_write_ops_per_second,
);
debug_struct.field(
"target_read_bytes_per_second",
&self.target_read_bytes_per_second,
);
debug_struct.field(
"target_read_ops_per_second",
&self.target_read_ops_per_second,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::NetworkUtilization {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("NetworkUtilization");
debug_struct.field(
"target_sent_bytes_per_second",
&self.target_sent_bytes_per_second,
);
debug_struct.field(
"target_sent_packets_per_second",
&self.target_sent_packets_per_second,
);
debug_struct.field(
"target_received_bytes_per_second",
&self.target_received_bytes_per_second,
);
debug_struct.field(
"target_received_packets_per_second",
&self.target_received_packets_per_second,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::StandardSchedulerSettings {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("StandardSchedulerSettings");
debug_struct.field("target_cpu_utilization", &self.target_cpu_utilization);
debug_struct.field(
"target_throughput_utilization",
&self.target_throughput_utilization,
);
debug_struct.field("min_instances", &self.min_instances);
debug_struct.field("max_instances", &self.max_instances);
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("forwarded_ports", &self.forwarded_ports);
debug_struct.field("instance_tag", &self.instance_tag);
debug_struct.field("name", &self.name);
debug_struct.field("subnetwork_name", &self.subnetwork_name);
debug_struct.field("session_affinity", &self.session_affinity);
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("volume_type", &self.volume_type);
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::Resources {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Resources");
debug_struct.field("cpu", &self.cpu);
debug_struct.field("disk_gb", &self.disk_gb);
debug_struct.field("memory_gb", &self.memory_gb);
debug_struct.field("volumes", &self.volumes);
debug_struct.field("kms_key_reference", &self.kms_key_reference);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::VpcAccessConnector {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("VpcAccessConnector");
debug_struct.field("name", &self.name);
debug_struct.field("egress_setting", &self.egress_setting);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::Entrypoint {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Entrypoint");
debug_struct.field("command", &self.command);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}