Class: Google::Cloud::CertificateManager::V1::Certificate::ManagedCertificate::ProvisioningIssue

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/certificatemanager/v1/certificate_manager.rb

Overview

Information about issues with provisioning a Managed Certificate.

Defined Under Namespace

Modules: Reason

Instance Attribute Summary collapse

Instance Attribute Details

#details::String (readonly)

Returns Output only. Human readable explanation about the issue. Provided to help address the configuration issues. Not guaranteed to be stable. For programmatic access use Reason enum.

Returns:

  • (::String)

    Output only. Human readable explanation about the issue. Provided to help address the configuration issues. Not guaranteed to be stable. For programmatic access use Reason enum.



534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
# File 'proto_docs/google/cloud/certificatemanager/v1/certificate_manager.rb', line 534

class ProvisioningIssue
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Reason for provisioning failures.
  module Reason
    # Reason is unspecified.
    REASON_UNSPECIFIED = 0

    # Certificate provisioning failed due to an issue with one or more of
    # the domains on the certificate.
    # For details of which domains failed, consult the
    # `authorization_attempt_info` field.
    AUTHORIZATION_ISSUE = 1

    # Exceeded Certificate Authority quotas or internal rate limits of the
    # system. Provisioning may take longer to complete.
    RATE_LIMITED = 2
  end
end

#reason::Google::Cloud::CertificateManager::V1::Certificate::ManagedCertificate::ProvisioningIssue::Reason (readonly)

Returns Output only. Reason for provisioning failures.



534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
# File 'proto_docs/google/cloud/certificatemanager/v1/certificate_manager.rb', line 534

class ProvisioningIssue
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Reason for provisioning failures.
  module Reason
    # Reason is unspecified.
    REASON_UNSPECIFIED = 0

    # Certificate provisioning failed due to an issue with one or more of
    # the domains on the certificate.
    # For details of which domains failed, consult the
    # `authorization_attempt_info` field.
    AUTHORIZATION_ISSUE = 1

    # Exceeded Certificate Authority quotas or internal rate limits of the
    # system. Provisioning may take longer to complete.
    RATE_LIMITED = 2
  end
end