Interface ConfigSourceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ConfigSource
,ConfigSource.Builder
public interface ConfigSourceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfigFile
getFiles(int index)
Set of source configuration files that are used to generate a service configuration (`google.api.Service`).int
getFilesCount()
Set of source configuration files that are used to generate a service configuration (`google.api.Service`).List<ConfigFile>
getFilesList()
Set of source configuration files that are used to generate a service configuration (`google.api.Service`).ConfigFileOrBuilder
getFilesOrBuilder(int index)
Set of source configuration files that are used to generate a service configuration (`google.api.Service`).List<? extends ConfigFileOrBuilder>
getFilesOrBuilderList()
Set of source configuration files that are used to generate a service configuration (`google.api.Service`).String
getId()
A unique ID for a specific instance of this message, typically assigned by the client for tracking purpose.com.google.protobuf.ByteString
getIdBytes()
A unique ID for a specific instance of this message, typically assigned by the client for tracking purpose.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getId
String getId()
A unique ID for a specific instance of this message, typically assigned by the client for tracking purpose. If empty, the server may choose to generate one instead.
string id = 5;
- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()
A unique ID for a specific instance of this message, typically assigned by the client for tracking purpose. If empty, the server may choose to generate one instead.
string id = 5;
- Returns:
- The bytes for id.
-
getFilesList
List<ConfigFile> getFilesList()
Set of source configuration files that are used to generate a service configuration (`google.api.Service`).
repeated .google.api.servicemanagement.v1.ConfigFile files = 2;
-
getFiles
ConfigFile getFiles(int index)
Set of source configuration files that are used to generate a service configuration (`google.api.Service`).
repeated .google.api.servicemanagement.v1.ConfigFile files = 2;
-
getFilesCount
int getFilesCount()
Set of source configuration files that are used to generate a service configuration (`google.api.Service`).
repeated .google.api.servicemanagement.v1.ConfigFile files = 2;
-
getFilesOrBuilderList
List<? extends ConfigFileOrBuilder> getFilesOrBuilderList()
Set of source configuration files that are used to generate a service configuration (`google.api.Service`).
repeated .google.api.servicemanagement.v1.ConfigFile files = 2;
-
getFilesOrBuilder
ConfigFileOrBuilder getFilesOrBuilder(int index)
Set of source configuration files that are used to generate a service configuration (`google.api.Service`).
repeated .google.api.servicemanagement.v1.ConfigFile files = 2;
-
-