Interface StartBigQueryJobsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StartBigQueryJobsRequest,StartBigQueryJobsRequest.Builder
public interface StartBigQueryJobsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImportedDataInfogetImportedData(int index)Import jobs which should be started and monitored.intgetImportedDataCount()Import jobs which should be started and monitored.List<ImportedDataInfo>getImportedDataList()Import jobs which should be started and monitored.ImportedDataInfoOrBuildergetImportedDataOrBuilder(int index)Import jobs which should be started and monitored.List<? extends ImportedDataInfoOrBuilder>getImportedDataOrBuilderList()Import jobs which should be started and monitored.intgetMaxParallelism()The number of BQ Jobs that can run in parallel.StringgetName()Name of the resource in the form: "projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}/runs/{run_id}"com.google.protobuf.ByteStringgetNameBytes()Name of the resource in the form: "projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}/runs/{run_id}"com.google.protobuf.ByteStringgetUserCredentials()User credentials which should be used to start/monitor BigQuery jobs.-
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()
Name of the resource in the form: "projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}/runs/{run_id}"string name = 1;
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name of the resource in the form: "projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}/runs/{run_id}"string name = 1;
-
getImportedDataList
List<ImportedDataInfo> getImportedDataList()
Import jobs which should be started and monitored.
repeated .google.cloud.bigquery.datatransfer.v1.ImportedDataInfo imported_data = 2;
-
getImportedData
ImportedDataInfo getImportedData(int index)
Import jobs which should be started and monitored.
repeated .google.cloud.bigquery.datatransfer.v1.ImportedDataInfo imported_data = 2;
-
getImportedDataCount
int getImportedDataCount()
Import jobs which should be started and monitored.
repeated .google.cloud.bigquery.datatransfer.v1.ImportedDataInfo imported_data = 2;
-
getImportedDataOrBuilderList
List<? extends ImportedDataInfoOrBuilder> getImportedDataOrBuilderList()
Import jobs which should be started and monitored.
repeated .google.cloud.bigquery.datatransfer.v1.ImportedDataInfo imported_data = 2;
-
getImportedDataOrBuilder
ImportedDataInfoOrBuilder getImportedDataOrBuilder(int index)
Import jobs which should be started and monitored.
repeated .google.cloud.bigquery.datatransfer.v1.ImportedDataInfo imported_data = 2;
-
getUserCredentials
com.google.protobuf.ByteString getUserCredentials()
User credentials which should be used to start/monitor BigQuery jobs. If not specified, then jobs are started using data source service account credentials. This may be OAuth token or JWT token.
bytes user_credentials = 3;
-
getMaxParallelism
int getMaxParallelism()
The number of BQ Jobs that can run in parallel.
int32 max_parallelism = 8;
-
-