├── .gitallowed ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── auto-approve.yml ├── auto-label.yaml ├── blunderbuss.yml ├── header-checker-lint.yml ├── renovate.json5 ├── snippet-bot.yml ├── stale.yml ├── sync-repo-settings.yaml └── templates │ ├── README.md │ ├── appengine-flexible-before-you-begin.mdpp │ ├── appengine-flexible-deploy.mdpp │ └── getting-sample-code.mdpp ├── .gitignore ├── .kokoro ├── java11 │ ├── common.cfg │ ├── periodic.cfg │ └── presubmit.cfg ├── java17 │ ├── common.cfg │ ├── periodic.cfg │ └── presubmit.cfg ├── java21 │ ├── common.cfg │ └── periodic.cfg ├── java8 │ ├── common.cfg │ └── periodic.cfg ├── lint │ ├── common.cfg │ └── presubmit.cfg ├── prptst │ ├── common.cfg │ └── periodic.cfg ├── tests │ ├── build_cloud_functions.sh │ ├── build_cloud_run.sh │ ├── run_lint.sh │ ├── run_prptst_tests.sh │ ├── run_test_java.sh │ ├── run_tests.sh │ └── teardown_cloud_functions.sh └── trampoline.sh ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── SAMPLE_FORMAT.md ├── SECURITY.md ├── accessapproval └── snippets │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── accessapproval │ │ └── ListRequest.java │ └── test │ └── java │ └── accessapproval │ └── ListRequestIT.java ├── aiplatform ├── pom.xml ├── resources │ ├── cat.png │ ├── daisy.jpg │ ├── dog_newspaper.png │ ├── image_flower_daisy.jpg │ ├── iod_caprese_salad.jpg │ ├── roller_skaters.png │ ├── roller_skaters_mask.png │ ├── volleyball_game.png │ ├── volleyball_game_inpainting_remove_mask.png │ ├── woman.png │ └── woman_inpainting_insert_mask.png └── src │ ├── main │ └── java │ │ └── aiplatform │ │ ├── BatchCodePredictionSample.java │ │ ├── BatchCreateFeaturesSample.java │ │ ├── BatchReadFeatureValuesSample.java │ │ ├── BatchTextPredictionSample.java │ │ ├── CancelBatchPredictionJobSample.java │ │ ├── CancelDataLabelingJobSample.java │ │ ├── CancelTrainingPipelineSample.java │ │ ├── CreateBatchPredictionJobBigquerySample.java │ │ ├── CreateBatchPredictionJobSample.java │ │ ├── CreateBatchPredictionJobTextClassificationSample.java │ │ ├── CreateBatchPredictionJobTextEntityExtractionSample.java │ │ ├── CreateBatchPredictionJobTextSentimentAnalysisSample.java │ │ ├── CreateBatchPredictionJobVideoActionRecognitionSample.java │ │ ├── CreateBatchPredictionJobVideoClassificationSample.java │ │ ├── CreateBatchPredictionJobVideoObjectTrackingSample.java │ │ ├── CreateCustomJobSample.java │ │ ├── CreateDataLabelingJobActiveLearningSample.java │ │ ├── CreateDataLabelingJobImageSample.java │ │ ├── CreateDataLabelingJobSample.java │ │ ├── CreateDataLabelingJobSpecialistPoolSample.java │ │ ├── CreateDataLabelingJobVideoSample.java │ │ ├── CreateDatasetImageSample.java │ │ ├── CreateDatasetSample.java │ │ ├── CreateDatasetTabularBigquerySample.java │ │ ├── CreateDatasetTabularGcsSample.java │ │ ├── CreateDatasetTextSample.java │ │ ├── CreateDatasetVideoSample.java │ │ ├── CreateEndpointSample.java │ │ ├── CreateEntityTypeMonitoringSample.java │ │ ├── CreateEntityTypeSample.java │ │ ├── CreateFeatureOnlineStoreFixedNodesSample.java │ │ ├── CreateFeatureSample.java │ │ ├── CreateFeaturestoreFixedNodesSample.java │ │ ├── CreateFeaturestoreSample.java │ │ ├── CreateHyperparameterTuningJobPythonPackageSample.java │ │ ├── CreateHyperparameterTuningJobSample.java │ │ ├── CreatePipelineJobCodeModelTuningSample.java │ │ ├── CreatePipelineJobModelTuningSample.java │ │ ├── CreateTrainingPipelineCustomJobSample.java │ │ ├── CreateTrainingPipelineCustomTrainingManagedDatasetSample.java │ │ ├── CreateTrainingPipelineImageClassificationSample.java │ │ ├── CreateTrainingPipelineImageObjectDetectionSample.java │ │ ├── CreateTrainingPipelineSample.java │ │ ├── CreateTrainingPipelineTabularClassificationSample.java │ │ ├── CreateTrainingPipelineTabularRegressionSample.java │ │ ├── CreateTrainingPipelineTextClassificationSample.java │ │ ├── CreateTrainingPipelineTextEntityExtractionSample.java │ │ ├── CreateTrainingPipelineTextSentimentAnalysisSample.java │ │ ├── CreateTrainingPipelineVideoActionRecognitionSample.java │ │ ├── CreateTrainingPipelineVideoClassificationSample.java │ │ ├── CreateTrainingPipelineVideoObjectTrackingSample.java │ │ ├── DeleteBatchPredictionJobSample.java │ │ ├── DeleteDataLabelingJobSample.java │ │ ├── DeleteDatasetSample.java │ │ ├── DeleteEndpointSample.java │ │ ├── DeleteEntityTypeSample.java │ │ ├── DeleteExportModelSample.java │ │ ├── DeleteFeatureOnlineStoreSample.java │ │ ├── DeleteFeatureSample.java │ │ ├── DeleteFeaturestoreSample.java │ │ ├── DeleteModelSample.java │ │ ├── DeleteTrainingPipelineSample.java │ │ ├── DeployModelCustomTrainedModelSample.java │ │ ├── DeployModelSample.java │ │ ├── EmbeddingBatchSample.java │ │ ├── EmbeddingModelTuningSample.java │ │ ├── ExportFeatureValuesSample.java │ │ ├── ExportFeatureValuesSnapshotSample.java │ │ ├── ExportModelSample.java │ │ ├── ExportModelTabularClassificationSample.java │ │ ├── ExportModelVideoActionRecognitionSample.java │ │ ├── Gemma2PredictGpu.java │ │ ├── Gemma2PredictTpu.java │ │ ├── GetBatchPredictionJobSample.java │ │ ├── GetEntityTypeSample.java │ │ ├── GetFeatureSample.java │ │ ├── GetFeaturestoreSample.java │ │ ├── GetHyperparameterTuningJobSample.java │ │ ├── GetModelEvaluationImageClassificationSample.java │ │ ├── GetModelEvaluationImageObjectDetectionSample.java │ │ ├── GetModelEvaluationSample.java │ │ ├── GetModelEvaluationSliceSample.java │ │ ├── GetModelEvaluationTabularClassificationSample.java │ │ ├── GetModelEvaluationTabularRegressionSample.java │ │ ├── GetModelEvaluationTextClassificationSample.java │ │ ├── GetModelEvaluationTextEntityExtractionSample.java │ │ ├── GetModelEvaluationTextSentimentAnalysisSample.java │ │ ├── GetModelEvaluationVideoActionRecognitionSample.java │ │ ├── GetModelEvaluationVideoClassificationSample.java │ │ ├── GetModelEvaluationVideoObjectTrackingSample.java │ │ ├── GetModelSample.java │ │ ├── GetTrainingPipelineSample.java │ │ ├── ImportDataImageClassificationSample.java │ │ ├── ImportDataImageObjectDetectionSample.java │ │ ├── ImportDataTextClassificationSingleLabelSample.java │ │ ├── ImportDataTextEntityExtractionSample.java │ │ ├── ImportDataTextSentimentAnalysisSample.java │ │ ├── ImportDataVideoActionRecognitionSample.java │ │ ├── ImportDataVideoClassificationSample.java │ │ ├── ImportDataVideoObjectTrackingSample.java │ │ ├── ImportFeatureValuesSample.java │ │ ├── ListEntityTypesAsyncSample.java │ │ ├── ListEntityTypesSample.java │ │ ├── ListFeaturesAsyncSample.java │ │ ├── ListFeaturesSample.java │ │ ├── ListFeaturestoresAsyncSample.java │ │ ├── ListFeaturestoresSample.java │ │ ├── ListModelEvaluationSliceSample.java │ │ ├── ListTunedModelsSample.java │ │ ├── PredictChatPromptSample.java │ │ ├── PredictCodeChatSample.java │ │ ├── PredictCodeCompletionCommentSample.java │ │ ├── PredictCodeCompletionTestFunctionSample.java │ │ ├── PredictCodeGenerationFunctionSample.java │ │ ├── PredictCodeGenerationUnitTestSample.java │ │ ├── PredictCustomTrainedModelSample.java │ │ ├── PredictImageClassificationSample.java │ │ ├── PredictImageFromImageAndTextSample.java │ │ ├── PredictImageFromTextSample.java │ │ ├── PredictImageObjectDetectionSample.java │ │ ├── PredictTabularClassificationSample.java │ │ ├── PredictTabularRegressionSample.java │ │ ├── PredictTextClassificationSample.java │ │ ├── PredictTextClassificationSingleLabelSample.java │ │ ├── PredictTextEmbeddingsSample.java │ │ ├── PredictTextEmbeddingsSamplePreview.java │ │ ├── PredictTextEntityExtractionSample.java │ │ ├── PredictTextExtractionSample.java │ │ ├── PredictTextPromptSample.java │ │ ├── PredictTextSentimentAnalysisSample.java │ │ ├── PredictTextSentimentSample.java │ │ ├── PredictTextSummarizationSample.java │ │ ├── ReadFeatureValuesSample.java │ │ ├── SearchFeaturesAsyncSample.java │ │ ├── SearchFeaturesSample.java │ │ ├── UndeployModelSample.java │ │ ├── UpdateEntityTypeMonitoringSample.java │ │ ├── UpdateEntityTypeSample.java │ │ ├── UpdateFeatureSample.java │ │ ├── UpdateFeaturestoreFixedNodesSample.java │ │ ├── UpdateFeaturestoreSample.java │ │ ├── UploadModelSample.java │ │ ├── batchpredict │ │ ├── CreateBatchPredictionGeminiBigqueryJobSample.java │ │ └── CreateBatchPredictionGeminiJobSample.java │ │ ├── imagen │ │ ├── EditImageInpaintingInsertMaskSample.java │ │ ├── EditImageInpaintingRemoveMaskSample.java │ │ ├── EditImageMaskFreeSample.java │ │ ├── EditImageOutpaintingMaskSample.java │ │ ├── GenerateImageSample.java │ │ ├── GetShortFormImageCaptionsSample.java │ │ └── GetShortFormImageResponsesSample.java │ │ └── vectorsearch │ │ ├── CreateIndexSample.java │ │ ├── CreateStreamingIndexSample.java │ │ ├── DeleteIndexSample.java │ │ └── ListIndexesSample.java │ └── test │ └── java │ └── aiplatform │ ├── BatchCodePredictionSampleTest.java │ ├── BatchTextPredictionSampleTest.java │ ├── CancelDataLabelingJobSampleTest.java │ ├── CancelTrainingPipelineSampleTest.java │ ├── CreateBatchPredictionGeminiJobSampleTest.java │ ├── CreateBatchPredictionJobBigquerySampleTest.java │ ├── CreateBatchPredictionJobSampleTest.java │ ├── CreateBatchPredictionJobTextClassificationSampleTest.java │ ├── CreateBatchPredictionJobTextEntityExtractionSampleTest.java │ ├── CreateBatchPredictionJobTextSentimentAnalysisSampleTest.java │ ├── CreateBatchPredictionJobVideoActionRecognitionSampleTest.java │ ├── CreateBatchPredictionJobVideoClassificationSampleTest.java │ ├── CreateBatchPredictionJobVideoObjectTrackingSampleTest.java │ ├── CreateCustomJobSampleTest.java │ ├── CreateDataLabelingJobActiveLearningSampleTest.java │ ├── CreateDataLabelingJobImageSampleTest.java │ ├── CreateDataLabelingJobSampleTest.java │ ├── CreateDataLabelingJobSpecialistPoolSampleTest.java │ ├── CreateDataLabelingJobVideoSampleTest.java │ ├── CreateDatasetImageSampleTest.java │ ├── CreateDatasetSampleTest.java │ ├── CreateDatasetTabularBigquerySampleTest.java │ ├── CreateDatasetTabularGcsSampleTest.java │ ├── CreateDatasetTextSampleTest.java │ ├── CreateDatasetVideoSampleTest.java │ ├── CreateEndpointSampleTest.java │ ├── CreateHyperparameterTuningJobPythonPackageSampleTest.java │ ├── CreateHyperparameterTuningJobSampleTest.java │ ├── CreatePipelineJobCodeModelTuningSampleTest.java │ ├── CreatePipelineJobModelTuningSampleTest.java │ ├── CreateTrainingPipelineCustomJobSampleTest.java │ ├── CreateTrainingPipelineCustomTrainingManagedDatasetSampleTest.java │ ├── CreateTrainingPipelineImageClassificationSampleTest.java │ ├── CreateTrainingPipelineImageObjectDetectionSampleTest.java │ ├── CreateTrainingPipelineSampleTest.java │ ├── CreateTrainingPipelineTabularClassificationSampleTest.java │ ├── CreateTrainingPipelineTabularRegressionSampleTest.java │ ├── CreateTrainingPipelineTextClassificationSampleTest.java │ ├── CreateTrainingPipelineTextEntityExtractionSampleTest.java │ ├── CreateTrainingPipelineTextSentimentAnalysisSampleTest.java │ ├── CreateTrainingPipelineVideoActionRecognitionSampleTest.java │ ├── CreateTrainingPipelineVideoClassificationSampleTest.java │ ├── CreateTrainingPipelineVideoObjectTrackingSampleTest.java │ ├── DeployModelCustomTrainedModelSampleTest.java │ ├── DeployModelSampleTest.java │ ├── EmbeddingBatchSampleTest.java │ ├── EmbeddingModelTuningSampleTest.java │ ├── ExportModelSampleTest.java │ ├── ExportModelTabularClassificationSampleTest.java │ ├── ExportModelVideoActionRecognitionSampleTest.java │ ├── FeatureOnlineStoreSamplesTest.java │ ├── FeatureValuesSamplesTest.java │ ├── FeaturestoreSamplesTest.java │ ├── Gemma2ParametersTest.java │ ├── Gemma2PredictTest.java │ ├── GetHyperparameterTuningJobSampleTest.java │ ├── GetModelEvaluationImageClassificationSampleTest.java │ ├── GetModelEvaluationImageObjectDetectionSampleTest.java │ ├── GetModelEvaluationSampleTest.java │ ├── GetModelEvaluationSliceSampleTest.java │ ├── GetModelEvaluationTabularClassificationSampleTest.java │ ├── GetModelEvaluationTabularRegressionSampleTest.java │ ├── GetModelEvaluationTextClassificationSampleTest.java │ ├── GetModelEvaluationTextEntityExtractionSampleTest.java │ ├── GetModelEvaluationTextSentimentAnalysisSampleTest.java │ ├── GetModelEvaluationVideoActionRecognitionSampleTest.java │ ├── GetModelEvaluationVideoClassificationSampleTest.java │ ├── GetModelEvaluationVideoObjectTrackingSampleTest.java │ ├── GetModelSampleTest.java │ ├── GetTrainingPipelineSampleTest.java │ ├── ImportDataImageClassificationSampleTest.java │ ├── ImportDataImageObjectDetectionSampleTest.java │ ├── ImportDataSampleTest.java │ ├── ImportDataVideoActionRecognitionSampleTest.java │ ├── ImportDataVideoClassificationSampleTest.java │ ├── ImportDataVideoObjectTrackingSampleTest.java │ ├── ListModelEvaluationSliceSampleTest.java │ ├── ListTunedModelsSampleTest.java │ ├── PredictChatPromptSampleTest.java │ ├── PredictCodeChatSampleTest.java │ ├── PredictCodeCompletionCommentSampleTest.java │ ├── PredictCodeCompletionTestFunctionSampleTest.java │ ├── PredictCodeGenerationFunctionSampleTest.java │ ├── PredictCodeGenerationUnitTestSampleTest.java │ ├── PredictCustomTrainedModelSampleTest.java │ ├── PredictImageClassificationSampleTest.java │ ├── PredictImageFromImageAndTextSampleTest.java │ ├── PredictImageFromTextSampleTest.java │ ├── PredictImageObjectDetectionSampleTest.java │ ├── PredictTabularClassificationSampleTest.java │ ├── PredictTabularRegressionSampleTest.java │ ├── PredictTextClassificationSampleTest.java │ ├── PredictTextClassificationSingleLabelSampleTest.java │ ├── PredictTextEmbeddingsSampleTest.java │ ├── PredictTextEntityExtractionSampleTest.java │ ├── PredictTextExtractionSampleTest.java │ ├── PredictTextPromptSampleTest.java │ ├── PredictTextSentimentAnalysisSampleTest.java │ ├── PredictTextSentimentSampleTest.java │ ├── PredictTextSummarizationSampleTest.java │ ├── UploadModelSampleTest.java │ ├── imagen │ ├── EditImageInpaintingInsertMaskSampleTest.java │ ├── EditImageInpaintingRemoveMaskSampleTest.java │ ├── EditImageMaskFreeSampleTest.java │ ├── EditImageOutpaintingMaskSampleTest.java │ ├── GenerateImageSampleTest.java │ ├── GetShortFormImageCaptionsSampleTest.java │ └── GetShortFormImageResponsesSampleTest.java │ └── vectorsearch │ └── VectorSearchSampleTest.java ├── appengine-java11-bundled-services ├── README.md └── datastore │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ ├── appengine │ │ │ ├── AbstractGuestbook.java │ │ │ ├── AbstractGuestbookServlet.java │ │ │ ├── Greeting.java │ │ │ ├── Guestbook.java │ │ │ ├── GuestbookServlet.java │ │ │ ├── GuestbookStrong.java │ │ │ ├── GuestbookStrongServlet.java │ │ │ ├── ListPeopleServlet.java │ │ │ ├── ProjectionServlet.java │ │ │ ├── StartupServlet.java │ │ │ └── StatsServlet.java │ │ │ └── time │ │ │ ├── Clock.java │ │ │ ├── SystemClock.java │ │ │ └── testing │ │ │ └── FakeClock.java │ └── webapp │ │ ├── WEB-INF │ │ ├── appengine-web.xml │ │ ├── datastore-indexes.xml │ │ └── web.xml │ │ └── guestbook.jsp │ └── test │ └── java │ └── com │ └── example │ └── appengine │ ├── EntitiesTest.java │ ├── GuestbookStrongTest.java │ ├── GuestbookTest.java │ ├── IndexesTest.java │ ├── ListPeopleServletTest.java │ ├── MetadataEntityGroupTest.java │ ├── MetadataKindsTest.java │ ├── MetadataNamespacesTest.java │ ├── MetadataPropertiesTest.java │ ├── ProjectionServletTest.java │ ├── ProjectionTest.java │ ├── QueriesTest.java │ ├── ReadPolicyTest.java │ ├── StartupServletTest.java │ └── TransactionsTest.java ├── appengine-java11 ├── README.md ├── appengine-simple-jetty-main │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── jetty │ │ └── Main.java ├── cloudsql │ ├── README.md │ ├── app.yaml │ └── pom.xml ├── custom-entrypoint │ ├── Main.java │ ├── README.md │ └── app.yaml ├── gaeinfo │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── appengine │ │ └── app.yaml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── standard │ │ │ └── GaeInfoServlet.java │ │ └── webapp │ │ └── WEB-INF │ │ └── templates │ │ └── index.html ├── guestbook-cloud-firestore │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── appengine │ │ └── app.yaml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── guestbook │ │ │ ├── Greeting.java │ │ │ ├── Guestbook.java │ │ │ ├── Persistence.java │ │ │ └── SignGuestbookServlet.java │ │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ └── index.jsp ├── helloworld-servlet │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── appengine │ │ └── app.yaml │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── HelloAppEngine.java ├── http-server │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── appengine │ │ └── app.yaml │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── Main.java ├── kotlin-ktor │ ├── README.md │ ├── app.yaml │ ├── pom.xml │ ├── resources │ │ ├── application.conf │ │ └── logback.xml │ ├── src │ │ ├── main │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── appengine │ │ │ │ │ └── Application.kt │ │ │ └── resources │ │ │ │ ├── application.conf │ │ │ │ └── logback.xml │ │ └── test │ │ │ └── ApplicationTest.kt │ └── test │ │ └── ApplicationTest.kt ├── micronaut-helloworld │ ├── README.md │ ├── micronaut-cli.yml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── appengine │ │ │ └── app.yaml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── appengine │ │ │ │ ├── Application.java │ │ │ │ └── HelloController.java │ │ └── resources │ │ │ ├── application.yml │ │ │ └── logback.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── HelloControllerTest.java ├── oauth2 │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── appengine │ │ └── app.yaml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ ├── LogoutServlet.java │ │ │ ├── Oauth2AuthorizationCodeServlet.java │ │ │ ├── Oauth2CallbackServlet.java │ │ │ └── Utils.java │ │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ ├── index.jsp │ │ └── stylesheets │ │ └── main.css ├── quarkus-helloworld │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── appengine │ │ │ └── app.yaml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── appengine │ │ │ │ └── quarkus │ │ │ │ └── HelloResource.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── quarkus │ │ └── HelloResourceTest.java ├── spanner │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── appengine │ │ └── app.yaml │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── spanner │ │ ├── SpannerClient.java │ │ ├── SpannerTasks.java │ │ └── SpannerTasksServlet.java ├── sparkjava-helloworld │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── appengine │ │ └── app.yaml │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── sparkdemo │ │ └── Main.java ├── springboot-helloworld │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── appengine │ │ └── app.yaml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── springboot │ │ │ └── SpringbootApplication.java │ │ └── resources │ │ └── application.properties ├── tasks-handler │ ├── Dockerfile │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── appengine │ │ └── app.yaml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── taskhandler │ │ │ ├── Application.java │ │ │ └── TaskHandlerController.java │ │ └── resources │ │ └── application.properties ├── tasks │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── task │ │ │ └── CreateTask.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── task │ │ └── CreateTaskIT.java └── vertx-helloworld │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── appengine │ │ └── app.yaml │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── vertxhello │ │ ├── Application.java │ │ └── Main.java │ └── test │ └── java │ └── com │ └── example │ └── appengine │ └── vertxhello │ └── ApplicationTest.java ├── appengine-java17-bundled-services ├── README.md └── datastore │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ ├── appengine │ │ │ ├── AbstractGuestbook.java │ │ │ ├── AbstractGuestbookServlet.java │ │ │ ├── Greeting.java │ │ │ ├── Guestbook.java │ │ │ ├── GuestbookServlet.java │ │ │ ├── GuestbookStrong.java │ │ │ ├── GuestbookStrongServlet.java │ │ │ ├── ListPeopleServlet.java │ │ │ ├── ProjectionServlet.java │ │ │ ├── StartupServlet.java │ │ │ └── StatsServlet.java │ │ │ └── time │ │ │ ├── Clock.java │ │ │ ├── SystemClock.java │ │ │ └── testing │ │ │ └── FakeClock.java │ └── webapp │ │ ├── WEB-INF │ │ ├── appengine-web.xml │ │ ├── datastore-indexes.xml │ │ └── web.xml │ │ └── guestbook.jsp │ └── test │ └── java │ └── com │ └── example │ └── appengine │ ├── EntitiesTest.java │ ├── GuestbookStrongTest.java │ ├── GuestbookTest.java │ ├── IndexesTest.java │ ├── ListPeopleServletTest.java │ ├── MetadataEntityGroupTest.java │ ├── MetadataKindsTest.java │ ├── MetadataNamespacesTest.java │ ├── MetadataPropertiesTest.java │ ├── ProjectionServletTest.java │ ├── ProjectionTest.java │ ├── QueriesTest.java │ ├── ReadPolicyTest.java │ ├── StartupServletTest.java │ └── TransactionsTest.java ├── appengine-java21 ├── ee8 │ ├── analytics │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── appengine │ │ │ │ └── analytics │ │ │ │ └── AnalyticsServlet.java │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── appengine-web.xml │ │ │ └── web.xml │ ├── images │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── appengine │ │ │ │ └── images │ │ │ │ └── ImagesServlet.java │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── appengine-web.xml │ │ │ ├── image.jpg │ │ │ └── web.xml │ └── users │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── appengine │ │ │ │ └── users │ │ │ │ └── UsersServlet.java │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── appengine-web.xml │ │ │ └── web.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── users │ │ └── UsersServletTest.java └── helloworld │ ├── README.md │ ├── build.gradle │ ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── pom.xml │ ├── settings.gradle │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── java21 │ │ │ └── HelloAppEngine.java │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ └── web.xml │ └── test │ └── java │ └── com │ └── example │ └── appengine │ └── java21 │ └── HelloAppEngineTest.java ├── appengine-java25 ├── ee11 │ └── analytics │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── analytics │ │ │ └── AnalyticsServlet.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ └── web.xml ├── ee8 │ └── analytics │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── analytics │ │ │ └── AnalyticsServlet.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ └── web.xml └── helloworld │ ├── README.md │ ├── build.gradle │ ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── pom.xml │ ├── settings.gradle │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── java25 │ │ │ └── HelloAppEngine.java │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ └── web.xml │ └── test │ └── java │ └── com │ └── example │ └── appengine │ └── java25 │ └── HelloAppEngineTest.java ├── appengine-java8 ├── README.md ├── analytics │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── analytics │ │ │ └── AnalyticsServlet.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ └── web.xml ├── appidentity │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── appengine │ │ │ │ └── appidentity │ │ │ │ ├── IdentityServlet.java │ │ │ │ ├── SignForAppServlet.java │ │ │ │ ├── UrlShortener.java │ │ │ │ └── UrlShortenerServlet.java │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── appengine-web.xml │ │ │ └── web.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── appidentity │ │ ├── IdentityServletTest.java │ │ └── SignForAppServletTest.java ├── bigquery │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── appengine │ │ │ │ └── bigquerylogging │ │ │ │ ├── BigQueryHome.java │ │ │ │ ├── BigQueryRun.java │ │ │ │ ├── BigQueryRunner.java │ │ │ │ └── TimeSeriesSummary.java │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ └── appengine-web.xml │ │ │ └── index.jsp │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── bigquerylogging │ │ └── BigQueryRunnerTest.java ├── bigtable │ ├── .dockerignore │ ├── README.md │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── pom.xml │ ├── settings.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── bigtable │ │ │ │ ├── BigtableHelloWorld.java │ │ │ │ └── BigtableHelper.java │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── appengine-web.xml │ │ │ ├── logging.properties │ │ │ └── web.xml │ │ │ ├── bigtable.jsp │ │ │ └── favicon.ico │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── bigtable │ │ └── BigtableHelloWorldTests.java ├── cloudsql │ └── README.md ├── datastore-indexes-exploding │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── appengine │ │ │ │ └── IndexesServlet.java │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── appengine-web.xml │ │ │ ├── datastore-indexes.xml │ │ │ └── web.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── IndexesServletTest.java ├── datastore-indexes-perfect │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── appengine │ │ │ │ └── IndexesServlet.java │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── appengine-web.xml │ │ │ ├── datastore-indexes.xml │ │ │ └── web.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── IndexesServletTest.java ├── datastore-indexes │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── appengine │ │ │ │ └── IndexesServlet.java │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── appengine-web.xml │ │ │ ├── datastore-indexes.xml │ │ │ └── web.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── IndexesServletTest.java ├── datastore-schedule-export │ ├── README.md │ ├── cron.yaml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── datastore │ │ │ │ └── DatastoreExportServlet.java │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── appengine-web.xml │ │ │ ├── logging.properties │ │ │ └── web.xml │ │ │ └── index.jsp │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── datastore │ │ └── DatastoreExportServletTest.java ├── datastore │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── appengine │ │ │ │ ├── AbstractGuestbook.java │ │ │ │ ├── AbstractGuestbookServlet.java │ │ │ │ ├── Greeting.java │ │ │ │ ├── Guestbook.java │ │ │ │ ├── GuestbookServlet.java │ │ │ │ ├── GuestbookStrong.java │ │ │ │ ├── GuestbookStrongServlet.java │ │ │ │ ├── ListPeopleServlet.java │ │ │ │ ├── ProjectionServlet.java │ │ │ │ ├── StartupServlet.java │ │ │ │ └── StatsServlet.java │ │ │ │ └── time │ │ │ │ ├── Clock.java │ │ │ │ ├── SystemClock.java │ │ │ │ └── testing │ │ │ │ └── FakeClock.java │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── appengine-web.xml │ │ │ ├── datastore-indexes.xml │ │ │ └── web.xml │ │ │ └── guestbook.jsp │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ ├── EntitiesTest.java │ │ ├── GuestbookStrongTest.java │ │ ├── GuestbookTest.java │ │ ├── IndexesTest.java │ │ ├── ListPeopleServletTest.java │ │ ├── MetadataEntityGroupTest.java │ │ ├── MetadataKindsTest.java │ │ ├── MetadataNamespacesTest.java │ │ ├── MetadataPropertiesTest.java │ │ ├── ProjectionServletTest.java │ │ ├── ProjectionTest.java │ │ ├── QueriesTest.java │ │ ├── ReadPolicyTest.java │ │ ├── StartupServletTest.java │ │ └── TransactionsTest.java ├── endpoints-v2-README.md ├── endpoints-v2-backend │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── jenkins.sh │ ├── pom.xml │ ├── settings.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── echo │ │ │ ├── Echo.java │ │ │ ├── Email.java │ │ │ └── Message.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ ├── logging.properties │ │ └── web.xml ├── endpoints-v2-guice │ ├── README.md │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── echo │ │ │ ├── Echo.java │ │ │ ├── EchoEndpointModule.java │ │ │ ├── EchoGuiceListener.java │ │ │ ├── Email.java │ │ │ └── Message.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ ├── logging.properties │ │ └── web.xml ├── endpoints-v2-migration │ ├── README.md │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── jenkins.sh │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── helloendpoints │ │ │ ├── Constants.java │ │ │ ├── Greetings.java │ │ │ └── HelloGreeting.java │ │ └── webapp │ │ ├── WEB-INF │ │ ├── appengine-web.xml │ │ ├── logging.properties │ │ └── web.xml │ │ ├── bootstrap │ │ └── css │ │ │ ├── bootstrap-responsive.css │ │ │ └── bootstrap.css │ │ ├── css │ │ └── style.css │ │ ├── index.html │ │ └── js │ │ └── base.js ├── endpoints-v2-skeleton │ ├── README.md │ ├── build.gradle │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── skeleton │ │ │ └── MyApi.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ ├── logging.properties │ │ └── web.xml ├── firebase-backend │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── google │ │ │ └── cloud │ │ │ └── solutions │ │ │ └── flexenv │ │ │ ├── backend │ │ │ ├── MessageProcessorServlet.java │ │ │ └── MessagePurger.java │ │ │ └── common │ │ │ ├── LogEntry.java │ │ │ └── Message.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ ├── logging.properties │ │ └── web.xml ├── firebase-event-listener-python │ ├── .gitignore │ ├── app.yaml │ └── main.py ├── firebase-event-proxy-README.md ├── firebase-event-proxy │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── GaeFirebaseEventProxy │ │ │ ├── FirebaseEventProxy.java │ │ │ └── ServletContextListenerImpl.java │ │ └── webapp │ │ ├── WEB-INF │ │ ├── appengine-web.xml │ │ ├── logging.properties │ │ └── web.xml │ │ └── index.jsp ├── firebase-tictactoe │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── appengine │ │ │ │ └── firetactoe │ │ │ │ ├── DeleteServlet.java │ │ │ │ ├── FirebaseChannel.java │ │ │ │ ├── Game.java │ │ │ │ ├── MoveServlet.java │ │ │ │ ├── ObjectifyHelper.java │ │ │ │ ├── OpenedServlet.java │ │ │ │ └── TicTacToeServlet.java │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── appengine-web.xml │ │ │ ├── logging.properties │ │ │ ├── view │ │ │ │ ├── firebase_config.jspf │ │ │ │ └── index.jsp │ │ │ └── web.xml │ │ │ └── static │ │ │ ├── main.css │ │ │ └── main.js │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── firetactoe │ │ ├── DeleteServletTest.java │ │ ├── FirebaseChannelTest.java │ │ ├── MoveServletTest.java │ │ ├── OpenedServletTest.java │ │ └── TicTacToeServletTest.java ├── gaeinfo │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── standard │ │ │ └── GaeInfoServlet.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ ├── logging.properties │ │ ├── templates │ │ └── index.html │ │ └── web.xml ├── guestbook-cloud-datastore │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── guestbook │ │ │ │ ├── Greeting.java │ │ │ │ ├── Guestbook.java │ │ │ │ ├── Persistence.java │ │ │ │ └── SignGuestbookServlet.java │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── appengine-web.xml │ │ │ ├── index.yaml │ │ │ ├── logging.properties │ │ │ └── web.xml │ │ │ ├── guestbook.jsp │ │ │ └── stylesheets │ │ │ └── main.css │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── guestbook │ │ ├── GreetingTest.java │ │ ├── SignGuestbookServletTest.java │ │ └── TestUtils.java ├── helloworld │ ├── README.md │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── pom.xml │ ├── settings.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── appengine │ │ │ │ └── java8 │ │ │ │ └── HelloAppEngine.java │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ └── appengine-web.xml │ │ │ └── index.jsp │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── java8 │ │ └── HelloAppEngineTest.java ├── iap │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── iap │ │ │ └── JwtServlet.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ └── web.xml ├── images │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── images │ │ │ └── ImagesServlet.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ ├── image.jpg │ │ └── web.xml ├── mail │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── mail │ │ │ ├── BounceHandlerServlet.java │ │ │ ├── HandleDiscussionEmail.java │ │ │ ├── MailHandlerBase.java │ │ │ ├── MailHandlerServlet.java │ │ │ └── MailServlet.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ ├── logging.properties │ │ └── web.xml ├── mailgun │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── mailgun │ │ │ └── MailgunServlet.java │ │ └── webapp │ │ ├── WEB-INF │ │ ├── appengine-web.xml │ │ └── web.xml │ │ └── index.html ├── mailjet │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── mailjet │ │ │ └── MailjetServlet.java │ │ └── webapp │ │ ├── WEB-INF │ │ ├── appengine-web.xml │ │ └── web.xml │ │ └── index.html ├── memcache │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── memcache │ │ │ ├── MemcacheAsyncCacheServlet.java │ │ │ ├── MemcacheBestPracticeServlet.java │ │ │ ├── MemcacheConcurrentServlet.java │ │ │ └── MemcacheSyncCacheServlet.java │ │ └── webapp │ │ └── WEB-INF │ │ └── appengine-web.xml ├── metadata │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── standard │ │ │ └── MetadataServlet.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ ├── templates │ │ └── index.html │ │ └── web.xml ├── oauth2 │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ ├── HelloServlet.java │ │ │ └── Oauth2Filter.java │ │ └── webapp │ │ ├── WEB-INF │ │ ├── appengine-web.xml │ │ └── web.xml │ │ └── oauth2.html ├── pubsub │ ├── README.md │ ├── pom.xml │ ├── sample_message.json │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── pubsub │ │ │ ├── Message.java │ │ │ ├── MessageRepository.java │ │ │ ├── MessageRepositoryImpl.java │ │ │ ├── PubSubAuthenticatedPush.java │ │ │ ├── PubSubHome.java │ │ │ ├── PubSubPublish.java │ │ │ └── PubSubPush.java │ │ └── webapp │ │ ├── WEB-INF │ │ └── appengine-web.xml │ │ └── index.jsp ├── remote-README.md ├── remote-client │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── remote │ │ └── RemoteApiExample.java ├── remote-server │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── remote │ │ │ └── RemoteServlet.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ └── web.xml ├── requests │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── appengine │ │ │ │ └── requests │ │ │ │ ├── LoggingServlet.java │ │ │ │ └── RequestsServlet.java │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── appengine-web.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── requests │ │ ├── LoggingServletTest.java │ │ └── RequestsServletTest.java ├── search │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── appengine │ │ │ │ └── search │ │ │ │ ├── DeleteServlet.java │ │ │ │ ├── DocumentServlet.java │ │ │ │ ├── IndexServlet.java │ │ │ │ ├── SchemaServlet.java │ │ │ │ ├── SearchOptionServlet.java │ │ │ │ ├── SearchServlet.java │ │ │ │ └── Utils.java │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── appengine-web.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── search │ │ ├── DeleteServletTest.java │ │ ├── DocumentServletTest.java │ │ ├── IndexServletTest.java │ │ ├── SchemaServletTest.java │ │ ├── SearchOptionServletTest.java │ │ ├── SearchServletTest.java │ │ └── UtilsTest.java ├── sendgrid │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── sendgrid │ │ │ └── SendEmailServlet.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ └── web.xml ├── spanner │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── spanner │ │ │ ├── SpannerClient.java │ │ │ ├── SpannerTasks.java │ │ │ └── SpannerTasksServlet.java │ │ └── webapp │ │ └── WEB-INF │ │ └── appengine-web.xml ├── sparkjava-helloworld │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── HelloWorld.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ └── logging.properties ├── springboot-helloworld │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ └── maven-wrapper.properties │ ├── README.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── appengine │ │ │ │ └── demos │ │ │ │ └── springboot │ │ │ │ ├── HelloworldController.java │ │ │ │ ├── ServletInitializer.java │ │ │ │ └── SpringBootExampleApplication.java │ │ ├── resources │ │ │ ├── application.properties │ │ │ ├── application.yaml │ │ │ └── logging.properties │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── appengine-web.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── demos │ │ └── springboot │ │ └── SpringBootExampleApplicationTests.java ├── static-files │ ├── pom.xml │ └── src │ │ └── main │ │ └── webapp │ │ ├── WEB-INF │ │ ├── appengine-web.xml │ │ └── web.xml │ │ ├── index.html │ │ └── stylesheets │ │ └── styles.css ├── taskqueues-deferred │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── google │ │ │ └── cloud │ │ │ └── taskqueue │ │ │ └── samples │ │ │ └── DeferSampleServlet.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ └── logging.properties ├── taskqueues-pull │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── taskqueue │ │ │ └── TaskqueueServlet.java │ │ └── webapp │ │ ├── WEB-INF │ │ ├── appengine-web.xml │ │ ├── logging.properties │ │ ├── queue.xml │ │ └── web.xml │ │ └── taskqueues-pull.jsp ├── taskqueues-push │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── appengine │ │ │ │ └── taskqueue │ │ │ │ └── push │ │ │ │ ├── Enqueue.java │ │ │ │ └── Worker.java │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── appengine-web.xml │ │ │ └── web.xml │ │ │ └── taskqueue-push.html │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── taskqueue │ │ └── push │ │ └── WorkerTest.java ├── tasks │ ├── app │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── task │ │ │ │ │ ├── Enqueue.java │ │ │ │ │ └── Worker.java │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ ├── appengine-web.xml │ │ │ │ └── web.xml │ │ │ │ └── cloudtasks-push.html │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── task │ │ │ └── WorkerTest.java │ ├── quickstart │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── task │ │ │ │ │ ├── CreateTask.java │ │ │ │ │ └── TaskServlet.java │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── appengine-web.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── task │ │ │ └── CreateTaskIT.java │ └── snippets │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── task │ │ │ ├── CreateQueue.java │ │ │ ├── CreateTask.java │ │ │ ├── CreateTaskWithName.java │ │ │ ├── DeleteQueue.java │ │ │ ├── DeleteTask.java │ │ │ ├── PauseQueue.java │ │ │ ├── PurgeQueue.java │ │ │ ├── RetryTask.java │ │ │ └── UpdateQueue.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── task │ │ └── SnippetsIT.java ├── translate-pubsub │ ├── README.md │ ├── pom.xml │ ├── sample_message.json │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── translatepubsub │ │ │ ├── Message.java │ │ │ ├── MessageRepository.java │ │ │ ├── MessageRepositoryImpl.java │ │ │ ├── PubSubHome.java │ │ │ ├── PubSubPublish.java │ │ │ ├── PubSubPush.java │ │ │ └── Translate.java │ │ └── webapp │ │ ├── WEB-INF │ │ └── appengine-web.xml │ │ └── index.jsp ├── twilio │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── twilio │ │ │ ├── ReceiveCallServlet.java │ │ │ ├── ReceiveSmsServlet.java │ │ │ └── SendSmsServlet.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ └── web.xml ├── urlfetch │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── UrlFetchServlet.java │ │ └── webapp │ │ ├── WEB-INF │ │ ├── appengine-web.xml │ │ └── web.xml │ │ └── urlfetchresult.jsp └── users │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── users │ │ │ └── UsersServlet.java │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ └── web.xml │ └── test │ └── java │ └── com │ └── example │ └── appengine │ └── users │ └── UsersServletTest.java ├── asset ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── asset │ │ ├── AnalyzeIamPolicyExample.java │ │ ├── AnalyzeIamPolicyLongrunningBigqueryExample.java │ │ ├── AnalyzeIamPolicyLongrunningGcsExample.java │ │ ├── AnalyzeOrgPoliciesExample.java │ │ ├── AnalyzeOrgPolicyGovernedAssetsExample.java │ │ ├── AnalyzeOrgPolicyGovernedContainersExample.java │ │ ├── BatchGetAssetsHistoryExample.java │ │ ├── BatchGetEffectiveIamPolicyExample.java │ │ ├── CreateFeedExample.java │ │ ├── CreateSavedQueryExample.java │ │ ├── DeleteFeedExample.java │ │ ├── DeleteSavedQueryExample.java │ │ ├── ExportAssetsBigqueryExample.java │ │ ├── ExportAssetsExample.java │ │ ├── GetFeedExample.java │ │ ├── GetSavedQueryExample.java │ │ ├── ListAssetsExample.java │ │ ├── ListFeedsExample.java │ │ ├── ListSavedQueriesExample.java │ │ ├── SearchAllIamPoliciesExample.java │ │ ├── SearchAllResourcesExample.java │ │ ├── UpdateFeedExample.java │ │ └── UpdateSavedQueryExample.java │ └── test │ └── java │ └── com │ └── example │ └── asset │ ├── AnalyzeIT.java │ ├── BatchGetEffectiveIamPolicyTest.java │ ├── ListAssetsIT.java │ ├── OrgPolicyAnalyzerIT.java │ ├── QuickStartIT.java │ ├── RealTimeFeedIT.java │ ├── SavedQueryIT.java │ └── SearchIT.java ├── auth ├── README.md ├── pom.xml └── src │ ├── main │ └── java │ │ ├── CreateApiKey.java │ │ ├── DeleteApiKey.java │ │ ├── LookupApiKey.java │ │ ├── RestrictApiKeyAndroid.java │ │ ├── RestrictApiKeyApi.java │ │ ├── RestrictApiKeyHttp.java │ │ ├── RestrictApiKeyIos.java │ │ ├── RestrictApiKeyServer.java │ │ ├── UndeleteApiKey.java │ │ └── com │ │ └── google │ │ └── cloud │ │ └── auth │ │ └── samples │ │ ├── AccessTokenFromImpersonatedCredentials.java │ │ ├── ApiKeyAuthExample.java │ │ ├── AuthExample.java │ │ ├── DownscopedAccessTokenConsumer.java │ │ ├── DownscopedAccessTokenGenerator.java │ │ └── DownscopingExample.java │ └── test │ └── java │ ├── ApiKeySnippetsIT.java │ └── com │ └── google │ └── cloud │ └── auth │ └── samples │ ├── AccessTokenFromImpersonatedCredentialsIT.java │ ├── AuthExampleIT.java │ ├── AuthTestUtils.java │ ├── DownscopedAccessTokenIT.java │ └── DownscopingExampleIT.java ├── automl ├── pom.xml ├── resources │ ├── dandelion.jpg │ ├── input.txt │ ├── salad.jpg │ └── test.png └── src │ ├── main │ └── java │ │ ├── beta │ │ └── automl │ │ │ ├── BatchPredict.java │ │ │ ├── CancelOperation.java │ │ │ ├── DeleteDataset.java │ │ │ ├── DeleteModel.java │ │ │ ├── DeployModel.java │ │ │ ├── GetModel.java │ │ │ ├── GetModelEvaluation.java │ │ │ ├── GetOperationStatus.java │ │ │ ├── ImportDataset.java │ │ │ ├── ListDatasets.java │ │ │ ├── ListModelEvaluations.java │ │ │ ├── ListModels.java │ │ │ ├── SetEndpoint.java │ │ │ ├── TablesBatchPredictBigQuery.java │ │ │ ├── TablesCreateDataset.java │ │ │ ├── TablesCreateModel.java │ │ │ ├── TablesGetModel.java │ │ │ ├── TablesImportDataset.java │ │ │ ├── TablesPredict.java │ │ │ ├── UndeployModel.java │ │ │ ├── VideoClassificationCreateDataset.java │ │ │ ├── VideoClassificationCreateModel.java │ │ │ ├── VideoObjectTrackingCreateDataset.java │ │ │ └── VideoObjectTrackingCreateModel.java │ │ └── com │ │ └── example │ │ └── automl │ │ ├── BatchPredict.java │ │ ├── DeleteDataset.java │ │ ├── DeleteModel.java │ │ ├── DeployModel.java │ │ ├── ExportDataset.java │ │ ├── GetDataset.java │ │ ├── GetModel.java │ │ ├── GetModelEvaluation.java │ │ ├── GetOperationStatus.java │ │ ├── ImportDataset.java │ │ ├── LanguageEntityExtractionCreateDataset.java │ │ ├── LanguageEntityExtractionCreateModel.java │ │ ├── LanguageEntityExtractionPredict.java │ │ ├── LanguageSentimentAnalysisCreateDataset.java │ │ ├── LanguageSentimentAnalysisCreateModel.java │ │ ├── LanguageSentimentAnalysisPredict.java │ │ ├── LanguageTextClassificationCreateDataset.java │ │ ├── LanguageTextClassificationCreateModel.java │ │ ├── LanguageTextClassificationPredict.java │ │ ├── ListDatasets.java │ │ ├── ListModelEvaluations.java │ │ ├── ListModels.java │ │ ├── ListOperationStatus.java │ │ ├── TranslateCreateDataset.java │ │ ├── TranslateCreateModel.java │ │ ├── TranslatePredict.java │ │ ├── UndeployModel.java │ │ ├── VisionClassificationCreateDataset.java │ │ ├── VisionClassificationCreateModel.java │ │ ├── VisionClassificationDeployModelNodeCount.java │ │ ├── VisionClassificationPredict.java │ │ ├── VisionObjectDetectionCreateDataset.java │ │ ├── VisionObjectDetectionCreateModel.java │ │ ├── VisionObjectDetectionDeployModelNodeCount.java │ │ └── VisionObjectDetectionPredict.java │ └── test │ └── java │ ├── beta │ └── automl │ │ ├── BatchPredictTest.java │ │ ├── CancelOperationTest.java │ │ ├── DeleteDatasetTest.java │ │ ├── DeleteModelTest.java │ │ ├── DeployModelTest.java │ │ ├── GetModelEvaluationTest.java │ │ ├── GetModelTest.java │ │ ├── GetOperationStatusTest.java │ │ ├── ImportDatasetTest.java │ │ ├── ListDatasetsTest.java │ │ ├── ListModelEvaluationsTest.java │ │ ├── ListModelsTest.java │ │ ├── SetEndpointIT.java │ │ ├── TablesBatchPredictBigQueryTest.java │ │ ├── TablesCreateDatasetTest.java │ │ ├── TablesCreateModelTest.java │ │ ├── TablesGetModelTest.java │ │ ├── TablesImportDatasetTest.java │ │ ├── TablesPredictTest.java │ │ ├── UndeployModelTest.java │ │ ├── VideoClassificationCreateDatasetTest.java │ │ ├── VideoClassificationCreateModelTest.java │ │ ├── VideoObjectTrackingCreateDatasetTest.java │ │ └── VideoObjectTrackingCreateModelTest.java │ └── com │ └── example │ └── automl │ ├── BatchPredictTest.java │ ├── DeleteDatasetTest.java │ ├── DeleteModelTest.java │ ├── DeployModelTest.java │ ├── ExportDatasetTest.java │ ├── GetDatasetTest.java │ ├── GetModelEvaluationTest.java │ ├── GetModelTest.java │ ├── GetOperationStatusTest.java │ ├── ImportDatasetTest.java │ ├── LanguageEntityExtractionCreateDatasetTest.java │ ├── LanguageEntityExtractionCreateModelTest.java │ ├── LanguageEntityExtractionPredictTest.java │ ├── LanguageSentimentAnalysisCreateDatasetTest.java │ ├── LanguageSentimentAnalysisCreateModelTest.java │ ├── LanguageSentimentAnalysisPredictTest.java │ ├── LanguageTextClassificationCreateDatasetTest.java │ ├── LanguageTextClassificationCreateModelTest.java │ ├── LanguageTextClassificationPredictTest.java │ ├── ListDatasetsTest.java │ ├── ListModelEvaluationsTest.java │ ├── ListModelsTest.java │ ├── ListOperationStatusTest.java │ ├── TranslateCreateDatasetTest.java │ ├── TranslateCreateModelTest.java │ ├── TranslatePredictTest.java │ ├── UndeployModelTest.java │ ├── VisionClassificationCreateDatasetTest.java │ ├── VisionClassificationCreateModelTest.java │ ├── VisionClassificationDeployModelNodeCountTest.java │ ├── VisionClassificationPredictTest.java │ ├── VisionObjectDetectionCreateDatasetTest.java │ ├── VisionObjectDetectionCreateModelTest.java │ ├── VisionObjectDetectionDeployModelNodeCountTest.java │ └── VisionObjectDetectionPredictTest.java ├── batch └── snippets │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── batch │ │ ├── CreateBatchAllocationPolicyLabel.java │ │ ├── CreateBatchCustomEvent.java │ │ ├── CreateBatchCustomNetwork.java │ │ ├── CreateBatchLabelJob.java │ │ ├── CreateBatchNotification.java │ │ ├── CreateBatchRunnableLabel.java │ │ ├── CreateBatchUsingSecretManager.java │ │ ├── CreateBatchUsingServiceAccount.java │ │ ├── CreateGpuJob.java │ │ ├── CreateGpuJobN1.java │ │ ├── CreateLocalSsdJob.java │ │ ├── CreatePersistentDiskJob.java │ │ ├── CreateScriptJobWithNfs.java │ │ ├── CreateWithContainerNoMounting.java │ │ ├── CreateWithMountedBucket.java │ │ ├── CreateWithScriptNoMounting.java │ │ ├── CreateWithTemplate.java │ │ ├── DeleteJob.java │ │ ├── GetJob.java │ │ ├── GetTask.java │ │ ├── ListJobs.java │ │ ├── ListTasks.java │ │ └── ReadJobLogs.java │ └── test │ └── java │ └── com │ └── example │ └── batch │ ├── BatchBasicIT.java │ ├── BatchBucketIT.java │ ├── BatchTemplateIT.java │ ├── CreateResourcesIT.java │ └── Util.java ├── bigquery ├── README.md ├── bigqueryconnection │ └── snippets │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── bigqueryconnection │ │ │ ├── CreateAwsConnection.java │ │ │ ├── CreateConnection.java │ │ │ ├── DeleteConnection.java │ │ │ ├── GetConnection.java │ │ │ ├── ListConnections.java │ │ │ ├── QuickstartSample.java │ │ │ ├── ShareConnection.java │ │ │ └── UpdateConnection.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── bigqueryconnection │ │ ├── CreateAwsConnectionIT.java │ │ ├── CreateConnectionIT.java │ │ ├── DeleteConnectionIT.java │ │ ├── GetConnectionIT.java │ │ ├── ListConnectionsIT.java │ │ ├── QuickstartSampleIT.java │ │ ├── ShareConnectionIT.java │ │ └── UpdateConnectionIT.java ├── bigquerydatatransfer │ └── snippets │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── bigquerydatatransfer │ │ │ ├── CopyDataset.java │ │ │ ├── CreateAdManagerTransfer.java │ │ │ ├── CreateAdsTransfer.java │ │ │ ├── CreateAmazonS3Transfer.java │ │ │ ├── CreateAzureBlobStorageTransfer.java │ │ │ ├── CreateCampaignmanagerTransfer.java │ │ │ ├── CreateCloudStorageTransfer.java │ │ │ ├── CreatePlayTransfer.java │ │ │ ├── CreateRedshiftTransfer.java │ │ │ ├── CreateScheduledQuery.java │ │ │ ├── CreateScheduledQueryWithServiceAccount.java │ │ │ ├── CreateTeradataTransfer.java │ │ │ ├── CreateYoutubeChannelTransfer.java │ │ │ ├── CreateYoutubeContentOwnerTransfer.java │ │ │ ├── DeleteScheduledQuery.java │ │ │ ├── DeleteTransferConfig.java │ │ │ ├── DisableTransferConfig.java │ │ │ ├── GetTransferConfigInfo.java │ │ │ ├── ListTransferConfigs.java │ │ │ ├── QuickstartSample.java │ │ │ ├── ReEnableTransferConfig.java │ │ │ ├── RunDetails.java │ │ │ ├── RunHistory.java │ │ │ ├── RunNotification.java │ │ │ ├── ScheduleBackFill.java │ │ │ ├── UpdateCredentials.java │ │ │ └── UpdateTransferConfig.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── bigquerydatatransfer │ │ ├── CopyDatasetIT.java │ │ ├── CreateAmazonS3TransferIT.java │ │ ├── CreateAzureBlobStorageTransferIT.java │ │ ├── CreateCloudStorageTransferIT.java │ │ ├── CreateScheduledQueryIT.java │ │ ├── CreateScheduledQueryWithServiceAccountIT.java │ │ ├── DeleteScheduledQueryIT.java │ │ ├── DeleteTransferConfigIT.java │ │ ├── DisableTransferConfigIT.java │ │ ├── GetTransferConfigInfoIT.java │ │ ├── ListTransferConfigsIT.java │ │ ├── QuickstartSampleIT.java │ │ ├── ReEnableTransferConfigIT.java │ │ ├── RunDetailsIT.java │ │ ├── RunHistoryIT.java │ │ ├── RunNotificationIT.java │ │ ├── ScheduleBackFillIT.java │ │ ├── UpdateCredentialsIT.java │ │ └── UpdateTransferConfigIT.java ├── bigqueryreservation │ └── snippets │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── bigqueryreservation │ │ │ └── QuickstartSample.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── bigqueryreservation │ │ └── QuickstartSampleIT.java ├── bigquerystorage │ └── README.md ├── cloud-client │ ├── README.md │ └── snippets │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── bigquery │ │ │ ├── CreateDataset.java │ │ │ ├── CreateTable.java │ │ │ ├── CreateView.java │ │ │ ├── DeleteDataset.java │ │ │ ├── DeleteTable.java │ │ │ ├── GetDatasetAccessPolicy.java │ │ │ ├── GetTableOrViewAccessPolicy.java │ │ │ ├── GrantAccessToDataset.java │ │ │ ├── GrantAccessToTableOrView.java │ │ │ ├── RevokeAccessToTableOrView.java │ │ │ └── RevokeDatasetAccess.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── bigquery │ │ ├── CreateDatasetIT.java │ │ ├── CreateTableIT.java │ │ ├── CreateViewIT.java │ │ ├── DeleteDatasetIT.java │ │ ├── DeleteTableIT.java │ │ ├── GetDatasetAccessPolicyIT.java │ │ ├── GetTableOrViewAccessPolicyIT.java │ │ ├── GrantAccessToDatasetIT.java │ │ ├── GrantAccessToTableOrViewIT.java │ │ ├── RevokeAccessToTableOrViewIT.java │ │ ├── RevokeDatasetAccessIT.java │ │ └── Util.java └── rest │ └── README.md ├── bigtable ├── beam │ ├── batch-write-flow-control-example │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── bigtable │ │ │ │ └── BatchWriteFlowControlExample.java │ │ │ └── test │ │ │ └── java │ │ │ └── bigtable │ │ │ └── BatchWriteFlowControlExampleTest.java │ ├── bulk-data-generator │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── bigtable │ │ │ │ └── BulkWrite.java │ │ │ └── test │ │ │ └── java │ │ │ └── bigtable │ │ │ └── BulkWriteTest.java │ ├── change-streams │ │ ├── README.md │ │ ├── pom.xml │ │ ├── quickstart-data.csv │ │ ├── song-rank-data.csv │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ ├── ChangeStreamsHelloWorld.java │ │ │ │ └── SongRank.java │ │ │ └── test │ │ │ └── java │ │ │ ├── ChangeStreamsHelloWorldTest.java │ │ │ └── SongRankTest.java │ ├── helloworld │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ ├── HelloWorldRead.java │ │ │ │ └── HelloWorldWrite.java │ │ │ └── test │ │ │ └── java │ │ │ └── HelloWorldTest.java │ ├── keyviz-art │ │ ├── README.md │ │ ├── mona_lisa_example.png │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── keyviz │ │ │ │ ├── LoadData.java │ │ │ │ └── ReadData.java │ │ │ └── test │ │ │ └── java │ │ │ └── KeyVizArtTest.java │ └── workload-generator │ │ ├── README.md │ │ ├── metadata.json │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── bigtable │ │ │ └── WorkloadGenerator.java │ │ └── test │ │ └── java │ │ └── bigtable │ │ └── WorkloadGeneratorTest.java ├── bigtable-proxy │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── assembly │ │ │ └── assembly.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── cloud │ │ │ │ └── bigtable │ │ │ │ └── examples │ │ │ │ └── proxy │ │ │ │ ├── Main.java │ │ │ │ ├── channelpool │ │ │ │ ├── ChannelFactory.java │ │ │ │ ├── ChannelPool.java │ │ │ │ ├── ChannelPoolSettings.java │ │ │ │ ├── DataChannel.java │ │ │ │ └── ResourceCollector.java │ │ │ │ ├── commands │ │ │ │ ├── Endpoint.java │ │ │ │ ├── Serve.java │ │ │ │ ├── Verify.java │ │ │ │ └── package-info.java │ │ │ │ ├── core │ │ │ │ ├── ByteMarshaller.java │ │ │ │ ├── CallLabels.java │ │ │ │ ├── CallProxy.java │ │ │ │ ├── ProxyHandler.java │ │ │ │ └── Registry.java │ │ │ │ ├── metrics │ │ │ │ ├── InstrumentedCallCredentials.java │ │ │ │ ├── Metrics.java │ │ │ │ ├── MetricsImpl.java │ │ │ │ └── Tracer.java │ │ │ │ └── package-info.java │ │ ├── resources │ │ │ └── logback.xml │ │ └── scripts │ │ │ ├── bigtable-proxy.sh │ │ │ └── bigtable-verify.sh │ │ └── test │ │ └── java │ │ └── com │ │ └── google │ │ └── cloud │ │ └── bigtable │ │ └── examples │ │ └── proxy │ │ ├── channelpool │ │ └── ChannelPoolTest.java │ │ ├── commands │ │ ├── EndpointTest.java │ │ ├── ServeMetricsTest.java │ │ ├── ServeParsingTest.java │ │ └── ServeTest.java │ │ ├── core │ │ └── CallLabelsTest.java │ │ ├── metrics │ │ ├── MetricsImplTest.java │ │ └── NoopMetrics.java │ │ └── utils │ │ ├── ContextSubject.java │ │ └── MetadataSubject.java ├── cassandra-migration-codelab │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── CassandraMigrationCodelab.java │ │ └── test │ │ └── java │ │ └── CassandraMigrationCodelabTest.java ├── hbase │ └── snippets │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── bigtable │ │ │ │ ├── BigtableConnect.java │ │ │ │ ├── ConfigureConnectionPool.java │ │ │ │ ├── Filters.java │ │ │ │ ├── HelloWorld.java │ │ │ │ ├── Reads.java │ │ │ │ ├── WriteBatch.java │ │ │ │ ├── WriteConditionally.java │ │ │ │ ├── WriteIncrement.java │ │ │ │ └── WriteSimple.java │ │ └── resources │ │ │ └── hbase-site.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── bigtable │ │ ├── BigtableConnectTest.java │ │ ├── ConfigureConnectionPoolTest.java │ │ ├── FiltersTest.java │ │ ├── HelloWorldTest.java │ │ ├── ReadsTest.java │ │ └── WritesTest.java ├── memorystore │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── Memcached.java │ │ └── test │ │ └── java │ │ └── MemcachedTest.java ├── scheduled-backups │ ├── README.md │ ├── config │ │ ├── metrics.yaml │ │ └── scheduled-backups.properties │ ├── images │ │ └── scheduled_backup_architecture.png │ ├── pom.xml │ ├── scripts │ │ └── scheduled_backups.sh │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── cloud │ │ │ └── bigtable │ │ │ └── scheduledbackups │ │ │ ├── CreateBackup.java │ │ │ └── resource │ │ │ ├── CreateBackupMessage.java │ │ │ └── PubSubMessage.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── cloud │ │ └── bigtable │ │ └── scheduledbackups │ │ └── CreateBackupTestIT.java ├── spark │ ├── README.md │ ├── build.sbt │ ├── project │ │ ├── assembly.sbt │ │ └── build.properties │ └── src │ │ ├── main │ │ └── scala │ │ │ └── example │ │ │ ├── CopyTable.scala │ │ │ └── Wordcount.scala │ │ └── test │ │ ├── resources │ │ ├── Romeo-and-Juliet-prologue.txt │ │ └── log4j.properties │ │ └── scala │ │ └── example │ │ └── IntegrationTest.scala └── use-cases │ └── fraudDetection │ ├── README.md │ ├── fraud-detection-design.svg │ ├── pom.xml │ ├── src │ ├── main │ │ └── java │ │ │ └── bigtable │ │ │ └── fraud │ │ │ └── beam │ │ │ ├── FraudDetection.java │ │ │ ├── FraudDetectionOptions.java │ │ │ ├── LoadDataset.java │ │ │ ├── LoadDatasetOptions.java │ │ │ ├── package-info.java │ │ │ └── utils │ │ │ ├── AggregatedData.java │ │ │ ├── CustomerProfile.java │ │ │ ├── RowDetails.java │ │ │ ├── TransactionDetails.java │ │ │ ├── UtilFunctions.java │ │ │ ├── WriteCBTHelper.java │ │ │ └── package-info.java │ └── test │ │ └── java │ │ ├── FraudDetectionTestUtil.java │ │ └── StreamingPipelineTest.java │ └── terraform │ ├── datasets │ ├── testing_data │ │ ├── fraud_transactions.csv │ │ ├── legit_transactions.csv │ │ └── transactions_header.csv │ └── training_data │ │ ├── customers.csv │ │ ├── customers_header.csv │ │ ├── transactions.csv │ │ └── transactions_header.csv │ ├── main.tf │ ├── model │ └── model.bst │ ├── output.tf │ ├── scripts │ ├── destroy_streaming_pipeline.sh │ ├── load_dataset.sh │ ├── run_streaming_pipeline.sh │ ├── vertexai_build.sh │ └── vertexai_destroy.sh │ └── variables.tf ├── cdn └── signed-urls │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── google │ │ └── cdn │ │ ├── SignedCookies.java │ │ ├── SignedUrlWithPrefix.java │ │ └── SignedUrls.java │ └── test │ └── java │ └── com │ └── google │ └── cdn │ ├── SignedCookiesTest.java │ ├── SignedUrlWithPrefixTest.java │ └── SignedUrlsTest.java ├── cloud-sql ├── mysql │ ├── client-side-encryption │ │ ├── README.md │ │ ├── example.envrc │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── cloudsql │ │ │ │ └── tink │ │ │ │ ├── CloudKmsEnvelopeAead.java │ │ │ │ ├── CloudSqlConnectionPool.java │ │ │ │ ├── EncryptAndInsertData.java │ │ │ │ └── QueryAndDecryptData.java │ │ │ └── test │ │ │ └── java │ │ │ └── cloudsql │ │ │ └── tink │ │ │ ├── EncryptInsertDataIT.java │ │ │ └── QueryDecryptDataIT.java │ └── servlet │ │ ├── .env.yaml │ │ ├── README.md │ │ ├── deployment.yaml │ │ ├── pom.xml │ │ ├── service-account.yaml │ │ ├── service.yaml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── cloudsql │ │ │ │ ├── ConnectionPoolContextListener.java │ │ │ │ ├── ConnectionPoolFactory.java │ │ │ │ ├── ConnectorConnectionPoolFactory.java │ │ │ │ ├── ConnectorIamAuthnConnectionPoolFactory.java │ │ │ │ ├── IndexServlet.java │ │ │ │ ├── TcpConnectionPoolFactory.java │ │ │ │ ├── TemplateData.java │ │ │ │ ├── Utils.java │ │ │ │ ├── Vote.java │ │ │ │ └── functions │ │ │ │ └── Main.java │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ └── appengine-web.xml │ │ │ └── index.jsp │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── cloudsql │ │ └── TestIndexServletMysql.java ├── postgres │ ├── client-side-encryption │ │ ├── README.md │ │ ├── example.envrc │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── cloudsql │ │ │ │ └── tink │ │ │ │ ├── CloudKmsEnvelopeAead.java │ │ │ │ ├── CloudSqlConnectionPool.java │ │ │ │ ├── EncryptAndInsertData.java │ │ │ │ └── QueryAndDecryptData.java │ │ │ └── test │ │ │ └── java │ │ │ └── cloudsql │ │ │ └── tink │ │ │ ├── EncryptInsertDataIT.java │ │ │ └── QueryDecryptDataIT.java │ └── servlet │ │ ├── .env.yaml │ │ ├── README.md │ │ ├── deployment.yaml │ │ ├── pom.xml │ │ ├── service-account.yaml │ │ ├── service.yaml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── cloudsql │ │ │ │ ├── ConnectionPoolContextListener.java │ │ │ │ ├── ConnectionPoolFactory.java │ │ │ │ ├── ConnectorConnectionPoolFactory.java │ │ │ │ ├── ConnectorIamAuthnConnectionPoolFactory.java │ │ │ │ ├── IndexServlet.java │ │ │ │ ├── TcpConnectionPoolFactory.java │ │ │ │ ├── TemplateData.java │ │ │ │ ├── Utils.java │ │ │ │ ├── Vote.java │ │ │ │ └── functions │ │ │ │ └── Main.java │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ └── appengine-web.xml │ │ │ └── index.jsp │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── cloudsql │ │ └── TestIndexServletPostgres.java ├── r2dbc │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── appengine │ │ └── app.yaml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── cloudsql │ │ │ └── r2dbcsample │ │ │ ├── CommandLineRunnerSchemaCreator.java │ │ │ ├── MainController.java │ │ │ ├── R2dbcSampleApplication.java │ │ │ ├── Vote.java │ │ │ ├── VoteController.java │ │ │ └── VoteRepository.java │ │ └── resources │ │ ├── application.properties │ │ └── templates │ │ └── index.html └── sqlserver │ ├── client-side-encryption │ ├── README.md │ ├── example.envrc │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── cloudsql │ │ │ └── tink │ │ │ ├── CloudKmsEnvelopeAead.java │ │ │ ├── CloudSqlConnectionPool.java │ │ │ ├── EncryptAndInsertData.java │ │ │ └── QueryAndDecryptData.java │ │ └── test │ │ └── java │ │ └── cloudsql │ │ └── tink │ │ ├── EncryptInsertDataIT.java │ │ └── QueryDecryptDataIT.java │ └── servlet │ ├── .env.yaml │ ├── README.md │ ├── deployment.yaml │ ├── pom.xml │ ├── service-account.yaml │ ├── service.yaml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── cloudsql │ │ │ ├── ConnectionPoolContextListener.java │ │ │ ├── ConnectionPoolFactory.java │ │ │ ├── ConnectorConnectionPoolFactory.java │ │ │ ├── IndexServlet.java │ │ │ ├── TcpConnectionPoolFactory.java │ │ │ ├── TemplateData.java │ │ │ ├── Utils.java │ │ │ ├── Vote.java │ │ │ └── functions │ │ │ └── Main.java │ └── webapp │ │ ├── WEB-INF │ │ └── appengine-web.xml │ │ └── index.jsp │ └── test │ └── java │ └── com │ └── example │ └── cloudsql │ └── TestIndexServletSqlServer.java ├── compute ├── cloud-client │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── compute │ │ │ ├── ChangeInstanceMachineType.java │ │ │ ├── CreateEncryptedInstance.java │ │ │ ├── CreateFirewallRule.java │ │ │ ├── CreateInstance.java │ │ │ ├── CreateInstanceBulkInsert.java │ │ │ ├── CreateInstanceFromTemplate.java │ │ │ ├── CreateInstanceFromTemplateWithOverrides.java │ │ │ ├── CreateInstanceTemplate.java │ │ │ ├── CreateInstanceWithExistingDisks.java │ │ │ ├── CreateInstanceWithRegionalDiskFromSnapshot.java │ │ │ ├── CreateInstancesAdvanced.java │ │ │ ├── CreateRegionalInstanceTemplate.java │ │ │ ├── CreateTemplateFromInstance.java │ │ │ ├── CreateTemplateWithSubnet.java │ │ │ ├── CreateWithLocalSsd.java │ │ │ ├── DeleteFirewallRule.java │ │ │ ├── DeleteInstance.java │ │ │ ├── DeleteInstanceTemplate.java │ │ │ ├── DeleteRegionalInstanceTemplate.java │ │ │ ├── GetFirewallRule.java │ │ │ ├── GetInstance.java │ │ │ ├── GetInstanceTemplate.java │ │ │ ├── GetRegionalInstanceTemplate.java │ │ │ ├── ListAllInstances.java │ │ │ ├── ListFirewallRules.java │ │ │ ├── ListImages.java │ │ │ ├── ListInstance.java │ │ │ ├── ListInstanceTemplates.java │ │ │ ├── PatchFirewallRule.java │ │ │ ├── ResetInstance.java │ │ │ ├── ResumeInstance.java │ │ │ ├── SetUsageExportBucket.java │ │ │ ├── StartEncryptedInstance.java │ │ │ ├── StartInstance.java │ │ │ ├── StopInstance.java │ │ │ ├── SuspendInstance.java │ │ │ ├── WaitForOperation.java │ │ │ ├── customhostname │ │ │ ├── CreateInstanceWithCustomHostname.java │ │ │ └── GetInstanceHostname.java │ │ │ ├── custommachinetype │ │ │ ├── CreateCustomMachineType.java │ │ │ ├── CreateInstanceWithCustomSharedCore.java │ │ │ ├── CreateWithHelper.java │ │ │ ├── CreateWithoutHelper.java │ │ │ ├── ExtraMemoryWithoutHelper.java │ │ │ ├── HelperClass.java │ │ │ └── UpdateMemory.java │ │ │ ├── deleteprotection │ │ │ ├── CreateInstanceDeleteProtection.java │ │ │ ├── GetDeleteProtection.java │ │ │ └── SetDeleteProtection.java │ │ │ ├── disks │ │ │ ├── AttachDisk.java │ │ │ ├── AttachRegionalDiskForce.java │ │ │ ├── CloneEncryptedDisk.java │ │ │ ├── CloneEncryptedDiskManagedKey.java │ │ │ ├── CreateDiskFromImage.java │ │ │ ├── CreateDiskFromSnapshot.java │ │ │ ├── CreateDiskSecondaryRegional.java │ │ │ ├── CreateDiskSecondaryZonal.java │ │ │ ├── CreateDiskWithSnapshotSchedule.java │ │ │ ├── CreateEmptyDisk.java │ │ │ ├── CreateEncryptedDisk.java │ │ │ ├── CreateFromSource.java │ │ │ ├── CreateHyperdisk.java │ │ │ ├── CreateKmsEncryptedDisk.java │ │ │ ├── CreateReplicatedDisk.java │ │ │ ├── CreateSecondaryCustomDisk.java │ │ │ ├── CreateSnapshot.java │ │ │ ├── DeleteDisk.java │ │ │ ├── DeleteSnapshot.java │ │ │ ├── DeleteSnapshotsByFilter.java │ │ │ ├── GetSnapshot.java │ │ │ ├── ListDisks.java │ │ │ ├── ListSnapshots.java │ │ │ ├── RegionalCreateFromSource.java │ │ │ ├── RegionalDelete.java │ │ │ ├── ResizeDisk.java │ │ │ ├── ResizeRegionalDisk.java │ │ │ ├── SetDiskAutodelete.java │ │ │ ├── StartRegionalDiskReplication.java │ │ │ ├── StartZonalDiskReplication.java │ │ │ ├── StopRegionalDiskReplication.java │ │ │ ├── StopZonalDiskReplication.java │ │ │ ├── consistencygroup │ │ │ │ ├── AddDiskToConsistencyGroup.java │ │ │ │ ├── CloneRegionalDisksFromConsistencyGroup.java │ │ │ │ ├── CloneZonalDisksFromConsistencyGroup.java │ │ │ │ ├── CreateConsistencyGroup.java │ │ │ │ ├── DeleteConsistencyGroup.java │ │ │ │ ├── ListRegionalDisksInConsistencyGroup.java │ │ │ │ ├── ListZonalDisksInConsistencyGroup.java │ │ │ │ ├── RemoveDiskFromConsistencyGroup.java │ │ │ │ ├── StopRegionalDiskReplicationConsistencyGroup.java │ │ │ │ └── StopZonalDiskReplicationConsistencyGroup.java │ │ │ └── storagepool │ │ │ │ ├── CreateDiskInStoragePool.java │ │ │ │ └── CreateHyperdiskStoragePool.java │ │ │ ├── images │ │ │ ├── CreateImageFromImage.java │ │ │ ├── CreateImageFromSnapshot.java │ │ │ ├── GetImage.java │ │ │ ├── GetImageFromFamily.java │ │ │ ├── ListImages.java │ │ │ └── SetImageDeprecationStatus.java │ │ │ ├── ipaddress │ │ │ ├── AssignStaticExistingVm.java │ │ │ ├── AssignStaticExternalNewVmAddress.java │ │ │ ├── GetStaticIpAddress.java │ │ │ ├── GetVmAddress.java │ │ │ ├── ListStaticExternalIp.java │ │ │ ├── PromoteEphemeralIp.java │ │ │ ├── ReleaseStaticAddress.java │ │ │ ├── ReserveNewExternalAddress.java │ │ │ └── UnassignStaticIpAddress.java │ │ │ ├── preemptible │ │ │ ├── CreatePreemptibleInstance.java │ │ │ ├── IsPreemptible.java │ │ │ └── ListZoneOperations.java │ │ │ ├── reservation │ │ │ ├── ConsumeAnyMatchingReservation.java │ │ │ ├── ConsumeSingleProjectReservation.java │ │ │ ├── ConsumeSpecificSharedReservation.java │ │ │ ├── CreateInstanceWithoutConsumingReservation.java │ │ │ ├── CreateReservation.java │ │ │ ├── CreateReservationForInstanceTemplate.java │ │ │ ├── CreateReservationFromVm.java │ │ │ ├── CreateSharedReservation.java │ │ │ ├── CreateTemplateWithoutConsumingReservation.java │ │ │ ├── DeleteReservation.java │ │ │ ├── GetReservation.java │ │ │ ├── ListReservations.java │ │ │ └── UpdateVmsForReservation.java │ │ │ ├── routes │ │ │ ├── CreateRoute.java │ │ │ ├── DeleteRoute.java │ │ │ └── ListRoute.java │ │ │ ├── snapshotschedule │ │ │ ├── AttachSnapshotScheduleToDisk.java │ │ │ ├── CreateSnapshotSchedule.java │ │ │ ├── DeleteSnapshotSchedule.java │ │ │ ├── EditSnapshotSchedule.java │ │ │ ├── GetSnapshotSchedule.java │ │ │ ├── ListSnapshotSchedules.java │ │ │ └── RemoveSnapshotScheduleFromDisk.java │ │ │ ├── spots │ │ │ ├── CheckIsSpotVm.java │ │ │ └── CreateSpotVm.java │ │ │ └── windows │ │ │ ├── osimage │ │ │ ├── CreateImage.java │ │ │ └── DeleteImage.java │ │ │ └── windowsinstances │ │ │ ├── CreateFirewallRuleForWindowsActivationHost.java │ │ │ ├── CreateRouteToWindowsActivationHost.java │ │ │ ├── CreateWindowsServerInstanceExternalIp.java │ │ │ ├── CreateWindowsServerInstanceInternalIp.java │ │ │ └── GetInstanceSerialPort.java │ │ └── test │ │ └── java │ │ └── compute │ │ ├── FirewallIT.java │ │ ├── InstanceOperationsIT.java │ │ ├── InstanceTemplatesIT.java │ │ ├── InstancesAdvancedIT.java │ │ ├── SnippetsIT.java │ │ ├── Util.java │ │ ├── customhostname │ │ └── CustomHostnameInstanceIT.java │ │ ├── custommachinetype │ │ ├── CustomMachineTypeIT.java │ │ └── HelperIT.java │ │ ├── deleteprotection │ │ └── DeleteProtectionIT.java │ │ ├── disks │ │ ├── ConsistencyGroupIT.java │ │ ├── CreateHyperdiskIT.java │ │ ├── DiskReplicationIT.java │ │ ├── DisksFromSourceIT.java │ │ ├── DisksIT.java │ │ ├── HyperdiskIT.java │ │ ├── InstanceAttachDiskIT.java │ │ └── SnapshotsIT.java │ │ ├── images │ │ └── ImagesIT.java │ │ ├── ipaddress │ │ └── IPAddressTest.java │ │ ├── preemptible │ │ └── PreemptibleIT.java │ │ ├── reservation │ │ ├── ConsumeReservationsIT.java │ │ ├── CreateReservationFromVmIT.java │ │ ├── CrudOperationsReservationIT.java │ │ ├── ReservationIT.java │ │ └── WithoutConsumingReservationIT.java │ │ ├── routes │ │ └── RoutesIT.java │ │ ├── snapshotschedule │ │ └── SnapshotScheduleIT.java │ │ ├── spots │ │ └── SpotVmIT.java │ │ └── windows │ │ ├── osimage │ │ └── WindowsOsImageIT.java │ │ └── windowsinstances │ │ └── CreatingManagingWindowsInstancesIT.java ├── cmdline │ ├── ComputeEngineSample.launch │ ├── README.md │ ├── logging.properties │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── ComputeEngineSample.java ├── error-reporting │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── example │ │ └── compute │ │ └── errorreporting │ │ └── ExceptionUtil.java ├── load-balancing │ ├── pom.xml │ ├── resources │ │ └── certificate.pem │ └── src │ │ ├── main │ │ └── java │ │ │ └── compute │ │ │ ├── CreateCertificate.java │ │ │ └── CreateRegionalCertificate.java │ │ └── test │ │ └── java │ │ └── compute │ │ └── CertificatesIT.java ├── mailjet │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── compute │ │ │ └── mailjet │ │ │ └── MailjetSender.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── compute │ │ └── mailjet │ │ └── MailjetSenderTest.java ├── sendgrid │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── example │ │ └── compute │ │ └── sendgrid │ │ └── SendEmailServlet.java └── signed-metadata │ ├── README.md │ ├── pom.xml │ └── src │ └── main │ └── java │ └── com │ └── example │ └── compute │ └── signedmetadata │ ├── App.java │ ├── GCPInstance.java │ ├── VerifyingInstance.java │ └── token │ ├── DecodedGoogleJWTWrapper.java │ ├── Downloader.java │ ├── GoogleRSAKeyProvider.java │ ├── TokenDownloader.java │ └── TokenVerifier.java ├── contact-center-insights ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── contactcenterinsights │ │ ├── CreateAnalysis.java │ │ ├── CreateConversation.java │ │ ├── CreateConversationWithTtl.java │ │ ├── CreateIssueModel.java │ │ ├── CreatePhraseMatcherAllOf.java │ │ ├── CreatePhraseMatcherAnyOf.java │ │ ├── EnablePubSubNotifications.java │ │ ├── ExportToBigquery.java │ │ ├── GetOperation.java │ │ └── SetProjectTtl.java │ └── test │ └── java │ └── com │ └── example │ └── contactcenterinsights │ ├── CreateAnalysisIT.java │ ├── CreateConversationIT.java │ ├── CreateConversationWithTtlIT.java │ ├── CreateIssueModelIT.java │ ├── CreatePhraseMatcherAllOfIT.java │ ├── CreatePhraseMatcherAnyOfIT.java │ ├── EnablePubSubNotificationsIT.java │ ├── ExportToBigqueryIT.java │ ├── GetOperationIT.java │ └── SetProjectTtlIT.java ├── container-registry ├── container-analysis │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ └── com │ │ │ └── example │ │ │ └── containeranalysis │ │ │ ├── CreateNote.java │ │ │ ├── CreateOccurrence.java │ │ │ ├── DeleteNote.java │ │ │ ├── DeleteOccurrence.java │ │ │ ├── GetDiscoveryInfo.java │ │ │ ├── GetNote.java │ │ │ ├── GetOccurrence.java │ │ │ ├── HighVulnerabilitiesForImage.java │ │ │ ├── OccurrencesForImage.java │ │ │ ├── OccurrencesForNote.java │ │ │ ├── PollDiscoveryOccurrenceFinished.java │ │ │ ├── Subscriptions.java │ │ │ └── VulnerabilityOccurrencesForImage.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── containeranalysis │ │ └── SamplesTest.java └── vulnerability-notification-function │ ├── .gcloudignore │ ├── .gitignore │ ├── README.md │ ├── cloudops │ ├── container-analysis-metrics.yaml │ └── vulnerability-policy.yaml │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── containeranalysis │ │ ├── OccurrenceNotification.java │ │ ├── PubSubMessage.java │ │ └── VulnerabilityFunction.java │ └── test │ └── java │ └── com │ └── example │ └── containeranalysis │ └── VulnerabilityFunctionTest.java ├── content-warehouse ├── pom.xml └── src │ ├── main │ └── java │ │ └── contentwarehouse │ │ └── v1 │ │ ├── CreateDocument.java │ │ ├── CreateDocumentSchema.java │ │ ├── CreateRuleSet.java │ │ ├── DeleteDocumentSchema.java │ │ ├── GetDocument.java │ │ ├── GetDocumentSchema.java │ │ ├── ListDocumentSchema.java │ │ ├── QuickStart.java │ │ ├── SearchDocuments.java │ │ ├── UpdateDocument.java │ │ └── UpdateDocumentSchema.java │ └── test │ └── java │ └── contentwarehouse │ └── v1 │ ├── CreateRuleSetTest.java │ ├── DocumentSchemaTests.java │ ├── DocumentTests.java │ └── QuickStartTest.java ├── datacatalog ├── README.md └── snippets │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── datacatalog │ │ ├── CreateCustomConnector.java │ │ ├── CreateCustomEntry.java │ │ ├── CreateEntry.java │ │ ├── CreateEntryGroup.java │ │ ├── CreateFilesetEntry.java │ │ ├── CreateTagTemplate.java │ │ ├── DeleteEntry.java │ │ ├── DeleteEntryGroup.java │ │ ├── DeleteTagTemplate.java │ │ ├── GetEntry.java │ │ ├── GetEntryGroup.java │ │ ├── GetTagTemplate.java │ │ ├── GrantTagTemplateUserRole.java │ │ ├── ListEntries.java │ │ ├── ListEntryGroups.java │ │ ├── LookupEntryBigQueryDataset.java │ │ ├── LookupEntryBigQueryTable.java │ │ ├── LookupEntryPubSubTopic.java │ │ ├── Quickstart.java │ │ ├── SearchAssets.java │ │ ├── UpdateEntry.java │ │ ├── UpdateEntryGroup.java │ │ ├── UpdateTagTemplate.java │ │ └── WaitForImportEntries.java │ └── test │ └── java │ └── com │ └── example │ └── datacatalog │ ├── CreateCustomConnectorIT.java │ ├── CreateCustomEntryIT.java │ ├── CreateEntryGroupIT.java │ ├── CreateEntryIT.java │ ├── CreateEntryTests.java │ ├── CreateFilesetEntryIT.java │ ├── CreateTagTemplateIT.java │ ├── DeleteEntryGroupIT.java │ ├── DeleteEntryIT.java │ ├── DeleteTagTemplateIT.java │ ├── GetEntryGroupIT.java │ ├── GetEntryIT.java │ ├── GetImportEntriesStateIT.java │ ├── GetTagTemplateIT.java │ ├── GrantTagTemplateUserRoleIT.java │ ├── ListEntriesIT.java │ ├── ListEntryGroupsIT.java │ ├── LookupEntryTests.java │ ├── QuickstartIT.java │ ├── SearchAssetsIT.java │ ├── UpdateEntryGroupIT.java │ ├── UpdateEntryIT.java │ └── UpdateTagTemplateIT.java ├── dataflow ├── README.md ├── encryption-keys │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── example │ │ └── dataflow │ │ └── cmek │ │ └── BigQueryKmsKey.java ├── flex-templates │ ├── README.md │ ├── getting_started │ │ ├── README.md │ │ ├── metadata.json │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dataflow │ │ │ │ └── FlexTemplateGettingStarted.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dataflow │ │ │ └── FlexTemplateGettingStartedIT.java │ ├── kafka_to_bigquery │ │ ├── .gcloudignore │ │ ├── README.md │ │ ├── kafka │ │ │ ├── Dockerfile │ │ │ ├── create-topic.sh │ │ │ └── start-kafka.sh │ │ ├── metadata.json │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── beam │ │ │ └── samples │ │ │ └── KafkaToBigQuery.java │ └── streaming_beam_sql │ │ ├── .gcloudignore │ │ ├── README.md │ │ ├── metadata.json │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── beam │ │ └── samples │ │ └── StreamingBeamSql.java ├── snippets │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dataflow │ │ │ ├── ApacheIcebergCdcRead.java │ │ │ ├── ApacheIcebergDynamicDestinations.java │ │ │ ├── ApacheIcebergRead.java │ │ │ ├── ApacheIcebergRestCatalogStreamingWrite.java │ │ │ ├── ApacheIcebergWrite.java │ │ │ ├── BatchWriteStorage.java │ │ │ ├── BigQueryReadAvro.java │ │ │ ├── BigQueryReadFromQuery.java │ │ │ ├── BigQueryReadWithProjectionAndFiltering.java │ │ │ ├── BigQueryStreamExactlyOnce.java │ │ │ ├── BigQueryWrite.java │ │ │ ├── BigQueryWriteWithSchema.java │ │ │ ├── BiqQueryReadTableRows.java │ │ │ ├── ExamplePipelineOptions.java │ │ │ ├── KafkaRead.java │ │ │ ├── KafkaReadTopics.java │ │ │ ├── PubSubWriteWithAttributes.java │ │ │ └── ReadFromStorage.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dataflow │ │ ├── ApacheIcebergIT.java │ │ ├── BatchWriteStorageIT.java │ │ ├── BigQueryWriteIT.java │ │ ├── BiqQueryReadIT.java │ │ ├── KafkaReadIT.java │ │ ├── PubSubWriteIT.java │ │ └── ReadFromStorageIT.java ├── spanner-io │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dataflow │ │ │ ├── EstimateSize.java │ │ │ ├── SpannerGroupWrite.java │ │ │ ├── SpannerRead.java │ │ │ ├── SpannerReadAll.java │ │ │ ├── SpannerReadApi.java │ │ │ ├── SpannerReadApiWithIndex.java │ │ │ ├── SpannerWrite.java │ │ │ └── TransactionalRead.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dataflow │ │ ├── SpannerGroupWriteIT.java │ │ ├── SpannerReadIT.java │ │ └── SpannerWriteIT.java └── templates │ ├── README.md │ ├── WordCount_metadata │ ├── pom.xml │ └── src │ └── main │ └── java │ └── com │ └── example │ └── dataflow │ └── templates │ └── WordCount.java ├── datalabeling └── snippets │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── datalabeling │ │ ├── CreateAnnotationSpecSet.java │ │ ├── CreateDataset.java │ │ ├── CreateInstruction.java │ │ ├── ExportData.java │ │ ├── ImportData.java │ │ ├── LabelImage.java │ │ ├── LabelText.java │ │ └── LabelVideo.java │ └── test │ └── java │ └── com │ └── example │ └── datalabeling │ ├── CreateAnnotationSpecSetIT.java │ ├── CreateDatasetIT.java │ ├── CreateInstructionIT.java │ ├── ImportDataIT.java │ ├── LabelImageIT.java │ ├── LabelTextIT.java │ └── LabelVideoIT.java ├── dataplex ├── quickstart │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── dataplex │ │ │ └── Quickstart.java │ │ └── test │ │ └── java │ │ └── dataplex │ │ └── QuickstartIT.java └── snippets │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── dataplex │ │ ├── CreateAspectType.java │ │ ├── CreateEntry.java │ │ ├── CreateEntryGroup.java │ │ ├── CreateEntryType.java │ │ ├── DeleteAspectType.java │ │ ├── DeleteEntry.java │ │ ├── DeleteEntryGroup.java │ │ ├── DeleteEntryType.java │ │ ├── GetAspectType.java │ │ ├── GetEntry.java │ │ ├── GetEntryGroup.java │ │ ├── GetEntryType.java │ │ ├── ListAspectTypes.java │ │ ├── ListEntries.java │ │ ├── ListEntryGroups.java │ │ ├── ListEntryTypes.java │ │ ├── LookupEntry.java │ │ ├── SearchEntries.java │ │ ├── UpdateAspectType.java │ │ ├── UpdateEntry.java │ │ ├── UpdateEntryGroup.java │ │ └── UpdateEntryType.java │ └── test │ └── java │ └── dataplex │ ├── AspectTypeIT.java │ ├── EntryGroupIT.java │ ├── EntryIT.java │ ├── EntryTypeIT.java │ └── SearchEntriesIT.java ├── dataproc ├── pom.xml └── src │ ├── main │ └── java │ │ ├── CreateCluster.java │ │ ├── CreateClusterWithAutoscaling.java │ │ ├── InstantiateInlineWorkflowTemplate.java │ │ ├── Quickstart.java │ │ ├── SubmitHadoopFsJob.java │ │ └── SubmitJob.java │ └── test │ └── java │ ├── CreateClusterTest.java │ ├── CreateClusterWithAutoscalingTest.java │ ├── InstantiateInlineWorkflowTemplateTest.java │ ├── QuickstartTest.java │ ├── SubmitHadoopFsJobTest.java │ └── SubmitJobTest.java ├── dialogflow-cx ├── pom.xml ├── resources │ └── book_a_room.wav └── src │ ├── main │ └── java │ │ └── dialogflow │ │ └── cx │ │ ├── ConfigureWebhookToSetFormParametersAsOptionalOrRequired.java │ │ ├── CreateAgent.java │ │ ├── CreateFlow.java │ │ ├── CreateIntent.java │ │ ├── CreatePage.java │ │ ├── CreateSimplePage.java │ │ ├── DeletePage.java │ │ ├── DetectIntent.java │ │ ├── DetectIntentAudioInput.java │ │ ├── DetectIntentDisableWebhook.java │ │ ├── DetectIntentEventInput.java │ │ ├── DetectIntentIntentInput.java │ │ ├── DetectIntentSentimentAnalysis.java │ │ ├── DetectIntentStream.java │ │ ├── DetectIntentStreamingPartialResponse.java │ │ ├── DetectIntentSynthesizeTextToSpeechOutput.java │ │ ├── ExportAgent.java │ │ ├── ListPages.java │ │ ├── ListTestCaseResults.java │ │ ├── UpdateIntent.java │ │ ├── WebhookConfigureSessionParameters.java │ │ └── WebhookValidateFormParameter.java │ └── test │ └── java │ └── dialogflow │ └── cx │ ├── ConfigureWebhookToSetFormParametersAsOptionalOrRequiredIT.java │ ├── CreateAgentIT.java │ ├── CreateFlowIT.java │ ├── CreateIntentIT.java │ ├── CreatePageIT.java │ ├── DetectIntentAudioInputTest.java │ ├── DetectIntentDisableWebhookTest.java │ ├── DetectIntentEventInputTest.java │ ├── DetectIntentIT.java │ ├── DetectIntentIntentInputTest.java │ ├── DetectIntentSentimentAnalysisTest.java │ ├── DetectIntentStreamIT.java │ ├── DetectIntentStreamingPartialResponseTest.java │ ├── DetectIntentSynthesizeTextToSpeechOutputTest.java │ ├── ExportAgentIT.java │ ├── ListTestCaseResultsIT.java │ ├── PageManagementIT.java │ ├── UpdateIntentTest.java │ ├── WebhookConfigureSessionParametersIT.java │ └── WebhookValidateFormParameterIT.java ├── dialogflow ├── basic-webhook │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dialogflow │ │ │ └── cx │ │ │ └── BasicWebhook.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dialogflow │ │ └── cx │ │ └── BasicWebhookIT.java └── snippets │ ├── pom.xml │ ├── resources │ ├── 230pm.wav │ ├── RoomReservation.zip │ ├── book_a_room.wav │ ├── half_an_hour.wav │ ├── mountain_view.wav │ ├── today.wav │ └── two_people.wav │ └── src │ ├── main │ ├── dialogflow │ │ ├── Example.java │ │ └── SetAgent.java │ └── java │ │ └── com │ │ └── example │ │ └── dialogflow │ │ ├── AnswerRecordManagement.java │ │ ├── ConversationManagement.java │ │ ├── ConversationProfileManagement.java │ │ ├── DetectIntentAudio.java │ │ ├── DetectIntentKnowledge.java │ │ ├── DetectIntentStream.java │ │ ├── DetectIntentTexts.java │ │ ├── DetectIntentWithLocation.java │ │ ├── DetectIntentWithSentimentAnalysis.java │ │ ├── DetectIntentWithTextToSpeechResponse.java │ │ ├── DocumentManagement.java │ │ ├── IntentManagement.java │ │ ├── KnowledgeBaseManagement.java │ │ ├── ParticipantManagement.java │ │ └── UpdateIntent.java │ └── test │ ├── dialogflow │ ├── ExampleIT.java │ └── SetAgentIT.java │ └── java │ └── com │ └── example │ └── dialogflow │ ├── CreateConversationProfileTest.java │ ├── CreateConversationTest.java │ ├── CreateDocumentTest.java │ ├── CreateKnowledgeBaseTest.java │ ├── CreateParticipantTest.java │ ├── DetectIntentKnowledgeTest.java │ ├── DetectIntentStreamIT.java │ ├── DetectIntentWithAudioTest.java │ ├── DetectIntentWithSentimentAndTextToSpeechIT.java │ ├── IntentManagementIT.java │ ├── UpdateAnswerRecordTest.java │ └── UpdateIntentIT.java ├── discoveryengine ├── pom.xml └── src │ ├── main │ └── java │ │ └── discoveryengine │ │ └── v1 │ │ └── Search.java │ └── test │ └── java │ └── discoveryengine │ └── v1 │ └── SearchTest.java ├── dlp └── snippets │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── dlp │ │ └── snippets │ │ ├── CreateStoredInfoType.java │ │ ├── DeIdenitfyWithDeterministicEncryption.java │ │ ├── DeIdentifyDataReplaceWithDictionary.java │ │ ├── DeIdentifyTableBucketing.java │ │ ├── DeIdentifyTableConditionInfoTypes.java │ │ ├── DeIdentifyTableConditionMasking.java │ │ ├── DeIdentifyTableInfoTypes.java │ │ ├── DeIdentifyTableRowSuppress.java │ │ ├── DeIdentifyTableWithBucketingConfig.java │ │ ├── DeIdentifyTableWithCryptoHash.java │ │ ├── DeIdentifyTableWithFpe.java │ │ ├── DeIdentifyTableWithMultipleCryptoHash.java │ │ ├── DeIdentifyTextWithFpe.java │ │ ├── DeIdentifyWithDateShift.java │ │ ├── DeIdentifyWithExceptionList.java │ │ ├── DeIdentifyWithFpe.java │ │ ├── DeIdentifyWithInfoType.java │ │ ├── DeIdentifyWithMasking.java │ │ ├── DeIdentifyWithRedaction.java │ │ ├── DeIdentifyWithReplacement.java │ │ ├── DeIdentifyWithSimpleWordList.java │ │ ├── DeIdentifyWithTimeExtraction.java │ │ ├── DeidentifyCloudStorage.java │ │ ├── DeidentifyFreeTextWithFpeUsingSurrogate.java │ │ ├── InfoTypesList.java │ │ ├── InspectBigQuerySendToScc.java │ │ ├── InspectBigQueryTable.java │ │ ├── InspectBigQueryTableWithSampling.java │ │ ├── InspectDataToHybridJobTrigger.java │ │ ├── InspectDatastoreEntity.java │ │ ├── InspectDatastoreSendToScc.java │ │ ├── InspectGcsFile.java │ │ ├── InspectGcsFileSendToScc.java │ │ ├── InspectGcsFileWithSampling.java │ │ ├── InspectImageFile.java │ │ ├── InspectImageFileAllInfoTypes.java │ │ ├── InspectImageFileListedInfoTypes.java │ │ ├── InspectPhoneNumber.java │ │ ├── InspectString.java │ │ ├── InspectStringAugmentInfoType.java │ │ ├── InspectStringCustomExcludingSubstring.java │ │ ├── InspectStringCustomHotword.java │ │ ├── InspectStringCustomOmitOverlap.java │ │ ├── InspectStringMultipleRules.java │ │ ├── InspectStringOmitOverlap.java │ │ ├── InspectStringRep.java │ │ ├── InspectStringWithExclusionDict.java │ │ ├── InspectStringWithExclusionDictSubstring.java │ │ ├── InspectStringWithExclusionRegex.java │ │ ├── InspectStringWithoutOverlap.java │ │ ├── InspectTable.java │ │ ├── InspectTableWithCustomHotword.java │ │ ├── InspectTextFile.java │ │ ├── InspectWithCustomRegex.java │ │ ├── InspectWithHotwordRules.java │ │ ├── InspectWithStoredInfotype.java │ │ ├── JobsCreate.java │ │ ├── JobsDelete.java │ │ ├── JobsGet.java │ │ ├── JobsList.java │ │ ├── ProcessInspectFindingsSavedToGcs.java │ │ ├── QuickStart.java │ │ ├── ReIdentifyTableWithFpe.java │ │ ├── ReIdentifyTextWithFpe.java │ │ ├── ReIdentifyWithFpe.java │ │ ├── RedactImageFile.java │ │ ├── RedactImageFileAllInfoTypes.java │ │ ├── RedactImageFileAllText.java │ │ ├── RedactImageFileColoredInfoTypes.java │ │ ├── RedactImageFileListedInfoTypes.java │ │ ├── ReidentifyFreeTextWithFpeUsingSurrogate.java │ │ ├── ReidentifyWithDeterministicEncryption.java │ │ ├── RiskAnalysisCategoricalStats.java │ │ ├── RiskAnalysisKAnonymity.java │ │ ├── RiskAnalysisKAnonymityWithEntityId.java │ │ ├── RiskAnalysisKMap.java │ │ ├── RiskAnalysisLDiversity.java │ │ ├── RiskAnalysisNumericalStats.java │ │ ├── TemplatesCreate.java │ │ ├── TemplatesDelete.java │ │ ├── TemplatesList.java │ │ ├── TriggersCreate.java │ │ ├── TriggersDelete.java │ │ ├── TriggersList.java │ │ ├── TriggersPatch.java │ │ └── UpdateStoredInfoType.java │ └── test │ ├── java │ └── dlp │ │ └── snippets │ │ ├── DeIdentificationTests.java │ │ ├── InfoTypesTests.java │ │ ├── InspectTests.java │ │ ├── JobsTests.java │ │ ├── QuickstartTests.java │ │ ├── RedactTests.java │ │ ├── RiskAnalysisTests.java │ │ ├── TemplatesTests.java │ │ ├── TestBase.java │ │ └── TriggersTests.java │ └── resources │ ├── dates.csv │ ├── results.correct.csv │ ├── save_to_gcs_findings.txt │ ├── sensitive-data-image.jpg │ ├── test.png │ └── test.txt ├── document-ai ├── pom.xml ├── resources │ ├── document_quality_poor.pdf │ ├── handwritten_form.pdf │ ├── invoice.pdf │ ├── multi_document.pdf │ └── us_driver_license.pdf └── src │ ├── main │ └── java │ │ └── documentai │ │ ├── v1 │ │ ├── BatchProcessDocument.java │ │ ├── ProcessDocument.java │ │ └── QuickStart.java │ │ └── v1beta3 │ │ ├── ProcessFormDocument.java │ │ ├── ProcessOcrDocument.java │ │ ├── ProcessSpecializedDocument.java │ │ └── ProcessSplitterDocument.java │ └── test │ └── java │ └── documentai │ ├── v1 │ ├── BatchProcessDocumentTest.java │ ├── ProcessDocumentTest.java │ └── QuickStartTest.java │ └── v1beta3 │ ├── ProcessFormDocumentTest.java │ ├── ProcessOcrDocumentTest.java │ ├── ProcessSpecializedDocumentTest.java │ └── ProcessSplitterDocumentTest.java ├── endpoints ├── bookstore-grpc │ ├── Dockerfile │ ├── README.md │ ├── api │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── proto │ │ │ └── bookstore.proto │ ├── build.gradle │ ├── client │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── endpoints │ │ │ └── examples │ │ │ └── bookstore │ │ │ └── BookstoreClient.java │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── server │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── endpoints │ │ │ └── examples │ │ │ └── bookstore │ │ │ ├── BookstoreData.java │ │ │ ├── BookstoreServer.java │ │ │ ├── BookstoreService.java │ │ │ └── ShelfEntity.java │ └── settings.gradle ├── getting-started-grpc │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── api │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── proto │ │ │ └── helloworld.proto │ ├── api_config.yaml │ ├── build.gradle │ ├── client │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── endpoints │ │ │ └── examples │ │ │ └── hello │ │ │ └── HelloWorldClient.java │ ├── deployment.yaml │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── server │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── endpoints │ │ │ └── examples │ │ │ └── hello │ │ │ └── HelloWorldServer.java │ └── settings.gradle ├── getting-started │ ├── README.md │ ├── clients │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── app │ │ │ └── GoogleJwtClient.java │ ├── deployment.yaml │ ├── k8s │ │ └── esp_echo_http.yaml │ ├── openapi-appengine.yaml │ ├── openapi.yaml │ ├── pom.xml │ └── src │ │ └── main │ │ ├── appengine │ │ └── app.yaml │ │ ├── docker │ │ └── Dockerfile │ │ └── java │ │ └── com │ │ └── example │ │ └── endpoints │ │ ├── AuthInfoServlet.java │ │ └── EchoServlet.java └── multiple-versions │ ├── README.md │ ├── container-engine.yaml │ ├── openapi-v1.yaml │ ├── openapi-v2.yaml │ ├── pom.xml │ └── src │ └── main │ ├── appengine │ └── app.yaml │ ├── docker │ └── Dockerfile │ └── java │ └── com │ └── example │ └── endpoints │ ├── AuthInfoServlet.java │ ├── Echo.java │ ├── EchoV1Servlet.java │ ├── EchoV2Servlet.java │ └── message │ ├── Message.java │ ├── MessageTranslator.java │ ├── MessageV1Translator.java │ └── MessageV2Translator.java ├── errorreporting ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── errorreporting │ │ └── QuickStart.java │ └── test │ └── java │ └── com │ └── example │ └── errorreporting │ └── QuickStartIT.java ├── eventarc ├── README.md ├── audit-storage │ ├── Dockerfile │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── cloudrun │ │ │ │ ├── Application.java │ │ │ │ └── EventController.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── cloudrun │ │ └── EventControllerTests.java ├── generic │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── cloudrun │ │ │ │ ├── Application.java │ │ │ │ └── EventController.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── cloudrun │ │ └── EventControllerTests.java ├── pubsub │ ├── Dockerfile │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── cloudrun │ │ │ │ ├── Application.java │ │ │ │ ├── EventController.java │ │ │ │ └── eventpojos │ │ │ │ └── PubSubBody.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── cloudrun │ │ └── EventControllerTests.java └── storage-handler │ ├── README.md │ ├── pom.xml │ ├── project.toml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── cloudrun │ │ │ ├── Application.java │ │ │ └── CloudEventController.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── example │ └── cloudrun │ └── ApplicationTests.java ├── flexible ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README.mdpp ├── java-11 │ ├── analytics │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── appengine │ │ │ │ └── app.yaml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── analytics │ │ │ │ ├── AnalyticsServlet.java │ │ │ │ └── Main.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── analytics │ │ │ └── AnalyticsTest.java │ ├── cloudstorage │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── appengine │ │ │ │ └── app.yaml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── cloudstorage │ │ │ │ │ ├── Main.java │ │ │ │ │ └── UploadServlet.java │ │ │ └── webapp │ │ │ │ └── index.html │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── cloudstorage │ │ │ └── UploadServletTest.java │ ├── datastore │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── appengine │ │ │ │ └── app.yaml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── datastore │ │ │ │ ├── DatastoreServlet.java │ │ │ │ └── Main.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── datastore │ │ │ └── DatastoreServletTest.java │ ├── helloworld-war │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── appengine │ │ │ │ └── app.yaml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flexible │ │ │ │ └── helloworld │ │ │ │ └── HelloServlet.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── flexible │ │ │ └── helloworld │ │ │ └── HelloServletTest.java │ ├── pubsub │ │ ├── README.md │ │ ├── pom.xml │ │ ├── sample_message.json │ │ └── src │ │ │ ├── main │ │ │ ├── appengine │ │ │ │ └── app.yaml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── flexible │ │ │ │ │ └── pubsub │ │ │ │ │ ├── Main.java │ │ │ │ │ ├── Message.java │ │ │ │ │ ├── MessageRepository.java │ │ │ │ │ ├── MessageRepositoryImpl.java │ │ │ │ │ ├── PubSubHome.java │ │ │ │ │ ├── PubSubPublish.java │ │ │ │ │ └── PubSubPush.java │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── index.jsp │ │ │ │ └── jetty-web.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── flexible │ │ │ └── pubsub │ │ │ ├── PubSubPublishTest.java │ │ │ └── PubSubPushTest.java │ ├── springboot-helloworld │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── appengine │ │ │ │ └── app.yaml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── appengine │ │ │ │ │ └── springboot │ │ │ │ │ └── SpringbootApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── springboot │ │ │ └── SpringbootApplicationTest.java │ ├── static-files │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── appengine │ │ │ │ └── app.yaml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── staticfiles │ │ │ │ │ └── Main.java │ │ │ └── webapp │ │ │ │ ├── index.html │ │ │ │ └── stylesheets │ │ │ │ └── styles.css │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── staticfiles │ │ │ └── StaticFileTest.java │ └── websocket-jetty │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── appengine │ │ │ └── app.yaml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flexible │ │ │ │ └── websocket │ │ │ │ └── jettynative │ │ │ │ ├── ClientSocket.java │ │ │ │ ├── EchoServlet.java │ │ │ │ ├── Main.java │ │ │ │ ├── SendServlet.java │ │ │ │ └── ServerSocket.java │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── index.jsp │ │ │ ├── jetty-web.xml │ │ │ └── js_client.jsp │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── flexible │ │ └── websocket │ │ └── jettynative │ │ ├── ClientSocketTest.java │ │ └── SendServletTest.java ├── java-17 │ ├── cloudstorage │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── appengine │ │ │ │ └── app.yaml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── cloudstorage │ │ │ │ │ ├── Main.java │ │ │ │ │ └── UploadServlet.java │ │ │ └── webapp │ │ │ │ └── index.html │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── cloudstorage │ │ │ └── UploadServletTest.java │ ├── datastore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── appengine │ │ │ │ └── app.yaml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── datastore │ │ │ │ ├── DatastoreServlet.java │ │ │ │ └── Main.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── datastore │ │ │ └── DatastoreServletTest.java │ ├── micronaut-helloworld │ │ ├── README.md │ │ ├── micronaut-cli.yml │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── appengine │ │ │ │ └── app.yaml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── appengine │ │ │ │ │ ├── Application.java │ │ │ │ │ └── HelloController.java │ │ │ └── resources │ │ │ │ ├── application.yml │ │ │ │ └── logback.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── HelloControllerTest.java │ └── websocket-jetty │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── appengine │ │ │ └── app.yaml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flexible │ │ │ │ └── websocket │ │ │ │ └── jettynative │ │ │ │ ├── ClientSocket.java │ │ │ │ ├── EchoServlet.java │ │ │ │ ├── Main.java │ │ │ │ ├── SendServlet.java │ │ │ │ └── ServerSocket.java │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── index.jsp │ │ │ ├── jetty-web.xml │ │ │ └── js_client.jsp │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── flexible │ │ └── websocket │ │ └── jettynative │ │ ├── ClientSocketTest.java │ │ └── SendServletTest.java ├── java-25 │ ├── micronaut-helloworld │ │ ├── README.md │ │ ├── micronaut-cli.yml │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── appengine │ │ │ │ └── app.yaml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── appengine │ │ │ │ │ ├── Application.java │ │ │ │ │ └── HelloController.java │ │ │ └── resources │ │ │ │ ├── application.yml │ │ │ │ └── logback.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── appengine │ │ │ └── HelloControllerTest.java │ └── websocket-jetty │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── appengine │ │ │ └── app.yaml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flexible │ │ │ │ └── websocket │ │ │ │ └── jettynative │ │ │ │ ├── ClientSocket.java │ │ │ │ ├── EchoServlet.java │ │ │ │ ├── Main.java │ │ │ │ ├── SendServlet.java │ │ │ │ └── ServerSocket.java │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── index.jsp │ │ │ ├── jetty-web.xml │ │ │ └── js_client.jsp │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── flexible │ │ └── websocket │ │ └── jettynative │ │ ├── ClientSocketTest.java │ │ └── SendServletTest.java ├── java-8 │ ├── analytics │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── appengine │ │ │ └── app.yaml │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── analytics │ │ │ └── AnalyticsServlet.java │ ├── async-rest │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── appengine │ │ │ └── app.yaml │ │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ └── jetty-logging.properties │ │ │ ├── java │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── appengine │ │ │ │ └── demos │ │ │ │ ├── DumpServlet.java │ │ │ │ └── asyncrest │ │ │ │ ├── AbstractRestServlet.java │ │ │ │ ├── AsyncRestServlet.java │ │ │ │ └── SerialRestServlet.java │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── jetty-web.xml │ │ │ └── web.xml │ │ │ ├── asyncrest │ │ │ ├── green.png │ │ │ └── red.png │ │ │ └── index.html │ ├── cloudsql │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── appengine │ │ │ └── app.yaml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── cloudsql │ │ │ │ └── CloudSqlServlet.java │ │ │ └── resources │ │ │ └── config.properties │ ├── cloudstorage │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── appengine │ │ │ └── app.yaml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── cloudstorage │ │ │ │ └── UploadServlet.java │ │ │ └── webapp │ │ │ └── index.html │ ├── cron │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── appengine │ │ │ ├── app.yaml │ │ │ └── cron.yaml │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── cron │ │ │ └── CronServlet.java │ ├── datastore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── appengine │ │ │ └── app.yaml │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── datastore │ │ │ └── DatastoreServlet.java │ ├── disk │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── appengine │ │ │ └── app.yaml │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── disk │ │ │ └── DiskServlet.java │ ├── errorreporting │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── appengine │ │ │ └── app.yaml │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── flexible │ │ │ └── errorreporting │ │ │ └── ErrorReportingExample.java │ ├── extending-runtime │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── appengine │ │ │ ├── Dockerfile │ │ │ └── app.yaml │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── extendingruntime │ │ │ └── FortuneServlet.java │ ├── helloworld-springboot │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── appengine │ │ │ │ └── app.yaml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── java │ │ │ │ │ ├── HelloController.java │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── java │ │ │ └── HelloControllerTest.java │ ├── helloworld │ │ ├── README.md │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── appengine │ │ │ └── app.yaml │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── flexible │ │ │ └── helloworld │ │ │ └── HelloServlet.java │ ├── memcache │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── appengine │ │ │ └── app.yaml │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── memcache │ │ │ └── MemcacheServlet.java │ ├── postgres │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── appengine │ │ │ └── app.yaml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── postgres │ │ │ │ └── PostgresSqlServlet.java │ │ │ └── resources │ │ │ └── config.properties │ ├── pubsub │ │ ├── README.md │ │ ├── pom.xml │ │ ├── sample_message.json │ │ └── src │ │ │ └── main │ │ │ ├── appengine │ │ │ └── app.yaml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flexible │ │ │ │ └── pubsub │ │ │ │ ├── Message.java │ │ │ │ ├── MessageRepository.java │ │ │ │ ├── MessageRepositoryImpl.java │ │ │ │ ├── PubSubHome.java │ │ │ │ ├── PubSubPublish.java │ │ │ │ └── PubSubPush.java │ │ │ ├── test │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flexible │ │ │ │ └── pubsub │ │ │ │ ├── PubSubPublishTest.java │ │ │ │ └── PubSubPushTest.java │ │ │ └── webapp │ │ │ └── index.jsp │ ├── sparkjava │ │ ├── README.md │ │ ├── jenkins.sh │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── appengine │ │ │ │ └── app.yaml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── google │ │ │ │ │ └── appengine │ │ │ │ │ └── sparkdemo │ │ │ │ │ ├── Main.java │ │ │ │ │ ├── ResponseError.java │ │ │ │ │ ├── User.java │ │ │ │ │ ├── UserController.java │ │ │ │ │ └── UserService.java │ │ │ └── resources │ │ │ │ └── public │ │ │ │ └── index.html │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── appengine │ │ │ └── sparkdemo │ │ │ ├── UserControllerTest.java │ │ │ └── UserServiceTest.java │ ├── static-files │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── appengine │ │ │ └── app.yaml │ │ │ └── webapp │ │ │ ├── index.html │ │ │ └── stylesheets │ │ │ └── styles.css │ ├── twilio │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── appengine │ │ │ └── app.yaml │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── twilio │ │ │ ├── ReceiveCallServlet.java │ │ │ ├── ReceiveSmsServlet.java │ │ │ └── SendSmsServlet.java │ ├── websocket-jetty │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── appengine │ │ │ └── app.yaml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flexible │ │ │ │ └── websocket │ │ │ │ └── jettynative │ │ │ │ ├── ClientSocket.java │ │ │ │ ├── EchoServlet.java │ │ │ │ ├── SendServlet.java │ │ │ │ └── ServerSocket.java │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ └── jetty-web.xml │ │ │ ├── index.jsp │ │ │ └── js_client.jsp │ └── websocket-jsr356 │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── appengine │ │ └── app.yaml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── flexible │ │ │ └── websocket │ │ │ └── jsr356 │ │ │ ├── ClientSocket.java │ │ │ ├── SendServlet.java │ │ │ └── ServerSocket.java │ │ └── webapp │ │ ├── index.jsp │ │ └── js_client.jsp └── repacking-legacy-applications │ ├── appengine-simple-jetty-main │ ├── app.yaml │ ├── appengine │ │ ├── .gcloudignore │ │ └── app.yaml │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── example │ │ └── appengine │ │ └── jetty │ │ └── Main.java │ └── custom-runtime │ ├── Dockerfile │ ├── app.yaml │ ├── cloudbuild.yaml │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── example │ │ ├── HelloServlet.java │ │ └── package-info.java │ └── webapp │ ├── WEB-INF │ └── web.xml │ └── index.jsp ├── functions ├── README.md ├── concepts │ ├── after-timeout │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── functions │ │ │ └── AfterTimeout.java │ ├── env-vars │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── EnvVars.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── EnvVarsTest.java │ ├── execution-count │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── ExecutionCount.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── ExecutionCountTest.java │ ├── file-system │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── FileSystem.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── FileSystemTest.java │ ├── lazy-fields │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── LazyFields.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── LazyFieldsTest.java │ ├── retry-pubsub │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ ├── RetryPubSub.java │ │ │ │ └── eventpojos │ │ │ │ └── PubsubMessage.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── RetryPubSubTest.java │ ├── retry-timeout │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ ├── RetryTimeout.java │ │ │ │ └── eventpojos │ │ │ │ └── PubsubMessage.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── RetryTimeoutTest.java │ └── scopes │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ └── Scopes.java │ │ └── test │ │ └── java │ │ └── functions │ │ └── ScopesTest.java ├── firebase │ ├── auth │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── FirebaseAuth.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── FirebaseAuthTest.java │ ├── firestore-reactive │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── FirebaseFirestoreReactive.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ ├── FirebaseFirestoreReactiveTest.java │ │ │ └── eventpojos │ │ │ └── MockContext.java │ ├── firestore │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── FirebaseFirestore.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ ├── FirebaseFirestoreTest.java │ │ │ └── eventpojos │ │ │ └── MockContext.java │ ├── remote-config │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── FirebaseRemoteConfig.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ ├── FirebaseRemoteConfigTest.java │ │ │ └── eventpojos │ │ │ └── MockContext.java │ └── rtdb │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ └── FirebaseRtdb.java │ │ └── test │ │ └── java │ │ └── functions │ │ ├── FirebaseRtdbTest.java │ │ └── eventpojos │ │ └── MockContext.java ├── helloworld │ ├── groovy-hello-pubsub │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── groovy │ │ │ │ └── functions │ │ │ │ ├── GroovyHelloPubSub.groovy │ │ │ │ └── eventpojos │ │ │ │ └── PubsubMessage.groovy │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ ├── GroovyHelloPubSubTest.java │ │ │ └── eventpojos │ │ │ └── MockContext.java │ ├── groovy-helloworld │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── groovy │ │ │ │ └── functions │ │ │ │ └── GroovyHelloWorld.groovy │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── GroovyHelloWorldTest.java │ ├── hello-error │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── functions │ │ │ └── HelloError.java │ ├── hello-gcs │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ ├── HelloGcs.java │ │ │ │ └── eventpojos │ │ │ │ └── GcsEvent.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ ├── ExampleIT.java │ │ │ ├── ExampleSystemIT.java │ │ │ ├── HelloGcsTest.java │ │ │ └── eventpojos │ │ │ └── MockContext.java │ ├── hello-http-gradle │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── HelloHttp.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── HelloHttpTest.java │ ├── hello-http │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── HelloHttp.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ ├── ExampleIT.java │ │ │ ├── ExampleSystemIT.java │ │ │ └── HelloHttpTest.java │ ├── hello-pubsub │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ ├── HelloPubSub.java │ │ │ │ └── eventpojos │ │ │ │ └── PubsubMessage.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ ├── ExampleIT.java │ │ │ ├── ExampleSystemIT.java │ │ │ └── HelloPubSubTest.java │ ├── helloworld-gradle │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── HelloWorld.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── HelloWorldTest.java │ ├── helloworld │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── HelloWorld.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── HelloWorldTest.java │ ├── kotlin-hello-pubsub │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── kotlin │ │ │ │ └── functions │ │ │ │ ├── KotlinHelloBackground.kt │ │ │ │ └── eventpojos │ │ │ │ └── PubsubMessage.kt │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ ├── KotlinHelloPubSubTest.java │ │ │ └── eventpojos │ │ │ └── MockContext.java │ ├── kotlin-helloworld │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── kotlin │ │ │ │ └── functions │ │ │ │ └── KotlinHelloWorld.kt │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── KotlinHelloWorldTest.java │ ├── scala-hello-pubsub │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── scala │ │ │ │ └── functions │ │ │ │ ├── ScalaHelloPubSub.scala │ │ │ │ └── eventpojos │ │ │ │ └── PubSubMessage.scala │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ ├── ScalaHelloPubSubTest.java │ │ │ └── eventpojos │ │ │ └── MockContext.java │ └── scala-helloworld │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── scala │ │ │ └── functions │ │ │ └── ScalaHelloWorld.scala │ │ └── test │ │ └── java │ │ └── functions │ │ └── ScalaHelloWorldTest.java ├── http │ ├── bearer-token-http │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── functions │ │ │ └── BearerTokenHttp.java │ ├── cors-enabled-auth │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── CorsEnabledAuth.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── CorsEnabledAuthTest.java │ ├── cors-enabled │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── CorsEnabled.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── CorsEnabledTest.java │ ├── http-form-data │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── HttpFormData.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ ├── HttpFormDataTest.java │ │ │ └── MockHttpPart.java │ ├── http-method │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── HttpMethod.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── HttpMethodTest.java │ ├── parse-content-type │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── ParseContentType.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── ParseContentTypeTest.java │ ├── parse-xml │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── ParseXml.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── ParseXmlTest.java │ └── send-http-request │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ └── SendHttpRequest.java │ │ └── test │ │ └── java │ │ └── functions │ │ └── SendHttpRequestTest.java ├── imagemagick │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ ├── ImageMagick.java │ │ │ └── eventpojos │ │ │ └── GcsEvent.java │ │ └── test │ │ └── java │ │ └── functions │ │ ├── ImageMagickTest.java │ │ └── eventpojos │ │ └── MockContext.java ├── logging │ ├── log-helloworld │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── functions │ │ │ └── LogHelloWorld.java │ └── stackdriver-logging │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ ├── StackdriverLogging.java │ │ │ └── eventpojos │ │ │ └── PubsubMessage.java │ │ └── test │ │ └── java │ │ └── functions │ │ └── StackdriverLoggingTest.java ├── ocr │ ├── ocr-process-image │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ ├── OcrProcessImage.java │ │ │ │ ├── OcrTranslateApiMessage.java │ │ │ │ └── eventpojos │ │ │ │ ├── GcsEvent.java │ │ │ │ └── PubsubMessage.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── OcrProcessImageTest.java │ ├── ocr-save-result │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ ├── OcrSaveResult.java │ │ │ │ ├── OcrTranslateApiMessage.java │ │ │ │ └── eventpojos │ │ │ │ └── PubsubMessage.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── OcrSaveResultTest.java │ └── ocr-translate-text │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ ├── OcrTranslateApiMessage.java │ │ │ ├── OcrTranslateText.java │ │ │ └── eventpojos │ │ │ └── Message.java │ │ └── test │ │ └── java │ │ └── functions │ │ └── OcrTranslateTextTest.java ├── pubsub │ ├── publish-message │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ ├── PublishMessage.java │ │ │ │ └── eventpojos │ │ │ │ └── PubsubMessage.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── PublishMessageTest.java │ └── subscribe-to-topic │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ ├── SubscribeToTopic.java │ │ │ └── eventpojos │ │ │ └── PubsubMessage.java │ │ └── test │ │ └── java │ │ └── functions │ │ └── SubscribeToTopicTest.java ├── slack │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ └── SlackSlashCommand.java │ │ └── test │ │ └── java │ │ └── functions │ │ └── SlackSlashCommandTest.java ├── spanner │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ └── HelloSpanner.java │ │ └── test │ │ └── java │ │ └── functions │ │ └── HelloSpannerTest.java └── v2 │ ├── concepts │ ├── retry-pubsub │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ ├── RetryPubSub.java │ │ │ │ └── eventpojos │ │ │ │ ├── PubSubBody.java │ │ │ │ └── PubsubMessage.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── RetryPubSubTest.java │ └── retry-timeout │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ └── RetryTimeout.java │ │ └── test │ │ └── java │ │ └── functions │ │ └── RetryTimeoutTest.java │ ├── datastore │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ └── Datastore.java │ │ └── test │ │ └── java │ │ └── functions │ │ └── DatastoreTest.java │ ├── firebase │ ├── firestore-reactive │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── FirebaseFirestoreReactive.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── FirebaseFirestoreReactiveTest.java │ ├── firestore │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── FirebaseFirestore.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── FirebaseFirestoreTest.java │ ├── remote-config │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── FirebaseRemoteConfig.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── FirebaseRemoteConfigTest.java │ └── rtdb │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ └── FirebaseRtdb.java │ │ └── test │ │ └── java │ │ └── functions │ │ └── FirebaseRtdbTest.java │ ├── hello-gcs │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ └── HelloGcs.java │ │ └── test │ │ └── java │ │ └── functions │ │ └── HelloGcsTest.java │ ├── imagemagick │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ └── ImageMagick.java │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── ImageMagickTest.java │ └── zombie.jpg │ ├── label-compute-instance │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ └── AutoLabelInstance.java │ │ └── test │ │ └── java │ │ └── functions │ │ └── AutoLabelInstanceTest.java │ ├── log-cloudevent │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ └── LogCloudEvent.java │ │ └── test │ │ └── java │ │ └── functions │ │ └── LogCloudEventTest.java │ ├── logging │ └── stackdriver-logging │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ ├── StackdriverLogging.java │ │ │ └── eventpojos │ │ │ ├── PubSubBody.java │ │ │ └── PubsubMessage.java │ │ └── test │ │ └── java │ │ └── functions │ │ └── StackdriverLoggingTest.java │ ├── ocr │ ├── ocr-process-image │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ ├── OcrProcessImage.java │ │ │ │ ├── OcrTranslateApiMessage.java │ │ │ │ └── eventpojos │ │ │ │ └── CustomerEncryption.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── OcrProcessImageTest.java │ ├── ocr-save-result │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── functions │ │ │ │ ├── OcrSaveResult.java │ │ │ │ ├── OcrTranslateApiMessage.java │ │ │ │ └── eventpojos │ │ │ │ ├── Message.java │ │ │ │ └── MessagePublishedData.java │ │ │ └── test │ │ │ └── java │ │ │ └── functions │ │ │ └── OcrSaveResultTest.java │ └── ocr-translate-text │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ ├── OcrTranslateApiMessage.java │ │ │ ├── OcrTranslateText.java │ │ │ └── eventpojos │ │ │ ├── Message.java │ │ │ └── MessagePublishedData.java │ │ └── test │ │ └── java │ │ └── functions │ │ └── OcrTranslateTextTest.java │ ├── pubsub │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── functions │ │ │ ├── SubscribeToTopic.java │ │ │ └── eventpojos │ │ │ └── PubSubBody.java │ │ └── test │ │ └── java │ │ └── functions │ │ └── SubscribeToTopicTest.java │ ├── response-streaming │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── StreamBigQuery.java │ │ └── test │ │ └── java │ │ └── com │ │ └── google │ │ └── StreamBigQueryTest.java │ └── typed │ └── greeting │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── functions │ │ ├── Greeting.java │ │ ├── GreetingRequest.java │ │ └── GreetingResponse.java │ └── test │ └── java │ └── functions │ └── GreetingTest.java ├── genai └── snippets │ ├── pom.xml │ ├── resources │ ├── 640px-Monty_open_door.svg.png │ ├── describe_video_content.mp4 │ ├── example-image-eiffel-tower.png │ ├── latte.jpg │ ├── man.png │ ├── output │ │ ├── bw-example-image.png │ │ ├── dog_newspaper.png │ │ ├── example-breakfast-meal.png │ │ ├── example-cats-01.png │ │ ├── example-cats-02.png │ │ ├── example-cats-03.png │ │ ├── example-image-2.png │ │ ├── example-image-4.png │ │ ├── example-image-6.png │ │ ├── example-image-8.png │ │ ├── example-image-eiffel-tower.png │ │ ├── man_in_sweater.png │ │ └── paella-recipe.md │ ├── scones.jpg │ └── sweater.jpg │ └── src │ ├── main │ └── java │ │ └── genai │ │ ├── batchprediction │ │ ├── BatchPredictionEmbeddingsWithGcs.java │ │ ├── BatchPredictionWithBq.java │ │ └── BatchPredictionWithGcs.java │ │ ├── contentcache │ │ ├── ContentCacheCreateWithTextGcsPdf.java │ │ ├── ContentCacheDelete.java │ │ ├── ContentCacheList.java │ │ ├── ContentCacheUpdate.java │ │ └── ContentCacheUseWithText.java │ │ ├── controlledgeneration │ │ ├── ControlledGenerationWithClassSchema.java │ │ ├── ControlledGenerationWithEnumClassSchema.java │ │ ├── ControlledGenerationWithEnumSchema.java │ │ ├── ControlledGenerationWithNestedSchema.java │ │ ├── ControlledGenerationWithNullableSchema.java │ │ └── ControlledGenerationWithResponseSchema.java │ │ ├── counttokens │ │ ├── CountTokensComputeWithText.java │ │ ├── CountTokensLocalTokenizerComputeWithTxt.java │ │ ├── CountTokensLocalTokenizerWithTxt.java │ │ ├── CountTokensResponseWithText.java │ │ ├── CountTokensWithText.java │ │ └── CountTokensWithTextAndVideo.java │ │ ├── embeddings │ │ └── EmbeddingsDocRetrievalWithTxt.java │ │ ├── imagegeneration │ │ ├── ImageGenCannyCtrlTypeWithTextAndImage.java │ │ ├── ImageGenMmFlashEditImageWithTextAndImage.java │ │ ├── ImageGenMmFlashLocaleAwareWithText.java │ │ ├── ImageGenMmFlashMultipleImagesWithText.java │ │ ├── ImageGenMmFlashTextAndImageWithText.java │ │ ├── ImageGenMmFlashWithText.java │ │ ├── ImageGenRawReferenceWithTextAndImage.java │ │ ├── ImageGenScribbleCtrlTypeWithTextAndImage.java │ │ ├── ImageGenStyleReferenceWithTextAndImage.java │ │ ├── ImageGenSubjectReferenceWithTextAndImage.java │ │ ├── ImageGenVirtualTryOnWithTextAndImage.java │ │ └── ImageGenWithText.java │ │ ├── live │ │ ├── LiveCodeExecWithTxt.java │ │ ├── LiveGroundGoogSearchWithTxt.java │ │ ├── LiveTranscribeWithAudio.java │ │ └── LiveWithTxt.java │ │ ├── provisionedthroughput │ │ └── ProvisionedThroughputWithTxt.java │ │ ├── safety │ │ └── SafetyWithTxt.java │ │ ├── textgeneration │ │ ├── TextGenerationAsyncWithText.java │ │ ├── TextGenerationChatStreamWithText.java │ │ ├── TextGenerationChatWithText.java │ │ ├── TextGenerationCodeWithPdf.java │ │ ├── TextGenerationConfigWithText.java │ │ ├── TextGenerationTranscriptWithGcsAudio.java │ │ ├── TextGenerationWithGcsAudio.java │ │ ├── TextGenerationWithLocalVideo.java │ │ ├── TextGenerationWithMultiImage.java │ │ ├── TextGenerationWithMultiLocalImage.java │ │ ├── TextGenerationWithMuteVideo.java │ │ ├── TextGenerationWithPdf.java │ │ ├── TextGenerationWithSystemInstruction.java │ │ ├── TextGenerationWithText.java │ │ ├── TextGenerationWithTextAndImage.java │ │ ├── TextGenerationWithTextStream.java │ │ ├── TextGenerationWithVideo.java │ │ └── TextGenerationWithYoutubeVideo.java │ │ ├── thinking │ │ ├── ThinkingBudgetWithTxt.java │ │ ├── ThinkingIncludeThoughtsWithTxt.java │ │ └── ThinkingWithTxt.java │ │ ├── tools │ │ ├── ToolFunctionDescriptionWithText.java │ │ ├── ToolsCodeExecWithText.java │ │ ├── ToolsCodeExecWithTextLocalImage.java │ │ ├── ToolsGoogleMapsCoordinatesWithTxt.java │ │ ├── ToolsGoogleSearchAndUrlContextWithTxt.java │ │ ├── ToolsGoogleSearchWithText.java │ │ ├── ToolsUrlContextWithTxt.java │ │ └── ToolsVaisWithText.java │ │ ├── tuning │ │ ├── TuningJobCreate.java │ │ ├── TuningJobGet.java │ │ ├── TuningJobList.java │ │ └── TuningTextGenWithTxt.java │ │ └── videogeneration │ │ ├── VideoGenWithImg.java │ │ └── VideoGenWithTxt.java │ └── test │ └── java │ └── genai │ ├── batchprediction │ └── BatchPredictionIT.java │ ├── contentcache │ └── ContentCacheIT.java │ ├── controlledgeneration │ └── ControlledGenerationIT.java │ ├── counttokens │ └── CountTokensIT.java │ ├── embeddings │ └── EmbeddingsIT.java │ ├── imagegeneration │ ├── ImageGenerationIT.java │ └── ImageGenerationMmFlashIT.java │ ├── live │ └── LiveIT.java │ ├── provisionedthroughput │ └── ProvisionedThroughputIT.java │ ├── safety │ └── SafetyIT.java │ ├── textgeneration │ └── TextGenerationIT.java │ ├── thinking │ └── ThinkingIT.java │ ├── tools │ └── ToolsIT.java │ ├── tuning │ └── TuningIT.java │ └── videogeneration │ └── VideoGenerationIT.java ├── healthcare └── v1 │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── snippets │ │ └── healthcare │ │ ├── datasets │ │ ├── DatasetCreate.java │ │ ├── DatasetDeIdentify.java │ │ ├── DatasetDelete.java │ │ ├── DatasetGet.java │ │ ├── DatasetGetIamPolicy.java │ │ ├── DatasetList.java │ │ ├── DatasetPatch.java │ │ └── DatasetSetIamPolicy.java │ │ ├── dicom │ │ ├── DicomStoreCreate.java │ │ ├── DicomStoreDelete.java │ │ ├── DicomStoreExport.java │ │ ├── DicomStoreGet.java │ │ ├── DicomStoreGetIamPolicy.java │ │ ├── DicomStoreImport.java │ │ ├── DicomStoreList.java │ │ ├── DicomStorePatch.java │ │ ├── DicomStoreSetIamPolicy.java │ │ ├── DicomWebDeleteStudy.java │ │ ├── DicomWebRetrieveInstance.java │ │ ├── DicomWebRetrieveRendered.java │ │ ├── DicomWebRetrieveStudy.java │ │ ├── DicomWebSearchForInstances.java │ │ ├── DicomWebSearchStudies.java │ │ └── DicomWebStoreInstance.java │ │ ├── fhir │ │ ├── FhirStoreCreate.java │ │ ├── FhirStoreDelete.java │ │ ├── FhirStoreExecuteBundle.java │ │ ├── FhirStoreExport.java │ │ ├── FhirStoreGet.java │ │ ├── FhirStoreGetIamPolicy.java │ │ ├── FhirStoreGetMetadata.java │ │ ├── FhirStoreImport.java │ │ ├── FhirStoreList.java │ │ ├── FhirStorePatch.java │ │ ├── FhirStoreSetIamPolicy.java │ │ └── resources │ │ │ ├── FhirResourceCreate.java │ │ │ ├── FhirResourceDelete.java │ │ │ ├── FhirResourceDeletePurge.java │ │ │ ├── FhirResourceGet.java │ │ │ ├── FhirResourceGetHistory.java │ │ │ ├── FhirResourceGetPatientEverything.java │ │ │ ├── FhirResourceListHistory.java │ │ │ ├── FhirResourcePatch.java │ │ │ ├── FhirResourceSearchGet.java │ │ │ ├── FhirResourceSearchPost.java │ │ │ └── FhirResourceUpdate.java │ │ └── hl7v2 │ │ ├── Hl7v2StoreCreate.java │ │ ├── Hl7v2StoreDelete.java │ │ ├── Hl7v2StoreGet.java │ │ ├── Hl7v2StoreGetIamPolicy.java │ │ ├── Hl7v2StoreList.java │ │ ├── Hl7v2StorePatch.java │ │ ├── Hl7v2StoreSetIamPolicy.java │ │ └── messages │ │ ├── HL7v2MessageCreate.java │ │ ├── HL7v2MessageDelete.java │ │ ├── HL7v2MessageGet.java │ │ ├── HL7v2MessageIngest.java │ │ ├── HL7v2MessageList.java │ │ └── HL7v2MessagePatch.java │ └── test │ ├── java │ └── snippets │ │ └── healthcare │ │ ├── DatasetTests.java │ │ ├── DicomStoreTests.java │ │ ├── DicomWebTests.java │ │ ├── FhirResourceTests.java │ │ ├── FhirStoreTests.java │ │ ├── Hl7v2MessageTests.java │ │ └── Hl7v2StoreTests.java │ └── resources │ ├── hl7v2-sample-ingest.txt │ └── jpeg_text.dcm ├── iam ├── api-client │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── iam │ │ │ └── snippets │ │ │ ├── GrantableRoles.java │ │ │ └── TestPermissions.java │ │ └── test │ │ └── java │ │ └── iam │ │ └── snippets │ │ ├── GrantableRolesIT.java │ │ └── TestPermissionsTest.java └── snippets │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ ├── AddBinding.java │ │ ├── AddMember.java │ │ ├── CreateDenyPolicy.java │ │ ├── CreateRole.java │ │ ├── CreateServiceAccount.java │ │ ├── CreateServiceAccountKey.java │ │ ├── DeleteDenyPolicy.java │ │ ├── DeleteRole.java │ │ ├── DeleteServiceAccount.java │ │ ├── DeleteServiceAccountKey.java │ │ ├── DisableRole.java │ │ ├── DisableServiceAccount.java │ │ ├── DisableServiceAccountKey.java │ │ ├── EditRole.java │ │ ├── EnableServiceAccount.java │ │ ├── EnableServiceAccountKey.java │ │ ├── GetDenyPolicy.java │ │ ├── GetProjectPolicy.java │ │ ├── GetRole.java │ │ ├── GetServiceAccount.java │ │ ├── GetServiceAccountKey.java │ │ ├── GetServiceAccountPolicy.java │ │ ├── ListDenyPolicies.java │ │ ├── ListRoles.java │ │ ├── ListServiceAccountKeys.java │ │ ├── ListServiceAccounts.java │ │ ├── QueryTestablePermissions.java │ │ ├── Quickstart.java │ │ ├── RemoveMember.java │ │ ├── RenameServiceAccount.java │ │ ├── SetProjectPolicy.java │ │ ├── SetServiceAccountPolicy.java │ │ ├── UndeleteRole.java │ │ └── UpdateDenyPolicy.java │ └── test │ └── java │ ├── AccessTests.java │ ├── CreateServiceAccountIT.java │ ├── CreateServiceAccountKeyIT.java │ ├── DeleteServiceAccountIT.java │ ├── DeleteServiceAccountKeyIT.java │ ├── DenyIT.java │ ├── DisableServiceAccountIT.java │ ├── DisableServiceAccountKeyIT.java │ ├── EnableServiceAccountIT.java │ ├── EnableServiceAccountKeyIT.java │ ├── GetServiceAccountIT.java │ ├── GetServiceAccountKeyIT.java │ ├── ListServiceAccountKeysIT.java │ ├── ListServiceAccountsIT.java │ ├── QuickstartTests.java │ ├── RenameServiceAccountIT.java │ ├── RoleIT.java │ └── Util.java ├── iap ├── README.md ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── iap │ │ ├── BuildIapRequest.java │ │ └── VerifyIapRequestHeader.java │ └── test │ └── java │ └── com │ └── example │ └── iap │ └── BuildAndVerifyIapRequestIT.java ├── iot └── README.md ├── jobs ├── v3 │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── samples │ │ │ ├── AutoCompleteSample.java │ │ │ ├── BasicCompanySample.java │ │ │ ├── BasicJobSample.java │ │ │ ├── BatchOperationSample.java │ │ │ ├── CommuteSearchSample.java │ │ │ ├── CustomAttributeSample.java │ │ │ ├── EmailAlertSearchSample.java │ │ │ ├── FeaturedJobsSearchSample.java │ │ │ ├── GeneralSearchSample.java │ │ │ ├── HistogramSample.java │ │ │ ├── JobServiceQuickstart.java │ │ │ └── LocationSearchSample.java │ │ └── test │ │ └── java │ │ └── SampleTests.java └── v4 │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── jobs │ │ ├── CommuteSearchJobs.java │ │ ├── CustomRankingSearchJobs.java │ │ ├── HistogramSearchJobs.java │ │ ├── JobSearchAutoCompleteJobTitle.java │ │ ├── JobSearchCreateClientEvent.java │ │ ├── JobSearchCreateCompany.java │ │ ├── JobSearchCreateJob.java │ │ ├── JobSearchCreateJobCustomAttributes.java │ │ ├── JobSearchCreateTenant.java │ │ ├── JobSearchDeleteCompany.java │ │ ├── JobSearchDeleteJob.java │ │ ├── JobSearchDeleteTenant.java │ │ ├── JobSearchGetCompany.java │ │ ├── JobSearchGetJob.java │ │ ├── JobSearchGetTenant.java │ │ ├── JobSearchListCompanies.java │ │ ├── JobSearchListJobs.java │ │ └── JobSearchListTenants.java │ └── test │ └── java │ ├── CommuteSearchJobsTest.java │ ├── CustomRankingSearchJobsTest.java │ ├── HistogramSearchJobsTest.java │ ├── JobSearchAutoCompleteJobTitleTest.java │ ├── JobSearchCreateCompanyTest.java │ ├── JobSearchCreateJobTest.java │ ├── JobSearchCreateJobWithCustomAttrTest.java │ ├── JobSearchCreateTenantTest.java │ ├── JobSearchDeleteCompanyTest.java │ ├── JobSearchDeleteJobTest.java │ ├── JobSearchDeleteTenantTest.java │ ├── JobSearchGetCompanyTest.java │ ├── JobSearchGetJobTest.java │ ├── JobSearchGetTenantTest.java │ ├── JobSearchListCompaniesTest.java │ ├── JobSearchListJobsTest.java │ └── JobSearchListTenantsTest.java ├── kms ├── README.md ├── pom.xml └── src │ ├── main │ └── java │ │ └── kms │ │ ├── CheckStateImportJob.java │ │ ├── CheckStateImportedKey.java │ │ ├── ConvertPublicKeyToJwk.java │ │ ├── CreateImportJob.java │ │ ├── CreateKeyAsymmetricDecrypt.java │ │ ├── CreateKeyAsymmetricSign.java │ │ ├── CreateKeyForImport.java │ │ ├── CreateKeyHsm.java │ │ ├── CreateKeyLabels.java │ │ ├── CreateKeyMac.java │ │ ├── CreateKeyRing.java │ │ ├── CreateKeyRotationSchedule.java │ │ ├── CreateKeySymmetricEncryptDecrypt.java │ │ ├── CreateKeyVersion.java │ │ ├── DecryptAsymmetric.java │ │ ├── DecryptSymmetric.java │ │ ├── DestroyKeyVersion.java │ │ ├── DisableKeyVersion.java │ │ ├── EnableKeyVersion.java │ │ ├── EncryptAsymmetric.java │ │ ├── EncryptSymmetric.java │ │ ├── GenerateRandomBytes.java │ │ ├── GetKeyLabels.java │ │ ├── GetKeyVersionAttestation.java │ │ ├── GetPublicKey.java │ │ ├── IamAddMember.java │ │ ├── IamGetPolicy.java │ │ ├── IamRemoveMember.java │ │ ├── ImportManuallyWrappedKey.java │ │ ├── Quickstart.java │ │ ├── RestoreKeyVersion.java │ │ ├── SignAsymmetric.java │ │ ├── SignMac.java │ │ ├── UpdateKeyAddRotation.java │ │ ├── UpdateKeyRemoveLabels.java │ │ ├── UpdateKeyRemoveRotation.java │ │ ├── UpdateKeySetPrimary.java │ │ ├── UpdateKeyUpdateLabels.java │ │ ├── VerifyAsymmetricEc.java │ │ ├── VerifyAsymmetricRsa.java │ │ └── VerifyMac.java │ └── test │ └── java │ └── kms │ └── SnippetsIT.java ├── language ├── README.md ├── cloud-client │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── language │ │ │ ├── QuickstartSample.java │ │ │ └── SetEndpoint.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── language │ │ ├── QuickstartSampleIT.java │ │ └── SetEndpointIT.java └── snippets │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── language │ │ ├── Analyze.java │ │ ├── QuickstartSample.java │ │ └── SetEndpoint.java │ └── test │ └── java │ └── com │ └── example │ └── language │ ├── AnalyzeIT.java │ ├── QuickstartSampleIT.java │ └── SetEndpointIT.java ├── managedkafka └── examples │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── examples │ │ ├── CreateBigQuerySinkConnector.java │ │ ├── CreateCloudStorageSinkConnector.java │ │ ├── CreateCluster.java │ │ ├── CreateConnectCluster.java │ │ ├── CreateMirrorMaker2SourceConnector.java │ │ ├── CreatePubSubSinkConnector.java │ │ ├── CreatePubSubSourceConnector.java │ │ ├── CreateTopic.java │ │ ├── DeleteCluster.java │ │ ├── DeleteConnectCluster.java │ │ ├── DeleteConnector.java │ │ ├── DeleteConsumerGroup.java │ │ ├── DeleteTopic.java │ │ ├── GetCluster.java │ │ ├── GetConnectCluster.java │ │ ├── GetConnector.java │ │ ├── GetConsumerGroup.java │ │ ├── GetTopic.java │ │ ├── ListClusters.java │ │ ├── ListConnectClusters.java │ │ ├── ListConnectors.java │ │ ├── ListConsumerGroups.java │ │ ├── ListTopics.java │ │ ├── PauseConnector.java │ │ ├── RestartConnector.java │ │ ├── ResumeConnector.java │ │ ├── StopConnector.java │ │ ├── UpdateCluster.java │ │ ├── UpdateConnectCluster.java │ │ ├── UpdateConnector.java │ │ ├── UpdateConsumerGroup.java │ │ └── UpdateTopic.java │ └── test │ └── java │ └── examples │ ├── ClustersTest.java │ ├── ConnectClustersTest.java │ ├── ConnectorsTest.java │ ├── ConsumerGroupsTest.java │ ├── MockDeleteOperationFuture.java │ ├── MockOperationFuture.java │ └── TopicsTest.java ├── media ├── livestream │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── livestream │ │ │ ├── CreateAsset.java │ │ │ ├── CreateChannel.java │ │ │ ├── CreateChannelEvent.java │ │ │ ├── CreateChannelWithBackupInput.java │ │ │ ├── CreateInput.java │ │ │ ├── DeleteAsset.java │ │ │ ├── DeleteChannel.java │ │ │ ├── DeleteChannelEvent.java │ │ │ ├── DeleteInput.java │ │ │ ├── GetAsset.java │ │ │ ├── GetChannel.java │ │ │ ├── GetChannelEvent.java │ │ │ ├── GetInput.java │ │ │ ├── GetPool.java │ │ │ ├── ListAssets.java │ │ │ ├── ListChannelEvents.java │ │ │ ├── ListChannels.java │ │ │ ├── ListInputs.java │ │ │ ├── StartChannel.java │ │ │ ├── StopChannel.java │ │ │ ├── UpdateChannel.java │ │ │ ├── UpdateInput.java │ │ │ └── UpdatePool.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── livestream │ │ ├── CreateAssetTest.java │ │ ├── CreateChannelEventTest.java │ │ ├── CreateChannelTest.java │ │ ├── CreateChannelWithBackupInputTest.java │ │ ├── CreateInputTest.java │ │ ├── DeleteAssetTest.java │ │ ├── DeleteChannelEventTest.java │ │ ├── DeleteChannelTest.java │ │ ├── DeleteInputTest.java │ │ ├── GetAssetTest.java │ │ ├── GetChannelEventTest.java │ │ ├── GetChannelTest.java │ │ ├── GetInputTest.java │ │ ├── GetPoolTest.java │ │ ├── ListAssetsTest.java │ │ ├── ListChannelEventsTest.java │ │ ├── ListChannelsTest.java │ │ ├── ListInputsTest.java │ │ ├── StartChannelTest.java │ │ ├── StopChannelTest.java │ │ ├── TestUtils.java │ │ ├── UpdateChannelTest.java │ │ ├── UpdateInputTest.java │ │ └── UpdatePoolTest.java ├── stitcher │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── stitcher │ │ │ ├── CreateCdnKey.java │ │ │ ├── CreateCdnKeyAkamai.java │ │ │ ├── CreateLiveConfig.java │ │ │ ├── CreateLiveSession.java │ │ │ ├── CreateSlate.java │ │ │ ├── CreateVodConfig.java │ │ │ ├── CreateVodSession.java │ │ │ ├── DeleteCdnKey.java │ │ │ ├── DeleteLiveConfig.java │ │ │ ├── DeleteSlate.java │ │ │ ├── DeleteVodConfig.java │ │ │ ├── GetCdnKey.java │ │ │ ├── GetLiveAdTagDetail.java │ │ │ ├── GetLiveConfig.java │ │ │ ├── GetLiveSession.java │ │ │ ├── GetSlate.java │ │ │ ├── GetVodAdTagDetail.java │ │ │ ├── GetVodConfig.java │ │ │ ├── GetVodSession.java │ │ │ ├── GetVodStitchDetail.java │ │ │ ├── ListCdnKeys.java │ │ │ ├── ListLiveAdTagDetails.java │ │ │ ├── ListLiveConfigs.java │ │ │ ├── ListSlates.java │ │ │ ├── ListVodAdTagDetails.java │ │ │ ├── ListVodConfigs.java │ │ │ ├── ListVodStitchDetails.java │ │ │ ├── UpdateCdnKey.java │ │ │ ├── UpdateCdnKeyAkamai.java │ │ │ ├── UpdateSlate.java │ │ │ └── UpdateVodConfig.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── stitcher │ │ ├── CdnKeyTest.java │ │ ├── LiveConfigTest.java │ │ ├── LiveSessionTest.java │ │ ├── SlateTest.java │ │ ├── TestUtils.java │ │ ├── VodConfigTest.java │ │ └── VodSessionTest.java └── transcoder │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── transcoder │ │ ├── CreateJobFromAdHoc.java │ │ ├── CreateJobFromPreset.java │ │ ├── CreateJobFromPresetBatchMode.java │ │ ├── CreateJobFromTemplate.java │ │ ├── CreateJobTemplate.java │ │ ├── CreateJobWithAnimatedOverlay.java │ │ ├── CreateJobWithConcatenatedInputs.java │ │ ├── CreateJobWithEmbeddedCaptions.java │ │ ├── CreateJobWithPeriodicImagesSpritesheet.java │ │ ├── CreateJobWithSetNumberImagesSpritesheet.java │ │ ├── CreateJobWithStandaloneCaptions.java │ │ ├── CreateJobWithStaticOverlay.java │ │ ├── DeleteJob.java │ │ ├── DeleteJobTemplate.java │ │ ├── GetJob.java │ │ ├── GetJobState.java │ │ ├── GetJobTemplate.java │ │ ├── ListJobTemplates.java │ │ └── ListJobs.java │ └── test │ └── java │ └── com │ └── example │ └── transcoder │ ├── CreateJobFromAdHocTest.java │ ├── CreateJobFromPresetBatchModeTest.java │ ├── CreateJobFromPresetTest.java │ ├── CreateJobFromTemplateTest.java │ ├── CreateJobTemplateTest.java │ ├── CreateJobWithAnimatedOverlayTest.java │ ├── CreateJobWithConcatenatedInputsTest.java │ ├── CreateJobWithEmbeddedCaptionsTest.java │ ├── CreateJobWithPeriodicImagesSpritesheetTest.java │ ├── CreateJobWithSetNumberImagesSpritesheetTest.java │ ├── CreateJobWithStandaloneCaptionsTest.java │ ├── CreateJobWithStaticOverlayTest.java │ ├── DeleteJobTemplateTest.java │ ├── DeleteJobTest.java │ ├── GetJobTemplateTest.java │ ├── GetJobTest.java │ ├── ListJobTemplateTest.java │ ├── ListJobsTest.java │ └── testdata │ ├── ChromeCast.mp4 │ ├── ForBiggerEscapes.mp4 │ ├── ForBiggerJoyrides.mp4 │ ├── caption.srt │ └── overlay.jpg ├── media_cdn ├── README.md ├── pom.xml └── src │ ├── main │ └── java │ │ └── token │ │ └── DualToken.java │ └── test │ └── java │ └── token │ └── DualTokenIT.java ├── mediatranslation ├── README.md ├── pom.xml ├── resources │ └── audio.raw └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── mediatranslation │ │ ├── TranslateFromFile.java │ │ └── TranslateFromMic.java │ └── test │ └── java │ └── com │ └── example │ └── mediatranslation │ └── TranslateFromFileTest.java ├── memorystore └── redis │ ├── README.md │ ├── gae_flex_deployment │ └── app.yaml │ ├── gae_standard_deployment │ └── appengine-web.xml │ ├── gce_deployment │ ├── deploy.sh │ ├── startup-script.sh │ └── teardown.sh │ ├── gke_deployment │ ├── Dockerfile │ └── visit-counter.yaml │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── example │ │ └── redis │ │ ├── AppServletContextListener.java │ │ └── VisitCounterServlet.java │ └── resources │ └── application.properties ├── mlengine └── online-prediction │ ├── README.md │ ├── input.txt │ ├── pom.xml │ └── src │ └── main │ └── java │ └── OnlinePredictionSample.java ├── modelarmor ├── pom.xml └── src │ ├── main │ ├── java │ │ └── modelarmor │ │ │ ├── CreateTemplate.java │ │ │ ├── CreateTemplateWithAdvancedSdp.java │ │ │ ├── CreateTemplateWithBasicSdp.java │ │ │ ├── CreateTemplateWithLabels.java │ │ │ ├── CreateTemplateWithMetadata.java │ │ │ ├── DeleteTemplate.java │ │ │ ├── GetFolderFloorSetting.java │ │ │ ├── GetOrganizationFloorSetting.java │ │ │ ├── GetProjectFloorSetting.java │ │ │ ├── GetTemplate.java │ │ │ ├── ListTemplates.java │ │ │ ├── ListTemplatesWithFilter.java │ │ │ ├── Quickstart.java │ │ │ ├── SanitizeModelResponse.java │ │ │ ├── SanitizeUserPrompt.java │ │ │ ├── ScreenPdfFile.java │ │ │ ├── UpdateFolderFloorSetting.java │ │ │ ├── UpdateOrganizationsFloorSetting.java │ │ │ ├── UpdateProjectFloorSetting.java │ │ │ ├── UpdateTemplate.java │ │ │ ├── UpdateTemplateWithLabels.java │ │ │ └── UpdateTemplateWithMetadata.java │ └── resources │ │ └── test_sample.pdf │ └── test │ └── java │ └── modelarmor │ ├── QuickstartIT.java │ └── SnippetsIT.java ├── monitoring ├── cloud-client │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── monitoring │ │ │ ├── QuickstartSample.java │ │ │ └── Snippets.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── monitoring │ │ ├── QuickstartSampleIT.java │ │ └── SnippetsIT.java ├── prometheus │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── prometheus │ │ │ │ └── PrometheusApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── prometheus │ │ └── PrometheusApplicationTests.java └── v3 │ ├── README.md │ ├── manage_alerts_sample.sh │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── monitoring │ │ ├── AlertSample.java │ │ ├── CreateAlertPolicy.java │ │ ├── CreateMetricDescriptor.java │ │ ├── CreateTimeSeries.java │ │ ├── DeleteAlertPolicy.java │ │ ├── DeleteMetricDescriptor.java │ │ ├── DeleteNotificationChannel.java │ │ ├── EnableDisableAlertPolicy.java │ │ ├── GetAlertPolicy.java │ │ ├── GetMonitoredResource.java │ │ ├── ListAlertPolicy.java │ │ ├── ListMetricDescriptor.java │ │ ├── ListTimeSeries.java │ │ ├── MonitoredResourcesList.java │ │ ├── QuickstartSample.java │ │ ├── TimeSeriesHeadersList.java │ │ ├── UpdateAlertPolicy.java │ │ └── UptimeSample.java │ └── test │ └── java │ └── com │ └── example │ └── monitoring │ ├── AlertIT.java │ ├── CreateAlertPolicyIT.java │ ├── CreateMetricDescriptorIT.java │ ├── DeleteAlertPolicyIT.java │ ├── DeleteMetricDescriptorIT.java │ ├── DeleteNotificationChannelIT.java │ ├── EnableDisableAlertPolicyIT.java │ ├── GetAlertPolicyIT.java │ ├── GetMonitoredResourceIT.java │ ├── ListAlertPolicyIT.java │ ├── ListMetricDescriptorIT.java │ ├── ListMonitoredResourcesIT.java │ ├── QuickstartSampleIT.java │ ├── TimeSeriesIT.java │ ├── UpdateAlertPolicyIT.java │ └── UptimeIT.java ├── optimization └── snippets │ ├── pom.xml │ ├── resources │ └── sync_request.textproto │ └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── optimizationai │ │ ├── AsyncApi.java │ │ ├── GetOperation.java │ │ ├── SyncApi.java │ │ └── SyncApiWithLongTimeout.java │ └── test │ └── java │ └── com │ └── example │ └── optimizationai │ ├── AsyncApiTest.java │ ├── GetOperationTest.java │ ├── SyncApiTest.java │ └── SyncApiWithLongTimeoutTest.java ├── parametermanager ├── pom.xml └── src │ ├── main │ └── java │ │ └── parametermanager │ │ ├── CreateParam.java │ │ ├── CreateParamVersion.java │ │ ├── CreateParamVersionWithSecret.java │ │ ├── CreateParamWithKmsKey.java │ │ ├── CreateStructuredParam.java │ │ ├── CreateStructuredParamVersion.java │ │ ├── DeleteParam.java │ │ ├── DeleteParamVersion.java │ │ ├── DisableParamVersion.java │ │ ├── EnableParamVersion.java │ │ ├── GetParam.java │ │ ├── GetParamVersion.java │ │ ├── ListParamVersions.java │ │ ├── ListParams.java │ │ ├── Quickstart.java │ │ ├── RemoveParamKmsKey.java │ │ ├── RenderParamVersion.java │ │ ├── UpdateParamKmsKey.java │ │ └── regionalsamples │ │ ├── CreateRegionalParam.java │ │ ├── CreateRegionalParamVersion.java │ │ ├── CreateRegionalParamVersionWithSecret.java │ │ ├── CreateRegionalParamWithKmsKey.java │ │ ├── CreateStructuredRegionalParam.java │ │ ├── CreateStructuredRegionalParamVersion.java │ │ ├── DeleteRegionalParam.java │ │ ├── DeleteRegionalParamVersion.java │ │ ├── DisableRegionalParamVersion.java │ │ ├── EnableRegionalParamVersion.java │ │ ├── GetRegionalParam.java │ │ ├── GetRegionalParamVersion.java │ │ ├── ListRegionalParamVersions.java │ │ ├── ListRegionalParams.java │ │ ├── RegionalQuickstart.java │ │ ├── RemoveRegionalParamKmsKey.java │ │ ├── RenderRegionalParamVersion.java │ │ └── UpdateRegionalParamKmsKey.java │ └── test │ └── java │ └── parametermanager │ ├── QuickstartIT.java │ ├── SnippetsIT.java │ └── regionalsamples │ ├── QuickstartIT.java │ └── SnippetsIT.java ├── privateca └── snippets │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── privateca │ │ ├── ActivateSubordinateCa.java │ │ ├── CreateCaPool.java │ │ ├── CreateCertificate.java │ │ ├── CreateCertificateAuthority.java │ │ ├── CreateCertificateCsr.java │ │ ├── CreateCertificateTemplate.java │ │ ├── CreateSubordinateCa.java │ │ ├── DeleteCaPool.java │ │ ├── DeleteCertificateAuthority.java │ │ ├── DeleteCertificateTemplate.java │ │ ├── DisableCertificateAuthority.java │ │ ├── EnableCertificateAuthority.java │ │ ├── FilterCertificates.java │ │ ├── ListCaPools.java │ │ ├── ListCertificateAuthorities.java │ │ ├── ListCertificateTemplates.java │ │ ├── ListCertificates.java │ │ ├── MonitorCertificateAuthority.java │ │ ├── RevokeCertificate.java │ │ ├── UndeleteCertificateAuthority.java │ │ ├── UpdateCaPoolIssuancePolicy.java │ │ ├── UpdateCertificateAuthority.java │ │ └── UpdateCertificateTemplate.java │ └── test │ └── java │ └── privateca │ ├── SnippetsIT.java │ └── Util.java ├── pubsub ├── cloud-client │ └── README.md ├── spring │ ├── README.md │ ├── build.gradle │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── demo │ │ │ │ └── PubSubApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── demo │ │ └── PubSubApplicationIT.java └── streaming-analytics │ ├── README.md │ ├── build.gradle │ ├── pom.xml │ └── src │ └── main │ └── java │ └── com │ └── examples │ └── pubsub │ └── streaming │ └── PubSubToGcs.java ├── pubsublite └── streaming-analytics │ ├── README.md │ ├── build.gradle │ ├── metadata.json │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── examples │ │ └── PubsubliteToGcs.java │ └── test │ └── java │ └── examples │ └── PubsubliteToGcsIT.java ├── recaptcha_enterprise ├── demosite │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yaml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── app │ │ │ │ ├── MainController.java │ │ │ │ └── SpringbootMain.java │ │ │ └── recaptcha │ │ │ │ └── CreateAssessment.java │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── config.properties │ │ │ ├── static │ │ │ ├── demoasset │ │ │ │ ├── bad-1-927ec3bf.svg │ │ │ │ ├── bad-2-71e6d4a7.svg │ │ │ │ ├── bad-3-f11c185d.svg │ │ │ │ ├── bad-4-39e9c776.svg │ │ │ │ ├── bad-5-deb2ce2c.svg │ │ │ │ ├── bad-6-e41cdc46.svg │ │ │ │ ├── bad-7-d630f87b.svg │ │ │ │ ├── bad-morph-c2bb8f615fe93323.gif │ │ │ │ ├── castle-7575ab637e5138e2.svg │ │ │ │ ├── castle-alternate-7575ab637e5138e2.svg │ │ │ │ ├── celebrate-ece5a54e321ab2e7.png │ │ │ │ ├── demo-81d99a00.css │ │ │ │ ├── favicon-16x16-e9e3fe3130a875eb.png │ │ │ │ ├── favicon-32x32-e9e3fe3130a875eb.png │ │ │ │ ├── favicon-48x48-e9e3fe3130a875eb.png │ │ │ │ ├── favicon-e9e3fe3130a875eb.ico │ │ │ │ ├── fetti-896c2fdf.svg │ │ │ │ ├── fourSquares-de5c55d13d7de923.png │ │ │ │ ├── global-15fca5ccf020c02b.css │ │ │ │ ├── hover-13bd4972c72e1a52.gif │ │ │ │ ├── human-1-49800c7f.svg │ │ │ │ ├── human-2-acb91479.svg │ │ │ │ ├── human-3-c0227111.svg │ │ │ │ ├── human-4-10a52fcd.svg │ │ │ │ ├── human-5-8b3fbd2b.svg │ │ │ │ ├── human-6-0ba482b9.svg │ │ │ │ ├── hydrant-d11f08c8f1a631a3.svg │ │ │ │ ├── item-stoplight-53247b633eed5a85.svg │ │ │ │ ├── material-symbols-outlined-5a8e0f79.woff2 │ │ │ │ ├── material-symbols-rounded-c9a13ced.woff2 │ │ │ │ ├── poof-57ef02b2.png │ │ │ │ ├── prize-bike-ce3d17b0.svg │ │ │ │ ├── prize-crosswalk-c8a9609d.svg │ │ │ │ ├── prize-hydrant-d3f31a30.svg │ │ │ │ ├── prize-stoplight-60a1cd1a.svg │ │ │ │ └── target-594e0ee6.png │ │ │ └── scripts │ │ │ │ ├── demo-9b37f5d6.js │ │ │ │ └── global-e680a49614fd8ff8.js │ │ │ └── templates │ │ │ ├── comment.html │ │ │ ├── home.html │ │ │ ├── login.html │ │ │ ├── signup.html │ │ │ └── store.html │ │ └── test │ │ └── java │ │ ├── ScoreKeyIT.java │ │ └── Util.java └── snippets │ └── src │ ├── main │ └── java │ │ ├── app │ │ ├── Main.java │ │ └── MainController.java │ │ └── recaptcha │ │ ├── AnnotateAssessment.java │ │ ├── CreateAssessment.java │ │ ├── CreateSiteKey.java │ │ ├── DeleteSiteKey.java │ │ ├── GetMetrics.java │ │ ├── GetSiteKey.java │ │ ├── ListSiteKeys.java │ │ ├── MigrateKey.java │ │ ├── UpdateSiteKey.java │ │ ├── account_defender │ │ ├── AccountDefenderAssessment.java │ │ ├── AnnotateAccountDefenderAssessment.java │ │ ├── ListRelatedAccountGroupMemberships.java │ │ ├── ListRelatedAccountGroups.java │ │ └── SearchRelatedAccountGroupMemberships.java │ │ └── passwordleak │ │ └── CreatePasswordLeakAssessment.java │ ├── pom.xml │ ├── resources │ └── templates │ │ └── index.html │ └── test │ └── java │ └── app │ └── SnippetsIT.java ├── retail └── interactive-tutorials │ ├── README.md │ ├── images │ ├── tutorail1.img │ ├── tutorial1.png │ ├── tutorials2.png │ ├── tutorials3.png │ └── tutorials4.png │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ ├── events │ │ │ │ ├── ImportUserEventsBigQuery.java │ │ │ │ ├── ImportUserEventsGcs.java │ │ │ │ ├── ImportUserEventsInline.java │ │ │ │ ├── PurgeUserEvent.java │ │ │ │ ├── RejoinUserEvent.java │ │ │ │ ├── WriteUserEvent.java │ │ │ │ └── setup │ │ │ │ │ ├── EventsCreateBigQueryTable.java │ │ │ │ │ ├── EventsCreateGcsBucket.java │ │ │ │ │ ├── RemoveEventsResources.java │ │ │ │ │ └── UpdateUserEventsJson.java │ │ │ ├── product │ │ │ │ ├── AddFulfillmentPlaces.java │ │ │ │ ├── CreateProduct.java │ │ │ │ ├── CrudProduct.java │ │ │ │ ├── DeleteProduct.java │ │ │ │ ├── GetProduct.java │ │ │ │ ├── ImportProductsBigQueryTable.java │ │ │ │ ├── ImportProductsGcs.java │ │ │ │ ├── ImportProductsInlineSource.java │ │ │ │ ├── RemoveFulfillmentPlaces.java │ │ │ │ ├── SetInventory.java │ │ │ │ ├── UpdateProduct.java │ │ │ │ └── setup │ │ │ │ │ ├── ProductsCreateBigqueryTable.java │ │ │ │ │ ├── ProductsCreateGcsBucket.java │ │ │ │ │ └── RemoveProductsResources.java │ │ │ ├── search │ │ │ │ ├── SearchSimpleQuery.java │ │ │ │ ├── SearchWithBoostSpec.java │ │ │ │ ├── SearchWithFacetSpec.java │ │ │ │ ├── SearchWithFiltering.java │ │ │ │ ├── SearchWithOrdering.java │ │ │ │ ├── SearchWithPagination.java │ │ │ │ └── SearchWithQueryExpansionSpec.java │ │ │ └── setup │ │ │ │ └── SetupCleanup.java │ │ └── resources │ │ │ ├── events_schema.json │ │ │ ├── product_schema.json │ │ │ ├── products.json │ │ │ ├── products_some_invalid.json │ │ │ ├── user_events.json │ │ │ └── user_events_some_invalid.json │ └── test │ │ └── java │ │ ├── events │ │ ├── ImportUserEventsBigQueryTest.java │ │ ├── ImportUserEventsGcsTest.java │ │ ├── ImportUserEventsInlineTest.java │ │ ├── PurgeUserEventTest.java │ │ ├── RejoinUserEventTest.java │ │ └── WriteUserEventTest.java │ │ ├── product │ │ ├── AddFulfillmentPlacesTest.java │ │ ├── CreateProductTest.java │ │ ├── CrudProductTest.java │ │ ├── DeleteProductTest.java │ │ ├── GetProductTest.java │ │ ├── ImportProductsBigQueryTableTest.java │ │ ├── ImportProductsGcsTest.java │ │ ├── ImportProductsInlineSourceTest.java │ │ ├── RemoveFulfillmentPlacesTest.java │ │ ├── SetInventoryTest.java │ │ └── UpdateProductTest.java │ │ ├── resources │ │ ├── user_events.json │ │ └── user_events_some_invalid.json │ │ └── search │ │ ├── SearchSimpleQueryTest.java │ │ ├── SearchWithBoostSpecTest.java │ │ ├── SearchWithFacetSpecTest.java │ │ ├── SearchWithFilteringTest.java │ │ ├── SearchWithOrderingTest.java │ │ ├── SearchWithPaginationTest.java │ │ └── SearchWithQueryExpansionSpecTest.java │ ├── user_environment_setup.sh │ └── user_import_data_to_catalog.sh ├── routeoptimization └── snippets │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── OptimizeTours.java │ └── test │ └── java │ └── com │ └── example │ └── OptimizeToursTest.java ├── run ├── README.md ├── authentication │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── cloudrun │ │ │ └── Authentication.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── cloudrun │ │ └── AuthenticationTest.java ├── endpoints-v2-backend │ ├── README.md │ ├── openapi-run.yaml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── endpoints │ │ │ │ ├── EndpointsApplication.java │ │ │ │ └── controllers │ │ │ │ └── RepeatController.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── controllers │ │ ├── RepeatControllerIT.java │ │ └── RepeatControllerTest.java ├── hello-broken │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── cloudrun │ │ │ └── App.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── cloudrun │ │ └── AppTest.java ├── helloworld │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── helloworld │ │ │ │ └── HelloworldApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── helloworld │ │ └── HelloworldApplicationTests.java ├── idp-sql │ ├── README.md │ ├── app.json │ ├── pom.xml │ ├── postcreate.sh │ ├── postgres-secrets.json │ ├── setup.sh │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── cloudrun │ │ │ │ ├── IdpSqlApplication.java │ │ │ │ ├── Vote.java │ │ │ │ └── VoteController.java │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── logback-spring.xml │ │ │ ├── schema.sql │ │ │ ├── static │ │ │ ├── config.js │ │ │ └── firebase.js │ │ │ └── templates │ │ │ └── index.html │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── cloudrun │ │ │ └── VoteControllerTests.java │ │ └── resources │ │ └── application.properties ├── image-processing │ ├── Dockerfile │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── cloudrun │ │ │ │ ├── Body.java │ │ │ │ ├── ImageMagick.java │ │ │ │ ├── PubSubApplication.java │ │ │ │ └── PubSubController.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── cloudrun │ │ └── PubSubControllerTests.java ├── jobs │ ├── README.md │ ├── pom.xml │ ├── project.toml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── JobsExample.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ ├── JobsExampleTests.java │ │ ├── JobsIntegrationTests.java │ │ └── resources │ │ ├── e2e_test_cleanup.yaml │ │ ├── e2e_test_setup.yaml │ │ └── retry.sh ├── logging-manual │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── cloudrun │ │ │ │ └── App.java │ │ └── resources │ │ │ └── logback.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── cloudrun │ │ └── AppTest.java ├── markdown-preview │ ├── README.md │ ├── editor │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── cloudrun │ │ │ │ │ ├── Data.java │ │ │ │ │ ├── EditorApplication.java │ │ │ │ │ ├── EditorController.java │ │ │ │ │ └── RenderController.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ └── templates │ │ │ │ ├── index.html │ │ │ │ └── markdown.md │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── cloudrun │ │ │ ├── EditorControllerTests.java │ │ │ └── RenderControllerTests.java │ └── renderer │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── cloudrun │ │ │ │ ├── MarkdownController.java │ │ │ │ └── RendererApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── cloudrun │ │ └── RendererApplicationTests.java ├── pubsub │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── cloudrun │ │ │ │ ├── Body.java │ │ │ │ ├── PubSubApplication.java │ │ │ │ └── PubSubController.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── cloudrun │ │ └── PubSubControllerTests.java └── system-package │ ├── Dockerfile │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── cloudrun │ │ └── App.java │ └── test │ └── java │ └── com │ └── example │ └── cloudrun │ └── AppTest.java ├── secretmanager ├── README.md ├── pom.xml └── src │ ├── main │ └── java │ │ └── secretmanager │ │ ├── AccessSecretVersion.java │ │ ├── AddSecretVersion.java │ │ ├── ConsumeEventNotification.java │ │ ├── CreateSecret.java │ │ ├── CreateSecretWithAnnotations.java │ │ ├── CreateSecretWithDelayedDestroy.java │ │ ├── CreateSecretWithLabels.java │ │ ├── CreateSecretWithTags.java │ │ ├── CreateSecretWithUserManagedReplication.java │ │ ├── CreateUpdateSecretLabel.java │ │ ├── DeleteSecret.java │ │ ├── DeleteSecretLabel.java │ │ ├── DeleteSecretWithEtag.java │ │ ├── DestroySecretVersion.java │ │ ├── DestroySecretVersionWithEtag.java │ │ ├── DisableSecretDelayedDestroy.java │ │ ├── DisableSecretVersion.java │ │ ├── DisableSecretVersionWithEtag.java │ │ ├── EditSecretAnnotations.java │ │ ├── EnableSecretVersion.java │ │ ├── EnableSecretVersionWithEtag.java │ │ ├── GetSecret.java │ │ ├── GetSecretVersion.java │ │ ├── IamGrantAccess.java │ │ ├── IamRevokeAccess.java │ │ ├── ListSecretVersions.java │ │ ├── ListSecretVersionsWithFilter.java │ │ ├── ListSecrets.java │ │ ├── ListSecretsWithFilter.java │ │ ├── Quickstart.java │ │ ├── UpdateSecret.java │ │ ├── UpdateSecretWithAlias.java │ │ ├── UpdateSecretWithDelayedDestroy.java │ │ ├── UpdateSecretWithEtag.java │ │ ├── ViewSecretAnnotations.java │ │ ├── ViewSecretLabels.java │ │ └── regionalsamples │ │ ├── AccessRegionalSecretVersion.java │ │ ├── AddRegionalSecretVersion.java │ │ ├── CreateRegionalSecret.java │ │ ├── CreateRegionalSecretWithAnnotations.java │ │ ├── CreateRegionalSecretWithDelayedDestroy.java │ │ ├── CreateRegionalSecretWithLabels.java │ │ ├── CreateRegionalSecretWithTags.java │ │ ├── DeleteRegionalSecret.java │ │ ├── DeleteRegionalSecretLabel.java │ │ ├── DeleteRegionalSecretWithEtag.java │ │ ├── DestroyRegionalSecretVersion.java │ │ ├── DestroyRegionalSecretVersionWithEtag.java │ │ ├── DisableRegionalSecretDelayedDestroy.java │ │ ├── DisableRegionalSecretVersion.java │ │ ├── DisableRegionalSecretVersionWithEtag.java │ │ ├── EditRegionalSecretAnnotations.java │ │ ├── EditRegionalSecretLabel.java │ │ ├── EnableRegionalSecretVersion.java │ │ ├── EnableRegionalSecretVersionWithEtag.java │ │ ├── GetRegionalSecret.java │ │ ├── GetRegionalSecretVersion.java │ │ ├── IamGrantAccessWithRegionalSecret.java │ │ ├── IamRevokeAccessWithRegionalSecret.java │ │ ├── ListRegionalSecretVersions.java │ │ ├── ListRegionalSecretVersionsWithFilter.java │ │ ├── ListRegionalSecrets.java │ │ ├── ListRegionalSecretsWithFilter.java │ │ ├── RegionalQuickstart.java │ │ ├── UpdateRegionalSecret.java │ │ ├── UpdateRegionalSecretWithAlias.java │ │ ├── UpdateRegionalSecretWithDelayedDestroy.java │ │ ├── UpdateRegionalSecretWithEtag.java │ │ ├── ViewRegionalSecretAnnotations.java │ │ └── ViewRegionalSecretLabels.java │ └── test │ └── java │ └── secretmanager │ ├── QuickstartIT.java │ ├── SnippetsIT.java │ └── regionalsamples │ ├── QuickstartIT.java │ └── SnippetsIT.java ├── security-command-center └── snippets │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ ├── CreateNotificationConfigSnippets.java │ │ ├── DeleteNotificationConfigSnippets.java │ │ ├── GetNotificationConfigSnippets.java │ │ ├── ListNotificationConfigSnippets.java │ │ ├── NotificationReceiver.java │ │ ├── UpdateNotificationConfigSnippets.java │ │ ├── bigqueryexport │ │ ├── CreateBigQueryExport.java │ │ ├── DeleteBigQueryExport.java │ │ ├── GetBigQueryExport.java │ │ ├── ListBigQueryExports.java │ │ └── UpdateBigQueryExport.java │ │ ├── management │ │ └── api │ │ │ ├── CreateEventThreatDetectionCustomModule.java │ │ │ ├── CreateSecurityHealthAnalyticsCustomModule.java │ │ │ ├── DeleteEventThreatDetectionCustomModule.java │ │ │ ├── DeleteSecurityHealthAnalyticsCustomModule.java │ │ │ ├── GetEffectiveEventThreatDetectionCustomModule.java │ │ │ ├── GetEffectiveSecurityHealthAnalyticsCustomModule.java │ │ │ ├── GetEventThreatDetectionCustomModule.java │ │ │ ├── GetSecurityCenterService.java │ │ │ ├── GetSecurityHealthAnalyticsCustomModule.java │ │ │ ├── ListDescendantEventThreatDetectionCustomModules.java │ │ │ ├── ListDescendantSecurityHealthAnalyticsCustomModules.java │ │ │ ├── ListEffectiveEventThreatDetectionCustomModules.java │ │ │ ├── ListEffectiveSecurityHealthAnalyticsCustomModules.java │ │ │ ├── ListEventThreatDetectionCustomModules.java │ │ │ ├── ListSecurityCenterServices.java │ │ │ ├── ListSecurityHealthAnalyticsCustomModules.java │ │ │ ├── SimulateSecurityHealthAnalyticsCustomModule.java │ │ │ ├── UpdateEventThreatDetectionCustomModule.java │ │ │ ├── UpdateSecurityCenterService.java │ │ │ ├── UpdateSecurityHealthAnalyticsCustomModule.java │ │ │ └── ValidateEventThreatDetectionCustomModule.java │ │ ├── muteconfig │ │ ├── BulkMuteFindings.java │ │ ├── CreateMuteRule.java │ │ ├── DeleteMuteRule.java │ │ ├── GetMuteRule.java │ │ ├── ListMuteRules.java │ │ ├── SetMuteFinding.java │ │ ├── SetMuteUndefinedFinding.java │ │ ├── SetUnmuteFinding.java │ │ └── UpdateMuteRule.java │ │ └── vtwo │ │ ├── bigquery │ │ ├── CreateBigQueryExport.java │ │ ├── DeleteBigQueryExport.java │ │ ├── GetBigQueryExport.java │ │ ├── ListBigQueryExports.java │ │ └── UpdateBigQueryExport.java │ │ ├── client │ │ └── CreateClientWithEndpoint.java │ │ ├── findings │ │ ├── CreateFindings.java │ │ ├── GroupFindings.java │ │ ├── GroupFindingsWithFilter.java │ │ ├── ListAllFindings.java │ │ ├── ListFindingsWithFilter.java │ │ └── SetFindingsByState.java │ │ ├── iam │ │ ├── GetIamPolicies.java │ │ ├── SetIamPolices.java │ │ └── TestIamPermissions.java │ │ ├── marks │ │ ├── AddMarkToFinding.java │ │ ├── DeleteAndUpdateMarks.java │ │ ├── DeleteMarks.java │ │ └── ListFindingMarksWithFilter.java │ │ ├── muteconfig │ │ ├── BulkMuteFindings.java │ │ ├── CreateMuteRule.java │ │ ├── DeleteMuteRule.java │ │ ├── GetMuteRule.java │ │ ├── ListMuteRules.java │ │ ├── SetMuteFinding.java │ │ ├── SetMuteUndefinedFinding.java │ │ ├── SetUnmuteFinding.java │ │ └── UpdateMuteRule.java │ │ ├── notifications │ │ ├── CreateNotification.java │ │ ├── DeleteNotification.java │ │ ├── GetNotification.java │ │ ├── ListNotification.java │ │ └── UpdateNotification.java │ │ └── source │ │ ├── CreateSource.java │ │ ├── GetSource.java │ │ ├── ListSources.java │ │ ├── UpdateFindingSource.java │ │ └── UpdateSource.java │ └── test │ └── java │ ├── BigQueryExportIT.java │ ├── MuteFindingIT.java │ ├── NotificationConfigSnippetTests.java │ ├── management │ └── api │ │ ├── EventThreatDetectionCustomModuleTest.java │ │ ├── SecurityCenterServiceTest.java │ │ └── SecurityHealthAnalyticsCustomModuleTest.java │ └── vtwo │ ├── BigQueryExportIT.java │ ├── CreateClientIT.java │ ├── FindingsIT.java │ ├── IamIT.java │ ├── MuteFindingIT.java │ ├── NotificationIT.java │ ├── SecurityMarkIT.java │ └── SourceIT.java ├── servicedirectory ├── README.md ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── servicedirectory │ │ ├── EndpointsCreate.java │ │ ├── EndpointsDelete.java │ │ ├── NamespacesCreate.java │ │ ├── NamespacesDelete.java │ │ ├── Quickstart.java │ │ ├── ServicesCreate.java │ │ ├── ServicesDelete.java │ │ └── ServicesResolve.java │ └── test │ └── java │ └── com │ └── example │ └── servicedirectory │ ├── EndpointsTests.java │ ├── NamespacesTests.java │ └── ServicesTests.java ├── session-handling ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── example │ │ └── gettingstarted │ │ ├── actions │ │ └── HelloWorldServlet.java │ │ └── util │ │ └── FirestoreSessionFilter.java │ └── test │ └── java │ └── com │ └── example │ └── getstarted │ └── actions │ └── UserJourneyTestIT.java ├── spanner ├── changestreams │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── spanner │ │ │ └── changestreams │ │ │ ├── ChangeStreamRecordMapper.java │ │ │ ├── ChangeStreamSample.java │ │ │ └── model │ │ │ ├── ChangeStreamRecord.java │ │ │ ├── ChildPartition.java │ │ │ ├── ChildPartitionsRecord.java │ │ │ ├── ColumnType.java │ │ │ ├── DataChangeRecord.java │ │ │ ├── HeartbeatRecord.java │ │ │ ├── Mod.java │ │ │ ├── ModType.java │ │ │ ├── TypeCode.java │ │ │ ├── ValueCaptureType.java │ │ │ └── package-info.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── spanner │ │ └── changestreams │ │ └── ChangeStreamSampleIT.java ├── cloud-client │ └── README.md ├── hibernate │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── spanner │ │ │ ├── CreditCardPayment.java │ │ │ ├── HibernateSampleApplication.java │ │ │ ├── Payment.java │ │ │ ├── Person.java │ │ │ └── WireTransferPayment.java │ │ └── resources │ │ └── hibernate.cfg.xml ├── jdbc │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── spanner │ │ │ └── jdbc │ │ │ ├── AbortBatchExample.java │ │ │ ├── AutoPartitionModeExample.java │ │ │ ├── AutocommitUpdateDataExample.java │ │ │ ├── BatchDdlExample.java │ │ │ ├── BatchDdlUsingSqlStatementsExample.java │ │ │ ├── BatchDmlExample.java │ │ │ ├── BatchDmlUsingSqlStatementsExample.java │ │ │ ├── BufferedWriteExample.java │ │ │ ├── ConnectionWithQueryOptionsExample.java │ │ │ ├── CreateConnectionExample.java │ │ │ ├── CreateConnectionWithCredentialsExample.java │ │ │ ├── CreateConnectionWithCustomHostExample.java │ │ │ ├── CreateConnectionWithDataSourceExample.java │ │ │ ├── CreateConnectionWithDefaultProjectIdExample.java │ │ │ ├── CreateConnectionWithPropertiesExample.java │ │ │ ├── CreateConnectionWithUrlPropertiesExample.java │ │ │ ├── CreateTableExample.java │ │ │ ├── DataBoostExample.java │ │ │ ├── GetCommitTimestampExample.java │ │ │ ├── GetReadTimestampExample.java │ │ │ ├── InsertDataExample.java │ │ │ ├── JsonCreateTableExample.java │ │ │ ├── JsonInsertDataExample.java │ │ │ ├── JsonQueryDataExample.java │ │ │ ├── LoadCsvExample.java │ │ │ ├── PartitionQueryExample.java │ │ │ ├── PartitionedDmlExample.java │ │ │ ├── PgAutoPartitionModeExample.java │ │ │ ├── PgBatchDmlSample.java │ │ │ ├── PgCaseSensitivitySample.java │ │ │ ├── PgCastDataTypeSample.java │ │ │ ├── PgConnectToDatabaseSample.java │ │ │ ├── PgCreateInterleavedTableSample.java │ │ │ ├── PgDataBoostExample.java │ │ │ ├── PgDmlWithParametersSample.java │ │ │ ├── PgFunctionsSample.java │ │ │ ├── PgInformationSchemaSample.java │ │ │ ├── PgNumericDataTypeSample.java │ │ │ ├── PgOrderNullsSample.java │ │ │ ├── PgPartitionQueryExample.java │ │ │ ├── PgPartitionedDmlSample.java │ │ │ ├── PgQueryParameterSample.java │ │ │ ├── PgRunPartitionedQueryExample.java │ │ │ ├── ReadOnlyTransactionExample.java │ │ │ ├── ReadWriteTransactionExample.java │ │ │ ├── RunPartitionedQueryExample.java │ │ │ ├── SetQueryOptionsExample.java │ │ │ ├── SingleUseReadOnlyExample.java │ │ │ ├── SingleUseReadOnlyTimestampBoundExample.java │ │ │ ├── TransactionWithRetryLoopExample.java │ │ │ └── TransactionWithRetryLoopUsingOnlyJdbcExample.java │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── spanner │ │ │ └── jdbc │ │ │ ├── BaseJdbcPgExamplesIT.java │ │ │ ├── JdbcExamplesIT.java │ │ │ ├── PgBatchDmlSampleIT.java │ │ │ ├── PgCaseInsensitivitySampleIT.java │ │ │ ├── PgCastDataTypeSampleIT.java │ │ │ ├── PgConnectToDatabaseSampleIT.java │ │ │ ├── PgCreateInterleavedTableSampleIT.java │ │ │ ├── PgDmlWithParametersSampleIT.java │ │ │ ├── PgFunctionsSampleIT.java │ │ │ ├── PgInformationSchemaSampleIT.java │ │ │ ├── PgNumericDataTypeSampleIT.java │ │ │ ├── PgOrderNullsSampleIT.java │ │ │ ├── PgPartitionedDmlSampleIT.java │ │ │ ├── PgPartitionedQueryIT.java │ │ │ └── PgQueryParameterSampleIT.java │ │ └── resources │ │ └── singers.csv ├── leaderboard │ ├── README.md │ ├── complete │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── codelabs │ │ │ │ └── App.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── codelabs │ │ │ └── AppTest.java │ ├── step4 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── codelabs │ │ │ └── App.java │ ├── step5 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── codelabs │ │ │ └── App.java │ └── step6 │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── google │ │ └── codelabs │ │ └── App.java ├── opencensus │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── spanner │ │ │ └── opencensus │ │ │ ├── CaptureGfeMetric.java │ │ │ ├── CaptureGrpcMetric.java │ │ │ └── CaptureQueryStatsMetric.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── spanner │ │ └── opencensus │ │ ├── CaptureGfeMetricIT.java │ │ ├── CaptureGrpcMetricIT.java │ │ └── CaptureQueryStatsMetricIT.java ├── opentelemetry │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── example │ │ └── spanner │ │ └── OpenTelemetryUsage.java ├── opentelemetry_traces │ ├── Readme.md │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── example │ │ └── spanner │ │ └── OpenTelemetryUsage.java ├── r2dbc │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── spanner │ │ │ │ └── r2dbc │ │ │ │ ├── Name.java │ │ │ │ ├── R2dbcSampleApplication.java │ │ │ │ └── WebController.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── static │ │ │ └── index.html │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── spanner │ │ └── r2dbc │ │ └── R2dbcSampleApplicationIT.java └── spring-data │ ├── README.md │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── example │ │ └── spanner │ │ ├── Album.java │ │ ├── QuickStartSample.java │ │ ├── Singer.java │ │ ├── SingerRepository.java │ │ ├── SpannerRepositorySample.java │ │ ├── SpannerSchemaToolsSample.java │ │ └── SpannerTemplateSample.java │ └── resources │ └── application.properties ├── speech ├── pom.xml ├── resources │ ├── Google_Gnome.wav │ ├── audio.raw │ ├── commercial_mono.wav │ └── commercial_stereo.wav └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── speech │ │ ├── AdaptationCustomClassReferenceV2.java │ │ ├── AdaptationInlineCustomClassV2.java │ │ ├── AdaptationInlinePhraseSetV2.java │ │ ├── AdaptationPhraseSetReferenceV2.java │ │ ├── CreateRecognizerV2.java │ │ ├── InfiniteStreamRecognize.java │ │ ├── InfiniteStreamRecognizeOptions.java │ │ ├── QuickstartSample.java │ │ ├── QuickstartSampleV2.java │ │ ├── Recognize.java │ │ ├── RecognizeBeta.java │ │ ├── SpeechProfanityFilter.java │ │ ├── TranscribeDiarization.java │ │ ├── TranscribeDiarizationGcs.java │ │ └── TranscribeFileV2.java │ └── test │ └── java │ └── com │ └── example │ └── speech │ ├── AdaptationCustomClassReferenceV2IT.java │ ├── AdaptationInlineCustomClassV2IT.java │ ├── AdaptationInlinePhraseSetV2IT.java │ ├── AdaptationPhraseSetReferenceV2IT.java │ ├── CreateRecognizerV2IT.java │ ├── QuickstartSampleIT.java │ ├── QuickstartSampleV2IT.java │ ├── RecognizeBetaIT.java │ ├── RecognizeIT.java │ ├── SpeechProfanityFilterTest.java │ ├── TranscribeDiarizationIT.java │ └── TranscribeFileV2IT.java ├── storage-transfer ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── google │ │ └── cloud │ │ └── storage │ │ └── storagetransfer │ │ └── samples │ │ ├── CheckLatestTransferOperation.java │ │ ├── CreateEventDrivenAwsTransfer.java │ │ ├── CreateEventDrivenGcsTransfer.java │ │ ├── DownloadToPosix.java │ │ ├── QuickstartSample.java │ │ ├── TransferBetweenPosix.java │ │ ├── TransferFromAws.java │ │ ├── TransferFromAzure.java │ │ ├── TransferFromPosix.java │ │ ├── TransferFromS3CompatibleSource.java │ │ ├── TransferToNearline.java │ │ ├── TransferUsingManifest.java │ │ └── apiary │ │ ├── CheckLatestTransferOperationApiary.java │ │ ├── CheckTransferJobApiary.java │ │ ├── CreateTransferClient.java │ │ ├── RetryHttpInitializerWrapper.java │ │ ├── TransferFromAwsApiary.java │ │ └── TransferToNearlineApiary.java │ └── test │ └── java │ └── com │ └── google │ └── cloud │ └── storage │ └── storagetransfer │ └── samples │ └── test │ ├── ITStoragetransferSamplesTest.java │ ├── TransferJobUtilsTest.java │ └── util │ └── TransferJobUtils.java ├── storage ├── cloud-client │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── storage │ │ │ └── QuickstartSample.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── storage │ │ └── QuickstartSampleIT.java └── s3-sdk │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── storage │ │ └── s3sdk │ │ ├── ListGcsBuckets.java │ │ └── ListGcsObjects.java │ └── test │ └── java │ └── storage │ └── s3sdk │ ├── ListGcsBucketsTest.java │ ├── ListGcsObjectsTest.java │ └── TestHmacKeyRule.java ├── storageinsights ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── google │ │ └── cloud │ │ └── storage │ │ └── storageinsights │ │ └── samples │ │ ├── CreateInventoryReportConfig.java │ │ ├── DeleteInventoryReportConfig.java │ │ ├── EditInventoryReportConfig.java │ │ ├── GetInventoryReportNames.java │ │ └── ListInventoryReportConfigs.java │ └── test │ └── java │ └── com │ └── google │ └── cloud │ └── storage │ └── storageinsights │ └── samples │ └── test │ └── ITStorageinsightsSamplesTest.java ├── talent └── snippets │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── jobs │ │ ├── CommuteSearchJobs.java │ │ ├── CustomRankingSearchJobs.java │ │ ├── HistogramSearchJobs.java │ │ ├── JobSearchAutoCompleteJobTitle.java │ │ ├── JobSearchCreateClientEvent.java │ │ ├── JobSearchCreateCompany.java │ │ ├── JobSearchCreateJob.java │ │ ├── JobSearchCreateJobCustomAttributes.java │ │ ├── JobSearchCreateTenant.java │ │ ├── JobSearchDeleteCompany.java │ │ ├── JobSearchDeleteJob.java │ │ ├── JobSearchDeleteTenant.java │ │ ├── JobSearchGetCompany.java │ │ ├── JobSearchGetJob.java │ │ ├── JobSearchGetTenant.java │ │ ├── JobSearchListCompanies.java │ │ ├── JobSearchListJobs.java │ │ └── JobSearchListTenants.java │ └── test │ └── java │ ├── CommuteSearchJobsTest.java │ ├── CustomRankingSearchJobsTest.java │ ├── HistogramSearchJobsTest.java │ ├── JobSearchAutoCompleteJobTitleTest.java │ ├── JobSearchCreateCompanyTest.java │ ├── JobSearchCreateJobTest.java │ ├── JobSearchCreateJobWithCustomAttrTest.java │ ├── JobSearchCreateTenantTest.java │ ├── JobSearchDeleteCompanyTest.java │ ├── JobSearchDeleteJobTest.java │ ├── JobSearchDeleteTenantTest.java │ ├── JobSearchGetCompanyTest.java │ ├── JobSearchGetJobTest.java │ ├── JobSearchGetTenantTest.java │ ├── JobSearchListCompaniesTest.java │ ├── JobSearchListJobsTest.java │ └── JobSearchListTenantsTest.java ├── tasks └── snippets │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── task │ │ ├── CreateHttpTask.java │ │ ├── CreateHttpTaskWithToken.java │ │ ├── CreateQueue.java │ │ ├── DeleteQueue.java │ │ └── ListQueues.java │ └── test │ └── java │ └── com │ └── example │ └── task │ ├── CreateHttpTaskIT.java │ ├── CreateQueueIT.java │ ├── DeleteQueueIT.java │ └── ListQueuesIT.java ├── texttospeech ├── beta │ ├── README.md │ ├── pom.xml │ ├── resources │ │ ├── hello.ssml │ │ └── hello.txt │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── texttospeech │ │ │ ├── ListAllSupportedVoices.java │ │ │ ├── QuickstartSample.java │ │ │ └── SynthesizeText.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── texttospeech │ │ ├── ListAllSupportedVoicesIT.java │ │ └── SynthesizeTextIT.java ├── cloud-client │ ├── README.md │ ├── pom.xml │ ├── resources │ │ ├── example.ssml │ │ ├── example.txt │ │ ├── expected_example.mp3 │ │ ├── hello.ssml │ │ └── hello.txt │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── texttospeech │ │ │ ├── ListAllSupportedVoices.java │ │ │ ├── QuickstartSample.java │ │ │ ├── SsmlAddresses.java │ │ │ ├── SynthesizeFile.java │ │ │ └── SynthesizeText.java │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── texttospeech │ │ ├── ListAllSupportedVoicesIT.java │ │ ├── SsmlAddressesIT.java │ │ ├── SynthesizeFileIT.java │ │ └── SynthesizeTextIT.java └── snippets │ ├── pom.xml │ ├── resources │ ├── example.ssml │ ├── example.txt │ ├── expected_example.mp3 │ ├── hello.ssml │ └── hello.txt │ └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── texttospeech │ │ ├── ListAllSupportedVoices.java │ │ ├── ListAllSupportedVoicesBeta.java │ │ ├── QuickstartSample.java │ │ ├── QuickstartSampleBeta.java │ │ ├── SsmlAddresses.java │ │ ├── SynthesizeFile.java │ │ ├── SynthesizeFileBeta.java │ │ ├── SynthesizeText.java │ │ └── SynthesizeTextBeta.java │ └── test │ └── java │ └── com │ └── example │ └── texttospeech │ ├── ListAllSupportedVoicesBetaIT.java │ ├── ListAllSupportedVoicesIT.java │ ├── SsmlAddressesIT.java │ ├── SynthesizeFileBetaIT.java │ ├── SynthesizeFileIT.java │ ├── SynthesizeTextBetaIT.java │ └── SynthesizeTextIT.java ├── tpu ├── pom.xml └── src │ ├── main │ └── java │ │ └── tpu │ │ ├── CreateQueuedResource.java │ │ ├── CreateQueuedResourceWithNetwork.java │ │ ├── CreateQueuedResourceWithStartupScript.java │ │ ├── CreateSpotQueuedResource.java │ │ ├── CreateSpotTpuVm.java │ │ ├── CreateTimeBoundQueuedResource.java │ │ ├── CreateTpuVm.java │ │ ├── CreateTpuVmWithStartupScript.java │ │ ├── CreateTpuWithTopologyFlag.java │ │ ├── DeleteForceQueuedResource.java │ │ ├── DeleteQueuedResource.java │ │ ├── DeleteTpuVm.java │ │ ├── GetQueuedResource.java │ │ ├── GetTpuVm.java │ │ ├── ListQueuedResources.java │ │ ├── ListTpuVms.java │ │ ├── StartTpuVm.java │ │ └── StopTpuVm.java │ └── test │ └── java │ └── tpu │ ├── QueuedResourceIT.java │ └── TpuVmIT.java ├── translate ├── pom.xml ├── resources │ └── fake_invoice.pdf └── src │ ├── main │ └── java │ │ └── com │ │ └── example │ │ └── translate │ │ ├── BatchTranslateText.java │ │ ├── BatchTranslateTextWithGlossary.java │ │ ├── BatchTranslateTextWithGlossaryAndModel.java │ │ ├── BatchTranslateTextWithModel.java │ │ ├── CreateGlossary.java │ │ ├── DeleteGlossary.java │ │ ├── DetectLanguage.java │ │ ├── GetGlossary.java │ │ ├── GetSupportedLanguages.java │ │ ├── GetSupportedLanguagesForTarget.java │ │ ├── ListGlossaries.java │ │ ├── TranslateText.java │ │ ├── TranslateTextWithGlossary.java │ │ └── TranslateTextWithModel.java │ └── test │ └── java │ └── com │ └── example │ └── translate │ ├── BatchTranslateTextTests.java │ ├── BatchTranslateTextWithGlossaryAndModelTests.java │ ├── BatchTranslateTextWithGlossaryTests.java │ ├── BatchTranslateTextWithModelTests.java │ ├── CreateGlossaryTests.java │ ├── DeleteGlossaryTests.java │ ├── DetectLanguageTests.java │ ├── GetGlossaryTests.java │ ├── GetSupportedLanguagesForTargetTests.java │ ├── GetSupportedLanguagesTests.java │ ├── ListGlossariesTests.java │ ├── TranslateTextTests.java │ ├── TranslateTextWithGlossaryTests.java │ └── TranslateTextWithModelTests.java ├── unittests ├── README.md ├── pom.xml └── src │ ├── main │ └── webapp │ │ └── WEB-INF │ │ ├── appengine-web.xml │ │ ├── logging.properties │ │ ├── queue.xml │ │ └── web.xml │ └── test │ └── java │ └── com │ └── google │ └── appengine │ └── samples │ ├── AuthenticationTest.java │ ├── BaseTestConfiguration.java │ ├── DeferredTaskTest.java │ ├── LocalCustomPolicyHighRepDatastoreTest.java │ ├── LocalDatastoreTest.java │ ├── LocalHighRepDatastoreTest.java │ ├── LocalMemcacheTest.java │ ├── LocalUrlFetchTest.java │ ├── MyFirstTest.java │ ├── ShortTest.java │ ├── TaskQueueConfigTest.java │ └── TaskQueueTest.java ├── vertexai └── snippets │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── vertexai │ │ └── gemini │ │ ├── ControlledGenerationSchema6.java │ │ ├── FunctionCalling.java │ │ ├── GetMediaTokenCount.java │ │ ├── GetTokenCount.java │ │ ├── GroundingWithPrivateData.java │ │ ├── GroundingWithPublicData.java │ │ ├── Multimodal.java │ │ ├── QuestionAnswer.java │ │ ├── Quickstart.java │ │ ├── StreamingMultimodal.java │ │ ├── StreamingQuestionAnswer.java │ │ ├── TextInput.java │ │ └── VideoInputWithAudio.java │ └── test │ └── java │ └── vertexai │ └── gemini │ └── SnippetsIT.java ├── video ├── README.md ├── pom.xml ├── resources │ ├── cat.mp4 │ └── googlework_short.mp4 └── src │ ├── main │ └── java │ │ ├── beta │ │ └── video │ │ │ ├── StreamingAnnotationToStorage.java │ │ │ ├── StreamingAutoMlActionRecognition.java │ │ │ ├── StreamingAutoMlClassification.java │ │ │ ├── StreamingAutoMlObjectTracking.java │ │ │ ├── StreamingExplicitContentDetection.java │ │ │ ├── StreamingLabelDetection.java │ │ │ ├── StreamingObjectTracking.java │ │ │ └── StreamingShotChangeDetection.java │ │ └── video │ │ ├── Detect.java │ │ ├── DetectFaces.java │ │ ├── DetectFacesGcs.java │ │ ├── DetectPerson.java │ │ ├── DetectPersonGcs.java │ │ ├── LogoDetection.java │ │ ├── LogoDetectionGcs.java │ │ ├── QuickstartSample.java │ │ ├── TextDetection.java │ │ └── TrackObjects.java │ └── test │ └── java │ ├── beta │ └── video │ │ ├── StreamingAnnotationToStorageIT.java │ │ ├── StreamingAutoMlActionRecognitionIT.java │ │ ├── StreamingAutoMlClassificationIT.java │ │ ├── StreamingAutoMlObjectTrackingIT.java │ │ ├── StreamingExplicitContentDetectionIT.java │ │ ├── StreamingLabelDetectionIT.java │ │ ├── StreamingObjectTrackingIT.java │ │ └── StreamingShotChangeDetectionIT.java │ └── video │ ├── DetectFacesGcsIT.java │ ├── DetectFacesIT.java │ ├── DetectIT.java │ ├── DetectLogoGcsTest.java │ ├── DetectLogoTest.java │ ├── DetectPersonGcsIT.java │ ├── DetectPersonIT.java │ ├── DetectTextTest.java │ └── QuickstartIT.java ├── vision ├── README.md ├── automl │ └── README.md ├── face-detection │ ├── .gitignore │ ├── README.md │ ├── data │ │ ├── bad.txt │ │ └── face.jpg │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── cloud │ │ │ └── vision │ │ │ └── samples │ │ │ └── facedetect │ │ │ └── FaceDetectApp.java │ │ └── test │ │ └── java │ │ └── com │ │ └── google │ │ └── cloud │ │ └── vision │ │ └── samples │ │ └── facedetect │ │ ├── FaceDetectAppIT.java │ │ └── FaceDetectAppTest.java ├── snippets │ ├── pom.xml │ ├── resources │ │ ├── city.jpg │ │ ├── face_no_surprise.jpg │ │ ├── gcp-logos.png │ │ ├── handwritten.jpg │ │ ├── indexed_product_sets.csv │ │ ├── kafka.pdf │ │ ├── landmark.jpg │ │ ├── logos.png │ │ ├── product_sets.csv │ │ ├── puppies.jpg │ │ ├── shoes_1.jpg │ │ ├── shoes_2.jpg │ │ ├── text.jpg │ │ └── wakeupcat.jpg │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── vision │ │ │ ├── AsyncBatchAnnotateImagesGcs.java │ │ │ ├── Detect.java │ │ │ ├── DetectBatchAnnotateFiles.java │ │ │ ├── DetectBatchAnnotateFilesGcs.java │ │ │ ├── DetectBeta.java │ │ │ ├── ImportProductSets.java │ │ │ ├── ProductInProductSetManagement.java │ │ │ ├── ProductManagement.java │ │ │ ├── ProductSearch.java │ │ │ ├── ProductSetManagement.java │ │ │ ├── ReferenceImageManagement.java │ │ │ ├── quickstart │ │ │ └── QuickstartSample.java │ │ │ └── snippets │ │ │ ├── AsyncBatchAnnotateImages.java │ │ │ ├── BatchAnnotateFiles.java │ │ │ ├── BatchAnnotateFilesGcs.java │ │ │ ├── DetectCropHints.java │ │ │ ├── DetectCropHintsGcs.java │ │ │ ├── DetectFaces.java │ │ │ ├── DetectFacesGcs.java │ │ │ ├── DetectLabels.java │ │ │ ├── DetectLabelsGcs.java │ │ │ ├── DetectLandmarks.java │ │ │ ├── DetectLandmarksGcs.java │ │ │ ├── DetectLandmarksUrl.java │ │ │ ├── DetectLogos.java │ │ │ ├── DetectLogosGcs.java │ │ │ ├── DetectProperties.java │ │ │ ├── DetectPropertiesGcs.java │ │ │ ├── DetectSafeSearch.java │ │ │ ├── DetectSafeSearchGcs.java │ │ │ ├── DetectText.java │ │ │ ├── DetectTextGcs.java │ │ │ ├── DetectWebDetections.java │ │ │ ├── DetectWebDetectionsGcs.java │ │ │ ├── DetectWebEntities.java │ │ │ ├── DetectWebEntitiesGcs.java │ │ │ ├── DetectWebEntitiesIncludeGeoResults.java │ │ │ ├── DetectWebEntitiesIncludeGeoResultsGcs.java │ │ │ ├── PurgeProducts.java │ │ │ ├── PurgeProductsInProductSet.java │ │ │ └── SetEndpoint.java │ │ └── test │ │ └── java │ │ ├── com │ │ └── example │ │ │ └── vision │ │ │ ├── AsyncBatchAnnotateImagesTest.java │ │ │ ├── BatchAnnotateFilesGcsTest.java │ │ │ ├── BatchAnnotateFilesTest.java │ │ │ ├── DetectBetaIT.java │ │ │ ├── DetectCropHintsGcsTest.java │ │ │ ├── DetectCropHintsTest.java │ │ │ ├── DetectFacesGcsTest.java │ │ │ ├── DetectFacesTest.java │ │ │ ├── DetectIT.java │ │ │ ├── DetectLabelsGcsTest.java │ │ │ ├── DetectLabelsTest.java │ │ │ ├── DetectLandmarksGcsTest.java │ │ │ ├── DetectLandmarksTest.java │ │ │ ├── DetectLogosGcsTest.java │ │ │ ├── DetectLogosTest.java │ │ │ ├── DetectPropertiesGcsTest.java │ │ │ ├── DetectPropertiesTest.java │ │ │ ├── DetectSafeSearchGcsTest.java │ │ │ ├── DetectSafeSearchTest.java │ │ │ ├── DetectTextGcsTest.java │ │ │ ├── DetectTextTest.java │ │ │ ├── DetectWebDetectionsGcsTest.java │ │ │ ├── DetectWebDetectionsTest.java │ │ │ ├── DetectWebEntitiesGcsTest.java │ │ │ ├── DetectWebEntitiesIncludeGeoResultsGcsTest.java │ │ │ ├── DetectWebEntitiesIncludeGeoResultsTest.java │ │ │ ├── DetectWebEntitiesTest.java │ │ │ ├── ImportProductSetsIT.java │ │ │ ├── ProductInProductSetManagementIT.java │ │ │ ├── ProductManagementIT.java │ │ │ ├── ProductSearchIT.java │ │ │ ├── ProductSetManagementIT.java │ │ │ ├── ReferenceImageManagementIT.java │ │ │ └── SetEndpointIT.java │ │ └── vision │ │ └── snippets │ │ ├── ProductInProductSetManagementTests.java │ │ └── ProductManagementTests.java └── spring-framework │ ├── README.md │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── example │ │ └── vision │ │ ├── Application.java │ │ └── VisionController.java │ └── resources │ ├── static │ └── index.html │ └── templates │ └── result.html ├── webrisk ├── pom.xml └── src │ ├── main │ └── java │ │ └── webrisk │ │ ├── ComputeThreatListDiff.java │ │ ├── SearchHashes.java │ │ ├── SearchUri.java │ │ └── SubmitUri.java │ └── test │ └── java │ └── webrisk │ └── SnippetsIT.java └── workflows └── cloud-client ├── README.md ├── pom.xml └── src ├── main └── java │ └── com │ └── example │ └── workflows │ └── WorkflowsQuickstart.java └── test └── java └── com └── example └── workflows ├── WorkflowsQuickstartTest.java └── resources └── source.yaml /.gitallowed: -------------------------------------------------------------------------------- 1 | **/test/**/*.java -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto-approve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.github/auto-approve.yml -------------------------------------------------------------------------------- /.github/auto-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.github/auto-label.yaml -------------------------------------------------------------------------------- /.github/blunderbuss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.github/blunderbuss.yml -------------------------------------------------------------------------------- /.github/header-checker-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.github/header-checker-lint.yml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/snippet-bot.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/sync-repo-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.github/sync-repo-settings.yaml -------------------------------------------------------------------------------- /.github/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.github/templates/README.md -------------------------------------------------------------------------------- /.github/templates/getting-sample-code.mdpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.github/templates/getting-sample-code.mdpp -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.kokoro/java11/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/java11/common.cfg -------------------------------------------------------------------------------- /.kokoro/java11/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/java11/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/java11/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/java11/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/java17/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/java17/common.cfg -------------------------------------------------------------------------------- /.kokoro/java17/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/java17/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/java17/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/java17/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/java21/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/java21/common.cfg -------------------------------------------------------------------------------- /.kokoro/java21/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/java21/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/java8/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/java8/common.cfg -------------------------------------------------------------------------------- /.kokoro/java8/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/java8/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/lint/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/lint/common.cfg -------------------------------------------------------------------------------- /.kokoro/lint/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/lint/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/prptst/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/prptst/common.cfg -------------------------------------------------------------------------------- /.kokoro/prptst/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/prptst/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/tests/build_cloud_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/tests/build_cloud_functions.sh -------------------------------------------------------------------------------- /.kokoro/tests/build_cloud_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/tests/build_cloud_run.sh -------------------------------------------------------------------------------- /.kokoro/tests/run_lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/tests/run_lint.sh -------------------------------------------------------------------------------- /.kokoro/tests/run_prptst_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/tests/run_prptst_tests.sh -------------------------------------------------------------------------------- /.kokoro/tests/run_test_java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/tests/run_test_java.sh -------------------------------------------------------------------------------- /.kokoro/tests/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/tests/run_tests.sh -------------------------------------------------------------------------------- /.kokoro/tests/teardown_cloud_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/tests/teardown_cloud_functions.sh -------------------------------------------------------------------------------- /.kokoro/trampoline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/.kokoro/trampoline.sh -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/README.md -------------------------------------------------------------------------------- /SAMPLE_FORMAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/SAMPLE_FORMAT.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /accessapproval/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/accessapproval/snippets/pom.xml -------------------------------------------------------------------------------- /aiplatform/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/aiplatform/pom.xml -------------------------------------------------------------------------------- /aiplatform/resources/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/aiplatform/resources/cat.png -------------------------------------------------------------------------------- /aiplatform/resources/daisy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/aiplatform/resources/daisy.jpg -------------------------------------------------------------------------------- /aiplatform/resources/dog_newspaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/aiplatform/resources/dog_newspaper.png -------------------------------------------------------------------------------- /aiplatform/resources/image_flower_daisy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/aiplatform/resources/image_flower_daisy.jpg -------------------------------------------------------------------------------- /aiplatform/resources/iod_caprese_salad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/aiplatform/resources/iod_caprese_salad.jpg -------------------------------------------------------------------------------- /aiplatform/resources/roller_skaters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/aiplatform/resources/roller_skaters.png -------------------------------------------------------------------------------- /aiplatform/resources/roller_skaters_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/aiplatform/resources/roller_skaters_mask.png -------------------------------------------------------------------------------- /aiplatform/resources/volleyball_game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/aiplatform/resources/volleyball_game.png -------------------------------------------------------------------------------- /aiplatform/resources/woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/aiplatform/resources/woman.png -------------------------------------------------------------------------------- /appengine-java11-bundled-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11-bundled-services/README.md -------------------------------------------------------------------------------- /appengine-java11-bundled-services/datastore/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | ../../../../../../appengine-java8/datastore/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /appengine-java11-bundled-services/datastore/src/main/webapp/guestbook.jsp: -------------------------------------------------------------------------------- 1 | ../../../../../appengine-java8/datastore/src/main/webapp/guestbook.jsp -------------------------------------------------------------------------------- /appengine-java11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/README.md -------------------------------------------------------------------------------- /appengine-java11/cloudsql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/cloudsql/README.md -------------------------------------------------------------------------------- /appengine-java11/cloudsql/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/cloudsql/app.yaml -------------------------------------------------------------------------------- /appengine-java11/cloudsql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/cloudsql/pom.xml -------------------------------------------------------------------------------- /appengine-java11/custom-entrypoint/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/custom-entrypoint/Main.java -------------------------------------------------------------------------------- /appengine-java11/custom-entrypoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/custom-entrypoint/README.md -------------------------------------------------------------------------------- /appengine-java11/custom-entrypoint/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/custom-entrypoint/app.yaml -------------------------------------------------------------------------------- /appengine-java11/gaeinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/gaeinfo/README.md -------------------------------------------------------------------------------- /appengine-java11/gaeinfo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/gaeinfo/pom.xml -------------------------------------------------------------------------------- /appengine-java11/helloworld-servlet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/helloworld-servlet/README.md -------------------------------------------------------------------------------- /appengine-java11/helloworld-servlet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/helloworld-servlet/pom.xml -------------------------------------------------------------------------------- /appengine-java11/http-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/http-server/README.md -------------------------------------------------------------------------------- /appengine-java11/http-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/http-server/pom.xml -------------------------------------------------------------------------------- /appengine-java11/kotlin-ktor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/kotlin-ktor/README.md -------------------------------------------------------------------------------- /appengine-java11/kotlin-ktor/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/kotlin-ktor/app.yaml -------------------------------------------------------------------------------- /appengine-java11/kotlin-ktor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/kotlin-ktor/pom.xml -------------------------------------------------------------------------------- /appengine-java11/micronaut-helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/micronaut-helloworld/README.md -------------------------------------------------------------------------------- /appengine-java11/micronaut-helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/micronaut-helloworld/pom.xml -------------------------------------------------------------------------------- /appengine-java11/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/oauth2/README.md -------------------------------------------------------------------------------- /appengine-java11/oauth2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/oauth2/pom.xml -------------------------------------------------------------------------------- /appengine-java11/quarkus-helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/quarkus-helloworld/README.md -------------------------------------------------------------------------------- /appengine-java11/quarkus-helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/quarkus-helloworld/pom.xml -------------------------------------------------------------------------------- /appengine-java11/spanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/spanner/README.md -------------------------------------------------------------------------------- /appengine-java11/spanner/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/spanner/pom.xml -------------------------------------------------------------------------------- /appengine-java11/sparkjava-helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/sparkjava-helloworld/README.md -------------------------------------------------------------------------------- /appengine-java11/sparkjava-helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/sparkjava-helloworld/pom.xml -------------------------------------------------------------------------------- /appengine-java11/springboot-helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/springboot-helloworld/pom.xml -------------------------------------------------------------------------------- /appengine-java11/tasks-handler/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/tasks-handler/Dockerfile -------------------------------------------------------------------------------- /appengine-java11/tasks-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/tasks-handler/README.md -------------------------------------------------------------------------------- /appengine-java11/tasks-handler/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/tasks-handler/pom.xml -------------------------------------------------------------------------------- /appengine-java11/tasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/tasks/README.md -------------------------------------------------------------------------------- /appengine-java11/tasks/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/tasks/pom.xml -------------------------------------------------------------------------------- /appengine-java11/vertx-helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/vertx-helloworld/README.md -------------------------------------------------------------------------------- /appengine-java11/vertx-helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java11/vertx-helloworld/pom.xml -------------------------------------------------------------------------------- /appengine-java17-bundled-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java17-bundled-services/README.md -------------------------------------------------------------------------------- /appengine-java17-bundled-services/datastore/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | ../../../../../../appengine-java8/datastore/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /appengine-java17-bundled-services/datastore/src/main/webapp/guestbook.jsp: -------------------------------------------------------------------------------- 1 | ../../../../../appengine-java8/datastore/src/main/webapp/guestbook.jsp -------------------------------------------------------------------------------- /appengine-java21/ee8/analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java21/ee8/analytics/README.md -------------------------------------------------------------------------------- /appengine-java21/ee8/analytics/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java21/ee8/analytics/pom.xml -------------------------------------------------------------------------------- /appengine-java21/ee8/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java21/ee8/images/README.md -------------------------------------------------------------------------------- /appengine-java21/ee8/images/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java21/ee8/images/pom.xml -------------------------------------------------------------------------------- /appengine-java21/ee8/users/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java21/ee8/users/README.md -------------------------------------------------------------------------------- /appengine-java21/ee8/users/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java21/ee8/users/pom.xml -------------------------------------------------------------------------------- /appengine-java21/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java21/helloworld/README.md -------------------------------------------------------------------------------- /appengine-java21/helloworld/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java21/helloworld/build.gradle -------------------------------------------------------------------------------- /appengine-java21/helloworld/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java21/helloworld/gradlew -------------------------------------------------------------------------------- /appengine-java21/helloworld/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java21/helloworld/gradlew.bat -------------------------------------------------------------------------------- /appengine-java21/helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java21/helloworld/pom.xml -------------------------------------------------------------------------------- /appengine-java21/helloworld/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java21/helloworld/settings.gradle -------------------------------------------------------------------------------- /appengine-java25/ee11/analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java25/ee11/analytics/README.md -------------------------------------------------------------------------------- /appengine-java25/ee11/analytics/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java25/ee11/analytics/pom.xml -------------------------------------------------------------------------------- /appengine-java25/ee8/analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java25/ee8/analytics/README.md -------------------------------------------------------------------------------- /appengine-java25/ee8/analytics/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java25/ee8/analytics/pom.xml -------------------------------------------------------------------------------- /appengine-java25/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java25/helloworld/README.md -------------------------------------------------------------------------------- /appengine-java25/helloworld/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java25/helloworld/build.gradle -------------------------------------------------------------------------------- /appengine-java25/helloworld/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java25/helloworld/gradlew -------------------------------------------------------------------------------- /appengine-java25/helloworld/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java25/helloworld/gradlew.bat -------------------------------------------------------------------------------- /appengine-java25/helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java25/helloworld/pom.xml -------------------------------------------------------------------------------- /appengine-java25/helloworld/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java25/helloworld/settings.gradle -------------------------------------------------------------------------------- /appengine-java8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/README.md -------------------------------------------------------------------------------- /appengine-java8/analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/analytics/README.md -------------------------------------------------------------------------------- /appengine-java8/analytics/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/analytics/pom.xml -------------------------------------------------------------------------------- /appengine-java8/appidentity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/appidentity/README.md -------------------------------------------------------------------------------- /appengine-java8/appidentity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/appidentity/pom.xml -------------------------------------------------------------------------------- /appengine-java8/bigquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/bigquery/README.md -------------------------------------------------------------------------------- /appengine-java8/bigquery/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/bigquery/pom.xml -------------------------------------------------------------------------------- /appengine-java8/bigtable/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/bigtable/.dockerignore -------------------------------------------------------------------------------- /appengine-java8/bigtable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/bigtable/README.md -------------------------------------------------------------------------------- /appengine-java8/bigtable/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/bigtable/build.gradle -------------------------------------------------------------------------------- /appengine-java8/bigtable/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/bigtable/gradlew -------------------------------------------------------------------------------- /appengine-java8/bigtable/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/bigtable/gradlew.bat -------------------------------------------------------------------------------- /appengine-java8/bigtable/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/bigtable/pom.xml -------------------------------------------------------------------------------- /appengine-java8/bigtable/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'bigtable-hello-j8' 2 | -------------------------------------------------------------------------------- /appengine-java8/cloudsql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/cloudsql/README.md -------------------------------------------------------------------------------- /appengine-java8/datastore-indexes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/datastore-indexes/pom.xml -------------------------------------------------------------------------------- /appengine-java8/datastore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/datastore/README.md -------------------------------------------------------------------------------- /appengine-java8/datastore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/datastore/pom.xml -------------------------------------------------------------------------------- /appengine-java8/endpoints-v2-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/endpoints-v2-README.md -------------------------------------------------------------------------------- /appengine-java8/endpoints-v2-backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/endpoints-v2-backend/.gitignore -------------------------------------------------------------------------------- /appengine-java8/endpoints-v2-backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/endpoints-v2-backend/README.md -------------------------------------------------------------------------------- /appengine-java8/endpoints-v2-backend/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/endpoints-v2-backend/gradlew -------------------------------------------------------------------------------- /appengine-java8/endpoints-v2-backend/jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/endpoints-v2-backend/jenkins.sh -------------------------------------------------------------------------------- /appengine-java8/endpoints-v2-backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/endpoints-v2-backend/pom.xml -------------------------------------------------------------------------------- /appengine-java8/endpoints-v2-backend/settings.gradle: -------------------------------------------------------------------------------- 1 | enableFeaturePreview('IMPROVED_POM_SUPPORT') 2 | -------------------------------------------------------------------------------- /appengine-java8/endpoints-v2-guice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/endpoints-v2-guice/README.md -------------------------------------------------------------------------------- /appengine-java8/endpoints-v2-guice/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/endpoints-v2-guice/build.gradle -------------------------------------------------------------------------------- /appengine-java8/endpoints-v2-guice/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/endpoints-v2-guice/gradlew -------------------------------------------------------------------------------- /appengine-java8/endpoints-v2-guice/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/endpoints-v2-guice/gradlew.bat -------------------------------------------------------------------------------- /appengine-java8/endpoints-v2-guice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/endpoints-v2-guice/pom.xml -------------------------------------------------------------------------------- /appengine-java8/endpoints-v2-migration/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/endpoints-v2-migration/gradlew -------------------------------------------------------------------------------- /appengine-java8/endpoints-v2-migration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/endpoints-v2-migration/pom.xml -------------------------------------------------------------------------------- /appengine-java8/endpoints-v2-skeleton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/endpoints-v2-skeleton/README.md -------------------------------------------------------------------------------- /appengine-java8/endpoints-v2-skeleton/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/endpoints-v2-skeleton/pom.xml -------------------------------------------------------------------------------- /appengine-java8/firebase-backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/firebase-backend/README.md -------------------------------------------------------------------------------- /appengine-java8/firebase-backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/firebase-backend/pom.xml -------------------------------------------------------------------------------- /appengine-java8/firebase-event-listener-python/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /appengine-java8/firebase-event-proxy-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/firebase-event-proxy-README.md -------------------------------------------------------------------------------- /appengine-java8/firebase-event-proxy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/firebase-event-proxy/pom.xml -------------------------------------------------------------------------------- /appengine-java8/firebase-tictactoe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/firebase-tictactoe/README.md -------------------------------------------------------------------------------- /appengine-java8/firebase-tictactoe/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/firebase-tictactoe/pom.xml -------------------------------------------------------------------------------- /appengine-java8/gaeinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/gaeinfo/README.md -------------------------------------------------------------------------------- /appengine-java8/gaeinfo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/gaeinfo/pom.xml -------------------------------------------------------------------------------- /appengine-java8/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/helloworld/README.md -------------------------------------------------------------------------------- /appengine-java8/helloworld/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/helloworld/build.gradle -------------------------------------------------------------------------------- /appengine-java8/helloworld/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/helloworld/gradlew -------------------------------------------------------------------------------- /appengine-java8/helloworld/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/helloworld/gradlew.bat -------------------------------------------------------------------------------- /appengine-java8/helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/helloworld/pom.xml -------------------------------------------------------------------------------- /appengine-java8/helloworld/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/helloworld/settings.gradle -------------------------------------------------------------------------------- /appengine-java8/iap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/iap/README.md -------------------------------------------------------------------------------- /appengine-java8/iap/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/iap/pom.xml -------------------------------------------------------------------------------- /appengine-java8/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/images/README.md -------------------------------------------------------------------------------- /appengine-java8/images/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/images/pom.xml -------------------------------------------------------------------------------- /appengine-java8/mail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/mail/README.md -------------------------------------------------------------------------------- /appengine-java8/mail/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/mail/pom.xml -------------------------------------------------------------------------------- /appengine-java8/mailgun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/mailgun/README.md -------------------------------------------------------------------------------- /appengine-java8/mailgun/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/mailgun/pom.xml -------------------------------------------------------------------------------- /appengine-java8/mailjet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/mailjet/README.md -------------------------------------------------------------------------------- /appengine-java8/mailjet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/mailjet/pom.xml -------------------------------------------------------------------------------- /appengine-java8/memcache/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/memcache/pom.xml -------------------------------------------------------------------------------- /appengine-java8/metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/metadata/README.md -------------------------------------------------------------------------------- /appengine-java8/metadata/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/metadata/pom.xml -------------------------------------------------------------------------------- /appengine-java8/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/oauth2/README.md -------------------------------------------------------------------------------- /appengine-java8/oauth2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/oauth2/pom.xml -------------------------------------------------------------------------------- /appengine-java8/pubsub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/pubsub/README.md -------------------------------------------------------------------------------- /appengine-java8/pubsub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/pubsub/pom.xml -------------------------------------------------------------------------------- /appengine-java8/pubsub/sample_message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/pubsub/sample_message.json -------------------------------------------------------------------------------- /appengine-java8/remote-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/remote-README.md -------------------------------------------------------------------------------- /appengine-java8/remote-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/remote-client/pom.xml -------------------------------------------------------------------------------- /appengine-java8/remote-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/remote-server/pom.xml -------------------------------------------------------------------------------- /appengine-java8/requests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/requests/README.md -------------------------------------------------------------------------------- /appengine-java8/requests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/requests/pom.xml -------------------------------------------------------------------------------- /appengine-java8/search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/search/README.md -------------------------------------------------------------------------------- /appengine-java8/search/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/search/pom.xml -------------------------------------------------------------------------------- /appengine-java8/sendgrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/sendgrid/README.md -------------------------------------------------------------------------------- /appengine-java8/sendgrid/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/sendgrid/pom.xml -------------------------------------------------------------------------------- /appengine-java8/spanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/spanner/README.md -------------------------------------------------------------------------------- /appengine-java8/spanner/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/spanner/pom.xml -------------------------------------------------------------------------------- /appengine-java8/sparkjava-helloworld/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/sparkjava-helloworld/.gitignore -------------------------------------------------------------------------------- /appengine-java8/sparkjava-helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/sparkjava-helloworld/README.md -------------------------------------------------------------------------------- /appengine-java8/sparkjava-helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/sparkjava-helloworld/pom.xml -------------------------------------------------------------------------------- /appengine-java8/springboot-helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/springboot-helloworld/README.md -------------------------------------------------------------------------------- /appengine-java8/springboot-helloworld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/springboot-helloworld/mvnw -------------------------------------------------------------------------------- /appengine-java8/springboot-helloworld/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/springboot-helloworld/mvnw.cmd -------------------------------------------------------------------------------- /appengine-java8/springboot-helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/springboot-helloworld/pom.xml -------------------------------------------------------------------------------- /appengine-java8/static-files/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/static-files/pom.xml -------------------------------------------------------------------------------- /appengine-java8/taskqueues-deferred/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/taskqueues-deferred/README.md -------------------------------------------------------------------------------- /appengine-java8/taskqueues-deferred/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/taskqueues-deferred/pom.xml -------------------------------------------------------------------------------- /appengine-java8/taskqueues-pull/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/taskqueues-pull/README.md -------------------------------------------------------------------------------- /appengine-java8/taskqueues-pull/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/taskqueues-pull/pom.xml -------------------------------------------------------------------------------- /appengine-java8/taskqueues-push/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/taskqueues-push/README.md -------------------------------------------------------------------------------- /appengine-java8/taskqueues-push/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/taskqueues-push/pom.xml -------------------------------------------------------------------------------- /appengine-java8/tasks/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/tasks/app/README.md -------------------------------------------------------------------------------- /appengine-java8/tasks/app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/tasks/app/pom.xml -------------------------------------------------------------------------------- /appengine-java8/tasks/quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/tasks/quickstart/README.md -------------------------------------------------------------------------------- /appengine-java8/tasks/quickstart/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/tasks/quickstart/pom.xml -------------------------------------------------------------------------------- /appengine-java8/tasks/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/tasks/snippets/pom.xml -------------------------------------------------------------------------------- /appengine-java8/translate-pubsub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/translate-pubsub/README.md -------------------------------------------------------------------------------- /appengine-java8/translate-pubsub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/translate-pubsub/pom.xml -------------------------------------------------------------------------------- /appengine-java8/twilio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/twilio/README.md -------------------------------------------------------------------------------- /appengine-java8/twilio/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/twilio/pom.xml -------------------------------------------------------------------------------- /appengine-java8/urlfetch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/urlfetch/.gitignore -------------------------------------------------------------------------------- /appengine-java8/urlfetch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/urlfetch/README.md -------------------------------------------------------------------------------- /appengine-java8/urlfetch/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/urlfetch/pom.xml -------------------------------------------------------------------------------- /appengine-java8/users/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/users/README.md -------------------------------------------------------------------------------- /appengine-java8/users/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/appengine-java8/users/pom.xml -------------------------------------------------------------------------------- /asset/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/asset/pom.xml -------------------------------------------------------------------------------- /auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/auth/README.md -------------------------------------------------------------------------------- /auth/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/auth/pom.xml -------------------------------------------------------------------------------- /auth/src/main/java/CreateApiKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/auth/src/main/java/CreateApiKey.java -------------------------------------------------------------------------------- /auth/src/main/java/DeleteApiKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/auth/src/main/java/DeleteApiKey.java -------------------------------------------------------------------------------- /auth/src/main/java/LookupApiKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/auth/src/main/java/LookupApiKey.java -------------------------------------------------------------------------------- /auth/src/main/java/RestrictApiKeyAndroid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/auth/src/main/java/RestrictApiKeyAndroid.java -------------------------------------------------------------------------------- /auth/src/main/java/RestrictApiKeyApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/auth/src/main/java/RestrictApiKeyApi.java -------------------------------------------------------------------------------- /auth/src/main/java/RestrictApiKeyHttp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/auth/src/main/java/RestrictApiKeyHttp.java -------------------------------------------------------------------------------- /auth/src/main/java/RestrictApiKeyIos.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/auth/src/main/java/RestrictApiKeyIos.java -------------------------------------------------------------------------------- /auth/src/main/java/RestrictApiKeyServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/auth/src/main/java/RestrictApiKeyServer.java -------------------------------------------------------------------------------- /auth/src/main/java/UndeleteApiKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/auth/src/main/java/UndeleteApiKey.java -------------------------------------------------------------------------------- /auth/src/test/java/ApiKeySnippetsIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/auth/src/test/java/ApiKeySnippetsIT.java -------------------------------------------------------------------------------- /automl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/automl/pom.xml -------------------------------------------------------------------------------- /automl/resources/dandelion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/automl/resources/dandelion.jpg -------------------------------------------------------------------------------- /automl/resources/input.txt: -------------------------------------------------------------------------------- 1 | Tell me how this ends -------------------------------------------------------------------------------- /automl/resources/salad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/automl/resources/salad.jpg -------------------------------------------------------------------------------- /automl/resources/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/automl/resources/test.png -------------------------------------------------------------------------------- /automl/src/main/java/beta/automl/GetModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/automl/src/main/java/beta/automl/GetModel.java -------------------------------------------------------------------------------- /batch/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/batch/snippets/pom.xml -------------------------------------------------------------------------------- /bigquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigquery/README.md -------------------------------------------------------------------------------- /bigquery/bigqueryconnection/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigquery/bigqueryconnection/snippets/pom.xml -------------------------------------------------------------------------------- /bigquery/bigquerydatatransfer/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigquery/bigquerydatatransfer/snippets/pom.xml -------------------------------------------------------------------------------- /bigquery/bigqueryreservation/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigquery/bigqueryreservation/snippets/pom.xml -------------------------------------------------------------------------------- /bigquery/bigquerystorage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigquery/bigquerystorage/README.md -------------------------------------------------------------------------------- /bigquery/cloud-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigquery/cloud-client/README.md -------------------------------------------------------------------------------- /bigquery/cloud-client/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigquery/cloud-client/snippets/pom.xml -------------------------------------------------------------------------------- /bigquery/rest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigquery/rest/README.md -------------------------------------------------------------------------------- /bigtable/beam/bulk-data-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/beam/bulk-data-generator/README.md -------------------------------------------------------------------------------- /bigtable/beam/bulk-data-generator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/beam/bulk-data-generator/pom.xml -------------------------------------------------------------------------------- /bigtable/beam/change-streams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/beam/change-streams/README.md -------------------------------------------------------------------------------- /bigtable/beam/change-streams/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/beam/change-streams/pom.xml -------------------------------------------------------------------------------- /bigtable/beam/change-streams/song-rank-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/beam/change-streams/song-rank-data.csv -------------------------------------------------------------------------------- /bigtable/beam/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/beam/helloworld/README.md -------------------------------------------------------------------------------- /bigtable/beam/helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/beam/helloworld/pom.xml -------------------------------------------------------------------------------- /bigtable/beam/keyviz-art/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/beam/keyviz-art/README.md -------------------------------------------------------------------------------- /bigtable/beam/keyviz-art/mona_lisa_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/beam/keyviz-art/mona_lisa_example.png -------------------------------------------------------------------------------- /bigtable/beam/keyviz-art/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/beam/keyviz-art/pom.xml -------------------------------------------------------------------------------- /bigtable/beam/workload-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/beam/workload-generator/README.md -------------------------------------------------------------------------------- /bigtable/beam/workload-generator/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/beam/workload-generator/metadata.json -------------------------------------------------------------------------------- /bigtable/beam/workload-generator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/beam/workload-generator/pom.xml -------------------------------------------------------------------------------- /bigtable/bigtable-proxy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/bigtable-proxy/.gitignore -------------------------------------------------------------------------------- /bigtable/bigtable-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/bigtable-proxy/README.md -------------------------------------------------------------------------------- /bigtable/bigtable-proxy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/bigtable-proxy/pom.xml -------------------------------------------------------------------------------- /bigtable/cassandra-migration-codelab/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/cassandra-migration-codelab/pom.xml -------------------------------------------------------------------------------- /bigtable/hbase/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/hbase/snippets/pom.xml -------------------------------------------------------------------------------- /bigtable/memorystore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/memorystore/README.md -------------------------------------------------------------------------------- /bigtable/memorystore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/memorystore/pom.xml -------------------------------------------------------------------------------- /bigtable/scheduled-backups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/scheduled-backups/README.md -------------------------------------------------------------------------------- /bigtable/scheduled-backups/config/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/scheduled-backups/config/metrics.yaml -------------------------------------------------------------------------------- /bigtable/scheduled-backups/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/scheduled-backups/pom.xml -------------------------------------------------------------------------------- /bigtable/spark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/spark/README.md -------------------------------------------------------------------------------- /bigtable/spark/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/spark/build.sbt -------------------------------------------------------------------------------- /bigtable/spark/project/assembly.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/spark/project/assembly.sbt -------------------------------------------------------------------------------- /bigtable/spark/project/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/spark/project/build.properties -------------------------------------------------------------------------------- /bigtable/use-cases/fraudDetection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/use-cases/fraudDetection/README.md -------------------------------------------------------------------------------- /bigtable/use-cases/fraudDetection/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/bigtable/use-cases/fraudDetection/pom.xml -------------------------------------------------------------------------------- /cdn/signed-urls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cdn/signed-urls/README.md -------------------------------------------------------------------------------- /cdn/signed-urls/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cdn/signed-urls/pom.xml -------------------------------------------------------------------------------- /cloud-sql/mysql/client-side-encryption/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/mysql/client-side-encryption/pom.xml -------------------------------------------------------------------------------- /cloud-sql/mysql/servlet/.env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/mysql/servlet/.env.yaml -------------------------------------------------------------------------------- /cloud-sql/mysql/servlet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/mysql/servlet/README.md -------------------------------------------------------------------------------- /cloud-sql/mysql/servlet/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/mysql/servlet/deployment.yaml -------------------------------------------------------------------------------- /cloud-sql/mysql/servlet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/mysql/servlet/pom.xml -------------------------------------------------------------------------------- /cloud-sql/mysql/servlet/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/mysql/servlet/service-account.yaml -------------------------------------------------------------------------------- /cloud-sql/mysql/servlet/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/mysql/servlet/service.yaml -------------------------------------------------------------------------------- /cloud-sql/postgres/servlet/.env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/postgres/servlet/.env.yaml -------------------------------------------------------------------------------- /cloud-sql/postgres/servlet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/postgres/servlet/README.md -------------------------------------------------------------------------------- /cloud-sql/postgres/servlet/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/postgres/servlet/deployment.yaml -------------------------------------------------------------------------------- /cloud-sql/postgres/servlet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/postgres/servlet/pom.xml -------------------------------------------------------------------------------- /cloud-sql/postgres/servlet/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/postgres/servlet/service-account.yaml -------------------------------------------------------------------------------- /cloud-sql/postgres/servlet/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/postgres/servlet/service.yaml -------------------------------------------------------------------------------- /cloud-sql/r2dbc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/r2dbc/README.md -------------------------------------------------------------------------------- /cloud-sql/r2dbc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/r2dbc/pom.xml -------------------------------------------------------------------------------- /cloud-sql/r2dbc/src/main/appengine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/r2dbc/src/main/appengine/app.yaml -------------------------------------------------------------------------------- /cloud-sql/sqlserver/servlet/.env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/sqlserver/servlet/.env.yaml -------------------------------------------------------------------------------- /cloud-sql/sqlserver/servlet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/sqlserver/servlet/README.md -------------------------------------------------------------------------------- /cloud-sql/sqlserver/servlet/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/sqlserver/servlet/deployment.yaml -------------------------------------------------------------------------------- /cloud-sql/sqlserver/servlet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/sqlserver/servlet/pom.xml -------------------------------------------------------------------------------- /cloud-sql/sqlserver/servlet/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/cloud-sql/sqlserver/servlet/service.yaml -------------------------------------------------------------------------------- /compute/cloud-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/compute/cloud-client/pom.xml -------------------------------------------------------------------------------- /compute/cmdline/ComputeEngineSample.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/compute/cmdline/ComputeEngineSample.launch -------------------------------------------------------------------------------- /compute/cmdline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/compute/cmdline/README.md -------------------------------------------------------------------------------- /compute/cmdline/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/compute/cmdline/logging.properties -------------------------------------------------------------------------------- /compute/cmdline/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/compute/cmdline/pom.xml -------------------------------------------------------------------------------- /compute/error-reporting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/compute/error-reporting/README.md -------------------------------------------------------------------------------- /compute/error-reporting/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/compute/error-reporting/pom.xml -------------------------------------------------------------------------------- /compute/load-balancing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/compute/load-balancing/pom.xml -------------------------------------------------------------------------------- /compute/mailjet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/compute/mailjet/README.md -------------------------------------------------------------------------------- /compute/mailjet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/compute/mailjet/pom.xml -------------------------------------------------------------------------------- /compute/sendgrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/compute/sendgrid/README.md -------------------------------------------------------------------------------- /compute/sendgrid/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/compute/sendgrid/pom.xml -------------------------------------------------------------------------------- /compute/signed-metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/compute/signed-metadata/README.md -------------------------------------------------------------------------------- /compute/signed-metadata/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/compute/signed-metadata/pom.xml -------------------------------------------------------------------------------- /contact-center-insights/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/contact-center-insights/pom.xml -------------------------------------------------------------------------------- /container-registry/container-analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/container-registry/container-analysis/README.md -------------------------------------------------------------------------------- /container-registry/container-analysis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/container-registry/container-analysis/pom.xml -------------------------------------------------------------------------------- /content-warehouse/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/content-warehouse/pom.xml -------------------------------------------------------------------------------- /datacatalog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/datacatalog/README.md -------------------------------------------------------------------------------- /datacatalog/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/datacatalog/snippets/pom.xml -------------------------------------------------------------------------------- /dataflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataflow/README.md -------------------------------------------------------------------------------- /dataflow/encryption-keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataflow/encryption-keys/README.md -------------------------------------------------------------------------------- /dataflow/encryption-keys/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataflow/encryption-keys/pom.xml -------------------------------------------------------------------------------- /dataflow/flex-templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataflow/flex-templates/README.md -------------------------------------------------------------------------------- /dataflow/flex-templates/getting_started/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataflow/flex-templates/getting_started/pom.xml -------------------------------------------------------------------------------- /dataflow/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataflow/snippets/pom.xml -------------------------------------------------------------------------------- /dataflow/spanner-io/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataflow/spanner-io/pom.xml -------------------------------------------------------------------------------- /dataflow/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataflow/templates/README.md -------------------------------------------------------------------------------- /dataflow/templates/WordCount_metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataflow/templates/WordCount_metadata -------------------------------------------------------------------------------- /dataflow/templates/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataflow/templates/pom.xml -------------------------------------------------------------------------------- /datalabeling/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/datalabeling/snippets/pom.xml -------------------------------------------------------------------------------- /dataplex/quickstart/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataplex/quickstart/pom.xml -------------------------------------------------------------------------------- /dataplex/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataplex/snippets/pom.xml -------------------------------------------------------------------------------- /dataproc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataproc/pom.xml -------------------------------------------------------------------------------- /dataproc/src/main/java/CreateCluster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataproc/src/main/java/CreateCluster.java -------------------------------------------------------------------------------- /dataproc/src/main/java/Quickstart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataproc/src/main/java/Quickstart.java -------------------------------------------------------------------------------- /dataproc/src/main/java/SubmitHadoopFsJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataproc/src/main/java/SubmitHadoopFsJob.java -------------------------------------------------------------------------------- /dataproc/src/main/java/SubmitJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataproc/src/main/java/SubmitJob.java -------------------------------------------------------------------------------- /dataproc/src/test/java/CreateClusterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataproc/src/test/java/CreateClusterTest.java -------------------------------------------------------------------------------- /dataproc/src/test/java/QuickstartTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataproc/src/test/java/QuickstartTest.java -------------------------------------------------------------------------------- /dataproc/src/test/java/SubmitJobTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dataproc/src/test/java/SubmitJobTest.java -------------------------------------------------------------------------------- /dialogflow-cx/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dialogflow-cx/pom.xml -------------------------------------------------------------------------------- /dialogflow-cx/resources/book_a_room.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dialogflow-cx/resources/book_a_room.wav -------------------------------------------------------------------------------- /dialogflow/basic-webhook/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dialogflow/basic-webhook/pom.xml -------------------------------------------------------------------------------- /dialogflow/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dialogflow/snippets/pom.xml -------------------------------------------------------------------------------- /dialogflow/snippets/resources/230pm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dialogflow/snippets/resources/230pm.wav -------------------------------------------------------------------------------- /dialogflow/snippets/resources/book_a_room.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dialogflow/snippets/resources/book_a_room.wav -------------------------------------------------------------------------------- /dialogflow/snippets/resources/half_an_hour.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dialogflow/snippets/resources/half_an_hour.wav -------------------------------------------------------------------------------- /dialogflow/snippets/resources/mountain_view.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dialogflow/snippets/resources/mountain_view.wav -------------------------------------------------------------------------------- /dialogflow/snippets/resources/today.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dialogflow/snippets/resources/today.wav -------------------------------------------------------------------------------- /dialogflow/snippets/resources/two_people.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dialogflow/snippets/resources/two_people.wav -------------------------------------------------------------------------------- /discoveryengine/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/discoveryengine/pom.xml -------------------------------------------------------------------------------- /dlp/snippets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dlp/snippets/README.md -------------------------------------------------------------------------------- /dlp/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dlp/snippets/pom.xml -------------------------------------------------------------------------------- /dlp/snippets/src/test/resources/dates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dlp/snippets/src/test/resources/dates.csv -------------------------------------------------------------------------------- /dlp/snippets/src/test/resources/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/dlp/snippets/src/test/resources/test.png -------------------------------------------------------------------------------- /dlp/snippets/src/test/resources/test.txt: -------------------------------------------------------------------------------- 1 | My phone number is (223) 456-7890 and my email address is gary@example.com. -------------------------------------------------------------------------------- /document-ai/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/document-ai/pom.xml -------------------------------------------------------------------------------- /document-ai/resources/document_quality_poor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/document-ai/resources/document_quality_poor.pdf -------------------------------------------------------------------------------- /document-ai/resources/handwritten_form.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/document-ai/resources/handwritten_form.pdf -------------------------------------------------------------------------------- /document-ai/resources/invoice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/document-ai/resources/invoice.pdf -------------------------------------------------------------------------------- /document-ai/resources/multi_document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/document-ai/resources/multi_document.pdf -------------------------------------------------------------------------------- /document-ai/resources/us_driver_license.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/document-ai/resources/us_driver_license.pdf -------------------------------------------------------------------------------- /endpoints/bookstore-grpc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/bookstore-grpc/Dockerfile -------------------------------------------------------------------------------- /endpoints/bookstore-grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/bookstore-grpc/README.md -------------------------------------------------------------------------------- /endpoints/bookstore-grpc/api/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/bookstore-grpc/api/build.gradle -------------------------------------------------------------------------------- /endpoints/bookstore-grpc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/bookstore-grpc/build.gradle -------------------------------------------------------------------------------- /endpoints/bookstore-grpc/client/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/bookstore-grpc/client/build.gradle -------------------------------------------------------------------------------- /endpoints/bookstore-grpc/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/bookstore-grpc/gradlew -------------------------------------------------------------------------------- /endpoints/bookstore-grpc/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/bookstore-grpc/gradlew.bat -------------------------------------------------------------------------------- /endpoints/bookstore-grpc/server/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/bookstore-grpc/server/build.gradle -------------------------------------------------------------------------------- /endpoints/bookstore-grpc/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/bookstore-grpc/settings.gradle -------------------------------------------------------------------------------- /endpoints/getting-started-grpc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/getting-started-grpc/.gitignore -------------------------------------------------------------------------------- /endpoints/getting-started-grpc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/getting-started-grpc/Dockerfile -------------------------------------------------------------------------------- /endpoints/getting-started-grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/getting-started-grpc/README.md -------------------------------------------------------------------------------- /endpoints/getting-started-grpc/api/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/getting-started-grpc/api/build.gradle -------------------------------------------------------------------------------- /endpoints/getting-started-grpc/api_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/getting-started-grpc/api_config.yaml -------------------------------------------------------------------------------- /endpoints/getting-started-grpc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/getting-started-grpc/build.gradle -------------------------------------------------------------------------------- /endpoints/getting-started-grpc/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/getting-started-grpc/deployment.yaml -------------------------------------------------------------------------------- /endpoints/getting-started-grpc/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/getting-started-grpc/gradlew -------------------------------------------------------------------------------- /endpoints/getting-started-grpc/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/getting-started-grpc/gradlew.bat -------------------------------------------------------------------------------- /endpoints/getting-started-grpc/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/getting-started-grpc/settings.gradle -------------------------------------------------------------------------------- /endpoints/getting-started/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/getting-started/README.md -------------------------------------------------------------------------------- /endpoints/getting-started/clients/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/getting-started/clients/pom.xml -------------------------------------------------------------------------------- /endpoints/getting-started/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/getting-started/deployment.yaml -------------------------------------------------------------------------------- /endpoints/getting-started/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/getting-started/openapi.yaml -------------------------------------------------------------------------------- /endpoints/getting-started/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/getting-started/pom.xml -------------------------------------------------------------------------------- /endpoints/multiple-versions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/multiple-versions/README.md -------------------------------------------------------------------------------- /endpoints/multiple-versions/openapi-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/multiple-versions/openapi-v1.yaml -------------------------------------------------------------------------------- /endpoints/multiple-versions/openapi-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/multiple-versions/openapi-v2.yaml -------------------------------------------------------------------------------- /endpoints/multiple-versions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/endpoints/multiple-versions/pom.xml -------------------------------------------------------------------------------- /errorreporting/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/errorreporting/pom.xml -------------------------------------------------------------------------------- /eventarc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/eventarc/README.md -------------------------------------------------------------------------------- /eventarc/audit-storage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/eventarc/audit-storage/Dockerfile -------------------------------------------------------------------------------- /eventarc/audit-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/eventarc/audit-storage/README.md -------------------------------------------------------------------------------- /eventarc/audit-storage/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/eventarc/audit-storage/pom.xml -------------------------------------------------------------------------------- /eventarc/generic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/eventarc/generic/README.md -------------------------------------------------------------------------------- /eventarc/generic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/eventarc/generic/pom.xml -------------------------------------------------------------------------------- /eventarc/pubsub/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/eventarc/pubsub/Dockerfile -------------------------------------------------------------------------------- /eventarc/pubsub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/eventarc/pubsub/README.md -------------------------------------------------------------------------------- /eventarc/pubsub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/eventarc/pubsub/pom.xml -------------------------------------------------------------------------------- /eventarc/storage-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/eventarc/storage-handler/README.md -------------------------------------------------------------------------------- /eventarc/storage-handler/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/eventarc/storage-handler/pom.xml -------------------------------------------------------------------------------- /eventarc/storage-handler/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/eventarc/storage-handler/project.toml -------------------------------------------------------------------------------- /flexible/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/.gitignore -------------------------------------------------------------------------------- /flexible/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/CONTRIBUTING.md -------------------------------------------------------------------------------- /flexible/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/LICENSE -------------------------------------------------------------------------------- /flexible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/README.md -------------------------------------------------------------------------------- /flexible/README.mdpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/README.mdpp -------------------------------------------------------------------------------- /flexible/java-11/analytics/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-11/analytics/pom.xml -------------------------------------------------------------------------------- /flexible/java-11/cloudstorage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-11/cloudstorage/README.md -------------------------------------------------------------------------------- /flexible/java-11/cloudstorage/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-11/cloudstorage/pom.xml -------------------------------------------------------------------------------- /flexible/java-11/datastore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-11/datastore/pom.xml -------------------------------------------------------------------------------- /flexible/java-11/helloworld-war/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-11/helloworld-war/pom.xml -------------------------------------------------------------------------------- /flexible/java-11/pubsub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-11/pubsub/README.md -------------------------------------------------------------------------------- /flexible/java-11/pubsub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-11/pubsub/pom.xml -------------------------------------------------------------------------------- /flexible/java-11/pubsub/sample_message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-11/pubsub/sample_message.json -------------------------------------------------------------------------------- /flexible/java-11/springboot-helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-11/springboot-helloworld/pom.xml -------------------------------------------------------------------------------- /flexible/java-11/static-files/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-11/static-files/pom.xml -------------------------------------------------------------------------------- /flexible/java-11/websocket-jetty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-11/websocket-jetty/README.md -------------------------------------------------------------------------------- /flexible/java-11/websocket-jetty/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-11/websocket-jetty/pom.xml -------------------------------------------------------------------------------- /flexible/java-17/cloudstorage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-17/cloudstorage/README.md -------------------------------------------------------------------------------- /flexible/java-17/cloudstorage/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-17/cloudstorage/pom.xml -------------------------------------------------------------------------------- /flexible/java-17/datastore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-17/datastore/README.md -------------------------------------------------------------------------------- /flexible/java-17/datastore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-17/datastore/pom.xml -------------------------------------------------------------------------------- /flexible/java-17/micronaut-helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-17/micronaut-helloworld/README.md -------------------------------------------------------------------------------- /flexible/java-17/micronaut-helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-17/micronaut-helloworld/pom.xml -------------------------------------------------------------------------------- /flexible/java-17/websocket-jetty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-17/websocket-jetty/README.md -------------------------------------------------------------------------------- /flexible/java-17/websocket-jetty/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-17/websocket-jetty/pom.xml -------------------------------------------------------------------------------- /flexible/java-25/micronaut-helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-25/micronaut-helloworld/README.md -------------------------------------------------------------------------------- /flexible/java-25/micronaut-helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-25/micronaut-helloworld/pom.xml -------------------------------------------------------------------------------- /flexible/java-25/websocket-jetty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-25/websocket-jetty/README.md -------------------------------------------------------------------------------- /flexible/java-25/websocket-jetty/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-25/websocket-jetty/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/analytics/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/analytics/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/async-rest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/async-rest/README.md -------------------------------------------------------------------------------- /flexible/java-8/async-rest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/async-rest/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/cloudsql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/cloudsql/README.md -------------------------------------------------------------------------------- /flexible/java-8/cloudsql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/cloudsql/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/cloudstorage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/cloudstorage/README.md -------------------------------------------------------------------------------- /flexible/java-8/cloudstorage/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/cloudstorage/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/cron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/cron/README.md -------------------------------------------------------------------------------- /flexible/java-8/cron/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/cron/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/datastore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/datastore/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/disk/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/disk/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/errorreporting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/errorreporting/README.md -------------------------------------------------------------------------------- /flexible/java-8/errorreporting/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/errorreporting/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/extending-runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/extending-runtime/README.md -------------------------------------------------------------------------------- /flexible/java-8/extending-runtime/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/extending-runtime/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/helloworld-springboot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/helloworld-springboot/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/helloworld/README.md -------------------------------------------------------------------------------- /flexible/java-8/helloworld/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/helloworld/build.gradle -------------------------------------------------------------------------------- /flexible/java-8/helloworld/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/helloworld/gradlew -------------------------------------------------------------------------------- /flexible/java-8/helloworld/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/helloworld/gradlew.bat -------------------------------------------------------------------------------- /flexible/java-8/helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/helloworld/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/memcache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/memcache/README.md -------------------------------------------------------------------------------- /flexible/java-8/memcache/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/memcache/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/postgres/README.md -------------------------------------------------------------------------------- /flexible/java-8/postgres/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/postgres/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/pubsub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/pubsub/README.md -------------------------------------------------------------------------------- /flexible/java-8/pubsub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/pubsub/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/pubsub/sample_message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/pubsub/sample_message.json -------------------------------------------------------------------------------- /flexible/java-8/sparkjava/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/sparkjava/README.md -------------------------------------------------------------------------------- /flexible/java-8/sparkjava/jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/sparkjava/jenkins.sh -------------------------------------------------------------------------------- /flexible/java-8/sparkjava/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/sparkjava/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/static-files/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/static-files/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/twilio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/twilio/README.md -------------------------------------------------------------------------------- /flexible/java-8/twilio/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/twilio/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/websocket-jetty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/websocket-jetty/README.md -------------------------------------------------------------------------------- /flexible/java-8/websocket-jetty/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/websocket-jetty/pom.xml -------------------------------------------------------------------------------- /flexible/java-8/websocket-jsr356/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/websocket-jsr356/README.md -------------------------------------------------------------------------------- /flexible/java-8/websocket-jsr356/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/flexible/java-8/websocket-jsr356/pom.xml -------------------------------------------------------------------------------- /functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/README.md -------------------------------------------------------------------------------- /functions/concepts/after-timeout/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/concepts/after-timeout/pom.xml -------------------------------------------------------------------------------- /functions/concepts/env-vars/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/concepts/env-vars/pom.xml -------------------------------------------------------------------------------- /functions/concepts/execution-count/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/concepts/execution-count/pom.xml -------------------------------------------------------------------------------- /functions/concepts/file-system/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/concepts/file-system/pom.xml -------------------------------------------------------------------------------- /functions/concepts/lazy-fields/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/concepts/lazy-fields/pom.xml -------------------------------------------------------------------------------- /functions/concepts/retry-pubsub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/concepts/retry-pubsub/pom.xml -------------------------------------------------------------------------------- /functions/concepts/retry-timeout/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/concepts/retry-timeout/pom.xml -------------------------------------------------------------------------------- /functions/concepts/scopes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/concepts/scopes/pom.xml -------------------------------------------------------------------------------- /functions/firebase/auth/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/firebase/auth/pom.xml -------------------------------------------------------------------------------- /functions/firebase/firestore-reactive/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/firebase/firestore-reactive/pom.xml -------------------------------------------------------------------------------- /functions/firebase/firestore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/firebase/firestore/pom.xml -------------------------------------------------------------------------------- /functions/firebase/remote-config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/firebase/remote-config/pom.xml -------------------------------------------------------------------------------- /functions/firebase/rtdb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/firebase/rtdb/pom.xml -------------------------------------------------------------------------------- /functions/helloworld/hello-error/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/helloworld/hello-error/pom.xml -------------------------------------------------------------------------------- /functions/helloworld/hello-gcs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/helloworld/hello-gcs/pom.xml -------------------------------------------------------------------------------- /functions/helloworld/hello-http/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/helloworld/hello-http/pom.xml -------------------------------------------------------------------------------- /functions/helloworld/hello-pubsub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/helloworld/hello-pubsub/pom.xml -------------------------------------------------------------------------------- /functions/helloworld/helloworld-gradle/.gitignore: -------------------------------------------------------------------------------- 1 | !gradle/wrapper/*.jar 2 | -------------------------------------------------------------------------------- /functions/helloworld/helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/helloworld/helloworld/pom.xml -------------------------------------------------------------------------------- /functions/helloworld/scala-helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/helloworld/scala-helloworld/pom.xml -------------------------------------------------------------------------------- /functions/http/bearer-token-http/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/http/bearer-token-http/pom.xml -------------------------------------------------------------------------------- /functions/http/cors-enabled-auth/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/http/cors-enabled-auth/pom.xml -------------------------------------------------------------------------------- /functions/http/cors-enabled/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/http/cors-enabled/pom.xml -------------------------------------------------------------------------------- /functions/http/http-form-data/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/http/http-form-data/pom.xml -------------------------------------------------------------------------------- /functions/http/http-method/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/http/http-method/pom.xml -------------------------------------------------------------------------------- /functions/http/parse-content-type/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/http/parse-content-type/pom.xml -------------------------------------------------------------------------------- /functions/http/parse-xml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/http/parse-xml/pom.xml -------------------------------------------------------------------------------- /functions/http/send-http-request/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/http/send-http-request/pom.xml -------------------------------------------------------------------------------- /functions/imagemagick/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/imagemagick/pom.xml -------------------------------------------------------------------------------- /functions/logging/log-helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/logging/log-helloworld/pom.xml -------------------------------------------------------------------------------- /functions/logging/stackdriver-logging/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/logging/stackdriver-logging/pom.xml -------------------------------------------------------------------------------- /functions/ocr/ocr-process-image/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/ocr/ocr-process-image/pom.xml -------------------------------------------------------------------------------- /functions/ocr/ocr-save-result/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/ocr/ocr-save-result/pom.xml -------------------------------------------------------------------------------- /functions/ocr/ocr-translate-text/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/ocr/ocr-translate-text/pom.xml -------------------------------------------------------------------------------- /functions/pubsub/publish-message/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/pubsub/publish-message/pom.xml -------------------------------------------------------------------------------- /functions/pubsub/subscribe-to-topic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/pubsub/subscribe-to-topic/pom.xml -------------------------------------------------------------------------------- /functions/slack/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/slack/pom.xml -------------------------------------------------------------------------------- /functions/spanner/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/spanner/pom.xml -------------------------------------------------------------------------------- /functions/v2/concepts/retry-pubsub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/concepts/retry-pubsub/pom.xml -------------------------------------------------------------------------------- /functions/v2/concepts/retry-timeout/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/concepts/retry-timeout/pom.xml -------------------------------------------------------------------------------- /functions/v2/datastore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/datastore/pom.xml -------------------------------------------------------------------------------- /functions/v2/firebase/firestore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/firebase/firestore/pom.xml -------------------------------------------------------------------------------- /functions/v2/firebase/remote-config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/firebase/remote-config/pom.xml -------------------------------------------------------------------------------- /functions/v2/firebase/rtdb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/firebase/rtdb/pom.xml -------------------------------------------------------------------------------- /functions/v2/hello-gcs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/hello-gcs/pom.xml -------------------------------------------------------------------------------- /functions/v2/imagemagick/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/imagemagick/pom.xml -------------------------------------------------------------------------------- /functions/v2/imagemagick/zombie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/imagemagick/zombie.jpg -------------------------------------------------------------------------------- /functions/v2/label-compute-instance/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/label-compute-instance/pom.xml -------------------------------------------------------------------------------- /functions/v2/log-cloudevent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/log-cloudevent/pom.xml -------------------------------------------------------------------------------- /functions/v2/ocr/ocr-process-image/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/ocr/ocr-process-image/pom.xml -------------------------------------------------------------------------------- /functions/v2/ocr/ocr-save-result/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/ocr/ocr-save-result/pom.xml -------------------------------------------------------------------------------- /functions/v2/ocr/ocr-translate-text/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/ocr/ocr-translate-text/pom.xml -------------------------------------------------------------------------------- /functions/v2/pubsub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/pubsub/pom.xml -------------------------------------------------------------------------------- /functions/v2/response-streaming/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/response-streaming/pom.xml -------------------------------------------------------------------------------- /functions/v2/typed/greeting/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/functions/v2/typed/greeting/pom.xml -------------------------------------------------------------------------------- /genai/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/genai/snippets/pom.xml -------------------------------------------------------------------------------- /genai/snippets/resources/latte.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/genai/snippets/resources/latte.jpg -------------------------------------------------------------------------------- /genai/snippets/resources/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/genai/snippets/resources/man.png -------------------------------------------------------------------------------- /genai/snippets/resources/scones.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/genai/snippets/resources/scones.jpg -------------------------------------------------------------------------------- /genai/snippets/resources/sweater.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/genai/snippets/resources/sweater.jpg -------------------------------------------------------------------------------- /healthcare/v1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/healthcare/v1/pom.xml -------------------------------------------------------------------------------- /iam/api-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/api-client/README.md -------------------------------------------------------------------------------- /iam/api-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/api-client/pom.xml -------------------------------------------------------------------------------- /iam/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/pom.xml -------------------------------------------------------------------------------- /iam/snippets/src/main/java/AddBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/src/main/java/AddBinding.java -------------------------------------------------------------------------------- /iam/snippets/src/main/java/AddMember.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/src/main/java/AddMember.java -------------------------------------------------------------------------------- /iam/snippets/src/main/java/CreateRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/src/main/java/CreateRole.java -------------------------------------------------------------------------------- /iam/snippets/src/main/java/DeleteRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/src/main/java/DeleteRole.java -------------------------------------------------------------------------------- /iam/snippets/src/main/java/DisableRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/src/main/java/DisableRole.java -------------------------------------------------------------------------------- /iam/snippets/src/main/java/EditRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/src/main/java/EditRole.java -------------------------------------------------------------------------------- /iam/snippets/src/main/java/GetDenyPolicy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/src/main/java/GetDenyPolicy.java -------------------------------------------------------------------------------- /iam/snippets/src/main/java/GetRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/src/main/java/GetRole.java -------------------------------------------------------------------------------- /iam/snippets/src/main/java/ListRoles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/src/main/java/ListRoles.java -------------------------------------------------------------------------------- /iam/snippets/src/main/java/Quickstart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/src/main/java/Quickstart.java -------------------------------------------------------------------------------- /iam/snippets/src/main/java/RemoveMember.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/src/main/java/RemoveMember.java -------------------------------------------------------------------------------- /iam/snippets/src/main/java/UndeleteRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/src/main/java/UndeleteRole.java -------------------------------------------------------------------------------- /iam/snippets/src/test/java/AccessTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/src/test/java/AccessTests.java -------------------------------------------------------------------------------- /iam/snippets/src/test/java/DenyIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/src/test/java/DenyIT.java -------------------------------------------------------------------------------- /iam/snippets/src/test/java/RoleIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/src/test/java/RoleIT.java -------------------------------------------------------------------------------- /iam/snippets/src/test/java/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iam/snippets/src/test/java/Util.java -------------------------------------------------------------------------------- /iap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iap/README.md -------------------------------------------------------------------------------- /iap/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iap/pom.xml -------------------------------------------------------------------------------- /iot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/iot/README.md -------------------------------------------------------------------------------- /jobs/v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/jobs/v3/README.md -------------------------------------------------------------------------------- /jobs/v3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/jobs/v3/pom.xml -------------------------------------------------------------------------------- /jobs/v3/src/test/java/SampleTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/jobs/v3/src/test/java/SampleTests.java -------------------------------------------------------------------------------- /jobs/v4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/jobs/v4/pom.xml -------------------------------------------------------------------------------- /kms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/README.md -------------------------------------------------------------------------------- /kms/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/pom.xml -------------------------------------------------------------------------------- /kms/src/main/java/kms/CreateImportJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/CreateImportJob.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/CreateKeyForImport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/CreateKeyForImport.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/CreateKeyHsm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/CreateKeyHsm.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/CreateKeyLabels.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/CreateKeyLabels.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/CreateKeyMac.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/CreateKeyMac.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/CreateKeyRing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/CreateKeyRing.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/CreateKeyVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/CreateKeyVersion.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/DecryptAsymmetric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/DecryptAsymmetric.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/DecryptSymmetric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/DecryptSymmetric.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/DestroyKeyVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/DestroyKeyVersion.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/DisableKeyVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/DisableKeyVersion.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/EnableKeyVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/EnableKeyVersion.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/EncryptAsymmetric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/EncryptAsymmetric.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/EncryptSymmetric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/EncryptSymmetric.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/GetKeyLabels.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/GetKeyLabels.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/GetPublicKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/GetPublicKey.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/IamAddMember.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/IamAddMember.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/IamGetPolicy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/IamGetPolicy.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/IamRemoveMember.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/IamRemoveMember.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/Quickstart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/Quickstart.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/RestoreKeyVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/RestoreKeyVersion.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/SignAsymmetric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/SignAsymmetric.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/SignMac.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/SignMac.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/VerifyAsymmetricEc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/VerifyAsymmetricEc.java -------------------------------------------------------------------------------- /kms/src/main/java/kms/VerifyMac.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/main/java/kms/VerifyMac.java -------------------------------------------------------------------------------- /kms/src/test/java/kms/SnippetsIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/kms/src/test/java/kms/SnippetsIT.java -------------------------------------------------------------------------------- /language/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/language/README.md -------------------------------------------------------------------------------- /language/cloud-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/language/cloud-client/README.md -------------------------------------------------------------------------------- /language/cloud-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/language/cloud-client/pom.xml -------------------------------------------------------------------------------- /language/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/language/snippets/pom.xml -------------------------------------------------------------------------------- /managedkafka/examples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/managedkafka/examples/pom.xml -------------------------------------------------------------------------------- /media/livestream/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/media/livestream/pom.xml -------------------------------------------------------------------------------- /media/stitcher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/media/stitcher/pom.xml -------------------------------------------------------------------------------- /media/transcoder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/media/transcoder/pom.xml -------------------------------------------------------------------------------- /media_cdn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/media_cdn/README.md -------------------------------------------------------------------------------- /media_cdn/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/media_cdn/pom.xml -------------------------------------------------------------------------------- /media_cdn/src/main/java/token/DualToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/media_cdn/src/main/java/token/DualToken.java -------------------------------------------------------------------------------- /mediatranslation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/mediatranslation/README.md -------------------------------------------------------------------------------- /mediatranslation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/mediatranslation/pom.xml -------------------------------------------------------------------------------- /mediatranslation/resources/audio.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/mediatranslation/resources/audio.raw -------------------------------------------------------------------------------- /memorystore/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/memorystore/redis/README.md -------------------------------------------------------------------------------- /memorystore/redis/gce_deployment/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/memorystore/redis/gce_deployment/deploy.sh -------------------------------------------------------------------------------- /memorystore/redis/gce_deployment/teardown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/memorystore/redis/gce_deployment/teardown.sh -------------------------------------------------------------------------------- /memorystore/redis/gke_deployment/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/memorystore/redis/gke_deployment/Dockerfile -------------------------------------------------------------------------------- /memorystore/redis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/memorystore/redis/pom.xml -------------------------------------------------------------------------------- /mlengine/online-prediction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/mlengine/online-prediction/README.md -------------------------------------------------------------------------------- /mlengine/online-prediction/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/mlengine/online-prediction/input.txt -------------------------------------------------------------------------------- /mlengine/online-prediction/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/mlengine/online-prediction/pom.xml -------------------------------------------------------------------------------- /modelarmor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/modelarmor/pom.xml -------------------------------------------------------------------------------- /modelarmor/src/main/resources/test_sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/modelarmor/src/main/resources/test_sample.pdf -------------------------------------------------------------------------------- /monitoring/cloud-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/monitoring/cloud-client/README.md -------------------------------------------------------------------------------- /monitoring/cloud-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/monitoring/cloud-client/pom.xml -------------------------------------------------------------------------------- /monitoring/prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/monitoring/prometheus/README.md -------------------------------------------------------------------------------- /monitoring/prometheus/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/monitoring/prometheus/pom.xml -------------------------------------------------------------------------------- /monitoring/v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/monitoring/v3/README.md -------------------------------------------------------------------------------- /monitoring/v3/manage_alerts_sample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/monitoring/v3/manage_alerts_sample.sh -------------------------------------------------------------------------------- /monitoring/v3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/monitoring/v3/pom.xml -------------------------------------------------------------------------------- /optimization/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/optimization/snippets/pom.xml -------------------------------------------------------------------------------- /parametermanager/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/parametermanager/pom.xml -------------------------------------------------------------------------------- /privateca/snippets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/privateca/snippets/README.md -------------------------------------------------------------------------------- /privateca/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/privateca/snippets/pom.xml -------------------------------------------------------------------------------- /pubsub/cloud-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/pubsub/cloud-client/README.md -------------------------------------------------------------------------------- /pubsub/spring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/pubsub/spring/README.md -------------------------------------------------------------------------------- /pubsub/spring/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/pubsub/spring/build.gradle -------------------------------------------------------------------------------- /pubsub/spring/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/pubsub/spring/pom.xml -------------------------------------------------------------------------------- /pubsub/streaming-analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/pubsub/streaming-analytics/README.md -------------------------------------------------------------------------------- /pubsub/streaming-analytics/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/pubsub/streaming-analytics/build.gradle -------------------------------------------------------------------------------- /pubsub/streaming-analytics/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/pubsub/streaming-analytics/pom.xml -------------------------------------------------------------------------------- /pubsublite/streaming-analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/pubsublite/streaming-analytics/README.md -------------------------------------------------------------------------------- /pubsublite/streaming-analytics/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/pubsublite/streaming-analytics/build.gradle -------------------------------------------------------------------------------- /pubsublite/streaming-analytics/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/pubsublite/streaming-analytics/metadata.json -------------------------------------------------------------------------------- /pubsublite/streaming-analytics/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/pubsublite/streaming-analytics/pom.xml -------------------------------------------------------------------------------- /recaptcha_enterprise/demosite/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/recaptcha_enterprise/demosite/Dockerfile -------------------------------------------------------------------------------- /recaptcha_enterprise/demosite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/recaptcha_enterprise/demosite/README.md -------------------------------------------------------------------------------- /recaptcha_enterprise/demosite/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/recaptcha_enterprise/demosite/pom.xml -------------------------------------------------------------------------------- /recaptcha_enterprise/snippets/src/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/recaptcha_enterprise/snippets/src/pom.xml -------------------------------------------------------------------------------- /retail/interactive-tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/retail/interactive-tutorials/README.md -------------------------------------------------------------------------------- /retail/interactive-tutorials/images/tutorail1.img: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /retail/interactive-tutorials/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/retail/interactive-tutorials/pom.xml -------------------------------------------------------------------------------- /routeoptimization/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/routeoptimization/snippets/pom.xml -------------------------------------------------------------------------------- /run/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/README.md -------------------------------------------------------------------------------- /run/authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/authentication/README.md -------------------------------------------------------------------------------- /run/authentication/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/authentication/pom.xml -------------------------------------------------------------------------------- /run/endpoints-v2-backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/endpoints-v2-backend/README.md -------------------------------------------------------------------------------- /run/endpoints-v2-backend/openapi-run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/endpoints-v2-backend/openapi-run.yaml -------------------------------------------------------------------------------- /run/endpoints-v2-backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/endpoints-v2-backend/pom.xml -------------------------------------------------------------------------------- /run/hello-broken/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/hello-broken/README.md -------------------------------------------------------------------------------- /run/hello-broken/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/hello-broken/pom.xml -------------------------------------------------------------------------------- /run/helloworld/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/helloworld/.dockerignore -------------------------------------------------------------------------------- /run/helloworld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/helloworld/Dockerfile -------------------------------------------------------------------------------- /run/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/helloworld/README.md -------------------------------------------------------------------------------- /run/helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/helloworld/pom.xml -------------------------------------------------------------------------------- /run/idp-sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/idp-sql/README.md -------------------------------------------------------------------------------- /run/idp-sql/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/idp-sql/app.json -------------------------------------------------------------------------------- /run/idp-sql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/idp-sql/pom.xml -------------------------------------------------------------------------------- /run/idp-sql/postcreate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/idp-sql/postcreate.sh -------------------------------------------------------------------------------- /run/idp-sql/postgres-secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/idp-sql/postgres-secrets.json -------------------------------------------------------------------------------- /run/idp-sql/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/idp-sql/setup.sh -------------------------------------------------------------------------------- /run/idp-sql/src/main/resources/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/idp-sql/src/main/resources/schema.sql -------------------------------------------------------------------------------- /run/image-processing/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/image-processing/Dockerfile -------------------------------------------------------------------------------- /run/image-processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/image-processing/README.md -------------------------------------------------------------------------------- /run/image-processing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/image-processing/pom.xml -------------------------------------------------------------------------------- /run/jobs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/jobs/README.md -------------------------------------------------------------------------------- /run/jobs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/jobs/pom.xml -------------------------------------------------------------------------------- /run/jobs/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/jobs/project.toml -------------------------------------------------------------------------------- /run/logging-manual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/logging-manual/README.md -------------------------------------------------------------------------------- /run/logging-manual/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/logging-manual/pom.xml -------------------------------------------------------------------------------- /run/markdown-preview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/markdown-preview/README.md -------------------------------------------------------------------------------- /run/markdown-preview/editor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/markdown-preview/editor/pom.xml -------------------------------------------------------------------------------- /run/markdown-preview/renderer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/markdown-preview/renderer/pom.xml -------------------------------------------------------------------------------- /run/pubsub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/pubsub/README.md -------------------------------------------------------------------------------- /run/pubsub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/pubsub/pom.xml -------------------------------------------------------------------------------- /run/system-package/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/system-package/Dockerfile -------------------------------------------------------------------------------- /run/system-package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/system-package/README.md -------------------------------------------------------------------------------- /run/system-package/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/run/system-package/pom.xml -------------------------------------------------------------------------------- /secretmanager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/secretmanager/README.md -------------------------------------------------------------------------------- /secretmanager/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/secretmanager/pom.xml -------------------------------------------------------------------------------- /security-command-center/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/security-command-center/snippets/pom.xml -------------------------------------------------------------------------------- /servicedirectory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/servicedirectory/README.md -------------------------------------------------------------------------------- /servicedirectory/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/servicedirectory/pom.xml -------------------------------------------------------------------------------- /session-handling/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/session-handling/pom.xml -------------------------------------------------------------------------------- /spanner/changestreams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/changestreams/README.md -------------------------------------------------------------------------------- /spanner/changestreams/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/changestreams/pom.xml -------------------------------------------------------------------------------- /spanner/cloud-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/cloud-client/README.md -------------------------------------------------------------------------------- /spanner/hibernate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/hibernate/README.md -------------------------------------------------------------------------------- /spanner/hibernate/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/hibernate/pom.xml -------------------------------------------------------------------------------- /spanner/jdbc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/jdbc/README.md -------------------------------------------------------------------------------- /spanner/jdbc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/jdbc/pom.xml -------------------------------------------------------------------------------- /spanner/jdbc/src/test/resources/singers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/jdbc/src/test/resources/singers.csv -------------------------------------------------------------------------------- /spanner/leaderboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/leaderboard/README.md -------------------------------------------------------------------------------- /spanner/leaderboard/complete/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/leaderboard/complete/pom.xml -------------------------------------------------------------------------------- /spanner/leaderboard/step4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/leaderboard/step4/pom.xml -------------------------------------------------------------------------------- /spanner/leaderboard/step5/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/leaderboard/step5/pom.xml -------------------------------------------------------------------------------- /spanner/leaderboard/step6/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/leaderboard/step6/pom.xml -------------------------------------------------------------------------------- /spanner/opencensus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/opencensus/README.md -------------------------------------------------------------------------------- /spanner/opencensus/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/opencensus/pom.xml -------------------------------------------------------------------------------- /spanner/opentelemetry/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/opentelemetry/pom.xml -------------------------------------------------------------------------------- /spanner/opentelemetry_traces/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/opentelemetry_traces/Readme.md -------------------------------------------------------------------------------- /spanner/opentelemetry_traces/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/opentelemetry_traces/pom.xml -------------------------------------------------------------------------------- /spanner/r2dbc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/r2dbc/README.md -------------------------------------------------------------------------------- /spanner/r2dbc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/r2dbc/pom.xml -------------------------------------------------------------------------------- /spanner/spring-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/spring-data/README.md -------------------------------------------------------------------------------- /spanner/spring-data/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/spanner/spring-data/pom.xml -------------------------------------------------------------------------------- /speech/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/speech/pom.xml -------------------------------------------------------------------------------- /speech/resources/Google_Gnome.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/speech/resources/Google_Gnome.wav -------------------------------------------------------------------------------- /speech/resources/audio.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/speech/resources/audio.raw -------------------------------------------------------------------------------- /speech/resources/commercial_mono.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/speech/resources/commercial_mono.wav -------------------------------------------------------------------------------- /speech/resources/commercial_stereo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/speech/resources/commercial_stereo.wav -------------------------------------------------------------------------------- /storage-transfer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/storage-transfer/pom.xml -------------------------------------------------------------------------------- /storage/cloud-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/storage/cloud-client/README.md -------------------------------------------------------------------------------- /storage/cloud-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/storage/cloud-client/pom.xml -------------------------------------------------------------------------------- /storage/s3-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/storage/s3-sdk/README.md -------------------------------------------------------------------------------- /storage/s3-sdk/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/storage/s3-sdk/pom.xml -------------------------------------------------------------------------------- /storageinsights/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/storageinsights/pom.xml -------------------------------------------------------------------------------- /talent/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/talent/snippets/pom.xml -------------------------------------------------------------------------------- /tasks/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/tasks/snippets/pom.xml -------------------------------------------------------------------------------- /texttospeech/beta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/texttospeech/beta/README.md -------------------------------------------------------------------------------- /texttospeech/beta/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/texttospeech/beta/pom.xml -------------------------------------------------------------------------------- /texttospeech/beta/resources/hello.ssml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/texttospeech/beta/resources/hello.ssml -------------------------------------------------------------------------------- /texttospeech/beta/resources/hello.txt: -------------------------------------------------------------------------------- 1 | Hello there! 2 | -------------------------------------------------------------------------------- /texttospeech/cloud-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/texttospeech/cloud-client/README.md -------------------------------------------------------------------------------- /texttospeech/cloud-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/texttospeech/cloud-client/pom.xml -------------------------------------------------------------------------------- /texttospeech/cloud-client/resources/hello.txt: -------------------------------------------------------------------------------- 1 | Hello there! 2 | -------------------------------------------------------------------------------- /texttospeech/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/texttospeech/snippets/pom.xml -------------------------------------------------------------------------------- /texttospeech/snippets/resources/example.ssml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/texttospeech/snippets/resources/example.ssml -------------------------------------------------------------------------------- /texttospeech/snippets/resources/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/texttospeech/snippets/resources/example.txt -------------------------------------------------------------------------------- /texttospeech/snippets/resources/hello.ssml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/texttospeech/snippets/resources/hello.ssml -------------------------------------------------------------------------------- /texttospeech/snippets/resources/hello.txt: -------------------------------------------------------------------------------- 1 | Hello there! 2 | -------------------------------------------------------------------------------- /tpu/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/tpu/pom.xml -------------------------------------------------------------------------------- /tpu/src/main/java/tpu/CreateSpotTpuVm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/tpu/src/main/java/tpu/CreateSpotTpuVm.java -------------------------------------------------------------------------------- /tpu/src/main/java/tpu/CreateTpuVm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/tpu/src/main/java/tpu/CreateTpuVm.java -------------------------------------------------------------------------------- /tpu/src/main/java/tpu/DeleteTpuVm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/tpu/src/main/java/tpu/DeleteTpuVm.java -------------------------------------------------------------------------------- /tpu/src/main/java/tpu/GetQueuedResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/tpu/src/main/java/tpu/GetQueuedResource.java -------------------------------------------------------------------------------- /tpu/src/main/java/tpu/GetTpuVm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/tpu/src/main/java/tpu/GetTpuVm.java -------------------------------------------------------------------------------- /tpu/src/main/java/tpu/ListTpuVms.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/tpu/src/main/java/tpu/ListTpuVms.java -------------------------------------------------------------------------------- /tpu/src/main/java/tpu/StartTpuVm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/tpu/src/main/java/tpu/StartTpuVm.java -------------------------------------------------------------------------------- /tpu/src/main/java/tpu/StopTpuVm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/tpu/src/main/java/tpu/StopTpuVm.java -------------------------------------------------------------------------------- /tpu/src/test/java/tpu/QueuedResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/tpu/src/test/java/tpu/QueuedResourceIT.java -------------------------------------------------------------------------------- /tpu/src/test/java/tpu/TpuVmIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/tpu/src/test/java/tpu/TpuVmIT.java -------------------------------------------------------------------------------- /translate/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/translate/pom.xml -------------------------------------------------------------------------------- /translate/resources/fake_invoice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/translate/resources/fake_invoice.pdf -------------------------------------------------------------------------------- /unittests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/unittests/README.md -------------------------------------------------------------------------------- /unittests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/unittests/pom.xml -------------------------------------------------------------------------------- /unittests/src/main/webapp/WEB-INF/queue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/unittests/src/main/webapp/WEB-INF/queue.xml -------------------------------------------------------------------------------- /unittests/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/unittests/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /vertexai/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vertexai/snippets/pom.xml -------------------------------------------------------------------------------- /video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/README.md -------------------------------------------------------------------------------- /video/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/pom.xml -------------------------------------------------------------------------------- /video/resources/cat.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/resources/cat.mp4 -------------------------------------------------------------------------------- /video/resources/googlework_short.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/resources/googlework_short.mp4 -------------------------------------------------------------------------------- /video/src/main/java/video/Detect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/src/main/java/video/Detect.java -------------------------------------------------------------------------------- /video/src/main/java/video/DetectFaces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/src/main/java/video/DetectFaces.java -------------------------------------------------------------------------------- /video/src/main/java/video/DetectFacesGcs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/src/main/java/video/DetectFacesGcs.java -------------------------------------------------------------------------------- /video/src/main/java/video/DetectPerson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/src/main/java/video/DetectPerson.java -------------------------------------------------------------------------------- /video/src/main/java/video/LogoDetection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/src/main/java/video/LogoDetection.java -------------------------------------------------------------------------------- /video/src/main/java/video/TextDetection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/src/main/java/video/TextDetection.java -------------------------------------------------------------------------------- /video/src/main/java/video/TrackObjects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/src/main/java/video/TrackObjects.java -------------------------------------------------------------------------------- /video/src/test/java/video/DetectFacesIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/src/test/java/video/DetectFacesIT.java -------------------------------------------------------------------------------- /video/src/test/java/video/DetectIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/src/test/java/video/DetectIT.java -------------------------------------------------------------------------------- /video/src/test/java/video/DetectLogoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/src/test/java/video/DetectLogoTest.java -------------------------------------------------------------------------------- /video/src/test/java/video/DetectPersonIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/src/test/java/video/DetectPersonIT.java -------------------------------------------------------------------------------- /video/src/test/java/video/DetectTextTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/src/test/java/video/DetectTextTest.java -------------------------------------------------------------------------------- /video/src/test/java/video/QuickstartIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/video/src/test/java/video/QuickstartIT.java -------------------------------------------------------------------------------- /vision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/README.md -------------------------------------------------------------------------------- /vision/automl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/automl/README.md -------------------------------------------------------------------------------- /vision/face-detection/.gitignore: -------------------------------------------------------------------------------- 1 | output.jpg 2 | -------------------------------------------------------------------------------- /vision/face-detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/face-detection/README.md -------------------------------------------------------------------------------- /vision/face-detection/data/bad.txt: -------------------------------------------------------------------------------- 1 | I am not an image. Labelling shouldn't work on me. 2 | -------------------------------------------------------------------------------- /vision/face-detection/data/face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/face-detection/data/face.jpg -------------------------------------------------------------------------------- /vision/face-detection/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/face-detection/pom.xml -------------------------------------------------------------------------------- /vision/snippets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/snippets/pom.xml -------------------------------------------------------------------------------- /vision/snippets/resources/city.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/snippets/resources/city.jpg -------------------------------------------------------------------------------- /vision/snippets/resources/gcp-logos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/snippets/resources/gcp-logos.png -------------------------------------------------------------------------------- /vision/snippets/resources/handwritten.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/snippets/resources/handwritten.jpg -------------------------------------------------------------------------------- /vision/snippets/resources/kafka.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/snippets/resources/kafka.pdf -------------------------------------------------------------------------------- /vision/snippets/resources/landmark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/snippets/resources/landmark.jpg -------------------------------------------------------------------------------- /vision/snippets/resources/logos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/snippets/resources/logos.png -------------------------------------------------------------------------------- /vision/snippets/resources/product_sets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/snippets/resources/product_sets.csv -------------------------------------------------------------------------------- /vision/snippets/resources/puppies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/snippets/resources/puppies.jpg -------------------------------------------------------------------------------- /vision/snippets/resources/shoes_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/snippets/resources/shoes_1.jpg -------------------------------------------------------------------------------- /vision/snippets/resources/shoes_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/snippets/resources/shoes_2.jpg -------------------------------------------------------------------------------- /vision/snippets/resources/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/snippets/resources/text.jpg -------------------------------------------------------------------------------- /vision/snippets/resources/wakeupcat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/snippets/resources/wakeupcat.jpg -------------------------------------------------------------------------------- /vision/spring-framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/spring-framework/README.md -------------------------------------------------------------------------------- /vision/spring-framework/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/vision/spring-framework/pom.xml -------------------------------------------------------------------------------- /webrisk/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/webrisk/pom.xml -------------------------------------------------------------------------------- /webrisk/src/main/java/webrisk/SearchUri.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/webrisk/src/main/java/webrisk/SearchUri.java -------------------------------------------------------------------------------- /webrisk/src/main/java/webrisk/SubmitUri.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/webrisk/src/main/java/webrisk/SubmitUri.java -------------------------------------------------------------------------------- /webrisk/src/test/java/webrisk/SnippetsIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/webrisk/src/test/java/webrisk/SnippetsIT.java -------------------------------------------------------------------------------- /workflows/cloud-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/workflows/cloud-client/README.md -------------------------------------------------------------------------------- /workflows/cloud-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/java-docs-samples/HEAD/workflows/cloud-client/pom.xml --------------------------------------------------------------------------------