use of com.google.cloud.bigquery.datatransfer.v1.TransferConfig in project java-bigquerydatatransfer by googleapis.
the class CopyDataset method main.
public static void main(String[] args) throws IOException {
// TODO(developer): Replace these variables before running the sample.
final String destinationProjectId = "MY_DESTINATION_PROJECT_ID";
final String destinationDatasetId = "MY_DESTINATION_DATASET_ID";
final String sourceProjectId = "MY_SOURCE_PROJECT_ID";
final String sourceDatasetId = "MY_SOURCE_DATASET_ID";
Map<String, Value> params = new HashMap<>();
params.put("source_project_id", Value.newBuilder().setStringValue(sourceProjectId).build());
params.put("source_dataset_id", Value.newBuilder().setStringValue(sourceDatasetId).build());
TransferConfig transferConfig = TransferConfig.newBuilder().setDestinationDatasetId(destinationDatasetId).setDisplayName("Your Dataset Copy Name").setDataSourceId("cross_region_copy").setParams(Struct.newBuilder().putAllFields(params).build()).setSchedule("every 24 hours").build();
copyDataset(destinationProjectId, transferConfig);
}
use of com.google.cloud.bigquery.datatransfer.v1.TransferConfig in project java-bigquerydatatransfer by googleapis.
the class CopyDataset method copyDataset.
public static void copyDataset(String projectId, TransferConfig transferConfig) throws IOException {
try (DataTransferServiceClient dataTransferServiceClient = DataTransferServiceClient.create()) {
ProjectName parent = ProjectName.of(projectId);
CreateTransferConfigRequest request = CreateTransferConfigRequest.newBuilder().setParent(parent.toString()).setTransferConfig(transferConfig).build();
TransferConfig config = dataTransferServiceClient.createTransferConfig(request);
System.out.println("Copy dataset created successfully :" + config.getName());
} catch (ApiException ex) {
System.out.print("Copy dataset was not created." + ex.toString());
}
}
use of com.google.cloud.bigquery.datatransfer.v1.TransferConfig in project java-bigquerydatatransfer by googleapis.
the class CreateAdsTransfer method main.
public static void main(String[] args) throws IOException {
// TODO(developer): Replace these variables before running the sample.
final String projectId = "MY_PROJECT_ID";
String datasetId = "MY_DATASET_ID";
// the customer_id only allows digits and hyphen ('-').
String customerId = "012-345-6789";
String refreshWindow = "100";
Map<String, Value> params = new HashMap<>();
params.put("customer_id", Value.newBuilder().setStringValue(customerId).build());
params.put("refreshWindow", Value.newBuilder().setStringValue(refreshWindow).build());
TransferConfig transferConfig = TransferConfig.newBuilder().setDestinationDatasetId(datasetId).setDisplayName("Your Ads Transfer Config Name").setDataSourceId("adwords").setParams(Struct.newBuilder().putAllFields(params).build()).build();
createAdsTransfer(projectId, transferConfig);
}
use of com.google.cloud.bigquery.datatransfer.v1.TransferConfig in project java-bigquerydatatransfer by googleapis.
the class CreateCampaignmanagerTransfer method main.
public static void main(String[] args) throws IOException {
// TODO(developer): Replace these variables before running the sample.
final String projectId = "MY_PROJECT_ID";
String datasetId = "MY_DATASET_ID";
String bucket = "gs://cloud-sample-data";
// the network_id only allows digits
String networkId = "7878";
String fileNamePrefix = "test_";
Map<String, Value> params = new HashMap<>();
params.put("bucket", Value.newBuilder().setStringValue(bucket).build());
params.put("network_id", Value.newBuilder().setStringValue(networkId).build());
params.put("file_name_prefix", Value.newBuilder().setStringValue(fileNamePrefix).build());
TransferConfig transferConfig = TransferConfig.newBuilder().setDestinationDatasetId(datasetId).setDisplayName("Your Campaignmanager Config Name").setDataSourceId("dcm_dt").setParams(Struct.newBuilder().putAllFields(params).build()).build();
createCampaignmanagerTransfer(projectId, transferConfig);
}
use of com.google.cloud.bigquery.datatransfer.v1.TransferConfig in project java-bigquerydatatransfer by googleapis.
the class CreateCampaignmanagerTransfer method createCampaignmanagerTransfer.
public static void createCampaignmanagerTransfer(String projectId, TransferConfig transferConfig) throws IOException {
try (DataTransferServiceClient client = DataTransferServiceClient.create()) {
ProjectName parent = ProjectName.of(projectId);
CreateTransferConfigRequest request = CreateTransferConfigRequest.newBuilder().setParent(parent.toString()).setTransferConfig(transferConfig).build();
TransferConfig config = client.createTransferConfig(request);
System.out.println("Campaignmanager transfer created successfully :" + config.getName());
} catch (ApiException ex) {
System.out.print("Campaignmanager transfer was not created." + ex.toString());
}
}
Aggregations