Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix!: [analyticsadmin] rename the enterprise_daily_export_enabled field to fresh_daily_export_enabled in the BigQueryLink resource #9752

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.19.0</version>
<version>26.22.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.32.0
[maven-version-link]: https://central.sonatype.com/artifact/com.google.analytics/google-analytics-admin/0.33.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 @@ -36,6 +36,7 @@
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListGoogleAdsLinksPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListMeasurementProtocolSecretsPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListPropertiesPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListSKAdNetworkConversionValueSchemasPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListSearchAds360LinksPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListUserLinksPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.SearchChangeHistoryEventsPagedResponse;
Expand Down Expand Up @@ -318,6 +319,55 @@ public UnaryCallSettings<DeleteGoogleAdsLinkRequest, Empty> deleteGoogleAdsLinkS
.acknowledgeUserDataCollectionSettings();
}

/** Returns the object with the settings used for calls to getSKAdNetworkConversionValueSchema. */
public UnaryCallSettings<
GetSKAdNetworkConversionValueSchemaRequest, SKAdNetworkConversionValueSchema>
getSKAdNetworkConversionValueSchemaSettings() {
return ((AnalyticsAdminServiceStubSettings) getStubSettings())
.getSKAdNetworkConversionValueSchemaSettings();
}

/**
* Returns the object with the settings used for calls to createSKAdNetworkConversionValueSchema.
*/
public UnaryCallSettings<
CreateSKAdNetworkConversionValueSchemaRequest, SKAdNetworkConversionValueSchema>
createSKAdNetworkConversionValueSchemaSettings() {
return ((AnalyticsAdminServiceStubSettings) getStubSettings())
.createSKAdNetworkConversionValueSchemaSettings();
}

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

/**
* Returns the object with the settings used for calls to updateSKAdNetworkConversionValueSchema.
*/
public UnaryCallSettings<
UpdateSKAdNetworkConversionValueSchemaRequest, SKAdNetworkConversionValueSchema>
updateSKAdNetworkConversionValueSchemaSettings() {
return ((AnalyticsAdminServiceStubSettings) getStubSettings())
.updateSKAdNetworkConversionValueSchemaSettings();
}

/**
* Returns the object with the settings used for calls to listSKAdNetworkConversionValueSchemas.
*/
public PagedCallSettings<
ListSKAdNetworkConversionValueSchemasRequest,
ListSKAdNetworkConversionValueSchemasResponse,
ListSKAdNetworkConversionValueSchemasPagedResponse>
listSKAdNetworkConversionValueSchemasSettings() {
return ((AnalyticsAdminServiceStubSettings) getStubSettings())
.listSKAdNetworkConversionValueSchemasSettings();
}

/** Returns the object with the settings used for calls to searchChangeHistoryEvents. */
public PagedCallSettings<
SearchChangeHistoryEventsRequest,
Expand Down Expand Up @@ -348,6 +398,12 @@ public UnaryCallSettings<DeleteGoogleAdsLinkRequest, Empty> deleteGoogleAdsLinkS
return ((AnalyticsAdminServiceStubSettings) getStubSettings()).createConversionEventSettings();
}

/** Returns the object with the settings used for calls to updateConversionEvent. */
public UnaryCallSettings<UpdateConversionEventRequest, ConversionEvent>
updateConversionEventSettings() {
return ((AnalyticsAdminServiceStubSettings) getStubSettings()).updateConversionEventSettings();
}

/** Returns the object with the settings used for calls to getConversionEvent. */
public UnaryCallSettings<GetConversionEventRequest, ConversionEvent>
getConversionEventSettings() {
Expand Down Expand Up @@ -1226,6 +1282,55 @@ public UnaryCallSettings.Builder<DeleteUserLinkRequest, Empty> deleteUserLinkSet
return getStubSettingsBuilder().acknowledgeUserDataCollectionSettings();
}

/**
* Returns the builder for the settings used for calls to getSKAdNetworkConversionValueSchema.
*/
public UnaryCallSettings.Builder<
GetSKAdNetworkConversionValueSchemaRequest, SKAdNetworkConversionValueSchema>
getSKAdNetworkConversionValueSchemaSettings() {
return getStubSettingsBuilder().getSKAdNetworkConversionValueSchemaSettings();
}

