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-admin/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.12.0</version>
<version>26.13.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-admin.svg
[maven-version-link]: https://central.sonatype.com/artifact/com.google.analytics/google-analytics-admin/0.24.0
[maven-version-link]: https://central.sonatype.com/artifact/com.google.analytics/google-analytics-admin/0.25.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 @@ -22,6 +22,7 @@
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListAccountsPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListAudiencesPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListBigQueryLinksPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListChannelGroupsPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListConversionEventsPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListCustomDimensionsPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListCustomMetricsPagedResponse;
Expand Down Expand Up @@ -738,6 +739,33 @@ public UnaryCallSettings<DeleteExpandedDataSetRequest, Empty> deleteExpandedData
return ((AnalyticsAdminServiceStubSettings) getStubSettings()).deleteExpandedDataSetSettings();
}

/** Returns the object with the settings used for calls to getChannelGroup. */
public UnaryCallSettings<GetChannelGroupRequest, ChannelGroup> getChannelGroupSettings() {
return ((AnalyticsAdminServiceStubSettings) getStubSettings()).getChannelGroupSettings();
}

/** Returns the object with the settings used for calls to listChannelGroups. */
public PagedCallSettings<
ListChannelGroupsRequest, ListChannelGroupsResponse, ListChannelGroupsPagedResponse>
listChannelGroupsSettings() {
return ((AnalyticsAdminServiceStubSettings) getStubSettings()).listChannelGroupsSettings();
}

/** Returns the object with the settings used for calls to createChannelGroup. */
public UnaryCallSettings<CreateChannelGroupRequest, ChannelGroup> createChannelGroupSettings() {
return ((AnalyticsAdminServiceStubSettings) getStubSettings()).createChannelGroupSettings();
}

/** Returns the object with the settings used for calls to updateChannelGroup. */
public UnaryCallSettings<UpdateChannelGroupRequest, ChannelGroup> updateChannelGroupSettings() {
return ((AnalyticsAdminServiceStubSettings) getStubSettings()).updateChannelGroupSettings();
}

/** Returns the object with the settings used for calls to deleteChannelGroup. */
public UnaryCallSettings<DeleteChannelGroupRequest, Empty> deleteChannelGroupSettings() {
return ((AnalyticsAdminServiceStubSettings) getStubSettings()).deleteChannelGroupSettings();
}

/** Returns the object with the settings used for calls to setAutomatedGa4ConfigurationOptOut. */
public UnaryCallSettings<
SetAutomatedGa4ConfigurationOptOutRequest, SetAutomatedGa4ConfigurationOptOutResponse>
Expand Down Expand Up @@ -799,6 +827,13 @@ public UnaryCallSettings<DeleteConnectedSiteTagRequest, Empty> deleteConnectedSi
return ((AnalyticsAdminServiceStubSettings) getStubSettings()).listConnectedSiteTagsSettings();
}

/** Returns the object with the settings used for calls to fetchConnectedGa4Property. */
public UnaryCallSettings<FetchConnectedGa4PropertyRequest, FetchConnectedGa4PropertyResponse>
fetchConnectedGa4PropertySettings() {
return ((AnalyticsAdminServiceStubSettings) getStubSettings())
.fetchConnectedGa4PropertySettings();
}

public static final AnalyticsAdminServiceSettings create(AnalyticsAdminServiceStubSettings stub)
throws IOException {
return new AnalyticsAdminServiceSettings.Builder(stub.toBuilder()).build();
Expand Down Expand Up @@ -1564,6 +1599,37 @@ public UnaryCallSettings.Builder<ArchiveAudienceRequest, Empty> archiveAudienceS
return getStubSettingsBuilder().deleteExpandedDataSetSettings();
}

/** Returns the builder for the settings used for calls to getChannelGroup. */
public UnaryCallSettings.Builder<GetChannelGroupRequest, ChannelGroup>
getChannelGroupSettings() {
return getStubSettingsBuilder().getChannelGroupSettings();
}

