Class: Google::Cloud::AppEngine::V1::SslSettings
- Inherits:
-
Object
- Object
- Google::Cloud::AppEngine::V1::SslSettings
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/appengine/v1/domain_mapping.rb
Overview
SSL configuration for a DomainMapping
resource.
Defined Under Namespace
Modules: SslManagementType
Instance Attribute Summary collapse
-
#certificate_id ⇒ ::String
ID of the
AuthorizedCertificate
resource configuring SSL for the application. -
#pending_managed_certificate_id ⇒ ::String
ID of the managed
AuthorizedCertificate
resource currently being provisioned, if applicable. -
#ssl_management_type ⇒ ::Google::Cloud::AppEngine::V1::SslSettings::SslManagementType
SSL management type for this domain.
Instance Attribute Details
#certificate_id ⇒ ::String
Returns ID of the AuthorizedCertificate
resource configuring SSL for the
application. Clearing this field will remove SSL support.
By default, a managed certificate is automatically created for every
domain mapping. To omit SSL support or to configure SSL manually, specify
SslManagementType.MANUAL
on a CREATE
or UPDATE
request. You must
be authorized to administer the AuthorizedCertificate
resource to
manually map it to a DomainMapping
resource.
Example: 12345
.
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'proto_docs/google/appengine/v1/domain_mapping.rb', line 73 class SslSettings include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The SSL management type for this domain. module SslManagementType # Defaults to `AUTOMATIC`. SSL_MANAGEMENT_TYPE_UNSPECIFIED = 0 # SSL support for this domain is configured automatically. The mapped SSL # certificate will be automatically renewed. AUTOMATIC = 1 # SSL support for this domain is configured manually by the user. Either # the domain has no SSL support or a user-obtained SSL certificate has been # explictly mapped to this domain. MANUAL = 2 end end |
#pending_managed_certificate_id ⇒ ::String
Returns ID of the managed AuthorizedCertificate
resource currently being
provisioned, if applicable. Until the new managed certificate has been
successfully provisioned, the previous SSL state will be preserved. Once
the provisioning process completes, the certificate_id
field will reflect
the new managed certificate and this field will be left empty. To remove
SSL support while there is still a pending managed certificate, clear the
certificate_id
field with an UpdateDomainMappingRequest
.
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'proto_docs/google/appengine/v1/domain_mapping.rb', line 73 class SslSettings include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The SSL management type for this domain. module SslManagementType # Defaults to `AUTOMATIC`. SSL_MANAGEMENT_TYPE_UNSPECIFIED = 0 # SSL support for this domain is configured automatically. The mapped SSL # certificate will be automatically renewed. AUTOMATIC = 1 # SSL support for this domain is configured manually by the user. Either # the domain has no SSL support or a user-obtained SSL certificate has been # explictly mapped to this domain. MANUAL = 2 end end |
#ssl_management_type ⇒ ::Google::Cloud::AppEngine::V1::SslSettings::SslManagementType
Returns SSL management type for this domain. If AUTOMATIC
, a managed certificate
is automatically provisioned. If MANUAL
, certificate_id
must be
manually specified in order to configure SSL for this domain.
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'proto_docs/google/appengine/v1/domain_mapping.rb', line 73 class SslSettings include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The SSL management type for this domain. module SslManagementType # Defaults to `AUTOMATIC`. SSL_MANAGEMENT_TYPE_UNSPECIFIED = 0 # SSL support for this domain is configured automatically. The mapped SSL # certificate will be automatically renewed. AUTOMATIC = 1 # SSL support for this domain is configured manually by the user. Either # the domain has no SSL support or a user-obtained SSL certificate has been # explictly mapped to this domain. MANUAL = 2 end end |