Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions java-analytics-data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>26.16.0</version>
<version>26.18.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -201,7 +201,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html
[stability-image]: https://img.shields.io/badge/stability-preview-yellow
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.analytics/google-analytics-data.svg
[maven-version-link]: https://central.sonatype.com/artifact/com.google.analytics/google-analytics-data/0.30.0
[maven-version-link]: https://central.sonatype.com/artifact/com.google.analytics/google-analytics-data/0.31.0
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

package com.google.analytics.data.v1alpha;

import static com.google.analytics.data.v1alpha.AlphaAnalyticsDataClient.ListAudienceListsPagedResponse;

import com.google.analytics.data.v1alpha.stub.AlphaAnalyticsDataStubSettings;
import com.google.api.core.ApiFunction;
import com.google.api.core.BetaApi;
Expand All @@ -26,8 +28,11 @@
import com.google.api.gax.rpc.ApiClientHeaderProvider;
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.ClientSettings;
import com.google.api.gax.rpc.OperationCallSettings;
import com.google.api.gax.rpc.PagedCallSettings;
import com.google.api.gax.rpc.TransportChannelProvider;
import com.google.api.gax.rpc.UnaryCallSettings;
import com.google.longrunning.Operation;
import java.io.IOException;
import java.util.List;
import javax.annotation.Generated;
Expand Down Expand Up @@ -80,6 +85,36 @@ public class AlphaAnalyticsDataSettings extends ClientSettings<AlphaAnalyticsDat
return ((AlphaAnalyticsDataStubSettings) getStubSettings()).runFunnelReportSettings();
}

/** Returns the object with the settings used for calls to createAudienceList. */
public UnaryCallSettings<CreateAudienceListRequest, Operation> createAudienceListSettings() {
return ((AlphaAnalyticsDataStubSettings) getStubSettings()).createAudienceListSettings();
}

/** Returns the object with the settings used for calls to createAudienceList. */
public OperationCallSettings<CreateAudienceListRequest, AudienceList, AudienceListMetadata>
createAudienceListOperationSettings() {
return ((AlphaAnalyticsDataStubSettings) getStubSettings())
.createAudienceListOperationSettings();
}

/** Returns the object with the settings used for calls to queryAudienceList. */
public UnaryCallSettings<QueryAudienceListRequest, QueryAudienceListResponse>
queryAudienceListSettings() {
return ((AlphaAnalyticsDataStubSettings) getStubSettings()).queryAudienceListSettings();
}

/** Returns the object with the settings used for calls to getAudienceList. */
public UnaryCallSettings<GetAudienceListRequest, AudienceList> getAudienceListSettings() {
return ((AlphaAnalyticsDataStubSettings) getStubSettings()).getAudienceListSettings();
}

/** Returns the object with the settings used for calls to listAudienceLists. */
public PagedCallSettings<
ListAudienceListsRequest, ListAudienceListsResponse, ListAudienceListsPagedResponse>
listAudienceListsSettings() {
return ((AlphaAnalyticsDataStubSettings) getStubSettings()).listAudienceListsSettings();
}

