* try (AnalyticsAdminServiceClient analyticsAdminServiceClient = AnalyticsAdminServiceClient.create()) {
- * String parent = "";
+ * AccountName parent = AccountName.of("[ACCOUNT]");
+ * List<CreateUserLinkRequest> requests = new ArrayList<>();
* BatchCreateUserLinksRequest request = BatchCreateUserLinksRequest.newBuilder()
- * .setParent(parent)
+ * .setParent(parent.toString())
+ * .addAllRequests(requests)
* .build();
* BatchCreateUserLinksResponse response = analyticsAdminServiceClient.batchCreateUserLinks(request);
* }
@@ -1684,9 +1686,11 @@ public final BatchCreateUserLinksResponse batchCreateUserLinks(
*
*
* try (AnalyticsAdminServiceClient analyticsAdminServiceClient = AnalyticsAdminServiceClient.create()) {
- * String parent = "";
+ * AccountName parent = AccountName.of("[ACCOUNT]");
+ * List<CreateUserLinkRequest> requests = new ArrayList<>();
* BatchCreateUserLinksRequest request = BatchCreateUserLinksRequest.newBuilder()
- * .setParent(parent)
+ * .setParent(parent.toString())
+ * .addAllRequests(requests)
* .build();
* ApiFuture<BatchCreateUserLinksResponse> future = analyticsAdminServiceClient.batchCreateUserLinksCallable().futureCall(request);
* // Do something
@@ -1774,9 +1778,11 @@ public final UnaryCallable updateUserLinkCallab
*
*
* try (AnalyticsAdminServiceClient analyticsAdminServiceClient = AnalyticsAdminServiceClient.create()) {
- * String parent = "";
+ * AccountName parent = AccountName.of("[ACCOUNT]");
+ * List<UpdateUserLinkRequest> requests = new ArrayList<>();
* BatchUpdateUserLinksRequest request = BatchUpdateUserLinksRequest.newBuilder()
- * .setParent(parent)
+ * .setParent(parent.toString())
+ * .addAllRequests(requests)
* .build();
* BatchUpdateUserLinksResponse response = analyticsAdminServiceClient.batchUpdateUserLinks(request);
* }
@@ -1798,9 +1804,11 @@ public final BatchUpdateUserLinksResponse batchUpdateUserLinks(
*
*
* try (AnalyticsAdminServiceClient analyticsAdminServiceClient = AnalyticsAdminServiceClient.create()) {
- * String parent = "";
+ * AccountName parent = AccountName.of("[ACCOUNT]");
+ * List<UpdateUserLinkRequest> requests = new ArrayList<>();
* BatchUpdateUserLinksRequest request = BatchUpdateUserLinksRequest.newBuilder()
- * .setParent(parent)
+ * .setParent(parent.toString())
+ * .addAllRequests(requests)
* .build();
* ApiFuture<BatchUpdateUserLinksResponse> future = analyticsAdminServiceClient.batchUpdateUserLinksCallable().futureCall(request);
* // Do something
@@ -1909,9 +1917,11 @@ public final UnaryCallable deleteUserLinkCallable(
*
*
* try (AnalyticsAdminServiceClient analyticsAdminServiceClient = AnalyticsAdminServiceClient.create()) {
- * String parent = "";
+ * AccountName parent = AccountName.of("[ACCOUNT]");
+ * List<DeleteUserLinkRequest> requests = new ArrayList<>();
* BatchDeleteUserLinksRequest request = BatchDeleteUserLinksRequest.newBuilder()
- * .setParent(parent)
+ * .setParent(parent.toString())
+ * .addAllRequests(requests)
* .build();
* analyticsAdminServiceClient.batchDeleteUserLinks(request);
* }
@@ -1932,9 +1942,11 @@ public final void batchDeleteUserLinks(BatchDeleteUserLinksRequest request) {
*
*
* try (AnalyticsAdminServiceClient analyticsAdminServiceClient = AnalyticsAdminServiceClient.create()) {
- * String parent = "";
+ * AccountName parent = AccountName.of("[ACCOUNT]");
+ * List<DeleteUserLinkRequest> requests = new ArrayList<>();
* BatchDeleteUserLinksRequest request = BatchDeleteUserLinksRequest.newBuilder()
- * .setParent(parent)
+ * .setParent(parent.toString())
+ * .addAllRequests(requests)
* .build();
* ApiFuture<Void> future = analyticsAdminServiceClient.batchDeleteUserLinksCallable().futureCall(request);
* // Do something
@@ -3570,7 +3582,7 @@ public final ListAndroidAppDataStreamsPagedResponse listAndroidAppDataStreams(
*
*
* @param name Required. The name of the settings to lookup. Format:
- * properties/{property_id}/webDataStreams/{stream_id}/enhancedMeasurementSettings Example:
+ * properties/{property_id}/webDataStreams/{stream_id}/enhancedMeasurementSettings Example:
* "properties/1000/webDataStreams/2000/enhancedMeasurementSettings"
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
@@ -3598,7 +3610,7 @@ public final EnhancedMeasurementSettings getEnhancedMeasurementSettings(
*
*
* @param name Required. The name of the settings to lookup. Format:
- * properties/{property_id}/webDataStreams/{stream_id}/enhancedMeasurementSettings Example:
+ * properties/{property_id}/webDataStreams/{stream_id}/enhancedMeasurementSettings Example:
* "properties/1000/webDataStreams/2000/enhancedMeasurementSettings"
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
diff --git a/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClientTest.java b/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClientTest.java
index d6cdf05f..2928132b 100644
--- a/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClientTest.java
+++ b/google-analytics-admin/src/test/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClientTest.java
@@ -848,9 +848,13 @@ public void batchCreateUserLinksTest() {
BatchCreateUserLinksResponse.newBuilder().build();
mockAnalyticsAdminService.addResponse(expectedResponse);
- String parent = "parent-995424086";
+ AccountName parent = AccountName.of("[ACCOUNT]");
+ List requests = new ArrayList<>();
BatchCreateUserLinksRequest request =
- BatchCreateUserLinksRequest.newBuilder().setParent(parent).build();
+ BatchCreateUserLinksRequest.newBuilder()
+ .setParent(parent.toString())
+ .addAllRequests(requests)
+ .build();
BatchCreateUserLinksResponse actualResponse = client.batchCreateUserLinks(request);
Assert.assertEquals(expectedResponse, actualResponse);
@@ -859,7 +863,8 @@ public void batchCreateUserLinksTest() {
Assert.assertEquals(1, actualRequests.size());
BatchCreateUserLinksRequest actualRequest = (BatchCreateUserLinksRequest) actualRequests.get(0);
- Assert.assertEquals(parent, actualRequest.getParent());
+ Assert.assertEquals(parent, AccountName.parse(actualRequest.getParent()));
+ Assert.assertEquals(requests, actualRequest.getRequestsList());
Assert.assertTrue(
channelProvider.isHeaderSent(
ApiClientHeaderProvider.getDefaultApiClientHeaderKey(),
@@ -873,9 +878,13 @@ public void batchCreateUserLinksExceptionTest() throws Exception {
mockAnalyticsAdminService.addException(exception);
try {
- String parent = "parent-995424086";
+ AccountName parent = AccountName.of("[ACCOUNT]");
+ List requests = new ArrayList<>();
BatchCreateUserLinksRequest request =
- BatchCreateUserLinksRequest.newBuilder().setParent(parent).build();
+ BatchCreateUserLinksRequest.newBuilder()
+ .setParent(parent.toString())
+ .addAllRequests(requests)
+ .build();
client.batchCreateUserLinks(request);
Assert.fail("No exception raised");
@@ -932,9 +941,13 @@ public void batchUpdateUserLinksTest() {
BatchUpdateUserLinksResponse.newBuilder().build();
mockAnalyticsAdminService.addResponse(expectedResponse);
- String parent = "parent-995424086";
+ AccountName parent = AccountName.of("[ACCOUNT]");
+ List requests = new ArrayList<>();
BatchUpdateUserLinksRequest request =
- BatchUpdateUserLinksRequest.newBuilder().setParent(parent).build();
+ BatchUpdateUserLinksRequest.newBuilder()
+ .setParent(parent.toString())
+ .addAllRequests(requests)
+ .build();
BatchUpdateUserLinksResponse actualResponse = client.batchUpdateUserLinks(request);
Assert.assertEquals(expectedResponse, actualResponse);
@@ -943,7 +956,8 @@ public void batchUpdateUserLinksTest() {
Assert.assertEquals(1, actualRequests.size());
BatchUpdateUserLinksRequest actualRequest = (BatchUpdateUserLinksRequest) actualRequests.get(0);
- Assert.assertEquals(parent, actualRequest.getParent());
+ Assert.assertEquals(parent, AccountName.parse(actualRequest.getParent()));
+ Assert.assertEquals(requests, actualRequest.getRequestsList());
Assert.assertTrue(
channelProvider.isHeaderSent(
ApiClientHeaderProvider.getDefaultApiClientHeaderKey(),
@@ -957,9 +971,13 @@ public void batchUpdateUserLinksExceptionTest() throws Exception {
mockAnalyticsAdminService.addException(exception);
try {
- String parent = "parent-995424086";
+ AccountName parent = AccountName.of("[ACCOUNT]");
+ List requests = new ArrayList<>();
BatchUpdateUserLinksRequest request =
- BatchUpdateUserLinksRequest.newBuilder().setParent(parent).build();
+ BatchUpdateUserLinksRequest.newBuilder()
+ .setParent(parent.toString())
+ .addAllRequests(requests)
+ .build();
client.batchUpdateUserLinks(request);
Assert.fail("No exception raised");
@@ -1011,9 +1029,13 @@ public void batchDeleteUserLinksTest() {
Empty expectedResponse = Empty.newBuilder().build();
mockAnalyticsAdminService.addResponse(expectedResponse);
- String parent = "parent-995424086";
+ AccountName parent = AccountName.of("[ACCOUNT]");
+ List requests = new ArrayList<>();
BatchDeleteUserLinksRequest request =
- BatchDeleteUserLinksRequest.newBuilder().setParent(parent).build();
+ BatchDeleteUserLinksRequest.newBuilder()
+ .setParent(parent.toString())
+ .addAllRequests(requests)
+ .build();
client.batchDeleteUserLinks(request);
@@ -1021,7 +1043,8 @@ public void batchDeleteUserLinksTest() {
Assert.assertEquals(1, actualRequests.size());
BatchDeleteUserLinksRequest actualRequest = (BatchDeleteUserLinksRequest) actualRequests.get(0);
- Assert.assertEquals(parent, actualRequest.getParent());
+ Assert.assertEquals(parent, AccountName.parse(actualRequest.getParent()));
+ Assert.assertEquals(requests, actualRequest.getRequestsList());
Assert.assertTrue(
channelProvider.isHeaderSent(
ApiClientHeaderProvider.getDefaultApiClientHeaderKey(),
@@ -1035,9 +1058,13 @@ public void batchDeleteUserLinksExceptionTest() throws Exception {
mockAnalyticsAdminService.addException(exception);
try {
- String parent = "parent-995424086";
+ AccountName parent = AccountName.of("[ACCOUNT]");
+ List requests = new ArrayList<>();
BatchDeleteUserLinksRequest request =
- BatchDeleteUserLinksRequest.newBuilder().setParent(parent).build();
+ BatchDeleteUserLinksRequest.newBuilder()
+ .setParent(parent.toString())
+ .addAllRequests(requests)
+ .build();
client.batchDeleteUserLinks(request);
Assert.fail("No exception raised");
diff --git a/grpc-google-analytics-admin-v1alpha/pom.xml b/grpc-google-analytics-admin-v1alpha/pom.xml
index efefac72..93d82d7f 100644
--- a/grpc-google-analytics-admin-v1alpha/pom.xml
+++ b/grpc-google-analytics-admin-v1alpha/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
grpc-google-analytics-admin-v1alpha
- 0.2.0
+ 0.2.1
grpc-google-analytics-admin-v1alpha
GRPC library for grpc-google-analytics-admin-v1alpha
com.google.analytics
google-analytics-admin-parent
- 0.2.0
+ 0.2.1
diff --git a/pom.xml b/pom.xml
index 9b066ab8..d7a1ae28 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.google.analytics
google-analytics-admin-parent
pom
- 0.2.0
+ 0.2.1
Google Analytics Admin Parent
https://github.com/googleapis/java-analytics-admin
@@ -70,17 +70,17 @@
com.google.analytics
google-analytics-admin
- 0.2.0
+ 0.2.1
com.google.api.grpc
proto-google-analytics-admin-v1alpha
- 0.2.0
+ 0.2.1
com.google.api.grpc
grpc-google-analytics-admin-v1alpha
- 0.2.0
+ 0.2.1
diff --git a/proto-google-analytics-admin-v1alpha/pom.xml b/proto-google-analytics-admin-v1alpha/pom.xml
index 8297e0c5..ad888bce 100644
--- a/proto-google-analytics-admin-v1alpha/pom.xml
+++ b/proto-google-analytics-admin-v1alpha/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
proto-google-analytics-admin-v1alpha
- 0.2.0
+ 0.2.1
proto-google-analytics-admin-v1alpha
PROTO library for proto-google-analytics-admin-v1alpha
com.google.analytics
google-analytics-admin-parent
- 0.2.0
+ 0.2.1
diff --git a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Account.java b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Account.java
index 2c5d8013..bb1667b8 100644
--- a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Account.java
+++ b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Account.java
@@ -369,7 +369,9 @@ public com.google.protobuf.ByteString getDisplayNameBytes() {
*
*
* Country of business. Must be a non-deprecated code for a UN M.49 region.
- * https://unicode.org/cldr/charts/latest/supplemental/territory_containment_un_m_49.html
+ * https:
+ * //unicode.org/cldr/charts/latest/supplem
+ * // ental/territory_containment_un_m_49.html
*
*
* string country_code = 5;
@@ -393,7 +395,9 @@ public java.lang.String getCountryCode() {
*
*
* Country of business. Must be a non-deprecated code for a UN M.49 region.
- * https://unicode.org/cldr/charts/latest/supplemental/territory_containment_un_m_49.html
+ * https:
+ * //unicode.org/cldr/charts/latest/supplem
+ * // ental/territory_containment_un_m_49.html
*
*
* string country_code = 5;
@@ -1481,7 +1485,9 @@ public Builder setDisplayNameBytes(com.google.protobuf.ByteString value) {
*
*
* Country of business. Must be a non-deprecated code for a UN M.49 region.
- * https://unicode.org/cldr/charts/latest/supplemental/territory_containment_un_m_49.html
+ * https:
+ * //unicode.org/cldr/charts/latest/supplem
+ * // ental/territory_containment_un_m_49.html
*
*
* string country_code = 5;
@@ -1504,7 +1510,9 @@ public java.lang.String getCountryCode() {
*
*
* Country of business. Must be a non-deprecated code for a UN M.49 region.
- * https://unicode.org/cldr/charts/latest/supplemental/territory_containment_un_m_49.html
+ * https:
+ * //unicode.org/cldr/charts/latest/supplem
+ * // ental/territory_containment_un_m_49.html
*
*
* string country_code = 5;
@@ -1527,7 +1535,9 @@ public com.google.protobuf.ByteString getCountryCodeBytes() {
*
*
* Country of business. Must be a non-deprecated code for a UN M.49 region.
- * https://unicode.org/cldr/charts/latest/supplemental/territory_containment_un_m_49.html
+ * https:
+ * //unicode.org/cldr/charts/latest/supplem
+ * // ental/territory_containment_un_m_49.html
*
*
* string country_code = 5;
@@ -1549,7 +1559,9 @@ public Builder setCountryCode(java.lang.String value) {
*
*
* Country of business. Must be a non-deprecated code for a UN M.49 region.
- * https://unicode.org/cldr/charts/latest/supplemental/territory_containment_un_m_49.html
+ * https:
+ * //unicode.org/cldr/charts/latest/supplem
+ * // ental/territory_containment_un_m_49.html
*
*
* string country_code = 5;
@@ -1567,7 +1579,9 @@ public Builder clearCountryCode() {
*
*
* Country of business. Must be a non-deprecated code for a UN M.49 region.
- * https://unicode.org/cldr/charts/latest/supplemental/territory_containment_un_m_49.html
+ * https:
+ * //unicode.org/cldr/charts/latest/supplem
+ * // ental/territory_containment_un_m_49.html
*
*
* string country_code = 5;
diff --git a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountOrBuilder.java b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountOrBuilder.java
index a6654db5..c8d20fca 100644
--- a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountOrBuilder.java
+++ b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountOrBuilder.java
@@ -158,7 +158,9 @@ public interface AccountOrBuilder
*
*
* Country of business. Must be a non-deprecated code for a UN M.49 region.
- * https://unicode.org/cldr/charts/latest/supplemental/territory_containment_un_m_49.html
+ * https:
+ * //unicode.org/cldr/charts/latest/supplem
+ * // ental/territory_containment_un_m_49.html
*
*
* string country_code = 5;
@@ -171,7 +173,9 @@ public interface AccountOrBuilder
*
*
* Country of business. Must be a non-deprecated code for a UN M.49 region.
- * https://unicode.org/cldr/charts/latest/supplemental/territory_containment_un_m_49.html
+ * https:
+ * //unicode.org/cldr/charts/latest/supplem
+ * // ental/territory_containment_un_m_49.html
*
*
* string country_code = 5;
diff --git a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminProto.java b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminProto.java
index a9d6d42b..87ef6f4c 100644
--- a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminProto.java
+++ b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminProto.java
@@ -349,409 +349,413 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "admin.googleapis.com/UserLink\022\034\n\017notify_"
+ "new_user\030\002 \001(\010B\003\340A\001\022@\n\tuser_link\030\003 \001(\0132("
+ ".google.analytics.admin.v1alpha.UserLink"
- + "B\003\340A\002\"\232\001\n\033BatchCreateUserLinksRequest\022\023\n"
- + "\006parent\030\001 \001(\tB\003\340A\002\022\035\n\020notify_new_users\030\002"
- + " \001(\010B\003\340A\001\022G\n\010requests\030\003 \003(\01325.google.ana"
- + "lytics.admin.v1alpha.CreateUserLinkReque"
- + "st\"\\\n\034BatchCreateUserLinksResponse\022<\n\nus"
- + "er_links\030\001 \003(\0132(.google.analytics.admin."
- + "v1alpha.UserLink\"Y\n\025UpdateUserLinkReques"
- + "t\022@\n\tuser_link\030\001 \001(\0132(.google.analytics."
- + "admin.v1alpha.UserLinkB\003\340A\002\"{\n\033BatchUpda"
- + "teUserLinksRequest\022\023\n\006parent\030\001 \001(\tB\003\340A\002\022"
- + "G\n\010requests\030\002 \003(\01325.google.analytics.adm"
- + "in.v1alpha.UpdateUserLinkRequest\"\\\n\034Batc"
- + "hUpdateUserLinksResponse\022<\n\nuser_links\030\001"
- + " \003(\0132(.google.analytics.admin.v1alpha.Us"
- + "erLink\"U\n\025DeleteUserLinkRequest\022<\n\004name\030"
- + "\001 \001(\tB.\340A\002\372A(\n&analyticsadmin.googleapis"
- + ".com/UserLink\"{\n\033BatchDeleteUserLinksReq"
- + "uest\022\023\n\006parent\030\001 \001(\tB\003\340A\002\022G\n\010requests\030\002 "
- + "\003(\01325.google.analytics.admin.v1alpha.Del"
- + "eteUserLinkRequest\"\\\n\027GetWebDataStreamRe"
- + "quest\022A\n\004name\030\001 \001(\tB3\340A\002\372A-\n+analyticsad"
- + "min.googleapis.com/WebDataStream\"_\n\032Dele"
- + "teWebDataStreamRequest\022A\n\004name\030\001 \001(\tB3\340A"
- + "\002\372A-\n+analyticsadmin.googleapis.com/WebD"
- + "ataStream\"\232\001\n\032UpdateWebDataStreamRequest"
- + "\022K\n\017web_data_stream\030\001 \001(\0132-.google.analy"
- + "tics.admin.v1alpha.WebDataStreamB\003\340A\002\022/\n"
- + "\013update_mask\030\002 \001(\0132\032.google.protobuf.Fie"
- + "ldMask\"\256\001\n\032CreateWebDataStreamRequest\022K\n"
- + "\017web_data_stream\030\001 \001(\0132-.google.analytic"
- + "s.admin.v1alpha.WebDataStreamB\003\340A\002\022C\n\006pa"
- + "rent\030\002 \001(\tB3\340A\002\372A-\022+analyticsadmin.googl"
- + "eapis.com/WebDataStream\"\207\001\n\031ListWebDataS"
- + "treamsRequest\022C\n\006parent\030\001 \001(\tB3\340A\002\372A-\022+a"
- + "nalyticsadmin.googleapis.com/WebDataStre"
- + "am\022\021\n\tpage_size\030\002 \001(\005\022\022\n\npage_token\030\003 \001("
- + "\t\"~\n\032ListWebDataStreamsResponse\022G\n\020web_d"
- + "ata_streams\030\001 \003(\0132-.google.analytics.adm"
- + "in.v1alpha.WebDataStream\022\027\n\017next_page_to"
- + "ken\030\002 \001(\t\"b\n\032GetIosAppDataStreamRequest\022"
- + "D\n\004name\030\001 \001(\tB6\340A\002\372A0\n.analyticsadmin.go"
- + "ogleapis.com/IosAppDataStream\"e\n\035DeleteI"
- + "osAppDataStreamRequest\022D\n\004name\030\001 \001(\tB6\340A"
- + "\002\372A0\n.analyticsadmin.googleapis.com/IosA"
- + "ppDataStream\"\244\001\n\035UpdateIosAppDataStreamR"
- + "equest\022R\n\023ios_app_data_stream\030\001 \001(\01320.go"
- + "ogle.analytics.admin.v1alpha.IosAppDataS"
- + "treamB\003\340A\002\022/\n\013update_mask\030\002 \001(\0132\032.google"
- + ".protobuf.FieldMask\"\273\001\n\035CreateIosAppData"
- + "StreamRequest\022R\n\023ios_app_data_stream\030\001 \001"
- + "(\01320.google.analytics.admin.v1alpha.IosA"
- + "ppDataStreamB\003\340A\002\022F\n\006parent\030\002 \001(\tB6\340A\002\372A"
- + "0\022.analyticsadmin.googleapis.com/IosAppD"
- + "ataStream\"\215\001\n\034ListIosAppDataStreamsReque"
- + "st\022F\n\006parent\030\001 \001(\tB6\340A\002\372A0\022.analyticsadm"
- + "in.googleapis.com/IosAppDataStream\022\021\n\tpa"
- + "ge_size\030\002 \001(\005\022\022\n\npage_token\030\003 \001(\t\"\210\001\n\035Li"
- + "stIosAppDataStreamsResponse\022N\n\024ios_app_d"
- + "ata_streams\030\001 \003(\01320.google.analytics.adm"
- + "in.v1alpha.IosAppDataStream\022\027\n\017next_page"
- + "_token\030\002 \001(\t\"j\n\036GetAndroidAppDataStreamR"
- + "equest\022H\n\004name\030\001 \001(\tB:\340A\002\372A4\n2analyticsa"
- + "dmin.googleapis.com/AndroidAppDataStream"
- + "\"m\n!DeleteAndroidAppDataStreamRequest\022H\n"
- + "\004name\030\001 \001(\tB:\340A\002\372A4\n2analyticsadmin.goog"
- + "leapis.com/AndroidAppDataStream\"\260\001\n!Upda"
- + "teAndroidAppDataStreamRequest\022Z\n\027android"
- + "_app_data_stream\030\001 \001(\01324.google.analytic"
- + "s.admin.v1alpha.AndroidAppDataStreamB\003\340A"
- + "\002\022/\n\013update_mask\030\002 \001(\0132\032.google.protobuf"
- + ".FieldMask\"\313\001\n!CreateAndroidAppDataStrea"
- + "mRequest\022Z\n\027android_app_data_stream\030\001 \001("
- + "\01324.google.analytics.admin.v1alpha.Andro"
- + "idAppDataStreamB\003\340A\002\022J\n\006parent\030\002 \001(\tB:\340A"
- + "\002\372A4\0222analyticsadmin.googleapis.com/Andr"
- + "oidAppDataStream\"\225\001\n ListAndroidAppDataS"
- + "treamsRequest\022J\n\006parent\030\001 \001(\tB:\340A\002\372A4\0222a"
- + "nalyticsadmin.googleapis.com/AndroidAppD"
- + "ataStream\022\021\n\tpage_size\030\002 \001(\005\022\022\n\npage_tok"
- + "en\030\003 \001(\t\"\224\001\n!ListAndroidAppDataStreamsRe"
- + "sponse\022V\n\030android_app_data_streams\030\001 \003(\013"
- + "24.google.analytics.admin.v1alpha.Androi"
- + "dAppDataStream\022\027\n\017next_page_token\030\002 \001(\t\""
- + "x\n%GetEnhancedMeasurementSettingsRequest"
- + "\022O\n\004name\030\001 \001(\tBA\340A\002\372A;\n9analyticsadmin.g"
- + "oogleapis.com/EnhancedMeasurementSetting"
- + "s\"\304\001\n(UpdateEnhancedMeasurementSettingsR"
- + "equest\022g\n\035enhanced_measurement_settings\030"
- + "\001 \001(\0132;.google.analytics.admin.v1alpha.E"
- + "nhancedMeasurementSettingsB\003\340A\002\022/\n\013updat"
- + "e_mask\030\002 \001(\0132\032.google.protobuf.FieldMask"
- + "\"\251\001\n\031CreateFirebaseLinkRequest\022B\n\006parent"
- + "\030\001 \001(\tB2\340A\002\372A,\022*analyticsadmin.googleapi"
- + "s.com/FirebaseLink\022H\n\rfirebase_link\030\002 \001("
- + "\0132,.google.analytics.admin.v1alpha.Fireb"
- + "aseLinkB\003\340A\002\"\226\001\n\031UpdateFirebaseLinkReque"
- + "st\022H\n\rfirebase_link\030\001 \001(\0132,.google.analy"
- + "tics.admin.v1alpha.FirebaseLinkB\003\340A\002\022/\n\013"
+ + "B\003\340A\002\"\312\001\n\033BatchCreateUserLinksRequest\022>\n"
+ + "\006parent\030\001 \001(\tB.\340A\002\372A(\022&analyticsadmin.go"
+ + "ogleapis.com/UserLink\022\035\n\020notify_new_user"
+ + "s\030\002 \001(\010B\003\340A\001\022L\n\010requests\030\003 \003(\01325.google."
+ + "analytics.admin.v1alpha.CreateUserLinkRe"
+ + "questB\003\340A\002\"\\\n\034BatchCreateUserLinksRespon"
+ + "se\022<\n\nuser_links\030\001 \003(\0132(.google.analytic"
+ + "s.admin.v1alpha.UserLink\"Y\n\025UpdateUserLi"
+ + "nkRequest\022@\n\tuser_link\030\001 \001(\0132(.google.an"
+ + "alytics.admin.v1alpha.UserLinkB\003\340A\002\"\253\001\n\033"
+ + "BatchUpdateUserLinksRequest\022>\n\006parent\030\001 "
+ + "\001(\tB.\340A\002\372A(\022&analyticsadmin.googleapis.c"
+ + "om/UserLink\022L\n\010requests\030\002 \003(\01325.google.a"
+ + "nalytics.admin.v1alpha.UpdateUserLinkReq"
+ + "uestB\003\340A\002\"\\\n\034BatchUpdateUserLinksRespons"
+ + "e\022<\n\nuser_links\030\001 \003(\0132(.google.analytics"
+ + ".admin.v1alpha.UserLink\"U\n\025DeleteUserLin"
+ + "kRequest\022<\n\004name\030\001 \001(\tB.\340A\002\372A(\n&analytic"
+ + "sadmin.googleapis.com/UserLink\"\253\001\n\033Batch"
+ + "DeleteUserLinksRequest\022>\n\006parent\030\001 \001(\tB."
+ + "\340A\002\372A(\022&analyticsadmin.googleapis.com/Us"
+ + "erLink\022L\n\010requests\030\002 \003(\01325.google.analyt"
+ + "ics.admin.v1alpha.DeleteUserLinkRequestB"
+ + "\003\340A\002\"\\\n\027GetWebDataStreamRequest\022A\n\004name\030"
+ + "\001 \001(\tB3\340A\002\372A-\n+analyticsadmin.googleapis"
+ + ".com/WebDataStream\"_\n\032DeleteWebDataStrea"
+ + "mRequest\022A\n\004name\030\001 \001(\tB3\340A\002\372A-\n+analytic"
+ + "sadmin.googleapis.com/WebDataStream\"\232\001\n\032"
+ + "UpdateWebDataStreamRequest\022K\n\017web_data_s"
+ + "tream\030\001 \001(\0132-.google.analytics.admin.v1a"
+ + "lpha.WebDataStreamB\003\340A\002\022/\n\013update_mask\030\002"
+ + " \001(\0132\032.google.protobuf.FieldMask\"\256\001\n\032Cre"
+ + "ateWebDataStreamRequest\022K\n\017web_data_stre"
+ + "am\030\001 \001(\0132-.google.analytics.admin.v1alph"
+ + "a.WebDataStreamB\003\340A\002\022C\n\006parent\030\002 \001(\tB3\340A"
+ + "\002\372A-\022+analyticsadmin.googleapis.com/WebD"
+ + "ataStream\"\207\001\n\031ListWebDataStreamsRequest\022"
+ + "C\n\006parent\030\001 \001(\tB3\340A\002\372A-\022+analyticsadmin."
+ + "googleapis.com/WebDataStream\022\021\n\tpage_siz"
+ + "e\030\002 \001(\005\022\022\n\npage_token\030\003 \001(\t\"~\n\032ListWebDa"
+ + "taStreamsResponse\022G\n\020web_data_streams\030\001 "
+ + "\003(\0132-.google.analytics.admin.v1alpha.Web"
+ + "DataStream\022\027\n\017next_page_token\030\002 \001(\t\"b\n\032G"
+ + "etIosAppDataStreamRequest\022D\n\004name\030\001 \001(\tB"
+ + "6\340A\002\372A0\n.analyticsadmin.googleapis.com/I"
+ + "osAppDataStream\"e\n\035DeleteIosAppDataStrea"
+ + "mRequest\022D\n\004name\030\001 \001(\tB6\340A\002\372A0\n.analytic"
+ + "sadmin.googleapis.com/IosAppDataStream\"\244"
+ + "\001\n\035UpdateIosAppDataStreamRequest\022R\n\023ios_"
+ + "app_data_stream\030\001 \001(\01320.google.analytics"
+ + ".admin.v1alpha.IosAppDataStreamB\003\340A\002\022/\n\013"
+ "update_mask\030\002 \001(\0132\032.google.protobuf.Fiel"
- + "dMask\"]\n\031DeleteFirebaseLinkRequest\022@\n\004na"
- + "me\030\001 \001(\tB2\340A\002\372A,\n*analyticsadmin.googlea"
- + "pis.com/FirebaseLink\"^\n\030ListFirebaseLink"
- + "sRequest\022B\n\006parent\030\001 \001(\tB2\340A\002\372A,\022*analyt"
- + "icsadmin.googleapis.com/FirebaseLink\"a\n\031"
- + "ListFirebaseLinksResponse\022D\n\016firebase_li"
- + "nks\030\001 \003(\0132,.google.analytics.admin.v1alp"
- + "ha.FirebaseLink\"\\\n\027GetGlobalSiteTagReque"
- + "st\022A\n\004name\030\001 \001(\tB3\340A\002\372A-\n+analyticsadmin"
- + ".googleapis.com/GlobalSiteTag\"\256\001\n\032Create"
- + "GoogleAdsLinkRequest\022C\n\006parent\030\001 \001(\tB3\340A"
- + "\002\372A-\022+analyticsadmin.googleapis.com/Goog"
- + "leAdsLink\022K\n\017google_ads_link\030\002 \001(\0132-.goo"
- + "gle.analytics.admin.v1alpha.GoogleAdsLin"
- + "kB\003\340A\002\"\225\001\n\032UpdateGoogleAdsLinkRequest\022F\n"
- + "\017google_ads_link\030\001 \001(\0132-.google.analytic"
- + "s.admin.v1alpha.GoogleAdsLink\022/\n\013update_"
- + "mask\030\002 \001(\0132\032.google.protobuf.FieldMask\"_"
- + "\n\032DeleteGoogleAdsLinkRequest\022A\n\004name\030\001 \001"
+ + "dMask\"\273\001\n\035CreateIosAppDataStreamRequest\022"
+ + "R\n\023ios_app_data_stream\030\001 \001(\01320.google.an"
+ + "alytics.admin.v1alpha.IosAppDataStreamB\003"
+ + "\340A\002\022F\n\006parent\030\002 \001(\tB6\340A\002\372A0\022.analyticsad"
+ + "min.googleapis.com/IosAppDataStream\"\215\001\n\034"
+ + "ListIosAppDataStreamsRequest\022F\n\006parent\030\001"
+ + " \001(\tB6\340A\002\372A0\022.analyticsadmin.googleapis."
+ + "com/IosAppDataStream\022\021\n\tpage_size\030\002 \001(\005\022"
+ + "\022\n\npage_token\030\003 \001(\t\"\210\001\n\035ListIosAppDataSt"
+ + "reamsResponse\022N\n\024ios_app_data_streams\030\001 "
+ + "\003(\01320.google.analytics.admin.v1alpha.Ios"
+ + "AppDataStream\022\027\n\017next_page_token\030\002 \001(\t\"j"
+ + "\n\036GetAndroidAppDataStreamRequest\022H\n\004name"
+ + "\030\001 \001(\tB:\340A\002\372A4\n2analyticsadmin.googleapi"
+ + "s.com/AndroidAppDataStream\"m\n!DeleteAndr"
+ + "oidAppDataStreamRequest\022H\n\004name\030\001 \001(\tB:\340"
+ + "A\002\372A4\n2analyticsadmin.googleapis.com/And"
+ + "roidAppDataStream\"\260\001\n!UpdateAndroidAppDa"
+ + "taStreamRequest\022Z\n\027android_app_data_stre"
+ + "am\030\001 \001(\01324.google.analytics.admin.v1alph"
+ + "a.AndroidAppDataStreamB\003\340A\002\022/\n\013update_ma"
+ + "sk\030\002 \001(\0132\032.google.protobuf.FieldMask\"\313\001\n"
+ + "!CreateAndroidAppDataStreamRequest\022Z\n\027an"
+ + "droid_app_data_stream\030\001 \001(\01324.google.ana"
+ + "lytics.admin.v1alpha.AndroidAppDataStrea"
+ + "mB\003\340A\002\022J\n\006parent\030\002 \001(\tB:\340A\002\372A4\0222analytic"
+ + "sadmin.googleapis.com/AndroidAppDataStre"
+ + "am\"\225\001\n ListAndroidAppDataStreamsRequest\022"
+ + "J\n\006parent\030\001 \001(\tB:\340A\002\372A4\0222analyticsadmin."
+ + "googleapis.com/AndroidAppDataStream\022\021\n\tp"
+ + "age_size\030\002 \001(\005\022\022\n\npage_token\030\003 \001(\t\"\224\001\n!L"
+ + "istAndroidAppDataStreamsResponse\022V\n\030andr"
+ + "oid_app_data_streams\030\001 \003(\01324.google.anal"
+ + "ytics.admin.v1alpha.AndroidAppDataStream"
+ + "\022\027\n\017next_page_token\030\002 \001(\t\"x\n%GetEnhanced"
+ + "MeasurementSettingsRequest\022O\n\004name\030\001 \001(\t"
+ + "BA\340A\002\372A;\n9analyticsadmin.googleapis.com/"
+ + "EnhancedMeasurementSettings\"\304\001\n(UpdateEn"
+ + "hancedMeasurementSettingsRequest\022g\n\035enha"
+ + "nced_measurement_settings\030\001 \001(\0132;.google"
+ + ".analytics.admin.v1alpha.EnhancedMeasure"
+ + "mentSettingsB\003\340A\002\022/\n\013update_mask\030\002 \001(\0132\032"
+ + ".google.protobuf.FieldMask\"\251\001\n\031CreateFir"
+ + "ebaseLinkRequest\022B\n\006parent\030\001 \001(\tB2\340A\002\372A,"
+ + "\022*analyticsadmin.googleapis.com/Firebase"
+ + "Link\022H\n\rfirebase_link\030\002 \001(\0132,.google.ana"
+ + "lytics.admin.v1alpha.FirebaseLinkB\003\340A\002\"\226"
+ + "\001\n\031UpdateFirebaseLinkRequest\022H\n\rfirebase"
+ + "_link\030\001 \001(\0132,.google.analytics.admin.v1a"
+ + "lpha.FirebaseLinkB\003\340A\002\022/\n\013update_mask\030\002 "
+ + "\001(\0132\032.google.protobuf.FieldMask\"]\n\031Delet"
+ + "eFirebaseLinkRequest\022@\n\004name\030\001 \001(\tB2\340A\002\372"
+ + "A,\n*analyticsadmin.googleapis.com/Fireba"
+ + "seLink\"^\n\030ListFirebaseLinksRequest\022B\n\006pa"
+ + "rent\030\001 \001(\tB2\340A\002\372A,\022*analyticsadmin.googl"
+ + "eapis.com/FirebaseLink\"a\n\031ListFirebaseLi"
+ + "nksResponse\022D\n\016firebase_links\030\001 \003(\0132,.go"
+ + "ogle.analytics.admin.v1alpha.FirebaseLin"
+ + "k\"\\\n\027GetGlobalSiteTagRequest\022A\n\004name\030\001 \001"
+ "(\tB3\340A\002\372A-\n+analyticsadmin.googleapis.co"
- + "m/GoogleAdsLink\"\207\001\n\031ListGoogleAdsLinksRe"
- + "quest\022C\n\006parent\030\001 \001(\tB3\340A\002\372A-\022+analytics"
- + "admin.googleapis.com/GoogleAdsLink\022\021\n\tpa"
- + "ge_size\030\002 \001(\005\022\022\n\npage_token\030\003 \001(\t\"~\n\032Lis"
- + "tGoogleAdsLinksResponse\022G\n\020google_ads_li"
- + "nks\030\001 \003(\0132-.google.analytics.admin.v1alp"
- + "ha.GoogleAdsLink\022\027\n\017next_page_token\030\002 \001("
- + "\t\"h\n\035GetDataSharingSettingsRequest\022G\n\004na"
- + "me\030\001 \001(\tB9\340A\002\372A3\n1analyticsadmin.googlea"
- + "pis.com/DataSharingSettings\"D\n\033ListAccou"
- + "ntSummariesRequest\022\021\n\tpage_size\030\001 \001(\005\022\022\n"
- + "\npage_token\030\002 \001(\t\"\202\001\n\034ListAccountSummari"
- + "esResponse\022I\n\021account_summaries\030\001 \003(\0132.."
- + "google.analytics.admin.v1alpha.AccountSu"
- + "mmary\022\027\n\017next_page_token\030\002 \001(\t2\353R\n\025Analy"
- + "ticsAdminService\022\223\001\n\nGetAccount\0221.google"
- + ".analytics.admin.v1alpha.GetAccountReque"
- + "st\032\'.google.analytics.admin.v1alpha.Acco"
- + "unt\")\202\323\344\223\002\034\022\032/v1alpha/{name=accounts/*}\332"
- + "A\004name\022\224\001\n\014ListAccounts\0223.google.analyti"
- + "cs.admin.v1alpha.ListAccountsRequest\0324.g"
- + "oogle.analytics.admin.v1alpha.ListAccoun"
- + "tsResponse\"\031\202\323\344\223\002\023\022\021/v1alpha/accounts\022\210\001"
- + "\n\rDeleteAccount\0224.google.analytics.admin"
- + ".v1alpha.DeleteAccountRequest\032\026.google.p"
- + "rotobuf.Empty\")\202\323\344\223\002\034*\032/v1alpha/{name=ac"
- + "counts/*}\332A\004name\022\271\001\n\rUpdateAccount\0224.goo"
- + "gle.analytics.admin.v1alpha.UpdateAccoun"
- + "tRequest\032\'.google.analytics.admin.v1alph"
- + "a.Account\"I\202\323\344\223\002-2\"/v1alpha/{account.nam"
- + "e=accounts/*}:\007account\332A\023account,update_"
- + "mask\022\314\001\n\026ProvisionAccountTicket\022=.google"
- + ".analytics.admin.v1alpha.ProvisionAccoun"
- + "tTicketRequest\032>.google.analytics.admin."
- + "v1alpha.ProvisionAccountTicketResponse\"3"
- + "\202\323\344\223\002-\"(/v1alpha/accounts:provisionAccou"
- + "ntTicket:\001*\022\264\001\n\024ListAccountSummaries\022;.g"
- + "oogle.analytics.admin.v1alpha.ListAccoun"
- + "tSummariesRequest\032<.google.analytics.adm"
- + "in.v1alpha.ListAccountSummariesResponse\""
- + "!\202\323\344\223\002\033\022\031/v1alpha/accountSummaries\022\230\001\n\013G"
- + "etProperty\0222.google.analytics.admin.v1al"
- + "pha.GetPropertyRequest\032(.google.analytic"
- + "s.admin.v1alpha.Property\"+\202\323\344\223\002\036\022\034/v1alp"
- + "ha/{name=properties/*}\332A\004name\022\234\001\n\016ListPr"
- + "operties\0225.google.analytics.admin.v1alph"
- + "a.ListPropertiesRequest\0326.google.analyti"
- + "cs.admin.v1alpha.ListPropertiesResponse\""
- + "\033\202\323\344\223\002\025\022\023/v1alpha/properties\022\243\001\n\016CreateP"
- + "roperty\0225.google.analytics.admin.v1alpha"
- + ".CreatePropertyRequest\032(.google.analytic"
- + "s.admin.v1alpha.Property\"0\202\323\344\223\002\037\"\023/v1alp"
- + "ha/properties:\010property\332A\010property\022\214\001\n\016D"
- + "eleteProperty\0225.google.analytics.admin.v"
- + "1alpha.DeletePropertyRequest\032\026.google.pr"
- + "otobuf.Empty\"+\202\323\344\223\002\036*\034/v1alpha/{name=pro"
- + "perties/*}\332A\004name\022\301\001\n\016UpdateProperty\0225.g"
- + "oogle.analytics.admin.v1alpha.UpdateProp"
- + "ertyRequest\032(.google.analytics.admin.v1a"
- + "lpha.Property\"N\202\323\344\223\00212%/v1alpha/{propert"
- + "y.name=properties/*}:\010property\332A\024propert"
- + "y,update_mask\022\316\001\n\013GetUserLink\0222.google.a"
- + "nalytics.admin.v1alpha.GetUserLinkReques"
- + "t\032(.google.analytics.admin.v1alpha.UserL"
- + "ink\"a\202\323\344\223\002T\022&/v1alpha/{name=accounts/*/u"
- + "serLinks/*}Z*\022(/v1alpha/{name=properties"
- + "/*/userLinks/*}\332A\004name\022\366\001\n\021BatchGetUserL"
- + "inks\0228.google.analytics.admin.v1alpha.Ba"
- + "tchGetUserLinksRequest\0329.google.analytic"
- + "s.admin.v1alpha.BatchGetUserLinksRespons"
- + "e\"l\202\323\344\223\002f\022//v1alpha/{parent=accounts/*}/"
- + "userLinks:batchGetZ3\0221/v1alpha/{parent=p"
- + "roperties/*}/userLinks:batchGet\022\341\001\n\rList"
- + "UserLinks\0224.google.analytics.admin.v1alp"
- + "ha.ListUserLinksRequest\0325.google.analyti"
- + "cs.admin.v1alpha.ListUserLinksResponse\"c"
- + "\202\323\344\223\002T\022&/v1alpha/{parent=accounts/*}/use"
- + "rLinksZ*\022(/v1alpha/{parent=properties/*}"
- + "/userLinks\332A\006parent\022\355\001\n\016AuditUserLinks\0225"
- + ".google.analytics.admin.v1alpha.AuditUse"
- + "rLinksRequest\0326.google.analytics.admin.v"
- + "1alpha.AuditUserLinksResponse\"l\202\323\344\223\002f\",/"
- + "v1alpha/{parent=accounts/*}/userLinks:au"
- + "dit:\001*Z3\"./v1alpha/{parent=properties/*}"
- + "/userLinks:audit:\001*\022\367\001\n\016CreateUserLink\0225"
- + ".google.analytics.admin.v1alpha.CreateUs"
- + "erLinkRequest\032(.google.analytics.admin.v"
- + "1alpha.UserLink\"\203\001\202\323\344\223\002j\"&/v1alpha/{pare"
- + "nt=accounts/*}/userLinks:\tuser_linkZ5\"(/"
- + "v1alpha/{parent=properties/*}/userLinks:"
- + "\tuser_link\332A\020parent,user_link\022\213\002\n\024BatchC"
- + "reateUserLinks\022;.google.analytics.admin."
- + "v1alpha.BatchCreateUserLinksRequest\032<.go"
- + "ogle.analytics.admin.v1alpha.BatchCreate"
- + "UserLinksResponse\"x\202\323\344\223\002r\"2/v1alpha/{par"
- + "ent=accounts/*}/userLinks:batchCreate:\001*"
- + "Z9\"4/v1alpha/{parent=properties/*}/userL"
- + "inks:batchCreate:\001*\022\204\002\n\016UpdateUserLink\0225"
- + ".google.analytics.admin.v1alpha.UpdateUs"
- + "erLinkRequest\032(.google.analytics.admin.v"
- + "1alpha.UserLink\"\220\001\202\323\344\223\002~20/v1alpha/{user"
- + "_link.name=accounts/*/userLinks/*}:\tuser"
- + "_linkZ?22/v1alpha/{user_link.name=proper"
- + "ties/*/userLinks/*}:\tuser_link\332A\tuser_li"
- + "nk\022\213\002\n\024BatchUpdateUserLinks\022;.google.ana"
- + "lytics.admin.v1alpha.BatchUpdateUserLink"
- + "sRequest\032<.google.analytics.admin.v1alph"
- + "a.BatchUpdateUserLinksResponse\"x\202\323\344\223\002r\"2"
- + "/v1alpha/{parent=accounts/*}/userLinks:b"
- + "atchUpdate:\001*Z9\"4/v1alpha/{parent=proper"
- + "ties/*}/userLinks:batchUpdate:\001*\022\302\001\n\016Del"
- + "eteUserLink\0225.google.analytics.admin.v1a"
- + "lpha.DeleteUserLinkRequest\032\026.google.prot"
- + "obuf.Empty\"a\202\323\344\223\002T*&/v1alpha/{name=accou"
- + "nts/*/userLinks/*}Z**(/v1alpha/{name=pro"
- + "perties/*/userLinks/*}\332A\004name\022\345\001\n\024BatchD"
- + "eleteUserLinks\022;.google.analytics.admin."
- + "v1alpha.BatchDeleteUserLinksRequest\032\026.go"
- + "ogle.protobuf.Empty\"x\202\323\344\223\002r\"2/v1alpha/{p"
- + "arent=accounts/*}/userLinks:batchDelete:"
- + "\001*Z9\"4/v1alpha/{parent=properties/*}/use"
- + "rLinks:batchDelete:\001*\022\270\001\n\020GetWebDataStre"
- + "am\0227.google.analytics.admin.v1alpha.GetW"
- + "ebDataStreamRequest\032-.google.analytics.a"
- + "dmin.v1alpha.WebDataStream\"<\202\323\344\223\002/\022-/v1a"
+ + "m/GlobalSiteTag\"\256\001\n\032CreateGoogleAdsLinkR"
+ + "equest\022C\n\006parent\030\001 \001(\tB3\340A\002\372A-\022+analytic"
+ + "sadmin.googleapis.com/GoogleAdsLink\022K\n\017g"
+ + "oogle_ads_link\030\002 \001(\0132-.google.analytics."
+ + "admin.v1alpha.GoogleAdsLinkB\003\340A\002\"\225\001\n\032Upd"
+ + "ateGoogleAdsLinkRequest\022F\n\017google_ads_li"
+ + "nk\030\001 \001(\0132-.google.analytics.admin.v1alph"
+ + "a.GoogleAdsLink\022/\n\013update_mask\030\002 \001(\0132\032.g"
+ + "oogle.protobuf.FieldMask\"_\n\032DeleteGoogle"
+ + "AdsLinkRequest\022A\n\004name\030\001 \001(\tB3\340A\002\372A-\n+an"
+ + "alyticsadmin.googleapis.com/GoogleAdsLin"
+ + "k\"\207\001\n\031ListGoogleAdsLinksRequest\022C\n\006paren"
+ + "t\030\001 \001(\tB3\340A\002\372A-\022+analyticsadmin.googleap"
+ + "is.com/GoogleAdsLink\022\021\n\tpage_size\030\002 \001(\005\022"
+ + "\022\n\npage_token\030\003 \001(\t\"~\n\032ListGoogleAdsLink"
+ + "sResponse\022G\n\020google_ads_links\030\001 \003(\0132-.go"
+ + "ogle.analytics.admin.v1alpha.GoogleAdsLi"
+ + "nk\022\027\n\017next_page_token\030\002 \001(\t\"h\n\035GetDataSh"
+ + "aringSettingsRequest\022G\n\004name\030\001 \001(\tB9\340A\002\372"
+ + "A3\n1analyticsadmin.googleapis.com/DataSh"
+ + "aringSettings\"D\n\033ListAccountSummariesReq"
+ + "uest\022\021\n\tpage_size\030\001 \001(\005\022\022\n\npage_token\030\002 "
+ + "\001(\t\"\202\001\n\034ListAccountSummariesResponse\022I\n\021"
+ + "account_summaries\030\001 \003(\0132..google.analyti"
+ + "cs.admin.v1alpha.AccountSummary\022\027\n\017next_"
+ + "page_token\030\002 \001(\t2\353R\n\025AnalyticsAdminServi"
+ + "ce\022\223\001\n\nGetAccount\0221.google.analytics.adm"
+ + "in.v1alpha.GetAccountRequest\032\'.google.an"
+ + "alytics.admin.v1alpha.Account\")\202\323\344\223\002\034\022\032/"
+ + "v1alpha/{name=accounts/*}\332A\004name\022\224\001\n\014Lis"
+ + "tAccounts\0223.google.analytics.admin.v1alp"
+ + "ha.ListAccountsRequest\0324.google.analytic"
+ + "s.admin.v1alpha.ListAccountsResponse\"\031\202\323"
+ + "\344\223\002\023\022\021/v1alpha/accounts\022\210\001\n\rDeleteAccoun"
+ + "t\0224.google.analytics.admin.v1alpha.Delet"
+ + "eAccountRequest\032\026.google.protobuf.Empty\""
+ + ")\202\323\344\223\002\034*\032/v1alpha/{name=accounts/*}\332A\004na"
+ + "me\022\271\001\n\rUpdateAccount\0224.google.analytics."
+ + "admin.v1alpha.UpdateAccountRequest\032\'.goo"
+ + "gle.analytics.admin.v1alpha.Account\"I\202\323\344"
+ + "\223\002-2\"/v1alpha/{account.name=accounts/*}:"
+ + "\007account\332A\023account,update_mask\022\314\001\n\026Provi"
+ + "sionAccountTicket\022=.google.analytics.adm"
+ + "in.v1alpha.ProvisionAccountTicketRequest"
+ + "\032>.google.analytics.admin.v1alpha.Provis"
+ + "ionAccountTicketResponse\"3\202\323\344\223\002-\"(/v1alp"
+ + "ha/accounts:provisionAccountTicket:\001*\022\264\001"
+ + "\n\024ListAccountSummaries\022;.google.analytic"
+ + "s.admin.v1alpha.ListAccountSummariesRequ"
+ + "est\032<.google.analytics.admin.v1alpha.Lis"
+ + "tAccountSummariesResponse\"!\202\323\344\223\002\033\022\031/v1al"
+ + "pha/accountSummaries\022\230\001\n\013GetProperty\0222.g"
+ + "oogle.analytics.admin.v1alpha.GetPropert"
+ + "yRequest\032(.google.analytics.admin.v1alph"
+ + "a.Property\"+\202\323\344\223\002\036\022\034/v1alpha/{name=prope"
+ + "rties/*}\332A\004name\022\234\001\n\016ListProperties\0225.goo"
+ + "gle.analytics.admin.v1alpha.ListProperti"
+ + "esRequest\0326.google.analytics.admin.v1alp"
+ + "ha.ListPropertiesResponse\"\033\202\323\344\223\002\025\022\023/v1al"
+ + "pha/properties\022\243\001\n\016CreateProperty\0225.goog"
+ + "le.analytics.admin.v1alpha.CreatePropert"
+ + "yRequest\032(.google.analytics.admin.v1alph"
+ + "a.Property\"0\202\323\344\223\002\037\"\023/v1alpha/properties:"
+ + "\010property\332A\010property\022\214\001\n\016DeleteProperty\022"
+ + "5.google.analytics.admin.v1alpha.DeleteP"
+ + "ropertyRequest\032\026.google.protobuf.Empty\"+"
+ + "\202\323\344\223\002\036*\034/v1alpha/{name=properties/*}\332A\004n"
+ + "ame\022\301\001\n\016UpdateProperty\0225.google.analytic"
+ + "s.admin.v1alpha.UpdatePropertyRequest\032(."
+ + "google.analytics.admin.v1alpha.Property\""
+ + "N\202\323\344\223\00212%/v1alpha/{property.name=propert"
+ + "ies/*}:\010property\332A\024property,update_mask\022"
+ + "\316\001\n\013GetUserLink\0222.google.analytics.admin"
+ + ".v1alpha.GetUserLinkRequest\032(.google.ana"
+ + "lytics.admin.v1alpha.UserLink\"a\202\323\344\223\002T\022&/"
+ + "v1alpha/{name=accounts/*/userLinks/*}Z*\022"
+ + "(/v1alpha/{name=properties/*/userLinks/*"
+ + "}\332A\004name\022\366\001\n\021BatchGetUserLinks\0228.google."
+ + "analytics.admin.v1alpha.BatchGetUserLink"
+ + "sRequest\0329.google.analytics.admin.v1alph"
+ + "a.BatchGetUserLinksResponse\"l\202\323\344\223\002f\022//v1"
+ + "alpha/{parent=accounts/*}/userLinks:batc"
+ + "hGetZ3\0221/v1alpha/{parent=properties/*}/u"
+ + "serLinks:batchGet\022\341\001\n\rListUserLinks\0224.go"
+ + "ogle.analytics.admin.v1alpha.ListUserLin"
+ + "ksRequest\0325.google.analytics.admin.v1alp"
+ + "ha.ListUserLinksResponse\"c\202\323\344\223\002T\022&/v1alp"
+ + "ha/{parent=accounts/*}/userLinksZ*\022(/v1a"
+ + "lpha/{parent=properties/*}/userLinks\332A\006p"
+ + "arent\022\355\001\n\016AuditUserLinks\0225.google.analyt"
+ + "ics.admin.v1alpha.AuditUserLinksRequest\032"
+ + "6.google.analytics.admin.v1alpha.AuditUs"
+ + "erLinksResponse\"l\202\323\344\223\002f\",/v1alpha/{paren"
+ + "t=accounts/*}/userLinks:audit:\001*Z3\"./v1a"
+ + "lpha/{parent=properties/*}/userLinks:aud"
+ + "it:\001*\022\367\001\n\016CreateUserLink\0225.google.analyt"
+ + "ics.admin.v1alpha.CreateUserLinkRequest\032"
+ + "(.google.analytics.admin.v1alpha.UserLin"
+ + "k\"\203\001\202\323\344\223\002j\"&/v1alpha/{parent=accounts/*}"
+ + "/userLinks:\tuser_linkZ5\"(/v1alpha/{paren"
+ + "t=properties/*}/userLinks:\tuser_link\332A\020p"
+ + "arent,user_link\022\213\002\n\024BatchCreateUserLinks"
+ + "\022;.google.analytics.admin.v1alpha.BatchC"
+ + "reateUserLinksRequest\032<.google.analytics"
+ + ".admin.v1alpha.BatchCreateUserLinksRespo"
+ + "nse\"x\202\323\344\223\002r\"2/v1alpha/{parent=accounts/*"
+ + "}/userLinks:batchCreate:\001*Z9\"4/v1alpha/{"
+ + "parent=properties/*}/userLinks:batchCrea"
+ + "te:\001*\022\204\002\n\016UpdateUserLink\0225.google.analyt"
+ + "ics.admin.v1alpha.UpdateUserLinkRequest\032"
+ + "(.google.analytics.admin.v1alpha.UserLin"
+ + "k\"\220\001\202\323\344\223\002~20/v1alpha/{user_link.name=acc"
+ + "ounts/*/userLinks/*}:\tuser_linkZ?22/v1al"
+ + "pha/{user_link.name=properties/*/userLin"
+ + "ks/*}:\tuser_link\332A\tuser_link\022\213\002\n\024BatchUp"
+ + "dateUserLinks\022;.google.analytics.admin.v"
+ + "1alpha.BatchUpdateUserLinksRequest\032<.goo"
+ + "gle.analytics.admin.v1alpha.BatchUpdateU"
+ + "serLinksResponse\"x\202\323\344\223\002r\"2/v1alpha/{pare"
+ + "nt=accounts/*}/userLinks:batchUpdate:\001*Z"
+ + "9\"4/v1alpha/{parent=properties/*}/userLi"
+ + "nks:batchUpdate:\001*\022\302\001\n\016DeleteUserLink\0225."
+ + "google.analytics.admin.v1alpha.DeleteUse"
+ + "rLinkRequest\032\026.google.protobuf.Empty\"a\202\323"
+ + "\344\223\002T*&/v1alpha/{name=accounts/*/userLink"
+ + "s/*}Z**(/v1alpha/{name=properties/*/user"
+ + "Links/*}\332A\004name\022\345\001\n\024BatchDeleteUserLinks"
+ + "\022;.google.analytics.admin.v1alpha.BatchD"
+ + "eleteUserLinksRequest\032\026.google.protobuf."
+ + "Empty\"x\202\323\344\223\002r\"2/v1alpha/{parent=accounts"
+ + "/*}/userLinks:batchDelete:\001*Z9\"4/v1alpha"
+ + "/{parent=properties/*}/userLinks:batchDe"
+ + "lete:\001*\022\270\001\n\020GetWebDataStream\0227.google.an"
+ + "alytics.admin.v1alpha.GetWebDataStreamRe"
+ + "quest\032-.google.analytics.admin.v1alpha.W"
+ + "ebDataStream\"<\202\323\344\223\002/\022-/v1alpha/{name=pro"
+ + "perties/*/webDataStreams/*}\332A\004name\022\247\001\n\023D"
+ + "eleteWebDataStream\022:.google.analytics.ad"
+ + "min.v1alpha.DeleteWebDataStreamRequest\032\026"
+ + ".google.protobuf.Empty\"<\202\323\344\223\002/*-/v1alpha"
+ + "/{name=properties/*/webDataStreams/*}\332A\004"
+ + "name\022\366\001\n\023UpdateWebDataStream\022:.google.an"
+ + "alytics.admin.v1alpha.UpdateWebDataStrea"
+ + "mRequest\032-.google.analytics.admin.v1alph"
+ + "a.WebDataStream\"t\202\323\344\223\002P2=/v1alpha/{web_d"
+ + "ata_stream.name=properties/*/webDataStre"
+ + "ams/*}:\017web_data_stream\332A\033web_data_strea"
+ + "m,update_mask\022\341\001\n\023CreateWebDataStream\022:."
+ + "google.analytics.admin.v1alpha.CreateWeb"
+ + "DataStreamRequest\032-.google.analytics.adm"
+ + "in.v1alpha.WebDataStream\"_\202\323\344\223\002@\"-/v1alp"
+ + "ha/{parent=properties/*}/webDataStreams:"
+ + "\017web_data_stream\332A\026parent,web_data_strea"
+ + "m\022\313\001\n\022ListWebDataStreams\0229.google.analyt"
+ + "ics.admin.v1alpha.ListWebDataStreamsRequ"
+ + "est\032:.google.analytics.admin.v1alpha.Lis"
+ + "tWebDataStreamsResponse\">\202\323\344\223\002/\022-/v1alph"
+ + "a/{parent=properties/*}/webDataStreams\332A"
+ + "\006parent\022\304\001\n\023GetIosAppDataStream\022:.google"
+ + ".analytics.admin.v1alpha.GetIosAppDataSt"
+ + "reamRequest\0320.google.analytics.admin.v1a"
+ + "lpha.IosAppDataStream\"?\202\323\344\223\0022\0220/v1alpha/"
+ + "{name=properties/*/iosAppDataStreams/*}\332"
+ + "A\004name\022\260\001\n\026DeleteIosAppDataStream\022=.goog"
+ + "le.analytics.admin.v1alpha.DeleteIosAppD"
+ + "ataStreamRequest\032\026.google.protobuf.Empty"
+ + "\"?\202\323\344\223\0022*0/v1alpha/{name=properties/*/io"
+ + "sAppDataStreams/*}\332A\004name\022\217\002\n\026UpdateIosA"
+ + "ppDataStream\022=.google.analytics.admin.v1"
+ + "alpha.UpdateIosAppDataStreamRequest\0320.go"
+ + "ogle.analytics.admin.v1alpha.IosAppDataS"
+ + "tream\"\203\001\202\323\344\223\002[2D/v1alpha/{ios_app_data_s"
+ + "tream.name=properties/*/iosAppDataStream"
+ + "s/*}:\023ios_app_data_stream\332A\037ios_app_data"
+ + "_stream,update_mask\022\365\001\n\026CreateIosAppData"
+ + "Stream\022=.google.analytics.admin.v1alpha."
+ + "CreateIosAppDataStreamRequest\0320.google.a"
+ + "nalytics.admin.v1alpha.IosAppDataStream\""
+ + "j\202\323\344\223\002G\"0/v1alpha/{parent=properties/*}/"
+ + "iosAppDataStreams:\023ios_app_data_stream\332A"
+ + "\032parent,ios_app_data_stream\022\327\001\n\025ListIosA"
+ + "ppDataStreams\022<.google.analytics.admin.v"
+ + "1alpha.ListIosAppDataStreamsRequest\032=.go"
+ + "ogle.analytics.admin.v1alpha.ListIosAppD"
+ + "ataStreamsResponse\"A\202\323\344\223\0022\0220/v1alpha/{pa"
+ + "rent=properties/*}/iosAppDataStreams\332A\006p"
+ + "arent\022\324\001\n\027GetAndroidAppDataStream\022>.goog"
+ + "le.analytics.admin.v1alpha.GetAndroidApp"
+ + "DataStreamRequest\0324.google.analytics.adm"
+ + "in.v1alpha.AndroidAppDataStream\"C\202\323\344\223\0026\022"
+ + "4/v1alpha/{name=properties/*/androidAppD"
+ + "ataStreams/*}\332A\004name\022\274\001\n\032DeleteAndroidAp"
+ + "pDataStream\022A.google.analytics.admin.v1a"
+ + "lpha.DeleteAndroidAppDataStreamRequest\032\026"
+ + ".google.protobuf.Empty\"C\202\323\344\223\0026*4/v1alpha"
+ + "/{name=properties/*/androidAppDataStream"
+ + "s/*}\332A\004name\022\253\002\n\032UpdateAndroidAppDataStre"
+ + "am\022A.google.analytics.admin.v1alpha.Upda"
+ + "teAndroidAppDataStreamRequest\0324.google.a"
+ + "nalytics.admin.v1alpha.AndroidAppDataStr"
+ + "eam\"\223\001\202\323\344\223\002g2L/v1alpha/{android_app_data"
+ + "_stream.name=properties/*/androidAppData"
+ + "Streams/*}:\027android_app_data_stream\332A#an"
+ + "droid_app_data_stream,update_mask\022\215\002\n\032Cr"
+ + "eateAndroidAppDataStream\022A.google.analyt"
+ + "ics.admin.v1alpha.CreateAndroidAppDataSt"
+ + "reamRequest\0324.google.analytics.admin.v1a"
+ + "lpha.AndroidAppDataStream\"v\202\323\344\223\002O\"4/v1al"
+ + "pha/{parent=properties/*}/androidAppData"
+ + "Streams:\027android_app_data_stream\332A\036paren"
+ + "t,android_app_data_stream\022\347\001\n\031ListAndroi"
+ + "dAppDataStreams\022@.google.analytics.admin"
+ + ".v1alpha.ListAndroidAppDataStreamsReques"
+ + "t\032A.google.analytics.admin.v1alpha.ListA"
+ + "ndroidAppDataStreamsResponse\"E\202\323\344\223\0026\0224/v"
+ + "1alpha/{parent=properties/*}/androidAppD"
+ + "ataStreams\332A\006parent\022\376\001\n\036GetEnhancedMeasu"
+ + "rementSettings\022E.google.analytics.admin."
+ + "v1alpha.GetEnhancedMeasurementSettingsRe"
+ + "quest\032;.google.analytics.admin.v1alpha.E"
+ + "nhancedMeasurementSettings\"X\202\323\344\223\002K\022I/v1a"
+ "lpha/{name=properties/*/webDataStreams/*"
- + "}\332A\004name\022\247\001\n\023DeleteWebDataStream\022:.googl"
- + "e.analytics.admin.v1alpha.DeleteWebDataS"
- + "treamRequest\032\026.google.protobuf.Empty\"<\202\323"
- + "\344\223\002/*-/v1alpha/{name=properties/*/webDat"
- + "aStreams/*}\332A\004name\022\366\001\n\023UpdateWebDataStre"
- + "am\022:.google.analytics.admin.v1alpha.Upda"
- + "teWebDataStreamRequest\032-.google.analytic"
- + "s.admin.v1alpha.WebDataStream\"t\202\323\344\223\002P2=/"
- + "v1alpha/{web_data_stream.name=properties"
- + "/*/webDataStreams/*}:\017web_data_stream\332A\033"
- + "web_data_stream,update_mask\022\341\001\n\023CreateWe"
- + "bDataStream\022:.google.analytics.admin.v1a"
- + "lpha.CreateWebDataStreamRequest\032-.google"
- + ".analytics.admin.v1alpha.WebDataStream\"_"
- + "\202\323\344\223\002@\"-/v1alpha/{parent=properties/*}/w"
- + "ebDataStreams:\017web_data_stream\332A\026parent,"
- + "web_data_stream\022\313\001\n\022ListWebDataStreams\0229"
- + ".google.analytics.admin.v1alpha.ListWebD"
- + "ataStreamsRequest\032:.google.analytics.adm"
- + "in.v1alpha.ListWebDataStreamsResponse\">\202"
- + "\323\344\223\002/\022-/v1alpha/{parent=properties/*}/we"
- + "bDataStreams\332A\006parent\022\304\001\n\023GetIosAppDataS"
- + "tream\022:.google.analytics.admin.v1alpha.G"
- + "etIosAppDataStreamRequest\0320.google.analy"
- + "tics.admin.v1alpha.IosAppDataStream\"?\202\323\344"
- + "\223\0022\0220/v1alpha/{name=properties/*/iosAppD"
- + "ataStreams/*}\332A\004name\022\260\001\n\026DeleteIosAppDat"
- + "aStream\022=.google.analytics.admin.v1alpha"
- + ".DeleteIosAppDataStreamRequest\032\026.google."
- + "protobuf.Empty\"?\202\323\344\223\0022*0/v1alpha/{name=p"
- + "roperties/*/iosAppDataStreams/*}\332A\004name\022"
- + "\217\002\n\026UpdateIosAppDataStream\022=.google.anal"
- + "ytics.admin.v1alpha.UpdateIosAppDataStre"
- + "amRequest\0320.google.analytics.admin.v1alp"
- + "ha.IosAppDataStream\"\203\001\202\323\344\223\002[2D/v1alpha/{"
- + "ios_app_data_stream.name=properties/*/io"
- + "sAppDataStreams/*}:\023ios_app_data_stream\332"
- + "A\037ios_app_data_stream,update_mask\022\365\001\n\026Cr"
- + "eateIosAppDataStream\022=.google.analytics."
- + "admin.v1alpha.CreateIosAppDataStreamRequ"
- + "est\0320.google.analytics.admin.v1alpha.Ios"
- + "AppDataStream\"j\202\323\344\223\002G\"0/v1alpha/{parent="
- + "properties/*}/iosAppDataStreams:\023ios_app"
- + "_data_stream\332A\032parent,ios_app_data_strea"
- + "m\022\327\001\n\025ListIosAppDataStreams\022<.google.ana"
- + "lytics.admin.v1alpha.ListIosAppDataStrea"
- + "msRequest\032=.google.analytics.admin.v1alp"
- + "ha.ListIosAppDataStreamsResponse\"A\202\323\344\223\0022"
- + "\0220/v1alpha/{parent=properties/*}/iosAppD"
- + "ataStreams\332A\006parent\022\324\001\n\027GetAndroidAppDat"
- + "aStream\022>.google.analytics.admin.v1alpha"
- + ".GetAndroidAppDataStreamRequest\0324.google"
- + ".analytics.admin.v1alpha.AndroidAppDataS"
- + "tream\"C\202\323\344\223\0026\0224/v1alpha/{name=properties"
- + "/*/androidAppDataStreams/*}\332A\004name\022\274\001\n\032D"
- + "eleteAndroidAppDataStream\022A.google.analy"
- + "tics.admin.v1alpha.DeleteAndroidAppDataS"
- + "treamRequest\032\026.google.protobuf.Empty\"C\202\323"
- + "\344\223\0026*4/v1alpha/{name=properties/*/androi"
- + "dAppDataStreams/*}\332A\004name\022\253\002\n\032UpdateAndr"
- + "oidAppDataStream\022A.google.analytics.admi"
- + "n.v1alpha.UpdateAndroidAppDataStreamRequ"
- + "est\0324.google.analytics.admin.v1alpha.And"
- + "roidAppDataStream\"\223\001\202\323\344\223\002g2L/v1alpha/{an"
- + "droid_app_data_stream.name=properties/*/"
- + "androidAppDataStreams/*}:\027android_app_da"
- + "ta_stream\332A#android_app_data_stream,upda"
- + "te_mask\022\215\002\n\032CreateAndroidAppDataStream\022A"
- + ".google.analytics.admin.v1alpha.CreateAn"
- + "droidAppDataStreamRequest\0324.google.analy"
- + "tics.admin.v1alpha.AndroidAppDataStream\""
- + "v\202\323\344\223\002O\"4/v1alpha/{parent=properties/*}/"
- + "androidAppDataStreams:\027android_app_data_"
- + "stream\332A\036parent,android_app_data_stream\022"
- + "\347\001\n\031ListAndroidAppDataStreams\022@.google.a"
- + "nalytics.admin.v1alpha.ListAndroidAppDat"
- + "aStreamsRequest\032A.google.analytics.admin"
- + ".v1alpha.ListAndroidAppDataStreamsRespon"
- + "se\"E\202\323\344\223\0026\0224/v1alpha/{parent=properties/"
- + "*}/androidAppDataStreams\332A\006parent\022\376\001\n\036Ge"
- + "tEnhancedMeasurementSettings\022E.google.an"
- + "alytics.admin.v1alpha.GetEnhancedMeasure"
- + "mentSettingsRequest\032;.google.analytics.a"
- + "dmin.v1alpha.EnhancedMeasurementSettings"
- + "\"X\202\323\344\223\002K\022I/v1alpha/{name=properties/*/we"
- + "bDataStreams/*/enhancedMeasurementSettin"
- + "gs}\332A\004name\022\350\002\n!UpdateEnhancedMeasurement"
- + "Settings\022H.google.analytics.admin.v1alph"
- + "a.UpdateEnhancedMeasurementSettingsReque"
- + "st\032;.google.analytics.admin.v1alpha.Enha",
- "ncedMeasurementSettings\"\273\001\202\323\344\223\002\210\0012g/v1al"
- + "pha/{enhanced_measurement_settings.name="
- + "properties/*/webDataStreams/*/enhancedMe"
- + "asurementSettings}:\035enhanced_measurement"
- + "_settings\332A)enhanced_measurement_setting"
- + "s,update_mask\022\331\001\n\022CreateFirebaseLink\0229.g"
- + "oogle.analytics.admin.v1alpha.CreateFire"
- + "baseLinkRequest\032,.google.analytics.admin"
- + ".v1alpha.FirebaseLink\"Z\202\323\344\223\002=\",/v1alpha/"
- + "{parent=properties/*}/firebaseLinks:\rfir"
- + "ebase_link\332A\024parent,firebase_link\022\354\001\n\022Up"
- + "dateFirebaseLink\0229.google.analytics.admi"
- + "n.v1alpha.UpdateFirebaseLinkRequest\032,.go"
- + "ogle.analytics.admin.v1alpha.FirebaseLin"
- + "k\"m\202\323\344\223\002K2:/v1alpha/{firebase_link.name="
- + "properties/*/firebaseLinks/*}:\rfirebase_"
- + "link\332A\031firebase_link,update_mask\022\244\001\n\022Del"
- + "eteFirebaseLink\0229.google.analytics.admin"
- + ".v1alpha.DeleteFirebaseLinkRequest\032\026.goo"
- + "gle.protobuf.Empty\";\202\323\344\223\002.*,/v1alpha/{na"
- + "me=properties/*/firebaseLinks/*}\332A\004name\022"
- + "\307\001\n\021ListFirebaseLinks\0228.google.analytics"
- + ".admin.v1alpha.ListFirebaseLinksRequest\032"
- + "9.google.analytics.admin.v1alpha.ListFir"
- + "ebaseLinksResponse\"=\202\323\344\223\002.\022,/v1alpha/{pa"
- + "rent=properties/*}/firebaseLinks\332A\006paren"
- + "t\022\306\001\n\020GetGlobalSiteTag\0227.google.analytic"
- + "s.admin.v1alpha.GetGlobalSiteTagRequest\032"
- + "-.google.analytics.admin.v1alpha.GlobalS"
- + "iteTag\"J\202\323\344\223\002=\022;/v1alpha/{name=propertie"
- + "s/*/webDataStreams/*/globalSiteTag}\332A\004na"
- + "me\022\341\001\n\023CreateGoogleAdsLink\022:.google.anal"
- + "ytics.admin.v1alpha.CreateGoogleAdsLinkR"
- + "equest\032-.google.analytics.admin.v1alpha."
- + "GoogleAdsLink\"_\202\323\344\223\002@\"-/v1alpha/{parent="
- + "properties/*}/googleAdsLinks:\017google_ads"
- + "_link\332A\026parent,google_ads_link\022\366\001\n\023Updat"
- + "eGoogleAdsLink\022:.google.analytics.admin."
- + "v1alpha.UpdateGoogleAdsLinkRequest\032-.goo"
- + "gle.analytics.admin.v1alpha.GoogleAdsLin"
- + "k\"t\202\323\344\223\002P2=/v1alpha/{google_ads_link.nam"
- + "e=properties/*/googleAdsLinks/*}:\017google"
- + "_ads_link\332A\033google_ads_link,update_mask\022"
- + "\247\001\n\023DeleteGoogleAdsLink\022:.google.analyti"
- + "cs.admin.v1alpha.DeleteGoogleAdsLinkRequ"
- + "est\032\026.google.protobuf.Empty\"<\202\323\344\223\002/*-/v1"
- + "alpha/{name=properties/*/googleAdsLinks/"
- + "*}\332A\004name\022\313\001\n\022ListGoogleAdsLinks\0229.googl"
- + "e.analytics.admin.v1alpha.ListGoogleAdsL"
- + "inksRequest\032:.google.analytics.admin.v1a"
- + "lpha.ListGoogleAdsLinksResponse\">\202\323\344\223\002/\022"
- + "-/v1alpha/{parent=properties/*}/googleAd"
- + "sLinks\332A\006parent\022\313\001\n\026GetDataSharingSettin"
- + "gs\022=.google.analytics.admin.v1alpha.GetD"
- + "ataSharingSettingsRequest\0323.google.analy"
- + "tics.admin.v1alpha.DataSharingSettings\"="
- + "\202\323\344\223\0020\022./v1alpha/{name=accounts/*/dataSh"
- + "aringSettings}\332A\004name\032\374\001\312A\035analyticsadmi"
- + "n.googleapis.com\322A\330\001https://www.googleap"
- + "is.com/auth/analytics.edit,https://www.g"
- + "oogleapis.com/auth/analytics.manage.user"
- + "s,https://www.googleapis.com/auth/analyt"
- + "ics.manage.users.readonly,https://www.go"
- + "ogleapis.com/auth/analytics.readonlyB\200\001\n"
- + "\"com.google.analytics.admin.v1alphaB\023Ana"
- + "lyticsAdminProtoP\001ZCgoogle.golang.org/ge"
- + "nproto/googleapis/analytics/admin/v1alph"
- + "a;adminb\006proto3"
+ + "/enhancedMeasurementSettings}\332A\004name\022\350\002\n",
+ "!UpdateEnhancedMeasurementSettings\022H.goo"
+ + "gle.analytics.admin.v1alpha.UpdateEnhanc"
+ + "edMeasurementSettingsRequest\032;.google.an"
+ + "alytics.admin.v1alpha.EnhancedMeasuremen"
+ + "tSettings\"\273\001\202\323\344\223\002\210\0012g/v1alpha/{enhanced_"
+ + "measurement_settings.name=properties/*/w"
+ + "ebDataStreams/*/enhancedMeasurementSetti"
+ + "ngs}:\035enhanced_measurement_settings\332A)en"
+ + "hanced_measurement_settings,update_mask\022"
+ + "\331\001\n\022CreateFirebaseLink\0229.google.analytic"
+ + "s.admin.v1alpha.CreateFirebaseLinkReques"
+ + "t\032,.google.analytics.admin.v1alpha.Fireb"
+ + "aseLink\"Z\202\323\344\223\002=\",/v1alpha/{parent=proper"
+ + "ties/*}/firebaseLinks:\rfirebase_link\332A\024p"
+ + "arent,firebase_link\022\354\001\n\022UpdateFirebaseLi"
+ + "nk\0229.google.analytics.admin.v1alpha.Upda"
+ + "teFirebaseLinkRequest\032,.google.analytics"
+ + ".admin.v1alpha.FirebaseLink\"m\202\323\344\223\002K2:/v1"
+ + "alpha/{firebase_link.name=properties/*/f"
+ + "irebaseLinks/*}:\rfirebase_link\332A\031firebas"
+ + "e_link,update_mask\022\244\001\n\022DeleteFirebaseLin"
+ + "k\0229.google.analytics.admin.v1alpha.Delet"
+ + "eFirebaseLinkRequest\032\026.google.protobuf.E"
+ + "mpty\";\202\323\344\223\002.*,/v1alpha/{name=properties/"
+ + "*/firebaseLinks/*}\332A\004name\022\307\001\n\021ListFireba"
+ + "seLinks\0228.google.analytics.admin.v1alpha"
+ + ".ListFirebaseLinksRequest\0329.google.analy"
+ + "tics.admin.v1alpha.ListFirebaseLinksResp"
+ + "onse\"=\202\323\344\223\002.\022,/v1alpha/{parent=propertie"
+ + "s/*}/firebaseLinks\332A\006parent\022\306\001\n\020GetGloba"
+ + "lSiteTag\0227.google.analytics.admin.v1alph"
+ + "a.GetGlobalSiteTagRequest\032-.google.analy"
+ + "tics.admin.v1alpha.GlobalSiteTag\"J\202\323\344\223\002="
+ + "\022;/v1alpha/{name=properties/*/webDataStr"
+ + "eams/*/globalSiteTag}\332A\004name\022\341\001\n\023CreateG"
+ + "oogleAdsLink\022:.google.analytics.admin.v1"
+ + "alpha.CreateGoogleAdsLinkRequest\032-.googl"
+ + "e.analytics.admin.v1alpha.GoogleAdsLink\""
+ + "_\202\323\344\223\002@\"-/v1alpha/{parent=properties/*}/"
+ + "googleAdsLinks:\017google_ads_link\332A\026parent"
+ + ",google_ads_link\022\366\001\n\023UpdateGoogleAdsLink"
+ + "\022:.google.analytics.admin.v1alpha.Update"
+ + "GoogleAdsLinkRequest\032-.google.analytics."
+ + "admin.v1alpha.GoogleAdsLink\"t\202\323\344\223\002P2=/v1"
+ + "alpha/{google_ads_link.name=properties/*"
+ + "/googleAdsLinks/*}:\017google_ads_link\332A\033go"
+ + "ogle_ads_link,update_mask\022\247\001\n\023DeleteGoog"
+ + "leAdsLink\022:.google.analytics.admin.v1alp"
+ + "ha.DeleteGoogleAdsLinkRequest\032\026.google.p"
+ + "rotobuf.Empty\"<\202\323\344\223\002/*-/v1alpha/{name=pr"
+ + "operties/*/googleAdsLinks/*}\332A\004name\022\313\001\n\022"
+ + "ListGoogleAdsLinks\0229.google.analytics.ad"
+ + "min.v1alpha.ListGoogleAdsLinksRequest\032:."
+ + "google.analytics.admin.v1alpha.ListGoogl"
+ + "eAdsLinksResponse\">\202\323\344\223\002/\022-/v1alpha/{par"
+ + "ent=properties/*}/googleAdsLinks\332A\006paren"
+ + "t\022\313\001\n\026GetDataSharingSettings\022=.google.an"
+ + "alytics.admin.v1alpha.GetDataSharingSett"
+ + "ingsRequest\0323.google.analytics.admin.v1a"
+ + "lpha.DataSharingSettings\"=\202\323\344\223\0020\022./v1alp"
+ + "ha/{name=accounts/*/dataSharingSettings}"
+ + "\332A\004name\032\374\001\312A\035analyticsadmin.googleapis.c"
+ + "om\322A\330\001https://www.googleapis.com/auth/an"
+ + "alytics.edit,https://www.googleapis.com/"
+ + "auth/analytics.manage.users,https://www."
+ + "googleapis.com/auth/analytics.manage.use"
+ + "rs.readonly,https://www.googleapis.com/a"
+ + "uth/analytics.readonlyB\200\001\n\"com.google.an"
+ + "alytics.admin.v1alphaB\023AnalyticsAdminPro"
+ + "toP\001ZCgoogle.golang.org/genproto/googlea"
+ + "pis/analytics/admin/v1alpha;adminb\006proto"
+ + "3"
};
descriptor =
com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom(
diff --git a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateUserLinksRequest.java b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateUserLinksRequest.java
index e7676a5f..9e8c8a76 100644
--- a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateUserLinksRequest.java
+++ b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchCreateUserLinksRequest.java
@@ -147,7 +147,9 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The parent.
*/
@@ -173,7 +175,9 @@ public java.lang.String getParent() {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The bytes for parent.
*/
@@ -196,8 +200,9 @@ public com.google.protobuf.ByteString getParentBytes() {
*
*
*
- * Optional. If notify_new_users is set, then email new users that they've been given
- * permissions on the resource.
+ * Optional. If set, then email the new users notifying them that they've been granted
+ * permissions to the resource. Regardless of whether this is set or not,
+ * notify_new_user field inside each individual request is ignored.
*
*
* bool notify_new_users = 2 [(.google.api.field_behavior) = OPTIONAL];
@@ -215,11 +220,13 @@ public boolean getNotifyNewUsers() {
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
@java.lang.Override
public java.util.List
@@ -230,11 +237,13 @@ public boolean getNotifyNewUsers() {
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
@java.lang.Override
public java.util.List extends com.google.analytics.admin.v1alpha.CreateUserLinkRequestOrBuilder>
@@ -245,11 +254,13 @@ public boolean getNotifyNewUsers() {
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
@java.lang.Override
public int getRequestsCount() {
@@ -259,11 +270,13 @@ public int getRequestsCount() {
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
@java.lang.Override
public com.google.analytics.admin.v1alpha.CreateUserLinkRequest getRequests(int index) {
@@ -273,11 +286,13 @@ public com.google.analytics.admin.v1alpha.CreateUserLinkRequest getRequests(int
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
@java.lang.Override
public com.google.analytics.admin.v1alpha.CreateUserLinkRequestOrBuilder getRequestsOrBuilder(
@@ -691,7 +706,9 @@ public Builder mergeFrom(
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The parent.
*/
@@ -716,7 +733,9 @@ public java.lang.String getParent() {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The bytes for parent.
*/
@@ -741,7 +760,9 @@ public com.google.protobuf.ByteString getParentBytes() {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @param value The parent to set.
* @return This builder for chaining.
@@ -765,7 +786,9 @@ public Builder setParent(java.lang.String value) {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return This builder for chaining.
*/
@@ -785,7 +808,9 @@ public Builder clearParent() {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @param value The bytes for parent to set.
* @return This builder for chaining.
@@ -806,8 +831,9 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
*
*
*
- * Optional. If notify_new_users is set, then email new users that they've been given
- * permissions on the resource.
+ * Optional. If set, then email the new users notifying them that they've been granted
+ * permissions to the resource. Regardless of whether this is set or not,
+ * notify_new_user field inside each individual request is ignored.
*
*
* bool notify_new_users = 2 [(.google.api.field_behavior) = OPTIONAL];
@@ -822,8 +848,9 @@ public boolean getNotifyNewUsers() {
*
*
*
- * Optional. If notify_new_users is set, then email new users that they've been given
- * permissions on the resource.
+ * Optional. If set, then email the new users notifying them that they've been granted
+ * permissions to the resource. Regardless of whether this is set or not,
+ * notify_new_user field inside each individual request is ignored.
*
*
* bool notify_new_users = 2 [(.google.api.field_behavior) = OPTIONAL];
@@ -841,8 +868,9 @@ public Builder setNotifyNewUsers(boolean value) {
*
*
*
- * Optional. If notify_new_users is set, then email new users that they've been given
- * permissions on the resource.
+ * Optional. If set, then email the new users notifying them that they've been granted
+ * permissions to the resource. Regardless of whether this is set or not,
+ * notify_new_user field inside each individual request is ignored.
*
*
* bool notify_new_users = 2 [(.google.api.field_behavior) = OPTIONAL];
@@ -878,11 +906,13 @@ private void ensureRequestsIsMutable() {
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public java.util.List
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public int getRequestsCount() {
if (requestsBuilder_ == null) {
@@ -913,11 +945,13 @@ public int getRequestsCount() {
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public com.google.analytics.admin.v1alpha.CreateUserLinkRequest getRequests(int index) {
if (requestsBuilder_ == null) {
@@ -930,11 +964,13 @@ public com.google.analytics.admin.v1alpha.CreateUserLinkRequest getRequests(int
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder setRequests(
int index, com.google.analytics.admin.v1alpha.CreateUserLinkRequest value) {
@@ -954,11 +990,13 @@ public Builder setRequests(
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder setRequests(
int index,
@@ -976,11 +1014,13 @@ public Builder setRequests(
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder addRequests(com.google.analytics.admin.v1alpha.CreateUserLinkRequest value) {
if (requestsBuilder_ == null) {
@@ -999,11 +1039,13 @@ public Builder addRequests(com.google.analytics.admin.v1alpha.CreateUserLinkRequ
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder addRequests(
int index, com.google.analytics.admin.v1alpha.CreateUserLinkRequest value) {
@@ -1023,11 +1065,13 @@ public Builder addRequests(
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder addRequests(
com.google.analytics.admin.v1alpha.CreateUserLinkRequest.Builder builderForValue) {
@@ -1044,11 +1088,13 @@ public Builder addRequests(
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder addRequests(
int index,
@@ -1066,11 +1112,13 @@ public Builder addRequests(
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder addAllRequests(
java.lang.Iterable extends com.google.analytics.admin.v1alpha.CreateUserLinkRequest>
@@ -1088,11 +1136,13 @@ public Builder addAllRequests(
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder clearRequests() {
if (requestsBuilder_ == null) {
@@ -1108,11 +1158,13 @@ public Builder clearRequests() {
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder removeRequests(int index) {
if (requestsBuilder_ == null) {
@@ -1128,11 +1180,13 @@ public Builder removeRequests(int index) {
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public com.google.analytics.admin.v1alpha.CreateUserLinkRequest.Builder getRequestsBuilder(
int index) {
@@ -1142,11 +1196,13 @@ public com.google.analytics.admin.v1alpha.CreateUserLinkRequest.Builder getReque
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public com.google.analytics.admin.v1alpha.CreateUserLinkRequestOrBuilder getRequestsOrBuilder(
int index) {
@@ -1160,11 +1216,13 @@ public com.google.analytics.admin.v1alpha.CreateUserLinkRequestOrBuilder getRequ
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public java.util.List<
? extends com.google.analytics.admin.v1alpha.CreateUserLinkRequestOrBuilder>
@@ -1179,11 +1237,13 @@ public com.google.analytics.admin.v1alpha.CreateUserLinkRequestOrBuilder getRequ
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public com.google.analytics.admin.v1alpha.CreateUserLinkRequest.Builder addRequestsBuilder() {
return getRequestsFieldBuilder()
@@ -1194,11 +1254,13 @@ public com.google.analytics.admin.v1alpha.CreateUserLinkRequest.Builder addReque
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public com.google.analytics.admin.v1alpha.CreateUserLinkRequest.Builder addRequestsBuilder(
int index) {
@@ -1210,11 +1272,13 @@ public com.google.analytics.admin.v1alpha.CreateUserLinkRequest.Builder addReque
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public java.util.Liststring parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The parent.
*/
@@ -48,7 +50,9 @@ public interface BatchCreateUserLinksRequestOrBuilder
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The bytes for parent.
*/
@@ -58,8 +62,9 @@ public interface BatchCreateUserLinksRequestOrBuilder
*
*
*
- * Optional. If notify_new_users is set, then email new users that they've been given
- * permissions on the resource.
+ * Optional. If set, then email the new users notifying them that they've been granted
+ * permissions to the resource. Regardless of whether this is set or not,
+ * notify_new_user field inside each individual request is ignored.
*
*
* bool notify_new_users = 2 [(.google.api.field_behavior) = OPTIONAL];
@@ -72,44 +77,52 @@ public interface BatchCreateUserLinksRequestOrBuilder
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
java.util.List
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
com.google.analytics.admin.v1alpha.CreateUserLinkRequest getRequests(int index);
/**
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
int getRequestsCount();
/**
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
java.util.List extends com.google.analytics.admin.v1alpha.CreateUserLinkRequestOrBuilder>
getRequestsOrBuilderList();
@@ -117,11 +130,13 @@ public interface BatchCreateUserLinksRequestOrBuilder
*
*
*
- * The requests specifying the user links to create.
+ * Required. The requests specifying the user links to create.
* A maximum of 1000 user links can be created in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3;
+ *
+ * repeated .google.analytics.admin.v1alpha.CreateUserLinkRequest requests = 3 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
com.google.analytics.admin.v1alpha.CreateUserLinkRequestOrBuilder getRequestsOrBuilder(int index);
}
diff --git a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchDeleteUserLinksRequest.java b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchDeleteUserLinksRequest.java
index 19efaaf1..031c7c2b 100644
--- a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchDeleteUserLinksRequest.java
+++ b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchDeleteUserLinksRequest.java
@@ -142,7 +142,9 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The parent.
*/
@@ -168,7 +170,9 @@ public java.lang.String getParent() {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The bytes for parent.
*/
@@ -191,11 +195,13 @@ public com.google.protobuf.ByteString getParentBytes() {
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
@java.lang.Override
public java.util.List
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
@java.lang.Override
public java.util.List extends com.google.analytics.admin.v1alpha.DeleteUserLinkRequestOrBuilder>
@@ -221,11 +229,13 @@ public com.google.protobuf.ByteString getParentBytes() {
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
@java.lang.Override
public int getRequestsCount() {
@@ -235,11 +245,13 @@ public int getRequestsCount() {
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
@java.lang.Override
public com.google.analytics.admin.v1alpha.DeleteUserLinkRequest getRequests(int index) {
@@ -249,11 +261,13 @@ public com.google.analytics.admin.v1alpha.DeleteUserLinkRequest getRequests(int
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
@java.lang.Override
public com.google.analytics.admin.v1alpha.DeleteUserLinkRequestOrBuilder getRequestsOrBuilder(
@@ -652,7 +666,9 @@ public Builder mergeFrom(
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The parent.
*/
@@ -677,7 +693,9 @@ public java.lang.String getParent() {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The bytes for parent.
*/
@@ -702,7 +720,9 @@ public com.google.protobuf.ByteString getParentBytes() {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @param value The parent to set.
* @return This builder for chaining.
@@ -726,7 +746,9 @@ public Builder setParent(java.lang.String value) {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return This builder for chaining.
*/
@@ -746,7 +768,9 @@ public Builder clearParent() {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @param value The bytes for parent to set.
* @return This builder for chaining.
@@ -784,11 +808,13 @@ private void ensureRequestsIsMutable() {
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public java.util.List
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public int getRequestsCount() {
if (requestsBuilder_ == null) {
@@ -819,11 +847,13 @@ public int getRequestsCount() {
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public com.google.analytics.admin.v1alpha.DeleteUserLinkRequest getRequests(int index) {
if (requestsBuilder_ == null) {
@@ -836,11 +866,13 @@ public com.google.analytics.admin.v1alpha.DeleteUserLinkRequest getRequests(int
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder setRequests(
int index, com.google.analytics.admin.v1alpha.DeleteUserLinkRequest value) {
@@ -860,11 +892,13 @@ public Builder setRequests(
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder setRequests(
int index,
@@ -882,11 +916,13 @@ public Builder setRequests(
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder addRequests(com.google.analytics.admin.v1alpha.DeleteUserLinkRequest value) {
if (requestsBuilder_ == null) {
@@ -905,11 +941,13 @@ public Builder addRequests(com.google.analytics.admin.v1alpha.DeleteUserLinkRequ
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder addRequests(
int index, com.google.analytics.admin.v1alpha.DeleteUserLinkRequest value) {
@@ -929,11 +967,13 @@ public Builder addRequests(
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder addRequests(
com.google.analytics.admin.v1alpha.DeleteUserLinkRequest.Builder builderForValue) {
@@ -950,11 +990,13 @@ public Builder addRequests(
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder addRequests(
int index,
@@ -972,11 +1014,13 @@ public Builder addRequests(
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder addAllRequests(
java.lang.Iterable extends com.google.analytics.admin.v1alpha.DeleteUserLinkRequest>
@@ -994,11 +1038,13 @@ public Builder addAllRequests(
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder clearRequests() {
if (requestsBuilder_ == null) {
@@ -1014,11 +1060,13 @@ public Builder clearRequests() {
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder removeRequests(int index) {
if (requestsBuilder_ == null) {
@@ -1034,11 +1082,13 @@ public Builder removeRequests(int index) {
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public com.google.analytics.admin.v1alpha.DeleteUserLinkRequest.Builder getRequestsBuilder(
int index) {
@@ -1048,11 +1098,13 @@ public com.google.analytics.admin.v1alpha.DeleteUserLinkRequest.Builder getReque
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public com.google.analytics.admin.v1alpha.DeleteUserLinkRequestOrBuilder getRequestsOrBuilder(
int index) {
@@ -1066,11 +1118,13 @@ public com.google.analytics.admin.v1alpha.DeleteUserLinkRequestOrBuilder getRequ
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public java.util.List<
? extends com.google.analytics.admin.v1alpha.DeleteUserLinkRequestOrBuilder>
@@ -1085,11 +1139,13 @@ public com.google.analytics.admin.v1alpha.DeleteUserLinkRequestOrBuilder getRequ
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public com.google.analytics.admin.v1alpha.DeleteUserLinkRequest.Builder addRequestsBuilder() {
return getRequestsFieldBuilder()
@@ -1100,11 +1156,13 @@ public com.google.analytics.admin.v1alpha.DeleteUserLinkRequest.Builder addReque
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public com.google.analytics.admin.v1alpha.DeleteUserLinkRequest.Builder addRequestsBuilder(
int index) {
@@ -1116,11 +1174,13 @@ public com.google.analytics.admin.v1alpha.DeleteUserLinkRequest.Builder addReque
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public java.util.Liststring parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The parent.
*/
@@ -48,7 +50,9 @@ public interface BatchDeleteUserLinksRequestOrBuilder
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The bytes for parent.
*/
@@ -58,44 +62,52 @@ public interface BatchDeleteUserLinksRequestOrBuilder
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
java.util.List
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
com.google.analytics.admin.v1alpha.DeleteUserLinkRequest getRequests(int index);
/**
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
int getRequestsCount();
/**
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
java.util.List extends com.google.analytics.admin.v1alpha.DeleteUserLinkRequestOrBuilder>
getRequestsOrBuilderList();
@@ -103,11 +115,13 @@ public interface BatchDeleteUserLinksRequestOrBuilder
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.DeleteUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
com.google.analytics.admin.v1alpha.DeleteUserLinkRequestOrBuilder getRequestsOrBuilder(int index);
}
diff --git a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateUserLinksRequest.java b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateUserLinksRequest.java
index d7e9f5c2..25aeaef7 100644
--- a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateUserLinksRequest.java
+++ b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/BatchUpdateUserLinksRequest.java
@@ -142,7 +142,9 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The parent.
*/
@@ -168,7 +170,9 @@ public java.lang.String getParent() {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The bytes for parent.
*/
@@ -191,11 +195,13 @@ public com.google.protobuf.ByteString getParentBytes() {
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
@java.lang.Override
public java.util.List
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
@java.lang.Override
public java.util.List extends com.google.analytics.admin.v1alpha.UpdateUserLinkRequestOrBuilder>
@@ -221,11 +229,13 @@ public com.google.protobuf.ByteString getParentBytes() {
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
@java.lang.Override
public int getRequestsCount() {
@@ -235,11 +245,13 @@ public int getRequestsCount() {
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
@java.lang.Override
public com.google.analytics.admin.v1alpha.UpdateUserLinkRequest getRequests(int index) {
@@ -249,11 +261,13 @@ public com.google.analytics.admin.v1alpha.UpdateUserLinkRequest getRequests(int
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
@java.lang.Override
public com.google.analytics.admin.v1alpha.UpdateUserLinkRequestOrBuilder getRequestsOrBuilder(
@@ -652,7 +666,9 @@ public Builder mergeFrom(
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The parent.
*/
@@ -677,7 +693,9 @@ public java.lang.String getParent() {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The bytes for parent.
*/
@@ -702,7 +720,9 @@ public com.google.protobuf.ByteString getParentBytes() {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @param value The parent to set.
* @return This builder for chaining.
@@ -726,7 +746,9 @@ public Builder setParent(java.lang.String value) {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return This builder for chaining.
*/
@@ -746,7 +768,9 @@ public Builder clearParent() {
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @param value The bytes for parent to set.
* @return This builder for chaining.
@@ -784,11 +808,13 @@ private void ensureRequestsIsMutable() {
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public java.util.List
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public int getRequestsCount() {
if (requestsBuilder_ == null) {
@@ -819,11 +847,13 @@ public int getRequestsCount() {
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public com.google.analytics.admin.v1alpha.UpdateUserLinkRequest getRequests(int index) {
if (requestsBuilder_ == null) {
@@ -836,11 +866,13 @@ public com.google.analytics.admin.v1alpha.UpdateUserLinkRequest getRequests(int
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder setRequests(
int index, com.google.analytics.admin.v1alpha.UpdateUserLinkRequest value) {
@@ -860,11 +892,13 @@ public Builder setRequests(
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder setRequests(
int index,
@@ -882,11 +916,13 @@ public Builder setRequests(
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder addRequests(com.google.analytics.admin.v1alpha.UpdateUserLinkRequest value) {
if (requestsBuilder_ == null) {
@@ -905,11 +941,13 @@ public Builder addRequests(com.google.analytics.admin.v1alpha.UpdateUserLinkRequ
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder addRequests(
int index, com.google.analytics.admin.v1alpha.UpdateUserLinkRequest value) {
@@ -929,11 +967,13 @@ public Builder addRequests(
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder addRequests(
com.google.analytics.admin.v1alpha.UpdateUserLinkRequest.Builder builderForValue) {
@@ -950,11 +990,13 @@ public Builder addRequests(
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder addRequests(
int index,
@@ -972,11 +1014,13 @@ public Builder addRequests(
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder addAllRequests(
java.lang.Iterable extends com.google.analytics.admin.v1alpha.UpdateUserLinkRequest>
@@ -994,11 +1038,13 @@ public Builder addAllRequests(
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder clearRequests() {
if (requestsBuilder_ == null) {
@@ -1014,11 +1060,13 @@ public Builder clearRequests() {
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public Builder removeRequests(int index) {
if (requestsBuilder_ == null) {
@@ -1034,11 +1082,13 @@ public Builder removeRequests(int index) {
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public com.google.analytics.admin.v1alpha.UpdateUserLinkRequest.Builder getRequestsBuilder(
int index) {
@@ -1048,11 +1098,13 @@ public com.google.analytics.admin.v1alpha.UpdateUserLinkRequest.Builder getReque
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public com.google.analytics.admin.v1alpha.UpdateUserLinkRequestOrBuilder getRequestsOrBuilder(
int index) {
@@ -1066,11 +1118,13 @@ public com.google.analytics.admin.v1alpha.UpdateUserLinkRequestOrBuilder getRequ
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public java.util.List<
? extends com.google.analytics.admin.v1alpha.UpdateUserLinkRequestOrBuilder>
@@ -1085,11 +1139,13 @@ public com.google.analytics.admin.v1alpha.UpdateUserLinkRequestOrBuilder getRequ
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public com.google.analytics.admin.v1alpha.UpdateUserLinkRequest.Builder addRequestsBuilder() {
return getRequestsFieldBuilder()
@@ -1100,11 +1156,13 @@ public com.google.analytics.admin.v1alpha.UpdateUserLinkRequest.Builder addReque
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public com.google.analytics.admin.v1alpha.UpdateUserLinkRequest.Builder addRequestsBuilder(
int index) {
@@ -1116,11 +1174,13 @@ public com.google.analytics.admin.v1alpha.UpdateUserLinkRequest.Builder addReque
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
public java.util.Liststring parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The parent.
*/
@@ -48,7 +50,9 @@ public interface BatchUpdateUserLinksRequestOrBuilder
* Example format: accounts/1234
*
*
- * string parent = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ * string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
+ *
*
* @return The bytes for parent.
*/
@@ -58,44 +62,52 @@ public interface BatchUpdateUserLinksRequestOrBuilder
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
java.util.List
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
com.google.analytics.admin.v1alpha.UpdateUserLinkRequest getRequests(int index);
/**
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
int getRequestsCount();
/**
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
java.util.List extends com.google.analytics.admin.v1alpha.UpdateUserLinkRequestOrBuilder>
getRequestsOrBuilderList();
@@ -103,11 +115,13 @@ public interface BatchUpdateUserLinksRequestOrBuilder
*
*
*
- * The requests specifying the user links to update.
+ * Required. The requests specifying the user links to update.
* A maximum of 1000 user links can be updated in a batch.
*
*
- * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2;
+ *
+ * repeated .google.analytics.admin.v1alpha.UpdateUserLinkRequest requests = 2 [(.google.api.field_behavior) = REQUIRED];
+ *
*/
com.google.analytics.admin.v1alpha.UpdateUserLinkRequestOrBuilder getRequestsOrBuilder(int index);
}
diff --git a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateUserLinkRequest.java b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateUserLinkRequest.java
index c1534ddf..ddf92783 100644
--- a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateUserLinkRequest.java
+++ b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateUserLinkRequest.java
@@ -197,8 +197,8 @@ public com.google.protobuf.ByteString getParentBytes() {
*
*
*
- * Optional. If notify_new_user is set, then email new user that they've been given
- * permissions on the resource.
+ * Optional. If set, then email the new user notifying them that they've been granted
+ * permissions to the resource.
*
*
* bool notify_new_user = 2 [(.google.api.field_behavior) = OPTIONAL];
@@ -753,8 +753,8 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
*
*
*
- * Optional. If notify_new_user is set, then email new user that they've been given
- * permissions on the resource.
+ * Optional. If set, then email the new user notifying them that they've been granted
+ * permissions to the resource.
*
*
* bool notify_new_user = 2 [(.google.api.field_behavior) = OPTIONAL];
@@ -769,8 +769,8 @@ public boolean getNotifyNewUser() {
*
*
*
- * Optional. If notify_new_user is set, then email new user that they've been given
- * permissions on the resource.
+ * Optional. If set, then email the new user notifying them that they've been granted
+ * permissions to the resource.
*
*
* bool notify_new_user = 2 [(.google.api.field_behavior) = OPTIONAL];
@@ -788,8 +788,8 @@ public Builder setNotifyNewUser(boolean value) {
*
*
*
- * Optional. If notify_new_user is set, then email new user that they've been given
- * permissions on the resource.
+ * Optional. If set, then email the new user notifying them that they've been granted
+ * permissions to the resource.
*
*
* bool notify_new_user = 2 [(.google.api.field_behavior) = OPTIONAL];
diff --git a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateUserLinkRequestOrBuilder.java b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateUserLinkRequestOrBuilder.java
index 6a7a7eac..c6291c96 100644
--- a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateUserLinkRequestOrBuilder.java
+++ b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/CreateUserLinkRequestOrBuilder.java
@@ -56,8 +56,8 @@ public interface CreateUserLinkRequestOrBuilder
*
*
*
- * Optional. If notify_new_user is set, then email new user that they've been given
- * permissions on the resource.
+ * Optional. If set, then email the new user notifying them that they've been granted
+ * permissions to the resource.
*
*
* bool notify_new_user = 2 [(.google.api.field_behavior) = OPTIONAL];
diff --git a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/IndustryCategory.java b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/IndustryCategory.java
index 461d68a4..570bbbe7 100644
--- a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/IndustryCategory.java
+++ b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/IndustryCategory.java
@@ -679,7 +679,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType
}
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() {
- return com.google.analytics.admin.v1alpha.ResourcesProto.getDescriptor().getEnumTypes().get(0);
+ return com.google.analytics.admin.v1alpha.ResourcesProto.getDescriptor().getEnumTypes().get(1);
}
private static final IndustryCategory[] VALUES = values();
diff --git a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MaximumUserAccess.java b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MaximumUserAccess.java
index 9337fa62..4630dd99 100644
--- a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MaximumUserAccess.java
+++ b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/MaximumUserAccess.java
@@ -201,7 +201,7 @@ public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType
}
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() {
- return com.google.analytics.admin.v1alpha.ResourcesProto.getDescriptor().getEnumTypes().get(1);
+ return com.google.analytics.admin.v1alpha.ResourcesProto.getDescriptor().getEnumTypes().get(0);
}
private static final MaximumUserAccess[] VALUES = values();
diff --git a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ResourcesProto.java b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ResourcesProto.java
index d4ed8197..3fe7c95a 100644
--- a/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ResourcesProto.java
+++ b/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ResourcesProto.java
@@ -206,25 +206,25 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "tSummary\022\"accountSummaries/{account_summ"
+ "ary}\"f\n\017PropertySummary\022=\n\010property\030\001 \001("
+ "\tB+\372A(\n&analyticsadmin.googleapis.com/Pr"
- + "operty\022\024\n\014display_name\030\002 \001(\t*\252\004\n\020Industr"
- + "yCategory\022!\n\035INDUSTRY_CATEGORY_UNSPECIFI"
- + "ED\020\000\022\016\n\nAUTOMOTIVE\020\001\022#\n\037BUSINESS_AND_IND"
- + "USTRIAL_MARKETS\020\002\022\013\n\007FINANCE\020\003\022\016\n\nHEALTH"
- + "CARE\020\004\022\016\n\nTECHNOLOGY\020\005\022\n\n\006TRAVEL\020\006\022\t\n\005OT"
- + "HER\020\007\022\032\n\026ARTS_AND_ENTERTAINMENT\020\010\022\026\n\022BEA"
- + "UTY_AND_FITNESS\020\t\022\030\n\024BOOKS_AND_LITERATUR"
- + "E\020\n\022\022\n\016FOOD_AND_DRINK\020\013\022\t\n\005GAMES\020\014\022\027\n\023HO"
- + "BBIES_AND_LEISURE\020\r\022\023\n\017HOME_AND_GARDEN\020\016"
- + "\022\030\n\024INTERNET_AND_TELECOM\020\017\022\026\n\022LAW_AND_GO"
- + "VERNMENT\020\020\022\010\n\004NEWS\020\021\022\026\n\022ONLINE_COMMUNITI"
- + "ES\020\022\022\026\n\022PEOPLE_AND_SOCIETY\020\023\022\024\n\020PETS_AND"
- + "_ANIMALS\020\024\022\017\n\013REAL_ESTATE\020\025\022\r\n\tREFERENCE"
- + "\020\026\022\013\n\007SCIENCE\020\027\022\n\n\006SPORTS\020\030\022\026\n\022JOBS_AND_"
- + "EDUCATION\020\031\022\014\n\010SHOPPING\020\032*\247\001\n\021MaximumUse"
- + "rAccess\022#\n\037MAXIMUM_USER_ACCESS_UNSPECIFI"
- + "ED\020\000\022\r\n\tNO_ACCESS\020\001\022\024\n\020READ_AND_ANALYZE\020"
- + "\002\022\"\n\036EDITOR_WITHOUT_LINK_MANAGEMENT\020\003\022$\n"
- + " EDITOR_INCLUDING_LINK_MANAGEMENT\020\004B{\n\"c"
+ + "operty\022\024\n\014display_name\030\002 \001(\t*\247\001\n\021Maximum"
+ + "UserAccess\022#\n\037MAXIMUM_USER_ACCESS_UNSPEC"
+ + "IFIED\020\000\022\r\n\tNO_ACCESS\020\001\022\024\n\020READ_AND_ANALY"
+ + "ZE\020\002\022\"\n\036EDITOR_WITHOUT_LINK_MANAGEMENT\020\003"
+ + "\022$\n EDITOR_INCLUDING_LINK_MANAGEMENT\020\004*\252"
+ + "\004\n\020IndustryCategory\022!\n\035INDUSTRY_CATEGORY"
+ + "_UNSPECIFIED\020\000\022\016\n\nAUTOMOTIVE\020\001\022#\n\037BUSINE"
+ + "SS_AND_INDUSTRIAL_MARKETS\020\002\022\013\n\007FINANCE\020\003"
+ + "\022\016\n\nHEALTHCARE\020\004\022\016\n\nTECHNOLOGY\020\005\022\n\n\006TRAV"
+ + "EL\020\006\022\t\n\005OTHER\020\007\022\032\n\026ARTS_AND_ENTERTAINMEN"
+ + "T\020\010\022\026\n\022BEAUTY_AND_FITNESS\020\t\022\030\n\024BOOKS_AND"
+ + "_LITERATURE\020\n\022\022\n\016FOOD_AND_DRINK\020\013\022\t\n\005GAM"
+ + "ES\020\014\022\027\n\023HOBBIES_AND_LEISURE\020\r\022\023\n\017HOME_AN"
+ + "D_GARDEN\020\016\022\030\n\024INTERNET_AND_TELECOM\020\017\022\026\n\022"
+ + "LAW_AND_GOVERNMENT\020\020\022\010\n\004NEWS\020\021\022\026\n\022ONLINE"
+ + "_COMMUNITIES\020\022\022\026\n\022PEOPLE_AND_SOCIETY\020\023\022\024"
+ + "\n\020PETS_AND_ANIMALS\020\024\022\017\n\013REAL_ESTATE\020\025\022\r\n"
+ + "\tREFERENCE\020\026\022\013\n\007SCIENCE\020\027\022\n\n\006SPORTS\020\030\022\026\n"
+ + "\022JOBS_AND_EDUCATION\020\031\022\014\n\010SHOPPING\020\032B{\n\"c"
+ "om.google.analytics.admin.v1alphaB\016Resou"
+ "rcesProtoP\001ZCgoogle.golang.org/genproto/"
+ "googleapis/analytics/admin/v1alpha;admin"
diff --git a/proto-google-analytics-admin-v1alpha/src/main/proto/google/analytics/admin/v1alpha/analytics_admin.proto b/proto-google-analytics-admin-v1alpha/src/main/proto/google/analytics/admin/v1alpha/analytics_admin.proto
index 64329904..4df5db3d 100644
--- a/proto-google-analytics-admin-v1alpha/src/main/proto/google/analytics/admin/v1alpha/analytics_admin.proto
+++ b/proto-google-analytics-admin-v1alpha/src/main/proto/google/analytics/admin/v1alpha/analytics_admin.proto
@@ -841,8 +841,8 @@ message CreateUserLinkRequest {
}
];
- // Optional. If notify_new_user is set, then email new user that they've been given
- // permissions on the resource.
+ // Optional. If set, then email the new user notifying them that they've been granted
+ // permissions to the resource.
bool notify_new_user = 2 [(google.api.field_behavior) = OPTIONAL];
// Required. The user link to create.
@@ -855,15 +855,21 @@ message BatchCreateUserLinksRequest {
// This field is required. The parent field in the CreateUserLinkRequest
// messages must either be empty or match this field.
// Example format: accounts/1234
- string parent = 1 [(google.api.field_behavior) = REQUIRED];
+ string parent = 1 [
+ (google.api.field_behavior) = REQUIRED,
+ (google.api.resource_reference) = {
+ child_type: "analyticsadmin.googleapis.com/UserLink"
+ }
+ ];
- // Optional. If notify_new_users is set, then email new users that they've been given
- // permissions on the resource.
+ // Optional. If set, then email the new users notifying them that they've been granted
+ // permissions to the resource. Regardless of whether this is set or not,
+ // notify_new_user field inside each individual request is ignored.
bool notify_new_users = 2 [(google.api.field_behavior) = OPTIONAL];
- // The requests specifying the user links to create.
+ // Required. The requests specifying the user links to create.
// A maximum of 1000 user links can be created in a batch.
- repeated CreateUserLinkRequest requests = 3;
+ repeated CreateUserLinkRequest requests = 3 [(google.api.field_behavior) = REQUIRED];
}
// Response message for BatchCreateUserLinks RPC.
@@ -884,11 +890,16 @@ message BatchUpdateUserLinksRequest {
// for. The parent field in the UpdateUserLinkRequest messages must either be
// empty or match this field.
// Example format: accounts/1234
- string parent = 1 [(google.api.field_behavior) = REQUIRED];
+ string parent = 1 [
+ (google.api.field_behavior) = REQUIRED,
+ (google.api.resource_reference) = {
+ child_type: "analyticsadmin.googleapis.com/UserLink"
+ }
+ ];
- // The requests specifying the user links to update.
+ // Required. The requests specifying the user links to update.
// A maximum of 1000 user links can be updated in a batch.
- repeated UpdateUserLinkRequest requests = 2;
+ repeated UpdateUserLinkRequest requests = 2 [(google.api.field_behavior) = REQUIRED];
}
// Response message for BatchUpdateUserLinks RPC.
@@ -914,11 +925,16 @@ message BatchDeleteUserLinksRequest {
// for. The parent of all values for user link names to delete must match this
// field.
// Example format: accounts/1234
- string parent = 1 [(google.api.field_behavior) = REQUIRED];
+ string parent = 1 [
+ (google.api.field_behavior) = REQUIRED,
+ (google.api.resource_reference) = {
+ child_type: "analyticsadmin.googleapis.com/UserLink"
+ }
+ ];
- // The requests specifying the user links to update.
+ // Required. The requests specifying the user links to update.
// A maximum of 1000 user links can be updated in a batch.
- repeated DeleteUserLinkRequest requests = 2;
+ repeated DeleteUserLinkRequest requests = 2 [(google.api.field_behavior) = REQUIRED];
}
// Request message for GetWebDataStream RPC.
@@ -1182,6 +1198,7 @@ message ListAndroidAppDataStreamsResponse {
message GetEnhancedMeasurementSettingsRequest {
// Required. The name of the settings to lookup.
// Format:
+ //
// properties/{property_id}/webDataStreams/{stream_id}/enhancedMeasurementSettings
// Example: "properties/1000/webDataStreams/2000/enhancedMeasurementSettings"
string name = 1 [
diff --git a/proto-google-analytics-admin-v1alpha/src/main/proto/google/analytics/admin/v1alpha/resources.proto b/proto-google-analytics-admin-v1alpha/src/main/proto/google/analytics/admin/v1alpha/resources.proto
index 6128c49d..ce96dd84 100644
--- a/proto-google-analytics-admin-v1alpha/src/main/proto/google/analytics/admin/v1alpha/resources.proto
+++ b/proto-google-analytics-admin-v1alpha/src/main/proto/google/analytics/admin/v1alpha/resources.proto
@@ -26,6 +26,111 @@ option java_multiple_files = true;
option java_outer_classname = "ResourcesProto";
option java_package = "com.google.analytics.admin.v1alpha";
+// Maximum access settings that Firebase user receive on the linked Analytics
+// property.
+enum MaximumUserAccess {
+ // Unspecified maximum user access.
+ MAXIMUM_USER_ACCESS_UNSPECIFIED = 0;
+
+ // Firebase users have no access to the Analytics property.
+ NO_ACCESS = 1;
+
+ // Firebase users have Read & Analyze access to the Analytics property.
+ READ_AND_ANALYZE = 2;
+
+ // Firebase users have edit access to the Analytics property, but may not
+ // manage the Firebase link.
+ EDITOR_WITHOUT_LINK_MANAGEMENT = 3;
+
+ // Firebase users have edit access to the Analytics property and may manage
+ // the Firebase link.
+ EDITOR_INCLUDING_LINK_MANAGEMENT = 4;
+}
+
+// The category selected for this property, used for industry benchmarking.
+enum IndustryCategory {
+ // Industry category unspecified
+ INDUSTRY_CATEGORY_UNSPECIFIED = 0;
+
+ // Automotive
+ AUTOMOTIVE = 1;
+
+ // Business and industrial markets
+ BUSINESS_AND_INDUSTRIAL_MARKETS = 2;
+
+ // Finance
+ FINANCE = 3;
+
+ // Healthcare
+ HEALTHCARE = 4;
+
+ // Technology
+ TECHNOLOGY = 5;
+
+ // Travel
+ TRAVEL = 6;
+
+ // Other
+ OTHER = 7;
+
+ // Arts and entertainment
+ ARTS_AND_ENTERTAINMENT = 8;
+
+ // Beauty and fitness
+ BEAUTY_AND_FITNESS = 9;
+
+ // Books and literature
+ BOOKS_AND_LITERATURE = 10;
+
+ // Food and drink
+ FOOD_AND_DRINK = 11;
+
+ // Games
+ GAMES = 12;
+
+ // Hobbies and leisure
+ HOBBIES_AND_LEISURE = 13;
+
+ // Home and garden
+ HOME_AND_GARDEN = 14;
+
+ // Internet and telecom
+ INTERNET_AND_TELECOM = 15;
+
+ // Law and government
+ LAW_AND_GOVERNMENT = 16;
+
+ // News
+ NEWS = 17;
+
+ // Online communities
+ ONLINE_COMMUNITIES = 18;
+
+ // People and society
+ PEOPLE_AND_SOCIETY = 19;
+
+ // Pets and animals
+ PETS_AND_ANIMALS = 20;
+
+ // Real estate
+ REAL_ESTATE = 21;
+
+ // Reference
+ REFERENCE = 22;
+
+ // Science
+ SCIENCE = 23;
+
+ // Sports
+ SPORTS = 24;
+
+ // Jobs and education
+ JOBS_AND_EDUCATION = 25;
+
+ // Shopping
+ SHOPPING = 26;
+}
+
// A resource message representing a Google Analytics account.
message Account {
option (google.api.resource) = {
@@ -48,7 +153,10 @@ message Account {
string display_name = 4 [(google.api.field_behavior) = REQUIRED];
// Country of business. Must be a non-deprecated code for a UN M.49 region.
- // https://unicode.org/cldr/charts/latest/supplemental/territory_containment_un_m_49.html
+ //
+ // https:
+ // //unicode.org/cldr/charts/latest/supplem
+ // // ental/territory_containment_un_m_49.html
string country_code = 5;
// Output only. Indicates whether this Account is soft-deleted or not. Deleted
@@ -280,6 +388,7 @@ message EnhancedMeasurementSettings {
// Output only. Resource name of this Data Stream.
// Format:
+ //
// properties/{property_id}/webDataStreams/{stream_id}/enhancedMeasurementSettings
// Example: "properties/1000/webDataStreams/2000/enhancedMeasurementSettings"
string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
@@ -465,111 +574,6 @@ message DataSharingSettings {
bool sharing_with_others_enabled = 6;
}
-// The category selected for this property, used for industry benchmarking.
-enum IndustryCategory {
- // Industry category unspecified
- INDUSTRY_CATEGORY_UNSPECIFIED = 0;
-
- // Automotive
- AUTOMOTIVE = 1;
-
- // Business and industrial markets
- BUSINESS_AND_INDUSTRIAL_MARKETS = 2;
-
- // Finance
- FINANCE = 3;
-
- // Healthcare
- HEALTHCARE = 4;
-
- // Technology
- TECHNOLOGY = 5;
-
- // Travel
- TRAVEL = 6;
-
- // Other
- OTHER = 7;
-
- // Arts and entertainment
- ARTS_AND_ENTERTAINMENT = 8;
-
- // Beauty and fitness
- BEAUTY_AND_FITNESS = 9;
-
- // Books and literature
- BOOKS_AND_LITERATURE = 10;
-
- // Food and drink
- FOOD_AND_DRINK = 11;
-
- // Games
- GAMES = 12;
-
- // Hobbies and leisure
- HOBBIES_AND_LEISURE = 13;
-
- // Home and garden
- HOME_AND_GARDEN = 14;
-
- // Internet and telecom
- INTERNET_AND_TELECOM = 15;
-
- // Law and government
- LAW_AND_GOVERNMENT = 16;
-
- // News
- NEWS = 17;
-
- // Online communities
- ONLINE_COMMUNITIES = 18;
-
- // People and society
- PEOPLE_AND_SOCIETY = 19;
-
- // Pets and animals
- PETS_AND_ANIMALS = 20;
-
- // Real estate
- REAL_ESTATE = 21;
-
- // Reference
- REFERENCE = 22;
-
- // Science
- SCIENCE = 23;
-
- // Sports
- SPORTS = 24;
-
- // Jobs and education
- JOBS_AND_EDUCATION = 25;
-
- // Shopping
- SHOPPING = 26;
-}
-
-// Maximum access settings that Firebase user receive on the linked Analytics
-// property.
-enum MaximumUserAccess {
- // Unspecified maximum user access.
- MAXIMUM_USER_ACCESS_UNSPECIFIED = 0;
-
- // Firebase users have no access to the Analytics property.
- NO_ACCESS = 1;
-
- // Firebase users have Read & Analyze access to the Analytics property.
- READ_AND_ANALYZE = 2;
-
- // Firebase users have edit access to the Analytics property, but may not
- // manage the Firebase link.
- EDITOR_WITHOUT_LINK_MANAGEMENT = 3;
-
- // Firebase users have edit access to the Analytics property and may manage
- // the Firebase link.
- EDITOR_INCLUDING_LINK_MANAGEMENT = 4;
-}
-
// A virtual resource representing an overview of an account and
// all its child GA4 properties.
message AccountSummary {
diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml
index a7db2ade..2264c355 100644
--- a/samples/install-without-bom/pom.xml
+++ b/samples/install-without-bom/pom.xml
@@ -29,7 +29,7 @@