Interface SubmitConfigSourceRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SubmitConfigSourceRequest
,SubmitConfigSourceRequest.Builder
public interface SubmitConfigSourceRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfigSource
getConfigSource()
Required.ConfigSourceOrBuilder
getConfigSourceOrBuilder()
Required.String
getServiceName()
Required.com.google.protobuf.ByteString
getServiceNameBytes()
Required.boolean
getValidateOnly()
Optional.boolean
hasConfigSource()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getServiceName
String getServiceName()
Required. The name of the service. See the [overview](https://cloud.google.com/service-management/overview) for naming requirements. For example: `example.googleapis.com`.
string service_name = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The serviceName.
-
getServiceNameBytes
com.google.protobuf.ByteString getServiceNameBytes()
Required. The name of the service. See the [overview](https://cloud.google.com/service-management/overview) for naming requirements. For example: `example.googleapis.com`.
string service_name = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for serviceName.
-
hasConfigSource
boolean hasConfigSource()
Required. The source configuration for the service.
.google.api.servicemanagement.v1.ConfigSource config_source = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the configSource field is set.
-
getConfigSource
ConfigSource getConfigSource()
Required. The source configuration for the service.
.google.api.servicemanagement.v1.ConfigSource config_source = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The configSource.
-
getConfigSourceOrBuilder
ConfigSourceOrBuilder getConfigSourceOrBuilder()
Required. The source configuration for the service.
.google.api.servicemanagement.v1.ConfigSource config_source = 2 [(.google.api.field_behavior) = REQUIRED];
-
getValidateOnly
boolean getValidateOnly()
Optional. If set, this will result in the generation of a `google.api.Service` configuration based on the `ConfigSource` provided, but the generated config and the sources will NOT be persisted.
bool validate_only = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The validateOnly.
-
-