/**
* Returns the builder for the settings used for calls to
* createSKAdNetworkConversionValueSchema.
*/
public UnaryCallSettings.Builder<
CreateSKAdNetworkConversionValueSchemaRequest, SKAdNetworkConversionValueSchema>
createSKAdNetworkConversionValueSchemaSettings() {
return getStubSettingsBuilder().createSKAdNetworkConversionValueSchemaSettings();
}

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

/**
* Returns the builder for the settings used for calls to
* updateSKAdNetworkConversionValueSchema.
*/
public UnaryCallSettings.Builder<
UpdateSKAdNetworkConversionValueSchemaRequest, SKAdNetworkConversionValueSchema>
updateSKAdNetworkConversionValueSchemaSettings() {
return getStubSettingsBuilder().updateSKAdNetworkConversionValueSchemaSettings();
}

/**
* Returns the builder for the settings used for calls to listSKAdNetworkConversionValueSchemas.
*/
public PagedCallSettings.Builder<
ListSKAdNetworkConversionValueSchemasRequest,
ListSKAdNetworkConversionValueSchemasResponse,
ListSKAdNetworkConversionValueSchemasPagedResponse>
listSKAdNetworkConversionValueSchemasSettings() {
return getStubSettingsBuilder().listSKAdNetworkConversionValueSchemasSettings();
}

/** Returns the builder for the settings used for calls to searchChangeHistoryEvents. */
public PagedCallSettings.Builder<
SearchChangeHistoryEventsRequest,
Expand Down Expand Up @@ -1253,6 +1358,12 @@ public UnaryCallSettings.Builder<DeleteUserLinkRequest, Empty> deleteUserLinkSet
return getStubSettingsBuilder().createConversionEventSettings();
}

/** Returns the builder for the settings used for calls to updateConversionEvent. */
public UnaryCallSettings.Builder<UpdateConversionEventRequest, ConversionEvent>
updateConversionEventSettings() {
return getStubSettingsBuilder().updateConversionEventSettings();
}