public static final AlphaAnalyticsDataSettings create(AlphaAnalyticsDataStubSettings stub)
throws IOException {
return new AlphaAnalyticsDataSettings.Builder(stub.toBuilder()).build();
Expand Down Expand Up @@ -201,6 +236,38 @@ public Builder applyToAllUnaryMethods(
return getStubSettingsBuilder().runFunnelReportSettings();
}

/** Returns the builder for the settings used for calls to createAudienceList. */
public UnaryCallSettings.Builder<CreateAudienceListRequest, Operation>
createAudienceListSettings() {
return getStubSettingsBuilder().createAudienceListSettings();
}

/** Returns the builder for the settings used for calls to createAudienceList. */
public OperationCallSettings.Builder<
CreateAudienceListRequest, AudienceList, AudienceListMetadata>
createAudienceListOperationSettings() {
return getStubSettingsBuilder().createAudienceListOperationSettings();
}

/** Returns the builder for the settings used for calls to queryAudienceList. */
public UnaryCallSettings.Builder<QueryAudienceListRequest, QueryAudienceListResponse>
queryAudienceListSettings() {
return getStubSettingsBuilder().queryAudienceListSettings();
}

/** Returns the builder for the settings used for calls to getAudienceList. */
public UnaryCallSettings.Builder<GetAudienceListRequest, AudienceList>
getAudienceListSettings() {
return getStubSettingsBuilder().getAudienceListSettings();
}

/** Returns the builder for the settings used for calls to listAudienceLists. */
public PagedCallSettings.Builder<
ListAudienceListsRequest, ListAudienceListsResponse, ListAudienceListsPagedResponse>
listAudienceListsSettings() {
return getStubSettingsBuilder().listAudienceListsSettings();
}

@Override
public AlphaAnalyticsDataSettings build() throws IOException {
return new AlphaAnalyticsDataSettings(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@
"grpc": {
"libraryClient": "AlphaAnalyticsDataClient",
"rpcs": {
"CreateAudienceList": {
"methods": ["createAudienceListAsync", "createAudienceListAsync", "createAudienceListAsync", "createAudienceListOperationCallable", "createAudienceListCallable"]
},
"GetAudienceList": {
"methods": ["getAudienceList", "getAudienceList", "getAudienceList", "getAudienceListCallable"]
},
"ListAudienceLists": {
"methods": ["listAudienceLists", "listAudienceLists", "listAudienceLists", "listAudienceListsPagedCallable", "listAudienceListsCallable"]
},
"QueryAudienceList": {
"methods": ["queryAudienceList", "queryAudienceList", "queryAudienceListCallable"]
},
"RunFunnelReport": {
"methods": ["runFunnelReport", "runFunnelReportCallable"]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,24 @@

package com.google.analytics.data.v1alpha.stub;

import static com.google.analytics.data.v1alpha.AlphaAnalyticsDataClient.ListAudienceListsPagedResponse;

import com.google.analytics.data.v1alpha.AudienceList;
import com.google.analytics.data.v1alpha.AudienceListMetadata;
import com.google.analytics.data.v1alpha.CreateAudienceListRequest;
import com.google.analytics.data.v1alpha.GetAudienceListRequest;
import com.google.analytics.data.v1alpha.ListAudienceListsRequest;
import com.google.analytics.data.v1alpha.ListAudienceListsResponse;
import com.google.analytics.data.v1alpha.QueryAudienceListRequest;
import com.google.analytics.data.v1alpha.QueryAudienceListResponse;
import com.google.analytics.data.v1alpha.RunFunnelReportRequest;
import com.google.analytics.data.v1alpha.RunFunnelReportResponse;
import com.google.api.core.BetaApi;
import com.google.api.gax.core.BackgroundResource;
import com.google.api.gax.rpc.OperationCallable;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.longrunning.Operation;
import com.google.longrunning.stub.OperationsStub;
import javax.annotation.Generated;

// AUTO-GENERATED DOCUMENTATION AND CLASS.
Expand All @@ -33,10 +46,47 @@
@Generated("by gapic-generator-java")
public abstract class AlphaAnalyticsDataStub implements BackgroundResource {

public OperationsStub getOperationsStub() {
return null;
}

public com.google.api.gax.httpjson.longrunning.stub.OperationsStub getHttpJsonOperationsStub() {
return null;
}

public UnaryCallable<RunFunnelReportRequest, RunFunnelReportResponse> runFunnelReportCallable() {
throw new UnsupportedOperationException("Not implemented: runFunnelReportCallable()");
}

public OperationCallable<CreateAudienceListRequest, AudienceList, AudienceListMetadata>
createAudienceListOperationCallable() {
throw new UnsupportedOperationException(
"Not implemented: createAudienceListOperationCallable()");
}

public UnaryCallable<CreateAudienceListRequest, Operation> createAudienceListCallable() {
throw new UnsupportedOperationException("Not implemented: createAudienceListCallable()");
}

public UnaryCallable<QueryAudienceListRequest, QueryAudienceListResponse>
queryAudienceListCallable() {
throw new UnsupportedOperationException("Not implemented: queryAudienceListCallable()");
}

public UnaryCallable<GetAudienceListRequest, AudienceList> getAudienceListCallable() {
throw new UnsupportedOperationException("Not implemented: getAudienceListCallable()");
}

public UnaryCallable<ListAudienceListsRequest, ListAudienceListsPagedResponse>
listAudienceListsPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listAudienceListsPagedCallable()");
}

public UnaryCallable<ListAudienceListsRequest, ListAudienceListsResponse>
listAudienceListsCallable() {
throw new UnsupportedOperationException("Not implemented: listAudienceListsCallable()");
}

@Override
public abstract void close();
}
Loading