Search in sources :

Example 1 with CreateGlossaryMetadata

use of com.google.cloud.translate.v3.CreateGlossaryMetadata in project java-translate by googleapis.

the class CreateGlossary method createGlossary.

// Create a equivalent term sets glossary
// https://cloud.google.com/translate/docs/advanced/glossary#format-glossary
public static void createGlossary(String projectId, String glossaryId, List<String> languageCodes, String inputUri) throws IOException, ExecutionException, InterruptedException {
    // the "close" method on the client to safely clean up any remaining background resources.
    try (TranslationServiceClient client = TranslationServiceClient.create()) {
        // Supported Locations: `global`, [glossary location], or [model location]
        // Glossaries must be hosted in `us-central1`
        // Custom Models must use the same location as your model. (us-central1)
        String location = "us-central1";
        LocationName parent = LocationName.of(projectId, location);
        GlossaryName glossaryName = GlossaryName.of(projectId, location, glossaryId);
        // Supported Languages: https://cloud.google.com/translate/docs/languages
        Glossary.LanguageCodesSet languageCodesSet = Glossary.LanguageCodesSet.newBuilder().addAllLanguageCodes(languageCodes).build();
        // Configure the source of the file from a GCS bucket
        GcsSource gcsSource = GcsSource.newBuilder().setInputUri(inputUri).build();
        GlossaryInputConfig inputConfig = GlossaryInputConfig.newBuilder().setGcsSource(gcsSource).build();
        Glossary glossary = Glossary.newBuilder().setName(glossaryName.toString()).setLanguageCodesSet(languageCodesSet).setInputConfig(inputConfig).build();
        CreateGlossaryRequest request = CreateGlossaryRequest.newBuilder().setParent(parent.toString()).setGlossary(glossary).build();
        // Start an asynchronous request
        OperationFuture<Glossary, CreateGlossaryMetadata> future = client.createGlossaryAsync(request);
        System.out.println("Waiting for operation to complete...");
        Glossary response = future.get();
        System.out.println("Created Glossary.");
        System.out.printf("Glossary name: %s\n", response.getName());
        System.out.printf("Entry count: %s\n", response.getEntryCount());
        System.out.printf("Input URI: %s\n", response.getInputConfig().getGcsSource().getInputUri());
    }
}
Also used : TranslationServiceClient(com.google.cloud.translate.v3.TranslationServiceClient) GcsSource(com.google.cloud.translate.v3.GcsSource) CreateGlossaryRequest(com.google.cloud.translate.v3.CreateGlossaryRequest) CreateGlossaryMetadata(com.google.cloud.translate.v3.CreateGlossaryMetadata) GlossaryInputConfig(com.google.cloud.translate.v3.GlossaryInputConfig) Glossary(com.google.cloud.translate.v3.Glossary) GlossaryName(com.google.cloud.translate.v3.GlossaryName) LocationName(com.google.cloud.translate.v3.LocationName)

Aggregations

CreateGlossaryMetadata (com.google.cloud.translate.v3.CreateGlossaryMetadata)1 CreateGlossaryRequest (com.google.cloud.translate.v3.CreateGlossaryRequest)1 GcsSource (com.google.cloud.translate.v3.GcsSource)1 Glossary (com.google.cloud.translate.v3.Glossary)1 GlossaryInputConfig (com.google.cloud.translate.v3.GlossaryInputConfig)1 GlossaryName (com.google.cloud.translate.v3.GlossaryName)1 LocationName (com.google.cloud.translate.v3.LocationName)1 TranslationServiceClient (com.google.cloud.translate.v3.TranslationServiceClient)1