#[allow(unused_imports)]
use super::*;
impl std::fmt::Debug for super::CertificateAuthority {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CertificateAuthority");
debug_struct.field("name", &self.name);
debug_struct.field("r#type", &self.r#type);
debug_struct.field("config", &self.config);
debug_struct.field("lifetime", &self.lifetime);
debug_struct.field("key_spec", &self.key_spec);
debug_struct.field("subordinate_config", &self.subordinate_config);
debug_struct.field("tier", &self.tier);
debug_struct.field("state", &self.state);
debug_struct.field("pem_ca_certificates", &self.pem_ca_certificates);
debug_struct.field(
"ca_certificate_descriptions",
&self.ca_certificate_descriptions,
);
debug_struct.field("gcs_bucket", &self.gcs_bucket);
debug_struct.field("access_urls", &self.access_urls);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("update_time", &self.update_time);
debug_struct.field("delete_time", &self.delete_time);
debug_struct.field("expire_time", &self.expire_time);
debug_struct.field("labels", &self.labels);
debug_struct.field("user_defined_access_urls", &self.user_defined_access_urls);
debug_struct.field("satisfies_pzs", &self.satisfies_pzs);
debug_struct.field("satisfies_pzi", &self.satisfies_pzi);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::certificate_authority::AccessUrls {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("AccessUrls");
debug_struct.field("ca_certificate_access_url", &self.ca_certificate_access_url);
debug_struct.field("crl_access_urls", &self.crl_access_urls);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::certificate_authority::KeyVersionSpec {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("KeyVersionSpec");
debug_struct.field("key_version", &self.key_version);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::certificate_authority::UserDefinedAccessUrls {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UserDefinedAccessUrls");
debug_struct.field(
"aia_issuing_certificate_urls",
&self.aia_issuing_certificate_urls,
);
debug_struct.field("crl_access_urls", &self.crl_access_urls);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CaPool {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CaPool");
debug_struct.field("name", &self.name);
debug_struct.field("tier", &self.tier);
debug_struct.field("issuance_policy", &self.issuance_policy);
debug_struct.field("publishing_options", &self.publishing_options);
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::ca_pool::PublishingOptions {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("PublishingOptions");
debug_struct.field("publish_ca_cert", &self.publish_ca_cert);
debug_struct.field("publish_crl", &self.publish_crl);
debug_struct.field("encoding_format", &self.encoding_format);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ca_pool::IssuancePolicy {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("IssuancePolicy");
debug_struct.field("allowed_key_types", &self.allowed_key_types);
debug_struct.field("backdate_duration", &self.backdate_duration);
debug_struct.field("maximum_lifetime", &self.maximum_lifetime);
debug_struct.field("allowed_issuance_modes", &self.allowed_issuance_modes);
debug_struct.field("baseline_values", &self.baseline_values);
debug_struct.field("identity_constraints", &self.identity_constraints);
debug_struct.field("passthrough_extensions", &self.passthrough_extensions);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ca_pool::issuance_policy::AllowedKeyType {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("AllowedKeyType");
debug_struct.field("key_type", &self.key_type);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ca_pool::issuance_policy::allowed_key_type::RsaKeyType {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RsaKeyType");
debug_struct.field("min_modulus_size", &self.min_modulus_size);
debug_struct.field("max_modulus_size", &self.max_modulus_size);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ca_pool::issuance_policy::allowed_key_type::EcKeyType {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("EcKeyType");
debug_struct.field("signature_algorithm", &self.signature_algorithm);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ca_pool::issuance_policy::IssuanceModes {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("IssuanceModes");
debug_struct.field("allow_csr_based_issuance", &self.allow_csr_based_issuance);
debug_struct.field(
"allow_config_based_issuance",
&self.allow_config_based_issuance,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CertificateRevocationList {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CertificateRevocationList");
debug_struct.field("name", &self.name);
debug_struct.field("sequence_number", &self.sequence_number);
debug_struct.field("revoked_certificates", &self.revoked_certificates);
debug_struct.field("pem_crl", &self.pem_crl);
debug_struct.field("access_url", &self.access_url);
debug_struct.field("state", &self.state);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("update_time", &self.update_time);
debug_struct.field("revision_id", &self.revision_id);
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::certificate_revocation_list::RevokedCertificate {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RevokedCertificate");
debug_struct.field("certificate", &self.certificate);
debug_struct.field("hex_serial_number", &self.hex_serial_number);
debug_struct.field("revocation_reason", &self.revocation_reason);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::Certificate {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Certificate");
debug_struct.field("name", &self.name);
debug_struct.field(
"issuer_certificate_authority",
&self.issuer_certificate_authority,
);
debug_struct.field("lifetime", &self.lifetime);
debug_struct.field("certificate_template", &self.certificate_template);
debug_struct.field("subject_mode", &self.subject_mode);
debug_struct.field("revocation_details", &self.revocation_details);
debug_struct.field("pem_certificate", &self.pem_certificate);
debug_struct.field("certificate_description", &self.certificate_description);
debug_struct.field("pem_certificate_chain", &self.pem_certificate_chain);
debug_struct.field("create_time", &self.create_time);
debug_struct.field("update_time", &self.update_time);
debug_struct.field("labels", &self.labels);
debug_struct.field("certificate_config", &self.certificate_config);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::certificate::RevocationDetails {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RevocationDetails");
debug_struct.field("revocation_state", &self.revocation_state);
debug_struct.field("revocation_time", &self.revocation_time);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CertificateTemplate {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CertificateTemplate");
debug_struct.field("name", &self.name);
debug_struct.field("maximum_lifetime", &self.maximum_lifetime);
debug_struct.field("predefined_values", &self.predefined_values);
debug_struct.field("identity_constraints", &self.identity_constraints);
debug_struct.field("passthrough_extensions", &self.passthrough_extensions);
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("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::X509Parameters {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("X509Parameters");
debug_struct.field("key_usage", &self.key_usage);
debug_struct.field("ca_options", &self.ca_options);
debug_struct.field("policy_ids", &self.policy_ids);
debug_struct.field("aia_ocsp_servers", &self.aia_ocsp_servers);
debug_struct.field("name_constraints", &self.name_constraints);
debug_struct.field("additional_extensions", &self.additional_extensions);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::x_509_parameters::CaOptions {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CaOptions");
debug_struct.field("is_ca", &self.is_ca);
debug_struct.field("max_issuer_path_length", &self.max_issuer_path_length);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::x_509_parameters::NameConstraints {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("NameConstraints");
debug_struct.field("critical", &self.critical);
debug_struct.field("permitted_dns_names", &self.permitted_dns_names);
debug_struct.field("excluded_dns_names", &self.excluded_dns_names);
debug_struct.field("permitted_ip_ranges", &self.permitted_ip_ranges);
debug_struct.field("excluded_ip_ranges", &self.excluded_ip_ranges);
debug_struct.field("permitted_email_addresses", &self.permitted_email_addresses);
debug_struct.field("excluded_email_addresses", &self.excluded_email_addresses);
debug_struct.field("permitted_uris", &self.permitted_uris);
debug_struct.field("excluded_uris", &self.excluded_uris);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::SubordinateConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SubordinateConfig");
debug_struct.field("subordinate_config", &self.subordinate_config);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::subordinate_config::SubordinateConfigChain {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SubordinateConfigChain");
debug_struct.field("pem_certificates", &self.pem_certificates);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::PublicKey {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("PublicKey");
debug_struct.field("key", &self.key);
debug_struct.field("format", &self.format);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CertificateConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CertificateConfig");
debug_struct.field("subject_config", &self.subject_config);
debug_struct.field("x509_config", &self.x509_config);
debug_struct.field("public_key", &self.public_key);
debug_struct.field("subject_key_id", &self.subject_key_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::certificate_config::SubjectConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SubjectConfig");
debug_struct.field("subject", &self.subject);
debug_struct.field("subject_alt_name", &self.subject_alt_name);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::certificate_config::KeyId {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("KeyId");
debug_struct.field("key_id", &self.key_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CertificateDescription {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CertificateDescription");
debug_struct.field("subject_description", &self.subject_description);
debug_struct.field("x509_description", &self.x509_description);
debug_struct.field("public_key", &self.public_key);
debug_struct.field("subject_key_id", &self.subject_key_id);
debug_struct.field("authority_key_id", &self.authority_key_id);
debug_struct.field("crl_distribution_points", &self.crl_distribution_points);
debug_struct.field(
"aia_issuing_certificate_urls",
&self.aia_issuing_certificate_urls,
);
debug_struct.field("cert_fingerprint", &self.cert_fingerprint);
debug_struct.field("tbs_certificate_digest", &self.tbs_certificate_digest);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::certificate_description::SubjectDescription {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SubjectDescription");
debug_struct.field("subject", &self.subject);
debug_struct.field("subject_alt_name", &self.subject_alt_name);
debug_struct.field("hex_serial_number", &self.hex_serial_number);
debug_struct.field("lifetime", &self.lifetime);
debug_struct.field("not_before_time", &self.not_before_time);
debug_struct.field("not_after_time", &self.not_after_time);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::certificate_description::KeyId {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("KeyId");
debug_struct.field("key_id", &self.key_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::certificate_description::CertificateFingerprint {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CertificateFingerprint");
debug_struct.field("sha256_hash", &self.sha256_hash);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ObjectId {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ObjectId");
debug_struct.field("object_id_path", &self.object_id_path);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::X509Extension {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("X509Extension");
debug_struct.field("object_id", &self.object_id);
debug_struct.field("critical", &self.critical);
debug_struct.field("value", &self.value);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::KeyUsage {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("KeyUsage");
debug_struct.field("base_key_usage", &self.base_key_usage);
debug_struct.field("extended_key_usage", &self.extended_key_usage);
debug_struct.field(
"unknown_extended_key_usages",
&self.unknown_extended_key_usages,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::key_usage::KeyUsageOptions {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("KeyUsageOptions");
debug_struct.field("digital_signature", &self.digital_signature);
debug_struct.field("content_commitment", &self.content_commitment);
debug_struct.field("key_encipherment", &self.key_encipherment);
debug_struct.field("data_encipherment", &self.data_encipherment);
debug_struct.field("key_agreement", &self.key_agreement);
debug_struct.field("cert_sign", &self.cert_sign);
debug_struct.field("crl_sign", &self.crl_sign);
debug_struct.field("encipher_only", &self.encipher_only);
debug_struct.field("decipher_only", &self.decipher_only);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::key_usage::ExtendedKeyUsageOptions {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ExtendedKeyUsageOptions");
debug_struct.field("server_auth", &self.server_auth);
debug_struct.field("client_auth", &self.client_auth);
debug_struct.field("code_signing", &self.code_signing);
debug_struct.field("email_protection", &self.email_protection);
debug_struct.field("time_stamping", &self.time_stamping);
debug_struct.field("ocsp_signing", &self.ocsp_signing);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::AttributeTypeAndValue {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("AttributeTypeAndValue");
debug_struct.field("value", &self.value);
debug_struct.field("attribute_type", &self.attribute_type);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::RelativeDistinguishedName {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RelativeDistinguishedName");
debug_struct.field("attributes", &self.attributes);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::Subject {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("Subject");
debug_struct.field("common_name", &self.common_name);
debug_struct.field("country_code", &self.country_code);
debug_struct.field("organization", &self.organization);
debug_struct.field("organizational_unit", &self.organizational_unit);
debug_struct.field("locality", &self.locality);
debug_struct.field("province", &self.province);
debug_struct.field("street_address", &self.street_address);
debug_struct.field("postal_code", &self.postal_code);
debug_struct.field("rdn_sequence", &self.rdn_sequence);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::SubjectAltNames {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("SubjectAltNames");
debug_struct.field("dns_names", &self.dns_names);
debug_struct.field("uris", &self.uris);
debug_struct.field("email_addresses", &self.email_addresses);
debug_struct.field("ip_addresses", &self.ip_addresses);
debug_struct.field("custom_sans", &self.custom_sans);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CertificateIdentityConstraints {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CertificateIdentityConstraints");
debug_struct.field("cel_expression", &self.cel_expression);
debug_struct.field("allow_subject_passthrough", &self.allow_subject_passthrough);
debug_struct.field(
"allow_subject_alt_names_passthrough",
&self.allow_subject_alt_names_passthrough,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CertificateExtensionConstraints {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CertificateExtensionConstraints");
debug_struct.field("known_extensions", &self.known_extensions);
debug_struct.field("additional_extensions", &self.additional_extensions);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CreateCertificateRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateCertificateRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("certificate_id", &self.certificate_id);
debug_struct.field("certificate", &self.certificate);
debug_struct.field("request_id", &self.request_id);
debug_struct.field("validate_only", &self.validate_only);
debug_struct.field(
"issuing_certificate_authority_id",
&self.issuing_certificate_authority_id,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetCertificateRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetCertificateRequest");
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::ListCertificatesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListCertificatesRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("filter", &self.filter);
debug_struct.field("order_by", &self.order_by);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListCertificatesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListCertificatesResponse");
debug_struct.field("certificates", &self.certificates);
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("unreachable", &self.unreachable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::RevokeCertificateRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("RevokeCertificateRequest");
debug_struct.field("name", &self.name);
debug_struct.field("reason", &self.reason);
debug_struct.field("request_id", &self.request_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateCertificateRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateCertificateRequest");
debug_struct.field("certificate", &self.certificate);
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("request_id", &self.request_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ActivateCertificateAuthorityRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ActivateCertificateAuthorityRequest");
debug_struct.field("name", &self.name);
debug_struct.field("pem_ca_certificate", &self.pem_ca_certificate);
debug_struct.field("subordinate_config", &self.subordinate_config);
debug_struct.field("request_id", &self.request_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CreateCertificateAuthorityRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateCertificateAuthorityRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("certificate_authority_id", &self.certificate_authority_id);
debug_struct.field("certificate_authority", &self.certificate_authority);
debug_struct.field("request_id", &self.request_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DisableCertificateAuthorityRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DisableCertificateAuthorityRequest");
debug_struct.field("name", &self.name);
debug_struct.field("request_id", &self.request_id);
debug_struct.field(
"ignore_dependent_resources",
&self.ignore_dependent_resources,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::EnableCertificateAuthorityRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("EnableCertificateAuthorityRequest");
debug_struct.field("name", &self.name);
debug_struct.field("request_id", &self.request_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::FetchCertificateAuthorityCsrRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("FetchCertificateAuthorityCsrRequest");
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::FetchCertificateAuthorityCsrResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("FetchCertificateAuthorityCsrResponse");
debug_struct.field("pem_csr", &self.pem_csr);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetCertificateAuthorityRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetCertificateAuthorityRequest");
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::ListCertificateAuthoritiesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListCertificateAuthoritiesRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("filter", &self.filter);
debug_struct.field("order_by", &self.order_by);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListCertificateAuthoritiesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListCertificateAuthoritiesResponse");
debug_struct.field("certificate_authorities", &self.certificate_authorities);
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("unreachable", &self.unreachable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UndeleteCertificateAuthorityRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UndeleteCertificateAuthorityRequest");
debug_struct.field("name", &self.name);
debug_struct.field("request_id", &self.request_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteCertificateAuthorityRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteCertificateAuthorityRequest");
debug_struct.field("name", &self.name);
debug_struct.field("request_id", &self.request_id);
debug_struct.field(
"ignore_active_certificates",
&self.ignore_active_certificates,
);
debug_struct.field("skip_grace_period", &self.skip_grace_period);
debug_struct.field(
"ignore_dependent_resources",
&self.ignore_dependent_resources,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateCertificateAuthorityRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateCertificateAuthorityRequest");
debug_struct.field("certificate_authority", &self.certificate_authority);
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("request_id", &self.request_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CreateCaPoolRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateCaPoolRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("ca_pool_id", &self.ca_pool_id);
debug_struct.field("ca_pool", &self.ca_pool);
debug_struct.field("request_id", &self.request_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateCaPoolRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateCaPoolRequest");
debug_struct.field("ca_pool", &self.ca_pool);
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("request_id", &self.request_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteCaPoolRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteCaPoolRequest");
debug_struct.field("name", &self.name);
debug_struct.field("request_id", &self.request_id);
debug_struct.field(
"ignore_dependent_resources",
&self.ignore_dependent_resources,
);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::FetchCaCertsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("FetchCaCertsRequest");
debug_struct.field("ca_pool", &self.ca_pool);
debug_struct.field("request_id", &self.request_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::FetchCaCertsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("FetchCaCertsResponse");
debug_struct.field("ca_certs", &self.ca_certs);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::fetch_ca_certs_response::CertChain {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CertChain");
debug_struct.field("certificates", &self.certificates);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetCaPoolRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetCaPoolRequest");
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::ListCaPoolsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListCaPoolsRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("filter", &self.filter);
debug_struct.field("order_by", &self.order_by);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListCaPoolsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListCaPoolsResponse");
debug_struct.field("ca_pools", &self.ca_pools);
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("unreachable", &self.unreachable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetCertificateRevocationListRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetCertificateRevocationListRequest");
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::ListCertificateRevocationListsRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListCertificateRevocationListsRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("filter", &self.filter);
debug_struct.field("order_by", &self.order_by);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListCertificateRevocationListsResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListCertificateRevocationListsResponse");
debug_struct.field(
"certificate_revocation_lists",
&self.certificate_revocation_lists,
);
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("unreachable", &self.unreachable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateCertificateRevocationListRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateCertificateRevocationListRequest");
debug_struct.field(
"certificate_revocation_list",
&self.certificate_revocation_list,
);
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("request_id", &self.request_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CreateCertificateTemplateRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CreateCertificateTemplateRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("certificate_template_id", &self.certificate_template_id);
debug_struct.field("certificate_template", &self.certificate_template);
debug_struct.field("request_id", &self.request_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::DeleteCertificateTemplateRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("DeleteCertificateTemplateRequest");
debug_struct.field("name", &self.name);
debug_struct.field("request_id", &self.request_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::GetCertificateTemplateRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("GetCertificateTemplateRequest");
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::ListCertificateTemplatesRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListCertificateTemplatesRequest");
debug_struct.field("parent", &self.parent);
debug_struct.field("page_size", &self.page_size);
debug_struct.field("page_token", &self.page_token);
debug_struct.field("filter", &self.filter);
debug_struct.field("order_by", &self.order_by);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::ListCertificateTemplatesResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("ListCertificateTemplatesResponse");
debug_struct.field("certificate_templates", &self.certificate_templates);
debug_struct.field("next_page_token", &self.next_page_token);
debug_struct.field("unreachable", &self.unreachable);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UpdateCertificateTemplateRequest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UpdateCertificateTemplateRequest");
debug_struct.field("certificate_template", &self.certificate_template);
debug_struct.field("update_mask", &self.update_mask);
debug_struct.field("request_id", &self.request_id);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::OperationMetadata {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("OperationMetadata");
debug_struct.field("create_time", &self.create_time);
debug_struct.field("end_time", &self.end_time);
debug_struct.field("target", &self.target);
debug_struct.field("verb", &self.verb);
debug_struct.field("status_message", &self.status_message);
debug_struct.field("requested_cancellation", &self.requested_cancellation);
debug_struct.field("api_version", &self.api_version);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}