@@ -31,7 +31,7 @@ option java_multiple_files = true;
3131option java_outer_classname = "AnalyticsAdminProto" ;
3232option java_package = "com.google.analytics.admin.v1beta" ;
3333
34- // Service Interface for the Analytics Admin API (GA4) .
34+ // Service Interface for the Google Analytics Admin API.
3535service AnalyticsAdminService {
3636 option (google.api.default_host ) = "analyticsadmin.googleapis.com" ;
3737 option (google.api.oauth_scopes ) =
@@ -48,7 +48,7 @@ service AnalyticsAdminService {
4848
4949 // Returns all accounts accessible by the caller.
5050 //
51- // Note that these accounts might not currently have GA4 properties.
51+ // Note that these accounts might not currently have GA properties.
5252 // Soft-deleted (ie: "trashed") accounts are excluded by default.
5353 // Returns an empty list if no relevant accounts are found.
5454 rpc ListAccounts (ListAccountsRequest ) returns (ListAccountsResponse ) {
@@ -101,7 +101,7 @@ service AnalyticsAdminService {
101101 };
102102 }
103103
104- // Lookup for a single "GA4" Property.
104+ // Lookup for a single GA Property.
105105 rpc GetProperty (GetPropertyRequest ) returns (Property ) {
106106 option (google.api.http ) = {
107107 get : "/v1beta/{name=properties/*}"
@@ -111,7 +111,6 @@ service AnalyticsAdminService {
111111
112112 // Returns child Properties under the specified parent Account.
113113 //
114- // Only "GA4" properties will be returned.
115114 // Properties will be excluded if the caller does not have access.
116115 // Soft-deleted (ie: "trashed") properties are excluded by default.
117116 // Returns an empty list if no relevant properties are found.
@@ -121,7 +120,8 @@ service AnalyticsAdminService {
121120 };
122121 }
123122
124- // Creates an "GA4" property with the specified location and attributes.
123+ // Creates a Google Analytics property with the specified location and
124+ // attributes.
125125 rpc CreateProperty (CreatePropertyRequest ) returns (Property ) {
126126 option (google.api.http ) = {
127127 post : "/v1beta/properties"
@@ -140,7 +140,7 @@ service AnalyticsAdminService {
140140 // will be permanently purged.
141141 // https://support.google.com/analytics/answer/6154772
142142 //
143- // Returns an error if the target is not found, or is not a GA4 Property .
143+ // Returns an error if the target is not found.
144144 rpc DeleteProperty (DeletePropertyRequest ) returns (Property ) {
145145 option (google.api.http ) = {
146146 delete : "/v1beta/{name=properties/*}"
@@ -233,7 +233,7 @@ service AnalyticsAdminService {
233233 option (google.api.method_signature ) = "name" ;
234234 }
235235
236- // Lookup for a single "GA4" MeasurementProtocolSecret.
236+ // Lookup for a single MeasurementProtocolSecret.
237237 rpc GetMeasurementProtocolSecret (GetMeasurementProtocolSecretRequest )
238238 returns (MeasurementProtocolSecret ) {
239239 option (google.api.http ) = {
@@ -297,6 +297,9 @@ service AnalyticsAdminService {
297297
298298 // Searches through all changes to an account or its children given the
299299 // specified set of filters.
300+ //
301+ // Only returns the subset of changes supported by the API. The UI may return
302+ // additional changes.
300303 rpc SearchChangeHistoryEvents (SearchChangeHistoryEventsRequest )
301304 returns (SearchChangeHistoryEventsResponse ) {
302305 option (google.api.http ) = {
@@ -571,12 +574,17 @@ service AnalyticsAdminService {
571574 // only be requested on Google Analytics 360 properties. This method is only
572575 // available to Administrators.
573576 //
574- // These data access records include GA4 UI Reporting, GA4 UI Explorations,
575- // GA4 Data API, and other products like Firebase & Admob that can retrieve
577+ // These data access records include GA UI Reporting, GA UI Explorations,
578+ // GA Data API, and other products like Firebase & Admob that can retrieve
576579 // data from Google Analytics through a linkage. These records don't include
577580 // property configuration changes like adding a stream or changing a
578581 // property's time zone. For configuration change history, see
579582 // [searchChangeHistoryEvents](https://developers.google.com/analytics/devguides/config/admin/v1/rest/v1alpha/accounts/searchChangeHistoryEvents).
583+ //
584+ // To give your feedback on this API, complete the [Google Analytics Access
585+ // Reports
586+ // feedback](https://docs.google.com/forms/d/e/1FAIpQLSdmEBUrMzAEdiEKk5TV5dEHvDUZDRlgWYdQdAeSdtR4hVjEhw/viewform)
587+ // form.
580588 rpc RunAccessReport (RunAccessReportRequest )
581589 returns (RunAccessReportResponse ) {
582590 option (google.api.http ) = {
@@ -597,9 +605,9 @@ message RunAccessReportRequest {
597605 // access for all properties under that account.
598606 //
599607 // To request at the property level, entity should be for example
600- // 'properties/123' if "123" is your GA4 property ID. To request at the
601- // account level, entity should be for example 'accounts/1234' if "1234" is
602- // your GA4 Account ID.
608+ // 'properties/123' if "123" is your Google Analytics property ID. To request
609+ // at the account level, entity should be for example 'accounts/1234' if
610+ // "1234" is your Google Analytics Account ID.
603611 string entity = 1 ;
604612
605613 // The dimensions requested and displayed in the response. Requests are
@@ -1142,9 +1150,14 @@ message SearchChangeHistoryEventsRequest {
11421150 [(google.api.field_behavior ) = OPTIONAL ];
11431151
11441152 // Optional. The maximum number of ChangeHistoryEvent items to return.
1145- // The service may return fewer than this value, even if there are additional
1146- // pages. If unspecified, at most 50 items will be returned.
1147- // The maximum value is 200 (higher values will be coerced to the maximum).
1153+ // If unspecified, at most 50 items will be returned. The maximum value is 200
1154+ // (higher values will be coerced to the maximum).
1155+ //
1156+ // Note that the service may return a page with fewer items than this value
1157+ // specifies (potentially even zero), and that there still may be additional
1158+ // pages. If you want a particular number of items, you'll need to continue
1159+ // requesting additional pages using `page_token` until you get the needed
1160+ // number.
11481161 int32 page_size = 8 [(google.api.field_behavior ) = OPTIONAL ];
11491162
11501163 // Optional. A page token, received from a previous
0 commit comments