Skip to content

Commit

Permalink
docs: renamed App + Web to Google Analytics 4 (GA4) in public documen…
Browse files Browse the repository at this point in the history
…tation

PiperOrigin-RevId: 338527875
  • Loading branch information
Google APIs authored and Copybara-Service committed Oct 22, 2020
1 parent b448d7d commit 2131e2f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions google/analytics/admin/v1alpha/analytics_admin.proto
Expand Up @@ -29,7 +29,7 @@ option java_multiple_files = true;
option java_outer_classname = "AnalyticsAdminProto";
option java_package = "com.google.analytics.admin.v1alpha";

// Service Interface for the Analytics Admin API (App+Web).
// Service Interface for the Analytics Admin API (GA4).
service AnalyticsAdminService {
option (google.api.default_host) = "analyticsadmin.googleapis.com";
option (google.api.oauth_scopes) =
Expand All @@ -50,7 +50,7 @@ service AnalyticsAdminService {

// Returns all accounts accessible by the caller.
//
// Note that these accounts might not currently have App+Web properties.
// Note that these accounts might not currently have GA4 properties.
// Soft-deleted (ie: "trashed") accounts are excluded by default.
// Returns an empty list if no relevant accounts are found.
rpc ListAccounts(ListAccountsRequest) returns (ListAccountsResponse) {
Expand Down Expand Up @@ -101,10 +101,10 @@ service AnalyticsAdminService {
};
}

// Lookup for a single "App+Web" Property.
// Lookup for a single "GA4" Property.
//
// Throws "Target not found" if no such property found, if property is not
// of the type "App+Web", or if caller does not have permissions to access it.
// of the type "GA4", or if caller does not have permissions to access it.
rpc GetProperty(GetPropertyRequest) returns (Property) {
option (google.api.http) = {
get: "/v1alpha/{name=properties/*}"
Expand All @@ -114,7 +114,7 @@ service AnalyticsAdminService {

// Returns child Properties under the specified parent Account.
//
// Only "App+Web" properties will be returned.
// Only "GA4" properties will be returned.
// Properties will be excluded if the caller does not have access.
// Soft-deleted (ie: "trashed") properties are excluded by default.
// Returns an empty list if no relevant properties are found.
Expand All @@ -124,7 +124,7 @@ service AnalyticsAdminService {
};
}

// Creates an "App+Web" property with the specified location and attributes.
// Creates an "GA4" property with the specified location and attributes.
rpc CreateProperty(CreatePropertyRequest) returns (Property) {
option (google.api.http) = {
post: "/v1alpha/properties"
Expand All @@ -143,7 +143,7 @@ service AnalyticsAdminService {
// will be permanently purged.
// https://support.google.com/analytics/answer/6154772
//
// Returns an error if the target is not found, or is not an App+Web Property.
// Returns an error if the target is not found, or is not an GA4 Property.
rpc DeleteProperty(DeletePropertyRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
delete: "/v1alpha/{name=properties/*}"
Expand Down
12 changes: 6 additions & 6 deletions google/analytics/admin/v1alpha/resources.proto
Expand Up @@ -56,7 +56,7 @@ message Account {
bool deleted = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
}

// A resource message representing a Google Analytics App+Web property.
// A resource message representing a Google Analytics GA4 property.
message Property {
option (google.api.resource) = {
type: "analyticsadmin.googleapis.com/Property"
Expand Down Expand Up @@ -354,7 +354,7 @@ message EnhancedMeasurementSettings {
string excluded_domains = 18;
}

// A link between an App+Web property and a Firebase project.
// A link between an GA4 property and a Firebase project.
message FirebaseLink {
option (google.api.resource) = {
type: "analyticsadmin.googleapis.com/FirebaseLink"
Expand All @@ -376,7 +376,7 @@ message FirebaseLink {
// Output only. Time when this FirebaseLink was originally created.
google.protobuf.Timestamp create_time = 3 [(google.api.field_behavior) = OUTPUT_ONLY];

// Maximum user access to the App + Web property allowed to admins of
// Maximum user access to the GA4 property allowed to admins of
// the linked Firebase project.
MaximumUserAccess maximum_user_access = 4;
}
Expand All @@ -394,7 +394,7 @@ message GlobalSiteTag {
string snippet = 1 [(google.api.field_behavior) = IMMUTABLE];
}

// A link between an App+Web property and a Google Ads account.
// A link between an GA4 property and a Google Ads account.
message GoogleAdsLink {
option (google.api.resource) = {
type: "analyticsadmin.googleapis.com/GoogleAdsLink"
Expand Down Expand Up @@ -571,7 +571,7 @@ enum MaximumUserAccess {
}

// A virtual resource representing an overview of an account and
// all its child App+Web properties.
// all its child GA4 properties.
message AccountSummary {
option (google.api.resource) = {
type: "analyticsadmin.googleapis.com/AccountSummary"
Expand All @@ -597,7 +597,7 @@ message AccountSummary {
repeated PropertySummary property_summaries = 4;
}

// A virtual resource representing metadata for an App+Web property.
// A virtual resource representing metadata for an GA4 property.
message PropertySummary {
// Resource name of property referred to by this property summary
// Format: properties/{property_id}
Expand Down

0 comments on commit 2131e2f

Please sign in to comment.