/** Returns the builder for the settings used for calls to listChannelGroups. */
public PagedCallSettings.Builder<
ListChannelGroupsRequest, ListChannelGroupsResponse, ListChannelGroupsPagedResponse>
listChannelGroupsSettings() {
return getStubSettingsBuilder().listChannelGroupsSettings();
}

/** Returns the builder for the settings used for calls to createChannelGroup. */
public UnaryCallSettings.Builder<CreateChannelGroupRequest, ChannelGroup>
createChannelGroupSettings() {
return getStubSettingsBuilder().createChannelGroupSettings();
}

/** Returns the builder for the settings used for calls to updateChannelGroup. */
public UnaryCallSettings.Builder<UpdateChannelGroupRequest, ChannelGroup>
updateChannelGroupSettings() {
return getStubSettingsBuilder().updateChannelGroupSettings();
}

/** Returns the builder for the settings used for calls to deleteChannelGroup. */
public UnaryCallSettings.Builder<DeleteChannelGroupRequest, Empty>
deleteChannelGroupSettings() {
return getStubSettingsBuilder().deleteChannelGroupSettings();
}

/**
* Returns the builder for the settings used for calls to setAutomatedGa4ConfigurationOptOut.
*/
Expand Down Expand Up @@ -1628,6 +1694,13 @@ public UnaryCallSettings.Builder<ArchiveAudienceRequest, Empty> archiveAudienceS
return getStubSettingsBuilder().listConnectedSiteTagsSettings();
}

/** Returns the builder for the settings used for calls to fetchConnectedGa4Property. */
public UnaryCallSettings.Builder<
FetchConnectedGa4PropertyRequest, FetchConnectedGa4PropertyResponse>
fetchConnectedGa4PropertySettings() {
return getStubSettingsBuilder().fetchConnectedGa4PropertySettings();
}

