All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.dataflow.v1beta3.stub.HttpJsonJobsV1Beta3Stub Maven / Gradle / Ivy

Go to download

Dataflow is a managed service for executing a wide variety of data processing patterns.

There is a newer version: 0.57.0
Show newest version
/*
 * Copyright 2024 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.dataflow.v1beta3.stub;

import static com.google.dataflow.v1beta3.JobsV1Beta3Client.AggregatedListJobsPagedResponse;
import static com.google.dataflow.v1beta3.JobsV1Beta3Client.ListJobsPagedResponse;

import com.google.api.core.BetaApi;
import com.google.api.core.InternalApi;
import com.google.api.gax.core.BackgroundResource;
import com.google.api.gax.core.BackgroundResourceAggregation;
import com.google.api.gax.httpjson.ApiMethodDescriptor;
import com.google.api.gax.httpjson.HttpJsonCallSettings;
import com.google.api.gax.httpjson.HttpJsonStubCallableFactory;
import com.google.api.gax.httpjson.ProtoMessageRequestFormatter;
import com.google.api.gax.httpjson.ProtoMessageResponseParser;
import com.google.api.gax.httpjson.ProtoRestSerializer;
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.RequestParamsBuilder;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.dataflow.v1beta3.CheckActiveJobsRequest;
import com.google.dataflow.v1beta3.CheckActiveJobsResponse;
import com.google.dataflow.v1beta3.CreateJobRequest;
import com.google.dataflow.v1beta3.GetJobRequest;
import com.google.dataflow.v1beta3.Job;
import com.google.dataflow.v1beta3.ListJobsRequest;
import com.google.dataflow.v1beta3.ListJobsResponse;
import com.google.dataflow.v1beta3.Snapshot;
import com.google.dataflow.v1beta3.SnapshotJobRequest;
import com.google.dataflow.v1beta3.UpdateJobRequest;
import com.google.protobuf.TypeRegistry;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import javax.annotation.Generated;

// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
 * REST stub implementation for the JobsV1Beta3 service API.
 *
 * 

This class is for advanced usage and reflects the underlying API directly. */ @BetaApi @Generated("by gapic-generator-java") public class HttpJsonJobsV1Beta3Stub extends JobsV1Beta3Stub { private static final TypeRegistry typeRegistry = TypeRegistry.newBuilder().build(); private static final ApiMethodDescriptor createJobMethodDescriptor = ApiMethodDescriptor.newBuilder() .setFullMethodName("google.dataflow.v1beta3.JobsV1Beta3/CreateJob") .setHttpMethod("POST") .setType(ApiMethodDescriptor.MethodType.UNARY) .setRequestFormatter( ProtoMessageRequestFormatter.newBuilder() .setPath( "/v1b3/projects/{projectId}/locations/{location}/jobs", request -> { Map fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putPathParam(fields, "location", request.getLocation()); serializer.putPathParam(fields, "projectId", request.getProjectId()); return fields; }) .setAdditionalPaths("/v1b3/projects/{projectId}/jobs") .setQueryParamsExtractor( request -> { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putQueryParam(fields, "replaceJobId", request.getReplaceJobId()); serializer.putQueryParam(fields, "view", request.getViewValue()); serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); return fields; }) .setRequestBodyExtractor( request -> ProtoRestSerializer.create().toBody("job", request.getJob(), true)) .build()) .setResponseParser( ProtoMessageResponseParser.newBuilder() .setDefaultInstance(Job.getDefaultInstance()) .setDefaultTypeRegistry(typeRegistry) .build()) .build(); private static final ApiMethodDescriptor getJobMethodDescriptor = ApiMethodDescriptor.newBuilder() .setFullMethodName("google.dataflow.v1beta3.JobsV1Beta3/GetJob") .setHttpMethod("GET") .setType(ApiMethodDescriptor.MethodType.UNARY) .setRequestFormatter( ProtoMessageRequestFormatter.newBuilder() .setPath( "/v1b3/projects/{projectId}/locations/{location}/jobs/{jobId}", request -> { Map fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putPathParam(fields, "jobId", request.getJobId()); serializer.putPathParam(fields, "location", request.getLocation()); serializer.putPathParam(fields, "projectId", request.getProjectId()); return fields; }) .setAdditionalPaths("/v1b3/projects/{projectId}/jobs/{jobId}") .setQueryParamsExtractor( request -> { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putQueryParam(fields, "view", request.getViewValue()); serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); return fields; }) .setRequestBodyExtractor(request -> null) .build()) .setResponseParser( ProtoMessageResponseParser.newBuilder() .setDefaultInstance(Job.getDefaultInstance()) .setDefaultTypeRegistry(typeRegistry) .build()) .build(); private static final ApiMethodDescriptor updateJobMethodDescriptor = ApiMethodDescriptor.newBuilder() .setFullMethodName("google.dataflow.v1beta3.JobsV1Beta3/UpdateJob") .setHttpMethod("PUT") .setType(ApiMethodDescriptor.MethodType.UNARY) .setRequestFormatter( ProtoMessageRequestFormatter.newBuilder() .setPath( "/v1b3/projects/{projectId}/locations/{location}/jobs/{jobId}", request -> { Map fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putPathParam(fields, "jobId", request.getJobId()); serializer.putPathParam(fields, "location", request.getLocation()); serializer.putPathParam(fields, "projectId", request.getProjectId()); return fields; }) .setAdditionalPaths("/v1b3/projects/{projectId}/jobs/{jobId}") .setQueryParamsExtractor( request -> { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); return fields; }) .setRequestBodyExtractor( request -> ProtoRestSerializer.create().toBody("job", request.getJob(), true)) .build()) .setResponseParser( ProtoMessageResponseParser.newBuilder() .setDefaultInstance(Job.getDefaultInstance()) .setDefaultTypeRegistry(typeRegistry) .build()) .build(); private static final ApiMethodDescriptor listJobsMethodDescriptor = ApiMethodDescriptor.newBuilder() .setFullMethodName("google.dataflow.v1beta3.JobsV1Beta3/ListJobs") .setHttpMethod("GET") .setType(ApiMethodDescriptor.MethodType.UNARY) .setRequestFormatter( ProtoMessageRequestFormatter.newBuilder() .setPath( "/v1b3/projects/{projectId}/locations/{location}/jobs", request -> { Map fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putPathParam(fields, "location", request.getLocation()); serializer.putPathParam(fields, "projectId", request.getProjectId()); return fields; }) .setAdditionalPaths("/v1b3/projects/{projectId}/jobs") .setQueryParamsExtractor( request -> { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putQueryParam(fields, "filter", request.getFilterValue()); serializer.putQueryParam(fields, "pageSize", request.getPageSize()); serializer.putQueryParam(fields, "pageToken", request.getPageToken()); serializer.putQueryParam(fields, "view", request.getViewValue()); serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); return fields; }) .setRequestBodyExtractor(request -> null) .build()) .setResponseParser( ProtoMessageResponseParser.newBuilder() .setDefaultInstance(ListJobsResponse.getDefaultInstance()) .setDefaultTypeRegistry(typeRegistry) .build()) .build(); private static final ApiMethodDescriptor aggregatedListJobsMethodDescriptor = ApiMethodDescriptor.newBuilder() .setFullMethodName("google.dataflow.v1beta3.JobsV1Beta3/AggregatedListJobs") .setHttpMethod("GET") .setType(ApiMethodDescriptor.MethodType.UNARY) .setRequestFormatter( ProtoMessageRequestFormatter.newBuilder() .setPath( "/v1b3/projects/{projectId}/jobs:aggregated", request -> { Map fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putPathParam(fields, "projectId", request.getProjectId()); return fields; }) .setQueryParamsExtractor( request -> { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putQueryParam(fields, "filter", request.getFilterValue()); serializer.putQueryParam(fields, "location", request.getLocation()); serializer.putQueryParam(fields, "pageSize", request.getPageSize()); serializer.putQueryParam(fields, "pageToken", request.getPageToken()); serializer.putQueryParam(fields, "view", request.getViewValue()); serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); return fields; }) .setRequestBodyExtractor(request -> null) .build()) .setResponseParser( ProtoMessageResponseParser.newBuilder() .setDefaultInstance(ListJobsResponse.getDefaultInstance()) .setDefaultTypeRegistry(typeRegistry) .build()) .build(); private static final ApiMethodDescriptor snapshotJobMethodDescriptor = ApiMethodDescriptor.newBuilder() .setFullMethodName("google.dataflow.v1beta3.JobsV1Beta3/SnapshotJob") .setHttpMethod("POST") .setType(ApiMethodDescriptor.MethodType.UNARY) .setRequestFormatter( ProtoMessageRequestFormatter.newBuilder() .setPath( "/v1b3/projects/{projectId}/locations/{location}/jobs/{jobId}:snapshot", request -> { Map fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putPathParam(fields, "jobId", request.getJobId()); serializer.putPathParam(fields, "location", request.getLocation()); serializer.putPathParam(fields, "projectId", request.getProjectId()); return fields; }) .setAdditionalPaths("/v1b3/projects/{projectId}/jobs/{jobId}:snapshot") .setQueryParamsExtractor( request -> { Map> fields = new HashMap<>(); ProtoRestSerializer serializer = ProtoRestSerializer.create(); serializer.putQueryParam(fields, "$alt", "json;enum-encoding=int"); return fields; }) .setRequestBodyExtractor( request -> ProtoRestSerializer.create() .toBody( "*", request .toBuilder() .clearJobId() .clearLocation() .clearProjectId() .build(), true)) .build()) .setResponseParser( ProtoMessageResponseParser.newBuilder() .setDefaultInstance(Snapshot.getDefaultInstance()) .setDefaultTypeRegistry(typeRegistry) .build()) .build(); private final UnaryCallable createJobCallable; private final UnaryCallable getJobCallable; private final UnaryCallable updateJobCallable; private final UnaryCallable listJobsCallable; private final UnaryCallable listJobsPagedCallable; private final UnaryCallable aggregatedListJobsCallable; private final UnaryCallable aggregatedListJobsPagedCallable; private final UnaryCallable snapshotJobCallable; private final BackgroundResource backgroundResources; private final HttpJsonStubCallableFactory callableFactory; public static final HttpJsonJobsV1Beta3Stub create(JobsV1Beta3StubSettings settings) throws IOException { return new HttpJsonJobsV1Beta3Stub(settings, ClientContext.create(settings)); } public static final HttpJsonJobsV1Beta3Stub create(ClientContext clientContext) throws IOException { return new HttpJsonJobsV1Beta3Stub( JobsV1Beta3StubSettings.newHttpJsonBuilder().build(), clientContext); } public static final HttpJsonJobsV1Beta3Stub create( ClientContext clientContext, HttpJsonStubCallableFactory callableFactory) throws IOException { return new HttpJsonJobsV1Beta3Stub( JobsV1Beta3StubSettings.newHttpJsonBuilder().build(), clientContext, callableFactory); } /** * Constructs an instance of HttpJsonJobsV1Beta3Stub, using the given settings. This is protected * so that it is easy to make a subclass, but otherwise, the static factory methods should be * preferred. */ protected HttpJsonJobsV1Beta3Stub(JobsV1Beta3StubSettings settings, ClientContext clientContext) throws IOException { this(settings, clientContext, new HttpJsonJobsV1Beta3CallableFactory()); } /** * Constructs an instance of HttpJsonJobsV1Beta3Stub, using the given settings. This is protected * so that it is easy to make a subclass, but otherwise, the static factory methods should be * preferred. */ protected HttpJsonJobsV1Beta3Stub( JobsV1Beta3StubSettings settings, ClientContext clientContext, HttpJsonStubCallableFactory callableFactory) throws IOException { this.callableFactory = callableFactory; HttpJsonCallSettings createJobTransportSettings = HttpJsonCallSettings.newBuilder() .setMethodDescriptor(createJobMethodDescriptor) .setTypeRegistry(typeRegistry) .setParamsExtractor( request -> { RequestParamsBuilder builder = RequestParamsBuilder.create(); builder.add("location", String.valueOf(request.getLocation())); builder.add("project_id", String.valueOf(request.getProjectId())); return builder.build(); }) .build(); HttpJsonCallSettings getJobTransportSettings = HttpJsonCallSettings.newBuilder() .setMethodDescriptor(getJobMethodDescriptor) .setTypeRegistry(typeRegistry) .setParamsExtractor( request -> { RequestParamsBuilder builder = RequestParamsBuilder.create(); builder.add("job_id", String.valueOf(request.getJobId())); builder.add("location", String.valueOf(request.getLocation())); builder.add("project_id", String.valueOf(request.getProjectId())); return builder.build(); }) .build(); HttpJsonCallSettings updateJobTransportSettings = HttpJsonCallSettings.newBuilder() .setMethodDescriptor(updateJobMethodDescriptor) .setTypeRegistry(typeRegistry) .setParamsExtractor( request -> { RequestParamsBuilder builder = RequestParamsBuilder.create(); builder.add("job_id", String.valueOf(request.getJobId())); builder.add("location", String.valueOf(request.getLocation())); builder.add("project_id", String.valueOf(request.getProjectId())); return builder.build(); }) .build(); HttpJsonCallSettings listJobsTransportSettings = HttpJsonCallSettings.newBuilder() .setMethodDescriptor(listJobsMethodDescriptor) .setTypeRegistry(typeRegistry) .setParamsExtractor( request -> { RequestParamsBuilder builder = RequestParamsBuilder.create(); builder.add("location", String.valueOf(request.getLocation())); builder.add("project_id", String.valueOf(request.getProjectId())); return builder.build(); }) .build(); HttpJsonCallSettings aggregatedListJobsTransportSettings = HttpJsonCallSettings.newBuilder() .setMethodDescriptor(aggregatedListJobsMethodDescriptor) .setTypeRegistry(typeRegistry) .setParamsExtractor( request -> { RequestParamsBuilder builder = RequestParamsBuilder.create(); builder.add("project_id", String.valueOf(request.getProjectId())); return builder.build(); }) .build(); HttpJsonCallSettings snapshotJobTransportSettings = HttpJsonCallSettings.newBuilder() .setMethodDescriptor(snapshotJobMethodDescriptor) .setTypeRegistry(typeRegistry) .setParamsExtractor( request -> { RequestParamsBuilder builder = RequestParamsBuilder.create(); builder.add("job_id", String.valueOf(request.getJobId())); builder.add("location", String.valueOf(request.getLocation())); builder.add("project_id", String.valueOf(request.getProjectId())); return builder.build(); }) .build(); this.createJobCallable = callableFactory.createUnaryCallable( createJobTransportSettings, settings.createJobSettings(), clientContext); this.getJobCallable = callableFactory.createUnaryCallable( getJobTransportSettings, settings.getJobSettings(), clientContext); this.updateJobCallable = callableFactory.createUnaryCallable( updateJobTransportSettings, settings.updateJobSettings(), clientContext); this.listJobsCallable = callableFactory.createUnaryCallable( listJobsTransportSettings, settings.listJobsSettings(), clientContext); this.listJobsPagedCallable = callableFactory.createPagedCallable( listJobsTransportSettings, settings.listJobsSettings(), clientContext); this.aggregatedListJobsCallable = callableFactory.createUnaryCallable( aggregatedListJobsTransportSettings, settings.aggregatedListJobsSettings(), clientContext); this.aggregatedListJobsPagedCallable = callableFactory.createPagedCallable( aggregatedListJobsTransportSettings, settings.aggregatedListJobsSettings(), clientContext); this.snapshotJobCallable = callableFactory.createUnaryCallable( snapshotJobTransportSettings, settings.snapshotJobSettings(), clientContext); this.backgroundResources = new BackgroundResourceAggregation(clientContext.getBackgroundResources()); } @InternalApi public static List getMethodDescriptors() { List methodDescriptors = new ArrayList<>(); methodDescriptors.add(createJobMethodDescriptor); methodDescriptors.add(getJobMethodDescriptor); methodDescriptors.add(updateJobMethodDescriptor); methodDescriptors.add(listJobsMethodDescriptor); methodDescriptors.add(aggregatedListJobsMethodDescriptor); methodDescriptors.add(snapshotJobMethodDescriptor); return methodDescriptors; } @Override public UnaryCallable createJobCallable() { return createJobCallable; } @Override public UnaryCallable getJobCallable() { return getJobCallable; } @Override public UnaryCallable updateJobCallable() { return updateJobCallable; } @Override public UnaryCallable listJobsCallable() { return listJobsCallable; } @Override public UnaryCallable listJobsPagedCallable() { return listJobsPagedCallable; } @Override public UnaryCallable aggregatedListJobsCallable() { return aggregatedListJobsCallable; } @Override public UnaryCallable aggregatedListJobsPagedCallable() { return aggregatedListJobsPagedCallable; } @Override public UnaryCallable snapshotJobCallable() { return snapshotJobCallable; } @Override public UnaryCallable checkActiveJobsCallable() { throw new UnsupportedOperationException( "Not implemented: checkActiveJobsCallable(). REST transport is not implemented for this method yet."); } @Override public final void close() { try { backgroundResources.close(); } catch (RuntimeException e) { throw e; } catch (Exception e) { throw new IllegalStateException("Failed to close resource", e); } } @Override public void shutdown() { backgroundResources.shutdown(); } @Override public boolean isShutdown() { return backgroundResources.isShutdown(); } @Override public boolean isTerminated() { return backgroundResources.isTerminated(); } @Override public void shutdownNow() { backgroundResources.shutdownNow(); } @Override public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException { return backgroundResources.awaitTermination(duration, unit); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy