diff --git a/generation_config.yaml b/generation_config.yaml index 0436082edd91..dd89c38cc1b2 100644 --- a/generation_config.yaml +++ b/generation_config.yaml @@ -1,4 +1,4 @@ -googleapis_commitish: db88feb4756963c6aa9b5996a880cfe5572d0320 +googleapis_commitish: 1df255f1feb82e85ec0c8a3b558857e8ca3d3372 libraries_bom_version: 26.83.0 is_monorepo: true libraries: diff --git a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClient.java b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClient.java index 236b0f6ac9e3..56c2bd1f6210 100644 --- a/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClient.java +++ b/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceClient.java @@ -2926,6 +2926,24 @@ * * *
UpdateReportingIdentitySettings
Updates the reporting identity settings for this property.
Request object method variants only take one parameter, a request object, which must be constructed before the call.
+ *updateReportingIdentitySettings(UpdateReportingIdentitySettingsRequest request) + *
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
+ *updateReportingIdentitySettings(ReportingIdentitySettings reportingIdentitySettings, FieldMask updateMask) + *
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
+ *updateReportingIdentitySettingsCallable() + *
GetUserProvidedDataSettings
Looks up settings related to user-provided data for a property.
Sample code: + * + *
{@code
+ * // This snippet has been automatically generated and should be regarded as a code template only.
+ * // It will require modifications to work:
+ * // - It may require correct/in-range values for request initialization.
+ * // - It may require specifying regional endpoints when creating the service client as shown in
+ * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+ * try (AnalyticsAdminServiceClient analyticsAdminServiceClient =
+ * AnalyticsAdminServiceClient.create()) {
+ * ReportingIdentitySettings reportingIdentitySettings =
+ * ReportingIdentitySettings.newBuilder().build();
+ * FieldMask updateMask = FieldMask.newBuilder().build();
+ * ReportingIdentitySettings response =
+ * analyticsAdminServiceClient.updateReportingIdentitySettings(
+ * reportingIdentitySettings, updateMask);
+ * }
+ * }
+ *
+ * @param reportingIdentitySettings Required. The reporting identity settings to update. The
+ * settings' `name` field is used to identify the settings.
+ * @param updateMask Optional. The list of fields to be updated. Field names must be in snake case
+ * (for example, "field_to_update"). Omitted fields will not be updated. To replace the entire
+ * entity, use one path with the string "*" to match all fields. If omitted, the service
+ * will treat it as an implied field mask equivalent to all fields that are populated.
+ * @throws com.google.api.gax.rpc.ApiException if the remote call fails
+ */
+ public final ReportingIdentitySettings updateReportingIdentitySettings(
+ ReportingIdentitySettings reportingIdentitySettings, FieldMask updateMask) {
+ UpdateReportingIdentitySettingsRequest request =
+ UpdateReportingIdentitySettingsRequest.newBuilder()
+ .setReportingIdentitySettings(reportingIdentitySettings)
+ .setUpdateMask(updateMask)
+ .build();
+ return updateReportingIdentitySettings(request);
+ }
+
+ // AUTO-GENERATED DOCUMENTATION AND METHOD.
+ /**
+ * Updates the reporting identity settings for this property.
+ *
+ * Sample code: + * + *
{@code
+ * // This snippet has been automatically generated and should be regarded as a code template only.
+ * // It will require modifications to work:
+ * // - It may require correct/in-range values for request initialization.
+ * // - It may require specifying regional endpoints when creating the service client as shown in
+ * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+ * try (AnalyticsAdminServiceClient analyticsAdminServiceClient =
+ * AnalyticsAdminServiceClient.create()) {
+ * UpdateReportingIdentitySettingsRequest request =
+ * UpdateReportingIdentitySettingsRequest.newBuilder()
+ * .setReportingIdentitySettings(ReportingIdentitySettings.newBuilder().build())
+ * .setUpdateMask(FieldMask.newBuilder().build())
+ * .build();
+ * ReportingIdentitySettings response =
+ * analyticsAdminServiceClient.updateReportingIdentitySettings(request);
+ * }
+ * }
+ *
+ * @param request The request object containing all of the parameters for the API call.
+ * @throws com.google.api.gax.rpc.ApiException if the remote call fails
+ */
+ public final ReportingIdentitySettings updateReportingIdentitySettings(
+ UpdateReportingIdentitySettingsRequest request) {
+ return updateReportingIdentitySettingsCallable().call(request);
+ }
+
+ // AUTO-GENERATED DOCUMENTATION AND METHOD.
+ /**
+ * Updates the reporting identity settings for this property.
+ *
+ * Sample code: + * + *
{@code
+ * // This snippet has been automatically generated and should be regarded as a code template only.
+ * // It will require modifications to work:
+ * // - It may require correct/in-range values for request initialization.
+ * // - It may require specifying regional endpoints when creating the service client as shown in
+ * // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+ * try (AnalyticsAdminServiceClient analyticsAdminServiceClient =
+ * AnalyticsAdminServiceClient.create()) {
+ * UpdateReportingIdentitySettingsRequest request =
+ * UpdateReportingIdentitySettingsRequest.newBuilder()
+ * .setReportingIdentitySettings(ReportingIdentitySettings.newBuilder().build())
+ * .setUpdateMask(FieldMask.newBuilder().build())
+ * .build();
+ * ApiFuture future =
+ * analyticsAdminServiceClient.updateReportingIdentitySettingsCallable().futureCall(request);
+ * // Do something.
+ * ReportingIdentitySettings response = future.get();
+ * }
+ * }
+ */
+ public final UnaryCallable+ * Updates the reporting identity settings for this property. + *+ */ + default void updateReportingIdentitySettings( + com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest request, + io.grpc.stub.StreamObserver
+ * Updates the reporting identity settings for this property. + *+ */ + public void updateReportingIdentitySettings( + com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest request, + io.grpc.stub.StreamObserver
+ * Updates the reporting identity settings for this property. + *+ */ + public com.google.analytics.admin.v1alpha.ReportingIdentitySettings + updateReportingIdentitySettings( + com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest request) + throws io.grpc.StatusException { + return io.grpc.stub.ClientCalls.blockingV2UnaryCall( + getChannel(), getUpdateReportingIdentitySettingsMethod(), getCallOptions(), request); + } + /** * * @@ -17664,6 +17764,20 @@ public com.google.analytics.admin.v1alpha.SubpropertySyncConfig getSubpropertySy getChannel(), getGetReportingIdentitySettingsMethod(), getCallOptions(), request); } + /** + * + * + *
+ * Updates the reporting identity settings for this property. + *+ */ + public com.google.analytics.admin.v1alpha.ReportingIdentitySettings + updateReportingIdentitySettings( + com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getUpdateReportingIdentitySettingsMethod(), getCallOptions(), request); + } + /** * * @@ -20051,6 +20165,22 @@ protected AnalyticsAdminServiceFutureStub build( getChannel().newCall(getGetReportingIdentitySettingsMethod(), getCallOptions()), request); } + /** + * + * + *
+ * Updates the reporting identity settings for this property. + *+ */ + public com.google.common.util.concurrent.ListenableFuture< + com.google.analytics.admin.v1alpha.ReportingIdentitySettings> + updateReportingIdentitySettings( + com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest request) { + return io.grpc.stub.ClientCalls.futureUnaryCall( + getChannel().newCall(getUpdateReportingIdentitySettingsMethod(), getCallOptions()), + request); + } + /** * * @@ -20221,7 +20351,8 @@ protected AnalyticsAdminServiceFutureStub build( private static final int METHODID_UPDATE_SUBPROPERTY_SYNC_CONFIG = 151; private static final int METHODID_GET_SUBPROPERTY_SYNC_CONFIG = 152; private static final int METHODID_GET_REPORTING_IDENTITY_SETTINGS = 153; - private static final int METHODID_GET_USER_PROVIDED_DATA_SETTINGS = 154; + private static final int METHODID_UPDATE_REPORTING_IDENTITY_SETTINGS = 154; + private static final int METHODID_GET_USER_PROVIDED_DATA_SETTINGS = 155; private static final class MethodHandlers
+ * If true, then the user has a Google Analytics role that permits them to + * edit the property. + *+ * + *
bool can_edit = 5;
+ *
+ * @return The canEdit.
+ */
+ @java.lang.Override
+ public boolean getCanEdit() {
+ return canEdit_;
+ }
+
private byte memoizedIsInitialized = -1;
@java.lang.Override
@@ -308,6 +328,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io
if (!com.google.protobuf.GeneratedMessage.isStringEmpty(parent_)) {
com.google.protobuf.GeneratedMessage.writeString(output, 4, parent_);
}
+ if (canEdit_ != false) {
+ output.writeBool(5, canEdit_);
+ }
getUnknownFields().writeTo(output);
}
@@ -330,6 +353,9 @@ public int getSerializedSize() {
if (!com.google.protobuf.GeneratedMessage.isStringEmpty(parent_)) {
size += com.google.protobuf.GeneratedMessage.computeStringSize(4, parent_);
}
+ if (canEdit_ != false) {
+ size += com.google.protobuf.CodedOutputStream.computeBoolSize(5, canEdit_);
+ }
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
@@ -350,6 +376,7 @@ public boolean equals(final java.lang.Object obj) {
if (!getDisplayName().equals(other.getDisplayName())) return false;
if (propertyType_ != other.propertyType_) return false;
if (!getParent().equals(other.getParent())) return false;
+ if (getCanEdit() != other.getCanEdit()) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@@ -369,6 +396,8 @@ public int hashCode() {
hash = (53 * hash) + propertyType_;
hash = (37 * hash) + PARENT_FIELD_NUMBER;
hash = (53 * hash) + getParent().hashCode();
+ hash = (37 * hash) + CAN_EDIT_FIELD_NUMBER;
+ hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getCanEdit());
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
@@ -513,6 +542,7 @@ public Builder clear() {
displayName_ = "";
propertyType_ = 0;
parent_ = "";
+ canEdit_ = false;
return this;
}
@@ -561,6 +591,9 @@ private void buildPartial0(com.google.analytics.admin.v1alpha.PropertySummary re
if (((from_bitField0_ & 0x00000008) != 0)) {
result.parent_ = parent_;
}
+ if (((from_bitField0_ & 0x00000010) != 0)) {
+ result.canEdit_ = canEdit_;
+ }
}
@java.lang.Override
@@ -594,6 +627,9 @@ public Builder mergeFrom(com.google.analytics.admin.v1alpha.PropertySummary othe
bitField0_ |= 0x00000008;
onChanged();
}
+ if (other.getCanEdit() != false) {
+ setCanEdit(other.getCanEdit());
+ }
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
@@ -644,6 +680,12 @@ public Builder mergeFrom(
bitField0_ |= 0x00000008;
break;
} // case 34
+ case 40:
+ {
+ canEdit_ = input.readBool();
+ bitField0_ |= 0x00000010;
+ break;
+ } // case 40
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
@@ -1121,6 +1163,65 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
return this;
}
+ private boolean canEdit_;
+
+ /**
+ *
+ *
+ * + * If true, then the user has a Google Analytics role that permits them to + * edit the property. + *+ * + *
bool can_edit = 5;
+ *
+ * @return The canEdit.
+ */
+ @java.lang.Override
+ public boolean getCanEdit() {
+ return canEdit_;
+ }
+
+ /**
+ *
+ *
+ * + * If true, then the user has a Google Analytics role that permits them to + * edit the property. + *+ * + *
bool can_edit = 5;
+ *
+ * @param value The canEdit to set.
+ * @return This builder for chaining.
+ */
+ public Builder setCanEdit(boolean value) {
+
+ canEdit_ = value;
+ bitField0_ |= 0x00000010;
+ onChanged();
+ return this;
+ }
+
+ /**
+ *
+ *
+ * + * If true, then the user has a Google Analytics role that permits them to + * edit the property. + *+ * + *
bool can_edit = 5;
+ *
+ * @return This builder for chaining.
+ */
+ public Builder clearCanEdit() {
+ bitField0_ = (bitField0_ & ~0x00000010);
+ canEdit_ = false;
+ onChanged();
+ return this;
+ }
+
// @@protoc_insertion_point(builder_scope:google.analytics.admin.v1alpha.PropertySummary)
}
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertySummaryOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertySummaryOrBuilder.java
index d43abced655c..04a41f9285f5 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertySummaryOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/PropertySummaryOrBuilder.java
@@ -141,4 +141,18 @@ public interface PropertySummaryOrBuilder
* @return The bytes for parent.
*/
com.google.protobuf.ByteString getParentBytes();
+
+ /**
+ *
+ *
+ * + * If true, then the user has a Google Analytics role that permits them to + * edit the property. + *+ * + *
bool can_edit = 5;
+ *
+ * @return The canEdit.
+ */
+ boolean getCanEdit();
}
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ResourcesProto.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ResourcesProto.java
index c9088665a89c..5482bc2b6690 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ResourcesProto.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/ResourcesProto.java
@@ -347,50 +347,49 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\022property_summaries\030\004 \003(\013"
+ "2/.google.analytics.admin.v1alpha.PropertySummary:w\352At\n"
+ ",analyticsadmin.googleapis.com/AccountSummary\022\"accountSummaries/{"
- + "account_summary}*\020accountSummaries2\016accountSummary\"\273\001\n"
+ + "account_summary}*\020accountSummaries2\016accountSummary\"\315\001\n"
+ "\017PropertySummary\022=\n"
+ "\010property\030\001 \001(\tB+\372A(\n"
+ "&analyticsadmin.googleapis.com/Property\022\024\n"
+ "\014display_name\030\002 \001(\t\022C\n\r"
+ "property_type\030\003"
+ " \001(\0162,.google.analytics.admin.v1alpha.PropertyType\022\016\n"
- + "\006parent\030\004 \001(\t\"\305\002\n"
+ + "\006parent\030\004 \001(\t\022\020\n"
+ + "\010can_edit\030\005 \001(\010\"\305\002\n"
+ "\031MeasurementProtocolSecret\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\010\022\031\n"
+ "\014display_name\030\002 \001(\tB\003\340A\002\022\031\n"
+ "\014secret_value\030\003 \001(\tB\003\340A\003:\336\001\352A\332\001\n"
- + "7analyticsadmin.googleapis.com/MeasurementProtoco"
- + "lSecret\022hproperties/{property}/dataStreams/{data_stream}/measurementProtocolSecr"
- + "ets/{measurement_protocol_secret}*\032measu"
- + "rementProtocolSecrets2\031measurementProtocolSecret\"\310\004\n"
+ + "7analyticsadmin.googleapis.com/MeasurementProtocolSecret\022hproperties/{p"
+ + "roperty}/dataStreams/{data_stream}/measurementProtocolSecrets/{measurement_proto"
+ + "col_secret}*\032measurementProtocolSecrets2\031measurementProtocolSecret\"\310\004\n"
+ " SKAdNetworkConversionValueSchema\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\010\022P\n"
- + "\023postback_window_one\030\002"
- + " \001(\0132..google.analytics.admin.v1alpha.PostbackWindowB\003\340A\002\022K\n"
- + "\023postback_window_two\030\003"
- + " \001(\0132..google.analytics.admin.v1alpha.PostbackWindow\022M\n"
- + "\025postback_window_three\030\004"
- + " \001(\0132..google.analytics.admin.v1alpha.PostbackWindow\022\037\n"
+ + "\023postback_window_one\030\002 \001(\0132..google"
+ + ".analytics.admin.v1alpha.PostbackWindowB\003\340A\002\022K\n"
+ + "\023postback_window_two\030\003 \001(\0132..goog"
+ + "le.analytics.admin.v1alpha.PostbackWindow\022M\n"
+ + "\025postback_window_three\030\004 \001(\0132..googl"
+ + "e.analytics.admin.v1alpha.PostbackWindow\022\037\n"
+ "\027apply_conversion_values\030\005 \001(\010:\201\002\352A\375\001\n"
- + ">analyticsadmin.googleapis.com/SKAdNetworkConversionValue"
- + "Schema\022vproperties/{property}/dataStreams/{data_stream}/sKAdNetworkConversionVal"
- + "ueSchema/{skadnetwork_conversion_value_schema}*!skAdNetworkConversionValueSchemas2"
+ + ">analyticsadmin.googleapis.com/SKAdNetworkConversionValueSchema\022vproperties/{pr"
+ + "operty}/dataStreams/{data_stream}/sKAdNetworkConversionValueSchema/{skadnetwork_"
+ + "conversion_value_schema}*!skAdNetworkConversionValueSchemas2"
+ " skAdNetworkConversionValueSchema\"\207\001\n"
+ "\016PostbackWindow\022K\n"
- + "\021conversion_values\030\001 \003("
- + "\01320.google.analytics.admin.v1alpha.ConversionValues\022(\n"
+ + "\021conversion_values\030\001"
+ + " \003(\01320.google.analytics.admin.v1alpha.ConversionValues\022(\n"
+ " postback_window_settings_enabled\030\002 \001(\010\"\364\001\n"
+ "\020ConversionValues\022\024\n"
+ "\014display_name\030\001 \001(\t\022\027\n\n"
+ "fine_value\030\002 \001(\005H\000\210\001\001\022F\n"
- + "\014coarse_value\030\003"
- + " \001(\0162+.google.analytics.admin.v1alpha.CoarseValueB\003\340A\002\022D\n"
- + "\016event_mappings\030\004"
- + " \003(\0132,.google.analytics.admin.v1alpha.EventMapping\022\024\n"
+ + "\014coarse_value\030\003 \001("
+ + "\0162+.google.analytics.admin.v1alpha.CoarseValueB\003\340A\002\022D\n"
+ + "\016event_mappings\030\004 \003(\0132,.go"
+ + "ogle.analytics.admin.v1alpha.EventMapping\022\024\n"
+ "\014lock_enabled\030\005 \001(\010B\r\n"
+ "\013_fine_value\"\357\001\n"
- + "\014EventMapping\022\027\n"
- + "\n"
+ + "\014EventMapping\022\027\n\n"
+ "event_name\030\001 \001(\tB\003\340A\002\022\034\n"
+ "\017min_event_count\030\002 \001(\003H\000\210\001\001\022\034\n"
+ "\017max_event_count\030\003 \001(\003H\001\210\001\001\022\034\n"
@@ -406,73 +405,73 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "actor_type\030\003 \001(\0162).google.analytics.admin.v1alpha.ActorType\022\030\n"
+ "\020user_actor_email\030\004 \001(\t\022\030\n"
+ "\020changes_filtered\030\005 \001(\010\022D\n"
- + "\007changes\030\006 \003(\01323"
- + ".google.analytics.admin.v1alpha.ChangeHistoryChange\"\231\026\n"
+ + "\007changes\030\006"
+ + " \003(\01323.google.analytics.admin.v1alpha.ChangeHistoryChange\"\231\026\n"
+ "\023ChangeHistoryChange\022\020\n"
+ "\010resource\030\001 \001(\t\022:\n"
+ "\006action\030\002 \001(\0162*.google.analytics.admin.v1alpha.ActionType\022i\n"
- + "\026resource_before_change\030\003 \001(\0132I.google.analy"
- + "tics.admin.v1alpha.ChangeHistoryChange.ChangeHistoryResource\022h\n"
- + "\025resource_after_change\030\004 \001(\0132I.google.analytics.admin.v1a"
- + "lpha.ChangeHistoryChange.ChangeHistoryResource\032\336\023\n"
+ + "\026resource_before_change\030\003 \001(\0132I.google.analytics.admin.v1alpha.Cha"
+ + "ngeHistoryChange.ChangeHistoryResource\022h\n"
+ + "\025resource_after_change\030\004 \001(\0132I.google.a"
+ + "nalytics.admin.v1alpha.ChangeHistoryChange.ChangeHistoryResource\032\336\023\n"
+ "\025ChangeHistoryResource\022:\n"
+ "\007account\030\001 \001(\0132\'.google.analytics.admin.v1alpha.AccountH\000\022<\n"
+ "\010property\030\002 \001(\0132(.google.analytics.admin.v1alpha.PropertyH\000\022E\n\r"
- + "firebase_link\030\006"
- + " \001(\0132,.google.analytics.admin.v1alpha.FirebaseLinkH\000\022H\n"
+ + "firebase_link\030\006 \001(\0132,.go"
+ + "ogle.analytics.admin.v1alpha.FirebaseLinkH\000\022H\n"
+ "\017google_ads_link\030\007"
+ " \001(\0132-.google.analytics.admin.v1alpha.GoogleAdsLinkH\000\022X\n"
- + "\027google_signals_settings\030\010"
- + " \001(\01325.google.analytics.admin.v1alpha.GoogleSignalsSettingsH\000\022j\n"
- + "!display_video_360_advertiser_link\030\t \001(\0132=.googl"
- + "e.analytics.admin.v1alpha.DisplayVideo360AdvertiserLinkH\000\022{\n"
+ + "\027google_signals_settings\030\010 \001(\01325.google."
+ + "analytics.admin.v1alpha.GoogleSignalsSettingsH\000\022j\n"
+ + "!display_video_360_advertiser_link\030\t"
+ + " \001(\0132=.google.analytics.admin.v1alpha.DisplayVideo360AdvertiserLinkH\000\022{\n"
+ "*display_video_360_advertiser_link_proposal\030\n"
- + " \001(\0132E.google.a"
- + "nalytics.admin.v1alpha.DisplayVideo360AdvertiserLinkProposalH\000\022K\n"
+ + " \001(\0132E.google.analytics.admin.v1alpha"
+ + ".DisplayVideo360AdvertiserLinkProposalH\000\022K\n"
+ "\020conversion_event\030\013"
+ " \001(\0132/.google.analytics.admin.v1alpha.ConversionEventH\000\022`\n"
- + "\033measurement_protocol_secret\030\014"
- + " \001(\01329.google.analytics.admin.v1alpha.MeasurementProtocolSecretH\000\022K\n"
+ + "\033measurement_protocol_secret\030\014 \001(\01329.goo"
+ + "gle.analytics.admin.v1alpha.MeasurementProtocolSecretH\000\022K\n"
+ "\020custom_dimension\030\r"
+ " \001(\0132/.google.analytics.admin.v1alpha.CustomDimensionH\000\022E\n\r"
- + "custom_metric\030\016"
- + " \001(\0132,.google.analytics.admin.v1alpha.CustomMetricH\000\022X\n"
- + "\027data_retention_settings\030\017"
- + " \001(\01325.google.analytics.admin.v1alpha.DataRetentionSettingsH\000\022O\n"
- + "\023search_ads_360_link\030\020"
- + " \001(\01320.google.analytics.admin.v1alpha.SearchAds360LinkH\000\022A\n"
- + "\013data_stream\030\022"
- + " \001(\0132*.google.analytics.admin.v1alpha.DataStreamH\000\022S\n"
- + "\024attribution_settings\030\024"
- + " \001(\01323.google.analytics.admin.v1alpha.AttributionSettingsH\000\022L\n"
- + "\021expanded_data_set\030\025"
- + " \001(\0132/.google.analytics.admin.v1alpha.ExpandedDataSetH\000\022E\n\r"
+ + "custom_metric\030\016 \001(\0132,.go"
+ + "ogle.analytics.admin.v1alpha.CustomMetricH\000\022X\n"
+ + "\027data_retention_settings\030\017 \001(\01325.g"
+ + "oogle.analytics.admin.v1alpha.DataRetentionSettingsH\000\022O\n"
+ + "\023search_ads_360_link\030\020 \001"
+ + "(\01320.google.analytics.admin.v1alpha.SearchAds360LinkH\000\022A\n"
+ + "\013data_stream\030\022 \001(\0132*.go"
+ + "ogle.analytics.admin.v1alpha.DataStreamH\000\022S\n"
+ + "\024attribution_settings\030\024 \001(\01323.google"
+ + ".analytics.admin.v1alpha.AttributionSettingsH\000\022L\n"
+ + "\021expanded_data_set\030\025 \001(\0132/.goog"
+ + "le.analytics.admin.v1alpha.ExpandedDataSetH\000\022E\n\r"
+ "channel_group\030\026"
+ " \001(\0132,.google.analytics.admin.v1alpha.ChannelGroupH\000\022E\n\r"
- + "bigquery_link\030\027 \001(\013"
- + "2,.google.analytics.admin.v1alpha.BigQueryLinkH\000\022d\n"
- + "\035enhanced_measurement_settings\030\030"
- + " \001(\0132;.google.analytics.admin.v1alpha.EnhancedMeasurementSettingsH\000\022X\n"
- + "\027data_redaction_settings\030\031 \001(\01325.google.analyti"
- + "cs.admin.v1alpha.DataRedactionSettingsH\000\022o\n"
- + "#skadnetwork_conversion_value_schema\030\032"
- + " \001(\0132@.google.analytics.admin.v1alpha.SKAdNetworkConversionValueSchemaH\000\022C\n"
- + "\014adsense_link\030\033"
- + " \001(\0132+.google.analytics.admin.v1alpha.AdSenseLinkH\000\022<\n"
+ + "bigquery_link\030\027"
+ + " \001(\0132,.google.analytics.admin.v1alpha.BigQueryLinkH\000\022d\n"
+ + "\035enhanced_measurement_settings\030\030 \001(\0132;.google.analy"
+ + "tics.admin.v1alpha.EnhancedMeasurementSettingsH\000\022X\n"
+ + "\027data_redaction_settings\030\031 \001("
+ + "\01325.google.analytics.admin.v1alpha.DataRedactionSettingsH\000\022o\n"
+ + "#skadnetwork_conversion_value_schema\030\032 \001(\0132@.google.analyti"
+ + "cs.admin.v1alpha.SKAdNetworkConversionValueSchemaH\000\022C\n"
+ + "\014adsense_link\030\033 \001(\0132+.goog"
+ + "le.analytics.admin.v1alpha.AdSenseLinkH\000\022<\n"
+ "\010audience\030\034 \001(\0132(.google.analytics.admin.v1alpha.AudienceH\000\022L\n"
- + "\021event_create_rule\030\035 \001(\0132/.google"
- + ".analytics.admin.v1alpha.EventCreateRuleH\000\022=\n"
+ + "\021event_create_rule\030\035"
+ + " \001(\0132/.google.analytics.admin.v1alpha.EventCreateRuleH\000\022=\n"
+ "\tkey_event\030\036 \001(\0132(.google.analytics.admin.v1alpha.KeyEventH\000\022M\n"
- + "\021calculated_metric\030\037"
- + " \001(\01320.google.analytics.admin.v1alpha.CalculatedMetricH\000\022\\\n"
- + "\031reporting_data_annotation\030 \001(\01327.google.analytics.a"
- + "dmin.v1alpha.ReportingDataAnnotationH\000\022X\n"
- + "\027subproperty_sync_config\030! \001(\01325.google"
- + ".analytics.admin.v1alpha.SubpropertySyncConfigH\000\022`\n"
- + "\033reporting_identity_settings\030\""
- + " \001(\01329.google.analytics.admin.v1alpha.ReportingIdentitySettingsH\000\022_\n"
- + "\033user_provided_data_settings\030# \001(\01328.google.analyti"
- + "cs.admin.v1alpha.UserProvidedDataSettingsH\000B\n\n"
+ + "\021calculated_metric\030\037 \001(\01320.google."
+ + "analytics.admin.v1alpha.CalculatedMetricH\000\022\\\n"
+ + "\031reporting_data_annotation\030 \001(\01327."
+ + "google.analytics.admin.v1alpha.ReportingDataAnnotationH\000\022X\n"
+ + "\027subproperty_sync_config\030!"
+ + " \001(\01325.google.analytics.admin.v1alpha.SubpropertySyncConfigH\000\022`\n"
+ + "\033reporting_identity_settings\030\" \001(\01329.google.analyti"
+ + "cs.admin.v1alpha.ReportingIdentitySettingsH\000\022_\n"
+ + "\033user_provided_data_settings\030# \001("
+ + "\01328.google.analytics.admin.v1alpha.UserProvidedDataSettingsH\000B\n\n"
+ "\010resource\"\236\004\n"
+ "\035DisplayVideo360AdvertiserLink\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\010\022\032\n\r"
@@ -484,15 +483,14 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ " \001(\0132\032.google.protobuf.BoolValueB\003\340A\005\022B\n"
+ "\031cost_data_sharing_enabled\030\006"
+ " \001(\0132\032.google.protobuf.BoolValueB\003\340A\005:\332\001\352A\326\001\n"
- + ";analyticsadmin.googleapis.com/DisplayVideo360Adverti"
- + "serLink\022Xproperties/{property}/displayVideo360AdvertiserLinks/{display_video_360"
- + "_advertiser_link}*\036displayVideo360Advert"
- + "iserLinks2\035displayVideo360AdvertiserLink\"\331\005\n"
+ + ";analyticsadmin.googleapis.com/DisplayVideo360AdvertiserLink\022Xproperties/{p"
+ + "roperty}/displayVideo360AdvertiserLinks/{display_video_360_advertiser_link}*\036dis"
+ + "playVideo360AdvertiserLinks2\035displayVideo360AdvertiserLink\"\331\005\n"
+ "%DisplayVideo360AdvertiserLinkProposal\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\010\022\032\n\r"
+ "advertiser_id\030\002 \001(\tB\003\340A\005\022d\n"
- + "\034link_proposal_status_details\030\003"
- + " \001(\01329.google.analytics.admin.v1alpha.LinkProposalStatusDetailsB\003\340A\003\022$\n"
+ + "\034link_proposal_status_details\030\003 \001(\01329.google.analy"
+ + "tics.admin.v1alpha.LinkProposalStatusDetailsB\003\340A\003\022$\n"
+ "\027advertiser_display_name\030\004 \001(\tB\003\340A\003\022\035\n"
+ "\020validation_email\030\005 \001(\tB\003\340A\004\022D\n"
+ "\033ads_personalization_enabled\030\006"
@@ -501,10 +499,10 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ " \001(\0132\032.google.protobuf.BoolValueB\003\340A\005\022B\n"
+ "\031cost_data_sharing_enabled\030\010"
+ " \001(\0132\032.google.protobuf.BoolValueB\003\340A\005:\203\002\352A\377\001\n"
- + "Canalyticsadmin.googleapis.com/DisplayVideo360AdvertiserLinkProposal\022iproperties/{"
- + "property}/displayVideo360AdvertiserLinkProposals/{display_video_360_advertiser_l"
- + "ink_proposal}*&displayVideo360Advertiser"
- + "LinkProposals2%displayVideo360AdvertiserLinkProposal\"\217\004\n"
+ + "Canalyticsadmin.googleapis.com/DisplayVideo360AdvertiserLinkProp"
+ + "osal\022iproperties/{property}/displayVideo360AdvertiserLinkProposals/{display_vide"
+ + "o_360_advertiser_link_proposal}*&display"
+ + "Video360AdvertiserLinkProposals2%displayVideo360AdvertiserLinkProposal\"\217\004\n"
+ "\020SearchAds360Link\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\010\022\032\n\r"
+ "advertiser_id\030\002 \001(\tB\003\340A\005\022F\n"
@@ -517,15 +515,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ " \001(\0132\032.google.protobuf.BoolValue\022>\n"
+ "\032site_stats_sharing_enabled\030\007"
+ " \001(\0132\032.google.protobuf.BoolValue:\230\001\352A\224\001\n"
- + ".analyticsadmin.googleapis.com/SearchAds360Li"
- + "nk\022=properties/{property}/searchAds360Li"
- + "nks/{search_ads_360_link}*\021searchAds360Links2\020searchAds360Link\"\374\001\n"
+ + ".analyticsadmin.googleapis.com/SearchAds360Link\022=properties/{proper"
+ + "ty}/searchAds360Links/{search_ads_360_li"
+ + "nk}*\021searchAds360Links2\020searchAds360Link\"\374\001\n"
+ "\031LinkProposalStatusDetails\022l\n"
- + " link_proposal_initiating_product\030\001 \001(\0162=.google.analytics.admin."
- + "v1alpha.LinkProposalInitiatingProductB\003\340A\003\022\034\n"
+ + " link_proposal_initiating_product\030\001 \001(\0162=.googl"
+ + "e.analytics.admin.v1alpha.LinkProposalInitiatingProductB\003\340A\003\022\034\n"
+ "\017requestor_email\030\002 \001(\tB\003\340A\003\022S\n"
- + "\023link_proposal_state\030\003 \001(\01621.google.analytics"
- + ".admin.v1alpha.LinkProposalStateB\003\340A\003\"\205\006\n"
+ + "\023link_proposal_state\030\003 \001(\0162"
+ + "1.google.analytics.admin.v1alpha.LinkProposalStateB\003\340A\003\"\205\006\n"
+ "\017ConversionEvent\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\010\022\027\n\n"
+ "event_name\030\002 \001(\tB\003\340A\005\0224\n"
@@ -533,10 +531,11 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ " \001(\0132\032.google.protobuf.TimestampB\003\340A\003\022\026\n"
+ "\tdeletable\030\004 \001(\010B\003\340A\003\022\023\n"
+ "\006custom\030\005 \001(\010B\003\340A\003\022f\n"
- + "\017counting_method\030\006 \001(\0162H.google.analy"
- + "tics.admin.v1alpha.ConversionEvent.ConversionCountingMethodB\003\340A\001\022r\n"
- + "\030default_conversion_value\030\007 \001(\0132F.google.analytics.ad"
- + "min.v1alpha.ConversionEvent.DefaultConversionValueB\003\340A\001H\000\210\001\001\032d\n"
+ + "\017counting_method\030\006 \001(\0162H.google.analytics.admin.v1alpha.Con"
+ + "versionEvent.ConversionCountingMethodB\003\340A\001\022r\n"
+ + "\030default_conversion_value\030\007 \001(\0132F.g"
+ + "oogle.analytics.admin.v1alpha.Conversion"
+ + "Event.DefaultConversionValueB\003\340A\001H\000\210\001\001\032d\n"
+ "\026DefaultConversionValue\022\022\n"
+ "\005value\030\001 \001(\001H\000\210\001\001\022\032\n\r"
+ "currency_code\030\002 \001(\tH\001\210\001\001B\010\n"
@@ -546,8 +545,9 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "&CONVERSION_COUNTING_METHOD_UNSPECIFIED\020\000\022\022\n"
+ "\016ONCE_PER_EVENT\020\001\022\024\n"
+ "\020ONCE_PER_SESSION\020\002:\221\001\352A\215\001\n"
- + "-analyticsadmin.googleapis.com/ConversionEvent\0229properties/{property}/conver"
- + "sionEvents/{conversion_event}*\020conversionEvents2\017conversionEventB\033\n"
+ + "-analyticsadmin.googleapis.com/ConversionEvent\0229properties"
+ + "/{property}/conversionEvents/{conversion"
+ + "_event}*\020conversionEvents2\017conversionEventB\033\n"
+ "\031_default_conversion_value\"\327\004\n"
+ "\010KeyEvent\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\003\022\027\n\n"
@@ -556,10 +556,10 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ " \001(\0132\032.google.protobuf.TimestampB\003\340A\003\022\026\n"
+ "\tdeletable\030\004 \001(\010B\003\340A\003\022\023\n"
+ "\006custom\030\005 \001(\010B\003\340A\003\022U\n"
- + "\017counting_method\030\006 \001(\01627.goo"
- + "gle.analytics.admin.v1alpha.KeyEvent.CountingMethodB\003\340A\002\022Q\n\r"
- + "default_value\030\007 \001(\0132"
- + "5.google.analytics.admin.v1alpha.KeyEvent.DefaultValueB\003\340A\001\032F\n"
+ + "\017counting_method\030\006"
+ + " \001(\01627.google.analytics.admin.v1alpha.KeyEvent.CountingMethodB\003\340A\002\022Q\n\r"
+ + "default_value\030\007"
+ + " \001(\01325.google.analytics.admin.v1alpha.KeyEvent.DefaultValueB\003\340A\001\032F\n"
+ "\014DefaultValue\022\032\n\r"
+ "numeric_value\030\001 \001(\001B\003\340A\002\022\032\n\r"
+ "currency_code\030\002 \001(\tB\003\340A\002\"[\n"
@@ -567,42 +567,43 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\033COUNTING_METHOD_UNSPECIFIED\020\000\022\022\n"
+ "\016ONCE_PER_EVENT\020\001\022\024\n"
+ "\020ONCE_PER_SESSION\020\002:m\352Aj\n"
- + "&analytics"
- + "admin.googleapis.com/KeyEvent\022+properties/{property}/keyEvents/{key_event}*"
+ + "&analyticsadmin.googleapis.com/K"
+ + "eyEvent\022+properties/{property}/keyEvents/{key_event}*"
+ "\tkeyEvents2\010keyEvent\"\240\002\n"
+ "\025GoogleSignalsSettings\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\003\022A\n"
+ "\005state\030\003 \001(\01622.google.analytics.admin.v1alpha.GoogleSignalsState\022J\n"
- + "\007consent\030\004 \001(\01624.google.analyt"
- + "ics.admin.v1alpha.GoogleSignalsConsentB\003\340A\003:e\352Ab\n"
- + "3analyticsadmin.googleapis.com/"
- + "GoogleSignalsSettings\022+properties/{property}/googleSignalsSettings\"\341\003\n"
+ + "\007consent\030\004 \001"
+ + "(\01624.google.analytics.admin.v1alpha.GoogleSignalsConsentB\003\340A\003:e\352Ab\n"
+ + "3analyticsadmin.googleapis.com/GoogleSignalsSettings\022"
+ + "+properties/{property}/googleSignalsSettings\"\341\003\n"
+ "\017CustomDimension\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\010\022\036\n"
+ "\016parameter_name\030\002 \001(\tB\006\340A\002\340A\005\022\031\n"
+ "\014display_name\030\003 \001(\tB\003\340A\002\022\030\n"
+ "\013description\030\004 \001(\tB\003\340A\001\022U\n"
- + "\005scope\030\005"
- + " \001(\0162>.google.analytics.admin.v1alpha.CustomDimension.DimensionScopeB\006\340A\002\340A\005\022)\n"
+ + "\005scope\030\005 \001(\0162>.google.analyti"
+ + "cs.admin.v1alpha.CustomDimension.DimensionScopeB\006\340A\002\340A\005\022)\n"
+ "\034disallow_ads_personalization\030\006 \001(\010B\003\340A\001\"P\n"
+ "\016DimensionScope\022\037\n"
+ "\033DIMENSION_SCOPE_UNSPECIFIED\020\000\022\t\n"
+ "\005EVENT\020\001\022\010\n"
+ "\004USER\020\002\022\010\n"
+ "\004ITEM\020\003:\221\001\352A\215\001\n"
- + "-analyticsadmin.googleapis.com/CustomDimension\0229properties/{property}/"
- + "customDimensions/{custom_dimension}*\020customDimensions2\017customDimension\"\343\006\n"
+ + "-analyticsadmin.googleapis.com/CustomDimension\0229prop"
+ + "erties/{property}/customDimensions/{cust"
+ + "om_dimension}*\020customDimensions2\017customDimension\"\343\006\n"
+ "\014CustomMetric\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\010\022\036\n"
+ "\016parameter_name\030\002 \001(\tB\006\340A\002\340A\005\022\031\n"
+ "\014display_name\030\003 \001(\tB\003\340A\002\022\030\n"
+ "\013description\030\004 \001(\tB\003\340A\001\022[\n"
- + "\020measurement_unit\030\005 \001(\0162<.google.analytics.adm"
- + "in.v1alpha.CustomMetric.MeasurementUnitB\003\340A\002\022O\n"
- + "\005scope\030\006 \001(\01628.google.analytics.a"
- + "dmin.v1alpha.CustomMetric.MetricScopeB\006\340A\002\340A\005\022f\n"
- + "\026restricted_metric_type\030\010 \003(\0162A."
- + "google.analytics.admin.v1alpha.CustomMetric.RestrictedMetricTypeB\003\340A\001\"\267\001\n"
+ + "\020measurement_unit\030\005 \001(\0162<.go"
+ + "ogle.analytics.admin.v1alpha.CustomMetric.MeasurementUnitB\003\340A\002\022O\n"
+ + "\005scope\030\006 \001(\01628."
+ + "google.analytics.admin.v1alpha.CustomMetric.MetricScopeB\006\340A\002\340A\005\022f\n"
+ + "\026restricted_metric_type\030\010 \003(\0162A.google.analytics.admin"
+ + ".v1alpha.CustomMetric.RestrictedMetricTypeB\003\340A\001\"\267\001\n"
+ "\017MeasurementUnit\022 \n"
+ "\034MEASUREMENT_UNIT_UNSPECIFIED\020\000\022\014\n"
+ "\010STANDARD\020\001\022\014\n"
@@ -623,18 +624,18 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\"RESTRICTED_METRIC_TYPE_UNSPECIFIED\020\000\022\r\n"
+ "\tCOST_DATA\020\001\022\020\n"
+ "\014REVENUE_DATA\020\002:\201\001\352A~\n"
- + "*analyticsadmin.googleapi"
- + "s.com/CustomMetric\0223properties/{property}/customMetrics/{custom_metric}*\r"
+ + "*analyticsadmin.googleapis.com/CustomMetric\0223pr"
+ + "operties/{property}/customMetrics/{custom_metric}*\r"
+ "customMetrics2\014customMetric\"\247\006\n"
+ "\020CalculatedMetric\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\010\022\030\n"
+ "\013description\030\002 \001(\tB\003\340A\001\022\031\n"
+ "\014display_name\030\003 \001(\tB\003\340A\002\022!\n"
+ "\024calculated_metric_id\030\004 \001(\tB\003\340A\003\022U\n"
- + "\013metric_unit\030\005"
- + " \001(\0162;.google.analytics.admin.v1alpha.CalculatedMetric.MetricUnitB\003\340A\002\022j\n"
- + "\026restricted_metric_type\030\006 \003(\0162E.google.ana"
- + "lytics.admin.v1alpha.CalculatedMetric.RestrictedMetricTypeB\003\340A\003\022\024\n"
+ + "\013metric_unit\030\005 \001(\0162;.google.ana"
+ + "lytics.admin.v1alpha.CalculatedMetric.MetricUnitB\003\340A\002\022j\n"
+ + "\026restricted_metric_type\030\006 \003(\0162E.google.analytics.admin.v1alpha.C"
+ + "alculatedMetric.RestrictedMetricTypeB\003\340A\003\022\024\n"
+ "\007formula\030\007 \001(\tB\003\340A\002\022%\n"
+ "\030invalid_metric_reference\030\t \001(\010B\003\340A\003\"\255\001\n\n"
+ "MetricUnit\022\033\n"
@@ -654,14 +655,15 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\"RESTRICTED_METRIC_TYPE_UNSPECIFIED\020\000\022\r\n"
+ "\tCOST_DATA\020\001\022\020\n"
+ "\014REVENUE_DATA\020\002:\226\001\352A\222\001\n"
- + ".analyticsadmin.googleapis.com/CalculatedMetric\022;properties/{property}/calc"
- + "ulatedMetrics/{calculated_metric}*\021calculatedMetrics2\020calculatedMetric\"\342\004\n"
+ + ".analyticsadmin.googleapis.com/CalculatedMetric\022;properti"
+ + "es/{property}/calculatedMetrics/{calcula"
+ + "ted_metric}*\021calculatedMetrics2\020calculatedMetric\"\342\004\n"
+ "\025DataRetentionSettings\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\010\022j\n"
- + "\024event_data_retention\030\002 \001(\0162G.google.analy"
- + "tics.admin.v1alpha.DataRetentionSettings.RetentionDurationB\003\340A\002\022i\n"
- + "\023user_data_retention\030\004 \001(\0162G.google.analytics.admin.v1"
- + "alpha.DataRetentionSettings.RetentionDurationB\003\340A\002\022\'\n"
+ + "\024event_data_retention\030\002 \001(\0162G.google.analytics.admin.v1alpha.Dat"
+ + "aRetentionSettings.RetentionDurationB\003\340A\002\022i\n"
+ + "\023user_data_retention\030\004 \001(\0162G.google."
+ + "analytics.admin.v1alpha.DataRetentionSettings.RetentionDurationB\003\340A\002\022\'\n"
+ "\037reset_user_data_on_new_activity\030\003 \001(\010\"\236\001\n"
+ "\021RetentionDuration\022\"\n"
+ "\036RETENTION_DURATION_UNSPECIFIED\020\000\022\016\n\n"
@@ -670,23 +672,22 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\021TWENTY_SIX_MONTHS\020\004\022\027\n"
+ "\023THIRTY_EIGHT_MONTHS\020\005\022\020\n"
+ "\014FIFTY_MONTHS\020\006:\224\001\352A\220\001\n"
- + "3analyticsadmin.googleapis.com/DataRetentionSettings\022+proper"
- + "ties/{property}/dataRetentionSettings*\025d"
- + "ataRetentionSettings2\025dataRetentionSettings\"\374\013\n"
+ + "3analyticsadmin.googleapis.com/DataRetentionSettings\022+properties/{property}/dataRe"
+ + "tentionSettings*\025dataRetentionSettings2\025dataRetentionSettings\"\374\013\n"
+ "\023AttributionSettings\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\003\022\227\001\n"
- + ",acquisition_conversion_event_lookback_window\030\002 \001(\0162\\.google.analytics"
- + ".admin.v1alpha.AttributionSettings.Acqui"
- + "sitionConversionEventLookbackWindowB\003\340A\002\022\213\001\n"
- + "&other_conversion_event_lookback_window\030\003"
- + " \001(\0162V.google.analytics.admin.v1alp"
- + "ha.AttributionSettings.OtherConversionEventLookbackWindowB\003\340A\002\022w\n"
- + "\033reporting_attribution_model\030\004 \001(\0162M.google.analytics.a"
- + "dmin.v1alpha.AttributionSettings.Reporti",
- "ngAttributionModelB\003\340A\002\022\206\001\n"
- + "$ads_web_conversion_data_export_scope\030\005 \001(\0162S.google."
- + "analytics.admin.v1alpha.AttributionSetti"
- + "ngs.AdsWebConversionDataExportScopeB\003\340A\002\"\333\001\n"
+ + ",acquisition_conversion_event_lookback_window\030\002 \001(\0162"
+ + "\\.google.analytics.admin.v1alpha.Attribu"
+ + "tionSettings.AcquisitionConversionEventLookbackWindowB\003\340A\002\022\213\001\n"
+ + "&other_conversion_event_lookback_window\030\003 \001(\0162V.google.ana"
+ + "lytics.admin.v1alpha.AttributionSettings"
+ + ".OtherConversionEventLookbackWindowB\003\340A\002\022w\n"
+ + "\033reporting_attribution_model\030\004 \001(\0162M."
+ + "google.analytics.admin.v1alpha.Attributi",
+ "onSettings.ReportingAttributionModelB\003\340A\002\022\206\001\n"
+ + "$ads_web_conversion_data_export_scope\030\005"
+ + " \001(\0162S.google.analytics.admin.v1alph"
+ + "a.AttributionSettings.AdsWebConversionDataExportScopeB\003\340A\002\"\333\001\n"
+ "(AcquisitionConversionEventLookbackWindow\022<\n"
+ "8ACQUISITION_CONVERSION_EVENT_LOOKBACK_WINDOW_UNSPECIFIED\020\000\0227\n"
+ "3ACQUISITION_CONVERSION_EVENT_LOOKBACK_WINDOW_7_DAYS\020\001\0228\n"
@@ -706,15 +707,16 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\020NOT_SELECTED_YET\020\001\022\035\n"
+ "\031PAID_AND_ORGANIC_CHANNELS\020\002\022\030\n"
+ "\024GOOGLE_PAID_CHANNELS\020\003:a\352A^\n"
- + "1analyticsadmin.googleapis.com/Attr"
- + "ibutionSettings\022)properties/{property}/attributionSettings\"\361\001\n\r"
+ + "1analyticsadmin.g"
+ + "oogleapis.com/AttributionSettings\022)properties/{property}/attributionSettings\"\361\001\n"
+ + "\r"
+ "AccessBinding\022\016\n"
+ "\004user\030\002 \001(\tH\000\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\003\022\r\n"
+ "\005roles\030\003 \003(\t:\234\001\352A\230\001\n"
- + "+analyticsadmin.googleapis.com/AccessBinding\0222accounts/{account}/a"
- + "ccessBindings/{access_binding}\0225properti"
- + "es/{property}/accessBindings/{access_binding}B\017\n\r"
+ + "+analyticsadmin.googleapis.com/AccessBinding\0222ac"
+ + "counts/{account}/accessBindings/{access_"
+ + "binding}\0225properties/{property}/accessBindings/{access_binding}B\017\n\r"
+ "access_target\"\252\003\n"
+ "\014BigQueryLink\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\003\022\024\n"
@@ -729,8 +731,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\017excluded_events\030\010 \003(\t\022 \n"
+ "\020dataset_location\030\n"
+ " \001(\tB\006\340A\005\340A\002:d\352Aa\n"
- + "*analyticsadmin.googleapis.com/BigQueryLink\0223"
- + "properties/{property}/bigQueryLinks/{bigquery_link}\"\363\003\n"
+ + "*analyticsadmin.googleapis."
+ + "com/BigQueryLink\0223properties/{property}/bigQueryLinks/{bigquery_link}\"\363\003\n"
+ "\033EnhancedMeasurementSettings\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\003\022\026\n"
+ "\016stream_enabled\030\002 \001(\010\022\027\n"
@@ -744,35 +746,36 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\026search_query_parameter\030\n"
+ " \001(\tB\003\340A\002\022\033\n"
+ "\023uri_query_parameter\030\013 \001(\t:\214\001\352A\210\001\n"
- + "9analyticsadmin.googleapis.com/EnhancedMeasurementSettings\022Kpr"
- + "operties/{property}/dataStreams/{data_stream}/enhancedMeasurementSettings\"\225\002\n"
+ + "9analyticsadmin.googleapis.com/EnhancedMeasu"
+ + "rementSettings\022Kproperties/{property}/da"
+ + "taStreams/{data_stream}/enhancedMeasurementSettings\"\225\002\n"
+ "\025DataRedactionSettings\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\003\022\037\n"
+ "\027email_redaction_enabled\030\002 \001(\010\022)\n"
+ "!query_parameter_redaction_enabled\030\003 \001(\010\022\034\n"
+ "\024query_parameter_keys\030\004 \003(\t:\177\352A|\n"
- + "3analyticsadmin.googleapis.com/DataRedactionSettin"
- + "gs\022Eproperties/{property}/dataStreams/{data_stream}/dataRedactionSettings\"\240\001\n"
+ + "3analyticsadmin.googleapis.com/DataRedactionSettings\022Eproperties/{proper"
+ + "ty}/dataStreams/{data_stream}/dataRedactionSettings\"\240\001\n"
+ "\013AdSenseLink\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\003\022\033\n"
+ "\016ad_client_code\030\002 \001(\tB\003\340A\005:a\352A^\n"
- + ")analyticsadmin.g"
- + "oogleapis.com/AdSenseLink\0221properties/{property}/adSenseLinks/{adsense_link}\"\216\002\n"
+ + ")analyticsadmin.googleapis.com/AdSenseL"
+ + "ink\0221properties/{property}/adSenseLinks/{adsense_link}\"\216\002\n"
+ "\030RollupPropertySourceLink\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\003\022\034\n"
+ "\017source_property\030\002 \001(\tB\003\340A\005:\300\001\352A\274\001\n"
- + "6analyticsadmin.googleapis.com/RollupPropertySourceLink\022Mproperties/{property}"
- + "/rollupPropertySourceLinks/{rollup_prope"
- + "rty_source_link}*\031rollupPropertySourceLinks2\030rollupPropertySourceLink\"\366\005\n"
+ + "6analyticsadmin.googleapis.com/RollupPropertySourceLink\022Mpro"
+ + "perties/{property}/rollupPropertySourceLinks/{rollup_property_source_link}*\031roll"
+ + "upPropertySourceLinks2\030rollupPropertySourceLink\"\366\005\n"
+ "\027ReportingDataAnnotation\022,\n"
+ "\017annotation_date\030\004 \001(\0132\021.google.type.DateH\000\022b\n"
- + "\025annotation_date_range\030\005 \001(\0132A.google.analytics.admin."
- + "v1alpha.ReportingDataAnnotation.DateRangeH\000\022\024\n"
+ + "\025annotation_date_range\030\005 \001(\0132A.googl"
+ + "e.analytics.admin.v1alpha.ReportingDataAnnotation.DateRangeH\000\022\024\n"
+ "\004name\030\001 \001(\tB\006\340A\010\340A\002\022\022\n"
+ "\005title\030\002 \001(\tB\003\340A\002\022\030\n"
+ "\013description\030\003 \001(\tB\003\340A\001\022Q\n"
- + "\005color\030\006"
- + " \001(\0162=.google.analytics.admin.v1alpha.ReportingDataAnnotation.ColorB\003\340A\002\022\035\n"
+ + "\005color\030\006 \001(\0162=.google.analyt"
+ + "ics.admin.v1alpha.ReportingDataAnnotation.ColorB\003\340A\002\022\035\n"
+ "\020system_generated\030\007 \001(\010B\003\340A\003\032a\n"
+ "\tDateRange\022*\n\n"
+ "start_date\030\001 \001(\0132\021.google.type.DateB\003\340A\002\022(\n"
@@ -786,48 +789,47 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\003RED\020\005\022\010\n"
+ "\004CYAN\020\006\022\n\n"
+ "\006ORANGE\020\007:\272\001\352A\266\001\n"
- + "5analyticsadmin.googleapis.com/ReportingDataAnnotation\022Jproperties/{property}/rep"
- + "ortingDataAnnotations/{reporting_data_an"
- + "notation}*\030reportingDataAnnotations2\027reportingDataAnnotationB\010\n"
+ + "5analyticsadmin.googleapis.com/ReportingDataAnnotation\022Jpropert"
+ + "ies/{property}/reportingDataAnnotations/{reporting_data_annotation}*\030reportingDa"
+ + "taAnnotations2\027reportingDataAnnotationB\010\n"
+ "\006target\"\322\003\n"
+ "\025SubpropertySyncConfig\022\024\n"
+ "\004name\030\001 \001(\tB\006\340A\010\340A\003\022!\n"
+ "\021apply_to_property\030\002 \001(\tB\006\340A\005\340A\003\022}\n"
- + "%custom_dimension_and_metric_sync_mode\030\003 \001(\016"
- + "2I.google.analytics.admin.v1alpha.Subpro"
- + "pertySyncConfig.SynchronizationModeB\003\340A\002\"N\n"
+ + "%custom_dimension_and_metric_sync_mode\030\003 \001(\0162I.google.analytics.ad"
+ + "min.v1alpha.SubpropertySyncConfig.SynchronizationModeB\003\340A\002\"N\n"
+ "\023SynchronizationMode\022$\n"
+ " SYNCHRONIZATION_MODE_UNSPECIFIED\020\000\022\010\n"
+ "\004NONE\020\001\022\007\n"
+ "\003ALL\020\002:\260\001\352A\254\001\n"
- + "3analyticsadmin.googleapis.com/SubpropertySyncConfig\022Fproperties/{proper"
- + "ty}/subpropertySyncConfigs/{subproperty_"
- + "sync_config}*\026subpropertySyncConfigs2\025subpropertySyncConfig\"\257\003\n"
+ + "3analyticsadmin.googleapis.com/SubpropertySyncConfig\022F"
+ + "properties/{property}/subpropertySyncConfigs/{subproperty_sync_config}*\026subprope"
+ + "rtySyncConfigs2\025subpropertySyncConfig\"\257\003\n"
+ "\031ReportingIdentitySettings\022\024\n"
+ "\004name\030\001 \001(\tB\006\340A\010\340A\003\022g\n"
- + "\022reporting_identity\030\002 \001(\0162K.google.analytics.a"
- + "dmin.v1alpha.ReportingIdentitySettings.ReportingIdentity\"l\n"
+ + "\022reporting_identity\030\002 \001(\0162K."
+ + "google.analytics.admin.v1alpha.ReportingIdentitySettings.ReportingIdentity\"l\n"
+ "\021ReportingIdentity\022*\n"
+ "&IDENTITY_BLENDING_STRATEGY_UNSPECIFIED\020\000\022\013\n"
+ "\007BLENDED\020\001\022\014\n"
+ "\010OBSERVED\020\002\022\020\n"
+ "\014DEVICE_BASED\020\003:\244\001\352A\240\001\n"
- + "7analyticsadmin.googleapis.com/ReportingIdentitySettings\022/properti"
- + "es/{property}/reportingIdentitySettings*"
- + "\031reportingIdentitySettings2\031reportingIdentitySettings\"\301\002\n"
+ + "7analyticsadmin.googleapis.com/ReportingIdentity"
+ + "Settings\022/properties/{property}/reportin"
+ + "gIdentitySettings*\031reportingIdentitySettings2\031reportingIdentitySettings\"\301\002\n"
+ "\030UserProvidedDataSettings\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\010\0222\n"
+ "%user_provided_data_collection_enabled\030\002 \001(\010B\003\340A\001\022;\n"
+ ".automatically_detected_data_collection_enabled\030\003"
+ " \001(\010B\003\340A\001:\240\001\352A\234\001\n"
- + "6analyticsadmin.googleapis.com/UserProvidedDataSettings\022.p"
- + "roperties/{property}/userProvidedDataSet"
- + "tings*\030userProvidedDataSettings2\030userProvidedDataSettings*\252\004\n"
+ + "6analyticsadmin.googleapis.com/UserProvidedDataSettings\022.properties/{property}/u"
+ + "serProvidedDataSettings*\030userProvidedDataSettings2\030userProvidedDataSettings*\252\004\n"
+ "\020IndustryCategory\022!\n"
+ "\035INDUSTRY_CATEGORY_UNSPECIFIED\020\000\022\016\n\n"
+ "AUTOMOTIVE\020\001\022#\n"
+ "\037BUSINESS_AND_INDUSTRIAL_MARKETS\020\002\022\013\n"
- + "\007FINANCE\020\003\022\016\n\n"
+ + "\007FINANCE\020\003\022\016\n"
+ + "\n"
+ "HEALTHCARE\020\004\022\016\n\n"
+ "TECHNOLOGY\020\005\022\n\n"
+ "\006TRAVEL\020\006\022\t\n"
@@ -870,7 +872,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\031ChangeHistoryResourceType\022,\n"
+ "(CHANGE_HISTORY_RESOURCE_TYPE_UNSPECIFIED\020\000\022\013\n"
+ "\007ACCOUNT\020\001\022\014\n"
- + "\010PROPERTY\020\002\022\021\n\r"
+ + "\010PROPERTY\020\002\022\021\n"
+ + "\r"
+ "FIREBASE_LINK\020\006\022\023\n"
+ "\017GOOGLE_ADS_LINK\020\007\022\033\n"
+ "\027GOOGLE_SIGNALS_SETTINGS\020\010\022\024\n"
@@ -931,10 +934,10 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\020COARSE_VALUE_LOW\020\001\022\027\n"
+ "\023COARSE_VALUE_MEDIUM\020\002\022\025\n"
+ "\021COARSE_VALUE_HIGH\020\003B\313\001\n"
- + "\"com.google.analytics.admin.v1alphaB\016ResourcesPro"
- + "toP\001Z>cloud.google.com/go/analytics/admin/apiv1alpha/adminpb;adminpb\352AR\n"
- + "2marketingplatformadmin.googleapis.com/Organizat"
- + "ion\022\034organizations/{organization}b\006proto3"
+ + "\"com.google.analytics.admin.v1alphaB\016ResourcesProtoP\001Z>cloud.google.com"
+ + "/go/analytics/admin/apiv1alpha/adminpb;adminpb\352AR\n"
+ + "2marketingplatformadmin.googleapis.com/Organization\022\034organizations/{or"
+ + "ganization}b\006proto3"
};
descriptor =
com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom(
@@ -1081,7 +1084,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
new com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_google_analytics_admin_v1alpha_PropertySummary_descriptor,
new java.lang.String[] {
- "Property", "DisplayName", "PropertyType", "Parent",
+ "Property", "DisplayName", "PropertyType", "Parent", "CanEdit",
});
internal_static_google_analytics_admin_v1alpha_MeasurementProtocolSecret_descriptor =
getDescriptor().getMessageType(9);
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateReportingIdentitySettingsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateReportingIdentitySettingsRequest.java
new file mode 100644
index 000000000000..e4c59c5baa04
--- /dev/null
+++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/UpdateReportingIdentitySettingsRequest.java
@@ -0,0 +1,1109 @@
+/*
+ * Copyright 2026 Google LLC
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+// Generated by the protocol buffer compiler. DO NOT EDIT!
+// NO CHECKED-IN PROTOBUF GENCODE
+// source: google/analytics/admin/v1alpha/analytics_admin.proto
+// Protobuf Java Version: 4.33.2
+
+package com.google.analytics.admin.v1alpha;
+
+/**
+ *
+ *
+ * + * Request message for UpdateReportingIdentitySettings RPC. + *+ * + * Protobuf type {@code google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest} + */ +@com.google.protobuf.Generated +public final class UpdateReportingIdentitySettingsRequest + extends com.google.protobuf.GeneratedMessage + implements + // @@protoc_insertion_point(message_implements:google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest) + UpdateReportingIdentitySettingsRequestOrBuilder { + private static final long serialVersionUID = 0L; + + static { + com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( + com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, + /* major= */ 4, + /* minor= */ 33, + /* patch= */ 2, + /* suffix= */ "", + "UpdateReportingIdentitySettingsRequest"); + } + + // Use UpdateReportingIdentitySettingsRequest.newBuilder() to construct. + private UpdateReportingIdentitySettingsRequest( + com.google.protobuf.GeneratedMessage.Builder> builder) { + super(builder); + } + + private UpdateReportingIdentitySettingsRequest() {} + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.google.analytics.admin.v1alpha.AnalyticsAdminProto + .internal_static_google_analytics_admin_v1alpha_UpdateReportingIdentitySettingsRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessage.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.analytics.admin.v1alpha.AnalyticsAdminProto + .internal_static_google_analytics_admin_v1alpha_UpdateReportingIdentitySettingsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest.class, + com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest.Builder + .class); + } + + private int bitField0_; + public static final int REPORTING_IDENTITY_SETTINGS_FIELD_NUMBER = 1; + private com.google.analytics.admin.v1alpha.ReportingIdentitySettings reportingIdentitySettings_; + + /** + * + * + *
+ * Required. The reporting identity settings to update. + * The settings' `name` field is used to identify the settings. + *+ * + *
+ * .google.analytics.admin.v1alpha.ReportingIdentitySettings reporting_identity_settings = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ *
+ * @return Whether the reportingIdentitySettings field is set.
+ */
+ @java.lang.Override
+ public boolean hasReportingIdentitySettings() {
+ return ((bitField0_ & 0x00000001) != 0);
+ }
+
+ /**
+ *
+ *
+ * + * Required. The reporting identity settings to update. + * The settings' `name` field is used to identify the settings. + *+ * + *
+ * .google.analytics.admin.v1alpha.ReportingIdentitySettings reporting_identity_settings = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ *
+ * @return The reportingIdentitySettings.
+ */
+ @java.lang.Override
+ public com.google.analytics.admin.v1alpha.ReportingIdentitySettings
+ getReportingIdentitySettings() {
+ return reportingIdentitySettings_ == null
+ ? com.google.analytics.admin.v1alpha.ReportingIdentitySettings.getDefaultInstance()
+ : reportingIdentitySettings_;
+ }
+
+ /**
+ *
+ *
+ * + * Required. The reporting identity settings to update. + * The settings' `name` field is used to identify the settings. + *+ * + *
+ * .google.analytics.admin.v1alpha.ReportingIdentitySettings reporting_identity_settings = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ */
+ @java.lang.Override
+ public com.google.analytics.admin.v1alpha.ReportingIdentitySettingsOrBuilder
+ getReportingIdentitySettingsOrBuilder() {
+ return reportingIdentitySettings_ == null
+ ? com.google.analytics.admin.v1alpha.ReportingIdentitySettings.getDefaultInstance()
+ : reportingIdentitySettings_;
+ }
+
+ public static final int UPDATE_MASK_FIELD_NUMBER = 2;
+ private com.google.protobuf.FieldMask updateMask_;
+
+ /**
+ *
+ *
+ * + * Optional. The list of fields to be updated. Field names must be in snake + * case (for example, "field_to_update"). Omitted fields will not be updated. + * To replace the entire entity, use one path with the string "*" to match all + * fields. If omitted, the service will treat it as an implied field mask + * equivalent to all fields that are populated. + *+ * + *
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ *
+ * @return Whether the updateMask field is set.
+ */
+ @java.lang.Override
+ public boolean hasUpdateMask() {
+ return ((bitField0_ & 0x00000002) != 0);
+ }
+
+ /**
+ *
+ *
+ * + * Optional. The list of fields to be updated. Field names must be in snake + * case (for example, "field_to_update"). Omitted fields will not be updated. + * To replace the entire entity, use one path with the string "*" to match all + * fields. If omitted, the service will treat it as an implied field mask + * equivalent to all fields that are populated. + *+ * + *
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ *
+ * @return The updateMask.
+ */
+ @java.lang.Override
+ public com.google.protobuf.FieldMask getUpdateMask() {
+ return updateMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : updateMask_;
+ }
+
+ /**
+ *
+ *
+ * + * Optional. The list of fields to be updated. Field names must be in snake + * case (for example, "field_to_update"). Omitted fields will not be updated. + * To replace the entire entity, use one path with the string "*" to match all + * fields. If omitted, the service will treat it as an implied field mask + * equivalent to all fields that are populated. + *+ * + *
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ @java.lang.Override
+ public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() {
+ return updateMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : updateMask_;
+ }
+
+ private byte memoizedIsInitialized = -1;
+
+ @java.lang.Override
+ public final boolean isInitialized() {
+ byte isInitialized = memoizedIsInitialized;
+ if (isInitialized == 1) return true;
+ if (isInitialized == 0) return false;
+
+ memoizedIsInitialized = 1;
+ return true;
+ }
+
+ @java.lang.Override
+ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
+ if (((bitField0_ & 0x00000001) != 0)) {
+ output.writeMessage(1, getReportingIdentitySettings());
+ }
+ if (((bitField0_ & 0x00000002) != 0)) {
+ output.writeMessage(2, getUpdateMask());
+ }
+ getUnknownFields().writeTo(output);
+ }
+
+ @java.lang.Override
+ public int getSerializedSize() {
+ int size = memoizedSize;
+ if (size != -1) return size;
+
+ size = 0;
+ if (((bitField0_ & 0x00000001) != 0)) {
+ size +=
+ com.google.protobuf.CodedOutputStream.computeMessageSize(
+ 1, getReportingIdentitySettings());
+ }
+ if (((bitField0_ & 0x00000002) != 0)) {
+ size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getUpdateMask());
+ }
+ size += getUnknownFields().getSerializedSize();
+ memoizedSize = size;
+ return size;
+ }
+
+ @java.lang.Override
+ public boolean equals(final java.lang.Object obj) {
+ if (obj == this) {
+ return true;
+ }
+ if (!(obj
+ instanceof com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest)) {
+ return super.equals(obj);
+ }
+ com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest other =
+ (com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest) obj;
+
+ if (hasReportingIdentitySettings() != other.hasReportingIdentitySettings()) return false;
+ if (hasReportingIdentitySettings()) {
+ if (!getReportingIdentitySettings().equals(other.getReportingIdentitySettings()))
+ return false;
+ }
+ if (hasUpdateMask() != other.hasUpdateMask()) return false;
+ if (hasUpdateMask()) {
+ if (!getUpdateMask().equals(other.getUpdateMask())) return false;
+ }
+ if (!getUnknownFields().equals(other.getUnknownFields())) return false;
+ return true;
+ }
+
+ @java.lang.Override
+ public int hashCode() {
+ if (memoizedHashCode != 0) {
+ return memoizedHashCode;
+ }
+ int hash = 41;
+ hash = (19 * hash) + getDescriptor().hashCode();
+ if (hasReportingIdentitySettings()) {
+ hash = (37 * hash) + REPORTING_IDENTITY_SETTINGS_FIELD_NUMBER;
+ hash = (53 * hash) + getReportingIdentitySettings().hashCode();
+ }
+ if (hasUpdateMask()) {
+ hash = (37 * hash) + UPDATE_MASK_FIELD_NUMBER;
+ hash = (53 * hash) + getUpdateMask().hashCode();
+ }
+ hash = (29 * hash) + getUnknownFields().hashCode();
+ memoizedHashCode = hash;
+ return hash;
+ }
+
+ public static com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest parseFrom(
+ java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
+ return PARSER.parseFrom(data);
+ }
+
+ public static com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest parseFrom(
+ java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+ throws com.google.protobuf.InvalidProtocolBufferException {
+ return PARSER.parseFrom(data, extensionRegistry);
+ }
+
+ public static com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest parseFrom(
+ com.google.protobuf.ByteString data)
+ throws com.google.protobuf.InvalidProtocolBufferException {
+ return PARSER.parseFrom(data);
+ }
+
+ public static com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest parseFrom(
+ com.google.protobuf.ByteString data,
+ com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+ throws com.google.protobuf.InvalidProtocolBufferException {
+ return PARSER.parseFrom(data, extensionRegistry);
+ }
+
+ public static com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest parseFrom(
+ byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
+ return PARSER.parseFrom(data);
+ }
+
+ public static com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest parseFrom(
+ byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+ throws com.google.protobuf.InvalidProtocolBufferException {
+ return PARSER.parseFrom(data, extensionRegistry);
+ }
+
+ public static com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest parseFrom(
+ java.io.InputStream input) throws java.io.IOException {
+ return com.google.protobuf.GeneratedMessage.parseWithIOException(PARSER, input);
+ }
+
+ public static com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest parseFrom(
+ java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+ throws java.io.IOException {
+ return com.google.protobuf.GeneratedMessage.parseWithIOException(
+ PARSER, input, extensionRegistry);
+ }
+
+ public static com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest
+ parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException {
+ return com.google.protobuf.GeneratedMessage.parseDelimitedWithIOException(PARSER, input);
+ }
+
+ public static com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest
+ parseDelimitedFrom(
+ java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+ throws java.io.IOException {
+ return com.google.protobuf.GeneratedMessage.parseDelimitedWithIOException(
+ PARSER, input, extensionRegistry);
+ }
+
+ public static com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest parseFrom(
+ com.google.protobuf.CodedInputStream input) throws java.io.IOException {
+ return com.google.protobuf.GeneratedMessage.parseWithIOException(PARSER, input);
+ }
+
+ public static com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest parseFrom(
+ com.google.protobuf.CodedInputStream input,
+ com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+ throws java.io.IOException {
+ return com.google.protobuf.GeneratedMessage.parseWithIOException(
+ PARSER, input, extensionRegistry);
+ }
+
+ @java.lang.Override
+ public Builder newBuilderForType() {
+ return newBuilder();
+ }
+
+ public static Builder newBuilder() {
+ return DEFAULT_INSTANCE.toBuilder();
+ }
+
+ public static Builder newBuilder(
+ com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest prototype) {
+ return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
+ }
+
+ @java.lang.Override
+ public Builder toBuilder() {
+ return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
+ }
+
+ @java.lang.Override
+ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessage.BuilderParent parent) {
+ Builder builder = new Builder(parent);
+ return builder;
+ }
+
+ /**
+ *
+ *
+ * + * Request message for UpdateReportingIdentitySettings RPC. + *+ * + * Protobuf type {@code google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest} + */ + public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder
+ * Required. The reporting identity settings to update. + * The settings' `name` field is used to identify the settings. + *+ * + *
+ * .google.analytics.admin.v1alpha.ReportingIdentitySettings reporting_identity_settings = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ *
+ * @return Whether the reportingIdentitySettings field is set.
+ */
+ public boolean hasReportingIdentitySettings() {
+ return ((bitField0_ & 0x00000001) != 0);
+ }
+
+ /**
+ *
+ *
+ * + * Required. The reporting identity settings to update. + * The settings' `name` field is used to identify the settings. + *+ * + *
+ * .google.analytics.admin.v1alpha.ReportingIdentitySettings reporting_identity_settings = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ *
+ * @return The reportingIdentitySettings.
+ */
+ public com.google.analytics.admin.v1alpha.ReportingIdentitySettings
+ getReportingIdentitySettings() {
+ if (reportingIdentitySettingsBuilder_ == null) {
+ return reportingIdentitySettings_ == null
+ ? com.google.analytics.admin.v1alpha.ReportingIdentitySettings.getDefaultInstance()
+ : reportingIdentitySettings_;
+ } else {
+ return reportingIdentitySettingsBuilder_.getMessage();
+ }
+ }
+
+ /**
+ *
+ *
+ * + * Required. The reporting identity settings to update. + * The settings' `name` field is used to identify the settings. + *+ * + *
+ * .google.analytics.admin.v1alpha.ReportingIdentitySettings reporting_identity_settings = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ */
+ public Builder setReportingIdentitySettings(
+ com.google.analytics.admin.v1alpha.ReportingIdentitySettings value) {
+ if (reportingIdentitySettingsBuilder_ == null) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ reportingIdentitySettings_ = value;
+ } else {
+ reportingIdentitySettingsBuilder_.setMessage(value);
+ }
+ bitField0_ |= 0x00000001;
+ onChanged();
+ return this;
+ }
+
+ /**
+ *
+ *
+ * + * Required. The reporting identity settings to update. + * The settings' `name` field is used to identify the settings. + *+ * + *
+ * .google.analytics.admin.v1alpha.ReportingIdentitySettings reporting_identity_settings = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ */
+ public Builder setReportingIdentitySettings(
+ com.google.analytics.admin.v1alpha.ReportingIdentitySettings.Builder builderForValue) {
+ if (reportingIdentitySettingsBuilder_ == null) {
+ reportingIdentitySettings_ = builderForValue.build();
+ } else {
+ reportingIdentitySettingsBuilder_.setMessage(builderForValue.build());
+ }
+ bitField0_ |= 0x00000001;
+ onChanged();
+ return this;
+ }
+
+ /**
+ *
+ *
+ * + * Required. The reporting identity settings to update. + * The settings' `name` field is used to identify the settings. + *+ * + *
+ * .google.analytics.admin.v1alpha.ReportingIdentitySettings reporting_identity_settings = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ */
+ public Builder mergeReportingIdentitySettings(
+ com.google.analytics.admin.v1alpha.ReportingIdentitySettings value) {
+ if (reportingIdentitySettingsBuilder_ == null) {
+ if (((bitField0_ & 0x00000001) != 0)
+ && reportingIdentitySettings_ != null
+ && reportingIdentitySettings_
+ != com.google.analytics.admin.v1alpha.ReportingIdentitySettings
+ .getDefaultInstance()) {
+ getReportingIdentitySettingsBuilder().mergeFrom(value);
+ } else {
+ reportingIdentitySettings_ = value;
+ }
+ } else {
+ reportingIdentitySettingsBuilder_.mergeFrom(value);
+ }
+ if (reportingIdentitySettings_ != null) {
+ bitField0_ |= 0x00000001;
+ onChanged();
+ }
+ return this;
+ }
+
+ /**
+ *
+ *
+ * + * Required. The reporting identity settings to update. + * The settings' `name` field is used to identify the settings. + *+ * + *
+ * .google.analytics.admin.v1alpha.ReportingIdentitySettings reporting_identity_settings = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ */
+ public Builder clearReportingIdentitySettings() {
+ bitField0_ = (bitField0_ & ~0x00000001);
+ reportingIdentitySettings_ = null;
+ if (reportingIdentitySettingsBuilder_ != null) {
+ reportingIdentitySettingsBuilder_.dispose();
+ reportingIdentitySettingsBuilder_ = null;
+ }
+ onChanged();
+ return this;
+ }
+
+ /**
+ *
+ *
+ * + * Required. The reporting identity settings to update. + * The settings' `name` field is used to identify the settings. + *+ * + *
+ * .google.analytics.admin.v1alpha.ReportingIdentitySettings reporting_identity_settings = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ */
+ public com.google.analytics.admin.v1alpha.ReportingIdentitySettings.Builder
+ getReportingIdentitySettingsBuilder() {
+ bitField0_ |= 0x00000001;
+ onChanged();
+ return internalGetReportingIdentitySettingsFieldBuilder().getBuilder();
+ }
+
+ /**
+ *
+ *
+ * + * Required. The reporting identity settings to update. + * The settings' `name` field is used to identify the settings. + *+ * + *
+ * .google.analytics.admin.v1alpha.ReportingIdentitySettings reporting_identity_settings = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ */
+ public com.google.analytics.admin.v1alpha.ReportingIdentitySettingsOrBuilder
+ getReportingIdentitySettingsOrBuilder() {
+ if (reportingIdentitySettingsBuilder_ != null) {
+ return reportingIdentitySettingsBuilder_.getMessageOrBuilder();
+ } else {
+ return reportingIdentitySettings_ == null
+ ? com.google.analytics.admin.v1alpha.ReportingIdentitySettings.getDefaultInstance()
+ : reportingIdentitySettings_;
+ }
+ }
+
+ /**
+ *
+ *
+ * + * Required. The reporting identity settings to update. + * The settings' `name` field is used to identify the settings. + *+ * + *
+ * .google.analytics.admin.v1alpha.ReportingIdentitySettings reporting_identity_settings = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ */
+ private com.google.protobuf.SingleFieldBuilder<
+ com.google.analytics.admin.v1alpha.ReportingIdentitySettings,
+ com.google.analytics.admin.v1alpha.ReportingIdentitySettings.Builder,
+ com.google.analytics.admin.v1alpha.ReportingIdentitySettingsOrBuilder>
+ internalGetReportingIdentitySettingsFieldBuilder() {
+ if (reportingIdentitySettingsBuilder_ == null) {
+ reportingIdentitySettingsBuilder_ =
+ new com.google.protobuf.SingleFieldBuilder<
+ com.google.analytics.admin.v1alpha.ReportingIdentitySettings,
+ com.google.analytics.admin.v1alpha.ReportingIdentitySettings.Builder,
+ com.google.analytics.admin.v1alpha.ReportingIdentitySettingsOrBuilder>(
+ getReportingIdentitySettings(), getParentForChildren(), isClean());
+ reportingIdentitySettings_ = null;
+ }
+ return reportingIdentitySettingsBuilder_;
+ }
+
+ private com.google.protobuf.FieldMask updateMask_;
+ private com.google.protobuf.SingleFieldBuilder<
+ com.google.protobuf.FieldMask,
+ com.google.protobuf.FieldMask.Builder,
+ com.google.protobuf.FieldMaskOrBuilder>
+ updateMaskBuilder_;
+
+ /**
+ *
+ *
+ * + * Optional. The list of fields to be updated. Field names must be in snake + * case (for example, "field_to_update"). Omitted fields will not be updated. + * To replace the entire entity, use one path with the string "*" to match all + * fields. If omitted, the service will treat it as an implied field mask + * equivalent to all fields that are populated. + *+ * + *
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ *
+ * @return Whether the updateMask field is set.
+ */
+ public boolean hasUpdateMask() {
+ return ((bitField0_ & 0x00000002) != 0);
+ }
+
+ /**
+ *
+ *
+ * + * Optional. The list of fields to be updated. Field names must be in snake + * case (for example, "field_to_update"). Omitted fields will not be updated. + * To replace the entire entity, use one path with the string "*" to match all + * fields. If omitted, the service will treat it as an implied field mask + * equivalent to all fields that are populated. + *+ * + *
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ *
+ * @return The updateMask.
+ */
+ public com.google.protobuf.FieldMask getUpdateMask() {
+ if (updateMaskBuilder_ == null) {
+ return updateMask_ == null
+ ? com.google.protobuf.FieldMask.getDefaultInstance()
+ : updateMask_;
+ } else {
+ return updateMaskBuilder_.getMessage();
+ }
+ }
+
+ /**
+ *
+ *
+ * + * Optional. The list of fields to be updated. Field names must be in snake + * case (for example, "field_to_update"). Omitted fields will not be updated. + * To replace the entire entity, use one path with the string "*" to match all + * fields. If omitted, the service will treat it as an implied field mask + * equivalent to all fields that are populated. + *+ * + *
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ public Builder setUpdateMask(com.google.protobuf.FieldMask value) {
+ if (updateMaskBuilder_ == null) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ updateMask_ = value;
+ } else {
+ updateMaskBuilder_.setMessage(value);
+ }
+ bitField0_ |= 0x00000002;
+ onChanged();
+ return this;
+ }
+
+ /**
+ *
+ *
+ * + * Optional. The list of fields to be updated. Field names must be in snake + * case (for example, "field_to_update"). Omitted fields will not be updated. + * To replace the entire entity, use one path with the string "*" to match all + * fields. If omitted, the service will treat it as an implied field mask + * equivalent to all fields that are populated. + *+ * + *
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ public Builder setUpdateMask(com.google.protobuf.FieldMask.Builder builderForValue) {
+ if (updateMaskBuilder_ == null) {
+ updateMask_ = builderForValue.build();
+ } else {
+ updateMaskBuilder_.setMessage(builderForValue.build());
+ }
+ bitField0_ |= 0x00000002;
+ onChanged();
+ return this;
+ }
+
+ /**
+ *
+ *
+ * + * Optional. The list of fields to be updated. Field names must be in snake + * case (for example, "field_to_update"). Omitted fields will not be updated. + * To replace the entire entity, use one path with the string "*" to match all + * fields. If omitted, the service will treat it as an implied field mask + * equivalent to all fields that are populated. + *+ * + *
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ public Builder mergeUpdateMask(com.google.protobuf.FieldMask value) {
+ if (updateMaskBuilder_ == null) {
+ if (((bitField0_ & 0x00000002) != 0)
+ && updateMask_ != null
+ && updateMask_ != com.google.protobuf.FieldMask.getDefaultInstance()) {
+ getUpdateMaskBuilder().mergeFrom(value);
+ } else {
+ updateMask_ = value;
+ }
+ } else {
+ updateMaskBuilder_.mergeFrom(value);
+ }
+ if (updateMask_ != null) {
+ bitField0_ |= 0x00000002;
+ onChanged();
+ }
+ return this;
+ }
+
+ /**
+ *
+ *
+ * + * Optional. The list of fields to be updated. Field names must be in snake + * case (for example, "field_to_update"). Omitted fields will not be updated. + * To replace the entire entity, use one path with the string "*" to match all + * fields. If omitted, the service will treat it as an implied field mask + * equivalent to all fields that are populated. + *+ * + *
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ public Builder clearUpdateMask() {
+ bitField0_ = (bitField0_ & ~0x00000002);
+ updateMask_ = null;
+ if (updateMaskBuilder_ != null) {
+ updateMaskBuilder_.dispose();
+ updateMaskBuilder_ = null;
+ }
+ onChanged();
+ return this;
+ }
+
+ /**
+ *
+ *
+ * + * Optional. The list of fields to be updated. Field names must be in snake + * case (for example, "field_to_update"). Omitted fields will not be updated. + * To replace the entire entity, use one path with the string "*" to match all + * fields. If omitted, the service will treat it as an implied field mask + * equivalent to all fields that are populated. + *+ * + *
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ public com.google.protobuf.FieldMask.Builder getUpdateMaskBuilder() {
+ bitField0_ |= 0x00000002;
+ onChanged();
+ return internalGetUpdateMaskFieldBuilder().getBuilder();
+ }
+
+ /**
+ *
+ *
+ * + * Optional. The list of fields to be updated. Field names must be in snake + * case (for example, "field_to_update"). Omitted fields will not be updated. + * To replace the entire entity, use one path with the string "*" to match all + * fields. If omitted, the service will treat it as an implied field mask + * equivalent to all fields that are populated. + *+ * + *
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() {
+ if (updateMaskBuilder_ != null) {
+ return updateMaskBuilder_.getMessageOrBuilder();
+ } else {
+ return updateMask_ == null
+ ? com.google.protobuf.FieldMask.getDefaultInstance()
+ : updateMask_;
+ }
+ }
+
+ /**
+ *
+ *
+ * + * Optional. The list of fields to be updated. Field names must be in snake + * case (for example, "field_to_update"). Omitted fields will not be updated. + * To replace the entire entity, use one path with the string "*" to match all + * fields. If omitted, the service will treat it as an implied field mask + * equivalent to all fields that are populated. + *+ * + *
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ private com.google.protobuf.SingleFieldBuilder<
+ com.google.protobuf.FieldMask,
+ com.google.protobuf.FieldMask.Builder,
+ com.google.protobuf.FieldMaskOrBuilder>
+ internalGetUpdateMaskFieldBuilder() {
+ if (updateMaskBuilder_ == null) {
+ updateMaskBuilder_ =
+ new com.google.protobuf.SingleFieldBuilder<
+ com.google.protobuf.FieldMask,
+ com.google.protobuf.FieldMask.Builder,
+ com.google.protobuf.FieldMaskOrBuilder>(
+ getUpdateMask(), getParentForChildren(), isClean());
+ updateMask_ = null;
+ }
+ return updateMaskBuilder_;
+ }
+
+ // @@protoc_insertion_point(builder_scope:google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest)
+ }
+
+ // @@protoc_insertion_point(class_scope:google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest)
+ private static final com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest
+ DEFAULT_INSTANCE;
+
+ static {
+ DEFAULT_INSTANCE =
+ new com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest();
+ }
+
+ public static com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest
+ getDefaultInstance() {
+ return DEFAULT_INSTANCE;
+ }
+
+ private static final com.google.protobuf.Parser+ * Required. The reporting identity settings to update. + * The settings' `name` field is used to identify the settings. + *+ * + *
+ * .google.analytics.admin.v1alpha.ReportingIdentitySettings reporting_identity_settings = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ *
+ * @return Whether the reportingIdentitySettings field is set.
+ */
+ boolean hasReportingIdentitySettings();
+
+ /**
+ *
+ *
+ * + * Required. The reporting identity settings to update. + * The settings' `name` field is used to identify the settings. + *+ * + *
+ * .google.analytics.admin.v1alpha.ReportingIdentitySettings reporting_identity_settings = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ *
+ * @return The reportingIdentitySettings.
+ */
+ com.google.analytics.admin.v1alpha.ReportingIdentitySettings getReportingIdentitySettings();
+
+ /**
+ *
+ *
+ * + * Required. The reporting identity settings to update. + * The settings' `name` field is used to identify the settings. + *+ * + *
+ * .google.analytics.admin.v1alpha.ReportingIdentitySettings reporting_identity_settings = 1 [(.google.api.field_behavior) = REQUIRED];
+ *
+ */
+ com.google.analytics.admin.v1alpha.ReportingIdentitySettingsOrBuilder
+ getReportingIdentitySettingsOrBuilder();
+
+ /**
+ *
+ *
+ * + * Optional. The list of fields to be updated. Field names must be in snake + * case (for example, "field_to_update"). Omitted fields will not be updated. + * To replace the entire entity, use one path with the string "*" to match all + * fields. If omitted, the service will treat it as an implied field mask + * equivalent to all fields that are populated. + *+ * + *
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ *
+ * @return Whether the updateMask field is set.
+ */
+ boolean hasUpdateMask();
+
+ /**
+ *
+ *
+ * + * Optional. The list of fields to be updated. Field names must be in snake + * case (for example, "field_to_update"). Omitted fields will not be updated. + * To replace the entire entity, use one path with the string "*" to match all + * fields. If omitted, the service will treat it as an implied field mask + * equivalent to all fields that are populated. + *+ * + *
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ *
+ * @return The updateMask.
+ */
+ com.google.protobuf.FieldMask getUpdateMask();
+
+ /**
+ *
+ *
+ * + * Optional. The list of fields to be updated. Field names must be in snake + * case (for example, "field_to_update"). Omitted fields will not be updated. + * To replace the entire entity, use one path with the string "*" to match all + * fields. If omitted, the service will treat it as an implied field mask + * equivalent to all fields that are populated. + *+ * + *
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder();
+}
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/proto/google/analytics/admin/v1alpha/analytics_admin.proto b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/proto/google/analytics/admin/v1alpha/analytics_admin.proto
index af2055300082..2293f93e23a8 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/proto/google/analytics/admin/v1alpha/analytics_admin.proto
+++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/proto/google/analytics/admin/v1alpha/analytics_admin.proto
@@ -1611,6 +1611,17 @@ service AnalyticsAdminService {
option (google.api.method_signature) = "name";
}
+ // Updates the reporting identity settings for this property.
+ rpc UpdateReportingIdentitySettings(UpdateReportingIdentitySettingsRequest)
+ returns (ReportingIdentitySettings) {
+ option (google.api.http) = {
+ patch: "/v1alpha/{reporting_identity_settings.name=properties/*/reportingIdentitySettings}"
+ body: "reporting_identity_settings"
+ };
+ option (google.api.method_signature) =
+ "reporting_identity_settings,update_mask";
+ }
+
// Looks up settings related to user-provided data for a property.
rpc GetUserProvidedDataSettings(GetUserProvidedDataSettingsRequest)
returns (UserProvidedDataSettings) {
@@ -4636,6 +4647,22 @@ message GetReportingIdentitySettingsRequest {
];
}
+// Request message for UpdateReportingIdentitySettings RPC.
+message UpdateReportingIdentitySettingsRequest {
+ // Required. The reporting identity settings to update.
+ // The settings' `name` field is used to identify the settings.
+ ReportingIdentitySettings reporting_identity_settings = 1
+ [(google.api.field_behavior) = REQUIRED];
+
+ // Optional. The list of fields to be updated. Field names must be in snake
+ // case (for example, "field_to_update"). Omitted fields will not be updated.
+ // To replace the entire entity, use one path with the string "*" to match all
+ // fields. If omitted, the service will treat it as an implied field mask
+ // equivalent to all fields that are populated.
+ google.protobuf.FieldMask update_mask = 2
+ [(google.api.field_behavior) = OPTIONAL];
+}
+
// Request message for GetUserProvidedDataSettings RPC
message GetUserProvidedDataSettingsRequest {
// Required. The name of the user provided data settings to retrieve.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/proto/google/analytics/admin/v1alpha/resources.proto b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/proto/google/analytics/admin/v1alpha/resources.proto
index d253a61e5c84..62a589c8bdab 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/proto/google/analytics/admin/v1alpha/resources.proto
+++ b/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/proto/google/analytics/admin/v1alpha/resources.proto
@@ -791,6 +791,10 @@ message PropertySummary {
// Format: accounts/{account}, properties/{property}
// Example: "accounts/100", "properties/200"
string parent = 4;
+
+ // If true, then the user has a Google Analytics role that permits them to
+ // edit the property.
+ bool can_edit = 5;
}
// A secret value used for sending hits to Measurement Protocol.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/Account.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/Account.java
index 7923d6f472b6..16eb2145f519 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/Account.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/Account.java
@@ -83,12 +83,12 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
*
*
*
- * Output only. Resource name of this account.
+ * Identifier. Resource name of this account.
* Format: accounts/{account}
* Example: "accounts/100"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -109,12 +109,12 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name of this account.
+ * Identifier. Resource name of this account.
* Format: accounts/{account}
* Example: "accounts/100"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -909,12 +909,12 @@ public Builder mergeFrom(
*
*
*
- * Output only. Resource name of this account.
+ * Identifier. Resource name of this account.
* Format: accounts/{account}
* Example: "accounts/100"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -934,12 +934,12 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name of this account.
+ * Identifier. Resource name of this account.
* Format: accounts/{account}
* Example: "accounts/100"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -959,12 +959,12 @@ public com.google.protobuf.ByteString getNameBytes() {
*
*
*
- * Output only. Resource name of this account.
+ * Identifier. Resource name of this account.
* Format: accounts/{account}
* Example: "accounts/100"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The name to set.
* @return This builder for chaining.
@@ -983,12 +983,12 @@ public Builder setName(java.lang.String value) {
*
*
*
- * Output only. Resource name of this account.
+ * Identifier. Resource name of this account.
* Format: accounts/{account}
* Example: "accounts/100"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return This builder for chaining.
*/
@@ -1003,12 +1003,12 @@ public Builder clearName() {
*
*
*
- * Output only. Resource name of this account.
+ * Identifier. Resource name of this account.
* Format: accounts/{account}
* Example: "accounts/100"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The bytes for name to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountOrBuilder.java
index e836e68ba5c7..1e217a25dc9e 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountOrBuilder.java
@@ -30,12 +30,12 @@ public interface AccountOrBuilder
*
*
*
- * Output only. Resource name of this account.
+ * Identifier. Resource name of this account.
* Format: accounts/{account}
* Example: "accounts/100"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -45,12 +45,12 @@ public interface AccountOrBuilder
*
*
*
- * Output only. Resource name of this account.
+ * Identifier. Resource name of this account.
* Format: accounts/{account}
* Example: "accounts/100"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountSummary.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountSummary.java
index ee355d67b266..ed2a0180c6c2 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountSummary.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountSummary.java
@@ -83,12 +83,12 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
*
*
*
- * Resource name for this account summary.
+ * Identifier. Resource name for this account summary.
* Format: accountSummaries/{account_id}
* Example: "accountSummaries/1000"
*
*
- * string name = 1;
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -109,12 +109,12 @@ public java.lang.String getName() {
*
*
*
- * Resource name for this account summary.
+ * Identifier. Resource name for this account summary.
* Format: accountSummaries/{account_id}
* Example: "accountSummaries/1000"
*
*
- * string name = 1;
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -758,12 +758,12 @@ public Builder mergeFrom(
*
*
*
- * Resource name for this account summary.
+ * Identifier. Resource name for this account summary.
* Format: accountSummaries/{account_id}
* Example: "accountSummaries/1000"
*
*
- * string name = 1;
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -783,12 +783,12 @@ public java.lang.String getName() {
*
*
*
- * Resource name for this account summary.
+ * Identifier. Resource name for this account summary.
* Format: accountSummaries/{account_id}
* Example: "accountSummaries/1000"
*
*
- * string name = 1;
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -808,12 +808,12 @@ public com.google.protobuf.ByteString getNameBytes() {
*
*
*
- * Resource name for this account summary.
+ * Identifier. Resource name for this account summary.
* Format: accountSummaries/{account_id}
* Example: "accountSummaries/1000"
*
*
- * string name = 1;
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The name to set.
* @return This builder for chaining.
@@ -832,12 +832,12 @@ public Builder setName(java.lang.String value) {
*
*
*
- * Resource name for this account summary.
+ * Identifier. Resource name for this account summary.
* Format: accountSummaries/{account_id}
* Example: "accountSummaries/1000"
*
*
- * string name = 1;
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return This builder for chaining.
*/
@@ -852,12 +852,12 @@ public Builder clearName() {
*
*
*
- * Resource name for this account summary.
+ * Identifier. Resource name for this account summary.
* Format: accountSummaries/{account_id}
* Example: "accountSummaries/1000"
*
*
- * string name = 1;
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The bytes for name to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountSummaryOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountSummaryOrBuilder.java
index d1460ea498b4..46bcdde1f71f 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountSummaryOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AccountSummaryOrBuilder.java
@@ -30,12 +30,12 @@ public interface AccountSummaryOrBuilder
*
*
*
- * Resource name for this account summary.
+ * Identifier. Resource name for this account summary.
* Format: accountSummaries/{account_id}
* Example: "accountSummaries/1000"
*
*
- * string name = 1;
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -45,12 +45,12 @@ public interface AccountSummaryOrBuilder
*
*
*
- * Resource name for this account summary.
+ * Identifier. Resource name for this account summary.
* Format: accountSummaries/{account_id}
* Example: "accountSummaries/1000"
*
*
- * string name = 1;
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminProto.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminProto.java
index d8418a4554f2..715268e2ef26 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminProto.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/AnalyticsAdminProto.java
@@ -362,10 +362,10 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\005quota\030\005 \001(\0132*.google.analytics.admin.v1beta.AccessQuota\"P\n"
+ "\021GetAccountRequest\022;\n"
+ "\004name\030\001 \001(\tB-\340A\002\372A\'\n"
- + "%analyticsadmin.googleapis.com/Account\"R\n"
- + "\023ListAccountsRequest\022\021\n"
- + "\tpage_size\030\001 \001(\005\022\022\n\n"
- + "page_token\030\002 \001(\t\022\024\n"
+ + "%analyticsadmin.googleapis.com/Account\"\\\n"
+ + "\023ListAccountsRequest\022\026\n"
+ + "\tpage_size\030\001 \001(\005B\003\340A\001\022\027\n\n"
+ + "page_token\030\002 \001(\tB\003\340A\001\022\024\n"
+ "\014show_deleted\030\003 \001(\010\"i\n"
+ "\024ListAccountsResponse\0228\n"
+ "\010accounts\030\001 \003(\0132&.google.analytics.admin.v1beta.Account\022\027\n"
@@ -374,8 +374,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\004name\030\001 \001(\tB-\340A\002\372A\'\n"
+ "%analyticsadmin.googleapis.com/Account\"\212\001\n"
+ "\024UpdateAccountRequest\022<\n"
- + "\007account\030\001 \001(\0132&.g"
- + "oogle.analytics.admin.v1beta.AccountB\003\340A\002\0224\n"
+ + "\007account\030\001"
+ + " \001(\0132&.google.analytics.admin.v1beta.AccountB\003\340A\002\0224\n"
+ "\013update_mask\030\002 \001(\0132\032.google.protobuf.FieldMaskB\003\340A\002\"n\n"
+ "\035ProvisionAccountTicketRequest\0227\n"
+ "\007account\030\001 \001(\0132&.google.analytics.admin.v1beta.Account\022\024\n"
@@ -384,38 +384,38 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\021account_ticket_id\030\001 \001(\t\"R\n"
+ "\022GetPropertyRequest\022<\n"
+ "\004name\030\001 \001(\tB.\340A\002\372A(\n"
- + "&analyticsadmin.googleapis.com/Property\"i\n"
+ + "&analyticsadmin.googleapis.com/Property\"s\n"
+ "\025ListPropertiesRequest\022\023\n"
- + "\006filter\030\001 \001(\tB\003\340A\002\022\021\n"
- + "\tpage_size\030\002 \001(\005\022\022\n\n"
- + "page_token\030\003 \001(\t\022\024\n"
+ + "\006filter\030\001 \001(\tB\003\340A\002\022\026\n"
+ + "\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n\n"
+ + "page_token\030\003 \001(\tB\003\340A\001\022\024\n"
+ "\014show_deleted\030\004 \001(\010\"n\n"
+ "\026ListPropertiesResponse\022;\n\n"
+ "properties\030\001 \003(\0132\'.google.analytics.admin.v1beta.Property\022\027\n"
+ "\017next_page_token\030\002 \001(\t\"\215\001\n"
+ "\025UpdatePropertyRequest\022>\n"
- + "\010property\030\001"
- + " \001(\0132\'.google.analytics.admin.v1beta.PropertyB\003\340A\002\0224\n"
+ + "\010property\030\001 \001(\0132\'.go"
+ + "ogle.analytics.admin.v1beta.PropertyB\003\340A\002\0224\n"
+ "\013update_mask\030\002 \001(\0132\032.google.protobuf.FieldMaskB\003\340A\002\"W\n"
+ "\025CreatePropertyRequest\022>\n"
- + "\010property\030\001 \001(\0132\'"
- + ".google.analytics.admin.v1beta.PropertyB\003\340A\002\"U\n"
+ + "\010property\030\001"
+ + " \001(\0132\'.google.analytics.admin.v1beta.PropertyB\003\340A\002\"U\n"
+ "\025DeletePropertyRequest\022<\n"
+ "\004name\030\001 \001(\tB.\340A\002\372A(\n"
+ "&analyticsadmin.googleapis.com/Property\"\250\001\n"
+ "\031CreateFirebaseLinkRequest\022B\n"
- + "\006parent\030\001 \001("
- + "\tB2\340A\002\372A,\022*analyticsadmin.googleapis.com/FirebaseLink\022G\n\r"
- + "firebase_link\030\002"
- + " \001(\0132+.google.analytics.admin.v1beta.FirebaseLinkB\003\340A\002\"]\n"
+ + "\006parent\030\001 \001(\tB2\340"
+ + "A\002\372A,\022*analyticsadmin.googleapis.com/FirebaseLink\022G\n\r"
+ + "firebase_link\030\002 \001(\0132+.googl"
+ + "e.analytics.admin.v1beta.FirebaseLinkB\003\340A\002\"]\n"
+ "\031DeleteFirebaseLinkRequest\022@\n"
+ "\004name\030\001 \001(\tB2\340A\002\372A,\n"
- + "*analyticsadmin.googleapis.com/FirebaseLink\"\205\001\n"
+ + "*analyticsadmin.googleapis.com/FirebaseLink\"\217\001\n"
+ "\030ListFirebaseLinksRequest\022B\n"
+ "\006parent\030\001 \001("
- + "\tB2\340A\002\372A,\022*analyticsadmin.googleapis.com/FirebaseLink\022\021\n"
- + "\tpage_size\030\002 \001(\005\022\022\n\n"
- + "page_token\030\003 \001(\t\"y\n"
+ + "\tB2\340A\002\372A,\022*analyticsadmin.googleapis.com/FirebaseLink\022\026\n"
+ + "\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n\n"
+ + "page_token\030\003 \001(\tB\003\340A\001\"y\n"
+ "\031ListFirebaseLinksResponse\022C\n"
+ "\016firebase_links\030\001"
+ " \003(\0132+.google.analytics.admin.v1beta.FirebaseLink\022\027\n"
@@ -426,30 +426,30 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\017google_ads_link\030\002"
+ " \001(\0132,.google.analytics.admin.v1beta.GoogleAdsLinkB\003\340A\002\"\231\001\n"
+ "\032UpdateGoogleAdsLinkRequest\022E\n"
- + "\017google_ads_link\030\001"
- + " \001(\0132,.google.analytics.admin.v1beta.GoogleAdsLink\0224\n"
+ + "\017google_ads_link\030\001 \001(\0132,"
+ + ".google.analytics.admin.v1beta.GoogleAdsLink\0224\n"
+ "\013update_mask\030\002 \001(\0132\032.google.protobuf.FieldMaskB\003\340A\002\"_\n"
+ "\032DeleteGoogleAdsLinkRequest\022A\n"
+ "\004name\030\001 \001(\tB3\340A\002\372A-\n"
- + "+analyticsadmin.googleapis.com/GoogleAdsLink\"\207\001\n"
+ + "+analyticsadmin.googleapis.com/GoogleAdsLink\"\221\001\n"
+ "\031ListGoogleAdsLinksRequest\022C\n"
+ "\006parent\030\001 \001("
- + "\tB3\340A\002\372A-\022+analyticsadmin.googleapis.com/GoogleAdsLink\022\021\n"
- + "\tpage_size\030\002 \001(\005\022\022\n\n"
- + "page_token\030\003 \001(\t\"}\n"
+ + "\tB3\340A\002\372A-\022+analyticsadmin.googleapis.com/GoogleAdsLink\022\026\n"
+ + "\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n\n"
+ + "page_token\030\003 \001(\tB\003\340A\001\"}\n"
+ "\032ListGoogleAdsLinksResponse\022F\n"
+ "\020google_ads_links\030\001 \003(\0132"
+ ",.google.analytics.admin.v1beta.GoogleAdsLink\022\027\n"
+ "\017next_page_token\030\002 \001(\t\"h\n"
+ "\035GetDataSharingSettingsRequest\022G\n"
+ "\004name\030\001 \001(\tB9\340A\002\372A3\n"
- + "1analyticsadmin.googleapis.com/DataSharingSettings\"D\n"
- + "\033ListAccountSummariesRequest\022\021\n"
- + "\tpage_size\030\001 \001(\005\022\022\n\n"
- + "page_token\030\002 \001(\t\"\201\001\n"
+ + "1analyticsadmin.googleapis.com/DataSharingSettings\"N\n"
+ + "\033ListAccountSummariesRequest\022\026\n"
+ + "\tpage_size\030\001 \001(\005B\003\340A\001\022\027\n\n"
+ + "page_token\030\002 \001(\tB\003\340A\001\"\201\001\n"
+ "\034ListAccountSummariesResponse\022H\n"
- + "\021account_summaries\030\001"
- + " \003(\0132-.google.analytics.admin.v1beta.AccountSummary\022\027\n"
+ + "\021account_summaries\030\001 \003(\0132-.g"
+ + "oogle.analytics.admin.v1beta.AccountSummary\022\027\n"
+ "\017next_page_token\030\002 \001(\t\"\206\001\n"
+ "$AcknowledgeUserDataCollectionRequest\022@\n"
+ "\010property\030\001 \001(\tB.\340A\002\372A(\n"
@@ -461,10 +461,10 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "%analyticsadmin.googleapis.com/Account\022@\n"
+ "\010property\030\002 \001(\tB.\340A\001\372A(\n"
+ "&analyticsadmin.googleapis.com/Property\022T\n\r"
- + "resource_type\030\003 \003(\01628.google.anal"
- + "ytics.admin.v1beta.ChangeHistoryResourceTypeB\003\340A\001\022>\n"
- + "\006action\030\004"
- + " \003(\0162).google.analytics.admin.v1beta.ActionTypeB\003\340A\001\022\030\n"
+ + "resource_type\030\003 \003(\01628.g"
+ + "oogle.analytics.admin.v1beta.ChangeHistoryResourceTypeB\003\340A\001\022>\n"
+ + "\006action\030\004 \003(\0162).go"
+ + "ogle.analytics.admin.v1beta.ActionTypeB\003\340A\001\022\030\n"
+ "\013actor_email\030\005 \003(\tB\003\340A\001\022=\n"
+ "\024earliest_change_time\030\006"
+ " \001(\0132\032.google.protobuf.TimestampB\003\340A\001\022;\n"
@@ -473,57 +473,57 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\tpage_size\030\010 \001(\005B\003\340A\001\022\027\n\n"
+ "page_token\030\t \001(\tB\003\340A\001\"\216\001\n"
+ "!SearchChangeHistoryEventsResponse\022P\n"
- + "\025change_history_events\030\001"
- + " \003(\01321.google.analytics.admin.v1beta.ChangeHistoryEvent\022\027\n"
+ + "\025change_history_events\030\001 \003(\01321.google"
+ + ".analytics.admin.v1beta.ChangeHistoryEvent\022\027\n"
+ "\017next_page_token\030\002 \001(\t\"t\n"
+ "#GetMeasurementProtocolSecretRequest\022M\n"
+ "\004name\030\001 \001(\tB?\340A\002\372A9\n"
+ "7analyticsadmin.googleapis.com/MeasurementProtocolSecret\"\335\001\n"
+ "&CreateMeasurementProtocolSecretRequest\022O\n"
- + "\006parent\030\001 \001(\tB?\340A\002\372"
- + "A9\0227analyticsadmin.googleapis.com/MeasurementProtocolSecret\022b\n"
- + "\033measurement_protocol_secret\030\002 \001(\01328.google.analytics.admi"
- + "n.v1beta.MeasurementProtocolSecretB\003\340A\002\"w\n"
+ + "\006parent\030\001 \001("
+ + "\tB?\340A\002\372A9\0227analyticsadmin.googleapis.com/MeasurementProtocolSecret\022b\n"
+ + "\033measurement_protocol_secret\030\002 \001(\01328.google.anal"
+ + "ytics.admin.v1beta.MeasurementProtocolSecretB\003\340A\002\"w\n"
+ "&DeleteMeasurementProtocolSecretRequest\022M\n"
+ "\004name\030\001 \001(\tB?\340A\002\372A9\n"
+ "7analyticsadmin.googleapis.com/MeasurementProtocolSecret\"\302\001\n"
+ "&UpdateMeasurementProtocolSecretRequest\022b\n"
- + "\033measurement_protocol_secret\030\001 \001(\013"
- + "28.google.analytics.admin.v1beta.MeasurementProtocolSecretB\003\340A\002\0224\n"
+ + "\033measurement_protocol_secret\030\001"
+ + " \001(\01328.google.analytics.admin.v1beta.MeasurementProtocolSecretB\003\340A\002\0224\n"
+ "\013update_mask\030\002"
- + " \001(\0132\032.google.protobuf.FieldMaskB\003\340A\002\"\237\001\n"
+ + " \001(\0132\032.google.protobuf.FieldMaskB\003\340A\002\"\251\001\n"
+ "%ListMeasurementProtocolSecretsRequest\022O\n"
- + "\006parent\030\001 \001(\tB?\340A\002\372A9\0227analyticsadmin."
- + "googleapis.com/MeasurementProtocolSecret\022\021\n"
- + "\tpage_size\030\002 \001(\005\022\022\n\n"
- + "page_token\030\003 \001(\t\"\241\001\n"
+ + "\006parent\030\001 \001(\tB?\340A\002\372A9\0227analy"
+ + "ticsadmin.googleapis.com/MeasurementProtocolSecret\022\026\n"
+ + "\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n\n"
+ + "page_token\030\003 \001(\tB\003\340A\001\"\241\001\n"
+ "&ListMeasurementProtocolSecretsResponse\022^\n"
- + "\034measurement_protocol_secrets\030\001 \003(\013"
- + "28.google.analytics.admin.v1beta.MeasurementProtocolSecret\022\027\n"
+ + "\034measurement_protocol_secrets\030\001 \003(\01328.google.analytics."
+ + "admin.v1beta.MeasurementProtocolSecret\022\027\n"
+ "\017next_page_token\030\002 \001(\t\"\264\001\n"
+ "\034CreateConversionEventRequest\022M\n"
- + "\020conversion_event\030\001"
- + " \001(\0132..google.analytics.admin.v1beta.ConversionEventB\003\340A\002\022E\n"
- + "\006parent\030\002 \001("
- + "\tB5\340A\002\372A/\022-analyticsadmin.googleapis.com/ConversionEvent\"\243\001\n"
+ + "\020conversion_event\030\001 \001"
+ + "(\0132..google.analytics.admin.v1beta.ConversionEventB\003\340A\002\022E\n"
+ + "\006parent\030\002 \001(\tB5\340A\002\372A/\022"
+ + "-analyticsadmin.googleapis.com/ConversionEvent\"\243\001\n"
+ "\034UpdateConversionEventRequest\022M\n"
- + "\020conversion_event\030\001"
- + " \001(\0132..google.analytics.admin.v1beta.ConversionEventB\003\340A\002\0224\n"
+ + "\020conversion_event\030\001 \001(\0132..google.analy"
+ + "tics.admin.v1beta.ConversionEventB\003\340A\002\0224\n"
+ "\013update_mask\030\002 \001(\0132\032.google.protobuf.FieldMaskB\003\340A\002\"`\n"
+ "\031GetConversionEventRequest\022C\n"
+ "\004name\030\001 \001(\tB5\340A\002\372A/\n"
+ "-analyticsadmin.googleapis.com/ConversionEvent\"c\n"
+ "\034DeleteConversionEventRequest\022C\n"
+ "\004name\030\001 \001(\tB5\340A\002\372A/\n"
- + "-analyticsadmin.googleapis.com/ConversionEvent\"\213\001\n"
+ + "-analyticsadmin.googleapis.com/ConversionEvent\"\225\001\n"
+ "\033ListConversionEventsRequest\022E\n"
- + "\006parent\030\001 \001(\tB"
- + "5\340A\002\372A/\022-analyticsadmin.googleapis.com/ConversionEvent\022\021\n"
- + "\tpage_size\030\002 \001(\005\022\022\n\n"
- + "page_token\030\003 \001(\t\"\202\001\n"
+ + "\006parent\030\001 \001("
+ + "\tB5\340A\002\372A/\022-analyticsadmin.googleapis.com/ConversionEvent\022\026\n"
+ + "\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n\n"
+ + "page_token\030\003 \001(\tB\003\340A\001\"\202\001\n"
+ "\034ListConversionEventsResponse\022I\n"
- + "\021conversion_events\030\001 \003(\0132..goog"
- + "le.analytics.admin.v1beta.ConversionEvent\022\027\n"
+ + "\021conversion_events\030\001"
+ + " \003(\0132..google.analytics.admin.v1beta.ConversionEvent\022\027\n"
+ "\017next_page_token\030\002 \001(\t\"\230\001\n"
+ "\025CreateKeyEventRequest\022?\n"
+ "\tkey_event\030\001"
@@ -539,33 +539,33 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "&analyticsadmin.googleapis.com/KeyEvent\"U\n"
+ "\025DeleteKeyEventRequest\022<\n"
+ "\004name\030\001 \001(\tB.\340A\002\372A(\n"
- + "&analyticsadmin.googleapis.com/KeyEvent\"}\n"
+ + "&analyticsadmin.googleapis.com/KeyEvent\"\207\001\n"
+ "\024ListKeyEventsRequest\022>\n"
+ "\006parent\030\001 \001("
- + "\tB.\340A\002\372A(\022&analyticsadmin.googleapis.com/KeyEvent\022\021\n"
- + "\tpage_size\030\002 \001(\005\022\022\n\n"
- + "page_token\030\003 \001(\t\"m\n"
+ + "\tB.\340A\002\372A(\022&analyticsadmin.googleapis.com/KeyEvent\022\026\n"
+ + "\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n\n"
+ + "page_token\030\003 \001(\tB\003\340A\001\"m\n"
+ "\025ListKeyEventsResponse\022;\n\n"
+ "key_events\030\001 \003(\0132\'.google.analytics.admin.v1beta.KeyEvent\022\027\n"
+ "\017next_page_token\030\002 \001(\t\"\264\001\n"
+ "\034CreateCustomDimensionRequest\022E\n"
- + "\006parent\030\001 \001(\tB5\340A\002\372A/\022-analyt"
- + "icsadmin.googleapis.com/CustomDimension\022M\n"
- + "\020custom_dimension\030\002 \001(\0132..google.analy"
- + "tics.admin.v1beta.CustomDimensionB\003\340A\002\"\236\001\n"
+ + "\006parent\030\001 \001(\tB5\340A\002\372A/\022-analy"
+ + "ticsadmin.googleapis.com/CustomDimension\022M\n"
+ + "\020custom_dimension\030\002 \001(\0132..google.anal"
+ + "ytics.admin.v1beta.CustomDimensionB\003\340A\002\"\236\001\n"
+ "\034UpdateCustomDimensionRequest\022H\n"
+ "\020custom_dimension\030\001"
+ " \001(\0132..google.analytics.admin.v1beta.CustomDimension\0224\n"
+ "\013update_mask\030\002"
- + " \001(\0132\032.google.protobuf.FieldMaskB\003\340A\002\"\213\001\n"
+ + " \001(\0132\032.google.protobuf.FieldMaskB\003\340A\002\"\225\001\n"
+ "\033ListCustomDimensionsRequest\022E\n"
+ "\006parent\030\001 \001("
- + "\tB5\340A\002\372A/\022-analyticsadmin.googleapis.com/CustomDimension\022\021\n"
- + "\tpage_size\030\002 \001(\005\022\022\n\n"
- + "page_token\030\003 \001(\t\"\202\001\n"
+ + "\tB5\340A\002\372A/\022-analyticsadmin.googleapis.com/CustomDimension\022\026\n"
+ + "\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n\n"
+ + "page_token\030\003 \001(\tB\003\340A\001\"\202\001\n"
+ "\034ListCustomDimensionsResponse\022I\n"
- + "\021custom_dimensions\030\001 \003("
- + "\0132..google.analytics.admin.v1beta.CustomDimension\022\027\n"
+ + "\021custom_dimensions\030\001"
+ + " \003(\0132..google.analytics.admin.v1beta.CustomDimension\022\027\n"
+ "\017next_page_token\030\002 \001(\t\"d\n"
+ "\035ArchiveCustomDimensionRequest\022C\n"
+ "\004name\030\001 \001(\tB5\340A\002\372A/\n"
@@ -574,10 +574,10 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\004name\030\001 \001(\tB5\340A\002\372A/\n"
+ "-analyticsadmin.googleapis.com/CustomDimension\"\250\001\n"
+ "\031CreateCustomMetricRequest\022B\n"
- + "\006parent\030\001 \001(\t"
- + "B2\340A\002\372A,\022*analyticsadmin.googleapis.com/CustomMetric\022G\n\r"
- + "custom_metric\030\002 \001(\0132+.go"
- + "ogle.analytics.admin.v1beta.CustomMetricB\003\340A\002\"\225\001\n"
+ + "\006parent\030\001 \001("
+ + "\tB2\340A\002\372A,\022*analyticsadmin.googleapis.com/CustomMetric\022G\n\r"
+ + "custom_metric\030\002"
+ + " \001(\0132+.google.analytics.admin.v1beta.CustomMetricB\003\340A\002\"\225\001\n"
+ "\031UpdateCustomMetricRequest\022B\n\r"
+ "custom_metric\030\001 \001(\0132+.google.analytics.admin.v1beta.CustomMetric\0224\n"
+ "\013update_mask\030\002"
@@ -588,8 +588,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\tpage_size\030\002 \001(\005\022\022\n\n"
+ "page_token\030\003 \001(\t\"y\n"
+ "\031ListCustomMetricsResponse\022C\n"
- + "\016custom_metrics\030\001"
- + " \003(\0132+.google.analytics.admin.v1beta.CustomMetric\022\027\n"
+ + "\016custom_metrics\030\001 \003(\0132+."
+ + "google.analytics.admin.v1beta.CustomMetric\022\027\n"
+ "\017next_page_token\030\002 \001(\t\"^\n"
+ "\032ArchiveCustomMetricRequest\022@\n"
+ "\004name\030\001 \001(\tB2\340A\002\372A,\n"
@@ -601,13 +601,13 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\004name\030\001 \001(\tB;\340A\002\372A5\n"
+ "3analyticsadmin.googleapis.com/DataRetentionSettings\"\266\001\n"
+ "\"UpdateDataRetentionSettingsRequest\022Z\n"
- + "\027data_retention_settings\030\001 \001(\01324.google.anal"
- + "ytics.admin.v1beta.DataRetentionSettingsB\003\340A\002\0224\n"
+ + "\027data_retention_settings\030\001 \001(\01324."
+ + "google.analytics.admin.v1beta.DataRetentionSettingsB\003\340A\002\0224\n"
+ "\013update_mask\030\002"
+ " \001(\0132\032.google.protobuf.FieldMaskB\003\340A\002\"\240\001\n"
+ "\027CreateDataStreamRequest\022@\n"
- + "\006parent\030\001 \001("
- + "\tB0\340A\002\372A*\022(analyticsadmin.googleapis.com/DataStream\022C\n"
+ + "\006parent\030\001 \001(\tB0\340A\002\372"
+ + "A*\022(analyticsadmin.googleapis.com/DataStream\022C\n"
+ "\013data_stream\030\002"
+ " \001(\0132).google.analytics.admin.v1beta.DataStreamB\003\340A\002\"Y\n"
+ "\027DeleteDataStreamRequest\022>\n"
@@ -618,267 +618,267 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\013update_mask\030\002"
+ " \001(\0132\032.google.protobuf.FieldMaskB\003\340A\002\"\201\001\n"
+ "\026ListDataStreamsRequest\022@\n"
- + "\006parent\030\001 \001("
- + "\tB0\340A\002\372A*\022(analyticsadmin.googleapis.com/DataStream\022\021\n"
+ + "\006parent\030\001 \001(\tB0\340A\002\372A"
+ + "*\022(analyticsadmin.googleapis.com/DataStream\022\021\n"
+ "\tpage_size\030\002 \001(\005\022\022\n\n"
+ "page_token\030\003 \001(\t\"s\n"
+ "\027ListDataStreamsResponse\022?\n"
- + "\014data_streams\030\001 \003(\013"
- + "2).google.analytics.admin.v1beta.DataStream\022\027\n"
+ + "\014data_streams\030\001"
+ + " \003(\0132).google.analytics.admin.v1beta.DataStream\022\027\n"
+ "\017next_page_token\030\002 \001(\t\"V\n"
+ "\024GetDataStreamRequest\022>\n"
+ "\004name\030\001 \001(\tB0\340A\002\372A*\n"
+ "(analyticsadmin.googleapis.com/DataStream2\357W\n"
+ "\025AnalyticsAdminService\022\220\001\n\n"
- + "GetAccount\0220.google.analytics.admin.v1beta.GetAccount"
- + "Request\032&.google.analytics.admin.v1beta."
- + "Account\"(\332A\004name\202\323\344\223\002\033\022\031/v1beta/{name=accounts/*}\022\221\001\n"
- + "\014ListAccounts\0222.google.analytics.admin.v1beta.ListAccountsRequest\0323"
- + ".google.analytics.admin.v1beta.ListAccou"
- + "ntsResponse\"\030\202\323\344\223\002\022\022\020/v1beta/accounts\022\206\001\n\r"
- + "DeleteAccount\0223.google.analytics.admin"
- + ".v1beta.DeleteAccountRequest\032\026.google.pr"
- + "otobuf.Empty\"(\332A\004name\202\323\344\223\002\033*\031/v1beta/{name=accounts/*}\022\266\001\n\r"
- + "UpdateAccount\0223.google.analytics.admin.v1beta.UpdateAccountRe"
- + "quest\032&.google.analytics.admin.v1beta.Ac"
- + "count\"H\332A\023account,update_mask\202\323\344\223\002,2!/v1"
- + "beta/{account.name=accounts/*}:\007account\022\311\001\n"
- + "\026ProvisionAccountTicket\022<.google.analytics.admin.v1beta.ProvisionAccountTicke"
- + "tRequest\032=.google.analytics.admin.v1beta"
- + ".ProvisionAccountTicketResponse\"2\202\323\344\223\002,\""
- + "\'/v1beta/accounts:provisionAccountTicket:\001*\022\261\001\n"
- + "\024ListAccountSummaries\022:.google.analytics.admin.v1beta.ListAccountSummarie"
- + "sRequest\032;.google.analytics.admin.v1beta.ListAccountSummariesResponse\""
+ + "GetAccount\0220.google.analytics.admin.v1beta"
+ + ".GetAccountRequest\032&.google.analytics.ad"
+ + "min.v1beta.Account\"(\332A\004name\202\323\344\223\002\033\022\031/v1beta/{name=accounts/*}\022\221\001\n"
+ + "\014ListAccounts\0222.google.analytics.admin.v1beta.ListAccoun"
+ + "tsRequest\0323.google.analytics.admin.v1bet"
+ + "a.ListAccountsResponse\"\030\202\323\344\223\002\022\022\020/v1beta/accounts\022\206\001\n\r"
+ + "DeleteAccount\0223.google.analytics.admin.v1beta.DeleteAccountRequest\032"
+ + "\026.google.protobuf.Empty\"(\332A\004name\202\323\344\223\002\033*\031/v1beta/{name=accounts/*}\022\266\001\n\r"
+ + "UpdateAccount\0223.google.analytics.admin.v1beta.Upda"
+ + "teAccountRequest\032&.google.analytics.admi"
+ + "n.v1beta.Account\"H\332A\023account,update_mask"
+ + "\202\323\344\223\002,2!/v1beta/{account.name=accounts/*}:\007account\022\311\001\n"
+ + "\026ProvisionAccountTicket\022<.google.analytics.admin.v1beta.ProvisionA"
+ + "ccountTicketRequest\032=.google.analytics.admin.v1beta.ProvisionAccountTicketRespon"
+ + "se\"2\202\323\344\223\002,\"\'/v1beta/accounts:provisionAccountTicket:\001*\022\261\001\n"
+ + "\024ListAccountSummaries\022:.google.analytics.admin.v1beta.ListAcco"
+ + "untSummariesRequest\032;.google.analytics.admin.v1beta.ListAccountSummariesResponse\""
+ " \202\323\344\223\002\032\022\030/v1beta/accountSummaries\022\225\001\n"
- + "\013GetProperty\0221.google.analytics.admin.v1beta.GetPrope"
- + "rtyRequest\032\'.google.analytics.admin.v1be"
- + "ta.Property\"*\332A\004name\202\323\344\223\002\035\022\033/v1beta/{name=properties/*}\022\231\001\n"
- + "\016ListProperties\0224.google.analytics.admin.v1beta.ListPropertie"
- + "sRequest\0325.google.analytics.admin.v1beta"
- + ".ListPropertiesResponse\"\032\202\323\344\223\002\024\022\022/v1beta/properties\022\240\001\n"
- + "\016CreateProperty\0224.google.analytics.admin.v1beta.CreatePropertyReq"
- + "uest\032\'.google.analytics.admin.v1beta.Pro"
- + "perty\"/\332A\010property\202\323\344\223\002\036\"\022/v1beta/properties:\010property\022\233\001\n"
- + "\016DeleteProperty\0224.google.analytics.admin.v1beta.DeleteProperty"
- + "Request\032\'.google.analytics.admin.v1beta."
- + "Property\"*\332A\004name\202\323\344\223\002\035*\033/v1beta/{name=properties/*}\022\276\001\n"
- + "\016UpdateProperty\0224.google.analytics.admin.v1beta.UpdatePropertyRe"
- + "quest\032\'.google.analytics.admin.v1beta.Pr"
- + "operty\"M\332A\024property,update_mask\202\323\344\223\00202$/"
- + "v1beta/{property.name=properties/*}:\010property\022\326\001\n"
- + "\022CreateFirebaseLink\0228.google.analytics.admin.v1beta.CreateFirebaseLinkR"
- + "equest\032+.google.analytics.admin.v1beta.F"
- + "irebaseLink\"Y\332A\024parent,firebase_link\202\323\344\223"
- + "\002<\"+/v1beta/{parent=properties/*}/firebaseLinks:\r"
+ + "\013GetProperty\0221.google.analytics.admin.v1be"
+ + "ta.GetPropertyRequest\032\'.google.analytics"
+ + ".admin.v1beta.Property\"*\332A\004name\202\323\344\223\002\035\022\033/v1beta/{name=properties/*}\022\231\001\n"
+ + "\016ListProperties\0224.google.analytics.admin.v1beta.Li"
+ + "stPropertiesRequest\0325.google.analytics.a"
+ + "dmin.v1beta.ListPropertiesResponse\"\032\202\323\344\223\002\024\022\022/v1beta/properties\022\240\001\n"
+ + "\016CreateProperty\0224.google.analytics.admin.v1beta.Create"
+ + "PropertyRequest\032\'.google.analytics.admin"
+ + ".v1beta.Property\"/\332A\010property\202\323\344\223\002\036\"\022/v1beta/properties:\010property\022\233\001\n"
+ + "\016DeleteProperty\0224.google.analytics.admin.v1beta.Del"
+ + "etePropertyRequest\032\'.google.analytics.ad"
+ + "min.v1beta.Property\"*\332A\004name\202\323\344\223\002\035*\033/v1beta/{name=properties/*}\022\276\001\n"
+ + "\016UpdateProperty\0224.google.analytics.admin.v1beta.Updat"
+ + "ePropertyRequest\032\'.google.analytics.admi"
+ + "n.v1beta.Property\"M\332A\024property,update_ma"
+ + "sk\202\323\344\223\00202$/v1beta/{property.name=properties/*}:\010property\022\326\001\n"
+ + "\022CreateFirebaseLink\0228.google.analytics.admin.v1beta.CreateFi"
+ + "rebaseLinkRequest\032+.google.analytics.adm"
+ + "in.v1beta.FirebaseLink\"Y\332A\024parent,fireba"
+ + "se_link\202\323\344\223\002<\"+/v1beta/{parent=properties/*}/firebaseLinks:\r"
+ "firebase_link\022\242\001\n"
- + "\022DeleteFirebaseLink\0228.google.analytics.admin.v1beta.De"
- + "leteFirebaseLinkRequest\032\026.google.protobu"
- + "f.Empty\":\332A\004name\202\323\344\223\002-*+/v1beta/{name=properties/*/firebaseLinks/*}\022\304\001\n"
- + "\021ListFirebaseLinks\0227.google.analytics.admin.v1bet"
- + "a.ListFirebaseLinksRequest\0328.google.analytics.admin.v1beta.ListFirebaseLinksResp"
- + "onse\"<\332A\006parent\202\323\344\223\002-\022+/v1beta/{parent=properties/*}/firebaseLinks\022\336\001\n"
- + "\023CreateGoogleAdsLink\0229.google.analytics.admin.v1be"
- + "ta.CreateGoogleAdsLinkRequest\032,.google.a"
- + "nalytics.admin.v1beta.GoogleAdsLink\"^\332A\026"
- + "parent,google_ads_link\202\323\344\223\002?\",/v1beta/{p"
- + "arent=properties/*}/googleAdsLinks:\017google_ads_link\022\363\001\n"
- + "\023UpdateGoogleAdsLink\0229.google.analytics.admin.v1beta.UpdateGoogle"
- + "AdsLinkRequest\032,.google.analytics.admin."
- + "v1beta.GoogleAdsLink\"s\332A\033google_ads_link"
- + ",update_mask\202\323\344\223\002O221/v"
- + "1beta/{key_event.name=properties/*/keyEv"
- + "ents/*}:\tkey_event\022\241\001\n\013GetKeyEvent\0221.goo"
- + "gle.analytics.admin.v1beta.GetKeyEventRe"
- + "quest\032\'.google.analytics.admin.v1beta.Ke"
- + "yEvent\"6\332A\004name\202\323\344\223\002)\022\'/v1beta/{name=pro"
- + "perties/*/keyEvents/*}\022\226\001\n\016DeleteKeyEven"
- + "t\0224.google.analytics.admin.v1beta.Delete"
- + "KeyEventRequest\032\026.google.protobuf.Empty\""
- + "6\332A\004name\202\323\344\223\002)*\'/v1beta/{name=properties"
- + "/*/keyEvents/*}\022\264\001\n\rListKeyEvents\0223.goog"
- + "le.analytics.admin.v1beta.ListKeyEventsR"
- + "equest\0324.google.analytics.admin.v1beta.L"
- + "istKeyEventsResponse\"8\332A\006parent\202\323\344\223\002)\022\'/"
- + "v1beta/{parent=properties/*}/keyEvents\022\350"
- + "\001\n\025CreateCustomDimension\022;.google.analyt"
- + "ics.admin.v1beta.CreateCustomDimensionRe"
- + "quest\032..google.analytics.admin.v1beta.Cu"
- + "stomDimension\"b\332A\027parent,custom_dimensio"
- + "n\202\323\344\223\002B\"./v1beta/{parent=properties/*}/c"
- + "ustomDimensions:\020custom_dimension\022\376\001\n\025Up"
- + "dateCustomDimension\022;.google.analytics.a"
- + "dmin.v1beta.UpdateCustomDimensionRequest"
- + "\032..google.analytics.admin.v1beta.CustomD"
- + "imension\"x\332A\034custom_dimension,update_mas"
- + "k\202\323\344\223\002S2?/v1beta/{custom_dimension.name="
- + "properties/*/customDimensions/*}:\020custom"
- + "_dimension\022\320\001\n\024ListCustomDimensions\022:.go"
- + "ogle.analytics.admin.v1beta.ListCustomDi"
- + "mensionsRequest\032;.google.analytics.admin"
- + ".v1beta.ListCustomDimensionsResponse\"?\332A"
- + "\006parent\202\323\344\223\0020\022./v1beta/{parent=propertie"
- + "s/*}/customDimensions\022\270\001\n\026ArchiveCustomD"
- + "imension\022<.google.analytics.admin.v1beta"
- + ".ArchiveCustomDimensionRequest\032\026.google."
- + "protobuf.Empty\"H\332A\004name\202\323\344\223\002;\"6/v1beta/{"
- + "name=properties/*/customDimensions/*}:ar"
- + "chive:\001*\022\275\001\n\022GetCustomDimension\0228.google"
- + ".analytics.admin.v1beta.GetCustomDimensi"
- + "onRequest\032..google.analytics.admin.v1bet"
- + "a.CustomDimension\"=\332A\004name\202\323\344\223\0020\022./v1bet"
- + "a/{name=properties/*/customDimensions/*}"
- + "\022\326\001\n\022CreateCustomMetric\0228.google.analyti"
- + "cs.admin.v1beta.CreateCustomMetricReques"
- + "t\032+.google.analytics.admin.v1beta.Custom"
- + "Metric\"Y\332A\024parent,custom_metric\202\323\344\223\002<\"+/"
- + "v1beta/{parent=properties/*}/customMetri"
- + "cs:\rcustom_metric\022\351\001\n\022UpdateCustomMetric"
- + "\0228.google.analytics.admin.v1beta.UpdateC"
- + "ustomMetricRequest\032+.google.analytics.ad"
- + "min.v1beta.CustomMetric\"l\332A\031custom_metri"
- + "c,update_mask\202\323\344\223\002J29/v1beta/{custom_met"
- + "ric.name=properties/*/customMetrics/*}:\r"
- + "custom_metric\022\304\001\n\021ListCustomMetrics\0227.go"
- + "ogle.analytics.admin.v1beta.ListCustomMe"
- + "tricsRequest\0328.google.analytics.admin.v1"
- + "beta.ListCustomMetricsResponse\"<\332A\006paren"
- + "t\202\323\344\223\002-\022+/v1beta/{parent=properties/*}/c"
- + "ustomMetrics\022\257\001\n\023ArchiveCustomMetric\0229.g"
- + "oogle.analytics.admin.v1beta.ArchiveCust"
- + "omMetricRequest\032\026.google.protobuf.Empty\""
- + "E\332A\004name\202\323\344\223\0028\"3/v1beta/{name=properties"
- + "/*/customMetrics/*}:archive:\001*\022\261\001\n\017GetCu"
- + "stomMetric\0225.google.analytics.admin.v1be"
- + "ta.GetCustomMetricRequest\032+.google.analy"
- + "tics.admin.v1beta.CustomMetric\":\332A\004name\202"
- + "\323\344\223\002-\022+/v1beta/{name=properties/*/custom"
- + "Metrics/*}\022\322\001\n\030GetDataRetentionSettings\022"
- + ">.google.analytics.admin.v1beta.GetDataR"
- + "etentionSettingsRequest\0324.google.analyti"
- + "cs.admin.v1beta.DataRetentionSettings\"@\332"
- + "A\004name\202\323\344\223\0023\0221/v1beta/{name=properties/*"
- + "/dataRetentionSettings}\022\251\002\n\033UpdateDataRe"
- + "tentionSettings\022A.google.analytics.admin"
- + ".v1beta.UpdateDataRetentionSettingsReque"
- + "st\0324.google.analytics.admin.v1beta.DataR"
- + "etentionSettings\"\220\001\332A#data_retention_set"
- + "tings,update_mask\202\323\344\223\002d2I/v1beta/{data_r"
- + "etention_settings.name=properties/*/data"
- + "RetentionSettings}:\027data_retention_setti"
- + "ngs\022\312\001\n\020CreateDataStream\0226.google.analyt"
- + "ics.admin.v1beta.CreateDataStreamRequest"
- + "\032).google.analytics.admin.v1beta.DataStr"
- + "eam\"S\332A\022parent,data_stream\202\323\344\223\0028\")/v1bet"
- + "a/{parent=properties/*}/dataStreams:\013dat"
- + "a_stream\022\234\001\n\020DeleteDataStream\0226.google.a"
- + "nalytics.admin.v1beta.DeleteDataStreamRe"
- + "quest\032\026.google.protobuf.Empty\"8\332A\004name\202\323"
- + "\344\223\002+*)/v1beta/{name=properties/*/dataStr"
- + "eams/*}\022\333\001\n\020UpdateDataStream\0226.google.an"
- + "alytics.admin.v1beta.UpdateDataStreamReq"
- + "uest\032).google.analytics.admin.v1beta.Dat"
- + "aStream\"d\332A\027data_stream,update_mask\202\323\344\223\002"
- + "D25/v1beta/{data_stream.name=properties/"
- + "*/dataStreams/*}:\013data_stream\022\274\001\n\017ListDa"
- + "taStreams\0225.google.analytics.admin.v1bet"
- + "a.ListDataStreamsRequest\0326.google.analyt"
- + "ics.admin.v1beta.ListDataStreamsResponse"
- + "\":\332A\006parent\202\323\344\223\002+\022)/v1beta/{parent=prope"
- + "rties/*}/dataStreams\022\251\001\n\rGetDataStream\0223"
- + ".google.analytics.admin.v1beta.GetDataSt"
+ + "\022DeleteFirebaseLink\0228.google.analytics.admi"
+ + "n.v1beta.DeleteFirebaseLinkRequest\032\026.goo"
+ + "gle.protobuf.Empty\":\332A\004name\202\323\344\223\002-*+/v1be"
+ + "ta/{name=properties/*/firebaseLinks/*}\022\304\001\n"
+ + "\021ListFirebaseLinks\0227.google.analytics."
+ + "admin.v1beta.ListFirebaseLinksRequest\0328.google.analytics.admin.v1beta.ListFireba"
+ + "seLinksResponse\"<\332A\006parent\202\323\344\223\002-\022+/v1bet"
+ + "a/{parent=properties/*}/firebaseLinks\022\336\001\n"
+ + "\023CreateGoogleAdsLink\0229.google.analytics.admin.v1beta.CreateGoogleAdsLinkRequest"
+ + "\032,.google.analytics.admin.v1beta.GoogleA"
+ + "dsLink\"^\332A\026parent,google_ads_link\202\323\344\223\002?\""
+ + ",/v1beta/{parent=properties/*}/googleAdsLinks:\017google_ads_link\022\363\001\n"
+ + "\023UpdateGoogleAdsLink\0229.google.analytics.admin.v1beta.U"
+ + "pdateGoogleAdsLinkRequest\032,.google.analy"
+ + "tics.admin.v1beta.GoogleAdsLink\"s\332A\033goog"
+ + "le_ads_link,update_mask\202\323\344\223\002O221/v1beta/{key_event.name=propert"
+ + "ies/*/keyEvents/*}:\tkey_event\022\241\001\n\013GetKey"
+ + "Event\0221.google.analytics.admin.v1beta.Ge"
+ + "tKeyEventRequest\032\'.google.analytics.admi"
+ + "n.v1beta.KeyEvent\"6\332A\004name\202\323\344\223\002)\022\'/v1bet"
+ + "a/{name=properties/*/keyEvents/*}\022\226\001\n\016De"
+ + "leteKeyEvent\0224.google.analytics.admin.v1"
+ + "beta.DeleteKeyEventRequest\032\026.google.prot"
+ + "obuf.Empty\"6\332A\004name\202\323\344\223\002)*\'/v1beta/{name"
+ + "=properties/*/keyEvents/*}\022\264\001\n\rListKeyEv"
+ + "ents\0223.google.analytics.admin.v1beta.Lis"
+ + "tKeyEventsRequest\0324.google.analytics.adm"
+ + "in.v1beta.ListKeyEventsResponse\"8\332A\006pare"
+ + "nt\202\323\344\223\002)\022\'/v1beta/{parent=properties/*}/"
+ + "keyEvents\022\350\001\n\025CreateCustomDimension\022;.go"
+ + "ogle.analytics.admin.v1beta.CreateCustom"
+ + "DimensionRequest\032..google.analytics.admi"
+ + "n.v1beta.CustomDimension\"b\332A\027parent,cust"
+ + "om_dimension\202\323\344\223\002B\"./v1beta/{parent=prop"
+ + "erties/*}/customDimensions:\020custom_dimen"
+ + "sion\022\376\001\n\025UpdateCustomDimension\022;.google."
+ + "analytics.admin.v1beta.UpdateCustomDimen"
+ + "sionRequest\032..google.analytics.admin.v1b"
+ + "eta.CustomDimension\"x\332A\034custom_dimension"
+ + ",update_mask\202\323\344\223\002S2?/v1beta/{custom_dime"
+ + "nsion.name=properties/*/customDimensions"
+ + "/*}:\020custom_dimension\022\320\001\n\024ListCustomDime"
+ + "nsions\022:.google.analytics.admin.v1beta.L"
+ + "istCustomDimensionsRequest\032;.google.anal"
+ + "ytics.admin.v1beta.ListCustomDimensionsR"
+ + "esponse\"?\332A\006parent\202\323\344\223\0020\022./v1beta/{paren"
+ + "t=properties/*}/customDimensions\022\270\001\n\026Arc"
+ + "hiveCustomDimension\022<.google.analytics.a"
+ + "dmin.v1beta.ArchiveCustomDimensionReques"
+ + "t\032\026.google.protobuf.Empty\"H\332A\004name\202\323\344\223\002;"
+ + "\"6/v1beta/{name=properties/*/customDimen"
+ + "sions/*}:archive:\001*\022\275\001\n\022GetCustomDimensi"
+ + "on\0228.google.analytics.admin.v1beta.GetCu"
+ + "stomDimensionRequest\032..google.analytics."
+ + "admin.v1beta.CustomDimension\"=\332A\004name\202\323\344"
+ + "\223\0020\022./v1beta/{name=properties/*/customDi"
+ + "mensions/*}\022\326\001\n\022CreateCustomMetric\0228.goo"
+ + "gle.analytics.admin.v1beta.CreateCustomM"
+ + "etricRequest\032+.google.analytics.admin.v1"
+ + "beta.CustomMetric\"Y\332A\024parent,custom_metr"
+ + "ic\202\323\344\223\002<\"+/v1beta/{parent=properties/*}/"
+ + "customMetrics:\rcustom_metric\022\351\001\n\022UpdateC"
+ + "ustomMetric\0228.google.analytics.admin.v1b"
+ + "eta.UpdateCustomMetricRequest\032+.google.a"
+ + "nalytics.admin.v1beta.CustomMetric\"l\332A\031c"
+ + "ustom_metric,update_mask\202\323\344\223\002J29/v1beta/"
+ + "{custom_metric.name=properties/*/customM"
+ + "etrics/*}:\rcustom_metric\022\304\001\n\021ListCustomM"
+ + "etrics\0227.google.analytics.admin.v1beta.L"
+ + "istCustomMetricsRequest\0328.google.analyti"
+ + "cs.admin.v1beta.ListCustomMetricsRespons"
+ + "e\"<\332A\006parent\202\323\344\223\002-\022+/v1beta/{parent=prop"
+ + "erties/*}/customMetrics\022\257\001\n\023ArchiveCusto"
+ + "mMetric\0229.google.analytics.admin.v1beta."
+ + "ArchiveCustomMetricRequest\032\026.google.prot"
+ + "obuf.Empty\"E\332A\004name\202\323\344\223\0028\"3/v1beta/{name"
+ + "=properties/*/customMetrics/*}:archive:\001"
+ + "*\022\261\001\n\017GetCustomMetric\0225.google.analytics"
+ + ".admin.v1beta.GetCustomMetricRequest\032+.g"
+ + "oogle.analytics.admin.v1beta.CustomMetri"
+ + "c\":\332A\004name\202\323\344\223\002-\022+/v1beta/{name=properti"
+ + "es/*/customMetrics/*}\022\322\001\n\030GetDataRetenti"
+ + "onSettings\022>.google.analytics.admin.v1be"
+ + "ta.GetDataRetentionSettingsRequest\0324.goo"
+ + "gle.analytics.admin.v1beta.DataRetention"
+ + "Settings\"@\332A\004name\202\323\344\223\0023\0221/v1beta/{name=p"
+ + "roperties/*/dataRetentionSettings}\022\251\002\n\033U"
+ + "pdateDataRetentionSettings\022A.google.anal"
+ + "ytics.admin.v1beta.UpdateDataRetentionSe"
+ + "ttingsRequest\0324.google.analytics.admin.v"
+ + "1beta.DataRetentionSettings\"\220\001\332A#data_re"
+ + "tention_settings,update_mask\202\323\344\223\002d2I/v1b"
+ + "eta/{data_retention_settings.name=proper"
+ + "ties/*/dataRetentionSettings}:\027data_rete"
+ + "ntion_settings\022\312\001\n\020CreateDataStream\0226.go"
+ + "ogle.analytics.admin.v1beta.CreateDataSt"
+ "reamRequest\032).google.analytics.admin.v1b"
- + "eta.DataStream\"8\332A\004name\202\323\344\223\002+\022)/v1beta/{"
- + "name=properties/*/dataStreams/*}\022\354\001\n\017Run"
- + "AccessReport\0225.google.analytics.admin.v1"
- + "beta.RunAccessReportRequest\0326.google.ana"
- + "lytics.admin.v1beta.RunAccessReportRespo"
- + "nse\"j\202\323\344\223\002d\"-/v1beta/{entity=properties/"
- + "*}:runAccessReport:\001*Z0\"+/v1beta/{entity"
- + "=accounts/*}:runAccessReport:\001*\032\204\001\312A\035ana"
- + "lyticsadmin.googleapis.com\322Aahttps://www"
- + ".googleapis.com/auth/analytics.edit,http"
- + "s://www.googleapis.com/auth/analytics.re"
- + "adonlyBy\n!com.google.analytics.admin.v1b"
- + "etaB\023AnalyticsAdminProtoP\001Z=cloud.google"
- + ".com/go/analytics/admin/apiv1beta/adminp"
- + "b;adminpbb\006proto3"
+ + "eta.DataStream\"S\332A\022parent,data_stream\202\323\344"
+ + "\223\0028\")/v1beta/{parent=properties/*}/dataS"
+ + "treams:\013data_stream\022\234\001\n\020DeleteDataStream"
+ + "\0226.google.analytics.admin.v1beta.DeleteD"
+ + "ataStreamRequest\032\026.google.protobuf.Empty"
+ + "\"8\332A\004name\202\323\344\223\002+*)/v1beta/{name=propertie"
+ + "s/*/dataStreams/*}\022\333\001\n\020UpdateDataStream\022"
+ + "6.google.analytics.admin.v1beta.UpdateDa"
+ + "taStreamRequest\032).google.analytics.admin"
+ + ".v1beta.DataStream\"d\332A\027data_stream,updat"
+ + "e_mask\202\323\344\223\002D25/v1beta/{data_stream.name="
+ + "properties/*/dataStreams/*}:\013data_stream"
+ + "\022\274\001\n\017ListDataStreams\0225.google.analytics."
+ + "admin.v1beta.ListDataStreamsRequest\0326.go"
+ + "ogle.analytics.admin.v1beta.ListDataStre"
+ + "amsResponse\":\332A\006parent\202\323\344\223\002+\022)/v1beta/{p"
+ + "arent=properties/*}/dataStreams\022\251\001\n\rGetD"
+ + "ataStream\0223.google.analytics.admin.v1bet"
+ + "a.GetDataStreamRequest\032).google.analytic"
+ + "s.admin.v1beta.DataStream\"8\332A\004name\202\323\344\223\002+"
+ + "\022)/v1beta/{name=properties/*/dataStreams"
+ + "/*}\022\354\001\n\017RunAccessReport\0225.google.analyti"
+ + "cs.admin.v1beta.RunAccessReportRequest\0326"
+ + ".google.analytics.admin.v1beta.RunAccess"
+ + "ReportResponse\"j\202\323\344\223\002d\"-/v1beta/{entity="
+ + "properties/*}:runAccessReport:\001*Z0\"+/v1b"
+ + "eta/{entity=accounts/*}:runAccessReport:"
+ + "\001*\032\204\001\312A\035analyticsadmin.googleapis.com\322Aa"
+ + "https://www.googleapis.com/auth/analytic"
+ + "s.edit,https://www.googleapis.com/auth/a"
+ + "nalytics.readonlyBy\n!com.google.analytic"
+ + "s.admin.v1betaB\023AnalyticsAdminProtoP\001Z=c"
+ + "loud.google.com/go/analytics/admin/apiv1"
+ + "beta/adminpb;adminpbb\006proto3"
};
descriptor =
com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom(
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEvent.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEvent.java
index 5b61bd772959..64653d2dc83f 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEvent.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEvent.java
@@ -1154,11 +1154,11 @@ public com.google.protobuf.Parser
- * Output only. Resource name of this conversion event.
+ * Identifier. Resource name of this conversion event.
* Format: properties/{property}/conversionEvents/{conversion_event}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -1179,11 +1179,11 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name of this conversion event.
+ * Identifier. Resource name of this conversion event.
* Format: properties/{property}/conversionEvents/{conversion_event}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -1959,11 +1959,11 @@ public Builder mergeFrom(
*
*
*
- * Output only. Resource name of this conversion event.
+ * Identifier. Resource name of this conversion event.
* Format: properties/{property}/conversionEvents/{conversion_event}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -1983,11 +1983,11 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name of this conversion event.
+ * Identifier. Resource name of this conversion event.
* Format: properties/{property}/conversionEvents/{conversion_event}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -2007,11 +2007,11 @@ public com.google.protobuf.ByteString getNameBytes() {
*
*
*
- * Output only. Resource name of this conversion event.
+ * Identifier. Resource name of this conversion event.
* Format: properties/{property}/conversionEvents/{conversion_event}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The name to set.
* @return This builder for chaining.
@@ -2030,11 +2030,11 @@ public Builder setName(java.lang.String value) {
*
*
*
- * Output only. Resource name of this conversion event.
+ * Identifier. Resource name of this conversion event.
* Format: properties/{property}/conversionEvents/{conversion_event}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return This builder for chaining.
*/
@@ -2049,11 +2049,11 @@ public Builder clearName() {
*
*
*
- * Output only. Resource name of this conversion event.
+ * Identifier. Resource name of this conversion event.
* Format: properties/{property}/conversionEvents/{conversion_event}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The bytes for name to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEventOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEventOrBuilder.java
index 8dc3f3fa2038..f835a0d376f6 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEventOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ConversionEventOrBuilder.java
@@ -30,11 +30,11 @@ public interface ConversionEventOrBuilder
*
*
*
- * Output only. Resource name of this conversion event.
+ * Identifier. Resource name of this conversion event.
* Format: properties/{property}/conversionEvents/{conversion_event}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -44,11 +44,11 @@ public interface ConversionEventOrBuilder
*
*
*
- * Output only. Resource name of this conversion event.
+ * Identifier. Resource name of this conversion event.
* Format: properties/{property}/conversionEvents/{conversion_event}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimension.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimension.java
index 526331316dbe..e0196448d595 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimension.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimension.java
@@ -277,11 +277,11 @@ private DimensionScope(int value) {
*
*
*
- * Output only. Resource name for this CustomDimension resource.
+ * Identifier. Resource name for this CustomDimension resource.
* Format: properties/{property}/customDimensions/{customDimension}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -302,11 +302,11 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name for this CustomDimension resource.
+ * Identifier. Resource name for this CustomDimension resource.
* Format: properties/{property}/customDimensions/{customDimension}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -1021,11 +1021,11 @@ public Builder mergeFrom(
*
*
*
- * Output only. Resource name for this CustomDimension resource.
+ * Identifier. Resource name for this CustomDimension resource.
* Format: properties/{property}/customDimensions/{customDimension}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -1045,11 +1045,11 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name for this CustomDimension resource.
+ * Identifier. Resource name for this CustomDimension resource.
* Format: properties/{property}/customDimensions/{customDimension}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -1069,11 +1069,11 @@ public com.google.protobuf.ByteString getNameBytes() {
*
*
*
- * Output only. Resource name for this CustomDimension resource.
+ * Identifier. Resource name for this CustomDimension resource.
* Format: properties/{property}/customDimensions/{customDimension}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The name to set.
* @return This builder for chaining.
@@ -1092,11 +1092,11 @@ public Builder setName(java.lang.String value) {
*
*
*
- * Output only. Resource name for this CustomDimension resource.
+ * Identifier. Resource name for this CustomDimension resource.
* Format: properties/{property}/customDimensions/{customDimension}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return This builder for chaining.
*/
@@ -1111,11 +1111,11 @@ public Builder clearName() {
*
*
*
- * Output only. Resource name for this CustomDimension resource.
+ * Identifier. Resource name for this CustomDimension resource.
* Format: properties/{property}/customDimensions/{customDimension}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The bytes for name to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimensionOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimensionOrBuilder.java
index beb357d9e747..06e57b52035c 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimensionOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomDimensionOrBuilder.java
@@ -30,11 +30,11 @@ public interface CustomDimensionOrBuilder
*
*
*
- * Output only. Resource name for this CustomDimension resource.
+ * Identifier. Resource name for this CustomDimension resource.
* Format: properties/{property}/customDimensions/{customDimension}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -44,11 +44,11 @@ public interface CustomDimensionOrBuilder
*
*
*
- * Output only. Resource name for this CustomDimension resource.
+ * Identifier. Resource name for this CustomDimension resource.
* Format: properties/{property}/customDimensions/{customDimension}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetric.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetric.java
index 5ecd84685b4b..df7960c04b57 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetric.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetric.java
@@ -762,11 +762,11 @@ private RestrictedMetricType(int value) {
*
*
*
- * Output only. Resource name for this CustomMetric resource.
+ * Identifier. Resource name for this CustomMetric resource.
* Format: properties/{property}/customMetrics/{customMetric}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -787,11 +787,11 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name for this CustomMetric resource.
+ * Identifier. Resource name for this CustomMetric resource.
* Format: properties/{property}/customMetrics/{customMetric}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -1710,11 +1710,11 @@ public Builder mergeFrom(
*
*
*
- * Output only. Resource name for this CustomMetric resource.
+ * Identifier. Resource name for this CustomMetric resource.
* Format: properties/{property}/customMetrics/{customMetric}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -1734,11 +1734,11 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name for this CustomMetric resource.
+ * Identifier. Resource name for this CustomMetric resource.
* Format: properties/{property}/customMetrics/{customMetric}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -1758,11 +1758,11 @@ public com.google.protobuf.ByteString getNameBytes() {
*
*
*
- * Output only. Resource name for this CustomMetric resource.
+ * Identifier. Resource name for this CustomMetric resource.
* Format: properties/{property}/customMetrics/{customMetric}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The name to set.
* @return This builder for chaining.
@@ -1781,11 +1781,11 @@ public Builder setName(java.lang.String value) {
*
*
*
- * Output only. Resource name for this CustomMetric resource.
+ * Identifier. Resource name for this CustomMetric resource.
* Format: properties/{property}/customMetrics/{customMetric}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return This builder for chaining.
*/
@@ -1800,11 +1800,11 @@ public Builder clearName() {
*
*
*
- * Output only. Resource name for this CustomMetric resource.
+ * Identifier. Resource name for this CustomMetric resource.
* Format: properties/{property}/customMetrics/{customMetric}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The bytes for name to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetricOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetricOrBuilder.java
index 625e80a00427..ef611f3b16f3 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetricOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/CustomMetricOrBuilder.java
@@ -30,11 +30,11 @@ public interface CustomMetricOrBuilder
*
*
*
- * Output only. Resource name for this CustomMetric resource.
+ * Identifier. Resource name for this CustomMetric resource.
* Format: properties/{property}/customMetrics/{customMetric}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -44,11 +44,11 @@ public interface CustomMetricOrBuilder
*
*
*
- * Output only. Resource name for this CustomMetric resource.
+ * Identifier. Resource name for this CustomMetric resource.
* Format: properties/{property}/customMetrics/{customMetric}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettings.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettings.java
index c5e6212c280e..d54999f0075d 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettings.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettings.java
@@ -330,11 +330,11 @@ private RetentionDuration(int value) {
*
*
*
- * Output only. Resource name for this DataRetentionSetting resource.
+ * Identifier. Resource name for this DataRetentionSetting resource.
* Format: properties/{property}/dataRetentionSettings
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -355,11 +355,11 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name for this DataRetentionSetting resource.
+ * Identifier. Resource name for this DataRetentionSetting resource.
* Format: properties/{property}/dataRetentionSettings
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -881,11 +881,11 @@ public Builder mergeFrom(
*
*
*
- * Output only. Resource name for this DataRetentionSetting resource.
+ * Identifier. Resource name for this DataRetentionSetting resource.
* Format: properties/{property}/dataRetentionSettings
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -905,11 +905,11 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name for this DataRetentionSetting resource.
+ * Identifier. Resource name for this DataRetentionSetting resource.
* Format: properties/{property}/dataRetentionSettings
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -929,11 +929,11 @@ public com.google.protobuf.ByteString getNameBytes() {
*
*
*
- * Output only. Resource name for this DataRetentionSetting resource.
+ * Identifier. Resource name for this DataRetentionSetting resource.
* Format: properties/{property}/dataRetentionSettings
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The name to set.
* @return This builder for chaining.
@@ -952,11 +952,11 @@ public Builder setName(java.lang.String value) {
*
*
*
- * Output only. Resource name for this DataRetentionSetting resource.
+ * Identifier. Resource name for this DataRetentionSetting resource.
* Format: properties/{property}/dataRetentionSettings
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return This builder for chaining.
*/
@@ -971,11 +971,11 @@ public Builder clearName() {
*
*
*
- * Output only. Resource name for this DataRetentionSetting resource.
+ * Identifier. Resource name for this DataRetentionSetting resource.
* Format: properties/{property}/dataRetentionSettings
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The bytes for name to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettingsOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettingsOrBuilder.java
index 06d985330c34..bf18b49fa049 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettingsOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataRetentionSettingsOrBuilder.java
@@ -30,11 +30,11 @@ public interface DataRetentionSettingsOrBuilder
*
*
*
- * Output only. Resource name for this DataRetentionSetting resource.
+ * Identifier. Resource name for this DataRetentionSetting resource.
* Format: properties/{property}/dataRetentionSettings
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -44,11 +44,11 @@ public interface DataRetentionSettingsOrBuilder
*
*
*
- * Output only. Resource name for this DataRetentionSetting resource.
+ * Identifier. Resource name for this DataRetentionSetting resource.
* Format: properties/{property}/dataRetentionSettings
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettings.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettings.java
index afc8ab4bd8f2..2ab92e88e2e7 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettings.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettings.java
@@ -80,12 +80,12 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
*
*
*
- * Output only. Resource name.
+ * Identifier. Resource name.
* Format: accounts/{account}/dataSharingSettings
* Example: "accounts/1000/dataSharingSettings"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -106,12 +106,12 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name.
+ * Identifier. Resource name.
* Format: accounts/{account}/dataSharingSettings
* Example: "accounts/1000/dataSharingSettings"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -135,8 +135,12 @@ public com.google.protobuf.ByteString getNameBytes() {
*
*
*
- * Allows Google support to access the data in order to help troubleshoot
- * issues.
+ * Allows Google technical support representatives access to your Google
+ * Analytics data and account when necessary to provide service and find
+ * solutions to technical issues.
+ *
+ * This field maps to the "Technical support" field in the Google Analytics
+ * Admin UI.
*
*
* bool sharing_with_google_support_enabled = 2;
@@ -155,9 +159,15 @@ public boolean getSharingWithGoogleSupportEnabled() {
*
*
*
- * Allows Google sales teams that are assigned to the customer to access the
- * data in order to suggest configuration changes to improve results.
- * Sales team restrictions still apply when enabled.
+ * Allows Google access to your Google Analytics account data, including
+ * account usage and configuration data, product spending, and users
+ * associated with your Google Analytics account, so that Google can help you
+ * make the most of Google products, providing you with insights, offers,
+ * recommendations, and optimization tips across Google Analytics and other
+ * Google products for business.
+ *
+ * This field maps to the "Recommendations for your business" field in the
+ * Google Analytics Admin UI.
*
*
* bool sharing_with_google_assigned_sales_enabled = 3;
@@ -176,15 +186,18 @@ public boolean getSharingWithGoogleAssignedSalesEnabled() {
*
*
*
- * Allows any of Google sales to access the data in order to suggest
- * configuration changes to improve results.
+ * Deprecated. This field is no longer used and always returns false.
*
*
- * bool sharing_with_google_any_sales_enabled = 4;
+ * bool sharing_with_google_any_sales_enabled = 4 [deprecated = true];
*
+ * @deprecated
+ * google.analytics.admin.v1beta.DataSharingSettings.sharing_with_google_any_sales_enabled is
+ * deprecated. See google/analytics/admin/v1beta/resources.proto;l=561
* @return The sharingWithGoogleAnySalesEnabled.
*/
@java.lang.Override
+ @java.lang.Deprecated
public boolean getSharingWithGoogleAnySalesEnabled() {
return sharingWithGoogleAnySalesEnabled_;
}
@@ -197,6 +210,9 @@ public boolean getSharingWithGoogleAnySalesEnabled() {
*
*
* Allows Google to use the data to improve other Google products or services.
+ *
+ * This fields maps to the "Google products & services" field in the Google
+ * Analytics Admin UI.
*
*
* bool sharing_with_google_products_enabled = 5;
@@ -215,7 +231,14 @@ public boolean getSharingWithGoogleProductsEnabled() {
*
*
*
- * Allows Google to share the data anonymously in aggregate form with others.
+ * Enable features like predictions, modeled data, and benchmarking that can
+ * provide you with richer business insights when you contribute aggregated
+ * measurement data. The data you share (including information about the
+ * property from which it is shared) is aggregated and de-identified before
+ * being used to generate business insights.
+ *
+ * This field maps to the "Modeling contributions & business insights" field
+ * in the Google Analytics Admin UI.
*
*
* bool sharing_with_others_enabled = 6;
@@ -675,12 +698,12 @@ public Builder mergeFrom(
*
*
*
- * Output only. Resource name.
+ * Identifier. Resource name.
* Format: accounts/{account}/dataSharingSettings
* Example: "accounts/1000/dataSharingSettings"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -700,12 +723,12 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name.
+ * Identifier. Resource name.
* Format: accounts/{account}/dataSharingSettings
* Example: "accounts/1000/dataSharingSettings"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -725,12 +748,12 @@ public com.google.protobuf.ByteString getNameBytes() {
*
*
*
- * Output only. Resource name.
+ * Identifier. Resource name.
* Format: accounts/{account}/dataSharingSettings
* Example: "accounts/1000/dataSharingSettings"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The name to set.
* @return This builder for chaining.
@@ -749,12 +772,12 @@ public Builder setName(java.lang.String value) {
*
*
*
- * Output only. Resource name.
+ * Identifier. Resource name.
* Format: accounts/{account}/dataSharingSettings
* Example: "accounts/1000/dataSharingSettings"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return This builder for chaining.
*/
@@ -769,12 +792,12 @@ public Builder clearName() {
*
*
*
- * Output only. Resource name.
+ * Identifier. Resource name.
* Format: accounts/{account}/dataSharingSettings
* Example: "accounts/1000/dataSharingSettings"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The bytes for name to set.
* @return This builder for chaining.
@@ -796,8 +819,12 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
*
*
*
- * Allows Google support to access the data in order to help troubleshoot
- * issues.
+ * Allows Google technical support representatives access to your Google
+ * Analytics data and account when necessary to provide service and find
+ * solutions to technical issues.
+ *
+ * This field maps to the "Technical support" field in the Google Analytics
+ * Admin UI.
*
*
* bool sharing_with_google_support_enabled = 2;
@@ -813,8 +840,12 @@ public boolean getSharingWithGoogleSupportEnabled() {
*
*
*
- * Allows Google support to access the data in order to help troubleshoot
- * issues.
+ * Allows Google technical support representatives access to your Google
+ * Analytics data and account when necessary to provide service and find
+ * solutions to technical issues.
+ *
+ * This field maps to the "Technical support" field in the Google Analytics
+ * Admin UI.
*
*
* bool sharing_with_google_support_enabled = 2;
@@ -834,8 +865,12 @@ public Builder setSharingWithGoogleSupportEnabled(boolean value) {
*
*
*
- * Allows Google support to access the data in order to help troubleshoot
- * issues.
+ * Allows Google technical support representatives access to your Google
+ * Analytics data and account when necessary to provide service and find
+ * solutions to technical issues.
+ *
+ * This field maps to the "Technical support" field in the Google Analytics
+ * Admin UI.
*
*
* bool sharing_with_google_support_enabled = 2;
@@ -855,9 +890,15 @@ public Builder clearSharingWithGoogleSupportEnabled() {
*
*
*
- * Allows Google sales teams that are assigned to the customer to access the
- * data in order to suggest configuration changes to improve results.
- * Sales team restrictions still apply when enabled.
+ * Allows Google access to your Google Analytics account data, including
+ * account usage and configuration data, product spending, and users
+ * associated with your Google Analytics account, so that Google can help you
+ * make the most of Google products, providing you with insights, offers,
+ * recommendations, and optimization tips across Google Analytics and other
+ * Google products for business.
+ *
+ * This field maps to the "Recommendations for your business" field in the
+ * Google Analytics Admin UI.
*
*
* bool sharing_with_google_assigned_sales_enabled = 3;
@@ -873,9 +914,15 @@ public boolean getSharingWithGoogleAssignedSalesEnabled() {
*
*
*
- * Allows Google sales teams that are assigned to the customer to access the
- * data in order to suggest configuration changes to improve results.
- * Sales team restrictions still apply when enabled.
+ * Allows Google access to your Google Analytics account data, including
+ * account usage and configuration data, product spending, and users
+ * associated with your Google Analytics account, so that Google can help you
+ * make the most of Google products, providing you with insights, offers,
+ * recommendations, and optimization tips across Google Analytics and other
+ * Google products for business.
+ *
+ * This field maps to the "Recommendations for your business" field in the
+ * Google Analytics Admin UI.
*
*
* bool sharing_with_google_assigned_sales_enabled = 3;
@@ -895,9 +942,15 @@ public Builder setSharingWithGoogleAssignedSalesEnabled(boolean value) {
*
*
*
- * Allows Google sales teams that are assigned to the customer to access the
- * data in order to suggest configuration changes to improve results.
- * Sales team restrictions still apply when enabled.
+ * Allows Google access to your Google Analytics account data, including
+ * account usage and configuration data, product spending, and users
+ * associated with your Google Analytics account, so that Google can help you
+ * make the most of Google products, providing you with insights, offers,
+ * recommendations, and optimization tips across Google Analytics and other
+ * Google products for business.
+ *
+ * This field maps to the "Recommendations for your business" field in the
+ * Google Analytics Admin UI.
*
*
* bool sharing_with_google_assigned_sales_enabled = 3;
@@ -917,15 +970,18 @@ public Builder clearSharingWithGoogleAssignedSalesEnabled() {
*
*
*
- * Allows any of Google sales to access the data in order to suggest
- * configuration changes to improve results.
+ * Deprecated. This field is no longer used and always returns false.
*
*
- * bool sharing_with_google_any_sales_enabled = 4;
+ * bool sharing_with_google_any_sales_enabled = 4 [deprecated = true];
*
+ * @deprecated
+ * google.analytics.admin.v1beta.DataSharingSettings.sharing_with_google_any_sales_enabled
+ * is deprecated. See google/analytics/admin/v1beta/resources.proto;l=561
* @return The sharingWithGoogleAnySalesEnabled.
*/
@java.lang.Override
+ @java.lang.Deprecated
public boolean getSharingWithGoogleAnySalesEnabled() {
return sharingWithGoogleAnySalesEnabled_;
}
@@ -934,15 +990,18 @@ public boolean getSharingWithGoogleAnySalesEnabled() {
*
*
*
- * Allows any of Google sales to access the data in order to suggest
- * configuration changes to improve results.
+ * Deprecated. This field is no longer used and always returns false.
*
*
- * bool sharing_with_google_any_sales_enabled = 4;
+ * bool sharing_with_google_any_sales_enabled = 4 [deprecated = true];
*
+ * @deprecated
+ * google.analytics.admin.v1beta.DataSharingSettings.sharing_with_google_any_sales_enabled
+ * is deprecated. See google/analytics/admin/v1beta/resources.proto;l=561
* @param value The sharingWithGoogleAnySalesEnabled to set.
* @return This builder for chaining.
*/
+ @java.lang.Deprecated
public Builder setSharingWithGoogleAnySalesEnabled(boolean value) {
sharingWithGoogleAnySalesEnabled_ = value;
@@ -955,14 +1014,17 @@ public Builder setSharingWithGoogleAnySalesEnabled(boolean value) {
*
*
*
- * Allows any of Google sales to access the data in order to suggest
- * configuration changes to improve results.
+ * Deprecated. This field is no longer used and always returns false.
*
*
- * bool sharing_with_google_any_sales_enabled = 4;
+ * bool sharing_with_google_any_sales_enabled = 4 [deprecated = true];
*
+ * @deprecated
+ * google.analytics.admin.v1beta.DataSharingSettings.sharing_with_google_any_sales_enabled
+ * is deprecated. See google/analytics/admin/v1beta/resources.proto;l=561
* @return This builder for chaining.
*/
+ @java.lang.Deprecated
public Builder clearSharingWithGoogleAnySalesEnabled() {
bitField0_ = (bitField0_ & ~0x00000008);
sharingWithGoogleAnySalesEnabled_ = false;
@@ -977,6 +1039,9 @@ public Builder clearSharingWithGoogleAnySalesEnabled() {
*
*
* Allows Google to use the data to improve other Google products or services.
+ *
+ * This fields maps to the "Google products & services" field in the Google
+ * Analytics Admin UI.
*
*
* bool sharing_with_google_products_enabled = 5;
@@ -993,6 +1058,9 @@ public boolean getSharingWithGoogleProductsEnabled() {
*
*
* Allows Google to use the data to improve other Google products or services.
+ *
+ * This fields maps to the "Google products & services" field in the Google
+ * Analytics Admin UI.
*
*
* bool sharing_with_google_products_enabled = 5;
@@ -1013,6 +1081,9 @@ public Builder setSharingWithGoogleProductsEnabled(boolean value) {
*
*
* Allows Google to use the data to improve other Google products or services.
+ *
+ * This fields maps to the "Google products & services" field in the Google
+ * Analytics Admin UI.
*
*
* bool sharing_with_google_products_enabled = 5;
@@ -1032,7 +1103,14 @@ public Builder clearSharingWithGoogleProductsEnabled() {
*
*
*
- * Allows Google to share the data anonymously in aggregate form with others.
+ * Enable features like predictions, modeled data, and benchmarking that can
+ * provide you with richer business insights when you contribute aggregated
+ * measurement data. The data you share (including information about the
+ * property from which it is shared) is aggregated and de-identified before
+ * being used to generate business insights.
+ *
+ * This field maps to the "Modeling contributions & business insights" field
+ * in the Google Analytics Admin UI.
*
*
* bool sharing_with_others_enabled = 6;
@@ -1048,7 +1126,14 @@ public boolean getSharingWithOthersEnabled() {
*
*
*
- * Allows Google to share the data anonymously in aggregate form with others.
+ * Enable features like predictions, modeled data, and benchmarking that can
+ * provide you with richer business insights when you contribute aggregated
+ * measurement data. The data you share (including information about the
+ * property from which it is shared) is aggregated and de-identified before
+ * being used to generate business insights.
+ *
+ * This field maps to the "Modeling contributions & business insights" field
+ * in the Google Analytics Admin UI.
*
*
* bool sharing_with_others_enabled = 6;
@@ -1068,7 +1153,14 @@ public Builder setSharingWithOthersEnabled(boolean value) {
*
*
*
- * Allows Google to share the data anonymously in aggregate form with others.
+ * Enable features like predictions, modeled data, and benchmarking that can
+ * provide you with richer business insights when you contribute aggregated
+ * measurement data. The data you share (including information about the
+ * property from which it is shared) is aggregated and de-identified before
+ * being used to generate business insights.
+ *
+ * This field maps to the "Modeling contributions & business insights" field
+ * in the Google Analytics Admin UI.
*
*
* bool sharing_with_others_enabled = 6;
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettingsOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettingsOrBuilder.java
index fdbe21868c1d..e9536302590b 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettingsOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataSharingSettingsOrBuilder.java
@@ -30,12 +30,12 @@ public interface DataSharingSettingsOrBuilder
*
*
*
- * Output only. Resource name.
+ * Identifier. Resource name.
* Format: accounts/{account}/dataSharingSettings
* Example: "accounts/1000/dataSharingSettings"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -45,12 +45,12 @@ public interface DataSharingSettingsOrBuilder
*
*
*
- * Output only. Resource name.
+ * Identifier. Resource name.
* Format: accounts/{account}/dataSharingSettings
* Example: "accounts/1000/dataSharingSettings"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -60,8 +60,12 @@ public interface DataSharingSettingsOrBuilder
*
*
*
- * Allows Google support to access the data in order to help troubleshoot
- * issues.
+ * Allows Google technical support representatives access to your Google
+ * Analytics data and account when necessary to provide service and find
+ * solutions to technical issues.
+ *
+ * This field maps to the "Technical support" field in the Google Analytics
+ * Admin UI.
*
*
* bool sharing_with_google_support_enabled = 2;
@@ -74,9 +78,15 @@ public interface DataSharingSettingsOrBuilder
*
*
*
- * Allows Google sales teams that are assigned to the customer to access the
- * data in order to suggest configuration changes to improve results.
- * Sales team restrictions still apply when enabled.
+ * Allows Google access to your Google Analytics account data, including
+ * account usage and configuration data, product spending, and users
+ * associated with your Google Analytics account, so that Google can help you
+ * make the most of Google products, providing you with insights, offers,
+ * recommendations, and optimization tips across Google Analytics and other
+ * Google products for business.
+ *
+ * This field maps to the "Recommendations for your business" field in the
+ * Google Analytics Admin UI.
*
*
* bool sharing_with_google_assigned_sales_enabled = 3;
@@ -89,14 +99,17 @@ public interface DataSharingSettingsOrBuilder
*
*
*
- * Allows any of Google sales to access the data in order to suggest
- * configuration changes to improve results.
+ * Deprecated. This field is no longer used and always returns false.
*
*
- * bool sharing_with_google_any_sales_enabled = 4;
+ * bool sharing_with_google_any_sales_enabled = 4 [deprecated = true];
*
+ * @deprecated
+ * google.analytics.admin.v1beta.DataSharingSettings.sharing_with_google_any_sales_enabled is
+ * deprecated. See google/analytics/admin/v1beta/resources.proto;l=561
* @return The sharingWithGoogleAnySalesEnabled.
*/
+ @java.lang.Deprecated
boolean getSharingWithGoogleAnySalesEnabled();
/**
@@ -104,6 +117,9 @@ public interface DataSharingSettingsOrBuilder
*
*
* Allows Google to use the data to improve other Google products or services.
+ *
+ * This fields maps to the "Google products & services" field in the Google
+ * Analytics Admin UI.
*
*
* bool sharing_with_google_products_enabled = 5;
@@ -116,7 +132,14 @@ public interface DataSharingSettingsOrBuilder
*
*
*
- * Allows Google to share the data anonymously in aggregate form with others.
+ * Enable features like predictions, modeled data, and benchmarking that can
+ * provide you with richer business insights when you contribute aggregated
+ * measurement data. The data you share (including information about the
+ * property from which it is shared) is aggregated and de-identified before
+ * being used to generate business insights.
+ *
+ * This field maps to the "Modeling contributions & business insights" field
+ * in the Google Analytics Admin UI.
*
*
* bool sharing_with_others_enabled = 6;
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStream.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStream.java
index c32c737571aa..e54ae09174ea 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStream.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStream.java
@@ -3307,12 +3307,12 @@ public com.google.analytics.admin.v1beta.DataStream.IosAppStreamData getIosAppSt
*
*
*
- * Output only. Resource name of this Data Stream.
+ * Identifier. Resource name of this Data Stream.
* Format: properties/{property_id}/dataStreams/{stream_id}
* Example: "properties/1000/dataStreams/2000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -3333,12 +3333,12 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name of this Data Stream.
+ * Identifier. Resource name of this Data Stream.
* Format: properties/{property_id}/dataStreams/{stream_id}
* Example: "properties/1000/dataStreams/2000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -4880,12 +4880,12 @@ public Builder clearIosAppStreamData() {
*
*
*
- * Output only. Resource name of this Data Stream.
+ * Identifier. Resource name of this Data Stream.
* Format: properties/{property_id}/dataStreams/{stream_id}
* Example: "properties/1000/dataStreams/2000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -4905,12 +4905,12 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name of this Data Stream.
+ * Identifier. Resource name of this Data Stream.
* Format: properties/{property_id}/dataStreams/{stream_id}
* Example: "properties/1000/dataStreams/2000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -4930,12 +4930,12 @@ public com.google.protobuf.ByteString getNameBytes() {
*
*
*
- * Output only. Resource name of this Data Stream.
+ * Identifier. Resource name of this Data Stream.
* Format: properties/{property_id}/dataStreams/{stream_id}
* Example: "properties/1000/dataStreams/2000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The name to set.
* @return This builder for chaining.
@@ -4954,12 +4954,12 @@ public Builder setName(java.lang.String value) {
*
*
*
- * Output only. Resource name of this Data Stream.
+ * Identifier. Resource name of this Data Stream.
* Format: properties/{property_id}/dataStreams/{stream_id}
* Example: "properties/1000/dataStreams/2000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return This builder for chaining.
*/
@@ -4974,12 +4974,12 @@ public Builder clearName() {
*
*
*
- * Output only. Resource name of this Data Stream.
+ * Identifier. Resource name of this Data Stream.
* Format: properties/{property_id}/dataStreams/{stream_id}
* Example: "properties/1000/dataStreams/2000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The bytes for name to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStreamOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStreamOrBuilder.java
index 0bd738bd483d..d834ad7b4416 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStreamOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/DataStreamOrBuilder.java
@@ -161,12 +161,12 @@ public interface DataStreamOrBuilder
*
*
*
- * Output only. Resource name of this Data Stream.
+ * Identifier. Resource name of this Data Stream.
* Format: properties/{property_id}/dataStreams/{stream_id}
* Example: "properties/1000/dataStreams/2000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -176,12 +176,12 @@ public interface DataStreamOrBuilder
*
*
*
- * Output only. Resource name of this Data Stream.
+ * Identifier. Resource name of this Data Stream.
* Format: properties/{property_id}/dataStreams/{stream_id}
* Example: "properties/1000/dataStreams/2000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLink.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLink.java
index d115fbb36fbe..3486e19ee6c9 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLink.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLink.java
@@ -81,10 +81,10 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
*
*
*
- * Output only. Example format: properties/1234/firebaseLinks/5678
+ * Identifier. Example format: properties/1234/firebaseLinks/5678
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -105,10 +105,10 @@ public java.lang.String getName() {
*
*
*
- * Output only. Example format: properties/1234/firebaseLinks/5678
+ * Identifier. Example format: properties/1234/firebaseLinks/5678
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -625,10 +625,10 @@ public Builder mergeFrom(
*
*
*
- * Output only. Example format: properties/1234/firebaseLinks/5678
+ * Identifier. Example format: properties/1234/firebaseLinks/5678
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -648,10 +648,10 @@ public java.lang.String getName() {
*
*
*
- * Output only. Example format: properties/1234/firebaseLinks/5678
+ * Identifier. Example format: properties/1234/firebaseLinks/5678
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -671,10 +671,10 @@ public com.google.protobuf.ByteString getNameBytes() {
*
*
*
- * Output only. Example format: properties/1234/firebaseLinks/5678
+ * Identifier. Example format: properties/1234/firebaseLinks/5678
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The name to set.
* @return This builder for chaining.
@@ -693,10 +693,10 @@ public Builder setName(java.lang.String value) {
*
*
*
- * Output only. Example format: properties/1234/firebaseLinks/5678
+ * Identifier. Example format: properties/1234/firebaseLinks/5678
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return This builder for chaining.
*/
@@ -711,10 +711,10 @@ public Builder clearName() {
*
*
*
- * Output only. Example format: properties/1234/firebaseLinks/5678
+ * Identifier. Example format: properties/1234/firebaseLinks/5678
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The bytes for name to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLinkOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLinkOrBuilder.java
index 30e504762d4a..b7add34cb06f 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLinkOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/FirebaseLinkOrBuilder.java
@@ -30,10 +30,10 @@ public interface FirebaseLinkOrBuilder
*
*
*
- * Output only. Example format: properties/1234/firebaseLinks/5678
+ * Identifier. Example format: properties/1234/firebaseLinks/5678
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -43,10 +43,10 @@ public interface FirebaseLinkOrBuilder
*
*
*
- * Output only. Example format: properties/1234/firebaseLinks/5678
+ * Identifier. Example format: properties/1234/firebaseLinks/5678
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLink.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLink.java
index 67907d19fb9f..7b66e0a10fc0 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLink.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLink.java
@@ -82,13 +82,13 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
*
*
*
- * Output only. Format:
+ * Identifier. Format:
* properties/{propertyId}/googleAdsLinks/{googleAdsLinkId}
*
* Note: googleAdsLinkId is not the Google Ads customer ID.
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -109,13 +109,13 @@ public java.lang.String getName() {
*
*
*
- * Output only. Format:
+ * Identifier. Format:
* properties/{propertyId}/googleAdsLinks/{googleAdsLinkId}
*
* Note: googleAdsLinkId is not the Google Ads customer ID.
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -930,13 +930,13 @@ public Builder mergeFrom(
*
*
*
- * Output only. Format:
+ * Identifier. Format:
* properties/{propertyId}/googleAdsLinks/{googleAdsLinkId}
*
* Note: googleAdsLinkId is not the Google Ads customer ID.
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -956,13 +956,13 @@ public java.lang.String getName() {
*
*
*
- * Output only. Format:
+ * Identifier. Format:
* properties/{propertyId}/googleAdsLinks/{googleAdsLinkId}
*
* Note: googleAdsLinkId is not the Google Ads customer ID.
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -982,13 +982,13 @@ public com.google.protobuf.ByteString getNameBytes() {
*
*
*
- * Output only. Format:
+ * Identifier. Format:
* properties/{propertyId}/googleAdsLinks/{googleAdsLinkId}
*
* Note: googleAdsLinkId is not the Google Ads customer ID.
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The name to set.
* @return This builder for chaining.
@@ -1007,13 +1007,13 @@ public Builder setName(java.lang.String value) {
*
*
*
- * Output only. Format:
+ * Identifier. Format:
* properties/{propertyId}/googleAdsLinks/{googleAdsLinkId}
*
* Note: googleAdsLinkId is not the Google Ads customer ID.
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return This builder for chaining.
*/
@@ -1028,13 +1028,13 @@ public Builder clearName() {
*
*
*
- * Output only. Format:
+ * Identifier. Format:
* properties/{propertyId}/googleAdsLinks/{googleAdsLinkId}
*
* Note: googleAdsLinkId is not the Google Ads customer ID.
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The bytes for name to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLinkOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLinkOrBuilder.java
index 16dc55c0de42..f035e1cd9326 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLinkOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/GoogleAdsLinkOrBuilder.java
@@ -30,13 +30,13 @@ public interface GoogleAdsLinkOrBuilder
*
*
*
- * Output only. Format:
+ * Identifier. Format:
* properties/{propertyId}/googleAdsLinks/{googleAdsLinkId}
*
* Note: googleAdsLinkId is not the Google Ads customer ID.
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -46,13 +46,13 @@ public interface GoogleAdsLinkOrBuilder
*
*
*
- * Output only. Format:
+ * Identifier. Format:
* properties/{propertyId}/googleAdsLinks/{googleAdsLinkId}
*
* Note: googleAdsLinkId is not the Google Ads customer ID.
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesRequest.java
index 1f4a45ed158c..0acb74324465 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesRequest.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesRequest.java
@@ -77,13 +77,13 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
*
*
*
- * The maximum number of AccountSummary resources to return. The service may
- * return fewer than this value, even if there are additional pages.
- * If unspecified, at most 50 resources will be returned.
- * The maximum value is 200; (higher values will be coerced to the maximum)
+ * Optional. The maximum number of AccountSummary resources to return. The
+ * service may return fewer than this value, even if there are additional
+ * pages. If unspecified, at most 50 resources will be returned. The maximum
+ * value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 1;
+ * int32 page_size = 1 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -101,13 +101,13 @@ public int getPageSize() {
*
*
*
- * A page token, received from a previous `ListAccountSummaries` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListAccountSummaries`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListAccountSummaries`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListAccountSummaries` must match the call
+ * that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -128,13 +128,13 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListAccountSummaries` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListAccountSummaries`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListAccountSummaries`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListAccountSummaries` must match the call
+ * that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -493,13 +493,13 @@ public Builder mergeFrom(
*
*
*
- * The maximum number of AccountSummary resources to return. The service may
- * return fewer than this value, even if there are additional pages.
- * If unspecified, at most 50 resources will be returned.
- * The maximum value is 200; (higher values will be coerced to the maximum)
+ * Optional. The maximum number of AccountSummary resources to return. The
+ * service may return fewer than this value, even if there are additional
+ * pages. If unspecified, at most 50 resources will be returned. The maximum
+ * value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 1;
+ * int32 page_size = 1 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -512,13 +512,13 @@ public int getPageSize() {
*
*
*
- * The maximum number of AccountSummary resources to return. The service may
- * return fewer than this value, even if there are additional pages.
- * If unspecified, at most 50 resources will be returned.
- * The maximum value is 200; (higher values will be coerced to the maximum)
+ * Optional. The maximum number of AccountSummary resources to return. The
+ * service may return fewer than this value, even if there are additional
+ * pages. If unspecified, at most 50 resources will be returned. The maximum
+ * value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 1;
+ * int32 page_size = 1 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageSize to set.
* @return This builder for chaining.
@@ -535,13 +535,13 @@ public Builder setPageSize(int value) {
*
*
*
- * The maximum number of AccountSummary resources to return. The service may
- * return fewer than this value, even if there are additional pages.
- * If unspecified, at most 50 resources will be returned.
- * The maximum value is 200; (higher values will be coerced to the maximum)
+ * Optional. The maximum number of AccountSummary resources to return. The
+ * service may return fewer than this value, even if there are additional
+ * pages. If unspecified, at most 50 resources will be returned. The maximum
+ * value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 1;
+ * int32 page_size = 1 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -558,13 +558,13 @@ public Builder clearPageSize() {
*
*
*
- * A page token, received from a previous `ListAccountSummaries` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListAccountSummaries`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListAccountSummaries`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListAccountSummaries` must match the call
+ * that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -584,13 +584,13 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListAccountSummaries` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListAccountSummaries`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListAccountSummaries`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListAccountSummaries` must match the call
+ * that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -610,13 +610,13 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
*
*
*
- * A page token, received from a previous `ListAccountSummaries` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListAccountSummaries`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListAccountSummaries`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListAccountSummaries` must match the call
+ * that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageToken to set.
* @return This builder for chaining.
@@ -635,13 +635,13 @@ public Builder setPageToken(java.lang.String value) {
*
*
*
- * A page token, received from a previous `ListAccountSummaries` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListAccountSummaries`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListAccountSummaries`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListAccountSummaries` must match the call
+ * that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -656,13 +656,13 @@ public Builder clearPageToken() {
*
*
*
- * A page token, received from a previous `ListAccountSummaries` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListAccountSummaries`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListAccountSummaries`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListAccountSummaries` must match the call
+ * that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The bytes for pageToken to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesRequestOrBuilder.java
index d76cbaa070ad..cb2913a96b72 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesRequestOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountSummariesRequestOrBuilder.java
@@ -30,13 +30,13 @@ public interface ListAccountSummariesRequestOrBuilder
*
*
*
- * The maximum number of AccountSummary resources to return. The service may
- * return fewer than this value, even if there are additional pages.
- * If unspecified, at most 50 resources will be returned.
- * The maximum value is 200; (higher values will be coerced to the maximum)
+ * Optional. The maximum number of AccountSummary resources to return. The
+ * service may return fewer than this value, even if there are additional
+ * pages. If unspecified, at most 50 resources will be returned. The maximum
+ * value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 1;
+ * int32 page_size = 1 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -46,13 +46,13 @@ public interface ListAccountSummariesRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListAccountSummaries` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListAccountSummaries`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListAccountSummaries`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListAccountSummaries` must match the call
+ * that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -62,13 +62,13 @@ public interface ListAccountSummariesRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListAccountSummaries` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListAccountSummaries`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListAccountSummaries`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListAccountSummaries` must match the call
+ * that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsRequest.java
index bc739e9c9bc7..987c7e2eacb9 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsRequest.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsRequest.java
@@ -77,13 +77,13 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
*
*
*
- * The maximum number of resources to return. The service may return
+ * Optional. The maximum number of resources to return. The service may return
* fewer than this value, even if there are additional pages.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 1;
+ * int32 page_size = 1 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -101,13 +101,13 @@ public int getPageSize() {
*
*
*
- * A page token, received from a previous `ListAccounts` call.
+ * Optional. A page token, received from a previous `ListAccounts` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListAccounts` must
* match the call that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -128,13 +128,13 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListAccounts` call.
+ * Optional. A page token, received from a previous `ListAccounts` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListAccounts` must
* match the call that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -533,13 +533,13 @@ public Builder mergeFrom(
*
*
*
- * The maximum number of resources to return. The service may return
+ * Optional. The maximum number of resources to return. The service may return
* fewer than this value, even if there are additional pages.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 1;
+ * int32 page_size = 1 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -552,13 +552,13 @@ public int getPageSize() {
*
*
*
- * The maximum number of resources to return. The service may return
+ * Optional. The maximum number of resources to return. The service may return
* fewer than this value, even if there are additional pages.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 1;
+ * int32 page_size = 1 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageSize to set.
* @return This builder for chaining.
@@ -575,13 +575,13 @@ public Builder setPageSize(int value) {
*
*
*
- * The maximum number of resources to return. The service may return
+ * Optional. The maximum number of resources to return. The service may return
* fewer than this value, even if there are additional pages.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 1;
+ * int32 page_size = 1 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -598,13 +598,13 @@ public Builder clearPageSize() {
*
*
*
- * A page token, received from a previous `ListAccounts` call.
+ * Optional. A page token, received from a previous `ListAccounts` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListAccounts` must
* match the call that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -624,13 +624,13 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListAccounts` call.
+ * Optional. A page token, received from a previous `ListAccounts` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListAccounts` must
* match the call that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -650,13 +650,13 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
*
*
*
- * A page token, received from a previous `ListAccounts` call.
+ * Optional. A page token, received from a previous `ListAccounts` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListAccounts` must
* match the call that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageToken to set.
* @return This builder for chaining.
@@ -675,13 +675,13 @@ public Builder setPageToken(java.lang.String value) {
*
*
*
- * A page token, received from a previous `ListAccounts` call.
+ * Optional. A page token, received from a previous `ListAccounts` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListAccounts` must
* match the call that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -696,13 +696,13 @@ public Builder clearPageToken() {
*
*
*
- * A page token, received from a previous `ListAccounts` call.
+ * Optional. A page token, received from a previous `ListAccounts` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListAccounts` must
* match the call that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The bytes for pageToken to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsRequestOrBuilder.java
index 7e96de060cd0..bb83518340f8 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsRequestOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListAccountsRequestOrBuilder.java
@@ -30,13 +30,13 @@ public interface ListAccountsRequestOrBuilder
*
*
*
- * The maximum number of resources to return. The service may return
+ * Optional. The maximum number of resources to return. The service may return
* fewer than this value, even if there are additional pages.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 1;
+ * int32 page_size = 1 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -46,13 +46,13 @@ public interface ListAccountsRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListAccounts` call.
+ * Optional. A page token, received from a previous `ListAccounts` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListAccounts` must
* match the call that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -62,13 +62,13 @@ public interface ListAccountsRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListAccounts` call.
+ * Optional. A page token, received from a previous `ListAccounts` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListAccounts` must
* match the call that provided the page token.
*
*
- * string page_token = 2;
+ * string page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsRequest.java
index db4b45b3cd57..c04ec8e3c1ce 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsRequest.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsRequest.java
@@ -137,12 +137,12 @@ public com.google.protobuf.ByteString getParentBytes() {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -160,13 +160,13 @@ public int getPageSize() {
*
*
*
- * A page token, received from a previous `ListConversionEvents` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListConversionEvents`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListConversionEvents`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListConversionEvents` must match the call
+ * that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -187,13 +187,13 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListConversionEvents` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListConversionEvents`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListConversionEvents`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListConversionEvents` must match the call
+ * that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -702,12 +702,12 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -720,12 +720,12 @@ public int getPageSize() {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageSize to set.
* @return This builder for chaining.
@@ -742,12 +742,12 @@ public Builder setPageSize(int value) {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -764,13 +764,13 @@ public Builder clearPageSize() {
*
*
*
- * A page token, received from a previous `ListConversionEvents` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListConversionEvents`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListConversionEvents`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListConversionEvents` must match the call
+ * that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -790,13 +790,13 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListConversionEvents` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListConversionEvents`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListConversionEvents`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListConversionEvents` must match the call
+ * that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -816,13 +816,13 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
*
*
*
- * A page token, received from a previous `ListConversionEvents` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListConversionEvents`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListConversionEvents`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListConversionEvents` must match the call
+ * that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageToken to set.
* @return This builder for chaining.
@@ -841,13 +841,13 @@ public Builder setPageToken(java.lang.String value) {
*
*
*
- * A page token, received from a previous `ListConversionEvents` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListConversionEvents`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListConversionEvents`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListConversionEvents` must match the call
+ * that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -862,13 +862,13 @@ public Builder clearPageToken() {
*
*
*
- * A page token, received from a previous `ListConversionEvents` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListConversionEvents`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListConversionEvents`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListConversionEvents` must match the call
+ * that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The bytes for pageToken to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsRequestOrBuilder.java
index 75fa06bff867..303a183633e1 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsRequestOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListConversionEventsRequestOrBuilder.java
@@ -62,12 +62,12 @@ public interface ListConversionEventsRequestOrBuilder
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -77,13 +77,13 @@ public interface ListConversionEventsRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListConversionEvents` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListConversionEvents`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListConversionEvents`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListConversionEvents` must match the call
+ * that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -93,13 +93,13 @@ public interface ListConversionEventsRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListConversionEvents` call.
- * Provide this to retrieve the subsequent page.
- * When paginating, all other parameters provided to `ListConversionEvents`
- * must match the call that provided the page token.
+ * Optional. A page token, received from a previous `ListConversionEvents`
+ * call. Provide this to retrieve the subsequent page. When paginating, all
+ * other parameters provided to `ListConversionEvents` must match the call
+ * that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsRequest.java
index 6d1c3bd34279..91e99b18dbce 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsRequest.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsRequest.java
@@ -135,12 +135,12 @@ public com.google.protobuf.ByteString getParentBytes() {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200 (higher values will be coerced to the maximum).
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -158,14 +158,14 @@ public int getPageSize() {
*
*
*
- * A page token, received from a previous `ListCustomDimensions` call.
- * Provide this to retrieve the subsequent page.
+ * Optional. A page token, received from a previous `ListCustomDimensions`
+ * call. Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListCustomDimensions`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -186,14 +186,14 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListCustomDimensions` call.
- * Provide this to retrieve the subsequent page.
+ * Optional. A page token, received from a previous `ListCustomDimensions`
+ * call. Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListCustomDimensions`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -697,12 +697,12 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200 (higher values will be coerced to the maximum).
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -715,12 +715,12 @@ public int getPageSize() {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200 (higher values will be coerced to the maximum).
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageSize to set.
* @return This builder for chaining.
@@ -737,12 +737,12 @@ public Builder setPageSize(int value) {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200 (higher values will be coerced to the maximum).
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -759,14 +759,14 @@ public Builder clearPageSize() {
*
*
*
- * A page token, received from a previous `ListCustomDimensions` call.
- * Provide this to retrieve the subsequent page.
+ * Optional. A page token, received from a previous `ListCustomDimensions`
+ * call. Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListCustomDimensions`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -786,14 +786,14 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListCustomDimensions` call.
- * Provide this to retrieve the subsequent page.
+ * Optional. A page token, received from a previous `ListCustomDimensions`
+ * call. Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListCustomDimensions`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -813,14 +813,14 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
*
*
*
- * A page token, received from a previous `ListCustomDimensions` call.
- * Provide this to retrieve the subsequent page.
+ * Optional. A page token, received from a previous `ListCustomDimensions`
+ * call. Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListCustomDimensions`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageToken to set.
* @return This builder for chaining.
@@ -839,14 +839,14 @@ public Builder setPageToken(java.lang.String value) {
*
*
*
- * A page token, received from a previous `ListCustomDimensions` call.
- * Provide this to retrieve the subsequent page.
+ * Optional. A page token, received from a previous `ListCustomDimensions`
+ * call. Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListCustomDimensions`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -861,14 +861,14 @@ public Builder clearPageToken() {
*
*
*
- * A page token, received from a previous `ListCustomDimensions` call.
- * Provide this to retrieve the subsequent page.
+ * Optional. A page token, received from a previous `ListCustomDimensions`
+ * call. Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListCustomDimensions`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The bytes for pageToken to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsRequestOrBuilder.java
index ad7e39424549..9ca5d9fd8a7b 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsRequestOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListCustomDimensionsRequestOrBuilder.java
@@ -60,12 +60,12 @@ public interface ListCustomDimensionsRequestOrBuilder
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200 (higher values will be coerced to the maximum).
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -75,14 +75,14 @@ public interface ListCustomDimensionsRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListCustomDimensions` call.
- * Provide this to retrieve the subsequent page.
+ * Optional. A page token, received from a previous `ListCustomDimensions`
+ * call. Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListCustomDimensions`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -92,14 +92,14 @@ public interface ListCustomDimensionsRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListCustomDimensions` call.
- * Provide this to retrieve the subsequent page.
+ * Optional. A page token, received from a previous `ListCustomDimensions`
+ * call. Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListCustomDimensions`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksRequest.java
index 9a5d24628d5b..fa79aaef40ab 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksRequest.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksRequest.java
@@ -139,13 +139,13 @@ public com.google.protobuf.ByteString getParentBytes() {
*
*
*
- * The maximum number of resources to return. The service may return
+ * Optional. The maximum number of resources to return. The service may return
* fewer than this value, even if there are additional pages.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -163,13 +163,13 @@ public int getPageSize() {
*
*
*
- * A page token, received from a previous `ListFirebaseLinks` call.
+ * Optional. A page token, received from a previous `ListFirebaseLinks` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListFirebaseLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -190,13 +190,13 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListFirebaseLinks` call.
+ * Optional. A page token, received from a previous `ListFirebaseLinks` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListFirebaseLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -707,13 +707,13 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
*
*
*
- * The maximum number of resources to return. The service may return
+ * Optional. The maximum number of resources to return. The service may return
* fewer than this value, even if there are additional pages.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -726,13 +726,13 @@ public int getPageSize() {
*
*
*
- * The maximum number of resources to return. The service may return
+ * Optional. The maximum number of resources to return. The service may return
* fewer than this value, even if there are additional pages.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageSize to set.
* @return This builder for chaining.
@@ -749,13 +749,13 @@ public Builder setPageSize(int value) {
*
*
*
- * The maximum number of resources to return. The service may return
+ * Optional. The maximum number of resources to return. The service may return
* fewer than this value, even if there are additional pages.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -772,13 +772,13 @@ public Builder clearPageSize() {
*
*
*
- * A page token, received from a previous `ListFirebaseLinks` call.
+ * Optional. A page token, received from a previous `ListFirebaseLinks` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListFirebaseLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -798,13 +798,13 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListFirebaseLinks` call.
+ * Optional. A page token, received from a previous `ListFirebaseLinks` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListFirebaseLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -824,13 +824,13 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
*
*
*
- * A page token, received from a previous `ListFirebaseLinks` call.
+ * Optional. A page token, received from a previous `ListFirebaseLinks` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListFirebaseLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageToken to set.
* @return This builder for chaining.
@@ -849,13 +849,13 @@ public Builder setPageToken(java.lang.String value) {
*
*
*
- * A page token, received from a previous `ListFirebaseLinks` call.
+ * Optional. A page token, received from a previous `ListFirebaseLinks` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListFirebaseLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -870,13 +870,13 @@ public Builder clearPageToken() {
*
*
*
- * A page token, received from a previous `ListFirebaseLinks` call.
+ * Optional. A page token, received from a previous `ListFirebaseLinks` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListFirebaseLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The bytes for pageToken to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksRequestOrBuilder.java
index ea61d3bc236f..0b186a4b2f74 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksRequestOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListFirebaseLinksRequestOrBuilder.java
@@ -64,13 +64,13 @@ public interface ListFirebaseLinksRequestOrBuilder
*
*
*
- * The maximum number of resources to return. The service may return
+ * Optional. The maximum number of resources to return. The service may return
* fewer than this value, even if there are additional pages.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -80,13 +80,13 @@ public interface ListFirebaseLinksRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListFirebaseLinks` call.
+ * Optional. A page token, received from a previous `ListFirebaseLinks` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListFirebaseLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -96,13 +96,13 @@ public interface ListFirebaseLinksRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListFirebaseLinks` call.
+ * Optional. A page token, received from a previous `ListFirebaseLinks` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListFirebaseLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksRequest.java
index 69ee64e10c5e..1098b63c6b97 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksRequest.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksRequest.java
@@ -135,12 +135,12 @@ public com.google.protobuf.ByteString getParentBytes() {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200 (higher values will be coerced to the maximum).
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -158,14 +158,14 @@ public int getPageSize() {
*
*
*
- * A page token, received from a previous `ListGoogleAdsLinks` call.
+ * Optional. A page token, received from a previous `ListGoogleAdsLinks` call.
* Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListGoogleAdsLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -186,14 +186,14 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListGoogleAdsLinks` call.
+ * Optional. A page token, received from a previous `ListGoogleAdsLinks` call.
* Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListGoogleAdsLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -694,12 +694,12 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200 (higher values will be coerced to the maximum).
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -712,12 +712,12 @@ public int getPageSize() {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200 (higher values will be coerced to the maximum).
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageSize to set.
* @return This builder for chaining.
@@ -734,12 +734,12 @@ public Builder setPageSize(int value) {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200 (higher values will be coerced to the maximum).
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -756,14 +756,14 @@ public Builder clearPageSize() {
*
*
*
- * A page token, received from a previous `ListGoogleAdsLinks` call.
+ * Optional. A page token, received from a previous `ListGoogleAdsLinks` call.
* Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListGoogleAdsLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -783,14 +783,14 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListGoogleAdsLinks` call.
+ * Optional. A page token, received from a previous `ListGoogleAdsLinks` call.
* Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListGoogleAdsLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -810,14 +810,14 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
*
*
*
- * A page token, received from a previous `ListGoogleAdsLinks` call.
+ * Optional. A page token, received from a previous `ListGoogleAdsLinks` call.
* Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListGoogleAdsLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageToken to set.
* @return This builder for chaining.
@@ -836,14 +836,14 @@ public Builder setPageToken(java.lang.String value) {
*
*
*
- * A page token, received from a previous `ListGoogleAdsLinks` call.
+ * Optional. A page token, received from a previous `ListGoogleAdsLinks` call.
* Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListGoogleAdsLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -858,14 +858,14 @@ public Builder clearPageToken() {
*
*
*
- * A page token, received from a previous `ListGoogleAdsLinks` call.
+ * Optional. A page token, received from a previous `ListGoogleAdsLinks` call.
* Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListGoogleAdsLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The bytes for pageToken to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksRequestOrBuilder.java
index 695192660ee1..bd262b2e4f1a 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksRequestOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListGoogleAdsLinksRequestOrBuilder.java
@@ -60,12 +60,12 @@ public interface ListGoogleAdsLinksRequestOrBuilder
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200 (higher values will be coerced to the maximum).
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -75,14 +75,14 @@ public interface ListGoogleAdsLinksRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListGoogleAdsLinks` call.
+ * Optional. A page token, received from a previous `ListGoogleAdsLinks` call.
* Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListGoogleAdsLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -92,14 +92,14 @@ public interface ListGoogleAdsLinksRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListGoogleAdsLinks` call.
+ * Optional. A page token, received from a previous `ListGoogleAdsLinks` call.
* Provide this to retrieve the subsequent page.
*
* When paginating, all other parameters provided to `ListGoogleAdsLinks` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsRequest.java
index 4c15a3a9f46f..6896989d29ff 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsRequest.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsRequest.java
@@ -137,12 +137,12 @@ public com.google.protobuf.ByteString getParentBytes() {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -160,13 +160,13 @@ public int getPageSize() {
*
*
*
- * A page token, received from a previous `ListKeyEvents` call.
+ * Optional. A page token, received from a previous `ListKeyEvents` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListKeyEvents`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -187,13 +187,13 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListKeyEvents` call.
+ * Optional. A page token, received from a previous `ListKeyEvents` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListKeyEvents`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -699,12 +699,12 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -717,12 +717,12 @@ public int getPageSize() {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageSize to set.
* @return This builder for chaining.
@@ -739,12 +739,12 @@ public Builder setPageSize(int value) {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -761,13 +761,13 @@ public Builder clearPageSize() {
*
*
*
- * A page token, received from a previous `ListKeyEvents` call.
+ * Optional. A page token, received from a previous `ListKeyEvents` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListKeyEvents`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -787,13 +787,13 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListKeyEvents` call.
+ * Optional. A page token, received from a previous `ListKeyEvents` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListKeyEvents`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -813,13 +813,13 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
*
*
*
- * A page token, received from a previous `ListKeyEvents` call.
+ * Optional. A page token, received from a previous `ListKeyEvents` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListKeyEvents`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageToken to set.
* @return This builder for chaining.
@@ -838,13 +838,13 @@ public Builder setPageToken(java.lang.String value) {
*
*
*
- * A page token, received from a previous `ListKeyEvents` call.
+ * Optional. A page token, received from a previous `ListKeyEvents` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListKeyEvents`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -859,13 +859,13 @@ public Builder clearPageToken() {
*
*
*
- * A page token, received from a previous `ListKeyEvents` call.
+ * Optional. A page token, received from a previous `ListKeyEvents` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListKeyEvents`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The bytes for pageToken to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsRequestOrBuilder.java
index 708847f236b9..9135771c73eb 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsRequestOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListKeyEventsRequestOrBuilder.java
@@ -62,12 +62,12 @@ public interface ListKeyEventsRequestOrBuilder
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -77,13 +77,13 @@ public interface ListKeyEventsRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListKeyEvents` call.
+ * Optional. A page token, received from a previous `ListKeyEvents` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListKeyEvents`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -93,13 +93,13 @@ public interface ListKeyEventsRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListKeyEvents` call.
+ * Optional. A page token, received from a previous `ListKeyEvents` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListKeyEvents`
* must match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsRequest.java
index 2ed397f8e111..32772e5f0e68 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsRequest.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsRequest.java
@@ -141,12 +141,12 @@ public com.google.protobuf.ByteString getParentBytes() {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 10 resources will be returned.
* The maximum value is 10. Higher values will be coerced to the maximum.
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -164,13 +164,14 @@ public int getPageSize() {
*
*
*
- * A page token, received from a previous `ListMeasurementProtocolSecrets`
- * call. Provide this to retrieve the subsequent page. When paginating, all
- * other parameters provided to `ListMeasurementProtocolSecrets` must match
- * the call that provided the page token.
+ * Optional. A page token, received from a previous
+ * `ListMeasurementProtocolSecrets` call. Provide this to retrieve the
+ * subsequent page. When paginating, all other parameters provided to
+ * `ListMeasurementProtocolSecrets` must match the call that provided the page
+ * token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -191,13 +192,14 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListMeasurementProtocolSecrets`
- * call. Provide this to retrieve the subsequent page. When paginating, all
- * other parameters provided to `ListMeasurementProtocolSecrets` must match
- * the call that provided the page token.
+ * Optional. A page token, received from a previous
+ * `ListMeasurementProtocolSecrets` call. Provide this to retrieve the
+ * subsequent page. When paginating, all other parameters provided to
+ * `ListMeasurementProtocolSecrets` must match the call that provided the page
+ * token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -719,12 +721,12 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 10 resources will be returned.
* The maximum value is 10. Higher values will be coerced to the maximum.
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -737,12 +739,12 @@ public int getPageSize() {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 10 resources will be returned.
* The maximum value is 10. Higher values will be coerced to the maximum.
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageSize to set.
* @return This builder for chaining.
@@ -759,12 +761,12 @@ public Builder setPageSize(int value) {
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 10 resources will be returned.
* The maximum value is 10. Higher values will be coerced to the maximum.
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -781,13 +783,14 @@ public Builder clearPageSize() {
*
*
*
- * A page token, received from a previous `ListMeasurementProtocolSecrets`
- * call. Provide this to retrieve the subsequent page. When paginating, all
- * other parameters provided to `ListMeasurementProtocolSecrets` must match
- * the call that provided the page token.
+ * Optional. A page token, received from a previous
+ * `ListMeasurementProtocolSecrets` call. Provide this to retrieve the
+ * subsequent page. When paginating, all other parameters provided to
+ * `ListMeasurementProtocolSecrets` must match the call that provided the page
+ * token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -807,13 +810,14 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListMeasurementProtocolSecrets`
- * call. Provide this to retrieve the subsequent page. When paginating, all
- * other parameters provided to `ListMeasurementProtocolSecrets` must match
- * the call that provided the page token.
+ * Optional. A page token, received from a previous
+ * `ListMeasurementProtocolSecrets` call. Provide this to retrieve the
+ * subsequent page. When paginating, all other parameters provided to
+ * `ListMeasurementProtocolSecrets` must match the call that provided the page
+ * token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -833,13 +837,14 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
*
*
*
- * A page token, received from a previous `ListMeasurementProtocolSecrets`
- * call. Provide this to retrieve the subsequent page. When paginating, all
- * other parameters provided to `ListMeasurementProtocolSecrets` must match
- * the call that provided the page token.
+ * Optional. A page token, received from a previous
+ * `ListMeasurementProtocolSecrets` call. Provide this to retrieve the
+ * subsequent page. When paginating, all other parameters provided to
+ * `ListMeasurementProtocolSecrets` must match the call that provided the page
+ * token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageToken to set.
* @return This builder for chaining.
@@ -858,13 +863,14 @@ public Builder setPageToken(java.lang.String value) {
*
*
*
- * A page token, received from a previous `ListMeasurementProtocolSecrets`
- * call. Provide this to retrieve the subsequent page. When paginating, all
- * other parameters provided to `ListMeasurementProtocolSecrets` must match
- * the call that provided the page token.
+ * Optional. A page token, received from a previous
+ * `ListMeasurementProtocolSecrets` call. Provide this to retrieve the
+ * subsequent page. When paginating, all other parameters provided to
+ * `ListMeasurementProtocolSecrets` must match the call that provided the page
+ * token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -879,13 +885,14 @@ public Builder clearPageToken() {
*
*
*
- * A page token, received from a previous `ListMeasurementProtocolSecrets`
- * call. Provide this to retrieve the subsequent page. When paginating, all
- * other parameters provided to `ListMeasurementProtocolSecrets` must match
- * the call that provided the page token.
+ * Optional. A page token, received from a previous
+ * `ListMeasurementProtocolSecrets` call. Provide this to retrieve the
+ * subsequent page. When paginating, all other parameters provided to
+ * `ListMeasurementProtocolSecrets` must match the call that provided the page
+ * token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The bytes for pageToken to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsRequestOrBuilder.java
index c4b2c6a339ef..d1f643c8eae7 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsRequestOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListMeasurementProtocolSecretsRequestOrBuilder.java
@@ -64,12 +64,12 @@ public interface ListMeasurementProtocolSecretsRequestOrBuilder
*
*
*
- * The maximum number of resources to return.
+ * Optional. The maximum number of resources to return.
* If unspecified, at most 10 resources will be returned.
* The maximum value is 10. Higher values will be coerced to the maximum.
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -79,13 +79,14 @@ public interface ListMeasurementProtocolSecretsRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListMeasurementProtocolSecrets`
- * call. Provide this to retrieve the subsequent page. When paginating, all
- * other parameters provided to `ListMeasurementProtocolSecrets` must match
- * the call that provided the page token.
+ * Optional. A page token, received from a previous
+ * `ListMeasurementProtocolSecrets` call. Provide this to retrieve the
+ * subsequent page. When paginating, all other parameters provided to
+ * `ListMeasurementProtocolSecrets` must match the call that provided the page
+ * token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -95,13 +96,14 @@ public interface ListMeasurementProtocolSecretsRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListMeasurementProtocolSecrets`
- * call. Provide this to retrieve the subsequent page. When paginating, all
- * other parameters provided to `ListMeasurementProtocolSecrets` must match
- * the call that provided the page token.
+ * Optional. A page token, received from a previous
+ * `ListMeasurementProtocolSecrets` call. Provide this to retrieve the
+ * subsequent page. When paginating, all other parameters provided to
+ * `ListMeasurementProtocolSecrets` must match the call that provided the page
+ * token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesRequest.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesRequest.java
index 5ae791789b2b..07a0c86993b9 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesRequest.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesRequest.java
@@ -161,13 +161,13 @@ public com.google.protobuf.ByteString getFilterBytes() {
*
*
*
- * The maximum number of resources to return. The service may return
+ * Optional. The maximum number of resources to return. The service may return
* fewer than this value, even if there are additional pages.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -185,13 +185,13 @@ public int getPageSize() {
*
*
*
- * A page token, received from a previous `ListProperties` call.
+ * Optional. A page token, received from a previous `ListProperties` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListProperties` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -212,13 +212,13 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListProperties` call.
+ * Optional. A page token, received from a previous `ListProperties` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListProperties` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -827,13 +827,13 @@ public Builder setFilterBytes(com.google.protobuf.ByteString value) {
*
*
*
- * The maximum number of resources to return. The service may return
+ * Optional. The maximum number of resources to return. The service may return
* fewer than this value, even if there are additional pages.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -846,13 +846,13 @@ public int getPageSize() {
*
*
*
- * The maximum number of resources to return. The service may return
+ * Optional. The maximum number of resources to return. The service may return
* fewer than this value, even if there are additional pages.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageSize to set.
* @return This builder for chaining.
@@ -869,13 +869,13 @@ public Builder setPageSize(int value) {
*
*
*
- * The maximum number of resources to return. The service may return
+ * Optional. The maximum number of resources to return. The service may return
* fewer than this value, even if there are additional pages.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -892,13 +892,13 @@ public Builder clearPageSize() {
*
*
*
- * A page token, received from a previous `ListProperties` call.
+ * Optional. A page token, received from a previous `ListProperties` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListProperties` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -918,13 +918,13 @@ public java.lang.String getPageToken() {
*
*
*
- * A page token, received from a previous `ListProperties` call.
+ * Optional. A page token, received from a previous `ListProperties` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListProperties` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
@@ -944,13 +944,13 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
*
*
*
- * A page token, received from a previous `ListProperties` call.
+ * Optional. A page token, received from a previous `ListProperties` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListProperties` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The pageToken to set.
* @return This builder for chaining.
@@ -969,13 +969,13 @@ public Builder setPageToken(java.lang.String value) {
*
*
*
- * A page token, received from a previous `ListProperties` call.
+ * Optional. A page token, received from a previous `ListProperties` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListProperties` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
@@ -990,13 +990,13 @@ public Builder clearPageToken() {
*
*
*
- * A page token, received from a previous `ListProperties` call.
+ * Optional. A page token, received from a previous `ListProperties` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListProperties` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The bytes for pageToken to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesRequestOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesRequestOrBuilder.java
index 688d85d5598e..6ff2d8622b8e 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesRequestOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ListPropertiesRequestOrBuilder.java
@@ -86,13 +86,13 @@ public interface ListPropertiesRequestOrBuilder
*
*
*
- * The maximum number of resources to return. The service may return
+ * Optional. The maximum number of resources to return. The service may return
* fewer than this value, even if there are additional pages.
* If unspecified, at most 50 resources will be returned.
* The maximum value is 200; (higher values will be coerced to the maximum)
*
*
- * int32 page_size = 2;
+ * int32 page_size = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageSize.
*/
@@ -102,13 +102,13 @@ public interface ListPropertiesRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListProperties` call.
+ * Optional. A page token, received from a previous `ListProperties` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListProperties` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The pageToken.
*/
@@ -118,13 +118,13 @@ public interface ListPropertiesRequestOrBuilder
*
*
*
- * A page token, received from a previous `ListProperties` call.
+ * Optional. A page token, received from a previous `ListProperties` call.
* Provide this to retrieve the subsequent page.
* When paginating, all other parameters provided to `ListProperties` must
* match the call that provided the page token.
*
*
- * string page_token = 3;
+ * string page_token = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for pageToken.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecret.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecret.java
index 0f7bde7a9142..8906a2e4c94a 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecret.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecret.java
@@ -81,12 +81,12 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
*
*
*
- * Output only. Resource name of this secret. This secret may be a child of
- * any type of stream. Format:
+ * Identifier. Resource name of this secret. This secret may be a child of any
+ * type of stream. Format:
* properties/{property}/dataStreams/{dataStream}/measurementProtocolSecrets/{measurementProtocolSecret}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -107,12 +107,12 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name of this secret. This secret may be a child of
- * any type of stream. Format:
+ * Identifier. Resource name of this secret. This secret may be a child of any
+ * type of stream. Format:
* properties/{property}/dataStreams/{dataStream}/measurementProtocolSecrets/{measurementProtocolSecret}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -604,12 +604,12 @@ public Builder mergeFrom(
*
*
*
- * Output only. Resource name of this secret. This secret may be a child of
- * any type of stream. Format:
+ * Identifier. Resource name of this secret. This secret may be a child of any
+ * type of stream. Format:
* properties/{property}/dataStreams/{dataStream}/measurementProtocolSecrets/{measurementProtocolSecret}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -629,12 +629,12 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name of this secret. This secret may be a child of
- * any type of stream. Format:
+ * Identifier. Resource name of this secret. This secret may be a child of any
+ * type of stream. Format:
* properties/{property}/dataStreams/{dataStream}/measurementProtocolSecrets/{measurementProtocolSecret}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -654,12 +654,12 @@ public com.google.protobuf.ByteString getNameBytes() {
*
*
*
- * Output only. Resource name of this secret. This secret may be a child of
- * any type of stream. Format:
+ * Identifier. Resource name of this secret. This secret may be a child of any
+ * type of stream. Format:
* properties/{property}/dataStreams/{dataStream}/measurementProtocolSecrets/{measurementProtocolSecret}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The name to set.
* @return This builder for chaining.
@@ -678,12 +678,12 @@ public Builder setName(java.lang.String value) {
*
*
*
- * Output only. Resource name of this secret. This secret may be a child of
- * any type of stream. Format:
+ * Identifier. Resource name of this secret. This secret may be a child of any
+ * type of stream. Format:
* properties/{property}/dataStreams/{dataStream}/measurementProtocolSecrets/{measurementProtocolSecret}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return This builder for chaining.
*/
@@ -698,12 +698,12 @@ public Builder clearName() {
*
*
*
- * Output only. Resource name of this secret. This secret may be a child of
- * any type of stream. Format:
+ * Identifier. Resource name of this secret. This secret may be a child of any
+ * type of stream. Format:
* properties/{property}/dataStreams/{dataStream}/measurementProtocolSecrets/{measurementProtocolSecret}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The bytes for name to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecretOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecretOrBuilder.java
index b59ccee35f4e..07ca4ca3048b 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecretOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/MeasurementProtocolSecretOrBuilder.java
@@ -30,12 +30,12 @@ public interface MeasurementProtocolSecretOrBuilder
*
*
*
- * Output only. Resource name of this secret. This secret may be a child of
- * any type of stream. Format:
+ * Identifier. Resource name of this secret. This secret may be a child of any
+ * type of stream. Format:
* properties/{property}/dataStreams/{dataStream}/measurementProtocolSecrets/{measurementProtocolSecret}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -45,12 +45,12 @@ public interface MeasurementProtocolSecretOrBuilder
*
*
*
- * Output only. Resource name of this secret. This secret may be a child of
- * any type of stream. Format:
+ * Identifier. Resource name of this secret. This secret may be a child of any
+ * type of stream. Format:
* properties/{property}/dataStreams/{dataStream}/measurementProtocolSecrets/{measurementProtocolSecret}
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/Property.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/Property.java
index d657c7570fb4..f78ca54feec1 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/Property.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/Property.java
@@ -88,12 +88,12 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
*
*
*
- * Output only. Resource name of this property.
+ * Identifier. Resource name of this property.
* Format: properties/{property_id}
* Example: "properties/1000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -114,12 +114,12 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name of this property.
+ * Identifier. Resource name of this property.
* Format: properties/{property_id}
* Example: "properties/1000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -1446,12 +1446,12 @@ public Builder mergeFrom(
*
*
*
- * Output only. Resource name of this property.
+ * Identifier. Resource name of this property.
* Format: properties/{property_id}
* Example: "properties/1000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -1471,12 +1471,12 @@ public java.lang.String getName() {
*
*
*
- * Output only. Resource name of this property.
+ * Identifier. Resource name of this property.
* Format: properties/{property_id}
* Example: "properties/1000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
@@ -1496,12 +1496,12 @@ public com.google.protobuf.ByteString getNameBytes() {
*
*
*
- * Output only. Resource name of this property.
+ * Identifier. Resource name of this property.
* Format: properties/{property_id}
* Example: "properties/1000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The name to set.
* @return This builder for chaining.
@@ -1520,12 +1520,12 @@ public Builder setName(java.lang.String value) {
*
*
*
- * Output only. Resource name of this property.
+ * Identifier. Resource name of this property.
* Format: properties/{property_id}
* Example: "properties/1000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return This builder for chaining.
*/
@@ -1540,12 +1540,12 @@ public Builder clearName() {
*
*
*
- * Output only. Resource name of this property.
+ * Identifier. Resource name of this property.
* Format: properties/{property_id}
* Example: "properties/1000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @param value The bytes for name to set.
* @return This builder for chaining.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertyOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertyOrBuilder.java
index a2b2524ec7eb..f2c93200639a 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertyOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertyOrBuilder.java
@@ -30,12 +30,12 @@ public interface PropertyOrBuilder
*
*
*
- * Output only. Resource name of this property.
+ * Identifier. Resource name of this property.
* Format: properties/{property_id}
* Example: "properties/1000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The name.
*/
@@ -45,12 +45,12 @@ public interface PropertyOrBuilder
*
*
*
- * Output only. Resource name of this property.
+ * Identifier. Resource name of this property.
* Format: properties/{property_id}
* Example: "properties/1000"
*
*
- * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
+ * string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
*
* @return The bytes for name.
*/
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertySummary.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertySummary.java
index eb23bd54c899..b7177a604d33 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertySummary.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertySummary.java
@@ -281,6 +281,26 @@ public com.google.protobuf.ByteString getParentBytes() {
}
}
+ public static final int CAN_EDIT_FIELD_NUMBER = 5;
+ private boolean canEdit_ = false;
+
+ /**
+ *
+ *
+ * + * If true, then the user has a Google Analytics role that permits them to + * edit the property. + *+ * + *
bool can_edit = 5;
+ *
+ * @return The canEdit.
+ */
+ @java.lang.Override
+ public boolean getCanEdit() {
+ return canEdit_;
+ }
+
private byte memoizedIsInitialized = -1;
@java.lang.Override
@@ -308,6 +328,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io
if (!com.google.protobuf.GeneratedMessage.isStringEmpty(parent_)) {
com.google.protobuf.GeneratedMessage.writeString(output, 4, parent_);
}
+ if (canEdit_ != false) {
+ output.writeBool(5, canEdit_);
+ }
getUnknownFields().writeTo(output);
}
@@ -330,6 +353,9 @@ public int getSerializedSize() {
if (!com.google.protobuf.GeneratedMessage.isStringEmpty(parent_)) {
size += com.google.protobuf.GeneratedMessage.computeStringSize(4, parent_);
}
+ if (canEdit_ != false) {
+ size += com.google.protobuf.CodedOutputStream.computeBoolSize(5, canEdit_);
+ }
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
@@ -350,6 +376,7 @@ public boolean equals(final java.lang.Object obj) {
if (!getDisplayName().equals(other.getDisplayName())) return false;
if (propertyType_ != other.propertyType_) return false;
if (!getParent().equals(other.getParent())) return false;
+ if (getCanEdit() != other.getCanEdit()) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@@ -369,6 +396,8 @@ public int hashCode() {
hash = (53 * hash) + propertyType_;
hash = (37 * hash) + PARENT_FIELD_NUMBER;
hash = (53 * hash) + getParent().hashCode();
+ hash = (37 * hash) + CAN_EDIT_FIELD_NUMBER;
+ hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getCanEdit());
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
@@ -513,6 +542,7 @@ public Builder clear() {
displayName_ = "";
propertyType_ = 0;
parent_ = "";
+ canEdit_ = false;
return this;
}
@@ -561,6 +591,9 @@ private void buildPartial0(com.google.analytics.admin.v1beta.PropertySummary res
if (((from_bitField0_ & 0x00000008) != 0)) {
result.parent_ = parent_;
}
+ if (((from_bitField0_ & 0x00000010) != 0)) {
+ result.canEdit_ = canEdit_;
+ }
}
@java.lang.Override
@@ -594,6 +627,9 @@ public Builder mergeFrom(com.google.analytics.admin.v1beta.PropertySummary other
bitField0_ |= 0x00000008;
onChanged();
}
+ if (other.getCanEdit() != false) {
+ setCanEdit(other.getCanEdit());
+ }
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
@@ -644,6 +680,12 @@ public Builder mergeFrom(
bitField0_ |= 0x00000008;
break;
} // case 34
+ case 40:
+ {
+ canEdit_ = input.readBool();
+ bitField0_ |= 0x00000010;
+ break;
+ } // case 40
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
@@ -1121,6 +1163,65 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
return this;
}
+ private boolean canEdit_;
+
+ /**
+ *
+ *
+ * + * If true, then the user has a Google Analytics role that permits them to + * edit the property. + *+ * + *
bool can_edit = 5;
+ *
+ * @return The canEdit.
+ */
+ @java.lang.Override
+ public boolean getCanEdit() {
+ return canEdit_;
+ }
+
+ /**
+ *
+ *
+ * + * If true, then the user has a Google Analytics role that permits them to + * edit the property. + *+ * + *
bool can_edit = 5;
+ *
+ * @param value The canEdit to set.
+ * @return This builder for chaining.
+ */
+ public Builder setCanEdit(boolean value) {
+
+ canEdit_ = value;
+ bitField0_ |= 0x00000010;
+ onChanged();
+ return this;
+ }
+
+ /**
+ *
+ *
+ * + * If true, then the user has a Google Analytics role that permits them to + * edit the property. + *+ * + *
bool can_edit = 5;
+ *
+ * @return This builder for chaining.
+ */
+ public Builder clearCanEdit() {
+ bitField0_ = (bitField0_ & ~0x00000010);
+ canEdit_ = false;
+ onChanged();
+ return this;
+ }
+
// @@protoc_insertion_point(builder_scope:google.analytics.admin.v1beta.PropertySummary)
}
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertySummaryOrBuilder.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertySummaryOrBuilder.java
index 3b177221eadc..9ae5fa0eb801 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertySummaryOrBuilder.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/PropertySummaryOrBuilder.java
@@ -141,4 +141,18 @@ public interface PropertySummaryOrBuilder
* @return The bytes for parent.
*/
com.google.protobuf.ByteString getParentBytes();
+
+ /**
+ *
+ *
+ * + * If true, then the user has a Google Analytics role that permits them to + * edit the property. + *+ * + *
bool can_edit = 5;
+ *
+ * @return The canEdit.
+ */
+ boolean getCanEdit();
}
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ResourcesProto.java b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ResourcesProto.java
index 3153eddd8455..c5ddc532c08c 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ResourcesProto.java
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/ResourcesProto.java
@@ -142,9 +142,9 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "s.proto\022\035google.analytics.admin.v1beta\032\037"
+ "google/api/field_behavior.proto\032\031google/"
+ "api/resource.proto\032\037google/protobuf/time"
- + "stamp.proto\032\036google/protobuf/wrappers.proto\"\344\002\n"
+ + "stamp.proto\032\036google/protobuf/wrappers.proto\"\367\002\n"
+ "\007Account\022\021\n"
- + "\004name\030\001 \001(\tB\003\340A\003\0224\n"
+ + "\004name\030\001 \001(\tB\003\340A\010\0224\n"
+ "\013create_time\030\002 \001(\0132\032.google.protobuf.TimestampB\003\340A\003\0224\n"
+ "\013update_time\030\003"
+ " \001(\0132\032.google.protobuf.TimestampB\003\340A\003\022\031\n"
@@ -152,19 +152,20 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\013region_code\030\005 \001(\t\022\024\n"
+ "\007deleted\030\006 \001(\010B\003\340A\003\022T\n"
+ "\020gmp_organization\030\007 \001(\tB:\340A\003\372A4\n"
- + "2marketingplatformadmin.googleapis.com/Organization:>\352A;\n"
- + "%analyticsadmin.googleapis.com/Account\022\022accounts/{account}\"\266\005\n"
+ + "2marketingplatformadmin.googleapis.com/Organization:Q\352AN\n"
+ + "%analyticsadmin."
+ + "googleapis.com/Account\022\022accounts/{account}*\010accounts2\007account\"\314\005\n"
+ "\010Property\022\021\n"
- + "\004name\030\001 \001(\tB\003\340A\003\022G\n\r"
- + "property_type\030\016"
- + " \001(\0162+.google.analytics.admin.v1beta.PropertyTypeB\003\340A\005\0224\n"
+ + "\004name\030\001 \001(\tB\003\340A\010\022G\n\r"
+ + "property_type\030\016 \001(\0162+.g"
+ + "oogle.analytics.admin.v1beta.PropertyTypeB\003\340A\005\0224\n"
+ "\013create_time\030\003 \001(\0132\032.google.protobuf.TimestampB\003\340A\003\0224\n"
+ "\013update_time\030\004"
+ " \001(\0132\032.google.protobuf.TimestampB\003\340A\003\022\023\n"
+ "\006parent\030\002 \001(\tB\003\340A\005\022\031\n"
+ "\014display_name\030\005 \001(\tB\003\340A\002\022J\n"
- + "\021industry_category\030\006"
- + " \001(\0162/.google.analytics.admin.v1beta.IndustryCategory\022\026\n"
+ + "\021industry_category\030\006 \001(\0162/.google.a"
+ + "nalytics.admin.v1beta.IndustryCategory\022\026\n"
+ "\ttime_zone\030\007 \001(\tB\003\340A\002\022\025\n\r"
+ "currency_code\030\010 \001(\t\022G\n\r"
+ "service_level\030\n"
@@ -173,18 +174,19 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\013expire_time\030\014 \001(\0132\032.google.protobuf.TimestampB\003\340A\003\022>\n"
+ "\007account\030\r"
+ " \001(\tB-\340A\005\372A\'\n"
- + "%analyticsadmin.googleapis.com/Account:B\352A?\n"
- + "&analyticsadmin.googleapis.com/Property\022\025properties/{property}\"\360\007\n\n"
+ + "%analyticsadmin.googleapis.com/Account:X\352AU\n"
+ + "&analyticsadmin.googleapis.com/Property\022\025properties/{property}*\n"
+ + "properties2\010property\"\211\010\n\n"
+ "DataStream\022R\n"
- + "\017web_stream_data\030\006 \001(\01327.google.analytics.a"
- + "dmin.v1beta.DataStream.WebStreamDataH\000\022a\n"
- + "\027android_app_stream_data\030\007 \001(\0132>.google"
- + ".analytics.admin.v1beta.DataStream.AndroidAppStreamDataH\000\022Y\n"
+ + "\017web_stream_data\030\006 \001(\01327.google.analytics."
+ + "admin.v1beta.DataStream.WebStreamDataH\000\022a\n"
+ + "\027android_app_stream_data\030\007 \001(\0132>.googl"
+ + "e.analytics.admin.v1beta.DataStream.AndroidAppStreamDataH\000\022Y\n"
+ "\023ios_app_stream_data\030\010"
+ " \001(\0132:.google.analytics.admin.v1beta.DataStream.IosAppStreamDataH\000\022\021\n"
- + "\004name\030\001 \001(\tB\003\340A\003\022N\n"
- + "\004type\030\002 \001(\01628.google.analytics"
- + ".admin.v1beta.DataStream.DataStreamTypeB\006\340A\005\340A\002\022\024\n"
+ + "\004name\030\001 \001(\tB\003\340A\010\022N\n"
+ + "\004type\030\002 \001(\01628.google.analytic"
+ + "s.admin.v1beta.DataStream.DataStreamTypeB\006\340A\005\340A\002\022\024\n"
+ "\014display_name\030\003 \001(\t\0224\n"
+ "\013create_time\030\004 \001(\0132\032.google.protobuf.TimestampB\003\340A\003\0224\n"
+ "\013update_time\030\005"
@@ -203,113 +205,119 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\034DATA_STREAM_TYPE_UNSPECIFIED\020\000\022\023\n"
+ "\017WEB_DATA_STREAM\020\001\022\033\n"
+ "\027ANDROID_APP_DATA_STREAM\020\002\022\027\n"
- + "\023IOS_APP_DATA_STREAM\020\003:^\352A[\n"
- + "(analyticsadmin.googleapis.com/Data"
- + "Stream\022/properties/{property}/dataStreams/{data_stream}B\r\n"
- + "\013stream_data\"\323\001\n"
+ + "\023IOS_APP_DATA_STREAM\020\003:w\352At\n"
+ + "(analyticsadmin.googleapis.com/Dat"
+ + "aStream\022/properties/{property}/dataStreams/{data_stream}*\013dataStreams2\n"
+ + "dataStreamB\r\n"
+ + "\013stream_data\"\361\001\n"
+ "\014FirebaseLink\022\021\n"
- + "\004name\030\001 \001(\tB\003\340A\003\022\024\n"
+ + "\004name\030\001 \001(\tB\003\340A\010\022\024\n"
+ "\007project\030\002 \001(\tB\003\340A\005\0224\n"
+ "\013create_time\030\003"
- + " \001(\0132\032.google.protobuf.TimestampB\003\340A\003:d\352Aa\n"
- + "*analyticsadmin.googleapis.com/FirebaseLink\0223propert"
- + "ies/{property}/firebaseLinks/{firebase_link}\"\230\003\n\r"
+ + " \001(\0132\032.google.protobuf.TimestampB\003\340A\003:\201\001\352A~\n"
+ + "*analyticsadmin.googleapi"
+ + "s.com/FirebaseLink\0223properties/{property}/firebaseLinks/{firebase_link}*\r"
+ + "firebaseLinks2\014firebaseLink\"\271\003\n\r"
+ "GoogleAdsLink\022\021\n"
- + "\004name\030\001 \001(\tB\003\340A\003\022\030\n"
+ + "\004name\030\001 \001(\tB\003\340A\010\022\030\n"
+ "\013customer_id\030\003 \001(\tB\003\340A\005\022\037\n"
+ "\022can_manage_clients\030\004 \001(\010B\003\340A\003\022?\n"
+ "\033ads_personalization_enabled\030\005"
+ " \001(\0132\032.google.protobuf.BoolValue\0224\n"
+ "\013create_time\030\007 \001(\0132\032.google.protobuf.TimestampB\003\340A\003\0224\n"
+ "\013update_time\030\010 \001(\0132\032.google.protobuf.TimestampB\003\340A\003\022\"\n"
- + "\025creator_email_address\030\t \001(\tB\003\340A\003:h\352Ae\n"
- + "+analyticsadmin.googleapis.com/GoogleAdsLink\022"
- + "6properties/{property}/googleAdsLinks/{google_ads_link}\"\353\002\n"
+ + "\025creator_email_address\030\t \001(\tB\003\340A\003:\210\001\352A\204\001\n"
+ + "+analyticsadmin.googleapis.com/GoogleAdsLink\0226properties/{property}"
+ + "/googleAdsLinks/{google_ads_link}*\016googleAdsLinks2\r"
+ + "googleAdsLink\"\233\003\n"
+ "\023DataSharingSettings\022\021\n"
- + "\004name\030\001 \001(\tB\003\340A\003\022+\n"
+ + "\004name\030\001 \001(\tB\003\340A\010\022+\n"
+ "#sharing_with_google_support_enabled\030\002 \001(\010\0222\n"
- + "*sharing_with_google_assigned_sales_enabled\030\003 \001(\010\022-\n"
- + "%sharing_with_google_any_sales_enabled\030\004 \001(\010\022,\n"
+ + "*sharing_with_google_assigned_sales_enabled\030\003 \001(\010\0221\n"
+ + "%sharing_with_google_any_sales_enabled\030\004 \001(\010B\002\030\001\022,\n"
+ "$sharing_with_google_products_enabled\030\005 \001(\010\022#\n"
- + "\033sharing_with_others_enabled\030\006 \001(\010:^\352A[\n"
- + "1analyticsadmin.googleapis.co"
- + "m/DataSharingSettings\022&accounts/{account}/dataSharingSettings\"\224\002\n"
- + "\016AccountSummary\022\014\n"
- + "\004name\030\001 \001(\t\022;\n"
+ + "\033sharing_with_others_enabled\030\006 \001(\010:\211\001\352A\205\001\n"
+ + "1analyticsadmin.googleapis.com/DataSharingSettings\022&ac"
+ + "counts/{account}/dataSharingSettings*\023da"
+ + "taSharingSettings2\023dataSharingSettings\"\273\002\n"
+ + "\016AccountSummary\022\021\n"
+ + "\004name\030\001 \001(\tB\003\340A\010\022;\n"
+ "\007account\030\002 \001(\tB*\372A\'\n"
+ "%analyticsadmin.googleapis.com/Account\022\024\n"
+ "\014display_name\030\003 \001(\t\022J\n"
- + "\022property_summaries\030\004"
- + " \003(\0132..google.analytics.admin.v1beta.PropertySummary:U\352AR\n"
- + ",analyticsadmin.googl"
- + "eapis.com/AccountSummary\022\"accountSummaries/{account_summary}\"\272\001\n"
+ + "\022property_summaries\030\004 \003(\0132..google.ana"
+ + "lytics.admin.v1beta.PropertySummary:w\352At\n"
+ + ",analyticsadmin.googleapis.com/AccountS"
+ + "ummary\022\"accountSummaries/{account_summary}*\020accountSummaries2\016accountSummary\"\314\001\n"
+ "\017PropertySummary\022=\n"
+ "\010property\030\001 \001(\tB+\372A(\n"
+ "&analyticsadmin.googleapis.com/Property\022\024\n"
+ "\014display_name\030\002 \001(\t\022B\n\r"
+ "property_type\030\003 \001(\0162+.google.analytics.admin.v1beta.PropertyType\022\016\n"
- + "\006parent\030\004 \001(\t\"\216\002\n"
+ + "\006parent\030\004 \001(\t\022\020\n"
+ + "\010can_edit\030\005 \001(\010\"\305\002\n"
+ "\031MeasurementProtocolSecret\022\021\n"
- + "\004name\030\001 \001(\tB\003\340A\003\022\031\n"
+ + "\004name\030\001 \001(\tB\003\340A\010\022\031\n"
+ "\014display_name\030\002 \001(\tB\003\340A\002\022\031\n"
- + "\014secret_value\030\003 \001(\tB\003\340A\003:\247\001\352A\243\001\n"
- + "7analyticsadmin.googleapis.com/MeasurementProtocolSecret\022hproperties/{property}/"
- + "dataStreams/{data_stream}/measurementPro"
- + "tocolSecrets/{measurement_protocol_secret}\"\210\002\n"
+ + "\014secret_value\030\003 \001(\tB\003\340A\003:\336\001\352A\332\001\n"
+ + "7analyticsadmin.googleapis.com/MeasurementProt"
+ + "ocolSecret\022hproperties/{property}/dataStreams/{data_stream}/measurementProtocolS"
+ + "ecrets/{measurement_protocol_secret}*\032me"
+ + "asurementProtocolSecrets2\031measurementProtocolSecret\"\210\002\n"
+ "\022ChangeHistoryEvent\022\n\n"
+ "\002id\030\001 \001(\t\022/\n"
+ "\013change_time\030\002 \001(\0132\032.google.protobuf.Timestamp\022<\n\n"
+ "actor_type\030\003 \001(\0162(.google.analytics.admin.v1beta.ActorType\022\030\n"
+ "\020user_actor_email\030\004 \001(\t\022\030\n"
+ "\020changes_filtered\030\005 \001(\010\022C\n"
- + "\007changes\030\006"
- + " \003(\01322.google.analytics.admin.v1beta.ChangeHistoryChange\"\252\007\n"
+ + "\007changes\030\006 \003(\01322.google.anal"
+ + "ytics.admin.v1beta.ChangeHistoryChange\"\252\007\n"
+ "\023ChangeHistoryChange\022\020\n"
+ "\010resource\030\001 \001(\t\0229\n"
+ "\006action\030\002 \001(\0162).google.analytics.admin.v1beta.ActionType\022h\n"
- + "\026resource_before_change\030\003 \001"
- + "(\0132H.google.analytics.admin.v1beta.ChangeHistoryChange.ChangeHistoryResource\022g\n"
- + "\025resource_after_change\030\004 \001(\0132H.google.ana"
- + "lytics.admin.v1beta.ChangeHistoryChange.ChangeHistoryResource\032\362\004\n"
+ + "\026resource_before_change\030\003 \001(\0132H.google.analytics.admin.v1b"
+ + "eta.ChangeHistoryChange.ChangeHistoryResource\022g\n"
+ + "\025resource_after_change\030\004 \001(\0132H.g"
+ + "oogle.analytics.admin.v1beta.ChangeHistoryChange.ChangeHistoryResource\032\362\004\n"
+ "\025ChangeHistoryResource\0229\n"
+ "\007account\030\001 \001(\0132&.google.analytics.admin.v1beta.AccountH\000\022;\n"
+ "\010property\030\002 \001(\0132\'.google.analytics.admin.v1beta.PropertyH\000\022D\n\r"
- + "firebase_link\030\006"
- + " \001(\0132+.google.analytics.admin.v1beta.FirebaseLinkH\000\022G\n"
- + "\017google_ads_link\030\007"
- + " \001(\0132,.google.analytics.admin.v1beta.GoogleAdsLinkH\000\022J\n"
+ + "firebase_link\030\006 \001(\0132"
+ + "+.google.analytics.admin.v1beta.FirebaseLinkH\000\022G\n"
+ + "\017google_ads_link\030\007 \001(\0132,.google"
+ + ".analytics.admin.v1beta.GoogleAdsLinkH\000\022J\n"
+ "\020conversion_event\030\013"
+ " \001(\0132..google.analytics.admin.v1beta.ConversionEventH\000\022_\n"
- + "\033measurement_protocol_secret\030\014 \001(\01328.google.analyti"
- + "cs.admin.v1beta.MeasurementProtocolSecretH\000\022W\n"
- + "\027data_retention_settings\030\017 \001(\01324.g"
- + "oogle.analytics.admin.v1beta.DataRetentionSettingsH\000\022@\n"
- + "\013data_stream\030\022 \001(\0132).google.analytics.admin.v1beta.DataStreamH\000B\n"
- + "\n"
- + "\010resource\"\336\005\n"
+ + "\033measurement_protocol_secret\030\014 \001(\01328.googl"
+ + "e.analytics.admin.v1beta.MeasurementProtocolSecretH\000\022W\n"
+ + "\027data_retention_settings\030\017"
+ + " \001(\01324.google.analytics.admin.v1beta.DataRetentionSettingsH\000\022@\n"
+ + "\013data_stream\030\022 \001(\0132).google.analytics.admin.v1beta.DataStreamH\000B\n\n"
+ + "\010resource\"\203\006\n"
+ "\017ConversionEvent\022\021\n"
- + "\004name\030\001 \001(\tB\003\340A\003\022\027\n\n"
+ + "\004name\030\001 \001(\tB\003\340A\010\022\027\n\n"
+ "event_name\030\002 \001(\tB\003\340A\005\0224\n"
+ "\013create_time\030\003"
+ " \001(\0132\032.google.protobuf.TimestampB\003\340A\003\022\026\n"
+ "\tdeletable\030\004 \001(\010B\003\340A\003\022\023\n"
+ "\006custom\030\005 \001(\010B\003\340A\003\022e\n"
- + "\017counting_method\030\006 \001(\0162G"
- + ".google.analytics.admin.v1beta.ConversionEvent.ConversionCountingMethodB\003\340A\001\022q\n"
- + "\030default_conversion_value\030\007 \001(\0132E.google."
- + "analytics.admin.v1beta.ConversionEvent.DefaultConversionValueB\003\340A\001H\000\210\001\001\032d\n"
+ + "\017counting_method\030\006 \001(\0162G.google.analytics.admin.v1beta."
+ + "ConversionEvent.ConversionCountingMethodB\003\340A\001\022q\n"
+ + "\030default_conversion_value\030\007 \001(\0132"
+ + "E.google.analytics.admin.v1beta.Conversi"
+ + "onEvent.DefaultConversionValueB\003\340A\001H\000\210\001\001\032d\n"
+ "\026DefaultConversionValue\022\022\n"
- + "\005value\030\001 \001(\001H\000\210\001\001\022\032\n"
- + "\r"
+ + "\005value\030\001 \001(\001H\000\210\001\001\022\032\n\r"
+ "currency_code\030\002 \001(\tH\001\210\001\001B\010\n"
+ "\006_valueB\020\n"
+ "\016_currency_code\"p\n"
+ "\030ConversionCountingMethod\022*\n"
+ "&CONVERSION_COUNTING_METHOD_UNSPECIFIED\020\000\022\022\n"
+ "\016ONCE_PER_EVENT\020\001\022\024\n"
- + "\020ONCE_PER_SESSION\020\002:m\352Aj\n"
- + "-analyticsadmin.googleapis.com/ConversionEvent\0229properties/{propert"
- + "y}/conversionEvents/{conversion_event}B\033\n"
+ + "\020ONCE_PER_SESSION\020\002:\221\001\352A\215\001\n"
+ + "-analyticsadmin.googleapis.com/ConversionEvent\0229properti"
+ + "es/{property}/conversionEvents/{conversi"
+ + "on_event}*\020conversionEvents2\017conversionEventB\033\n"
+ "\031_default_conversion_value\"\325\004\n"
+ "\010KeyEvent\022\021\n"
+ "\004name\030\001 \001(\tB\003\340A\003\022\027\n\n"
@@ -329,34 +337,35 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\033COUNTING_METHOD_UNSPECIFIED\020\000\022\022\n"
+ "\016ONCE_PER_EVENT\020\001\022\024\n"
+ "\020ONCE_PER_SESSION\020\002:m\352Aj\n"
- + "&analyticsadmin.googleapis.com/KeyEven"
- + "t\022+properties/{property}/keyEvents/{key_event}*\tkeyEvents2\010keyEvent\"\273\003\n"
+ + "&analyticsadmin.googleapis.com/K"
+ + "eyEvent\022+properties/{property}/keyEvents/{key_event}*"
+ + "\tkeyEvents2\010keyEvent\"\340\003\n"
+ "\017CustomDimension\022\021\n"
- + "\004name\030\001 \001(\tB\003\340A\003\022\036\n"
+ + "\004name\030\001 \001(\tB\003\340A\010\022\036\n"
+ "\016parameter_name\030\002 \001(\tB\006\340A\002\340A\005\022\031\n"
+ "\014display_name\030\003 \001(\tB\003\340A\002\022\030\n"
+ "\013description\030\004 \001(\tB\003\340A\001\022T\n"
- + "\005scope\030\005"
- + " \001(\0162=.google.analytics.admin.v1beta.CustomDimension.DimensionScopeB\006\340A\002\340A\005\022)\n"
+ + "\005scope\030\005 \001(\0162=.google.analytics.admin.v1"
+ + "beta.CustomDimension.DimensionScopeB\006\340A\002\340A\005\022)\n"
+ "\034disallow_ads_personalization\030\006 \001(\010B\003\340A\001\"P\n"
+ "\016DimensionScope\022\037\n"
+ "\033DIMENSION_SCOPE_UNSPECIFIED\020\000\022\t\n"
+ "\005EVENT\020\001\022\010\n"
+ "\004USER\020\002\022\010\n"
- + "\004ITEM\020\003:m\352Aj\n"
- + "-analyticsadmin.googleapis.com/C"
- + "ustomDimension\0229properties/{property}/customDimensions/{custom_dimension}\"\302\006\n"
+ + "\004ITEM\020\003:\221\001\352A\215\001\n"
+ + "-analyticsadmin.googleapis.com/CustomDimension\0229properties/{prop"
+ + "erty}/customDimensions/{custom_dimension}*\020customDimensions2\017customDimension\"\340\006\n"
+ "\014CustomMetric\022\021\n"
- + "\004name\030\001 \001(\tB\003\340A\003\022\036\n"
+ + "\004name\030\001 \001(\tB\003\340A\010\022\036\n"
+ "\016parameter_name\030\002 \001(\tB\006\340A\002\340A\005\022\031\n"
+ "\014display_name\030\003 \001(\tB\003\340A\002\022\030\n"
+ "\013description\030\004 \001(\tB\003\340A\001\022Z\n"
- + "\020measurement_unit\030\005 \001(\0162;.google.analytics."
- + "admin.v1beta.CustomMetric.MeasurementUnitB\003\340A\002\022N\n"
- + "\005scope\030\006 \001(\01627.google.analytics"
- + ".admin.v1beta.CustomMetric.MetricScopeB\006\340A\002\340A\005\022e\n"
- + "\026restricted_metric_type\030\010 \003(\0162@"
- + ".google.analytics.admin.v1beta.CustomMetric.RestrictedMetricTypeB\003\340A\001\"\267\001\n"
+ + "\020measurement_unit\030\005 \001(\0162;.google.analyti"
+ + "cs.admin.v1beta.CustomMetric.MeasurementUnitB\003\340A\002\022N\n"
+ + "\005scope\030\006 \001(\01627.google.analyt"
+ + "ics.admin.v1beta.CustomMetric.MetricScopeB\006\340A\002\340A\005\022e\n"
+ + "\026restricted_metric_type\030\010 \003("
+ + "\0162@.google.analytics.admin.v1beta.CustomMetric.RestrictedMetricTypeB\003\340A\001\"\267\001\n"
+ "\017MeasurementUnit\022 \n"
+ "\034MEASUREMENT_UNIT_UNSPECIFIED\020\000\022\014\n"
+ "\010STANDARD\020\001\022\014\n"
@@ -376,15 +385,16 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\024RestrictedMetricType\022&\n"
+ "\"RESTRICTED_METRIC_TYPE_UNSPECIFIED\020\000\022\r\n"
+ "\tCOST_DATA\020\001\022\020\n"
- + "\014REVENUE_DATA\020\002:d\352Aa\n"
- + "*analyticsadmin.googleapis"
- + ".com/CustomMetric\0223properties/{property}/customMetrics/{custom_metric}\"\260\004\n"
+ + "\014REVENUE_DATA\020\002:\201\001\352A~\n"
+ + "*analyticsadmin.google"
+ + "apis.com/CustomMetric\0223properties/{property}/customMetrics/{custom_metric}*\r"
+ + "customMetrics2\014customMetric\"\340\004\n"
+ "\025DataRetentionSettings\022\021\n"
- + "\004name\030\001 \001(\tB\003\340A\003\022i\n"
- + "\024event_data_retention\030\002 \001(\0162F.google.analy"
- + "tics.admin.v1beta.DataRetentionSettings.RetentionDurationB\003\340A\002\022h\n"
- + "\023user_data_retention\030\004 \001(\0162F.google.analytics.admin.v1b"
- + "eta.DataRetentionSettings.RetentionDurationB\003\340A\002\022\'\n"
+ + "\004name\030\001 \001(\tB\003\340A\010\022i\n"
+ + "\024event_data_retention\030\002 \001(\0162F.google.analytics.ad"
+ + "min.v1beta.DataRetentionSettings.RetentionDurationB\003\340A\002\022h\n"
+ + "\023user_data_retention\030\004 \001(\0162F.google.analytics.admin.v1beta.Dat"
+ + "aRetentionSettings.RetentionDurationB\003\340A\002\022\'\n"
+ "\037reset_user_data_on_new_activity\030\003 \001(\010\"\236\001\n"
+ "\021RetentionDuration\022\"\n"
+ "\036RETENTION_DURATION_UNSPECIFIED\020\000\022\016\n\n"
@@ -392,9 +402,9 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\017FOURTEEN_MONTHS\020\003\022\025\n"
+ "\021TWENTY_SIX_MONTHS\020\004\022\027\n"
+ "\023THIRTY_EIGHT_MONTHS\020\005\022\020\n"
- + "\014FIFTY_MONTHS\020\006:e\352Ab\n"
- + "3analyticsadmin.googleap"
- + "is.com/DataRetentionSettings\022+properties/{property}/dataRetentionSettings*\252\004\n"
+ + "\014FIFTY_MONTHS\020\006:\224\001\352A\220\001\n"
+ + "3analyticsadmin.googleapis.com/DataRetentionSettings\022+properties/{pro"
+ + "perty}/dataRetentionSettings*\025dataRetentionSettings2\025dataRetentionSettings*\252\004\n"
+ "\020IndustryCategory\022!\n"
+ "\035INDUSTRY_CATEGORY_UNSPECIFIED\020\000\022\016\n\n"
+ "AUTOMOTIVE\020\001\022#\n"
@@ -462,10 +472,10 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\026PROPERTY_TYPE_ORDINARY\020\001\022\035\n"
+ "\031PROPERTY_TYPE_SUBPROPERTY\020\002\022\030\n"
+ "\024PROPERTY_TYPE_ROLLUP\020\003B\311\001\n"
- + "!com.google.analytics.admin.v1betaB\016ResourcesProtoP\001Z=cloud.goog"
- + "le.com/go/analytics/admin/apiv1beta/adminpb;adminpb\352AR\n"
- + "2marketingplatformadmin.googleapis.com/Organization\022\034organization"
- + "s/{organization}b\006proto3"
+ + "!com.google.analytics.admin.v1betaB\016ResourcesProtoP\001Z=cloud.goo"
+ + "gle.com/go/analytics/admin/apiv1beta/adminpb;adminpb\352AR\n"
+ + "2marketingplatformadmin.googleapis.com/Organization\022\034organizatio"
+ + "ns/{organization}b\006proto3"
};
descriptor =
com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom(
@@ -599,7 +609,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
new com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_google_analytics_admin_v1beta_PropertySummary_descriptor,
new java.lang.String[] {
- "Property", "DisplayName", "PropertyType", "Parent",
+ "Property", "DisplayName", "PropertyType", "Parent", "CanEdit",
});
internal_static_google_analytics_admin_v1beta_MeasurementProtocolSecret_descriptor =
getDescriptor().getMessageType(8);
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/proto/google/analytics/admin/v1beta/access_report.proto b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/proto/google/analytics/admin/v1beta/access_report.proto
index 38c25d7cbb94..b73ebc29d774 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/proto/google/analytics/admin/v1beta/access_report.proto
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/proto/google/analytics/admin/v1beta/access_report.proto
@@ -1,4 +1,4 @@
-// Copyright 2025 Google LLC
+// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/proto/google/analytics/admin/v1beta/analytics_admin.proto b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/proto/google/analytics/admin/v1beta/analytics_admin.proto
index 7f61587d964d..78ec8e40db36 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/proto/google/analytics/admin/v1beta/analytics_admin.proto
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/proto/google/analytics/admin/v1beta/analytics_admin.proto
@@ -1,4 +1,4 @@
-// Copyright 2025 Google LLC
+// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -736,17 +736,17 @@ message GetAccountRequest {
// Request message for ListAccounts RPC.
message ListAccountsRequest {
- // The maximum number of resources to return. The service may return
+ // Optional. The maximum number of resources to return. The service may return
// fewer than this value, even if there are additional pages.
// If unspecified, at most 50 resources will be returned.
// The maximum value is 200; (higher values will be coerced to the maximum)
- int32 page_size = 1;
+ int32 page_size = 1 [(google.api.field_behavior) = OPTIONAL];
- // A page token, received from a previous `ListAccounts` call.
+ // Optional. A page token, received from a previous `ListAccounts` call.
// Provide this to retrieve the subsequent page.
// When paginating, all other parameters provided to `ListAccounts` must
// match the call that provided the page token.
- string page_token = 2;
+ string page_token = 2 [(google.api.field_behavior) = OPTIONAL];
// Whether to include soft-deleted (ie: "trashed") Accounts in the
// results. Accounts can be inspected to determine whether they are deleted or
@@ -840,17 +840,17 @@ message ListPropertiesRequest {
// ```
string filter = 1 [(google.api.field_behavior) = REQUIRED];
- // The maximum number of resources to return. The service may return
+ // Optional. The maximum number of resources to return. The service may return
// fewer than this value, even if there are additional pages.
// If unspecified, at most 50 resources will be returned.
// The maximum value is 200; (higher values will be coerced to the maximum)
- int32 page_size = 2;
+ int32 page_size = 2 [(google.api.field_behavior) = OPTIONAL];
- // A page token, received from a previous `ListProperties` call.
+ // Optional. A page token, received from a previous `ListProperties` call.
// Provide this to retrieve the subsequent page.
// When paginating, all other parameters provided to `ListProperties` must
// match the call that provided the page token.
- string page_token = 3;
+ string page_token = 3 [(google.api.field_behavior) = OPTIONAL];
// Whether to include soft-deleted (ie: "trashed") Properties in the
// results. Properties can be inspected to determine whether they are deleted
@@ -944,17 +944,17 @@ message ListFirebaseLinksRequest {
}
];
- // The maximum number of resources to return. The service may return
+ // Optional. The maximum number of resources to return. The service may return
// fewer than this value, even if there are additional pages.
// If unspecified, at most 50 resources will be returned.
// The maximum value is 200; (higher values will be coerced to the maximum)
- int32 page_size = 2;
+ int32 page_size = 2 [(google.api.field_behavior) = OPTIONAL];
- // A page token, received from a previous `ListFirebaseLinks` call.
+ // Optional. A page token, received from a previous `ListFirebaseLinks` call.
// Provide this to retrieve the subsequent page.
// When paginating, all other parameters provided to `ListFirebaseLinks` must
// match the call that provided the page token.
- string page_token = 3;
+ string page_token = 3 [(google.api.field_behavior) = OPTIONAL];
}
// Response message for ListFirebaseLinks RPC
@@ -1017,17 +1017,17 @@ message ListGoogleAdsLinksRequest {
}
];
- // The maximum number of resources to return.
+ // Optional. The maximum number of resources to return.
// If unspecified, at most 50 resources will be returned.
// The maximum value is 200 (higher values will be coerced to the maximum).
- int32 page_size = 2;
+ int32 page_size = 2 [(google.api.field_behavior) = OPTIONAL];
- // A page token, received from a previous `ListGoogleAdsLinks` call.
+ // Optional. A page token, received from a previous `ListGoogleAdsLinks` call.
// Provide this to retrieve the subsequent page.
//
// When paginating, all other parameters provided to `ListGoogleAdsLinks` must
// match the call that provided the page token.
- string page_token = 3;
+ string page_token = 3 [(google.api.field_behavior) = OPTIONAL];
}
// Response message for ListGoogleAdsLinks RPC.
@@ -1056,17 +1056,17 @@ message GetDataSharingSettingsRequest {
// Request message for ListAccountSummaries RPC.
message ListAccountSummariesRequest {
- // The maximum number of AccountSummary resources to return. The service may
- // return fewer than this value, even if there are additional pages.
- // If unspecified, at most 50 resources will be returned.
- // The maximum value is 200; (higher values will be coerced to the maximum)
- int32 page_size = 1;
+ // Optional. The maximum number of AccountSummary resources to return. The
+ // service may return fewer than this value, even if there are additional
+ // pages. If unspecified, at most 50 resources will be returned. The maximum
+ // value is 200; (higher values will be coerced to the maximum)
+ int32 page_size = 1 [(google.api.field_behavior) = OPTIONAL];
- // A page token, received from a previous `ListAccountSummaries` call.
- // Provide this to retrieve the subsequent page.
- // When paginating, all other parameters provided to `ListAccountSummaries`
- // must match the call that provided the page token.
- string page_token = 2;
+ // Optional. A page token, received from a previous `ListAccountSummaries`
+ // call. Provide this to retrieve the subsequent page. When paginating, all
+ // other parameters provided to `ListAccountSummaries` must match the call
+ // that provided the page token.
+ string page_token = 2 [(google.api.field_behavior) = OPTIONAL];
}
// Response message for ListAccountSummaries RPC.
@@ -1244,16 +1244,17 @@ message ListMeasurementProtocolSecretsRequest {
}
];
- // The maximum number of resources to return.
+ // Optional. The maximum number of resources to return.
// If unspecified, at most 10 resources will be returned.
// The maximum value is 10. Higher values will be coerced to the maximum.
- int32 page_size = 2;
+ int32 page_size = 2 [(google.api.field_behavior) = OPTIONAL];
- // A page token, received from a previous `ListMeasurementProtocolSecrets`
- // call. Provide this to retrieve the subsequent page. When paginating, all
- // other parameters provided to `ListMeasurementProtocolSecrets` must match
- // the call that provided the page token.
- string page_token = 3;
+ // Optional. A page token, received from a previous
+ // `ListMeasurementProtocolSecrets` call. Provide this to retrieve the
+ // subsequent page. When paginating, all other parameters provided to
+ // `ListMeasurementProtocolSecrets` must match the call that provided the page
+ // token.
+ string page_token = 3 [(google.api.field_behavior) = OPTIONAL];
}
// Response message for ListMeasurementProtocolSecret RPC
@@ -1332,16 +1333,16 @@ message ListConversionEventsRequest {
}
];
- // The maximum number of resources to return.
+ // Optional. The maximum number of resources to return.
// If unspecified, at most 50 resources will be returned.
// The maximum value is 200; (higher values will be coerced to the maximum)
- int32 page_size = 2;
+ int32 page_size = 2 [(google.api.field_behavior) = OPTIONAL];
- // A page token, received from a previous `ListConversionEvents` call.
- // Provide this to retrieve the subsequent page.
- // When paginating, all other parameters provided to `ListConversionEvents`
- // must match the call that provided the page token.
- string page_token = 3;
+ // Optional. A page token, received from a previous `ListConversionEvents`
+ // call. Provide this to retrieve the subsequent page. When paginating, all
+ // other parameters provided to `ListConversionEvents` must match the call
+ // that provided the page token.
+ string page_token = 3 [(google.api.field_behavior) = OPTIONAL];
}
// Response message for ListConversionEvents RPC.
@@ -1420,16 +1421,16 @@ message ListKeyEventsRequest {
}
];
- // The maximum number of resources to return.
+ // Optional. The maximum number of resources to return.
// If unspecified, at most 50 resources will be returned.
// The maximum value is 200; (higher values will be coerced to the maximum)
- int32 page_size = 2;
+ int32 page_size = 2 [(google.api.field_behavior) = OPTIONAL];
- // A page token, received from a previous `ListKeyEvents` call.
+ // Optional. A page token, received from a previous `ListKeyEvents` call.
// Provide this to retrieve the subsequent page.
// When paginating, all other parameters provided to `ListKeyEvents`
// must match the call that provided the page token.
- string page_token = 3;
+ string page_token = 3 [(google.api.field_behavior) = OPTIONAL];
}
// Response message for ListKeyEvents RPC.
@@ -1478,17 +1479,17 @@ message ListCustomDimensionsRequest {
}
];
- // The maximum number of resources to return.
+ // Optional. The maximum number of resources to return.
// If unspecified, at most 50 resources will be returned.
// The maximum value is 200 (higher values will be coerced to the maximum).
- int32 page_size = 2;
+ int32 page_size = 2 [(google.api.field_behavior) = OPTIONAL];
- // A page token, received from a previous `ListCustomDimensions` call.
- // Provide this to retrieve the subsequent page.
+ // Optional. A page token, received from a previous `ListCustomDimensions`
+ // call. Provide this to retrieve the subsequent page.
//
// When paginating, all other parameters provided to `ListCustomDimensions`
// must match the call that provided the page token.
- string page_token = 3;
+ string page_token = 3 [(google.api.field_behavior) = OPTIONAL];
}
// Response message for ListCustomDimensions RPC.
diff --git a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/proto/google/analytics/admin/v1beta/resources.proto b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/proto/google/analytics/admin/v1beta/resources.proto
index 7908fa764755..58fa6f965f34 100644
--- a/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/proto/google/analytics/admin/v1beta/resources.proto
+++ b/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/proto/google/analytics/admin/v1beta/resources.proto
@@ -1,4 +1,4 @@
-// Copyright 2025 Google LLC
+// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -225,12 +225,14 @@ message Account {
option (google.api.resource) = {
type: "analyticsadmin.googleapis.com/Account"
pattern: "accounts/{account}"
+ plural: "accounts"
+ singular: "account"
};
- // Output only. Resource name of this account.
+ // Identifier. Resource name of this account.
// Format: accounts/{account}
// Example: "accounts/100"
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
+ string name = 1 [(google.api.field_behavior) = IDENTIFIER];
// Output only. Time when this account was originally created.
google.protobuf.Timestamp create_time = 2
@@ -266,12 +268,14 @@ message Property {
option (google.api.resource) = {
type: "analyticsadmin.googleapis.com/Property"
pattern: "properties/{property}"
+ plural: "properties"
+ singular: "property"
};
- // Output only. Resource name of this property.
+ // Identifier. Resource name of this property.
// Format: properties/{property_id}
// Example: "properties/1000"
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
+ string name = 1 [(google.api.field_behavior) = IDENTIFIER];
// Immutable. The property type for this Property resource. When creating a
// property, if the type is "PROPERTY_TYPE_UNSPECIFIED", then
@@ -351,6 +355,8 @@ message DataStream {
option (google.api.resource) = {
type: "analyticsadmin.googleapis.com/DataStream"
pattern: "properties/{property}/dataStreams/{data_stream}"
+ plural: "dataStreams"
+ singular: "dataStream"
};
// Data specific to web streams.
@@ -425,10 +431,10 @@ message DataStream {
IosAppStreamData ios_app_stream_data = 8;
}
- // Output only. Resource name of this Data Stream.
+ // Identifier. Resource name of this Data Stream.
// Format: properties/{property_id}/dataStreams/{stream_id}
// Example: "properties/1000/dataStreams/2000"
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
+ string name = 1 [(google.api.field_behavior) = IDENTIFIER];
// Required. Immutable. The type of this DataStream resource.
DataStreamType type = 2 [
@@ -457,10 +463,12 @@ message FirebaseLink {
option (google.api.resource) = {
type: "analyticsadmin.googleapis.com/FirebaseLink"
pattern: "properties/{property}/firebaseLinks/{firebase_link}"
+ plural: "firebaseLinks"
+ singular: "firebaseLink"
};
- // Output only. Example format: properties/1234/firebaseLinks/5678
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
+ // Identifier. Example format: properties/1234/firebaseLinks/5678
+ string name = 1 [(google.api.field_behavior) = IDENTIFIER];
// Immutable. Firebase project resource name. When creating a FirebaseLink,
// you may provide this resource name using either a project number or project
@@ -481,13 +489,15 @@ message GoogleAdsLink {
option (google.api.resource) = {
type: "analyticsadmin.googleapis.com/GoogleAdsLink"
pattern: "properties/{property}/googleAdsLinks/{google_ads_link}"
+ plural: "googleAdsLinks"
+ singular: "googleAdsLink"
};
- // Output only. Format:
+ // Identifier. Format:
// properties/{propertyId}/googleAdsLinks/{googleAdsLinkId}
//
// Note: googleAdsLinkId is not the Google Ads customer ID.
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
+ string name = 1 [(google.api.field_behavior) = IDENTIFIER];
// Immutable. Google Ads customer ID.
string customer_id = 3 [(google.api.field_behavior) = IMMUTABLE];
@@ -520,30 +530,51 @@ message DataSharingSettings {
option (google.api.resource) = {
type: "analyticsadmin.googleapis.com/DataSharingSettings"
pattern: "accounts/{account}/dataSharingSettings"
+ plural: "dataSharingSettings"
+ singular: "dataSharingSettings"
};
- // Output only. Resource name.
+ // Identifier. Resource name.
// Format: accounts/{account}/dataSharingSettings
// Example: "accounts/1000/dataSharingSettings"
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
+ string name = 1 [(google.api.field_behavior) = IDENTIFIER];
- // Allows Google support to access the data in order to help troubleshoot
- // issues.
+ // Allows Google technical support representatives access to your Google
+ // Analytics data and account when necessary to provide service and find
+ // solutions to technical issues.
+ //
+ // This field maps to the "Technical support" field in the Google Analytics
+ // Admin UI.
bool sharing_with_google_support_enabled = 2;
- // Allows Google sales teams that are assigned to the customer to access the
- // data in order to suggest configuration changes to improve results.
- // Sales team restrictions still apply when enabled.
+ // Allows Google access to your Google Analytics account data, including
+ // account usage and configuration data, product spending, and users
+ // associated with your Google Analytics account, so that Google can help you
+ // make the most of Google products, providing you with insights, offers,
+ // recommendations, and optimization tips across Google Analytics and other
+ // Google products for business.
+ //
+ // This field maps to the "Recommendations for your business" field in the
+ // Google Analytics Admin UI.
bool sharing_with_google_assigned_sales_enabled = 3;
- // Allows any of Google sales to access the data in order to suggest
- // configuration changes to improve results.
- bool sharing_with_google_any_sales_enabled = 4;
+ // Deprecated. This field is no longer used and always returns false.
+ bool sharing_with_google_any_sales_enabled = 4 [deprecated = true];
// Allows Google to use the data to improve other Google products or services.
+ //
+ // This fields maps to the "Google products & services" field in the Google
+ // Analytics Admin UI.
bool sharing_with_google_products_enabled = 5;
- // Allows Google to share the data anonymously in aggregate form with others.
+ // Enable features like predictions, modeled data, and benchmarking that can
+ // provide you with richer business insights when you contribute aggregated
+ // measurement data. The data you share (including information about the
+ // property from which it is shared) is aggregated and de-identified before
+ // being used to generate business insights.
+ //
+ // This field maps to the "Modeling contributions & business insights" field
+ // in the Google Analytics Admin UI.
bool sharing_with_others_enabled = 6;
}
@@ -553,12 +584,14 @@ message AccountSummary {
option (google.api.resource) = {
type: "analyticsadmin.googleapis.com/AccountSummary"
pattern: "accountSummaries/{account_summary}"
+ plural: "accountSummaries"
+ singular: "accountSummary"
};
- // Resource name for this account summary.
+ // Identifier. Resource name for this account summary.
// Format: accountSummaries/{account_id}
// Example: "accountSummaries/1000"
- string name = 1;
+ string name = 1 [(google.api.field_behavior) = IDENTIFIER];
// Resource name of account referred to by this account summary
// Format: accounts/{account_id}
@@ -595,6 +628,10 @@ message PropertySummary {
// Format: accounts/{account}, properties/{property}
// Example: "accounts/100", "properties/200"
string parent = 4;
+
+ // If true, then the user has a Google Analytics role that permits them to
+ // edit the property.
+ bool can_edit = 5;
}
// A secret value used for sending hits to Measurement Protocol.
@@ -602,12 +639,14 @@ message MeasurementProtocolSecret {
option (google.api.resource) = {
type: "analyticsadmin.googleapis.com/MeasurementProtocolSecret"
pattern: "properties/{property}/dataStreams/{data_stream}/measurementProtocolSecrets/{measurement_protocol_secret}"
+ plural: "measurementProtocolSecrets"
+ singular: "measurementProtocolSecret"
};
- // Output only. Resource name of this secret. This secret may be a child of
- // any type of stream. Format:
+ // Identifier. Resource name of this secret. This secret may be a child of any
+ // type of stream. Format:
// properties/{property}/dataStreams/{dataStream}/measurementProtocolSecrets/{measurementProtocolSecret}
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
+ string name = 1 [(google.api.field_behavior) = IDENTIFIER];
// Required. Human-readable display name for this secret.
string display_name = 2 [(google.api.field_behavior) = REQUIRED];
@@ -698,6 +737,8 @@ message ConversionEvent {
option (google.api.resource) = {
type: "analyticsadmin.googleapis.com/ConversionEvent"
pattern: "properties/{property}/conversionEvents/{conversion_event}"
+ plural: "conversionEvents"
+ singular: "conversionEvent"
};
// Defines a default value/currency for a conversion event. Both value and
@@ -728,9 +769,9 @@ message ConversionEvent {
ONCE_PER_SESSION = 2;
}
- // Output only. Resource name of this conversion event.
+ // Identifier. Resource name of this conversion event.
// Format: properties/{property}/conversionEvents/{conversion_event}
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
+ string name = 1 [(google.api.field_behavior) = IDENTIFIER];
// Immutable. The event name for this conversion event.
// Examples: 'click', 'purchase'
@@ -837,6 +878,8 @@ message CustomDimension {
option (google.api.resource) = {
type: "analyticsadmin.googleapis.com/CustomDimension"
pattern: "properties/{property}/customDimensions/{custom_dimension}"
+ plural: "customDimensions"
+ singular: "customDimension"
};
// Valid values for the scope of this dimension.
@@ -854,9 +897,9 @@ message CustomDimension {
ITEM = 3;
}
- // Output only. Resource name for this CustomDimension resource.
+ // Identifier. Resource name for this CustomDimension resource.
// Format: properties/{property}/customDimensions/{customDimension}
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
+ string name = 1 [(google.api.field_behavior) = IDENTIFIER];
// Required. Immutable. Tagging parameter name for this custom dimension.
//
@@ -905,6 +948,8 @@ message CustomMetric {
option (google.api.resource) = {
type: "analyticsadmin.googleapis.com/CustomMetric"
pattern: "properties/{property}/customMetrics/{custom_metric}"
+ plural: "customMetrics"
+ singular: "customMetric"
};
// Possible types of representing the custom metric's value.
@@ -968,9 +1013,9 @@ message CustomMetric {
REVENUE_DATA = 2;
}
- // Output only. Resource name for this CustomMetric resource.
+ // Identifier. Resource name for this CustomMetric resource.
// Format: properties/{property}/customMetrics/{customMetric}
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
+ string name = 1 [(google.api.field_behavior) = IDENTIFIER];
// Required. Immutable. Tagging name for this custom metric.
//
@@ -1016,6 +1061,8 @@ message DataRetentionSettings {
option (google.api.resource) = {
type: "analyticsadmin.googleapis.com/DataRetentionSettings"
pattern: "properties/{property}/dataRetentionSettings"
+ plural: "dataRetentionSettings"
+ singular: "dataRetentionSettings"
};
// Valid values for the data retention duration.
@@ -1042,9 +1089,9 @@ message DataRetentionSettings {
FIFTY_MONTHS = 6;
}
- // Output only. Resource name for this DataRetentionSetting resource.
+ // Identifier. Resource name for this DataRetentionSetting resource.
// Format: properties/{property}/dataRetentionSettings
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
+ string name = 1 [(google.api.field_behavior) = IDENTIFIER];
// Required. The length of time that event-level data is retained.
RetentionDuration event_data_retention = 2
diff --git a/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatereportingidentitysettings/AsyncUpdateReportingIdentitySettings.java b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatereportingidentitysettings/AsyncUpdateReportingIdentitySettings.java
new file mode 100644
index 000000000000..fa45b3832e93
--- /dev/null
+++ b/java-analytics-admin/samples/snippets/generated/com/google/analytics/admin/v1alpha/analyticsadminservice/updatereportingidentitysettings/AsyncUpdateReportingIdentitySettings.java
@@ -0,0 +1,52 @@
+/*
+ * Copyright 2026 Google LLC
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.google.analytics.admin.v1alpha.samples;
+
+// [START analyticsadmin_v1alpha_generated_AnalyticsAdminService_UpdateReportingIdentitySettings_async]
+import com.google.analytics.admin.v1alpha.AnalyticsAdminServiceClient;
+import com.google.analytics.admin.v1alpha.ReportingIdentitySettings;
+import com.google.analytics.admin.v1alpha.UpdateReportingIdentitySettingsRequest;
+import com.google.api.core.ApiFuture;
+import com.google.protobuf.FieldMask;
+
+public class AsyncUpdateReportingIdentitySettings {
+
+ public static void main(String[] args) throws Exception {
+ asyncUpdateReportingIdentitySettings();
+ }
+
+ public static void asyncUpdateReportingIdentitySettings() throws Exception {
+ // This snippet has been automatically generated and should be regarded as a code template only.
+ // It will require modifications to work:
+ // - It may require correct/in-range values for request initialization.
+ // - It may require specifying regional endpoints when creating the service client as shown in
+ // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
+ try (AnalyticsAdminServiceClient analyticsAdminServiceClient =
+ AnalyticsAdminServiceClient.create()) {
+ UpdateReportingIdentitySettingsRequest request =
+ UpdateReportingIdentitySettingsRequest.newBuilder()
+ .setReportingIdentitySettings(ReportingIdentitySettings.newBuilder().build())
+ .setUpdateMask(FieldMask.newBuilder().build())
+ .build();
+ ApiFuture* Confidential Instance Config for clusters using [Confidential - * VMs](https://cloud.google.com/compute/confidential-vm/docs) + * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs) ** * Protobuf type {@code google.cloud.dataproc.v1.ConfidentialInstanceConfig} @@ -52,7 +52,9 @@ private ConfidentialInstanceConfig(com.google.protobuf.GeneratedMessage.Builder< super(builder); } - private ConfidentialInstanceConfig() {} + private ConfidentialInstanceConfig() { + confidentialInstanceType_ = 0; + } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.dataproc.v1.ClustersProto @@ -69,6 +71,212 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { com.google.cloud.dataproc.v1.ConfidentialInstanceConfig.Builder.class); } + /** + * + * + *
+ * The type of Confidential Compute technology as per [Confidential Computing + * types](https://cloud.google.com/confidential-computing/confidential-vm/docs/create-a-confidential-vm-instance#create-instance). + * New values may be added in the future. + *+ * + * Protobuf enum {@code + * google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType} + */ + public enum ConfidentialInstanceType implements com.google.protobuf.ProtocolMessageEnum { + /** + * + * + *
+ * Confidential Instance Type is not specified. + *+ * + *
CONFIDENTIAL_INSTANCE_TYPE_UNSPECIFIED = 0;
+ */
+ CONFIDENTIAL_INSTANCE_TYPE_UNSPECIFIED(0),
+ /**
+ *
+ *
+ * + * [AMD Secure Encrypted + * Virtualization](https://cloud.google.com/confidential-computing/confidential-vm/docs/confidential-vm-overview#amd_sev) + *+ * + *
SEV = 1;
+ */
+ SEV(1),
+ /**
+ *
+ *
+ * + * [AMD Secure Encrypted Virtualization-Secure Nested + * Paging](https://cloud.google.com/confidential-computing/confidential-vm/docs/confidential-vm-overview#amd_sev-snp) + *+ * + *
SEV_SNP = 2;
+ */
+ SEV_SNP(2),
+ /**
+ *
+ *
+ * + * [Intel Trust Domain + * Extensions](https://cloud.google.com/confidential-computing/confidential-vm/docs/confidential-vm-overview#intel_tdx) + *+ * + *
TDX = 3;
+ */
+ TDX(3),
+ UNRECOGNIZED(-1),
+ ;
+
+ static {
+ com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion(
+ com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC,
+ /* major= */ 4,
+ /* minor= */ 33,
+ /* patch= */ 2,
+ /* suffix= */ "",
+ "ConfidentialInstanceType");
+ }
+
+ /**
+ *
+ *
+ * + * Confidential Instance Type is not specified. + *+ * + *
CONFIDENTIAL_INSTANCE_TYPE_UNSPECIFIED = 0;
+ */
+ public static final int CONFIDENTIAL_INSTANCE_TYPE_UNSPECIFIED_VALUE = 0;
+
+ /**
+ *
+ *
+ * + * [AMD Secure Encrypted + * Virtualization](https://cloud.google.com/confidential-computing/confidential-vm/docs/confidential-vm-overview#amd_sev) + *+ * + *
SEV = 1;
+ */
+ public static final int SEV_VALUE = 1;
+
+ /**
+ *
+ *
+ * + * [AMD Secure Encrypted Virtualization-Secure Nested + * Paging](https://cloud.google.com/confidential-computing/confidential-vm/docs/confidential-vm-overview#amd_sev-snp) + *+ * + *
SEV_SNP = 2;
+ */
+ public static final int SEV_SNP_VALUE = 2;
+
+ /**
+ *
+ *
+ * + * [Intel Trust Domain + * Extensions](https://cloud.google.com/confidential-computing/confidential-vm/docs/confidential-vm-overview#intel_tdx) + *+ * + *
TDX = 3;
+ */
+ public static final int TDX_VALUE = 3;
+
+ public final int getNumber() {
+ if (this == UNRECOGNIZED) {
+ throw new java.lang.IllegalArgumentException(
+ "Can't get the number of an unknown enum value.");
+ }
+ return value;
+ }
+
+ /**
+ * @param value The numeric wire value of the corresponding enum entry.
+ * @return The enum associated with the given numeric wire value.
+ * @deprecated Use {@link #forNumber(int)} instead.
+ */
+ @java.lang.Deprecated
+ public static ConfidentialInstanceType valueOf(int value) {
+ return forNumber(value);
+ }
+
+ /**
+ * @param value The numeric wire value of the corresponding enum entry.
+ * @return The enum associated with the given numeric wire value.
+ */
+ public static ConfidentialInstanceType forNumber(int value) {
+ switch (value) {
+ case 0:
+ return CONFIDENTIAL_INSTANCE_TYPE_UNSPECIFIED;
+ case 1:
+ return SEV;
+ case 2:
+ return SEV_SNP;
+ case 3:
+ return TDX;
+ default:
+ return null;
+ }
+ }
+
+ public static com.google.protobuf.Internal.EnumLiteMap
- * Optional. Defines whether the instance should have confidential compute
- * enabled.
+ * Optional. Deprecated: Use 'confidential_instance_type' instead.
+ * Defines whether the instance should have confidential compute enabled.
*
*
- * bool enable_confidential_compute = 1 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ * bool enable_confidential_compute = 1 [deprecated = true, (.google.api.field_behavior) = OPTIONAL];
+ *
*
+ * @deprecated google.cloud.dataproc.v1.ConfidentialInstanceConfig.enable_confidential_compute is
+ * deprecated. See google/cloud/dataproc/v1/clusters.proto;l=678
* @return The enableConfidentialCompute.
*/
@java.lang.Override
+ @java.lang.Deprecated
public boolean getEnableConfidentialCompute() {
return enableConfidentialCompute_;
}
+ public static final int CONFIDENTIAL_INSTANCE_TYPE_FIELD_NUMBER = 2;
+ private int confidentialInstanceType_ = 0;
+
+ /**
+ *
+ *
+ * + * Optional. Defines the type of Confidential Compute technology to use. + *+ * + *
+ * .google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType confidential_instance_type = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ *
+ * @return The enum numeric value on the wire for confidentialInstanceType.
+ */
+ @java.lang.Override
+ public int getConfidentialInstanceTypeValue() {
+ return confidentialInstanceType_;
+ }
+
+ /**
+ *
+ *
+ * + * Optional. Defines the type of Confidential Compute technology to use. + *+ * + *
+ * .google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType confidential_instance_type = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ *
+ * @return The confidentialInstanceType.
+ */
+ @java.lang.Override
+ public com.google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType
+ getConfidentialInstanceType() {
+ com.google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType result =
+ com.google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType.forNumber(
+ confidentialInstanceType_);
+ return result == null
+ ? com.google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType
+ .UNRECOGNIZED
+ : result;
+ }
+
private byte memoizedIsInitialized = -1;
@java.lang.Override
@@ -106,6 +365,12 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io
if (enableConfidentialCompute_ != false) {
output.writeBool(1, enableConfidentialCompute_);
}
+ if (confidentialInstanceType_
+ != com.google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType
+ .CONFIDENTIAL_INSTANCE_TYPE_UNSPECIFIED
+ .getNumber()) {
+ output.writeEnum(2, confidentialInstanceType_);
+ }
getUnknownFields().writeTo(output);
}
@@ -118,6 +383,12 @@ public int getSerializedSize() {
if (enableConfidentialCompute_ != false) {
size += com.google.protobuf.CodedOutputStream.computeBoolSize(1, enableConfidentialCompute_);
}
+ if (confidentialInstanceType_
+ != com.google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType
+ .CONFIDENTIAL_INSTANCE_TYPE_UNSPECIFIED
+ .getNumber()) {
+ size += com.google.protobuf.CodedOutputStream.computeEnumSize(2, confidentialInstanceType_);
+ }
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
@@ -135,6 +406,7 @@ public boolean equals(final java.lang.Object obj) {
(com.google.cloud.dataproc.v1.ConfidentialInstanceConfig) obj;
if (getEnableConfidentialCompute() != other.getEnableConfidentialCompute()) return false;
+ if (confidentialInstanceType_ != other.confidentialInstanceType_) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@@ -148,6 +420,8 @@ public int hashCode() {
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + ENABLE_CONFIDENTIAL_COMPUTE_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getEnableConfidentialCompute());
+ hash = (37 * hash) + CONFIDENTIAL_INSTANCE_TYPE_FIELD_NUMBER;
+ hash = (53 * hash) + confidentialInstanceType_;
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
@@ -255,7 +529,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessage.Builder
*
*
* Confidential Instance Config for clusters using [Confidential
- * VMs](https://cloud.google.com/compute/confidential-vm/docs)
+ * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs)
*
*
* Protobuf type {@code google.cloud.dataproc.v1.ConfidentialInstanceConfig}
@@ -291,6 +565,7 @@ public Builder clear() {
super.clear();
bitField0_ = 0;
enableConfidentialCompute_ = false;
+ confidentialInstanceType_ = 0;
return this;
}
@@ -330,6 +605,9 @@ private void buildPartial0(com.google.cloud.dataproc.v1.ConfidentialInstanceConf
if (((from_bitField0_ & 0x00000001) != 0)) {
result.enableConfidentialCompute_ = enableConfidentialCompute_;
}
+ if (((from_bitField0_ & 0x00000002) != 0)) {
+ result.confidentialInstanceType_ = confidentialInstanceType_;
+ }
}
@java.lang.Override
@@ -348,6 +626,9 @@ public Builder mergeFrom(com.google.cloud.dataproc.v1.ConfidentialInstanceConfig
if (other.getEnableConfidentialCompute() != false) {
setEnableConfidentialCompute(other.getEnableConfidentialCompute());
}
+ if (other.confidentialInstanceType_ != 0) {
+ setConfidentialInstanceTypeValue(other.getConfidentialInstanceTypeValue());
+ }
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
@@ -380,6 +661,12 @@ public Builder mergeFrom(
bitField0_ |= 0x00000001;
break;
} // case 8
+ case 16:
+ {
+ confidentialInstanceType_ = input.readEnum();
+ bitField0_ |= 0x00000002;
+ break;
+ } // case 16
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
@@ -405,15 +692,20 @@ public Builder mergeFrom(
*
*
*
- * Optional. Defines whether the instance should have confidential compute
- * enabled.
+ * Optional. Deprecated: Use 'confidential_instance_type' instead.
+ * Defines whether the instance should have confidential compute enabled.
*
*
- * bool enable_confidential_compute = 1 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ * bool enable_confidential_compute = 1 [deprecated = true, (.google.api.field_behavior) = OPTIONAL];
+ *
*
+ * @deprecated google.cloud.dataproc.v1.ConfidentialInstanceConfig.enable_confidential_compute
+ * is deprecated. See google/cloud/dataproc/v1/clusters.proto;l=678
* @return The enableConfidentialCompute.
*/
@java.lang.Override
+ @java.lang.Deprecated
public boolean getEnableConfidentialCompute() {
return enableConfidentialCompute_;
}
@@ -422,15 +714,20 @@ public boolean getEnableConfidentialCompute() {
*
*
*
- * Optional. Defines whether the instance should have confidential compute
- * enabled.
+ * Optional. Deprecated: Use 'confidential_instance_type' instead.
+ * Defines whether the instance should have confidential compute enabled.
*
*
- * bool enable_confidential_compute = 1 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ * bool enable_confidential_compute = 1 [deprecated = true, (.google.api.field_behavior) = OPTIONAL];
+ *
*
+ * @deprecated google.cloud.dataproc.v1.ConfidentialInstanceConfig.enable_confidential_compute
+ * is deprecated. See google/cloud/dataproc/v1/clusters.proto;l=678
* @param value The enableConfidentialCompute to set.
* @return This builder for chaining.
*/
+ @java.lang.Deprecated
public Builder setEnableConfidentialCompute(boolean value) {
enableConfidentialCompute_ = value;
@@ -443,14 +740,19 @@ public Builder setEnableConfidentialCompute(boolean value) {
*
*
*
- * Optional. Defines whether the instance should have confidential compute
- * enabled.
+ * Optional. Deprecated: Use 'confidential_instance_type' instead.
+ * Defines whether the instance should have confidential compute enabled.
*
*
- * bool enable_confidential_compute = 1 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ * bool enable_confidential_compute = 1 [deprecated = true, (.google.api.field_behavior) = OPTIONAL];
+ *
*
+ * @deprecated google.cloud.dataproc.v1.ConfidentialInstanceConfig.enable_confidential_compute
+ * is deprecated. See google/cloud/dataproc/v1/clusters.proto;l=678
* @return This builder for chaining.
*/
+ @java.lang.Deprecated
public Builder clearEnableConfidentialCompute() {
bitField0_ = (bitField0_ & ~0x00000001);
enableConfidentialCompute_ = false;
@@ -458,6 +760,117 @@ public Builder clearEnableConfidentialCompute() {
return this;
}
+ private int confidentialInstanceType_ = 0;
+
+ /**
+ *
+ *
+ * + * Optional. Defines the type of Confidential Compute technology to use. + *+ * + *
+ * .google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType confidential_instance_type = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ *
+ * @return The enum numeric value on the wire for confidentialInstanceType.
+ */
+ @java.lang.Override
+ public int getConfidentialInstanceTypeValue() {
+ return confidentialInstanceType_;
+ }
+
+ /**
+ *
+ *
+ * + * Optional. Defines the type of Confidential Compute technology to use. + *+ * + *
+ * .google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType confidential_instance_type = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ *
+ * @param value The enum numeric value on the wire for confidentialInstanceType to set.
+ * @return This builder for chaining.
+ */
+ public Builder setConfidentialInstanceTypeValue(int value) {
+ confidentialInstanceType_ = value;
+ bitField0_ |= 0x00000002;
+ onChanged();
+ return this;
+ }
+
+ /**
+ *
+ *
+ * + * Optional. Defines the type of Confidential Compute technology to use. + *+ * + *
+ * .google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType confidential_instance_type = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ *
+ * @return The confidentialInstanceType.
+ */
+ @java.lang.Override
+ public com.google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType
+ getConfidentialInstanceType() {
+ com.google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType result =
+ com.google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType
+ .forNumber(confidentialInstanceType_);
+ return result == null
+ ? com.google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType
+ .UNRECOGNIZED
+ : result;
+ }
+
+ /**
+ *
+ *
+ * + * Optional. Defines the type of Confidential Compute technology to use. + *+ * + *
+ * .google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType confidential_instance_type = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ *
+ * @param value The confidentialInstanceType to set.
+ * @return This builder for chaining.
+ */
+ public Builder setConfidentialInstanceType(
+ com.google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType value) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ bitField0_ |= 0x00000002;
+ confidentialInstanceType_ = value.getNumber();
+ onChanged();
+ return this;
+ }
+
+ /**
+ *
+ *
+ * + * Optional. Defines the type of Confidential Compute technology to use. + *+ * + *
+ * .google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType confidential_instance_type = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ *
+ * @return This builder for chaining.
+ */
+ public Builder clearConfidentialInstanceType() {
+ bitField0_ = (bitField0_ & ~0x00000002);
+ confidentialInstanceType_ = 0;
+ onChanged();
+ return this;
+ }
+
// @@protoc_insertion_point(builder_scope:google.cloud.dataproc.v1.ConfidentialInstanceConfig)
}
diff --git a/java-dataproc/proto-google-cloud-dataproc-v1/src/main/java/com/google/cloud/dataproc/v1/ConfidentialInstanceConfigOrBuilder.java b/java-dataproc/proto-google-cloud-dataproc-v1/src/main/java/com/google/cloud/dataproc/v1/ConfidentialInstanceConfigOrBuilder.java
index d50f9df843af..23b4550b525e 100644
--- a/java-dataproc/proto-google-cloud-dataproc-v1/src/main/java/com/google/cloud/dataproc/v1/ConfidentialInstanceConfigOrBuilder.java
+++ b/java-dataproc/proto-google-cloud-dataproc-v1/src/main/java/com/google/cloud/dataproc/v1/ConfidentialInstanceConfigOrBuilder.java
@@ -30,13 +30,49 @@ public interface ConfidentialInstanceConfigOrBuilder
*
*
*
- * Optional. Defines whether the instance should have confidential compute
- * enabled.
+ * Optional. Deprecated: Use 'confidential_instance_type' instead.
+ * Defines whether the instance should have confidential compute enabled.
*
*
- * bool enable_confidential_compute = 1 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ * bool enable_confidential_compute = 1 [deprecated = true, (.google.api.field_behavior) = OPTIONAL];
+ *
*
+ * @deprecated google.cloud.dataproc.v1.ConfidentialInstanceConfig.enable_confidential_compute is
+ * deprecated. See google/cloud/dataproc/v1/clusters.proto;l=678
* @return The enableConfidentialCompute.
*/
+ @java.lang.Deprecated
boolean getEnableConfidentialCompute();
+
+ /**
+ *
+ *
+ * + * Optional. Defines the type of Confidential Compute technology to use. + *+ * + *
+ * .google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType confidential_instance_type = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ *
+ * @return The enum numeric value on the wire for confidentialInstanceType.
+ */
+ int getConfidentialInstanceTypeValue();
+
+ /**
+ *
+ *
+ * + * Optional. Defines the type of Confidential Compute technology to use. + *+ * + *
+ * .google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType confidential_instance_type = 2 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ *
+ * @return The confidentialInstanceType.
+ */
+ com.google.cloud.dataproc.v1.ConfidentialInstanceConfig.ConfidentialInstanceType
+ getConfidentialInstanceType();
}
diff --git a/java-dataproc/proto-google-cloud-dataproc-v1/src/main/java/com/google/cloud/dataproc/v1/GceClusterConfig.java b/java-dataproc/proto-google-cloud-dataproc-v1/src/main/java/com/google/cloud/dataproc/v1/GceClusterConfig.java
index b8b57d164b39..62d37a307b88 100644
--- a/java-dataproc/proto-google-cloud-dataproc-v1/src/main/java/com/google/cloud/dataproc/v1/GceClusterConfig.java
+++ b/java-dataproc/proto-google-cloud-dataproc-v1/src/main/java/com/google/cloud/dataproc/v1/GceClusterConfig.java
@@ -74,6 +74,8 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl
switch (number) {
case 5:
return internalGetMetadata();
+ case 16:
+ return internalGetResourceManagerTags();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
@@ -1199,7 +1201,7 @@ public com.google.cloud.dataproc.v1.ShieldedInstanceConfig getShieldedInstanceCo
*
*
* Optional. Confidential Instance Config for clusters using [Confidential
- * VMs](https://cloud.google.com/compute/confidential-vm/docs).
+ * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs).
*
*
*
@@ -1218,7 +1220,7 @@ public boolean hasConfidentialInstanceConfig() {
*
*
* Optional. Confidential Instance Config for clusters using [Confidential
- * VMs](https://cloud.google.com/compute/confidential-vm/docs).
+ * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs).
*
*
*
@@ -1239,7 +1241,7 @@ public com.google.cloud.dataproc.v1.ConfidentialInstanceConfig getConfidentialIn
*
*
* Optional. Confidential Instance Config for clusters using [Confidential
- * VMs](https://cloud.google.com/compute/confidential-vm/docs).
+ * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs).
*
*
*
@@ -1254,6 +1256,137 @@ public com.google.cloud.dataproc.v1.ConfidentialInstanceConfig getConfidentialIn
: confidentialInstanceConfig_;
}
+ public static final int RESOURCE_MANAGER_TAGS_FIELD_NUMBER = 16;
+
+ private static final class ResourceManagerTagsDefaultEntryHolder {
+ static final com.google.protobuf.MapEntry defaultEntry =
+ com.google.protobuf.MapEntry.newDefaultInstance(
+ com.google.cloud.dataproc.v1.ClustersProto
+ .internal_static_google_cloud_dataproc_v1_GceClusterConfig_ResourceManagerTagsEntry_descriptor,
+ com.google.protobuf.WireFormat.FieldType.STRING,
+ "",
+ com.google.protobuf.WireFormat.FieldType.STRING,
+ "");
+ }
+
+ @SuppressWarnings("serial")
+ private com.google.protobuf.MapField resourceManagerTags_;
+
+ private com.google.protobuf.MapField
+ internalGetResourceManagerTags() {
+ if (resourceManagerTags_ == null) {
+ return com.google.protobuf.MapField.emptyMapField(
+ ResourceManagerTagsDefaultEntryHolder.defaultEntry);
+ }
+ return resourceManagerTags_;
+ }
+
+ public int getResourceManagerTagsCount() {
+ return internalGetResourceManagerTags().getMap().size();
+ }
+
+ /**
+ *
+ *
+ *
+ * Optional. [Resource manager tags]
+ * (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ * to add to all instances (see [Use secure tags]
+ * (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ *
+ *
+ *
+ * map<string, string> resource_manager_tags = 16 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ @java.lang.Override
+ public boolean containsResourceManagerTags(java.lang.String key) {
+ if (key == null) {
+ throw new NullPointerException("map key");
+ }
+ return internalGetResourceManagerTags().getMap().containsKey(key);
+ }
+
+ /** Use {@link #getResourceManagerTagsMap()} instead. */
+ @java.lang.Override
+ @java.lang.Deprecated
+ public java.util.Map getResourceManagerTags() {
+ return getResourceManagerTagsMap();
+ }
+
+ /**
+ *
+ *
+ *
+ * Optional. [Resource manager tags]
+ * (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ * to add to all instances (see [Use secure tags]
+ * (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ *
+ *
+ *
+ * map<string, string> resource_manager_tags = 16 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ @java.lang.Override
+ public java.util.Map getResourceManagerTagsMap() {
+ return internalGetResourceManagerTags().getMap();
+ }
+
+ /**
+ *
+ *
+ *
+ * Optional. [Resource manager tags]
+ * (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ * to add to all instances (see [Use secure tags]
+ * (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ *
+ *
+ *
+ * map<string, string> resource_manager_tags = 16 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ @java.lang.Override
+ public /* nullable */ java.lang.String getResourceManagerTagsOrDefault(
+ java.lang.String key,
+ /* nullable */
+ java.lang.String defaultValue) {
+ if (key == null) {
+ throw new NullPointerException("map key");
+ }
+ java.util.Map map =
+ internalGetResourceManagerTags().getMap();
+ return map.containsKey(key) ? map.get(key) : defaultValue;
+ }
+
+ /**
+ *
+ *
+ *
+ * Optional. [Resource manager tags]
+ * (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ * to add to all instances (see [Use secure tags]
+ * (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ *
+ *
+ *
+ * map<string, string> resource_manager_tags = 16 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ @java.lang.Override
+ public java.lang.String getResourceManagerTagsOrThrow(java.lang.String key) {
+ if (key == null) {
+ throw new NullPointerException("map key");
+ }
+ java.util.Map map =
+ internalGetResourceManagerTags().getMap();
+ if (!map.containsKey(key)) {
+ throw new java.lang.IllegalArgumentException();
+ }
+ return map.get(key);
+ }
+
private byte memoizedIsInitialized = -1;
@java.lang.Override
@@ -1309,6 +1442,11 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io
if (((bitField0_ & 0x00000010) != 0)) {
output.writeMessage(15, getConfidentialInstanceConfig());
}
+ com.google.protobuf.GeneratedMessage.serializeStringMapTo(
+ output,
+ internalGetResourceManagerTags(),
+ ResourceManagerTagsDefaultEntryHolder.defaultEntry,
+ 16);
getUnknownFields().writeTo(output);
}
@@ -1381,6 +1519,16 @@ public int getSerializedSize() {
com.google.protobuf.CodedOutputStream.computeMessageSize(
15, getConfidentialInstanceConfig());
}
+ for (java.util.Map.Entry entry :
+ internalGetResourceManagerTags().getMap().entrySet()) {
+ com.google.protobuf.MapEntry resourceManagerTags__ =
+ ResourceManagerTagsDefaultEntryHolder.defaultEntry
+ .newBuilderForType()
+ .setKey(entry.getKey())
+ .setValue(entry.getValue())
+ .build();
+ size += com.google.protobuf.CodedOutputStream.computeMessageSize(16, resourceManagerTags__);
+ }
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
@@ -1426,6 +1574,8 @@ public boolean equals(final java.lang.Object obj) {
if (!getConfidentialInstanceConfig().equals(other.getConfidentialInstanceConfig()))
return false;
}
+ if (!internalGetResourceManagerTags().equals(other.internalGetResourceManagerTags()))
+ return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@@ -1479,6 +1629,10 @@ public int hashCode() {
hash = (37 * hash) + CONFIDENTIAL_INSTANCE_CONFIG_FIELD_NUMBER;
hash = (53 * hash) + getConfidentialInstanceConfig().hashCode();
}
+ if (!internalGetResourceManagerTags().getMap().isEmpty()) {
+ hash = (37 * hash) + RESOURCE_MANAGER_TAGS_FIELD_NUMBER;
+ hash = (53 * hash) + internalGetResourceManagerTags().hashCode();
+ }
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
@@ -1605,6 +1759,8 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMapFieldRefl
switch (number) {
case 5:
return internalGetMetadata();
+ case 16:
+ return internalGetResourceManagerTags();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
@@ -1616,6 +1772,8 @@ protected com.google.protobuf.MapFieldReflectionAccessor internalGetMutableMapFi
switch (number) {
case 5:
return internalGetMutableMetadata();
+ case 16:
+ return internalGetMutableResourceManagerTags();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
@@ -1683,6 +1841,7 @@ public Builder clear() {
confidentialInstanceConfigBuilder_.dispose();
confidentialInstanceConfigBuilder_ = null;
}
+ internalGetMutableResourceManagerTags().clear();
return this;
}
@@ -1779,6 +1938,10 @@ private void buildPartial0(com.google.cloud.dataproc.v1.GceClusterConfig result)
: confidentialInstanceConfigBuilder_.build();
to_bitField0_ |= 0x00000010;
}
+ if (((from_bitField0_ & 0x00002000) != 0)) {
+ result.resourceManagerTags_ = internalGetResourceManagerTags();
+ result.resourceManagerTags_.makeImmutable();
+ }
result.bitField0_ |= to_bitField0_;
}
@@ -1854,6 +2017,8 @@ public Builder mergeFrom(com.google.cloud.dataproc.v1.GceClusterConfig other) {
if (other.hasConfidentialInstanceConfig()) {
mergeConfidentialInstanceConfig(other.getConfidentialInstanceConfig());
}
+ internalGetMutableResourceManagerTags().mergeFrom(other.internalGetResourceManagerTags());
+ bitField0_ |= 0x00002000;
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
@@ -1972,6 +2137,19 @@ public Builder mergeFrom(
bitField0_ |= 0x00001000;
break;
} // case 122
+ case 130:
+ {
+ com.google.protobuf.MapEntry
+ resourceManagerTags__ =
+ input.readMessage(
+ ResourceManagerTagsDefaultEntryHolder.defaultEntry.getParserForType(),
+ extensionRegistry);
+ internalGetMutableResourceManagerTags()
+ .getMutableMap()
+ .put(resourceManagerTags__.getKey(), resourceManagerTags__.getValue());
+ bitField0_ |= 0x00002000;
+ break;
+ } // case 130
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
@@ -4231,7 +4409,7 @@ public Builder clearShieldedInstanceConfig() {
*
*
* Optional. Confidential Instance Config for clusters using [Confidential
- * VMs](https://cloud.google.com/compute/confidential-vm/docs).
+ * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs).
*
*
*
@@ -4249,7 +4427,7 @@ public boolean hasConfidentialInstanceConfig() {
*
*
* Optional. Confidential Instance Config for clusters using [Confidential
- * VMs](https://cloud.google.com/compute/confidential-vm/docs).
+ * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs).
*
*
*
@@ -4273,7 +4451,7 @@ public com.google.cloud.dataproc.v1.ConfidentialInstanceConfig getConfidentialIn
*
*
* Optional. Confidential Instance Config for clusters using [Confidential
- * VMs](https://cloud.google.com/compute/confidential-vm/docs).
+ * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs).
*
*
*
@@ -4300,7 +4478,7 @@ public Builder setConfidentialInstanceConfig(
*
*
* Optional. Confidential Instance Config for clusters using [Confidential
- * VMs](https://cloud.google.com/compute/confidential-vm/docs).
+ * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs).
*
*
*
@@ -4324,7 +4502,7 @@ public Builder setConfidentialInstanceConfig(
*
*
* Optional. Confidential Instance Config for clusters using [Confidential
- * VMs](https://cloud.google.com/compute/confidential-vm/docs).
+ * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs).
*
*
*
@@ -4357,7 +4535,7 @@ public Builder mergeConfidentialInstanceConfig(
*
*
* Optional. Confidential Instance Config for clusters using [Confidential
- * VMs](https://cloud.google.com/compute/confidential-vm/docs).
+ * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs).
*
*
*
@@ -4380,7 +4558,7 @@ public Builder clearConfidentialInstanceConfig() {
*
*
* Optional. Confidential Instance Config for clusters using [Confidential
- * VMs](https://cloud.google.com/compute/confidential-vm/docs).
+ * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs).
*
*
*
@@ -4399,7 +4577,7 @@ public Builder clearConfidentialInstanceConfig() {
*
*
* Optional. Confidential Instance Config for clusters using [Confidential
- * VMs](https://cloud.google.com/compute/confidential-vm/docs).
+ * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs).
*
*
*
@@ -4422,7 +4600,7 @@ public Builder clearConfidentialInstanceConfig() {
*
*
* Optional. Confidential Instance Config for clusters using [Confidential
- * VMs](https://cloud.google.com/compute/confidential-vm/docs).
+ * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs).
*
*
*
@@ -4446,6 +4624,220 @@ public Builder clearConfidentialInstanceConfig() {
return confidentialInstanceConfigBuilder_;
}
+ private com.google.protobuf.MapField resourceManagerTags_;
+
+ private com.google.protobuf.MapField
+ internalGetResourceManagerTags() {
+ if (resourceManagerTags_ == null) {
+ return com.google.protobuf.MapField.emptyMapField(
+ ResourceManagerTagsDefaultEntryHolder.defaultEntry);
+ }
+ return resourceManagerTags_;
+ }
+
+ private com.google.protobuf.MapField
+ internalGetMutableResourceManagerTags() {
+ if (resourceManagerTags_ == null) {
+ resourceManagerTags_ =
+ com.google.protobuf.MapField.newMapField(
+ ResourceManagerTagsDefaultEntryHolder.defaultEntry);
+ }
+ if (!resourceManagerTags_.isMutable()) {
+ resourceManagerTags_ = resourceManagerTags_.copy();
+ }
+ bitField0_ |= 0x00002000;
+ onChanged();
+ return resourceManagerTags_;
+ }
+
+ public int getResourceManagerTagsCount() {
+ return internalGetResourceManagerTags().getMap().size();
+ }
+
+ /**
+ *
+ *
+ *
+ * Optional. [Resource manager tags]
+ * (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ * to add to all instances (see [Use secure tags]
+ * (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ *
+ *
+ *
+ * map<string, string> resource_manager_tags = 16 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ @java.lang.Override
+ public boolean containsResourceManagerTags(java.lang.String key) {
+ if (key == null) {
+ throw new NullPointerException("map key");
+ }
+ return internalGetResourceManagerTags().getMap().containsKey(key);
+ }
+
+ /** Use {@link #getResourceManagerTagsMap()} instead. */
+ @java.lang.Override
+ @java.lang.Deprecated
+ public java.util.Map getResourceManagerTags() {
+ return getResourceManagerTagsMap();
+ }
+
+ /**
+ *
+ *
+ *
+ * Optional. [Resource manager tags]
+ * (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ * to add to all instances (see [Use secure tags]
+ * (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ *
+ *
+ *
+ * map<string, string> resource_manager_tags = 16 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ @java.lang.Override
+ public java.util.Map getResourceManagerTagsMap() {
+ return internalGetResourceManagerTags().getMap();
+ }
+
+ /**
+ *
+ *
+ *
+ * Optional. [Resource manager tags]
+ * (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ * to add to all instances (see [Use secure tags]
+ * (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ *
+ *
+ *
+ * map<string, string> resource_manager_tags = 16 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ @java.lang.Override
+ public /* nullable */ java.lang.String getResourceManagerTagsOrDefault(
+ java.lang.String key,
+ /* nullable */
+ java.lang.String defaultValue) {
+ if (key == null) {
+ throw new NullPointerException("map key");
+ }
+ java.util.Map map =
+ internalGetResourceManagerTags().getMap();
+ return map.containsKey(key) ? map.get(key) : defaultValue;
+ }
+
+ /**
+ *
+ *
+ *
+ * Optional. [Resource manager tags]
+ * (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ * to add to all instances (see [Use secure tags]
+ * (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ *
+ *
+ *
+ * map<string, string> resource_manager_tags = 16 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ @java.lang.Override
+ public java.lang.String getResourceManagerTagsOrThrow(java.lang.String key) {
+ if (key == null) {
+ throw new NullPointerException("map key");
+ }
+ java.util.Map map =
+ internalGetResourceManagerTags().getMap();
+ if (!map.containsKey(key)) {
+ throw new java.lang.IllegalArgumentException();
+ }
+ return map.get(key);
+ }
+
+ public Builder clearResourceManagerTags() {
+ bitField0_ = (bitField0_ & ~0x00002000);
+ internalGetMutableResourceManagerTags().getMutableMap().clear();
+ return this;
+ }
+
+ /**
+ *
+ *
+ *
+ * Optional. [Resource manager tags]
+ * (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ * to add to all instances (see [Use secure tags]
+ * (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ *
+ *
+ *
+ * map<string, string> resource_manager_tags = 16 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ public Builder removeResourceManagerTags(java.lang.String key) {
+ if (key == null) {
+ throw new NullPointerException("map key");
+ }
+ internalGetMutableResourceManagerTags().getMutableMap().remove(key);
+ return this;
+ }
+
+ /** Use alternate mutation accessors instead. */
+ @java.lang.Deprecated
+ public java.util.Map getMutableResourceManagerTags() {
+ bitField0_ |= 0x00002000;
+ return internalGetMutableResourceManagerTags().getMutableMap();
+ }
+
+ /**
+ *
+ *
+ *
+ * Optional. [Resource manager tags]
+ * (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ * to add to all instances (see [Use secure tags]
+ * (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ *
+ *
+ *
+ * map<string, string> resource_manager_tags = 16 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ public Builder putResourceManagerTags(java.lang.String key, java.lang.String value) {
+ if (key == null) {
+ throw new NullPointerException("map key");
+ }
+ if (value == null) {
+ throw new NullPointerException("map value");
+ }
+ internalGetMutableResourceManagerTags().getMutableMap().put(key, value);
+ bitField0_ |= 0x00002000;
+ return this;
+ }
+
+ /**
+ *
+ *
+ *
+ * Optional. [Resource manager tags]
+ * (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ * to add to all instances (see [Use secure tags]
+ * (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ *
+ *
+ *
+ * map<string, string> resource_manager_tags = 16 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ public Builder putAllResourceManagerTags(
+ java.util.Map values) {
+ internalGetMutableResourceManagerTags().getMutableMap().putAll(values);
+ bitField0_ |= 0x00002000;
+ return this;
+ }
+
// @@protoc_insertion_point(builder_scope:google.cloud.dataproc.v1.GceClusterConfig)
}
diff --git a/java-dataproc/proto-google-cloud-dataproc-v1/src/main/java/com/google/cloud/dataproc/v1/GceClusterConfigOrBuilder.java b/java-dataproc/proto-google-cloud-dataproc-v1/src/main/java/com/google/cloud/dataproc/v1/GceClusterConfigOrBuilder.java
index 1cacc3e006af..c85e93697bea 100644
--- a/java-dataproc/proto-google-cloud-dataproc-v1/src/main/java/com/google/cloud/dataproc/v1/GceClusterConfigOrBuilder.java
+++ b/java-dataproc/proto-google-cloud-dataproc-v1/src/main/java/com/google/cloud/dataproc/v1/GceClusterConfigOrBuilder.java
@@ -670,7 +670,7 @@ java.lang.String getMetadataOrDefault(
*
*
* Optional. Confidential Instance Config for clusters using [Confidential
- * VMs](https://cloud.google.com/compute/confidential-vm/docs).
+ * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs).
*
*
*
@@ -686,7 +686,7 @@ java.lang.String getMetadataOrDefault(
*
*
* Optional. Confidential Instance Config for clusters using [Confidential
- * VMs](https://cloud.google.com/compute/confidential-vm/docs).
+ * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs).
*
*
*
@@ -702,7 +702,7 @@ java.lang.String getMetadataOrDefault(
*
*
* Optional. Confidential Instance Config for clusters using [Confidential
- * VMs](https://cloud.google.com/compute/confidential-vm/docs).
+ * VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs).
*
*
*
@@ -711,4 +711,92 @@ java.lang.String getMetadataOrDefault(
*/
com.google.cloud.dataproc.v1.ConfidentialInstanceConfigOrBuilder
getConfidentialInstanceConfigOrBuilder();
+
+ /**
+ *
+ *
+ *
+ * Optional. [Resource manager tags]
+ * (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ * to add to all instances (see [Use secure tags]
+ * (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ *
+ *
+ *
+ * map<string, string> resource_manager_tags = 16 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ int getResourceManagerTagsCount();
+
+ /**
+ *
+ *
+ *
+ * Optional. [Resource manager tags]
+ * (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ * to add to all instances (see [Use secure tags]
+ * (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ *
+ *
+ *
+ * map<string, string> resource_manager_tags = 16 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ boolean containsResourceManagerTags(java.lang.String key);
+
+ /** Use {@link #getResourceManagerTagsMap()} instead. */
+ @java.lang.Deprecated
+ java.util.Map getResourceManagerTags();
+
+ /**
+ *
+ *
+ *
+ * Optional. [Resource manager tags]
+ * (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ * to add to all instances (see [Use secure tags]
+ * (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ *
+ *
+ *
+ * map<string, string> resource_manager_tags = 16 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ java.util.Map getResourceManagerTagsMap();
+
+ /**
+ *
+ *
+ *
+ * Optional. [Resource manager tags]
+ * (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ * to add to all instances (see [Use secure tags]
+ * (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ *
+ *
+ *
+ * map<string, string> resource_manager_tags = 16 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ /* nullable */
+ java.lang.String getResourceManagerTagsOrDefault(
+ java.lang.String key,
+ /* nullable */
+ java.lang.String defaultValue);
+
+ /**
+ *
+ *
+ *
+ * Optional. [Resource manager tags]
+ * (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ * to add to all instances (see [Use secure tags]
+ * (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ *
+ *
+ *
+ * map<string, string> resource_manager_tags = 16 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ */
+ java.lang.String getResourceManagerTagsOrThrow(java.lang.String key);
}
diff --git a/java-dataproc/proto-google-cloud-dataproc-v1/src/main/proto/google/cloud/dataproc/v1/clusters.proto b/java-dataproc/proto-google-cloud-dataproc-v1/src/main/proto/google/cloud/dataproc/v1/clusters.proto
index f1bc59a225e6..984f3ebbdadc 100644
--- a/java-dataproc/proto-google-cloud-dataproc-v1/src/main/proto/google/cloud/dataproc/v1/clusters.proto
+++ b/java-dataproc/proto-google-cloud-dataproc-v1/src/main/proto/google/cloud/dataproc/v1/clusters.proto
@@ -608,9 +608,16 @@ message GceClusterConfig {
[(google.api.field_behavior) = OPTIONAL];
// Optional. Confidential Instance Config for clusters using [Confidential
- // VMs](https://cloud.google.com/compute/confidential-vm/docs).
+ // VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs).
ConfidentialInstanceConfig confidential_instance_config = 15
[(google.api.field_behavior) = OPTIONAL];
+
+ // Optional. [Resource manager tags]
+ // (https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing)
+ // to add to all instances (see [Use secure tags]
+ // (https://cloud.google.com/dataproc/docs/guides/use-secure-tags)).
+ map resource_manager_tags = 16
+ [(google.api.field_behavior) = OPTIONAL];
}
// Node Group Affinity for clusters using sole-tenant node groups.
@@ -645,11 +652,36 @@ message ShieldedInstanceConfig {
}
// Confidential Instance Config for clusters using [Confidential
-// VMs](https://cloud.google.com/compute/confidential-vm/docs)
+// VMs](https://cloud.google.com/confidential-computing/confidential-vm/docs)
message ConfidentialInstanceConfig {
- // Optional. Defines whether the instance should have confidential compute
- // enabled.
- bool enable_confidential_compute = 1 [(google.api.field_behavior) = OPTIONAL];
+ // The type of Confidential Compute technology as per [Confidential Computing
+ // types](https://cloud.google.com/confidential-computing/confidential-vm/docs/create-a-confidential-vm-instance#create-instance).
+ // New values may be added in the future.
+ enum ConfidentialInstanceType {
+ // Confidential Instance Type is not specified.
+ CONFIDENTIAL_INSTANCE_TYPE_UNSPECIFIED = 0;
+
+ // [AMD Secure Encrypted
+ // Virtualization](https://cloud.google.com/confidential-computing/confidential-vm/docs/confidential-vm-overview#amd_sev)
+ SEV = 1;
+
+ // [AMD Secure Encrypted Virtualization-Secure Nested
+ // Paging](https://cloud.google.com/confidential-computing/confidential-vm/docs/confidential-vm-overview#amd_sev-snp)
+ SEV_SNP = 2;
+
+ // [Intel Trust Domain
+ // Extensions](https://cloud.google.com/confidential-computing/confidential-vm/docs/confidential-vm-overview#intel_tdx)
+ TDX = 3;
+ }
+
+ // Optional. Deprecated: Use 'confidential_instance_type' instead.
+ // Defines whether the instance should have confidential compute enabled.
+ bool enable_confidential_compute = 1
+ [deprecated = true, (google.api.field_behavior) = OPTIONAL];
+
+ // Optional. Defines the type of Confidential Compute technology to use.
+ ConfidentialInstanceType confidential_instance_type = 2
+ [(google.api.field_behavior) = OPTIONAL];
}
// The config settings for Compute Engine resources in
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/AgentsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/AgentsClient.java
index d237807d65cd..9fbffc7c1103 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/AgentsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/AgentsClient.java
@@ -279,8 +279,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1714,9 +1713,8 @@ public final GenerativeSettings updateGenerativeSettings(
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1760,9 +1758,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1806,9 +1803,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/ChangelogsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/ChangelogsClient.java
index 654777b5f0c4..f1fbdb7df2d0 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/ChangelogsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/ChangelogsClient.java
@@ -107,8 +107,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -524,9 +523,8 @@ public final UnaryCallable getChangelogCallable(
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -570,9 +568,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -617,9 +614,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/DeploymentsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/DeploymentsClient.java
index 8c3598221f4e..4b64b46d9214 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/DeploymentsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/DeploymentsClient.java
@@ -109,8 +109,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -548,9 +547,8 @@ public final UnaryCallable getDeploymentCallab
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -594,9 +592,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -641,9 +638,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/EntityTypesClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/EntityTypesClient.java
index 9a815f8a3321..620ad2b93891 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/EntityTypesClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/EntityTypesClient.java
@@ -205,8 +205,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1209,9 +1208,8 @@ public final UnaryCallable importEntityType
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1255,9 +1253,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1302,9 +1299,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/EnvironmentsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/EnvironmentsClient.java
index 23ccbee3a8e7..92ea117bc1ca 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/EnvironmentsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/EnvironmentsClient.java
@@ -253,8 +253,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1787,9 +1786,8 @@ public final UnaryCallable deployFlowCallable() {
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1833,9 +1831,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1880,9 +1877,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/ExamplesClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/ExamplesClient.java
index 8dab5dcbf8a5..3fed534b9dd9 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/ExamplesClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/ExamplesClient.java
@@ -166,8 +166,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -916,9 +915,8 @@ public final UnaryCallable updateExampleCallable(
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -962,9 +960,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1008,9 +1005,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/ExperimentsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/ExperimentsClient.java
index 66be0e03ba36..1ce4a085af46 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/ExperimentsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/ExperimentsClient.java
@@ -205,8 +205,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1235,9 +1234,8 @@ public final UnaryCallable stopExperimentCall
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1281,9 +1279,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1328,9 +1325,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/FlowsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/FlowsClient.java
index 57899f3802a9..4f4b513f3f8c 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/FlowsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/FlowsClient.java
@@ -266,8 +266,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1676,9 +1675,8 @@ public final UnaryCallable exportFlowCallable() {
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1722,9 +1720,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1768,9 +1765,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/GeneratorsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/GeneratorsClient.java
index 794f8891e8bc..5105787d3d87 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/GeneratorsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/GeneratorsClient.java
@@ -165,8 +165,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -913,9 +912,8 @@ public final UnaryCallable deleteGeneratorCallabl
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -959,9 +957,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1006,9 +1003,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/IntentsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/IntentsClient.java
index c994f0a5f8ee..874593460980 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/IntentsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/IntentsClient.java
@@ -207,8 +207,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1217,9 +1216,8 @@ public final UnaryCallable exportIntentsCallabl
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1263,9 +1261,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1309,9 +1306,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/PagesClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/PagesClient.java
index 53337d1ace27..bcd4b31f542e 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/PagesClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/PagesClient.java
@@ -168,8 +168,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -940,9 +939,8 @@ public final UnaryCallable deletePageCallable() {
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -986,9 +984,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1032,9 +1029,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/PlaybooksClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/PlaybooksClient.java
index a2a15b5f36f3..a8119025355b 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/PlaybooksClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/PlaybooksClient.java
@@ -299,8 +299,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1919,9 +1918,8 @@ public final UnaryCallable deletePlaybookVe
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1965,9 +1963,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -2011,9 +2008,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/SecuritySettingsServiceClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/SecuritySettingsServiceClient.java
index 7ad44b3aebc0..feae18a6d3f3 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/SecuritySettingsServiceClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/SecuritySettingsServiceClient.java
@@ -169,8 +169,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -977,9 +976,8 @@ public final void deleteSecuritySettings(DeleteSecuritySettingsRequest request)
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1024,9 +1022,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1072,9 +1069,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/SessionEntityTypesClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/SessionEntityTypesClient.java
index 0e571ecf81e7..7cf37ee8183c 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/SessionEntityTypesClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/SessionEntityTypesClient.java
@@ -169,8 +169,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1009,9 +1008,8 @@ public final void deleteSessionEntityType(DeleteSessionEntityTypeRequest request
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1055,9 +1053,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1102,9 +1099,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/SessionsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/SessionsClient.java
index 850c8e7ed79a..bbc5804c39ff 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/SessionsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/SessionsClient.java
@@ -160,8 +160,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -666,9 +665,8 @@ public final AnswerFeedback submitAnswerFeedback(SubmitAnswerFeedbackRequest req
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -712,9 +710,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -758,9 +755,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/TestCasesClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/TestCasesClient.java
index 43dd27191f69..ff2d0dba9e00 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/TestCasesClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/TestCasesClient.java
@@ -292,8 +292,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1888,9 +1887,8 @@ public final UnaryCallable getTestCase
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1934,9 +1932,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1980,9 +1977,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/ToolsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/ToolsClient.java
index f86af4ad0fea..ed0e4c39f789 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/ToolsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/ToolsClient.java
@@ -262,8 +262,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1636,9 +1635,8 @@ public final RestoreToolVersionResponse restoreToolVersion(RestoreToolVersionReq
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1682,9 +1680,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1728,9 +1725,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/TransitionRouteGroupsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/TransitionRouteGroupsClient.java
index 375754d68145..fc578661736b 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/TransitionRouteGroupsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/TransitionRouteGroupsClient.java
@@ -175,8 +175,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1163,9 +1162,8 @@ public final void deleteTransitionRouteGroup(DeleteTransitionRouteGroupRequest r
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1210,9 +1208,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1258,9 +1255,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/VersionsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/VersionsClient.java
index 00958e9104e8..3ada2dcfa4a7 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/VersionsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/VersionsClient.java
@@ -216,8 +216,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1392,9 +1391,8 @@ public final CompareVersionsResponse compareVersions(CompareVersionsRequest requ
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1438,9 +1436,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1484,9 +1481,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/WebhooksClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/WebhooksClient.java
index 95294db20806..bc126836dafe 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/WebhooksClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3/WebhooksClient.java
@@ -165,8 +165,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -893,9 +892,8 @@ public final UnaryCallable deleteWebhookCallable()
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -939,9 +937,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -985,9 +982,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/AgentsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/AgentsClient.java
index d3aa9430db7d..75e1de3c5e0a 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/AgentsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/AgentsClient.java
@@ -279,8 +279,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1715,9 +1714,8 @@ public final GenerativeSettings updateGenerativeSettings(
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1761,9 +1759,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1807,9 +1804,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ChangelogsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ChangelogsClient.java
index 5da2bf417658..5e7928cbe348 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ChangelogsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ChangelogsClient.java
@@ -109,8 +109,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -527,9 +526,8 @@ public final UnaryCallable getChangelogCallable(
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -573,9 +571,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -620,9 +617,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ConversationHistoryClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ConversationHistoryClient.java
index 0354ba305357..e843cb6ce573 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ConversationHistoryClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ConversationHistoryClient.java
@@ -130,8 +130,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -683,9 +682,8 @@ public final UnaryCallable deleteConversationC
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -729,9 +727,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -776,9 +773,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/DeploymentsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/DeploymentsClient.java
index 516534f6b4e4..700448b4b1cd 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/DeploymentsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/DeploymentsClient.java
@@ -110,8 +110,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -550,9 +549,8 @@ public final UnaryCallable getDeploymentCallab
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -596,9 +594,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -643,9 +640,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/EntityTypesClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/EntityTypesClient.java
index 0f5b43633956..a08a31ecd8dd 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/EntityTypesClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/EntityTypesClient.java
@@ -204,8 +204,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1197,9 +1196,8 @@ public final UnaryCallable importEntityType
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1243,9 +1241,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1290,9 +1287,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/EnvironmentsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/EnvironmentsClient.java
index 5230585990f6..7d85549ead37 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/EnvironmentsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/EnvironmentsClient.java
@@ -253,8 +253,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1793,9 +1792,8 @@ public final UnaryCallable deployFlowCallable() {
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1839,9 +1837,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1886,9 +1883,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ExamplesClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ExamplesClient.java
index 5fc01b9a17d0..89494c0b834b 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ExamplesClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ExamplesClient.java
@@ -167,8 +167,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -918,9 +917,8 @@ public final UnaryCallable updateExampleCallable(
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -964,9 +962,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1010,9 +1007,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ExperimentsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ExperimentsClient.java
index dcf41b27540f..1134e1eae4d8 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ExperimentsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ExperimentsClient.java
@@ -206,8 +206,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1237,9 +1236,8 @@ public final UnaryCallable stopExperimentCall
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1283,9 +1281,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1330,9 +1327,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/FlowsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/FlowsClient.java
index fa4c53d7788c..c7209edb21a2 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/FlowsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/FlowsClient.java
@@ -266,8 +266,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1677,9 +1676,8 @@ public final UnaryCallable exportFlowCallable() {
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1723,9 +1721,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1769,9 +1766,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/GeneratorsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/GeneratorsClient.java
index f4ee0f01d038..2f31eb6e0a28 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/GeneratorsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/GeneratorsClient.java
@@ -167,8 +167,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -916,9 +915,8 @@ public final UnaryCallable deleteGeneratorCallabl
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -962,9 +960,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1009,9 +1006,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/IntentsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/IntentsClient.java
index 3d43cf54872f..3440802b59fc 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/IntentsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/IntentsClient.java
@@ -207,8 +207,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1224,9 +1223,8 @@ public final UnaryCallable exportIntentsCallabl
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1270,9 +1268,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1316,9 +1313,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/PagesClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/PagesClient.java
index 52e68125e739..397b606d13c2 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/PagesClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/PagesClient.java
@@ -166,8 +166,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -906,9 +905,8 @@ public final UnaryCallable deletePageCallable() {
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -952,9 +950,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -998,9 +995,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/PlaybooksClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/PlaybooksClient.java
index 4dc7c4e875d1..bce643339ef5 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/PlaybooksClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/PlaybooksClient.java
@@ -300,8 +300,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1921,9 +1920,8 @@ public final UnaryCallable deletePlaybookVe
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1967,9 +1965,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -2013,9 +2010,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/SecuritySettingsServiceClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/SecuritySettingsServiceClient.java
index 1ac82caced29..8a5f319f3c8f 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/SecuritySettingsServiceClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/SecuritySettingsServiceClient.java
@@ -170,8 +170,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -983,9 +982,8 @@ public final void deleteSecuritySettings(DeleteSecuritySettingsRequest request)
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1030,9 +1028,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1078,9 +1075,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/SessionEntityTypesClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/SessionEntityTypesClient.java
index 901612ffb983..c6741957c499 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/SessionEntityTypesClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/SessionEntityTypesClient.java
@@ -170,8 +170,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1011,9 +1010,8 @@ public final void deleteSessionEntityType(DeleteSessionEntityTypeRequest request
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1057,9 +1055,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1104,9 +1101,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/SessionsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/SessionsClient.java
index 21ce784cebd3..185f805805df 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/SessionsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/SessionsClient.java
@@ -161,8 +161,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -668,9 +667,8 @@ public final AnswerFeedback submitAnswerFeedback(SubmitAnswerFeedbackRequest req
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -714,9 +712,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -760,9 +757,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/TestCasesClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/TestCasesClient.java
index 83964b72542f..08ce55ee3056 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/TestCasesClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/TestCasesClient.java
@@ -293,8 +293,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1896,9 +1895,8 @@ public final UnaryCallable getTestCase
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1942,9 +1940,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1988,9 +1985,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ToolsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ToolsClient.java
index 40d7f4d614dd..984941792be5 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ToolsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ToolsClient.java
@@ -282,8 +282,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1770,9 +1769,8 @@ public final RestoreToolVersionResponse restoreToolVersion(RestoreToolVersionReq
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1816,9 +1814,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1862,9 +1859,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/TransitionRouteGroupsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/TransitionRouteGroupsClient.java
index 0edee41fedd3..7ee4df84f68b 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/TransitionRouteGroupsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/TransitionRouteGroupsClient.java
@@ -176,8 +176,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1168,9 +1167,8 @@ public final void deleteTransitionRouteGroup(DeleteTransitionRouteGroupRequest r
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1215,9 +1213,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1263,9 +1260,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/VersionsClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/VersionsClient.java
index 9e27db6e267e..71e53f98f23b 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/VersionsClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/VersionsClient.java
@@ -216,8 +216,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1400,9 +1399,8 @@ public final CompareVersionsResponse compareVersions(CompareVersionsRequest requ
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1446,9 +1444,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1492,9 +1489,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/WebhooksClient.java b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/WebhooksClient.java
index 4ae643a5d6eb..21aecb0fd513 100644
--- a/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/WebhooksClient.java
+++ b/java-dialogflow-cx/google-cloud-dialogflow-cx/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/WebhooksClient.java
@@ -166,8 +166,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -895,9 +894,8 @@ public final UnaryCallable deleteWebhookCallable()
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -941,9 +939,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -987,9 +984,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/java/com/google/cloud/dialogflow/cx/v3/AudioConfigProto.java b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/java/com/google/cloud/dialogflow/cx/v3/AudioConfigProto.java
index 99ec78961e49..4496f895b473 100644
--- a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/java/com/google/cloud/dialogflow/cx/v3/AudioConfigProto.java
+++ b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/java/com/google/cloud/dialogflow/cx/v3/AudioConfigProto.java
@@ -135,20 +135,20 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\n\035SSML_VOICE_GENDER_UNSPECIFIED\020\000\022\032\n\026SSM"
+ "L_VOICE_GENDER_MALE\020\001\022\034\n\030SSML_VOICE_GEND"
+ "ER_FEMALE\020\002\022\035\n\031SSML_VOICE_GENDER_NEUTRAL"
- + "\020\003*\214\002\n\023OutputAudioEncoding\022%\n!OUTPUT_AUD"
+ + "\020\003*\220\002\n\023OutputAudioEncoding\022%\n!OUTPUT_AUD"
+ "IO_ENCODING_UNSPECIFIED\020\000\022#\n\037OUTPUT_AUDI"
- + "O_ENCODING_LINEAR_16\020\001\022\035\n\031OUTPUT_AUDIO_E"
- + "NCODING_MP3\020\002\022%\n!OUTPUT_AUDIO_ENCODING_M"
- + "P3_64_KBPS\020\004\022\"\n\036OUTPUT_AUDIO_ENCODING_OG"
- + "G_OPUS\020\003\022\037\n\033OUTPUT_AUDIO_ENCODING_MULAW\020"
- + "\005\022\036\n\032OUTPUT_AUDIO_ENCODING_ALAW\020\006B\213\002\n!co"
- + "m.google.cloud.dialogflow.cx.v3B\020AudioCo"
- + "nfigProtoP\001Z1cloud.google.com/go/dialogf"
- + "low/cx/apiv3/cxpb;cxpb\242\002\002DF\252\002\035Google.Clo"
- + "ud.Dialogflow.Cx.V3\352\002!Google::Cloud::Dia"
- + "logflow::CX::V3\352AU\n\033automl.googleapis.co"
- + "m/Model\0226projects/{project}/locations/{l"
- + "ocation}/models/{model}b\006proto3"
+ + "O_ENCODING_LINEAR_16\020\001\022!\n\031OUTPUT_AUDIO_E"
+ + "NCODING_MP3\020\002\032\002\010\001\022%\n!OUTPUT_AUDIO_ENCODI"
+ + "NG_MP3_64_KBPS\020\004\022\"\n\036OUTPUT_AUDIO_ENCODIN"
+ + "G_OGG_OPUS\020\003\022\037\n\033OUTPUT_AUDIO_ENCODING_MU"
+ + "LAW\020\005\022\036\n\032OUTPUT_AUDIO_ENCODING_ALAW\020\006B\213\002"
+ + "\n!com.google.cloud.dialogflow.cx.v3B\020Aud"
+ + "ioConfigProtoP\001Z1cloud.google.com/go/dia"
+ + "logflow/cx/apiv3/cxpb;cxpb\242\002\002DF\252\002\035Google"
+ + ".Cloud.Dialogflow.Cx.V3\352\002!Google::Cloud:"
+ + ":Dialogflow::CX::V3\352AU\n\033automl.googleapi"
+ + "s.com/Model\0226projects/{project}/location"
+ + "s/{location}/models/{model}b\006proto3"
};
descriptor =
com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom(
diff --git a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/java/com/google/cloud/dialogflow/cx/v3/DetectIntentResponseView.java b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/java/com/google/cloud/dialogflow/cx/v3/DetectIntentResponseView.java
index fd0300b81376..1af76bae74de 100644
--- a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/java/com/google/cloud/dialogflow/cx/v3/DetectIntentResponseView.java
+++ b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/java/com/google/cloud/dialogflow/cx/v3/DetectIntentResponseView.java
@@ -59,6 +59,11 @@ public enum DetectIntentResponseView implements com.google.protobuf.ProtocolMess
* Basic response view omits the following fields:
* -
* [QueryResult.diagnostic_info][google.cloud.dialogflow.cx.v3.QueryResult.diagnostic_info]
+ * - [QueryResult.generative_info][]
+ * -
+ * [QueryResult.trace_blocks][google.cloud.dialogflow.cx.v3.QueryResult.trace_blocks]
+ * -
+ * [QueryResult.data_store_connection_signals][google.cloud.dialogflow.cx.v3.QueryResult.data_store_connection_signals]
*
*
* DETECT_INTENT_RESPONSE_VIEW_BASIC = 2;
@@ -118,6 +123,11 @@ public enum DetectIntentResponseView implements com.google.protobuf.ProtocolMess
* Basic response view omits the following fields:
* -
* [QueryResult.diagnostic_info][google.cloud.dialogflow.cx.v3.QueryResult.diagnostic_info]
+ * - [QueryResult.generative_info][]
+ * -
+ * [QueryResult.trace_blocks][google.cloud.dialogflow.cx.v3.QueryResult.trace_blocks]
+ * -
+ * [QueryResult.data_store_connection_signals][google.cloud.dialogflow.cx.v3.QueryResult.data_store_connection_signals]
*
*
* DETECT_INTENT_RESPONSE_VIEW_BASIC = 2;
diff --git a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/java/com/google/cloud/dialogflow/cx/v3/OutputAudioEncoding.java b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/java/com/google/cloud/dialogflow/cx/v3/OutputAudioEncoding.java
index 51b027002c2e..0ee0799935c1 100644
--- a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/java/com/google/cloud/dialogflow/cx/v3/OutputAudioEncoding.java
+++ b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/java/com/google/cloud/dialogflow/cx/v3/OutputAudioEncoding.java
@@ -57,11 +57,12 @@ public enum OutputAudioEncoding implements com.google.protobuf.ProtocolMessageEn
*
*
*
- * MP3 audio at 32kbps.
+ * MP3 audio at 64kbps.
*
*
- * OUTPUT_AUDIO_ENCODING_MP3 = 2;
+ * OUTPUT_AUDIO_ENCODING_MP3 = 2 [deprecated = true];
*/
+ @java.lang.Deprecated
OUTPUT_AUDIO_ENCODING_MP3(2),
/**
*
@@ -148,12 +149,12 @@ public enum OutputAudioEncoding implements com.google.protobuf.ProtocolMessageEn
*
*
*
- * MP3 audio at 32kbps.
+ * MP3 audio at 64kbps.
*
*
- * OUTPUT_AUDIO_ENCODING_MP3 = 2;
+ * OUTPUT_AUDIO_ENCODING_MP3 = 2 [deprecated = true];
*/
- public static final int OUTPUT_AUDIO_ENCODING_MP3_VALUE = 2;
+ @java.lang.Deprecated public static final int OUTPUT_AUDIO_ENCODING_MP3_VALUE = 2;
/**
*
diff --git a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/proto/google/cloud/dialogflow/cx/v3/audio_config.proto b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/proto/google/cloud/dialogflow/cx/v3/audio_config.proto
index c29a088c3040..8c17ea3b261a 100644
--- a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/proto/google/cloud/dialogflow/cx/v3/audio_config.proto
+++ b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/proto/google/cloud/dialogflow/cx/v3/audio_config.proto
@@ -314,8 +314,8 @@ enum OutputAudioEncoding {
// LINT: LEGACY_NAMES
OUTPUT_AUDIO_ENCODING_LINEAR_16 = 1;
- // MP3 audio at 32kbps.
- OUTPUT_AUDIO_ENCODING_MP3 = 2;
+ // MP3 audio at 64kbps.
+ OUTPUT_AUDIO_ENCODING_MP3 = 2 [deprecated = true];
// MP3 audio at 64kbps.
// LINT: LEGACY_NAMES
diff --git a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/proto/google/cloud/dialogflow/cx/v3/session.proto b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/proto/google/cloud/dialogflow/cx/v3/session.proto
index bf7a6f42f352..498d06d63a2c 100644
--- a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/proto/google/cloud/dialogflow/cx/v3/session.proto
+++ b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3/src/main/proto/google/cloud/dialogflow/cx/v3/session.proto
@@ -1406,6 +1406,11 @@ enum DetectIntentResponseView {
// Basic response view omits the following fields:
// -
// [QueryResult.diagnostic_info][google.cloud.dialogflow.cx.v3.QueryResult.diagnostic_info]
+ // - [QueryResult.generative_info][]
+ // -
+ // [QueryResult.trace_blocks][google.cloud.dialogflow.cx.v3.QueryResult.trace_blocks]
+ // -
+ // [QueryResult.data_store_connection_signals][google.cloud.dialogflow.cx.v3.QueryResult.data_store_connection_signals]
DETECT_INTENT_RESPONSE_VIEW_BASIC = 2;
// Default response view omits the following fields:
diff --git a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/AudioConfigProto.java b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/AudioConfigProto.java
index b0a7db5ef0fa..7a37ea9333e2 100644
--- a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/AudioConfigProto.java
+++ b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/AudioConfigProto.java
@@ -136,21 +136,21 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "mlVoiceGender\022!\n\035SSML_VOICE_GENDER_UNSPE"
+ "CIFIED\020\000\022\032\n\026SSML_VOICE_GENDER_MALE\020\001\022\034\n\030"
+ "SSML_VOICE_GENDER_FEMALE\020\002\022\035\n\031SSML_VOICE"
- + "_GENDER_NEUTRAL\020\003*\214\002\n\023OutputAudioEncodin"
+ + "_GENDER_NEUTRAL\020\003*\220\002\n\023OutputAudioEncodin"
+ "g\022%\n!OUTPUT_AUDIO_ENCODING_UNSPECIFIED\020\000"
- + "\022#\n\037OUTPUT_AUDIO_ENCODING_LINEAR_16\020\001\022\035\n"
- + "\031OUTPUT_AUDIO_ENCODING_MP3\020\002\022%\n!OUTPUT_A"
- + "UDIO_ENCODING_MP3_64_KBPS\020\004\022\"\n\036OUTPUT_AU"
- + "DIO_ENCODING_OGG_OPUS\020\003\022\037\n\033OUTPUT_AUDIO_"
- + "ENCODING_MULAW\020\005\022\036\n\032OUTPUT_AUDIO_ENCODIN"
- + "G_ALAW\020\006B\237\002\n&com.google.cloud.dialogflow"
- + ".cx.v3beta1B\020AudioConfigProtoP\001Z6cloud.g"
- + "oogle.com/go/dialogflow/cx/apiv3beta1/cx"
- + "pb;cxpb\242\002\002DF\252\002\"Google.Cloud.Dialogflow.C"
- + "x.V3Beta1\352\002&Google::Cloud::Dialogflow::C"
- + "X::V3beta1\352AU\n\033automl.googleapis.com/Mod"
- + "el\0226projects/{project}/locations/{locati"
- + "on}/models/{model}b\006proto3"
+ + "\022#\n\037OUTPUT_AUDIO_ENCODING_LINEAR_16\020\001\022!\n"
+ + "\031OUTPUT_AUDIO_ENCODING_MP3\020\002\032\002\010\001\022%\n!OUTP"
+ + "UT_AUDIO_ENCODING_MP3_64_KBPS\020\004\022\"\n\036OUTPU"
+ + "T_AUDIO_ENCODING_OGG_OPUS\020\003\022\037\n\033OUTPUT_AU"
+ + "DIO_ENCODING_MULAW\020\005\022\036\n\032OUTPUT_AUDIO_ENC"
+ + "ODING_ALAW\020\006B\237\002\n&com.google.cloud.dialog"
+ + "flow.cx.v3beta1B\020AudioConfigProtoP\001Z6clo"
+ + "ud.google.com/go/dialogflow/cx/apiv3beta"
+ + "1/cxpb;cxpb\242\002\002DF\252\002\"Google.Cloud.Dialogfl"
+ + "ow.Cx.V3Beta1\352\002&Google::Cloud::Dialogflo"
+ + "w::CX::V3beta1\352AU\n\033automl.googleapis.com"
+ + "/Model\0226projects/{project}/locations/{lo"
+ + "cation}/models/{model}b\006proto3"
};
descriptor =
com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom(
diff --git a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/DetectIntentResponseView.java b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/DetectIntentResponseView.java
index b2611ec562e9..d86aba442b39 100644
--- a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/DetectIntentResponseView.java
+++ b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/DetectIntentResponseView.java
@@ -61,6 +61,10 @@ public enum DetectIntentResponseView implements com.google.protobuf.ProtocolMess
* [QueryResult.diagnostic_info][google.cloud.dialogflow.cx.v3beta1.QueryResult.diagnostic_info]
* -
* [QueryResult.generative_info][google.cloud.dialogflow.cx.v3beta1.QueryResult.generative_info]
+ * -
+ * [QueryResult.trace_blocks][google.cloud.dialogflow.cx.v3beta1.QueryResult.trace_blocks]
+ * -
+ * [QueryResult.data_store_connection_signals][google.cloud.dialogflow.cx.v3beta1.QueryResult.data_store_connection_signals]
*
*
* DETECT_INTENT_RESPONSE_VIEW_BASIC = 2;
@@ -122,6 +126,10 @@ public enum DetectIntentResponseView implements com.google.protobuf.ProtocolMess
* [QueryResult.diagnostic_info][google.cloud.dialogflow.cx.v3beta1.QueryResult.diagnostic_info]
* -
* [QueryResult.generative_info][google.cloud.dialogflow.cx.v3beta1.QueryResult.generative_info]
+ * -
+ * [QueryResult.trace_blocks][google.cloud.dialogflow.cx.v3beta1.QueryResult.trace_blocks]
+ * -
+ * [QueryResult.data_store_connection_signals][google.cloud.dialogflow.cx.v3beta1.QueryResult.data_store_connection_signals]
*
*
* DETECT_INTENT_RESPONSE_VIEW_BASIC = 2;
diff --git a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/OutputAudioEncoding.java b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/OutputAudioEncoding.java
index 894e4222acf3..301ddd72d535 100644
--- a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/OutputAudioEncoding.java
+++ b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/OutputAudioEncoding.java
@@ -57,11 +57,12 @@ public enum OutputAudioEncoding implements com.google.protobuf.ProtocolMessageEn
*
*
*
- * MP3 audio at 32kbps.
+ * MP3 audio at 64kbps.
*
*
- * OUTPUT_AUDIO_ENCODING_MP3 = 2;
+ * OUTPUT_AUDIO_ENCODING_MP3 = 2 [deprecated = true];
*/
+ @java.lang.Deprecated
OUTPUT_AUDIO_ENCODING_MP3(2),
/**
*
@@ -148,12 +149,12 @@ public enum OutputAudioEncoding implements com.google.protobuf.ProtocolMessageEn
*
*
*
- * MP3 audio at 32kbps.
+ * MP3 audio at 64kbps.
*
*
- * OUTPUT_AUDIO_ENCODING_MP3 = 2;
+ * OUTPUT_AUDIO_ENCODING_MP3 = 2 [deprecated = true];
*/
- public static final int OUTPUT_AUDIO_ENCODING_MP3_VALUE = 2;
+ @java.lang.Deprecated public static final int OUTPUT_AUDIO_ENCODING_MP3_VALUE = 2;
/**
*
diff --git a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/proto/google/cloud/dialogflow/cx/v3beta1/audio_config.proto b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/proto/google/cloud/dialogflow/cx/v3beta1/audio_config.proto
index 7a93fb1d6653..9ae05c99f8f3 100644
--- a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/proto/google/cloud/dialogflow/cx/v3beta1/audio_config.proto
+++ b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/proto/google/cloud/dialogflow/cx/v3beta1/audio_config.proto
@@ -314,8 +314,8 @@ enum OutputAudioEncoding {
// LINT: LEGACY_NAMES
OUTPUT_AUDIO_ENCODING_LINEAR_16 = 1;
- // MP3 audio at 32kbps.
- OUTPUT_AUDIO_ENCODING_MP3 = 2;
+ // MP3 audio at 64kbps.
+ OUTPUT_AUDIO_ENCODING_MP3 = 2 [deprecated = true];
// MP3 audio at 64kbps.
// LINT: LEGACY_NAMES
diff --git a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/proto/google/cloud/dialogflow/cx/v3beta1/session.proto b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/proto/google/cloud/dialogflow/cx/v3beta1/session.proto
index d0d5ec02200c..e87990b0f12f 100644
--- a/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/proto/google/cloud/dialogflow/cx/v3beta1/session.proto
+++ b/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/proto/google/cloud/dialogflow/cx/v3beta1/session.proto
@@ -1443,6 +1443,10 @@ enum DetectIntentResponseView {
// [QueryResult.diagnostic_info][google.cloud.dialogflow.cx.v3beta1.QueryResult.diagnostic_info]
// -
// [QueryResult.generative_info][google.cloud.dialogflow.cx.v3beta1.QueryResult.generative_info]
+ // -
+ // [QueryResult.trace_blocks][google.cloud.dialogflow.cx.v3beta1.QueryResult.trace_blocks]
+ // -
+ // [QueryResult.data_store_connection_signals][google.cloud.dialogflow.cx.v3beta1.QueryResult.data_store_connection_signals]
DETECT_INTENT_RESPONSE_VIEW_BASIC = 2;
// Default response view omits the following fields:
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AgentsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AgentsClient.java
index 1865fe2a86f3..fff95f531bc1 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AgentsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AgentsClient.java
@@ -257,8 +257,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1812,9 +1811,8 @@ public final ValidationResult getValidationResult(GetValidationResultRequest req
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1858,9 +1856,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1904,9 +1901,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AnswerRecordsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AnswerRecordsClient.java
index 529cb3afe1a4..a8e230a22daf 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AnswerRecordsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/AnswerRecordsClient.java
@@ -110,8 +110,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -541,9 +540,8 @@ public final UnaryCallable updateAnswer
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -587,9 +585,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -634,9 +631,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ContextsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ContextsClient.java
index 0c3b0c5b53f4..efb9926790f7 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ContextsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ContextsClient.java
@@ -186,8 +186,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1078,9 +1077,8 @@ public final UnaryCallable deleteAllContextsCal
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1124,9 +1122,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1170,9 +1167,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ConversationDatasetsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ConversationDatasetsClient.java
index 334c3ed866c7..a2a3946785d3 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ConversationDatasetsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ConversationDatasetsClient.java
@@ -179,8 +179,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1164,9 +1163,8 @@ public final ListConversationDatasetsPagedResponse listConversationDatasets(
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1211,9 +1209,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1259,9 +1256,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ConversationModelsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ConversationModelsClient.java
index 3cce465d6dfe..493a30746911 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ConversationModelsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ConversationModelsClient.java
@@ -245,8 +245,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1590,9 +1589,8 @@ public final ListConversationModelEvaluationsPagedResponse listConversationModel
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1636,9 +1634,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1683,9 +1680,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ConversationProfilesClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ConversationProfilesClient.java
index 1b004e718765..6b120b235c23 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ConversationProfilesClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ConversationProfilesClient.java
@@ -224,8 +224,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1664,9 +1663,8 @@ public final void deleteConversationProfile(DeleteConversationProfileRequest req
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1711,9 +1709,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1759,9 +1756,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ConversationsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ConversationsClient.java
index 4e9f777a93c3..cb02762be056 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ConversationsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ConversationsClient.java
@@ -273,8 +273,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1954,9 +1953,8 @@ public final GenerateSuggestionsResponse generateSuggestions(GenerateSuggestions
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -2000,9 +1998,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -2047,9 +2044,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/DocumentsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/DocumentsClient.java
index e82c366ed258..8f2e0ee35787 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/DocumentsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/DocumentsClient.java
@@ -239,8 +239,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1752,9 +1751,8 @@ public final UnaryCallable exportDocumentCalla
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1798,9 +1796,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1844,9 +1841,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/EncryptionSpecServiceClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/EncryptionSpecServiceClient.java
index 076cadadc67f..ee0ba9093770 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/EncryptionSpecServiceClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/EncryptionSpecServiceClient.java
@@ -113,8 +113,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -536,9 +535,8 @@ public final UnaryCallable getEncrypti
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -583,9 +581,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -631,9 +628,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/EntityTypesClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/EntityTypesClient.java
index ac34fe16dc17..2d70add01ac6 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/EntityTypesClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/EntityTypesClient.java
@@ -296,8 +296,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -2710,9 +2709,8 @@ public final UnaryCallable batchDeleteEnt
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -2756,9 +2754,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -2803,9 +2800,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/EnvironmentsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/EnvironmentsClient.java
index b2ff195f4a8a..03c70f71af32 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/EnvironmentsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/EnvironmentsClient.java
@@ -165,8 +165,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -834,9 +833,8 @@ public final GetEnvironmentHistoryPagedResponse getEnvironmentHistory(
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -880,9 +878,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -927,9 +924,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/FulfillmentsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/FulfillmentsClient.java
index 2fea4c43a379..85a5074fd732 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/FulfillmentsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/FulfillmentsClient.java
@@ -106,8 +106,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -445,9 +444,8 @@ public final UnaryCallable updateFulfillm
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -491,9 +489,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -538,9 +535,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/GeneratorEvaluationsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/GeneratorEvaluationsClient.java
index baa94027c703..c5462b6fe0f7 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/GeneratorEvaluationsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/GeneratorEvaluationsClient.java
@@ -155,8 +155,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -937,9 +936,8 @@ public final void deleteGeneratorEvaluation(DeleteGeneratorEvaluationRequest req
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -984,9 +982,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1032,9 +1029,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/GeneratorsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/GeneratorsClient.java
index 1006649c04aa..629bded86d05 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/GeneratorsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/GeneratorsClient.java
@@ -170,8 +170,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -927,9 +926,8 @@ public final UnaryCallable updateGeneratorCal
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -973,9 +971,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1020,9 +1017,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/IntentsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/IntentsClient.java
index 91469ac7b216..e87d5f093d28 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/IntentsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/IntentsClient.java
@@ -229,8 +229,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1858,9 +1857,8 @@ public final UnaryCallable batchDeleteInte
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1904,9 +1902,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1950,9 +1947,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/KnowledgeBasesClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/KnowledgeBasesClient.java
index dcad96966805..5ba85e67b312 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/KnowledgeBasesClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/KnowledgeBasesClient.java
@@ -169,8 +169,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1001,9 +1000,8 @@ public final KnowledgeBase updateKnowledgeBase(UpdateKnowledgeBaseRequest reques
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1047,9 +1045,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1094,9 +1091,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ParticipantsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ParticipantsClient.java
index 1c4f2e224e28..89b31fc595bd 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ParticipantsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ParticipantsClient.java
@@ -255,8 +255,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1788,9 +1787,8 @@ public final SuggestKnowledgeAssistResponse suggestKnowledgeAssist(
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1834,9 +1832,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1881,9 +1878,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/SessionEntityTypesClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/SessionEntityTypesClient.java
index 1d242260d5f5..e49c9543aa02 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/SessionEntityTypesClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/SessionEntityTypesClient.java
@@ -176,8 +176,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1090,9 +1089,8 @@ public final void deleteSessionEntityType(DeleteSessionEntityTypeRequest request
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1136,9 +1134,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1183,9 +1180,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/SessionsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/SessionsClient.java
index f959485f41c0..a837a392626c 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/SessionsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/SessionsClient.java
@@ -106,8 +106,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -494,9 +493,8 @@ public final UnaryCallable detectInte
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -540,9 +538,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -586,9 +583,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/SipTrunksClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/SipTrunksClient.java
index 655e68435be5..76259569f728 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/SipTrunksClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/SipTrunksClient.java
@@ -166,8 +166,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -892,9 +891,8 @@ public final UnaryCallable updateSipTrunkCallab
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -938,9 +936,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -984,9 +981,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ToolsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ToolsClient.java
index 16d8192d8710..b8525c442a8d 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ToolsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/ToolsClient.java
@@ -168,8 +168,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -909,9 +908,8 @@ public final UnaryCallable updateToolCallable() {
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -955,9 +953,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1001,9 +998,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/VersionsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/VersionsClient.java
index eac319a2bee0..f5fb8141d8dd 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/VersionsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2/VersionsClient.java
@@ -167,8 +167,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -924,9 +923,8 @@ public final UnaryCallable deleteVersionCallable()
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -970,9 +968,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1016,9 +1013,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AgentsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AgentsClient.java
index a1d9016b8c9c..53d497339e11 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AgentsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AgentsClient.java
@@ -256,8 +256,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1812,9 +1811,8 @@ public final ValidationResult getValidationResult(GetValidationResultRequest req
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1858,9 +1856,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1904,9 +1901,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AnswerRecordsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AnswerRecordsClient.java
index e2053860f98f..0cad54abdc68 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AnswerRecordsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/AnswerRecordsClient.java
@@ -125,8 +125,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -614,9 +613,8 @@ public final UnaryCallable updateAnswer
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -660,9 +658,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -707,9 +704,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ContextsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ContextsClient.java
index 83942101a190..bcbf00c7d973 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ContextsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ContextsClient.java
@@ -188,8 +188,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1157,9 +1156,8 @@ public final UnaryCallable deleteAllContextsCal
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1203,9 +1201,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1249,9 +1246,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ConversationProfilesClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ConversationProfilesClient.java
index 4f43c5d878fc..a53df4cb19fd 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ConversationProfilesClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ConversationProfilesClient.java
@@ -224,8 +224,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1649,9 +1648,8 @@ public final void deleteConversationProfile(DeleteConversationProfileRequest req
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1696,9 +1694,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1744,9 +1741,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ConversationsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ConversationsClient.java
index b3ba35035005..d925a04ce2e5 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ConversationsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ConversationsClient.java
@@ -290,8 +290,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -2114,9 +2113,8 @@ public final GenerateSuggestionsResponse generateSuggestions(GenerateSuggestions
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -2160,9 +2158,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -2207,9 +2204,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/DocumentsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/DocumentsClient.java
index 1cd765c617fe..42a63a591ebd 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/DocumentsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/DocumentsClient.java
@@ -228,8 +228,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1732,9 +1731,8 @@ public final UnaryCallable reloadDocumentCalla
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1778,9 +1776,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1824,9 +1821,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/EncryptionSpecServiceClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/EncryptionSpecServiceClient.java
index 9132a17ebc25..7d94d8ba0b12 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/EncryptionSpecServiceClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/EncryptionSpecServiceClient.java
@@ -113,8 +113,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -537,9 +536,8 @@ public final UnaryCallable getEncrypti
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -584,9 +582,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -632,9 +629,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/EntityTypesClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/EntityTypesClient.java
index c2baf76d7358..0d20bb1576c3 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/EntityTypesClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/EntityTypesClient.java
@@ -299,8 +299,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -2799,9 +2798,8 @@ public final UnaryCallable batchDeleteEnt
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -2845,9 +2843,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -2892,9 +2889,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/EnvironmentsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/EnvironmentsClient.java
index 64a7b01939e3..c5d35af91d63 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/EnvironmentsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/EnvironmentsClient.java
@@ -167,8 +167,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -837,9 +836,8 @@ public final GetEnvironmentHistoryPagedResponse getEnvironmentHistory(
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -883,9 +881,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -930,9 +927,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/FulfillmentsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/FulfillmentsClient.java
index 7f079a0bd964..3e1fa83d2bc2 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/FulfillmentsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/FulfillmentsClient.java
@@ -108,8 +108,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -450,9 +449,8 @@ public final UnaryCallable updateFulfillm
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -496,9 +494,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -543,9 +540,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/GeneratorEvaluationsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/GeneratorEvaluationsClient.java
index bae33359a342..b8edc1bd752e 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/GeneratorEvaluationsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/GeneratorEvaluationsClient.java
@@ -155,8 +155,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -938,9 +937,8 @@ public final void deleteGeneratorEvaluation(DeleteGeneratorEvaluationRequest req
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -985,9 +983,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1033,9 +1030,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/GeneratorsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/GeneratorsClient.java
index 53de3a85af25..2dbe7b6e8c0d 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/GeneratorsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/GeneratorsClient.java
@@ -171,8 +171,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -929,9 +928,8 @@ public final UnaryCallable updateGeneratorCal
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -975,9 +973,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1022,9 +1019,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/IntentsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/IntentsClient.java
index a8fda931343c..57715f91f14e 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/IntentsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/IntentsClient.java
@@ -231,8 +231,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1946,9 +1945,8 @@ public final UnaryCallable batchDeleteInte
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1992,9 +1990,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -2038,9 +2035,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/KnowledgeBasesClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/KnowledgeBasesClient.java
index 8305f3471e01..ba9dfbbd4959 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/KnowledgeBasesClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/KnowledgeBasesClient.java
@@ -176,8 +176,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1105,9 +1104,8 @@ public final KnowledgeBase updateKnowledgeBase(UpdateKnowledgeBaseRequest reques
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1151,9 +1149,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1198,9 +1195,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ParticipantsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ParticipantsClient.java
index 244aaa9456ed..6f75d04c1e4c 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ParticipantsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ParticipantsClient.java
@@ -301,8 +301,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -2132,9 +2131,8 @@ public final CompileSuggestionResponse compileSuggestion(CompileSuggestionReques
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -2178,9 +2176,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -2225,9 +2222,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/PhoneNumbersClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/PhoneNumbersClient.java
index 0bb78e93ec1e..68ec09d61972 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/PhoneNumbersClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/PhoneNumbersClient.java
@@ -149,8 +149,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -858,9 +857,8 @@ public final PhoneNumber undeletePhoneNumber(UndeletePhoneNumberRequest request)
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -904,9 +902,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -951,9 +948,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/SessionEntityTypesClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/SessionEntityTypesClient.java
index f186ab41e280..d3504e20d18e 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/SessionEntityTypesClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/SessionEntityTypesClient.java
@@ -177,8 +177,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -1136,9 +1135,8 @@ public final void deleteSessionEntityType(DeleteSessionEntityTypeRequest request
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1182,9 +1180,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1229,9 +1226,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/SessionsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/SessionsClient.java
index c9bda589f8de..12cc883c309f 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/SessionsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/SessionsClient.java
@@ -107,8 +107,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -504,9 +503,8 @@ public final UnaryCallable detectInte
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -550,9 +548,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -596,9 +593,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/SipTrunksClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/SipTrunksClient.java
index b76d81766279..4a1e627db526 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/SipTrunksClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/SipTrunksClient.java
@@ -167,8 +167,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -894,9 +893,8 @@ public final UnaryCallable updateSipTrunkCallab
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -940,9 +938,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -986,9 +983,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ToolsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ToolsClient.java
index b97defe0a0be..c2aa759d225b 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ToolsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ToolsClient.java
@@ -169,8 +169,7 @@
*
* ListLocations
* Lists information about the supported locations for this service.
- *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name] field:
- *
* **Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
+ *
This method lists locations based on the resource scope provided inthe [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field: ***Global locations**: If `name` is empty, the method lists thepublic locations available to all projects. * **Project-specificlocations**: If `name` follows the format`projects/{project}`, the method lists locations visible to thatspecific project. This includes public, private, or otherproject-specific locations enabled for the project.
*
For gRPC and client library implementations, the resource name ispassed as the `name` field. For direct service calls, the resourcename isincorporated into the request path based on the specific serviceimplementation and version.
*
* Request object method variants only take one parameter, a request object, which must be constructed before the call.
@@ -911,9 +910,8 @@ public final UnaryCallable updateToolCallable() {
* Lists information about the supported locations for this service.
*
* This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -957,9 +955,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
@@ -1003,9 +1000,8 @@ public final ListLocationsPagedResponse listLocations(ListLocationsRequest reque
* Lists information about the supported locations for this service.
*
*
This method lists locations based on the resource scope provided inthe
- * [ListLocationsRequest.name] field:
- *
- *
* **Global locations**: If `name` is empty, the method lists thepublic
+ * [ListLocationsRequest.name][google.cloud.location.ListLocationsRequest.name] field:
+ * ***Global locations**: If `name` is empty, the method lists thepublic
* locations available to all projects. * **Project-specificlocations**: If
* `name` follows the format`projects/{project}`, the method lists locations visible to
* thatspecific project. This includes public, private, or otherproject-specific locations enabled
diff --git a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/VersionsClient.java b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/VersionsClient.java
index b49737579b00..e261e584a99c 100644
--- a/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/VersionsClient.java
+++ b/java-dialogflow/google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/VersionsClient.java
@@ -168,8 +168,7 @@
*
*