This repository has been archived by the owner on Jan 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [ ] Regenerate this pull request now. fix!: rename the `funnel_filter` field of the `FunnelFilterExpression` type to `funnel_field_filter` PiperOrigin-RevId: 455204231 Source-Link: googleapis/googleapis@4849480 Source-Link: https://github.com/googleapis/googleapis-gen/commit/589642d0a68a2c519273cf0f7d7947b19cd99eac Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNTg5NjQyZDBhNjhhMmM1MTkyNzNjZjBmN2Q3OTQ3YjE5Y2Q5OWVhYyJ9 chore: update gapic-generator-java PiperOrigin-RevId: 454939894 Source-Link: googleapis/googleapis@519ca44 Source-Link: https://github.com/googleapis/googleapis-gen/commit/fc639d21a7cbc30aa0a9b862586942a0fb46c5c8 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZmM2MzlkMjFhN2NiYzMwYWEwYTliODYyNTg2OTQyYTBmYjQ2YzVjOCJ9 feat: Add Java REST transport to analytics, servicecontrol, servicemanagement, serviceusage and langauge APIs PiperOrigin-RevId: 454254635 Source-Link: googleapis/googleapis@84fb822 Source-Link: https://github.com/googleapis/googleapis-gen/commit/4ffb61264d6fb634c430829dd2da75c5bed08304 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNGZmYjYxMjY0ZDZmYjYzNGM0MzA4MjlkZDJkYTc1YzViZWQwODMwNCJ9
- Loading branch information
1 parent
55e8a1b
commit c864df4
Showing
24 changed files
with
2,219 additions
and
307 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
105 changes: 105 additions & 0 deletions
105
...ava/com/google/analytics/data/v1alpha/stub/HttpJsonAlphaAnalyticsDataCallableFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
/* | ||
* Copyright 2022 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.analytics.data.v1alpha.stub; | ||
|
||
import com.google.api.core.BetaApi; | ||
import com.google.api.gax.httpjson.HttpJsonCallSettings; | ||
import com.google.api.gax.httpjson.HttpJsonCallableFactory; | ||
import com.google.api.gax.httpjson.HttpJsonOperationSnapshotCallable; | ||
import com.google.api.gax.httpjson.HttpJsonStubCallableFactory; | ||
import com.google.api.gax.httpjson.longrunning.stub.OperationsStub; | ||
import com.google.api.gax.rpc.BatchingCallSettings; | ||
import com.google.api.gax.rpc.ClientContext; | ||
import com.google.api.gax.rpc.OperationCallSettings; | ||
import com.google.api.gax.rpc.OperationCallable; | ||
import com.google.api.gax.rpc.PagedCallSettings; | ||
import com.google.api.gax.rpc.ServerStreamingCallSettings; | ||
import com.google.api.gax.rpc.ServerStreamingCallable; | ||
import com.google.api.gax.rpc.UnaryCallSettings; | ||
import com.google.api.gax.rpc.UnaryCallable; | ||
import com.google.longrunning.Operation; | ||
import javax.annotation.Generated; | ||
|
||
// AUTO-GENERATED DOCUMENTATION AND CLASS. | ||
/** | ||
* REST callable factory implementation for the AlphaAnalyticsData service API. | ||
* | ||
* <p>This class is for advanced usage. | ||
*/ | ||
@BetaApi | ||
@Generated("by gapic-generator-java") | ||
public class HttpJsonAlphaAnalyticsDataCallableFactory | ||
implements HttpJsonStubCallableFactory<Operation, OperationsStub> { | ||
|
||
@Override | ||
public <RequestT, ResponseT> UnaryCallable<RequestT, ResponseT> createUnaryCallable( | ||
HttpJsonCallSettings<RequestT, ResponseT> httpJsonCallSettings, | ||
UnaryCallSettings<RequestT, ResponseT> callSettings, | ||
ClientContext clientContext) { | ||
return HttpJsonCallableFactory.createUnaryCallable( | ||
httpJsonCallSettings, callSettings, clientContext); | ||
} | ||
|
||
@Override | ||
public <RequestT, ResponseT, PagedListResponseT> | ||
UnaryCallable<RequestT, PagedListResponseT> createPagedCallable( | ||
HttpJsonCallSettings<RequestT, ResponseT> httpJsonCallSettings, | ||
PagedCallSettings<RequestT, ResponseT, PagedListResponseT> callSettings, | ||
ClientContext clientContext) { | ||
return HttpJsonCallableFactory.createPagedCallable( | ||
httpJsonCallSettings, callSettings, clientContext); | ||
} | ||
|
||
@Override | ||
public <RequestT, ResponseT> UnaryCallable<RequestT, ResponseT> createBatchingCallable( | ||
HttpJsonCallSettings<RequestT, ResponseT> httpJsonCallSettings, | ||
BatchingCallSettings<RequestT, ResponseT> callSettings, | ||
ClientContext clientContext) { | ||
return HttpJsonCallableFactory.createBatchingCallable( | ||
httpJsonCallSettings, callSettings, clientContext); | ||
} | ||
|
||
@BetaApi( | ||
"The surface for long-running operations is not stable yet and may change in the future.") | ||
@Override | ||
public <RequestT, ResponseT, MetadataT> | ||
OperationCallable<RequestT, ResponseT, MetadataT> createOperationCallable( | ||
HttpJsonCallSettings<RequestT, Operation> httpJsonCallSettings, | ||
OperationCallSettings<RequestT, ResponseT, MetadataT> callSettings, | ||
ClientContext clientContext, | ||
OperationsStub operationsStub) { | ||
UnaryCallable<RequestT, Operation> innerCallable = | ||
HttpJsonCallableFactory.createBaseUnaryCallable( | ||
httpJsonCallSettings, callSettings.getInitialCallSettings(), clientContext); | ||
HttpJsonOperationSnapshotCallable<RequestT, Operation> initialCallable = | ||
new HttpJsonOperationSnapshotCallable<RequestT, Operation>( | ||
innerCallable, | ||
httpJsonCallSettings.getMethodDescriptor().getOperationSnapshotFactory()); | ||
return HttpJsonCallableFactory.createOperationCallable( | ||
callSettings, clientContext, operationsStub.longRunningClient(), initialCallable); | ||
} | ||
|
||
@Override | ||
public <RequestT, ResponseT> | ||
ServerStreamingCallable<RequestT, ResponseT> createServerStreamingCallable( | ||
HttpJsonCallSettings<RequestT, ResponseT> httpJsonCallSettings, | ||
ServerStreamingCallSettings<RequestT, ResponseT> callSettings, | ||
ClientContext clientContext) { | ||
return HttpJsonCallableFactory.createServerStreamingCallable( | ||
httpJsonCallSettings, callSettings, clientContext); | ||
} | ||
} |
Oops, something went wrong.