/** Returns the builder for the settings used for calls to getConversionEvent. */
public UnaryCallSettings.Builder<GetConversionEventRequest, ConversionEvent>
getConversionEventSettings() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@
"CreateProperty": {
"methods": ["createProperty", "createProperty", "createPropertyCallable"]
},
"CreateSKAdNetworkConversionValueSchema": {
"methods": ["createSKAdNetworkConversionValueSchema", "createSKAdNetworkConversionValueSchema", "createSKAdNetworkConversionValueSchema", "createSKAdNetworkConversionValueSchemaCallable"]
},
"CreateSearchAds360Link": {
"methods": ["createSearchAds360Link", "createSearchAds360Link", "createSearchAds360Link", "createSearchAds360LinkCallable"]
},
Expand Down Expand Up @@ -157,6 +160,9 @@
"DeleteProperty": {
"methods": ["deleteProperty", "deleteProperty", "deleteProperty", "deletePropertyCallable"]
},
"DeleteSKAdNetworkConversionValueSchema": {
"methods": ["deleteSKAdNetworkConversionValueSchema", "deleteSKAdNetworkConversionValueSchema", "deleteSKAdNetworkConversionValueSchema", "deleteSKAdNetworkConversionValueSchemaCallable"]
},
"DeleteSearchAds360Link": {
"methods": ["deleteSearchAds360Link", "deleteSearchAds360Link", "deleteSearchAds360Link", "deleteSearchAds360LinkCallable"]
},
Expand Down Expand Up @@ -235,6 +241,9 @@
"GetProperty": {
"methods": ["getProperty", "getProperty", "getProperty", "getPropertyCallable"]
},
"GetSKAdNetworkConversionValueSchema": {
"methods": ["getSKAdNetworkConversionValueSchema", "getSKAdNetworkConversionValueSchema", "getSKAdNetworkConversionValueSchema", "getSKAdNetworkConversionValueSchemaCallable"]
},
"GetSearchAds360Link": {
"methods": ["getSearchAds360Link", "getSearchAds360Link", "getSearchAds360Link", "getSearchAds360LinkCallable"]
},
Expand Down Expand Up @@ -301,6 +310,9 @@
"ListProperties": {
"methods": ["listProperties", "listPropertiesPagedCallable", "listPropertiesCallable"]
},
"ListSKAdNetworkConversionValueSchemas": {
"methods": ["listSKAdNetworkConversionValueSchemas", "listSKAdNetworkConversionValueSchemas", "listSKAdNetworkConversionValueSchemas", "listSKAdNetworkConversionValueSchemasPagedCallable", "listSKAdNetworkConversionValueSchemasCallable"]
},
"ListSearchAds360Links": {
"methods": ["listSearchAds360Links", "listSearchAds360Links", "listSearchAds360Links", "listSearchAds360LinksPagedCallable", "listSearchAds360LinksCallable"]
},
Expand Down Expand Up @@ -334,6 +346,9 @@
"UpdateChannelGroup": {
"methods": ["updateChannelGroup", "updateChannelGroup", "updateChannelGroupCallable"]
},
"UpdateConversionEvent": {
"methods": ["updateConversionEvent", "updateConversionEvent", "updateConversionEventCallable"]
},
"UpdateCustomDimension": {
"methods": ["updateCustomDimension", "updateCustomDimension", "updateCustomDimensionCallable"]
},
Expand Down Expand Up @@ -370,6 +385,9 @@
"UpdateProperty": {
"methods": ["updateProperty", "updateProperty", "updatePropertyCallable"]
},
"UpdateSKAdNetworkConversionValueSchema": {
"methods": ["updateSKAdNetworkConversionValueSchema", "updateSKAdNetworkConversionValueSchema", "updateSKAdNetworkConversionValueSchemaCallable"]
},
"UpdateSearchAds360Link": {
"methods": ["updateSearchAds360Link", "updateSearchAds360Link", "updateSearchAds360LinkCallable"]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListGoogleAdsLinksPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListMeasurementProtocolSecretsPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListPropertiesPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListSKAdNetworkConversionValueSchemasPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListSearchAds360LinksPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.ListUserLinksPagedResponse;
import static com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient.SearchChangeHistoryEventsPagedResponse;
Expand Down Expand Up @@ -90,6 +91,7 @@
import com.google.analytics.admin.v1alpha.CreateGoogleAdsLinkRequest;
import com.google.analytics.admin.v1alpha.CreateMeasurementProtocolSecretRequest;
import com.google.analytics.admin.v1alpha.CreatePropertyRequest;
import com.google.analytics.admin.v1alpha.CreateSKAdNetworkConversionValueSchemaRequest;
import com.google.analytics.admin.v1alpha.CreateSearchAds360LinkRequest;
import com.google.analytics.admin.v1alpha.CreateUserLinkRequest;
import com.google.analytics.admin.v1alpha.CustomDimension;
Expand All @@ -112,6 +114,7 @@
import com.google.analytics.admin.v1alpha.DeleteGoogleAdsLinkRequest;
import com.google.analytics.admin.v1alpha.DeleteMeasurementProtocolSecretRequest;
import com.google.analytics.admin.v1alpha.DeletePropertyRequest;
import com.google.analytics.admin.v1alpha.DeleteSKAdNetworkConversionValueSchemaRequest;
import com.google.analytics.admin.v1alpha.DeleteSearchAds360LinkRequest;
import com.google.analytics.admin.v1alpha.DeleteUserLinkRequest;
import com.google.analytics.admin.v1alpha.DisplayVideo360AdvertiserLink;
Expand Down Expand Up @@ -146,6 +149,7 @@
import com.google.analytics.admin.v1alpha.GetGoogleSignalsSettingsRequest;
import com.google.analytics.admin.v1alpha.GetMeasurementProtocolSecretRequest;
import com.google.analytics.admin.v1alpha.GetPropertyRequest;
import com.google.analytics.admin.v1alpha.GetSKAdNetworkConversionValueSchemaRequest;
import com.google.analytics.admin.v1alpha.GetSearchAds360LinkRequest;
import com.google.analytics.admin.v1alpha.GetUserLinkRequest;
import com.google.analytics.admin.v1alpha.GlobalSiteTag;
Expand Down Expand Up @@ -191,6 +195,8 @@
import com.google.analytics.admin.v1alpha.ListMeasurementProtocolSecretsResponse;
import com.google.analytics.admin.v1alpha.ListPropertiesRequest;
import com.google.analytics.admin.v1alpha.ListPropertiesResponse;
import com.google.analytics.admin.v1alpha.ListSKAdNetworkConversionValueSchemasRequest;
import com.google.analytics.admin.v1alpha.ListSKAdNetworkConversionValueSchemasResponse;
import com.google.analytics.admin.v1alpha.ListSearchAds360LinksRequest;
import com.google.analytics.admin.v1alpha.ListSearchAds360LinksResponse;
import com.google.analytics.admin.v1alpha.ListUserLinksRequest;
Expand All @@ -201,6 +207,7 @@
import com.google.analytics.admin.v1alpha.ProvisionAccountTicketResponse;
import com.google.analytics.admin.v1alpha.RunAccessReportRequest;
import com.google.analytics.admin.v1alpha.RunAccessReportResponse;
import com.google.analytics.admin.v1alpha.SKAdNetworkConversionValueSchema;
import com.google.analytics.admin.v1alpha.SearchAds360Link;
import com.google.analytics.admin.v1alpha.SearchChangeHistoryEventsRequest;
import com.google.analytics.admin.v1alpha.SearchChangeHistoryEventsResponse;
Expand All @@ -211,6 +218,7 @@
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.UpdateConversionEventRequest;
import com.google.analytics.admin.v1alpha.UpdateCustomDimensionRequest;
import com.google.analytics.admin.v1alpha.UpdateCustomMetricRequest;
import com.google.analytics.admin.v1alpha.UpdateDataRetentionSettingsRequest;
Expand All @@ -223,6 +231,7 @@
import com.google.analytics.admin.v1alpha.UpdateGoogleSignalsSettingsRequest;
import com.google.analytics.admin.v1alpha.UpdateMeasurementProtocolSecretRequest;
import com.google.analytics.admin.v1alpha.UpdatePropertyRequest;
import com.google.analytics.admin.v1alpha.UpdateSKAdNetworkConversionValueSchemaRequest;
import com.google.analytics.admin.v1alpha.UpdateSearchAds360LinkRequest;
import com.google.analytics.admin.v1alpha.UpdateUserLinkRequest;
import com.google.analytics.admin.v1alpha.UserLink;
Expand Down Expand Up @@ -448,6 +457,48 @@ public UnaryCallable<DeleteGoogleAdsLinkRequest, Empty> deleteGoogleAdsLinkCalla
"Not implemented: acknowledgeUserDataCollectionCallable()");
}