@Override
public AnalyticsAdminServiceSettings build() throws IOException {
return new AnalyticsAdminServiceSettings(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@
"CreateAudience": {
"methods": ["createAudience", "createAudience", "createAudience", "createAudienceCallable"]
},
"CreateChannelGroup": {
"methods": ["createChannelGroup", "createChannelGroup", "createChannelGroup", "createChannelGroupCallable"]
},
"CreateConnectedSiteTag": {
"methods": ["createConnectedSiteTag", "createConnectedSiteTagCallable"]
},
Expand Down Expand Up @@ -109,6 +112,9 @@
"DeleteAccount": {
"methods": ["deleteAccount", "deleteAccount", "deleteAccount", "deleteAccountCallable"]
},
"DeleteChannelGroup": {
"methods": ["deleteChannelGroup", "deleteChannelGroup", "deleteChannelGroup", "deleteChannelGroupCallable"]
},
"DeleteConnectedSiteTag": {
"methods": ["deleteConnectedSiteTag", "deleteConnectedSiteTagCallable"]
},
Expand Down Expand Up @@ -148,6 +154,9 @@
"FetchAutomatedGa4ConfigurationOptOut": {
"methods": ["fetchAutomatedGa4ConfigurationOptOut", "fetchAutomatedGa4ConfigurationOptOutCallable"]
},
"FetchConnectedGa4Property": {
"methods": ["fetchConnectedGa4Property", "fetchConnectedGa4PropertyCallable"]
},
"GetAccessBinding": {
"methods": ["getAccessBinding", "getAccessBinding", "getAccessBinding", "getAccessBindingCallable"]
},
Expand All @@ -163,6 +172,9 @@
"GetBigQueryLink": {
"methods": ["getBigQueryLink", "getBigQueryLink", "getBigQueryLink", "getBigQueryLinkCallable"]
},
"GetChannelGroup": {
"methods": ["getChannelGroup", "getChannelGroup", "getChannelGroup", "getChannelGroupCallable"]
},
"GetConversionEvent": {
"methods": ["getConversionEvent", "getConversionEvent", "getConversionEvent", "getConversionEventCallable"]
},
Expand Down Expand Up @@ -226,6 +238,9 @@
"ListBigQueryLinks": {
"methods": ["listBigQueryLinks", "listBigQueryLinks", "listBigQueryLinks", "listBigQueryLinksPagedCallable", "listBigQueryLinksCallable"]
},
"ListChannelGroups": {
"methods": ["listChannelGroups", "listChannelGroups", "listChannelGroups", "listChannelGroupsPagedCallable", "listChannelGroupsCallable"]
},
"ListConnectedSiteTags": {
"methods": ["listConnectedSiteTags", "listConnectedSiteTagsCallable"]
},
Expand Down Expand Up @@ -292,6 +307,9 @@
"UpdateAudience": {
"methods": ["updateAudience", "updateAudience", "updateAudienceCallable"]
},
"UpdateChannelGroup": {
"methods": ["updateChannelGroup", "updateChannelGroup", "updateChannelGroupCallable"]
},
"UpdateCustomDimension": {
"methods": ["updateCustomDimension", "updateCustomDimension", "updateCustomDimensionCallable"]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListAccountsPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListAudiencesPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListBigQueryLinksPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListChannelGroupsPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListConversionEventsPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListCustomDimensionsPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListCustomMetricsPagedResponse;
Expand Down Expand Up @@ -66,9 +67,11 @@
import com.google.analytics.admin.v1alpha.BatchUpdateUserLinksResponse;
import com.google.analytics.admin.v1alpha.BigQueryLink;
import com.google.analytics.admin.v1alpha.CancelDisplayVideo360AdvertiserLinkProposalRequest;
import com.google.analytics.admin.v1alpha.ChannelGroup;
import com.google.analytics.admin.v1alpha.ConversionEvent;
import com.google.analytics.admin.v1alpha.CreateAccessBindingRequest;
import com.google.analytics.admin.v1alpha.CreateAudienceRequest;
import com.google.analytics.admin.v1alpha.CreateChannelGroupRequest;
import com.google.analytics.admin.v1alpha.CreateConnectedSiteTagRequest;
import com.google.analytics.admin.v1alpha.CreateConnectedSiteTagResponse;
import com.google.analytics.admin.v1alpha.CreateConversionEventRequest;
Expand All @@ -91,6 +94,7 @@
import com.google.analytics.admin.v1alpha.DataStream;
import com.google.analytics.admin.v1alpha.DeleteAccessBindingRequest;
import com.google.analytics.admin.v1alpha.DeleteAccountRequest;
import com.google.analytics.admin.v1alpha.DeleteChannelGroupRequest;
import com.google.analytics.admin.v1alpha.DeleteConnectedSiteTagRequest;
import com.google.analytics.admin.v1alpha.DeleteConversionEventRequest;
import com.google.analytics.admin.v1alpha.DeleteDataStreamRequest;
Expand All @@ -109,12 +113,15 @@
import com.google.analytics.admin.v1alpha.ExpandedDataSet;
import com.google.analytics.admin.v1alpha.FetchAutomatedGa4ConfigurationOptOutRequest;
import com.google.analytics.admin.v1alpha.FetchAutomatedGa4ConfigurationOptOutResponse;
import com.google.analytics.admin.v1alpha.FetchConnectedGa4PropertyRequest;
import com.google.analytics.admin.v1alpha.FetchConnectedGa4PropertyResponse;
import com.google.analytics.admin.v1alpha.FirebaseLink;
import com.google.analytics.admin.v1alpha.GetAccessBindingRequest;
import com.google.analytics.admin.v1alpha.GetAccountRequest;
import com.google.analytics.admin.v1alpha.GetAttributionSettingsRequest;
import com.google.analytics.admin.v1alpha.GetAudienceRequest;
import com.google.analytics.admin.v1alpha.GetBigQueryLinkRequest;
import com.google.analytics.admin.v1alpha.GetChannelGroupRequest;
import com.google.analytics.admin.v1alpha.GetConversionEventRequest;
import com.google.analytics.admin.v1alpha.GetCustomDimensionRequest;
import com.google.analytics.admin.v1alpha.GetCustomMetricRequest;
Expand Down Expand Up @@ -144,6 +151,8 @@
import com.google.analytics.admin.v1alpha.ListAudiencesResponse;
import com.google.analytics.admin.v1alpha.ListBigQueryLinksRequest;
import com.google.analytics.admin.v1alpha.ListBigQueryLinksResponse;
import com.google.analytics.admin.v1alpha.ListChannelGroupsRequest;
import com.google.analytics.admin.v1alpha.ListChannelGroupsResponse;
import com.google.analytics.admin.v1alpha.ListConnectedSiteTagsRequest;
import com.google.analytics.admin.v1alpha.ListConnectedSiteTagsResponse;
import com.google.analytics.admin.v1alpha.ListConversionEventsRequest;
Expand Down Expand Up @@ -187,6 +196,7 @@
import com.google.analytics.admin.v1alpha.UpdateAccountRequest;
import com.google.analytics.admin.v1alpha.UpdateAttributionSettingsRequest;
import com.google.analytics.admin.v1alpha.UpdateAudienceRequest;
import com.google.analytics.admin.v1alpha.UpdateChannelGroupRequest;
import com.google.analytics.admin.v1alpha.UpdateCustomDimensionRequest;
import com.google.analytics.admin.v1alpha.UpdateCustomMetricRequest;
import com.google.analytics.admin.v1alpha.UpdateDataRetentionSettingsRequest;
Expand Down Expand Up @@ -790,6 +800,32 @@ public UnaryCallable<DeleteExpandedDataSetRequest, Empty> deleteExpandedDataSetC
throw new UnsupportedOperationException("Not implemented: deleteExpandedDataSetCallable()");
}

public UnaryCallable<GetChannelGroupRequest, ChannelGroup> getChannelGroupCallable() {
throw new UnsupportedOperationException("Not implemented: getChannelGroupCallable()");
}

public UnaryCallable<ListChannelGroupsRequest, ListChannelGroupsPagedResponse>
listChannelGroupsPagedCallable() {
throw new UnsupportedOperationException("Not implemented: listChannelGroupsPagedCallable()");
}

public UnaryCallable<ListChannelGroupsRequest, ListChannelGroupsResponse>
listChannelGroupsCallable() {
throw new UnsupportedOperationException("Not implemented: listChannelGroupsCallable()");
}

public UnaryCallable<CreateChannelGroupRequest, ChannelGroup> createChannelGroupCallable() {
throw new UnsupportedOperationException("Not implemented: createChannelGroupCallable()");
}

public UnaryCallable<UpdateChannelGroupRequest, ChannelGroup> updateChannelGroupCallable() {
throw new UnsupportedOperationException("Not implemented: updateChannelGroupCallable()");
}

public UnaryCallable<DeleteChannelGroupRequest, Empty> deleteChannelGroupCallable() {
throw new UnsupportedOperationException("Not implemented: deleteChannelGroupCallable()");
}

public UnaryCallable<
SetAutomatedGa4ConfigurationOptOutRequest, SetAutomatedGa4ConfigurationOptOutResponse>
setAutomatedGa4ConfigurationOptOutCallable() {
Expand Down Expand Up @@ -844,6 +880,11 @@ public UnaryCallable<DeleteConnectedSiteTagRequest, Empty> deleteConnectedSiteTa
throw new UnsupportedOperationException("Not implemented: listConnectedSiteTagsCallable()");
}

public UnaryCallable<FetchConnectedGa4PropertyRequest, FetchConnectedGa4PropertyResponse>
fetchConnectedGa4PropertyCallable() {
throw new UnsupportedOperationException("Not implemented: fetchConnectedGa4PropertyCallable()");
}

@Override
public abstract void close();
}
Loading