Interface EnrollDataSourcesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EnrollDataSourcesRequest,EnrollDataSourcesRequest.Builder
public interface EnrollDataSourcesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDataSourceIds(int index)Data sources that are enrolled.com.google.protobuf.ByteStringgetDataSourceIdsBytes(int index)Data sources that are enrolled.intgetDataSourceIdsCount()Data sources that are enrolled.List<String>getDataSourceIdsList()Data sources that are enrolled.StringgetName()The name of the project resource in the form: `projects/{project_id}`com.google.protobuf.ByteStringgetNameBytes()The name of the project resource in the form: `projects/{project_id}`-
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()
The name of the project resource in the form: `projects/{project_id}`string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The name of the project resource in the form: `projects/{project_id}`string name = 1;- Returns:
- The bytes for name.
-
getDataSourceIdsList
List<String> getDataSourceIdsList()
Data sources that are enrolled. It is required to provide at least one data source id.
repeated string data_source_ids = 2;- Returns:
- A list containing the dataSourceIds.
-
getDataSourceIdsCount
int getDataSourceIdsCount()
Data sources that are enrolled. It is required to provide at least one data source id.
repeated string data_source_ids = 2;- Returns:
- The count of dataSourceIds.
-
getDataSourceIds
String getDataSourceIds(int index)
Data sources that are enrolled. It is required to provide at least one data source id.
repeated string data_source_ids = 2;- Parameters:
index- The index of the element to return.- Returns:
- The dataSourceIds at the given index.
-
getDataSourceIdsBytes
com.google.protobuf.ByteString getDataSourceIdsBytes(int index)
Data sources that are enrolled. It is required to provide at least one data source id.
repeated string data_source_ids = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the dataSourceIds at the given index.
-
-