@@ -36,7 +36,7 @@ option java_multiple_files = true;
3636option java_outer_classname = "AnalyticsAdminProto" ;
3737option java_package = "com.google.analytics.admin.v1alpha" ;
3838
39- // Service Interface for the Analytics Admin API (GA4) .
39+ // Service Interface for the Google Analytics Admin API.
4040service AnalyticsAdminService {
4141 option (google.api.default_host ) = "analyticsadmin.googleapis.com" ;
4242 option (google.api.oauth_scopes ) =
@@ -55,7 +55,7 @@ service AnalyticsAdminService {
5555
5656 // Returns all accounts accessible by the caller.
5757 //
58- // Note that these accounts might not currently have GA4 properties.
58+ // Note that these accounts might not currently have GA properties.
5959 // Soft-deleted (ie: "trashed") accounts are excluded by default.
6060 // Returns an empty list if no relevant accounts are found.
6161 rpc ListAccounts (ListAccountsRequest ) returns (ListAccountsResponse ) {
@@ -108,7 +108,7 @@ service AnalyticsAdminService {
108108 };
109109 }
110110
111- // Lookup for a single "GA4" Property.
111+ // Lookup for a single GA Property.
112112 rpc GetProperty (GetPropertyRequest ) returns (Property ) {
113113 option (google.api.http ) = {
114114 get : "/v1alpha/{name=properties/*}"
@@ -118,7 +118,6 @@ service AnalyticsAdminService {
118118
119119 // Returns child Properties under the specified parent Account.
120120 //
121- // Only "GA4" properties will be returned.
122121 // Properties will be excluded if the caller does not have access.
123122 // Soft-deleted (ie: "trashed") properties are excluded by default.
124123 // Returns an empty list if no relevant properties are found.
@@ -128,7 +127,8 @@ service AnalyticsAdminService {
128127 };
129128 }
130129
131- // Creates an "GA4" property with the specified location and attributes.
130+ // Creates a Google Analytics property with the specified location and
131+ // attributes.
132132 rpc CreateProperty (CreatePropertyRequest ) returns (Property ) {
133133 option (google.api.http ) = {
134134 post : "/v1alpha/properties"
@@ -147,7 +147,7 @@ service AnalyticsAdminService {
147147 // will be permanently purged.
148148 // https://support.google.com/analytics/answer/6154772
149149 //
150- // Returns an error if the target is not found, or is not a GA4 Property .
150+ // Returns an error if the target is not found.
151151 rpc DeleteProperty (DeletePropertyRequest ) returns (Property ) {
152152 option (google.api.http ) = {
153153 delete : "/v1alpha/{name=properties/*}"
@@ -249,7 +249,7 @@ service AnalyticsAdminService {
249249 option (google.api.method_signature ) = "name" ;
250250 }
251251
252- // Lookup for a single "GA4" MeasurementProtocolSecret.
252+ // Lookup for a single MeasurementProtocolSecret.
253253 rpc GetMeasurementProtocolSecret (GetMeasurementProtocolSecretRequest )
254254 returns (MeasurementProtocolSecret ) {
255255 option (google.api.http ) = {
@@ -368,6 +368,9 @@ service AnalyticsAdminService {
368368
369369 // Searches through all changes to an account or its children given the
370370 // specified set of filters.
371+ //
372+ // Only returns the subset of changes supported by the API. The UI may return
373+ // additional changes.
371374 rpc SearchChangeHistoryEvents (SearchChangeHistoryEventsRequest )
372375 returns (SearchChangeHistoryEventsResponse ) {
373376 option (google.api.http ) = {
@@ -900,12 +903,17 @@ service AnalyticsAdminService {
900903 // only be requested on Google Analytics 360 properties. This method is only
901904 // available to Administrators.
902905 //
903- // These data access records include GA4 UI Reporting, GA4 UI Explorations,
904- // GA4 Data API, and other products like Firebase & Admob that can retrieve
906+ // These data access records include GA UI Reporting, GA UI Explorations,
907+ // GA Data API, and other products like Firebase & Admob that can retrieve
905908 // data from Google Analytics through a linkage. These records don't include
906909 // property configuration changes like adding a stream or changing a
907910 // property's time zone. For configuration change history, see
908911 // [searchChangeHistoryEvents](https://developers.google.com/analytics/devguides/config/admin/v1/rest/v1alpha/accounts/searchChangeHistoryEvents).
912+ //
913+ // To give your feedback on this API, complete the [Google Analytics Access
914+ // Reports
915+ // feedback](https://docs.google.com/forms/d/e/1FAIpQLSdmEBUrMzAEdiEKk5TV5dEHvDUZDRlgWYdQdAeSdtR4hVjEhw/viewform)
916+ // form.
909917 rpc RunAccessReport (RunAccessReportRequest )
910918 returns (RunAccessReportResponse ) {
911919 option (google.api.http ) = {
@@ -1580,9 +1588,9 @@ message RunAccessReportRequest {
15801588 // access for all properties under that account.
15811589 //
15821590 // To request at the property level, entity should be for example
1583- // 'properties/123' if "123" is your GA4 property ID. To request at the
1584- // account level, entity should be for example 'accounts/1234' if "1234" is
1585- // your GA4 Account ID.
1591+ // 'properties/123' if "123" is your Google Analytics property ID. To request
1592+ // at the account level, entity should be for example 'accounts/1234' if
1593+ // "1234" is your Google Analytics Account ID.
15861594 string entity = 1 ;
15871595
15881596 // The dimensions requested and displayed in the response. Requests are
@@ -2140,9 +2148,14 @@ message SearchChangeHistoryEventsRequest {
21402148 [(google.api.field_behavior ) = OPTIONAL ];
21412149
21422150 // Optional. The maximum number of ChangeHistoryEvent items to return.
2143- // The service may return fewer than this value, even if there are additional
2144- // pages. If unspecified, at most 50 items will be returned.
2145- // The maximum value is 200 (higher values will be coerced to the maximum).
2151+ // If unspecified, at most 50 items will be returned. The maximum value is 200
2152+ // (higher values will be coerced to the maximum).
2153+ //
2154+ // Note that the service may return a page with fewer items than this value
2155+ // specifies (potentially even zero), and that there still may be additional
2156+ // pages. If you want a particular number of items, you'll need to continue
2157+ // requesting additional pages using `page_token` until you get the needed
2158+ // number.
21462159 int32 page_size = 8 [(google.api.field_behavior ) = OPTIONAL ];
21472160
21482161 // Optional. A page token, received from a previous
0 commit comments