Class SslSettings (2.43.0)

public final class SslSettings extends GeneratedMessageV3 implements SslSettingsOrBuilder

SSL configuration for a DomainMapping resource.

Protobuf type google.appengine.v1.SslSettings

Static Fields

CERTIFICATE_ID_FIELD_NUMBER

public static final int CERTIFICATE_ID_FIELD_NUMBER
Field Value
Type Description
int

PENDING_MANAGED_CERTIFICATE_ID_FIELD_NUMBER

public static final int PENDING_MANAGED_CERTIFICATE_ID_FIELD_NUMBER
Field Value
Type Description
int

SSL_MANAGEMENT_TYPE_FIELD_NUMBER

public static final int SSL_MANAGEMENT_TYPE_FIELD_NUMBER
Field Value
Type Description
int

Static Methods

getDefaultInstance()

public static SslSettings getDefaultInstance()
Returns
Type Description
SslSettings

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
Type Description
Descriptor

newBuilder()

public static SslSettings.Builder newBuilder()
Returns
Type Description
SslSettings.Builder

newBuilder(SslSettings prototype)

public static SslSettings.Builder newBuilder(SslSettings prototype)
Parameter
Name Description
prototype SslSettings
Returns
Type Description
SslSettings.Builder

parseDelimitedFrom(InputStream input)

public static SslSettings parseDelimitedFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
SslSettings
Exceptions
Type Description
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static SslSettings parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
SslSettings
Exceptions
Type Description
IOException

parseFrom(byte[] data)

public static SslSettings parseFrom(byte[] data)
Parameter
Name Description
data byte[]
Returns
Type Description
SslSettings
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static SslSettings parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data byte[]
extensionRegistry ExtensionRegistryLite
Returns
Type Description
SslSettings
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data)

public static SslSettings parseFrom(ByteString data)
Parameter
Name Description
data ByteString
Returns
Type Description
SslSettings
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static SslSettings parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteString
extensionRegistry ExtensionRegistryLite
Returns
Type Description
SslSettings
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static SslSettings parseFrom(CodedInputStream input)
Parameter
Name Description
input CodedInputStream
Returns
Type Description
SslSettings
Exceptions
Type Description
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static SslSettings parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input CodedInputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
SslSettings
Exceptions
Type Description
IOException

parseFrom(InputStream input)

public static SslSettings parseFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
SslSettings
Exceptions
Type Description
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static SslSettings parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
SslSettings
Exceptions
Type Description
IOException

parseFrom(ByteBuffer data)

public static SslSettings parseFrom(ByteBuffer data)
Parameter
Name Description
data ByteBuffer
Returns
Type Description
SslSettings
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static SslSettings parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteBuffer
extensionRegistry ExtensionRegistryLite
Returns
Type Description
SslSettings
Exceptions
Type Description
InvalidProtocolBufferException

parser()

public static Parser<SslSettings> parser()
Returns
Type Description
Parser<SslSettings>

Methods

equals(Object obj)

public boolean equals(Object obj)
Parameter
Name Description
obj Object
Returns
Type Description
boolean
Overrides

getCertificateId()

public String getCertificateId()

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.

string certificate_id = 1;

Returns
Type Description
String

The certificateId.

getCertificateIdBytes()

public ByteString getCertificateIdBytes()

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.

string certificate_id = 1;

Returns
Type Description
ByteString

The bytes for certificateId.

getDefaultInstanceForType()

public SslSettings getDefaultInstanceForType()
Returns
Type Description
SslSettings

getParserForType()

public Parser<SslSettings> getParserForType()
Returns
Type Description
Parser<SslSettings>
Overrides

getPendingManagedCertificateId()

public String getPendingManagedCertificateId()

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.

@OutputOnly

string pending_managed_certificate_id = 4;

Returns
Type Description
String

The pendingManagedCertificateId.

getPendingManagedCertificateIdBytes()

public ByteString getPendingManagedCertificateIdBytes()

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.

@OutputOnly

string pending_managed_certificate_id = 4;

Returns
Type Description
ByteString

The bytes for pendingManagedCertificateId.

getSerializedSize()

public int getSerializedSize()
Returns
Type Description
int
Overrides

getSslManagementType()

public SslSettings.SslManagementType getSslManagementType()

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.

.google.appengine.v1.SslSettings.SslManagementType ssl_management_type = 3;

Returns
Type Description
SslSettings.SslManagementType

The sslManagementType.

getSslManagementTypeValue()

public int getSslManagementTypeValue()

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.

.google.appengine.v1.SslSettings.SslManagementType ssl_management_type = 3;

Returns
Type Description
int

The enum numeric value on the wire for sslManagementType.

hashCode()

public int hashCode()
Returns
Type Description
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Type Description
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
Type Description
boolean
Overrides

newBuilderForType()

public SslSettings.Builder newBuilderForType()
Returns
Type Description
SslSettings.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent)

protected SslSettings.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
Name Description
parent BuilderParent
Returns
Type Description
SslSettings.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
Name Description
unused UnusedPrivateParameter
Returns
Type Description
Object
Overrides

toBuilder()

public SslSettings.Builder toBuilder()
Returns
Type Description
SslSettings.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
Name Description
output CodedOutputStream
Overrides
Exceptions
Type Description
IOException