Package com.google.appengine.v1
Interface DomainMappingOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DomainMapping,DomainMapping.Builder
public interface DomainMappingOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetId()Relative name of the domain serving the application.com.google.protobuf.ByteStringgetIdBytes()Relative name of the domain serving the application.StringgetName()Full path to the `DomainMapping` resource in the API.com.google.protobuf.ByteStringgetNameBytes()Full path to the `DomainMapping` resource in the API.ResourceRecordgetResourceRecords(int index)The resource records required to configure this domain mapping.intgetResourceRecordsCount()The resource records required to configure this domain mapping.List<ResourceRecord>getResourceRecordsList()The resource records required to configure this domain mapping.ResourceRecordOrBuildergetResourceRecordsOrBuilder(int index)The resource records required to configure this domain mapping.List<? extends ResourceRecordOrBuilder>getResourceRecordsOrBuilderList()The resource records required to configure this domain mapping.SslSettingsgetSslSettings()SSL configuration for this domain.SslSettingsOrBuildergetSslSettingsOrBuilder()SSL configuration for this domain.booleanhasSslSettings()SSL configuration for this domain.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Full path to the `DomainMapping` resource in the API. Example: `apps/myapp/domainMapping/example.com`. @OutputOnly
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Full path to the `DomainMapping` resource in the API. Example: `apps/myapp/domainMapping/example.com`. @OutputOnly
string name = 1;- Returns:
- The bytes for name.
-
getId
String getId()
Relative name of the domain serving the application. Example: `example.com`.
string id = 2;- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()
Relative name of the domain serving the application. Example: `example.com`.
string id = 2;- Returns:
- The bytes for id.
-
hasSslSettings
boolean hasSslSettings()
SSL configuration for this domain. If unconfigured, this domain will not serve with SSL.
.google.appengine.v1.SslSettings ssl_settings = 3;- Returns:
- Whether the sslSettings field is set.
-
getSslSettings
SslSettings getSslSettings()
SSL configuration for this domain. If unconfigured, this domain will not serve with SSL.
.google.appengine.v1.SslSettings ssl_settings = 3;- Returns:
- The sslSettings.
-
getSslSettingsOrBuilder
SslSettingsOrBuilder getSslSettingsOrBuilder()
SSL configuration for this domain. If unconfigured, this domain will not serve with SSL.
.google.appengine.v1.SslSettings ssl_settings = 3;
-
getResourceRecordsList
List<ResourceRecord> getResourceRecordsList()
The resource records required to configure this domain mapping. These records must be added to the domain's DNS configuration in order to serve the application via this domain mapping. @OutputOnly
repeated .google.appengine.v1.ResourceRecord resource_records = 4;
-
getResourceRecords
ResourceRecord getResourceRecords(int index)
The resource records required to configure this domain mapping. These records must be added to the domain's DNS configuration in order to serve the application via this domain mapping. @OutputOnly
repeated .google.appengine.v1.ResourceRecord resource_records = 4;
-
getResourceRecordsCount
int getResourceRecordsCount()
The resource records required to configure this domain mapping. These records must be added to the domain's DNS configuration in order to serve the application via this domain mapping. @OutputOnly
repeated .google.appengine.v1.ResourceRecord resource_records = 4;
-
getResourceRecordsOrBuilderList
List<? extends ResourceRecordOrBuilder> getResourceRecordsOrBuilderList()
The resource records required to configure this domain mapping. These records must be added to the domain's DNS configuration in order to serve the application via this domain mapping. @OutputOnly
repeated .google.appengine.v1.ResourceRecord resource_records = 4;
-
getResourceRecordsOrBuilder
ResourceRecordOrBuilder getResourceRecordsOrBuilder(int index)
The resource records required to configure this domain mapping. These records must be added to the domain's DNS configuration in order to serve the application via this domain mapping. @OutputOnly
repeated .google.appengine.v1.ResourceRecord resource_records = 4;
-
-