public UnaryCallable<GetSKAdNetworkConversionValueSchemaRequest, SKAdNetworkConversionValueSchema>
getSKAdNetworkConversionValueSchemaCallable() {
throw new UnsupportedOperationException(
"Not implemented: getSKAdNetworkConversionValueSchemaCallable()");
}

public UnaryCallable<
CreateSKAdNetworkConversionValueSchemaRequest, SKAdNetworkConversionValueSchema>
createSKAdNetworkConversionValueSchemaCallable() {
throw new UnsupportedOperationException(
"Not implemented: createSKAdNetworkConversionValueSchemaCallable()");
}

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

public UnaryCallable<
UpdateSKAdNetworkConversionValueSchemaRequest, SKAdNetworkConversionValueSchema>
updateSKAdNetworkConversionValueSchemaCallable() {
throw new UnsupportedOperationException(
"Not implemented: updateSKAdNetworkConversionValueSchemaCallable()");
}

public UnaryCallable<
ListSKAdNetworkConversionValueSchemasRequest,
ListSKAdNetworkConversionValueSchemasPagedResponse>
listSKAdNetworkConversionValueSchemasPagedCallable() {
throw new UnsupportedOperationException(
"Not implemented: listSKAdNetworkConversionValueSchemasPagedCallable()");
}

public UnaryCallable<
ListSKAdNetworkConversionValueSchemasRequest,
ListSKAdNetworkConversionValueSchemasResponse>
listSKAdNetworkConversionValueSchemasCallable() {
throw new UnsupportedOperationException(
"Not implemented: listSKAdNetworkConversionValueSchemasCallable()");
}

public UnaryCallable<SearchChangeHistoryEventsRequest, SearchChangeHistoryEventsPagedResponse>
searchChangeHistoryEventsPagedCallable() {
throw new UnsupportedOperationException(
Expand Down Expand Up @@ -475,6 +526,11 @@ public UnaryCallable<DeleteGoogleAdsLinkRequest, Empty> deleteGoogleAdsLinkCalla
throw new UnsupportedOperationException("Not implemented: createConversionEventCallable()");
}

public UnaryCallable<UpdateConversionEventRequest, ConversionEvent>
updateConversionEventCallable() {
throw new UnsupportedOperationException("Not implemented: updateConversionEventCallable()");
}

public UnaryCallable<GetConversionEventRequest, ConversionEvent> getConversionEventCallable() {
throw new UnsupportedOperationException("Not implemented: getConversionEventCallable()");
}
Expand Down
Loading
Loading