/resources/account_link.proto

--- v15/resources/account_link.proto    2024-02-20 20:29:01.000000000 +0000
+++ v16/resources/account_link.proto    2024-02-20 20:29:04.000000000 +0000
@@ -67,18 +67,6 @@
     // Immutable. A third party app analytics link.
     ThirdPartyAppAnalyticsLinkIdentifier third_party_app_analytics = 5
         [(google.api.field_behavior) = IMMUTABLE];
-
-    // Output only. Data partner link.
-    DataPartnerLinkIdentifier data_partner = 6
-        [(google.api.field_behavior) = OUTPUT_ONLY];
-
-    // Output only. Google Ads link.
-    GoogleAdsLinkIdentifier google_ads = 7
-        [(google.api.field_behavior) = OUTPUT_ONLY];
-
-    // Output only. Advertising Partner link
-    AdvertisingPartnerLinkIdentifier advertising_partner = 10
-        [(google.api.field_behavior) = OUTPUT_ONLY];
   }
 }

@@ -108,43 +96,6 @@
   // This field should not be empty when creating a new third
   // party app analytics link. It is unable to be modified after the creation of
   // the link.
-  google.ads.googleads.v15.enums.MobileAppVendorEnum.MobileAppVendor
+  google.ads.googleads.v16.enums.MobileAppVendorEnum.MobileAppVendor
       app_vendor = 3 [(google.api.field_behavior) = IMMUTABLE];
 }
-
-// The identifier for Data Partner account.
-message DataPartnerLinkIdentifier {
-  // Immutable. The customer ID of the Data partner account.
-  // This field is required and should not be empty when creating a new
-  // data partner link. It is unable to be modified after the creation of
-  // the link.
-  optional int64 data_partner_id = 1 [(google.api.field_behavior) = IMMUTABLE];
-}
-
-// The identifier for Google Ads account.
-message GoogleAdsLinkIdentifier {
-  // Immutable. The resource name of the Google Ads account.
-  // This field is required and should not be empty when creating a new
-  // Google Ads link. It is unable to be modified after the creation of
-  // the link.
-  optional string customer = 3 [
-    (google.api.field_behavior) = IMMUTABLE,
-    (google.api.resource_reference) = {
-      type: "googleads.googleapis.com/Customer"
-    }
-  ];
-}
-
-// The identifier for the Advertising Partner Google Ads account.
-message AdvertisingPartnerLinkIdentifier {
-  // Immutable. The resource name of the advertising partner Google Ads account.
-  // This field is required and should not be empty when creating a new
-  // Advertising Partner link. It is unable to be modified after the creation of
-  // the link.
-  optional string customer = 1 [
-    (google.api.field_behavior) = IMMUTABLE,
-    (google.api.resource_reference) = {
-      type: "googleads.googleapis.com/Customer"
-    }
-  ];
-}