Package com.google.appengine.v1
Interface CreateDomainMappingRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateDomainMappingRequest,CreateDomainMappingRequest.Builder
public interface CreateDomainMappingRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DomainMappinggetDomainMapping()Domain mapping configuration.DomainMappingOrBuildergetDomainMappingOrBuilder()Domain mapping configuration.DomainOverrideStrategygetOverrideStrategy()Whether the domain creation should override any existing mappings for this domain.intgetOverrideStrategyValue()Whether the domain creation should override any existing mappings for this domain.StringgetParent()Name of the parent Application resource.com.google.protobuf.ByteStringgetParentBytes()Name of the parent Application resource.booleanhasDomainMapping()Domain mapping configuration.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Name of the parent Application resource. Example: `apps/myapp`.
string parent = 1;- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Name of the parent Application resource. Example: `apps/myapp`.
string parent = 1;- Returns:
- The bytes for parent.
-
hasDomainMapping
boolean hasDomainMapping()
Domain mapping configuration.
.google.appengine.v1.DomainMapping domain_mapping = 2;- Returns:
- Whether the domainMapping field is set.
-
getDomainMapping
DomainMapping getDomainMapping()
Domain mapping configuration.
.google.appengine.v1.DomainMapping domain_mapping = 2;- Returns:
- The domainMapping.
-
getDomainMappingOrBuilder
DomainMappingOrBuilder getDomainMappingOrBuilder()
Domain mapping configuration.
.google.appengine.v1.DomainMapping domain_mapping = 2;
-
getOverrideStrategyValue
int getOverrideStrategyValue()
Whether the domain creation should override any existing mappings for this domain. By default, overrides are rejected.
.google.appengine.v1.DomainOverrideStrategy override_strategy = 4;- Returns:
- The enum numeric value on the wire for overrideStrategy.
-
getOverrideStrategy
DomainOverrideStrategy getOverrideStrategy()
Whether the domain creation should override any existing mappings for this domain. By default, overrides are rejected.
.google.appengine.v1.DomainOverrideStrategy override_strategy = 4;- Returns:
- The overrideStrategy.
-
-