diff --git a/.github/release-please.yml b/.github/release-please.yml index 82744682..dce2c845 100644 --- a/.github/release-please.yml +++ b/.github/release-please.yml @@ -1 +1,2 @@ releaseType: java-yoshi +bumpMinorPreMajor: true \ No newline at end of file diff --git a/.kokoro/build.sh b/.kokoro/build.sh index fa132f41..dc2936ef 100755 --- a/.kokoro/build.sh +++ b/.kokoro/build.sh @@ -27,6 +27,7 @@ echo ${JOB_TYPE} mvn install -B -V \ -DskipTests=true \ -Dclirr.skip=true \ + -Denforcer.skip=true \ -Dmaven.javadoc.skip=true \ -Dgcloud.download.skip=true \ -T 1C @@ -38,7 +39,7 @@ fi case ${JOB_TYPE} in test) - mvn test -B -Dclirr.skip=true + mvn test -B -Dclirr.skip=true -Denforcer.skip=true bash ${KOKORO_GFILE_DIR}/codecov.sh bash .kokoro/coerce_logs.sh ;; @@ -49,12 +50,17 @@ javadoc) mvn javadoc:javadoc javadoc:test-javadoc ;; integration) - mvn -B ${INTEGRATION_TEST_ARGS} -DtrimStackTrace=false -Dclirr.skip=true -fae verify + mvn -B ${INTEGRATION_TEST_ARGS} \ + -DtrimStackTrace=false \ + -Dclirr.skip=true \ + -Denforcer.skip=true \ + -fae \ + verify bash .kokoro/coerce_logs.sh ;; clirr) - mvn -B clirr:check + mvn -B -Denforcer.skip=true clirr:check ;; *) ;; -esac \ No newline at end of file +esac diff --git a/.kokoro/dependencies.sh b/.kokoro/dependencies.sh index 01618fec..e89602f4 100755 --- a/.kokoro/dependencies.sh +++ b/.kokoro/dependencies.sh @@ -23,5 +23,9 @@ echo $JOB_TYPE export MAVEN_OPTS="-Xmx1024m -XX:MaxPermSize=128m" -mvn install -DskipTests=true -B -V +# this should run maven enforcer +mvn install -B -V \ + -DskipTests=true \ + -Dclirr.skip=true + mvn -B dependency:analyze -DfailOnWarning=true diff --git a/google-cloud-datacatalog/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTagManagerClient.java b/google-cloud-datacatalog/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTagManagerClient.java index 06c957c7..2fda65b7 100644 --- a/google-cloud-datacatalog/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTagManagerClient.java +++ b/google-cloud-datacatalog/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTagManagerClient.java @@ -32,8 +32,8 @@ // AUTO-GENERATED DOCUMENTATION AND SERVICE /** - * Service Description: Policy tag manager API service allows clients to manage their taxonomies and - * policy tags data. + * Service Description: The policy tag manager API service allows clients to manage their taxonomies + * and policy tags. * *

This class provides the ability to make remote calls to the backing service through method * calls that map to API methods. Sample code to get started: @@ -154,7 +154,7 @@ public PolicyTagManagerStub getStub() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a new taxonomy in a given project. + * Creates a taxonomy in the specified project. * *

Sample code: * @@ -174,7 +174,7 @@ public final Taxonomy createTaxonomy(CreateTaxonomyRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a new taxonomy in a given project. + * Creates a taxonomy in the specified project. * *

Sample code: * @@ -193,7 +193,8 @@ public final UnaryCallable createTaxonomyCallab // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes a taxonomy. This operation will also delete all policy tags in this taxonomy. + * Deletes a taxonomy. This operation will also delete all policy tags in this taxonomy along with + * their associated policies. * *

Sample code: * @@ -213,7 +214,8 @@ public final void deleteTaxonomy(DeleteTaxonomyRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Deletes a taxonomy. This operation will also delete all policy tags in this taxonomy. + * Deletes a taxonomy. This operation will also delete all policy tags in this taxonomy along with + * their associated policies. * *

Sample code: * @@ -271,7 +273,8 @@ public final UnaryCallable updateTaxonomyCallab // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all taxonomies in a project in a particular location. + * Lists all taxonomies in a project in a particular location that the caller has permission to + * view. * *

Sample code: * @@ -291,7 +294,8 @@ public final ListTaxonomiesResponse listTaxonomies(ListTaxonomiesRequest request // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Lists all taxonomies in a project in a particular location. + * Lists all taxonomies in a project in a particular location that the caller has permission to + * view. * *

Sample code: * @@ -350,7 +354,7 @@ public final UnaryCallable getTaxonomyCallable() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a policy tag in a taxonomy. + * Creates a policy tag in the specified taxonomy. * *

Sample code: * @@ -370,7 +374,7 @@ public final PolicyTag createPolicyTag(CreatePolicyTagRequest request) { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Creates a policy tag in a taxonomy. + * Creates a policy tag in the specified taxonomy. * *

Sample code: * @@ -624,7 +628,7 @@ public final UnaryCallable setIamPolicyCallable() { // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on specified resources. + * Returns the permissions that a caller has on the specified taxonomy or policy tag. * *

Sample code: * @@ -644,7 +648,7 @@ public final TestIamPermissionsResponse testIamPermissions(TestIamPermissionsReq // AUTO-GENERATED DOCUMENTATION AND METHOD /** - * Returns permissions that a caller has on specified resources. + * Returns the permissions that a caller has on the specified taxonomy or policy tag. * *

Sample code: * diff --git a/google-cloud-datacatalog/src/main/java/com/google/cloud/datacatalog/v1beta1/package-info.java b/google-cloud-datacatalog/src/main/java/com/google/cloud/datacatalog/v1beta1/package-info.java index bcd6c39d..e1d7085a 100644 --- a/google-cloud-datacatalog/src/main/java/com/google/cloud/datacatalog/v1beta1/package-info.java +++ b/google-cloud-datacatalog/src/main/java/com/google/cloud/datacatalog/v1beta1/package-info.java @@ -39,8 +39,8 @@ * * ====================== PolicyTagManagerClient ====================== * - *

Service Description: Policy tag manager API service allows clients to manage their taxonomies - * and policy tags data. + *

Service Description: The policy tag manager API service allows clients to manage their + * taxonomies and policy tags. * *

Sample for PolicyTagManagerClient: * diff --git a/grpc-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTagManagerGrpc.java b/grpc-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTagManagerGrpc.java index 963a9af9..02d164ab 100644 --- a/grpc-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTagManagerGrpc.java +++ b/grpc-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTagManagerGrpc.java @@ -26,8 +26,8 @@ * * *

- * Policy tag manager API service allows clients to manage their taxonomies and
- * policy tags data.
+ * The policy tag manager API service allows clients to manage their taxonomies
+ * and policy tags.
  * 
*/ @javax.annotation.Generated( @@ -794,8 +794,8 @@ public static PolicyTagManagerFutureStub newFutureStub(io.grpc.Channel channel) * * *
-   * Policy tag manager API service allows clients to manage their taxonomies and
-   * policy tags data.
+   * The policy tag manager API service allows clients to manage their taxonomies
+   * and policy tags.
    * 
*/ public abstract static class PolicyTagManagerImplBase implements io.grpc.BindableService { @@ -804,7 +804,7 @@ public abstract static class PolicyTagManagerImplBase implements io.grpc.Bindabl * * *
-     * Creates a new taxonomy in a given project.
+     * Creates a taxonomy in the specified project.
      * 
*/ public void createTaxonomy( @@ -819,7 +819,7 @@ public void createTaxonomy( * *
      * Deletes a taxonomy. This operation will also delete all
-     * policy tags in this taxonomy.
+     * policy tags in this taxonomy along with their associated policies.
      * 
*/ public void deleteTaxonomy( @@ -846,7 +846,8 @@ public void updateTaxonomy( * * *
-     * Lists all taxonomies in a project in a particular location.
+     * Lists all taxonomies in a project in a particular location that the caller
+     * has permission to view.
      * 
*/ public void listTaxonomies( @@ -874,7 +875,7 @@ public void getTaxonomy( * * *
-     * Creates a policy tag in a taxonomy.
+     * Creates a policy tag in the specified taxonomy.
      * 
*/ public void createPolicyTag( @@ -969,7 +970,8 @@ public void setIamPolicy( * * *
-     * Returns permissions that a caller has on specified resources.
+     * Returns the permissions that a caller has on the specified taxonomy or
+     * policy tag.
      * 
*/ public void testIamPermissions( @@ -1076,8 +1078,8 @@ public final io.grpc.ServerServiceDefinition bindService() { * * *
-   * Policy tag manager API service allows clients to manage their taxonomies and
-   * policy tags data.
+   * The policy tag manager API service allows clients to manage their taxonomies
+   * and policy tags.
    * 
*/ public static final class PolicyTagManagerStub @@ -1099,7 +1101,7 @@ protected PolicyTagManagerStub build(io.grpc.Channel channel, io.grpc.CallOption * * *
-     * Creates a new taxonomy in a given project.
+     * Creates a taxonomy in the specified project.
      * 
*/ public void createTaxonomy( @@ -1117,7 +1119,7 @@ public void createTaxonomy( * *
      * Deletes a taxonomy. This operation will also delete all
-     * policy tags in this taxonomy.
+     * policy tags in this taxonomy along with their associated policies.
      * 
*/ public void deleteTaxonomy( @@ -1150,7 +1152,8 @@ public void updateTaxonomy( * * *
-     * Lists all taxonomies in a project in a particular location.
+     * Lists all taxonomies in a project in a particular location that the caller
+     * has permission to view.
      * 
*/ public void listTaxonomies( @@ -1184,7 +1187,7 @@ public void getTaxonomy( * * *
-     * Creates a policy tag in a taxonomy.
+     * Creates a policy tag in the specified taxonomy.
      * 
*/ public void createPolicyTag( @@ -1300,7 +1303,8 @@ public void setIamPolicy( * * *
-     * Returns permissions that a caller has on specified resources.
+     * Returns the permissions that a caller has on the specified taxonomy or
+     * policy tag.
      * 
*/ public void testIamPermissions( @@ -1318,8 +1322,8 @@ public void testIamPermissions( * * *
-   * Policy tag manager API service allows clients to manage their taxonomies and
-   * policy tags data.
+   * The policy tag manager API service allows clients to manage their taxonomies
+   * and policy tags.
    * 
*/ public static final class PolicyTagManagerBlockingStub @@ -1342,7 +1346,7 @@ protected PolicyTagManagerBlockingStub build( * * *
-     * Creates a new taxonomy in a given project.
+     * Creates a taxonomy in the specified project.
      * 
*/ public com.google.cloud.datacatalog.v1beta1.Taxonomy createTaxonomy( @@ -1356,7 +1360,7 @@ public com.google.cloud.datacatalog.v1beta1.Taxonomy createTaxonomy( * *
      * Deletes a taxonomy. This operation will also delete all
-     * policy tags in this taxonomy.
+     * policy tags in this taxonomy along with their associated policies.
      * 
*/ public com.google.protobuf.Empty deleteTaxonomy( @@ -1382,7 +1386,8 @@ public com.google.cloud.datacatalog.v1beta1.Taxonomy updateTaxonomy( * * *
-     * Lists all taxonomies in a project in a particular location.
+     * Lists all taxonomies in a project in a particular location that the caller
+     * has permission to view.
      * 
*/ public com.google.cloud.datacatalog.v1beta1.ListTaxonomiesResponse listTaxonomies( @@ -1408,7 +1413,7 @@ public com.google.cloud.datacatalog.v1beta1.Taxonomy getTaxonomy( * * *
-     * Creates a policy tag in a taxonomy.
+     * Creates a policy tag in the specified taxonomy.
      * 
*/ public com.google.cloud.datacatalog.v1beta1.PolicyTag createPolicyTag( @@ -1497,7 +1502,8 @@ public com.google.iam.v1.Policy setIamPolicy(com.google.iam.v1.SetIamPolicyReque * * *
-     * Returns permissions that a caller has on specified resources.
+     * Returns the permissions that a caller has on the specified taxonomy or
+     * policy tag.
      * 
*/ public com.google.iam.v1.TestIamPermissionsResponse testIamPermissions( @@ -1511,8 +1517,8 @@ public com.google.iam.v1.TestIamPermissionsResponse testIamPermissions( * * *
-   * Policy tag manager API service allows clients to manage their taxonomies and
-   * policy tags data.
+   * The policy tag manager API service allows clients to manage their taxonomies
+   * and policy tags.
    * 
*/ public static final class PolicyTagManagerFutureStub @@ -1535,7 +1541,7 @@ protected PolicyTagManagerFutureStub build( * * *
-     * Creates a new taxonomy in a given project.
+     * Creates a taxonomy in the specified project.
      * 
*/ public com.google.common.util.concurrent.ListenableFuture< @@ -1550,7 +1556,7 @@ protected PolicyTagManagerFutureStub build( * *
      * Deletes a taxonomy. This operation will also delete all
-     * policy tags in this taxonomy.
+     * policy tags in this taxonomy along with their associated policies.
      * 
*/ public com.google.common.util.concurrent.ListenableFuture @@ -1577,7 +1583,8 @@ protected PolicyTagManagerFutureStub build( * * *
-     * Lists all taxonomies in a project in a particular location.
+     * Lists all taxonomies in a project in a particular location that the caller
+     * has permission to view.
      * 
*/ public com.google.common.util.concurrent.ListenableFuture< @@ -1605,7 +1612,7 @@ protected PolicyTagManagerFutureStub build( * * *
-     * Creates a policy tag in a taxonomy.
+     * Creates a policy tag in the specified taxonomy.
      * 
*/ public com.google.common.util.concurrent.ListenableFuture< @@ -1700,7 +1707,8 @@ protected PolicyTagManagerFutureStub build( * * *
-     * Returns permissions that a caller has on specified resources.
+     * Returns the permissions that a caller has on the specified taxonomy or
+     * policy tag.
      * 
*/ public com.google.common.util.concurrent.ListenableFuture< diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/BigQueryDateShardedSpec.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/BigQueryDateShardedSpec.java index da282721..af6a081a 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/BigQueryDateShardedSpec.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/BigQueryDateShardedSpec.java @@ -127,8 +127,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Output only. The Data Catalog resource name of the dataset entry the
-   * current table belongs to, for example,
+   * Output only. The Data Catalog resource name of the dataset entry the current table
+   * belongs to, for example,
    * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
    * 
* @@ -151,8 +151,8 @@ public java.lang.String getDataset() { * * *
-   * Output only. The Data Catalog resource name of the dataset entry the
-   * current table belongs to, for example,
+   * Output only. The Data Catalog resource name of the dataset entry the current table
+   * belongs to, for example,
    * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
    * 
* @@ -178,8 +178,7 @@ public com.google.protobuf.ByteString getDatasetBytes() { * * *
-   * Output only. The table name prefix of the shards. The name of any given
-   * shard is
+   * Output only. The table name prefix of the shards. The name of any given shard is
    * `[table_prefix]YYYYMMDD`, for example, for shard `MyTable20180101`, the
    * `table_prefix` is `MyTable`.
    * 
@@ -201,8 +200,7 @@ public java.lang.String getTablePrefix() { * * *
-   * Output only. The table name prefix of the shards. The name of any given
-   * shard is
+   * Output only. The table name prefix of the shards. The name of any given shard is
    * `[table_prefix]YYYYMMDD`, for example, for shard `MyTable20180101`, the
    * `table_prefix` is `MyTable`.
    * 
@@ -595,8 +593,8 @@ public Builder mergeFrom( * * *
-     * Output only. The Data Catalog resource name of the dataset entry the
-     * current table belongs to, for example,
+     * Output only. The Data Catalog resource name of the dataset entry the current table
+     * belongs to, for example,
      * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
      * 
* @@ -619,8 +617,8 @@ public java.lang.String getDataset() { * * *
-     * Output only. The Data Catalog resource name of the dataset entry the
-     * current table belongs to, for example,
+     * Output only. The Data Catalog resource name of the dataset entry the current table
+     * belongs to, for example,
      * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
      * 
* @@ -643,8 +641,8 @@ public com.google.protobuf.ByteString getDatasetBytes() { * * *
-     * Output only. The Data Catalog resource name of the dataset entry the
-     * current table belongs to, for example,
+     * Output only. The Data Catalog resource name of the dataset entry the current table
+     * belongs to, for example,
      * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
      * 
* @@ -665,8 +663,8 @@ public Builder setDataset(java.lang.String value) { * * *
-     * Output only. The Data Catalog resource name of the dataset entry the
-     * current table belongs to, for example,
+     * Output only. The Data Catalog resource name of the dataset entry the current table
+     * belongs to, for example,
      * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
      * 
* @@ -684,8 +682,8 @@ public Builder clearDataset() { * * *
-     * Output only. The Data Catalog resource name of the dataset entry the
-     * current table belongs to, for example,
+     * Output only. The Data Catalog resource name of the dataset entry the current table
+     * belongs to, for example,
      * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
      * 
* @@ -709,8 +707,7 @@ public Builder setDatasetBytes(com.google.protobuf.ByteString value) { * * *
-     * Output only. The table name prefix of the shards. The name of any given
-     * shard is
+     * Output only. The table name prefix of the shards. The name of any given shard is
      * `[table_prefix]YYYYMMDD`, for example, for shard `MyTable20180101`, the
      * `table_prefix` is `MyTable`.
      * 
@@ -732,8 +729,7 @@ public java.lang.String getTablePrefix() { * * *
-     * Output only. The table name prefix of the shards. The name of any given
-     * shard is
+     * Output only. The table name prefix of the shards. The name of any given shard is
      * `[table_prefix]YYYYMMDD`, for example, for shard `MyTable20180101`, the
      * `table_prefix` is `MyTable`.
      * 
@@ -755,8 +751,7 @@ public com.google.protobuf.ByteString getTablePrefixBytes() { * * *
-     * Output only. The table name prefix of the shards. The name of any given
-     * shard is
+     * Output only. The table name prefix of the shards. The name of any given shard is
      * `[table_prefix]YYYYMMDD`, for example, for shard `MyTable20180101`, the
      * `table_prefix` is `MyTable`.
      * 
@@ -776,8 +771,7 @@ public Builder setTablePrefix(java.lang.String value) { * * *
-     * Output only. The table name prefix of the shards. The name of any given
-     * shard is
+     * Output only. The table name prefix of the shards. The name of any given shard is
      * `[table_prefix]YYYYMMDD`, for example, for shard `MyTable20180101`, the
      * `table_prefix` is `MyTable`.
      * 
@@ -794,8 +788,7 @@ public Builder clearTablePrefix() { * * *
-     * Output only. The table name prefix of the shards. The name of any given
-     * shard is
+     * Output only. The table name prefix of the shards. The name of any given shard is
      * `[table_prefix]YYYYMMDD`, for example, for shard `MyTable20180101`, the
      * `table_prefix` is `MyTable`.
      * 
diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/BigQueryDateShardedSpecOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/BigQueryDateShardedSpecOrBuilder.java index 1b8c3a91..6c7c11ee 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/BigQueryDateShardedSpecOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/BigQueryDateShardedSpecOrBuilder.java @@ -27,8 +27,8 @@ public interface BigQueryDateShardedSpecOrBuilder * * *
-   * Output only. The Data Catalog resource name of the dataset entry the
-   * current table belongs to, for example,
+   * Output only. The Data Catalog resource name of the dataset entry the current table
+   * belongs to, for example,
    * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
    * 
* @@ -41,8 +41,8 @@ public interface BigQueryDateShardedSpecOrBuilder * * *
-   * Output only. The Data Catalog resource name of the dataset entry the
-   * current table belongs to, for example,
+   * Output only. The Data Catalog resource name of the dataset entry the current table
+   * belongs to, for example,
    * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
    * 
* @@ -56,8 +56,7 @@ public interface BigQueryDateShardedSpecOrBuilder * * *
-   * Output only. The table name prefix of the shards. The name of any given
-   * shard is
+   * Output only. The table name prefix of the shards. The name of any given shard is
    * `[table_prefix]YYYYMMDD`, for example, for shard `MyTable20180101`, the
    * `table_prefix` is `MyTable`.
    * 
@@ -69,8 +68,7 @@ public interface BigQueryDateShardedSpecOrBuilder * * *
-   * Output only. The table name prefix of the shards. The name of any given
-   * shard is
+   * Output only. The table name prefix of the shards. The name of any given shard is
    * `[table_prefix]YYYYMMDD`, for example, for shard `MyTable20180101`, the
    * `table_prefix` is `MyTable`.
    * 
diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ColumnSchema.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ColumnSchema.java index 9e7d2b2d..a8f0d91f 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ColumnSchema.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ColumnSchema.java @@ -284,9 +284,9 @@ public com.google.protobuf.ByteString getDescriptionBytes() { * * *
-   * Optional. A column's mode indicates whether the values in this column are
-   * required, nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are
-   * supported. Default mode is `NULLABLE`.
+   * Optional. A column's mode indicates whether the values in this column are required,
+   * nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are supported.
+   * Default mode is `NULLABLE`.
    * 
* * string mode = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -306,9 +306,9 @@ public java.lang.String getMode() { * * *
-   * Optional. A column's mode indicates whether the values in this column are
-   * required, nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are
-   * supported. Default mode is `NULLABLE`.
+   * Optional. A column's mode indicates whether the values in this column are required,
+   * nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are supported.
+   * Default mode is `NULLABLE`.
    * 
* * string mode = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -331,8 +331,7 @@ public com.google.protobuf.ByteString getModeBytes() { * * *
-   * Optional. Schema of sub-columns. A column can have zero or more
-   * sub-columns.
+   * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
    * 
* * @@ -346,8 +345,7 @@ public java.util.List getSubc * * *
-   * Optional. Schema of sub-columns. A column can have zero or more
-   * sub-columns.
+   * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
    * 
* * @@ -362,8 +360,7 @@ public java.util.List getSubc * * *
-   * Optional. Schema of sub-columns. A column can have zero or more
-   * sub-columns.
+   * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
    * 
* * @@ -377,8 +374,7 @@ public int getSubcolumnsCount() { * * *
-   * Optional. Schema of sub-columns. A column can have zero or more
-   * sub-columns.
+   * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
    * 
* * @@ -392,8 +388,7 @@ public com.google.cloud.datacatalog.v1beta1.ColumnSchema getSubcolumns(int index * * *
-   * Optional. Schema of sub-columns. A column can have zero or more
-   * sub-columns.
+   * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
    * 
* * @@ -1119,9 +1114,9 @@ public Builder setDescriptionBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional. A column's mode indicates whether the values in this column are
-     * required, nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are
-     * supported. Default mode is `NULLABLE`.
+     * Optional. A column's mode indicates whether the values in this column are required,
+     * nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are supported.
+     * Default mode is `NULLABLE`.
      * 
* * string mode = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -1141,9 +1136,9 @@ public java.lang.String getMode() { * * *
-     * Optional. A column's mode indicates whether the values in this column are
-     * required, nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are
-     * supported. Default mode is `NULLABLE`.
+     * Optional. A column's mode indicates whether the values in this column are required,
+     * nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are supported.
+     * Default mode is `NULLABLE`.
      * 
* * string mode = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -1163,9 +1158,9 @@ public com.google.protobuf.ByteString getModeBytes() { * * *
-     * Optional. A column's mode indicates whether the values in this column are
-     * required, nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are
-     * supported. Default mode is `NULLABLE`.
+     * Optional. A column's mode indicates whether the values in this column are required,
+     * nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are supported.
+     * Default mode is `NULLABLE`.
      * 
* * string mode = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -1183,9 +1178,9 @@ public Builder setMode(java.lang.String value) { * * *
-     * Optional. A column's mode indicates whether the values in this column are
-     * required, nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are
-     * supported. Default mode is `NULLABLE`.
+     * Optional. A column's mode indicates whether the values in this column are required,
+     * nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are supported.
+     * Default mode is `NULLABLE`.
      * 
* * string mode = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -1200,9 +1195,9 @@ public Builder clearMode() { * * *
-     * Optional. A column's mode indicates whether the values in this column are
-     * required, nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are
-     * supported. Default mode is `NULLABLE`.
+     * Optional. A column's mode indicates whether the values in this column are required,
+     * nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are supported.
+     * Default mode is `NULLABLE`.
      * 
* * string mode = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -1239,8 +1234,7 @@ private void ensureSubcolumnsIsMutable() { * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1258,8 +1252,7 @@ public java.util.List getSubc * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1277,8 +1270,7 @@ public int getSubcolumnsCount() { * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1296,8 +1288,7 @@ public com.google.cloud.datacatalog.v1beta1.ColumnSchema getSubcolumns(int index * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1322,8 +1313,7 @@ public Builder setSubcolumns( * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1345,8 +1335,7 @@ public Builder setSubcolumns( * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1370,8 +1359,7 @@ public Builder addSubcolumns(com.google.cloud.datacatalog.v1beta1.ColumnSchema v * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1396,8 +1384,7 @@ public Builder addSubcolumns( * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1419,8 +1406,7 @@ public Builder addSubcolumns( * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1442,8 +1428,7 @@ public Builder addSubcolumns( * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1465,8 +1450,7 @@ public Builder addAllSubcolumns( * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1487,8 +1471,7 @@ public Builder clearSubcolumns() { * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1509,8 +1492,7 @@ public Builder removeSubcolumns(int index) { * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1525,8 +1507,7 @@ public com.google.cloud.datacatalog.v1beta1.ColumnSchema.Builder getSubcolumnsBu * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1545,8 +1526,7 @@ public com.google.cloud.datacatalog.v1beta1.ColumnSchemaOrBuilder getSubcolumnsO * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1565,8 +1545,7 @@ public com.google.cloud.datacatalog.v1beta1.ColumnSchemaOrBuilder getSubcolumnsO * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1581,8 +1560,7 @@ public com.google.cloud.datacatalog.v1beta1.ColumnSchema.Builder addSubcolumnsBu * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * @@ -1599,8 +1577,7 @@ public com.google.cloud.datacatalog.v1beta1.ColumnSchema.Builder addSubcolumnsBu * * *
-     * Optional. Schema of sub-columns. A column can have zero or more
-     * sub-columns.
+     * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
      * 
* * diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ColumnSchemaOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ColumnSchemaOrBuilder.java index bdf762e8..ab8672d6 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ColumnSchemaOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ColumnSchemaOrBuilder.java @@ -90,9 +90,9 @@ public interface ColumnSchemaOrBuilder * * *
-   * Optional. A column's mode indicates whether the values in this column are
-   * required, nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are
-   * supported. Default mode is `NULLABLE`.
+   * Optional. A column's mode indicates whether the values in this column are required,
+   * nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are supported.
+   * Default mode is `NULLABLE`.
    * 
* * string mode = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -102,9 +102,9 @@ public interface ColumnSchemaOrBuilder * * *
-   * Optional. A column's mode indicates whether the values in this column are
-   * required, nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are
-   * supported. Default mode is `NULLABLE`.
+   * Optional. A column's mode indicates whether the values in this column are required,
+   * nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are supported.
+   * Default mode is `NULLABLE`.
    * 
* * string mode = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -115,8 +115,7 @@ public interface ColumnSchemaOrBuilder * * *
-   * Optional. Schema of sub-columns. A column can have zero or more
-   * sub-columns.
+   * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
    * 
* * @@ -128,8 +127,7 @@ public interface ColumnSchemaOrBuilder * * *
-   * Optional. Schema of sub-columns. A column can have zero or more
-   * sub-columns.
+   * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
    * 
* * @@ -141,8 +139,7 @@ public interface ColumnSchemaOrBuilder * * *
-   * Optional. Schema of sub-columns. A column can have zero or more
-   * sub-columns.
+   * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
    * 
* * @@ -154,8 +151,7 @@ public interface ColumnSchemaOrBuilder * * *
-   * Optional. Schema of sub-columns. A column can have zero or more
-   * sub-columns.
+   * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
    * 
* * @@ -168,8 +164,7 @@ public interface ColumnSchemaOrBuilder * * *
-   * Optional. Schema of sub-columns. A column can have zero or more
-   * sub-columns.
+   * Optional. Schema of sub-columns. A column can have zero or more sub-columns.
    * 
* * diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreatePolicyTagRequest.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreatePolicyTagRequest.java index cb32887a..6b8cd1c2 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreatePolicyTagRequest.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreatePolicyTagRequest.java @@ -129,8 +129,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required. Resource name of the taxonomy that the newly created policy tag
-   * belongs to.
+   * Required. Resource name of the taxonomy that the policy tag will belong to.
    * 
* * @@ -152,8 +151,7 @@ public java.lang.String getParent() { * * *
-   * Required. Resource name of the taxonomy that the newly created policy tag
-   * belongs to.
+   * Required. Resource name of the taxonomy that the policy tag will belong to.
    * 
* * @@ -178,9 +176,7 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-   * The policy tag to be created. The name, and taxonomy_display_name field
-   * must be left blank. The display_name field is mandatory and must not be
-   * duplicated with existing policy tags in the same taxonomy.
+   * The policy tag to be created.
    * 
* * .google.cloud.datacatalog.v1beta1.PolicyTag policy_tag = 2; @@ -192,9 +188,7 @@ public boolean hasPolicyTag() { * * *
-   * The policy tag to be created. The name, and taxonomy_display_name field
-   * must be left blank. The display_name field is mandatory and must not be
-   * duplicated with existing policy tags in the same taxonomy.
+   * The policy tag to be created.
    * 
* * .google.cloud.datacatalog.v1beta1.PolicyTag policy_tag = 2; @@ -208,9 +202,7 @@ public com.google.cloud.datacatalog.v1beta1.PolicyTag getPolicyTag() { * * *
-   * The policy tag to be created. The name, and taxonomy_display_name field
-   * must be left blank. The display_name field is mandatory and must not be
-   * duplicated with existing policy tags in the same taxonomy.
+   * The policy tag to be created.
    * 
* * .google.cloud.datacatalog.v1beta1.PolicyTag policy_tag = 2; @@ -572,8 +564,7 @@ public Builder mergeFrom( * * *
-     * Required. Resource name of the taxonomy that the newly created policy tag
-     * belongs to.
+     * Required. Resource name of the taxonomy that the policy tag will belong to.
      * 
* * @@ -595,8 +586,7 @@ public java.lang.String getParent() { * * *
-     * Required. Resource name of the taxonomy that the newly created policy tag
-     * belongs to.
+     * Required. Resource name of the taxonomy that the policy tag will belong to.
      * 
* * @@ -618,8 +608,7 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-     * Required. Resource name of the taxonomy that the newly created policy tag
-     * belongs to.
+     * Required. Resource name of the taxonomy that the policy tag will belong to.
      * 
* * @@ -639,8 +628,7 @@ public Builder setParent(java.lang.String value) { * * *
-     * Required. Resource name of the taxonomy that the newly created policy tag
-     * belongs to.
+     * Required. Resource name of the taxonomy that the policy tag will belong to.
      * 
* * @@ -657,8 +645,7 @@ public Builder clearParent() { * * *
-     * Required. Resource name of the taxonomy that the newly created policy tag
-     * belongs to.
+     * Required. Resource name of the taxonomy that the policy tag will belong to.
      * 
* * @@ -686,9 +673,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) { * * *
-     * The policy tag to be created. The name, and taxonomy_display_name field
-     * must be left blank. The display_name field is mandatory and must not be
-     * duplicated with existing policy tags in the same taxonomy.
+     * The policy tag to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.PolicyTag policy_tag = 2; @@ -700,9 +685,7 @@ public boolean hasPolicyTag() { * * *
-     * The policy tag to be created. The name, and taxonomy_display_name field
-     * must be left blank. The display_name field is mandatory and must not be
-     * duplicated with existing policy tags in the same taxonomy.
+     * The policy tag to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.PolicyTag policy_tag = 2; @@ -720,9 +703,7 @@ public com.google.cloud.datacatalog.v1beta1.PolicyTag getPolicyTag() { * * *
-     * The policy tag to be created. The name, and taxonomy_display_name field
-     * must be left blank. The display_name field is mandatory and must not be
-     * duplicated with existing policy tags in the same taxonomy.
+     * The policy tag to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.PolicyTag policy_tag = 2; @@ -744,9 +725,7 @@ public Builder setPolicyTag(com.google.cloud.datacatalog.v1beta1.PolicyTag value * * *
-     * The policy tag to be created. The name, and taxonomy_display_name field
-     * must be left blank. The display_name field is mandatory and must not be
-     * duplicated with existing policy tags in the same taxonomy.
+     * The policy tag to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.PolicyTag policy_tag = 2; @@ -766,9 +745,7 @@ public Builder setPolicyTag( * * *
-     * The policy tag to be created. The name, and taxonomy_display_name field
-     * must be left blank. The display_name field is mandatory and must not be
-     * duplicated with existing policy tags in the same taxonomy.
+     * The policy tag to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.PolicyTag policy_tag = 2; @@ -794,9 +771,7 @@ public Builder mergePolicyTag(com.google.cloud.datacatalog.v1beta1.PolicyTag val * * *
-     * The policy tag to be created. The name, and taxonomy_display_name field
-     * must be left blank. The display_name field is mandatory and must not be
-     * duplicated with existing policy tags in the same taxonomy.
+     * The policy tag to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.PolicyTag policy_tag = 2; @@ -816,9 +791,7 @@ public Builder clearPolicyTag() { * * *
-     * The policy tag to be created. The name, and taxonomy_display_name field
-     * must be left blank. The display_name field is mandatory and must not be
-     * duplicated with existing policy tags in the same taxonomy.
+     * The policy tag to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.PolicyTag policy_tag = 2; @@ -832,9 +805,7 @@ public com.google.cloud.datacatalog.v1beta1.PolicyTag.Builder getPolicyTagBuilde * * *
-     * The policy tag to be created. The name, and taxonomy_display_name field
-     * must be left blank. The display_name field is mandatory and must not be
-     * duplicated with existing policy tags in the same taxonomy.
+     * The policy tag to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.PolicyTag policy_tag = 2; @@ -852,9 +823,7 @@ public com.google.cloud.datacatalog.v1beta1.PolicyTagOrBuilder getPolicyTagOrBui * * *
-     * The policy tag to be created. The name, and taxonomy_display_name field
-     * must be left blank. The display_name field is mandatory and must not be
-     * duplicated with existing policy tags in the same taxonomy.
+     * The policy tag to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.PolicyTag policy_tag = 2; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreatePolicyTagRequestOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreatePolicyTagRequestOrBuilder.java index 4fff5560..e40c4f17 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreatePolicyTagRequestOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreatePolicyTagRequestOrBuilder.java @@ -27,8 +27,7 @@ public interface CreatePolicyTagRequestOrBuilder * * *
-   * Required. Resource name of the taxonomy that the newly created policy tag
-   * belongs to.
+   * Required. Resource name of the taxonomy that the policy tag will belong to.
    * 
* * @@ -40,8 +39,7 @@ public interface CreatePolicyTagRequestOrBuilder * * *
-   * Required. Resource name of the taxonomy that the newly created policy tag
-   * belongs to.
+   * Required. Resource name of the taxonomy that the policy tag will belong to.
    * 
* * @@ -54,9 +52,7 @@ public interface CreatePolicyTagRequestOrBuilder * * *
-   * The policy tag to be created. The name, and taxonomy_display_name field
-   * must be left blank. The display_name field is mandatory and must not be
-   * duplicated with existing policy tags in the same taxonomy.
+   * The policy tag to be created.
    * 
* * .google.cloud.datacatalog.v1beta1.PolicyTag policy_tag = 2; @@ -66,9 +62,7 @@ public interface CreatePolicyTagRequestOrBuilder * * *
-   * The policy tag to be created. The name, and taxonomy_display_name field
-   * must be left blank. The display_name field is mandatory and must not be
-   * duplicated with existing policy tags in the same taxonomy.
+   * The policy tag to be created.
    * 
* * .google.cloud.datacatalog.v1beta1.PolicyTag policy_tag = 2; @@ -78,9 +72,7 @@ public interface CreatePolicyTagRequestOrBuilder * * *
-   * The policy tag to be created. The name, and taxonomy_display_name field
-   * must be left blank. The display_name field is mandatory and must not be
-   * duplicated with existing policy tags in the same taxonomy.
+   * The policy tag to be created.
    * 
* * .google.cloud.datacatalog.v1beta1.PolicyTag policy_tag = 2; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreateTagRequest.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreateTagRequest.java index 2d135d40..dcd8c50d 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreateTagRequest.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreateTagRequest.java @@ -129,8 +129,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required. The name of the resource to attach this tag to. Tags can be
-   * attached to Entries. Example:
+   * Required. The name of the resource to attach this tag to. Tags can be attached to
+   * Entries. Example:
    * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}
    * Note that this Tag and its child resources may not actually be stored in
    * the location in this name.
@@ -155,8 +155,8 @@ public java.lang.String getParent() {
    *
    *
    * 
-   * Required. The name of the resource to attach this tag to. Tags can be
-   * attached to Entries. Example:
+   * Required. The name of the resource to attach this tag to. Tags can be attached to
+   * Entries. Example:
    * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}
    * Note that this Tag and its child resources may not actually be stored in
    * the location in this name.
@@ -573,8 +573,8 @@ public Builder mergeFrom(
      *
      *
      * 
-     * Required. The name of the resource to attach this tag to. Tags can be
-     * attached to Entries. Example:
+     * Required. The name of the resource to attach this tag to. Tags can be attached to
+     * Entries. Example:
      * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}
      * Note that this Tag and its child resources may not actually be stored in
      * the location in this name.
@@ -599,8 +599,8 @@ public java.lang.String getParent() {
      *
      *
      * 
-     * Required. The name of the resource to attach this tag to. Tags can be
-     * attached to Entries. Example:
+     * Required. The name of the resource to attach this tag to. Tags can be attached to
+     * Entries. Example:
      * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}
      * Note that this Tag and its child resources may not actually be stored in
      * the location in this name.
@@ -625,8 +625,8 @@ public com.google.protobuf.ByteString getParentBytes() {
      *
      *
      * 
-     * Required. The name of the resource to attach this tag to. Tags can be
-     * attached to Entries. Example:
+     * Required. The name of the resource to attach this tag to. Tags can be attached to
+     * Entries. Example:
      * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}
      * Note that this Tag and its child resources may not actually be stored in
      * the location in this name.
@@ -649,8 +649,8 @@ public Builder setParent(java.lang.String value) {
      *
      *
      * 
-     * Required. The name of the resource to attach this tag to. Tags can be
-     * attached to Entries. Example:
+     * Required. The name of the resource to attach this tag to. Tags can be attached to
+     * Entries. Example:
      * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}
      * Note that this Tag and its child resources may not actually be stored in
      * the location in this name.
@@ -670,8 +670,8 @@ public Builder clearParent() {
      *
      *
      * 
-     * Required. The name of the resource to attach this tag to. Tags can be
-     * attached to Entries. Example:
+     * Required. The name of the resource to attach this tag to. Tags can be attached to
+     * Entries. Example:
      * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}
      * Note that this Tag and its child resources may not actually be stored in
      * the location in this name.
diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreateTagRequestOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreateTagRequestOrBuilder.java
index a9e3bf83..6300399d 100644
--- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreateTagRequestOrBuilder.java
+++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreateTagRequestOrBuilder.java
@@ -27,8 +27,8 @@ public interface CreateTagRequestOrBuilder
    *
    *
    * 
-   * Required. The name of the resource to attach this tag to. Tags can be
-   * attached to Entries. Example:
+   * Required. The name of the resource to attach this tag to. Tags can be attached to
+   * Entries. Example:
    * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}
    * Note that this Tag and its child resources may not actually be stored in
    * the location in this name.
@@ -43,8 +43,8 @@ public interface CreateTagRequestOrBuilder
    *
    *
    * 
-   * Required. The name of the resource to attach this tag to. Tags can be
-   * attached to Entries. Example:
+   * Required. The name of the resource to attach this tag to. Tags can be attached to
+   * Entries. Example:
    * * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}
    * Note that this Tag and its child resources may not actually be stored in
    * the location in this name.
diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreateTaxonomyRequest.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreateTaxonomyRequest.java
index b6659c22..84b3385d 100644
--- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreateTaxonomyRequest.java
+++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreateTaxonomyRequest.java
@@ -129,8 +129,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    *
    *
    * 
-   * Required. Resource name of the project that the newly created taxonomy
-   * belongs to.
+   * Required. Resource name of the project that the taxonomy will belong to.
    * 
* * @@ -152,8 +151,7 @@ public java.lang.String getParent() { * * *
-   * Required. Resource name of the project that the newly created taxonomy
-   * belongs to.
+   * Required. Resource name of the project that the taxonomy will belong to.
    * 
* * @@ -178,8 +176,7 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-   * The taxonomy to be created. The name field must be left blank. The
-   * display_name field is mandatory.
+   * The taxonomy to be created.
    * 
* * .google.cloud.datacatalog.v1beta1.Taxonomy taxonomy = 2; @@ -191,8 +188,7 @@ public boolean hasTaxonomy() { * * *
-   * The taxonomy to be created. The name field must be left blank. The
-   * display_name field is mandatory.
+   * The taxonomy to be created.
    * 
* * .google.cloud.datacatalog.v1beta1.Taxonomy taxonomy = 2; @@ -206,8 +202,7 @@ public com.google.cloud.datacatalog.v1beta1.Taxonomy getTaxonomy() { * * *
-   * The taxonomy to be created. The name field must be left blank. The
-   * display_name field is mandatory.
+   * The taxonomy to be created.
    * 
* * .google.cloud.datacatalog.v1beta1.Taxonomy taxonomy = 2; @@ -569,8 +564,7 @@ public Builder mergeFrom( * * *
-     * Required. Resource name of the project that the newly created taxonomy
-     * belongs to.
+     * Required. Resource name of the project that the taxonomy will belong to.
      * 
* * @@ -592,8 +586,7 @@ public java.lang.String getParent() { * * *
-     * Required. Resource name of the project that the newly created taxonomy
-     * belongs to.
+     * Required. Resource name of the project that the taxonomy will belong to.
      * 
* * @@ -615,8 +608,7 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-     * Required. Resource name of the project that the newly created taxonomy
-     * belongs to.
+     * Required. Resource name of the project that the taxonomy will belong to.
      * 
* * @@ -636,8 +628,7 @@ public Builder setParent(java.lang.String value) { * * *
-     * Required. Resource name of the project that the newly created taxonomy
-     * belongs to.
+     * Required. Resource name of the project that the taxonomy will belong to.
      * 
* * @@ -654,8 +645,7 @@ public Builder clearParent() { * * *
-     * Required. Resource name of the project that the newly created taxonomy
-     * belongs to.
+     * Required. Resource name of the project that the taxonomy will belong to.
      * 
* * @@ -683,8 +673,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) { * * *
-     * The taxonomy to be created. The name field must be left blank. The
-     * display_name field is mandatory.
+     * The taxonomy to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.Taxonomy taxonomy = 2; @@ -696,8 +685,7 @@ public boolean hasTaxonomy() { * * *
-     * The taxonomy to be created. The name field must be left blank. The
-     * display_name field is mandatory.
+     * The taxonomy to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.Taxonomy taxonomy = 2; @@ -715,8 +703,7 @@ public com.google.cloud.datacatalog.v1beta1.Taxonomy getTaxonomy() { * * *
-     * The taxonomy to be created. The name field must be left blank. The
-     * display_name field is mandatory.
+     * The taxonomy to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.Taxonomy taxonomy = 2; @@ -738,8 +725,7 @@ public Builder setTaxonomy(com.google.cloud.datacatalog.v1beta1.Taxonomy value) * * *
-     * The taxonomy to be created. The name field must be left blank. The
-     * display_name field is mandatory.
+     * The taxonomy to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.Taxonomy taxonomy = 2; @@ -759,8 +745,7 @@ public Builder setTaxonomy( * * *
-     * The taxonomy to be created. The name field must be left blank. The
-     * display_name field is mandatory.
+     * The taxonomy to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.Taxonomy taxonomy = 2; @@ -786,8 +771,7 @@ public Builder mergeTaxonomy(com.google.cloud.datacatalog.v1beta1.Taxonomy value * * *
-     * The taxonomy to be created. The name field must be left blank. The
-     * display_name field is mandatory.
+     * The taxonomy to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.Taxonomy taxonomy = 2; @@ -807,8 +791,7 @@ public Builder clearTaxonomy() { * * *
-     * The taxonomy to be created. The name field must be left blank. The
-     * display_name field is mandatory.
+     * The taxonomy to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.Taxonomy taxonomy = 2; @@ -822,8 +805,7 @@ public com.google.cloud.datacatalog.v1beta1.Taxonomy.Builder getTaxonomyBuilder( * * *
-     * The taxonomy to be created. The name field must be left blank. The
-     * display_name field is mandatory.
+     * The taxonomy to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.Taxonomy taxonomy = 2; @@ -841,8 +823,7 @@ public com.google.cloud.datacatalog.v1beta1.TaxonomyOrBuilder getTaxonomyOrBuild * * *
-     * The taxonomy to be created. The name field must be left blank. The
-     * display_name field is mandatory.
+     * The taxonomy to be created.
      * 
* * .google.cloud.datacatalog.v1beta1.Taxonomy taxonomy = 2; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreateTaxonomyRequestOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreateTaxonomyRequestOrBuilder.java index d2209221..9ac6f00e 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreateTaxonomyRequestOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/CreateTaxonomyRequestOrBuilder.java @@ -27,8 +27,7 @@ public interface CreateTaxonomyRequestOrBuilder * * *
-   * Required. Resource name of the project that the newly created taxonomy
-   * belongs to.
+   * Required. Resource name of the project that the taxonomy will belong to.
    * 
* * @@ -40,8 +39,7 @@ public interface CreateTaxonomyRequestOrBuilder * * *
-   * Required. Resource name of the project that the newly created taxonomy
-   * belongs to.
+   * Required. Resource name of the project that the taxonomy will belong to.
    * 
* * @@ -54,8 +52,7 @@ public interface CreateTaxonomyRequestOrBuilder * * *
-   * The taxonomy to be created. The name field must be left blank. The
-   * display_name field is mandatory.
+   * The taxonomy to be created.
    * 
* * .google.cloud.datacatalog.v1beta1.Taxonomy taxonomy = 2; @@ -65,8 +62,7 @@ public interface CreateTaxonomyRequestOrBuilder * * *
-   * The taxonomy to be created. The name field must be left blank. The
-   * display_name field is mandatory.
+   * The taxonomy to be created.
    * 
* * .google.cloud.datacatalog.v1beta1.Taxonomy taxonomy = 2; @@ -76,8 +72,7 @@ public interface CreateTaxonomyRequestOrBuilder * * *
-   * The taxonomy to be created. The name field must be left blank. The
-   * display_name field is mandatory.
+   * The taxonomy to be created.
    * 
* * .google.cloud.datacatalog.v1beta1.Taxonomy taxonomy = 2; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/DeletePolicyTagRequest.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/DeletePolicyTagRequest.java index 7ae05db1..33c22b92 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/DeletePolicyTagRequest.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/DeletePolicyTagRequest.java @@ -113,7 +113,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required. Resource name of the policy tag to be deleted. All its descendant
+   * Required. Resource name of the policy tag to be deleted. All of its descendant
    * policy tags will also be deleted.
    * 
* @@ -136,7 +136,7 @@ public java.lang.String getName() { * * *
-   * Required. Resource name of the policy tag to be deleted. All its descendant
+   * Required. Resource name of the policy tag to be deleted. All of its descendant
    * policy tags will also be deleted.
    * 
* @@ -481,7 +481,7 @@ public Builder mergeFrom( * * *
-     * Required. Resource name of the policy tag to be deleted. All its descendant
+     * Required. Resource name of the policy tag to be deleted. All of its descendant
      * policy tags will also be deleted.
      * 
* @@ -504,7 +504,7 @@ public java.lang.String getName() { * * *
-     * Required. Resource name of the policy tag to be deleted. All its descendant
+     * Required. Resource name of the policy tag to be deleted. All of its descendant
      * policy tags will also be deleted.
      * 
* @@ -527,7 +527,7 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-     * Required. Resource name of the policy tag to be deleted. All its descendant
+     * Required. Resource name of the policy tag to be deleted. All of its descendant
      * policy tags will also be deleted.
      * 
* @@ -548,7 +548,7 @@ public Builder setName(java.lang.String value) { * * *
-     * Required. Resource name of the policy tag to be deleted. All its descendant
+     * Required. Resource name of the policy tag to be deleted. All of its descendant
      * policy tags will also be deleted.
      * 
* @@ -566,7 +566,7 @@ public Builder clearName() { * * *
-     * Required. Resource name of the policy tag to be deleted. All its descendant
+     * Required. Resource name of the policy tag to be deleted. All of its descendant
      * policy tags will also be deleted.
      * 
* diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/DeletePolicyTagRequestOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/DeletePolicyTagRequestOrBuilder.java index aed84f83..d68dda1d 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/DeletePolicyTagRequestOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/DeletePolicyTagRequestOrBuilder.java @@ -27,7 +27,7 @@ public interface DeletePolicyTagRequestOrBuilder * * *
-   * Required. Resource name of the policy tag to be deleted. All its descendant
+   * Required. Resource name of the policy tag to be deleted. All of its descendant
    * policy tags will also be deleted.
    * 
* @@ -40,7 +40,7 @@ public interface DeletePolicyTagRequestOrBuilder * * *
-   * Required. Resource name of the policy tag to be deleted. All its descendant
+   * Required. Resource name of the policy tag to be deleted. All of its descendant
    * policy tags will also be deleted.
    * 
* diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/EntryGroup.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/EntryGroup.java index 4c3af5ca..00b3becb 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/EntryGroup.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/EntryGroup.java @@ -288,8 +288,7 @@ public com.google.protobuf.ByteString getDescriptionBytes() { * * *
-   * Output only. Timestamps about this EntryGroup. Default value is empty
-   * timestamps.
+   * Output only. Timestamps about this EntryGroup. Default value is empty timestamps.
    * 
* * @@ -303,8 +302,7 @@ public boolean hasDataCatalogTimestamps() { * * *
-   * Output only. Timestamps about this EntryGroup. Default value is empty
-   * timestamps.
+   * Output only. Timestamps about this EntryGroup. Default value is empty timestamps.
    * 
* * @@ -320,8 +318,7 @@ public com.google.cloud.datacatalog.v1beta1.SystemTimestamps getDataCatalogTimes * * *
-   * Output only. Timestamps about this EntryGroup. Default value is empty
-   * timestamps.
+   * Output only. Timestamps about this EntryGroup. Default value is empty timestamps.
    * 
* * @@ -1035,8 +1032,7 @@ public Builder setDescriptionBytes(com.google.protobuf.ByteString value) { * * *
-     * Output only. Timestamps about this EntryGroup. Default value is empty
-     * timestamps.
+     * Output only. Timestamps about this EntryGroup. Default value is empty timestamps.
      * 
* * @@ -1050,8 +1046,7 @@ public boolean hasDataCatalogTimestamps() { * * *
-     * Output only. Timestamps about this EntryGroup. Default value is empty
-     * timestamps.
+     * Output only. Timestamps about this EntryGroup. Default value is empty timestamps.
      * 
* * @@ -1071,8 +1066,7 @@ public com.google.cloud.datacatalog.v1beta1.SystemTimestamps getDataCatalogTimes * * *
-     * Output only. Timestamps about this EntryGroup. Default value is empty
-     * timestamps.
+     * Output only. Timestamps about this EntryGroup. Default value is empty timestamps.
      * 
* * @@ -1097,8 +1091,7 @@ public Builder setDataCatalogTimestamps( * * *
-     * Output only. Timestamps about this EntryGroup. Default value is empty
-     * timestamps.
+     * Output only. Timestamps about this EntryGroup. Default value is empty timestamps.
      * 
* * @@ -1120,8 +1113,7 @@ public Builder setDataCatalogTimestamps( * * *
-     * Output only. Timestamps about this EntryGroup. Default value is empty
-     * timestamps.
+     * Output only. Timestamps about this EntryGroup. Default value is empty timestamps.
      * 
* * @@ -1151,8 +1143,7 @@ public Builder mergeDataCatalogTimestamps( * * *
-     * Output only. Timestamps about this EntryGroup. Default value is empty
-     * timestamps.
+     * Output only. Timestamps about this EntryGroup. Default value is empty timestamps.
      * 
* * @@ -1174,8 +1165,7 @@ public Builder clearDataCatalogTimestamps() { * * *
-     * Output only. Timestamps about this EntryGroup. Default value is empty
-     * timestamps.
+     * Output only. Timestamps about this EntryGroup. Default value is empty timestamps.
      * 
* * @@ -1192,8 +1182,7 @@ public Builder clearDataCatalogTimestamps() { * * *
-     * Output only. Timestamps about this EntryGroup. Default value is empty
-     * timestamps.
+     * Output only. Timestamps about this EntryGroup. Default value is empty timestamps.
      * 
* * @@ -1214,8 +1203,7 @@ public Builder clearDataCatalogTimestamps() { * * *
-     * Output only. Timestamps about this EntryGroup. Default value is empty
-     * timestamps.
+     * Output only. Timestamps about this EntryGroup. Default value is empty timestamps.
      * 
* * diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/EntryGroupOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/EntryGroupOrBuilder.java index f2797e1a..0a8a786d 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/EntryGroupOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/EntryGroupOrBuilder.java @@ -102,8 +102,7 @@ public interface EntryGroupOrBuilder * * *
-   * Output only. Timestamps about this EntryGroup. Default value is empty
-   * timestamps.
+   * Output only. Timestamps about this EntryGroup. Default value is empty timestamps.
    * 
* * @@ -115,8 +114,7 @@ public interface EntryGroupOrBuilder * * *
-   * Output only. Timestamps about this EntryGroup. Default value is empty
-   * timestamps.
+   * Output only. Timestamps about this EntryGroup. Default value is empty timestamps.
    * 
* * @@ -128,8 +126,7 @@ public interface EntryGroupOrBuilder * * *
-   * Output only. Timestamps about this EntryGroup. Default value is empty
-   * timestamps.
+   * Output only. Timestamps about this EntryGroup. Default value is empty timestamps.
    * 
* * diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/FieldType.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/FieldType.java index e9702efd..2fefd355 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/FieldType.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/FieldType.java @@ -491,8 +491,7 @@ public interface EnumValueOrBuilder * * *
-       * Required. The display name of the enum value. Must not be an empty
-       * string.
+       * Required. The display name of the enum value. Must not be an empty string.
        * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -502,8 +501,7 @@ public interface EnumValueOrBuilder * * *
-       * Required. The display name of the enum value. Must not be an empty
-       * string.
+       * Required. The display name of the enum value. Must not be an empty string.
        * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -597,8 +595,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-       * Required. The display name of the enum value. Must not be an empty
-       * string.
+       * Required. The display name of the enum value. Must not be an empty string.
        * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -618,8 +615,7 @@ public java.lang.String getDisplayName() { * * *
-       * Required. The display name of the enum value. Must not be an empty
-       * string.
+       * Required. The display name of the enum value. Must not be an empty string.
        * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -965,8 +961,7 @@ public Builder mergeFrom( * * *
-         * Required. The display name of the enum value. Must not be an empty
-         * string.
+         * Required. The display name of the enum value. Must not be an empty string.
          * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -986,8 +981,7 @@ public java.lang.String getDisplayName() { * * *
-         * Required. The display name of the enum value. Must not be an empty
-         * string.
+         * Required. The display name of the enum value. Must not be an empty string.
          * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -1007,8 +1001,7 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-         * Required. The display name of the enum value. Must not be an empty
-         * string.
+         * Required. The display name of the enum value. Must not be an empty string.
          * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -1026,8 +1019,7 @@ public Builder setDisplayName(java.lang.String value) { * * *
-         * Required. The display name of the enum value. Must not be an empty
-         * string.
+         * Required. The display name of the enum value. Must not be an empty string.
          * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -1042,8 +1034,7 @@ public Builder clearDisplayName() { * * *
-         * Required. The display name of the enum value. Must not be an empty
-         * string.
+         * Required. The display name of the enum value. Must not be an empty string.
          * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GcsFilesetSpec.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GcsFilesetSpec.java index 81a7fc31..26d4b74f 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GcsFilesetSpec.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GcsFilesetSpec.java @@ -135,9 +135,14 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required. Patterns to identify a set of files in Google Cloud Storage.
+   * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+   * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+   * more information. Note that bucket wildcards are currently not supported.
    * Examples of valid file_patterns:
-   *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+   *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+   *                              directory.
+   *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+   *                               spanning all subdirectories.
    *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
    *                              `bucket_name`
    *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -154,9 +159,14 @@ public com.google.protobuf.ProtocolStringList getFilePatternsList() {
    *
    *
    * 
-   * Required. Patterns to identify a set of files in Google Cloud Storage.
+   * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+   * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+   * more information. Note that bucket wildcards are currently not supported.
    * Examples of valid file_patterns:
-   *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+   *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+   *                              directory.
+   *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+   *                               spanning all subdirectories.
    *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
    *                              `bucket_name`
    *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -173,9 +183,14 @@ public int getFilePatternsCount() {
    *
    *
    * 
-   * Required. Patterns to identify a set of files in Google Cloud Storage.
+   * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+   * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+   * more information. Note that bucket wildcards are currently not supported.
    * Examples of valid file_patterns:
-   *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+   *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+   *                              directory.
+   *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+   *                               spanning all subdirectories.
    *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
    *                              `bucket_name`
    *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -192,9 +207,14 @@ public java.lang.String getFilePatterns(int index) {
    *
    *
    * 
-   * Required. Patterns to identify a set of files in Google Cloud Storage.
+   * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+   * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+   * more information. Note that bucket wildcards are currently not supported.
    * Examples of valid file_patterns:
-   *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+   *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+   *                              directory.
+   *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+   *                               spanning all subdirectories.
    *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
    *                              `bucket_name`
    *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -214,8 +234,8 @@ public com.google.protobuf.ByteString getFilePatternsBytes(int index) {
    *
    *
    * 
-   * Output only. Sample files contained in this fileset, not all files
-   * contained in this fileset are represented here.
+   * Output only. Sample files contained in this fileset, not all files contained in this
+   * fileset are represented here.
    * 
* * @@ -230,8 +250,8 @@ public com.google.protobuf.ByteString getFilePatternsBytes(int index) { * * *
-   * Output only. Sample files contained in this fileset, not all files
-   * contained in this fileset are represented here.
+   * Output only. Sample files contained in this fileset, not all files contained in this
+   * fileset are represented here.
    * 
* * @@ -246,8 +266,8 @@ public com.google.protobuf.ByteString getFilePatternsBytes(int index) { * * *
-   * Output only. Sample files contained in this fileset, not all files
-   * contained in this fileset are represented here.
+   * Output only. Sample files contained in this fileset, not all files contained in this
+   * fileset are represented here.
    * 
* * @@ -261,8 +281,8 @@ public int getSampleGcsFileSpecsCount() { * * *
-   * Output only. Sample files contained in this fileset, not all files
-   * contained in this fileset are represented here.
+   * Output only. Sample files contained in this fileset, not all files contained in this
+   * fileset are represented here.
    * 
* * @@ -276,8 +296,8 @@ public com.google.cloud.datacatalog.v1beta1.GcsFileSpec getSampleGcsFileSpecs(in * * *
-   * Output only. Sample files contained in this fileset, not all files
-   * contained in this fileset are represented here.
+   * Output only. Sample files contained in this fileset, not all files contained in this
+   * fileset are represented here.
    * 
* * @@ -696,9 +716,14 @@ private void ensureFilePatternsIsMutable() { * * *
-     * Required. Patterns to identify a set of files in Google Cloud Storage.
+     * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+     * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+     * more information. Note that bucket wildcards are currently not supported.
      * Examples of valid file_patterns:
-     *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+     *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+     *                              directory.
+     *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+     *                               spanning all subdirectories.
      *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
      *                              `bucket_name`
      *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -715,9 +740,14 @@ public com.google.protobuf.ProtocolStringList getFilePatternsList() {
      *
      *
      * 
-     * Required. Patterns to identify a set of files in Google Cloud Storage.
+     * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+     * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+     * more information. Note that bucket wildcards are currently not supported.
      * Examples of valid file_patterns:
-     *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+     *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+     *                              directory.
+     *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+     *                               spanning all subdirectories.
      *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
      *                              `bucket_name`
      *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -734,9 +764,14 @@ public int getFilePatternsCount() {
      *
      *
      * 
-     * Required. Patterns to identify a set of files in Google Cloud Storage.
+     * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+     * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+     * more information. Note that bucket wildcards are currently not supported.
      * Examples of valid file_patterns:
-     *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+     *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+     *                              directory.
+     *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+     *                               spanning all subdirectories.
      *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
      *                              `bucket_name`
      *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -753,9 +788,14 @@ public java.lang.String getFilePatterns(int index) {
      *
      *
      * 
-     * Required. Patterns to identify a set of files in Google Cloud Storage.
+     * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+     * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+     * more information. Note that bucket wildcards are currently not supported.
      * Examples of valid file_patterns:
-     *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+     *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+     *                              directory.
+     *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+     *                               spanning all subdirectories.
      *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
      *                              `bucket_name`
      *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -772,9 +812,14 @@ public com.google.protobuf.ByteString getFilePatternsBytes(int index) {
      *
      *
      * 
-     * Required. Patterns to identify a set of files in Google Cloud Storage.
+     * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+     * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+     * more information. Note that bucket wildcards are currently not supported.
      * Examples of valid file_patterns:
-     *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+     *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+     *                              directory.
+     *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+     *                               spanning all subdirectories.
      *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
      *                              `bucket_name`
      *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -797,9 +842,14 @@ public Builder setFilePatterns(int index, java.lang.String value) {
      *
      *
      * 
-     * Required. Patterns to identify a set of files in Google Cloud Storage.
+     * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+     * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+     * more information. Note that bucket wildcards are currently not supported.
      * Examples of valid file_patterns:
-     *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+     *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+     *                              directory.
+     *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+     *                               spanning all subdirectories.
      *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
      *                              `bucket_name`
      *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -822,9 +872,14 @@ public Builder addFilePatterns(java.lang.String value) {
      *
      *
      * 
-     * Required. Patterns to identify a set of files in Google Cloud Storage.
+     * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+     * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+     * more information. Note that bucket wildcards are currently not supported.
      * Examples of valid file_patterns:
-     *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+     *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+     *                              directory.
+     *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+     *                               spanning all subdirectories.
      *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
      *                              `bucket_name`
      *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -844,9 +899,14 @@ public Builder addAllFilePatterns(java.lang.Iterable values) {
      *
      *
      * 
-     * Required. Patterns to identify a set of files in Google Cloud Storage.
+     * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+     * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+     * more information. Note that bucket wildcards are currently not supported.
      * Examples of valid file_patterns:
-     *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+     *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+     *                              directory.
+     *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+     *                               spanning all subdirectories.
      *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
      *                              `bucket_name`
      *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -866,9 +926,14 @@ public Builder clearFilePatterns() {
      *
      *
      * 
-     * Required. Patterns to identify a set of files in Google Cloud Storage.
+     * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+     * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+     * more information. Note that bucket wildcards are currently not supported.
      * Examples of valid file_patterns:
-     *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+     *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+     *                              directory.
+     *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+     *                               spanning all subdirectories.
      *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
      *                              `bucket_name`
      *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -911,8 +976,8 @@ private void ensureSampleGcsFileSpecsIsMutable() {
      *
      *
      * 
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -931,8 +996,8 @@ private void ensureSampleGcsFileSpecsIsMutable() { * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -950,8 +1015,8 @@ public int getSampleGcsFileSpecsCount() { * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -969,8 +1034,8 @@ public com.google.cloud.datacatalog.v1beta1.GcsFileSpec getSampleGcsFileSpecs(in * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -995,8 +1060,8 @@ public Builder setSampleGcsFileSpecs( * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -1018,8 +1083,8 @@ public Builder setSampleGcsFileSpecs( * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -1043,8 +1108,8 @@ public Builder addSampleGcsFileSpecs(com.google.cloud.datacatalog.v1beta1.GcsFil * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -1069,8 +1134,8 @@ public Builder addSampleGcsFileSpecs( * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -1092,8 +1157,8 @@ public Builder addSampleGcsFileSpecs( * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -1115,8 +1180,8 @@ public Builder addSampleGcsFileSpecs( * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -1138,8 +1203,8 @@ public Builder addAllSampleGcsFileSpecs( * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -1160,8 +1225,8 @@ public Builder clearSampleGcsFileSpecs() { * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -1182,8 +1247,8 @@ public Builder removeSampleGcsFileSpecs(int index) { * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -1198,8 +1263,8 @@ public com.google.cloud.datacatalog.v1beta1.GcsFileSpec.Builder getSampleGcsFile * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -1218,8 +1283,8 @@ public com.google.cloud.datacatalog.v1beta1.GcsFileSpecOrBuilder getSampleGcsFil * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -1238,8 +1303,8 @@ public com.google.cloud.datacatalog.v1beta1.GcsFileSpecOrBuilder getSampleGcsFil * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -1254,8 +1319,8 @@ public com.google.cloud.datacatalog.v1beta1.GcsFileSpec.Builder addSampleGcsFile * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * @@ -1271,8 +1336,8 @@ public com.google.cloud.datacatalog.v1beta1.GcsFileSpec.Builder addSampleGcsFile * * *
-     * Output only. Sample files contained in this fileset, not all files
-     * contained in this fileset are represented here.
+     * Output only. Sample files contained in this fileset, not all files contained in this
+     * fileset are represented here.
      * 
* * diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GcsFilesetSpecOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GcsFilesetSpecOrBuilder.java index 188f7d70..b46e7954 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GcsFilesetSpecOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GcsFilesetSpecOrBuilder.java @@ -27,9 +27,14 @@ public interface GcsFilesetSpecOrBuilder * * *
-   * Required. Patterns to identify a set of files in Google Cloud Storage.
+   * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+   * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+   * more information. Note that bucket wildcards are currently not supported.
    * Examples of valid file_patterns:
-   *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+   *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+   *                              directory.
+   *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+   *                               spanning all subdirectories.
    *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
    *                              `bucket_name`
    *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -44,9 +49,14 @@ public interface GcsFilesetSpecOrBuilder
    *
    *
    * 
-   * Required. Patterns to identify a set of files in Google Cloud Storage.
+   * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+   * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+   * more information. Note that bucket wildcards are currently not supported.
    * Examples of valid file_patterns:
-   *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+   *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+   *                              directory.
+   *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+   *                               spanning all subdirectories.
    *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
    *                              `bucket_name`
    *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -61,9 +71,14 @@ public interface GcsFilesetSpecOrBuilder
    *
    *
    * 
-   * Required. Patterns to identify a set of files in Google Cloud Storage.
+   * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+   * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+   * more information. Note that bucket wildcards are currently not supported.
    * Examples of valid file_patterns:
-   *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+   *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+   *                              directory.
+   *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+   *                               spanning all subdirectories.
    *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
    *                              `bucket_name`
    *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -78,9 +93,14 @@ public interface GcsFilesetSpecOrBuilder
    *
    *
    * 
-   * Required. Patterns to identify a set of files in Google Cloud Storage.
+   * Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud
+   * Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for
+   * more information. Note that bucket wildcards are currently not supported.
    * Examples of valid file_patterns:
-   *  * `gs://bucket_name/*`: matches all files in `bucket_name`
+   *  * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir`
+   *                              directory.
+   *  * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir`
+   *                               spanning all subdirectories.
    *  * `gs://bucket_name/file*`: matches files prefixed by `file` in
    *                              `bucket_name`
    *  * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match
@@ -96,8 +116,8 @@ public interface GcsFilesetSpecOrBuilder
    *
    *
    * 
-   * Output only. Sample files contained in this fileset, not all files
-   * contained in this fileset are represented here.
+   * Output only. Sample files contained in this fileset, not all files contained in this
+   * fileset are represented here.
    * 
* * @@ -109,8 +129,8 @@ public interface GcsFilesetSpecOrBuilder * * *
-   * Output only. Sample files contained in this fileset, not all files
-   * contained in this fileset are represented here.
+   * Output only. Sample files contained in this fileset, not all files contained in this
+   * fileset are represented here.
    * 
* * @@ -122,8 +142,8 @@ public interface GcsFilesetSpecOrBuilder * * *
-   * Output only. Sample files contained in this fileset, not all files
-   * contained in this fileset are represented here.
+   * Output only. Sample files contained in this fileset, not all files contained in this
+   * fileset are represented here.
    * 
* * @@ -135,8 +155,8 @@ public interface GcsFilesetSpecOrBuilder * * *
-   * Output only. Sample files contained in this fileset, not all files
-   * contained in this fileset are represented here.
+   * Output only. Sample files contained in this fileset, not all files contained in this
+   * fileset are represented here.
    * 
* * @@ -149,8 +169,8 @@ public interface GcsFilesetSpecOrBuilder * * *
-   * Output only. Sample files contained in this fileset, not all files
-   * contained in this fileset are represented here.
+   * Output only. Sample files contained in this fileset, not all files contained in this
+   * fileset are represented here.
    * 
* * diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GetPolicyTagRequest.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GetPolicyTagRequest.java index 70a23715..418cb821 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GetPolicyTagRequest.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GetPolicyTagRequest.java @@ -113,7 +113,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required. Resource name of the policy tag to be returned.
+   * Required. Resource name of the requested policy tag.
    * 
* * @@ -135,7 +135,7 @@ public java.lang.String getName() { * * *
-   * Required. Resource name of the policy tag to be returned.
+   * Required. Resource name of the requested policy tag.
    * 
* * @@ -479,7 +479,7 @@ public Builder mergeFrom( * * *
-     * Required. Resource name of the policy tag to be returned.
+     * Required. Resource name of the requested policy tag.
      * 
* * @@ -501,7 +501,7 @@ public java.lang.String getName() { * * *
-     * Required. Resource name of the policy tag to be returned.
+     * Required. Resource name of the requested policy tag.
      * 
* * @@ -523,7 +523,7 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-     * Required. Resource name of the policy tag to be returned.
+     * Required. Resource name of the requested policy tag.
      * 
* * @@ -543,7 +543,7 @@ public Builder setName(java.lang.String value) { * * *
-     * Required. Resource name of the policy tag to be returned.
+     * Required. Resource name of the requested policy tag.
      * 
* * @@ -560,7 +560,7 @@ public Builder clearName() { * * *
-     * Required. Resource name of the policy tag to be returned.
+     * Required. Resource name of the requested policy tag.
      * 
* * diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GetPolicyTagRequestOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GetPolicyTagRequestOrBuilder.java index 6eaf6ca9..1045ba77 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GetPolicyTagRequestOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GetPolicyTagRequestOrBuilder.java @@ -27,7 +27,7 @@ public interface GetPolicyTagRequestOrBuilder * * *
-   * Required. Resource name of the policy tag to be returned.
+   * Required. Resource name of the requested policy tag.
    * 
* * @@ -39,7 +39,7 @@ public interface GetPolicyTagRequestOrBuilder * * *
-   * Required. Resource name of the policy tag to be returned.
+   * Required. Resource name of the requested policy tag.
    * 
* * diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GetTaxonomyRequest.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GetTaxonomyRequest.java index 5f4efcea..5ddc8007 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GetTaxonomyRequest.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GetTaxonomyRequest.java @@ -113,7 +113,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required. Resource name of the taxonomy to be returned.
+   * Required. Resource name of the requested taxonomy.
    * 
* * @@ -135,7 +135,7 @@ public java.lang.String getName() { * * *
-   * Required. Resource name of the taxonomy to be returned.
+   * Required. Resource name of the requested taxonomy.
    * 
* * @@ -479,7 +479,7 @@ public Builder mergeFrom( * * *
-     * Required. Resource name of the taxonomy to be returned.
+     * Required. Resource name of the requested taxonomy.
      * 
* * @@ -501,7 +501,7 @@ public java.lang.String getName() { * * *
-     * Required. Resource name of the taxonomy to be returned.
+     * Required. Resource name of the requested taxonomy.
      * 
* * @@ -523,7 +523,7 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-     * Required. Resource name of the taxonomy to be returned.
+     * Required. Resource name of the requested taxonomy.
      * 
* * @@ -543,7 +543,7 @@ public Builder setName(java.lang.String value) { * * *
-     * Required. Resource name of the taxonomy to be returned.
+     * Required. Resource name of the requested taxonomy.
      * 
* * @@ -560,7 +560,7 @@ public Builder clearName() { * * *
-     * Required. Resource name of the taxonomy to be returned.
+     * Required. Resource name of the requested taxonomy.
      * 
* * diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GetTaxonomyRequestOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GetTaxonomyRequestOrBuilder.java index a6d90302..7df73f8b 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GetTaxonomyRequestOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/GetTaxonomyRequestOrBuilder.java @@ -27,7 +27,7 @@ public interface GetTaxonomyRequestOrBuilder * * *
-   * Required. Resource name of the taxonomy to be returned.
+   * Required. Resource name of the requested taxonomy.
    * 
* * @@ -39,7 +39,7 @@ public interface GetTaxonomyRequestOrBuilder * * *
-   * Required. Resource name of the taxonomy to be returned.
+   * Required. Resource name of the requested taxonomy.
    * 
* * diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListPolicyTagsRequest.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListPolicyTagsRequest.java index cbd80233..9f3ff95f 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListPolicyTagsRequest.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListPolicyTagsRequest.java @@ -126,7 +126,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required. Resource name of a taxonomy to list the policy tags of.
+   * Required. Resource name of the taxonomy to list the policy tags of.
    * 
* * @@ -148,7 +148,7 @@ public java.lang.String getParent() { * * *
-   * Required. Resource name of a taxonomy to list the policy tags of.
+   * Required. Resource name of the taxonomy to list the policy tags of.
    * 
* * @@ -173,7 +173,8 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-   * The maximum number of items to return. If not set, defaults to 50.
+   * The maximum number of items to return. Must be a value between 1 and 1000.
+   * If not set, defaults to 50.
    * 
* * int32 page_size = 2; @@ -583,7 +584,7 @@ public Builder mergeFrom( * * *
-     * Required. Resource name of a taxonomy to list the policy tags of.
+     * Required. Resource name of the taxonomy to list the policy tags of.
      * 
* * @@ -605,7 +606,7 @@ public java.lang.String getParent() { * * *
-     * Required. Resource name of a taxonomy to list the policy tags of.
+     * Required. Resource name of the taxonomy to list the policy tags of.
      * 
* * @@ -627,7 +628,7 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-     * Required. Resource name of a taxonomy to list the policy tags of.
+     * Required. Resource name of the taxonomy to list the policy tags of.
      * 
* * @@ -647,7 +648,7 @@ public Builder setParent(java.lang.String value) { * * *
-     * Required. Resource name of a taxonomy to list the policy tags of.
+     * Required. Resource name of the taxonomy to list the policy tags of.
      * 
* * @@ -664,7 +665,7 @@ public Builder clearParent() { * * *
-     * Required. Resource name of a taxonomy to list the policy tags of.
+     * Required. Resource name of the taxonomy to list the policy tags of.
      * 
* * @@ -687,7 +688,8 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) { * * *
-     * The maximum number of items to return. If not set, defaults to 50.
+     * The maximum number of items to return. Must be a value between 1 and 1000.
+     * If not set, defaults to 50.
      * 
* * int32 page_size = 2; @@ -699,7 +701,8 @@ public int getPageSize() { * * *
-     * The maximum number of items to return. If not set, defaults to 50.
+     * The maximum number of items to return. Must be a value between 1 and 1000.
+     * If not set, defaults to 50.
      * 
* * int32 page_size = 2; @@ -714,7 +717,8 @@ public Builder setPageSize(int value) { * * *
-     * The maximum number of items to return. If not set, defaults to 50.
+     * The maximum number of items to return. Must be a value between 1 and 1000.
+     * If not set, defaults to 50.
      * 
* * int32 page_size = 2; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListPolicyTagsRequestOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListPolicyTagsRequestOrBuilder.java index ec462efd..2b5b810f 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListPolicyTagsRequestOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListPolicyTagsRequestOrBuilder.java @@ -27,7 +27,7 @@ public interface ListPolicyTagsRequestOrBuilder * * *
-   * Required. Resource name of a taxonomy to list the policy tags of.
+   * Required. Resource name of the taxonomy to list the policy tags of.
    * 
* * @@ -39,7 +39,7 @@ public interface ListPolicyTagsRequestOrBuilder * * *
-   * Required. Resource name of a taxonomy to list the policy tags of.
+   * Required. Resource name of the taxonomy to list the policy tags of.
    * 
* * @@ -52,7 +52,8 @@ public interface ListPolicyTagsRequestOrBuilder * * *
-   * The maximum number of items to return. If not set, defaults to 50.
+   * The maximum number of items to return. Must be a value between 1 and 1000.
+   * If not set, defaults to 50.
    * 
* * int32 page_size = 2; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListPolicyTagsResponse.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListPolicyTagsResponse.java index b2a4a998..21cdf774 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListPolicyTagsResponse.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListPolicyTagsResponse.java @@ -130,7 +130,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Policy Tags that are in this taxonomy.
+   * The policy tags that are in the requested taxonomy.
    * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -142,7 +142,7 @@ public java.util.List getPolicyT * * *
-   * Policy Tags that are in this taxonomy.
+   * The policy tags that are in the requested taxonomy.
    * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -155,7 +155,7 @@ public java.util.List getPolicyT * * *
-   * Policy Tags that are in this taxonomy.
+   * The policy tags that are in the requested taxonomy.
    * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -167,7 +167,7 @@ public int getPolicyTagsCount() { * * *
-   * Policy Tags that are in this taxonomy.
+   * The policy tags that are in the requested taxonomy.
    * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -179,7 +179,7 @@ public com.google.cloud.datacatalog.v1beta1.PolicyTag getPolicyTags(int index) { * * *
-   * Policy Tags that are in this taxonomy.
+   * The policy tags that are in the requested taxonomy.
    * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -194,7 +194,7 @@ public com.google.cloud.datacatalog.v1beta1.PolicyTagOrBuilder getPolicyTagsOrBu * * *
-   * Token to retrieve the next page of results, or empty if there are no
+   * Token used to retrieve the next page of results, or empty if there are no
    * more results in the list.
    * 
* @@ -215,7 +215,7 @@ public java.lang.String getNextPageToken() { * * *
-   * Token to retrieve the next page of results, or empty if there are no
+   * Token used to retrieve the next page of results, or empty if there are no
    * more results in the list.
    * 
* @@ -634,7 +634,7 @@ private void ensurePolicyTagsIsMutable() { * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -650,7 +650,7 @@ public java.util.List getPolicyT * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -666,7 +666,7 @@ public int getPolicyTagsCount() { * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -682,7 +682,7 @@ public com.google.cloud.datacatalog.v1beta1.PolicyTag getPolicyTags(int index) { * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -704,7 +704,7 @@ public Builder setPolicyTags(int index, com.google.cloud.datacatalog.v1beta1.Pol * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -724,7 +724,7 @@ public Builder setPolicyTags( * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -746,7 +746,7 @@ public Builder addPolicyTags(com.google.cloud.datacatalog.v1beta1.PolicyTag valu * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -768,7 +768,7 @@ public Builder addPolicyTags(int index, com.google.cloud.datacatalog.v1beta1.Pol * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -788,7 +788,7 @@ public Builder addPolicyTags( * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -808,7 +808,7 @@ public Builder addPolicyTags( * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -828,7 +828,7 @@ public Builder addAllPolicyTags( * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -847,7 +847,7 @@ public Builder clearPolicyTags() { * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -866,7 +866,7 @@ public Builder removePolicyTags(int index) { * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -878,7 +878,7 @@ public com.google.cloud.datacatalog.v1beta1.PolicyTag.Builder getPolicyTagsBuild * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -895,7 +895,7 @@ public com.google.cloud.datacatalog.v1beta1.PolicyTagOrBuilder getPolicyTagsOrBu * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -912,7 +912,7 @@ public com.google.cloud.datacatalog.v1beta1.PolicyTagOrBuilder getPolicyTagsOrBu * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -925,7 +925,7 @@ public com.google.cloud.datacatalog.v1beta1.PolicyTag.Builder addPolicyTagsBuild * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -938,7 +938,7 @@ public com.google.cloud.datacatalog.v1beta1.PolicyTag.Builder addPolicyTagsBuild * * *
-     * Policy Tags that are in this taxonomy.
+     * The policy tags that are in the requested taxonomy.
      * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -970,7 +970,7 @@ public com.google.cloud.datacatalog.v1beta1.PolicyTag.Builder addPolicyTagsBuild * * *
-     * Token to retrieve the next page of results, or empty if there are no
+     * Token used to retrieve the next page of results, or empty if there are no
      * more results in the list.
      * 
* @@ -991,7 +991,7 @@ public java.lang.String getNextPageToken() { * * *
-     * Token to retrieve the next page of results, or empty if there are no
+     * Token used to retrieve the next page of results, or empty if there are no
      * more results in the list.
      * 
* @@ -1012,7 +1012,7 @@ public com.google.protobuf.ByteString getNextPageTokenBytes() { * * *
-     * Token to retrieve the next page of results, or empty if there are no
+     * Token used to retrieve the next page of results, or empty if there are no
      * more results in the list.
      * 
* @@ -1031,7 +1031,7 @@ public Builder setNextPageToken(java.lang.String value) { * * *
-     * Token to retrieve the next page of results, or empty if there are no
+     * Token used to retrieve the next page of results, or empty if there are no
      * more results in the list.
      * 
* @@ -1047,7 +1047,7 @@ public Builder clearNextPageToken() { * * *
-     * Token to retrieve the next page of results, or empty if there are no
+     * Token used to retrieve the next page of results, or empty if there are no
      * more results in the list.
      * 
* diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListPolicyTagsResponseOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListPolicyTagsResponseOrBuilder.java index c7350f73..6adaf41a 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListPolicyTagsResponseOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListPolicyTagsResponseOrBuilder.java @@ -27,7 +27,7 @@ public interface ListPolicyTagsResponseOrBuilder * * *
-   * Policy Tags that are in this taxonomy.
+   * The policy tags that are in the requested taxonomy.
    * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -37,7 +37,7 @@ public interface ListPolicyTagsResponseOrBuilder * * *
-   * Policy Tags that are in this taxonomy.
+   * The policy tags that are in the requested taxonomy.
    * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -47,7 +47,7 @@ public interface ListPolicyTagsResponseOrBuilder * * *
-   * Policy Tags that are in this taxonomy.
+   * The policy tags that are in the requested taxonomy.
    * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -57,7 +57,7 @@ public interface ListPolicyTagsResponseOrBuilder * * *
-   * Policy Tags that are in this taxonomy.
+   * The policy tags that are in the requested taxonomy.
    * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -68,7 +68,7 @@ public interface ListPolicyTagsResponseOrBuilder * * *
-   * Policy Tags that are in this taxonomy.
+   * The policy tags that are in the requested taxonomy.
    * 
* * repeated .google.cloud.datacatalog.v1beta1.PolicyTag policy_tags = 1; @@ -79,7 +79,7 @@ public interface ListPolicyTagsResponseOrBuilder * * *
-   * Token to retrieve the next page of results, or empty if there are no
+   * Token used to retrieve the next page of results, or empty if there are no
    * more results in the list.
    * 
* @@ -90,7 +90,7 @@ public interface ListPolicyTagsResponseOrBuilder * * *
-   * Token to retrieve the next page of results, or empty if there are no
+   * Token used to retrieve the next page of results, or empty if there are no
    * more results in the list.
    * 
* diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListTaxonomiesRequest.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListTaxonomiesRequest.java index 8d8d3597..9a0bb506 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListTaxonomiesRequest.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListTaxonomiesRequest.java @@ -126,7 +126,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required. Resource name of a project to list the taxonomies of.
+   * Required. Resource name of the project to list the taxonomies of.
    * 
* * @@ -148,7 +148,7 @@ public java.lang.String getParent() { * * *
-   * Required. Resource name of a project to list the taxonomies of.
+   * Required. Resource name of the project to list the taxonomies of.
    * 
* * @@ -173,7 +173,8 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-   * The maximum number of items to return. If not set, defaults to 50.
+   * The maximum number of items to return. Must be a value between 1 and 1000.
+   * If not set, defaults to 50.
    * 
* * int32 page_size = 2; @@ -583,7 +584,7 @@ public Builder mergeFrom( * * *
-     * Required. Resource name of a project to list the taxonomies of.
+     * Required. Resource name of the project to list the taxonomies of.
      * 
* * @@ -605,7 +606,7 @@ public java.lang.String getParent() { * * *
-     * Required. Resource name of a project to list the taxonomies of.
+     * Required. Resource name of the project to list the taxonomies of.
      * 
* * @@ -627,7 +628,7 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-     * Required. Resource name of a project to list the taxonomies of.
+     * Required. Resource name of the project to list the taxonomies of.
      * 
* * @@ -647,7 +648,7 @@ public Builder setParent(java.lang.String value) { * * *
-     * Required. Resource name of a project to list the taxonomies of.
+     * Required. Resource name of the project to list the taxonomies of.
      * 
* * @@ -664,7 +665,7 @@ public Builder clearParent() { * * *
-     * Required. Resource name of a project to list the taxonomies of.
+     * Required. Resource name of the project to list the taxonomies of.
      * 
* * @@ -687,7 +688,8 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) { * * *
-     * The maximum number of items to return. If not set, defaults to 50.
+     * The maximum number of items to return. Must be a value between 1 and 1000.
+     * If not set, defaults to 50.
      * 
* * int32 page_size = 2; @@ -699,7 +701,8 @@ public int getPageSize() { * * *
-     * The maximum number of items to return. If not set, defaults to 50.
+     * The maximum number of items to return. Must be a value between 1 and 1000.
+     * If not set, defaults to 50.
      * 
* * int32 page_size = 2; @@ -714,7 +717,8 @@ public Builder setPageSize(int value) { * * *
-     * The maximum number of items to return. If not set, defaults to 50.
+     * The maximum number of items to return. Must be a value between 1 and 1000.
+     * If not set, defaults to 50.
      * 
* * int32 page_size = 2; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListTaxonomiesRequestOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListTaxonomiesRequestOrBuilder.java index 4dfed74c..6abe4e2c 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListTaxonomiesRequestOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListTaxonomiesRequestOrBuilder.java @@ -27,7 +27,7 @@ public interface ListTaxonomiesRequestOrBuilder * * *
-   * Required. Resource name of a project to list the taxonomies of.
+   * Required. Resource name of the project to list the taxonomies of.
    * 
* * @@ -39,7 +39,7 @@ public interface ListTaxonomiesRequestOrBuilder * * *
-   * Required. Resource name of a project to list the taxonomies of.
+   * Required. Resource name of the project to list the taxonomies of.
    * 
* * @@ -52,7 +52,8 @@ public interface ListTaxonomiesRequestOrBuilder * * *
-   * The maximum number of items to return. If not set, defaults to 50.
+   * The maximum number of items to return. Must be a value between 1 and 1000.
+   * If not set, defaults to 50.
    * 
* * int32 page_size = 2; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListTaxonomiesResponse.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListTaxonomiesResponse.java index 6d8f7d6f..ca869729 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListTaxonomiesResponse.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListTaxonomiesResponse.java @@ -194,7 +194,7 @@ public com.google.cloud.datacatalog.v1beta1.TaxonomyOrBuilder getTaxonomiesOrBui * * *
-   * Token to retrieve the next page of results, or empty if there are no
+   * Token used to retrieve the next page of results, or empty if there are no
    * more results in the list.
    * 
* @@ -215,7 +215,7 @@ public java.lang.String getNextPageToken() { * * *
-   * Token to retrieve the next page of results, or empty if there are no
+   * Token used to retrieve the next page of results, or empty if there are no
    * more results in the list.
    * 
* @@ -970,7 +970,7 @@ public com.google.cloud.datacatalog.v1beta1.Taxonomy.Builder addTaxonomiesBuilde * * *
-     * Token to retrieve the next page of results, or empty if there are no
+     * Token used to retrieve the next page of results, or empty if there are no
      * more results in the list.
      * 
* @@ -991,7 +991,7 @@ public java.lang.String getNextPageToken() { * * *
-     * Token to retrieve the next page of results, or empty if there are no
+     * Token used to retrieve the next page of results, or empty if there are no
      * more results in the list.
      * 
* @@ -1012,7 +1012,7 @@ public com.google.protobuf.ByteString getNextPageTokenBytes() { * * *
-     * Token to retrieve the next page of results, or empty if there are no
+     * Token used to retrieve the next page of results, or empty if there are no
      * more results in the list.
      * 
* @@ -1031,7 +1031,7 @@ public Builder setNextPageToken(java.lang.String value) { * * *
-     * Token to retrieve the next page of results, or empty if there are no
+     * Token used to retrieve the next page of results, or empty if there are no
      * more results in the list.
      * 
* @@ -1047,7 +1047,7 @@ public Builder clearNextPageToken() { * * *
-     * Token to retrieve the next page of results, or empty if there are no
+     * Token used to retrieve the next page of results, or empty if there are no
      * more results in the list.
      * 
* diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListTaxonomiesResponseOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListTaxonomiesResponseOrBuilder.java index c6a06ba4..b6672855 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListTaxonomiesResponseOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/ListTaxonomiesResponseOrBuilder.java @@ -79,7 +79,7 @@ public interface ListTaxonomiesResponseOrBuilder * * *
-   * Token to retrieve the next page of results, or empty if there are no
+   * Token used to retrieve the next page of results, or empty if there are no
    * more results in the list.
    * 
* @@ -90,7 +90,7 @@ public interface ListTaxonomiesResponseOrBuilder * * *
-   * Token to retrieve the next page of results, or empty if there are no
+   * Token used to retrieve the next page of results, or empty if there are no
    * more results in the list.
    * 
* diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTag.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTag.java index 4e753a6d..00031aac 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTag.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTag.java @@ -159,7 +159,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Output only. Resource name of the policy tag, whose format is:
+   * Output only. Resource name of this policy tag, whose format is:
    * "projects/{project_number}/locations/{location_id}/taxonomies/{taxonomy_id}/policyTags/{id}".
    * 
* @@ -180,7 +180,7 @@ public java.lang.String getName() { * * *
-   * Output only. Resource name of the policy tag, whose format is:
+   * Output only. Resource name of this policy tag, whose format is:
    * "projects/{project_number}/locations/{location_id}/taxonomies/{taxonomy_id}/policyTags/{id}".
    * 
* @@ -204,7 +204,9 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-   * Required. Human readable name of this policy tag. Max 200 bytes when
+   * Required. User defined name of this policy tag. It must: be unique within the parent
+   * taxonomy; contain only unicode letters, numbers, underscores, dashes and
+   * spaces; not start or end with spaces; and be at most 200 bytes long when
    * encoded in UTF-8.
    * 
* @@ -225,7 +227,9 @@ public java.lang.String getDisplayName() { * * *
-   * Required. Human readable name of this policy tag. Max 200 bytes when
+   * Required. User defined name of this policy tag. It must: be unique within the parent
+   * taxonomy; contain only unicode letters, numbers, underscores, dashes and
+   * spaces; not start or end with spaces; and be at most 200 bytes long when
    * encoded in UTF-8.
    * 
* @@ -249,9 +253,10 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-   * Description of the policy tag. The length of the description is limited to
-   * 2000 bytes when encoded in UTF-8. If not set, defaults to an empty
-   * description.
+   * Description of this policy tag. It must: contain only unicode characters,
+   * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+   * long when encoded in UTF-8. If not set, defaults to an empty description.
+   * If not set, defaults to an empty description.
    * 
* * string description = 3; @@ -271,9 +276,10 @@ public java.lang.String getDescription() { * * *
-   * Description of the policy tag. The length of the description is limited to
-   * 2000 bytes when encoded in UTF-8. If not set, defaults to an empty
-   * description.
+   * Description of this policy tag. It must: contain only unicode characters,
+   * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+   * long when encoded in UTF-8. If not set, defaults to an empty description.
+   * If not set, defaults to an empty description.
    * 
* * string description = 3; @@ -296,11 +302,12 @@ public com.google.protobuf.ByteString getDescriptionBytes() { * * *
-   * Resource name of the parent policy tag to this policy tag (e.g. for policy
-   * tag "LatLong" in the example above, this field contains the resource name
-   * of policy tag "Geolocation"). If empty, it means this policy tag is a top
-   * level policy tag (e.g. this field is empty for policy tag "Geolocation" in
-   * the example above). If not set, defaults to an empty string.
+   * Resource name of this policy tag's parent policy tag (e.g. for the
+   * "LatLong" policy tag in the example above, this field contains the
+   * resource name of the "Geolocation" policy tag). If empty, it means this
+   * policy tag is a top level policy tag (e.g. this field is empty for the
+   * "Geolocation" policy tag in the example above). If not set, defaults to an
+   * empty string.
    * 
* * string parent_policy_tag = 4; @@ -320,11 +327,12 @@ public java.lang.String getParentPolicyTag() { * * *
-   * Resource name of the parent policy tag to this policy tag (e.g. for policy
-   * tag "LatLong" in the example above, this field contains the resource name
-   * of policy tag "Geolocation"). If empty, it means this policy tag is a top
-   * level policy tag (e.g. this field is empty for policy tag "Geolocation" in
-   * the example above). If not set, defaults to an empty string.
+   * Resource name of this policy tag's parent policy tag (e.g. for the
+   * "LatLong" policy tag in the example above, this field contains the
+   * resource name of the "Geolocation" policy tag). If empty, it means this
+   * policy tag is a top level policy tag (e.g. this field is empty for the
+   * "Geolocation" policy tag in the example above). If not set, defaults to an
+   * empty string.
    * 
* * string parent_policy_tag = 4; @@ -811,7 +819,7 @@ public Builder mergeFrom( * * *
-     * Output only. Resource name of the policy tag, whose format is:
+     * Output only. Resource name of this policy tag, whose format is:
      * "projects/{project_number}/locations/{location_id}/taxonomies/{taxonomy_id}/policyTags/{id}".
      * 
* @@ -832,7 +840,7 @@ public java.lang.String getName() { * * *
-     * Output only. Resource name of the policy tag, whose format is:
+     * Output only. Resource name of this policy tag, whose format is:
      * "projects/{project_number}/locations/{location_id}/taxonomies/{taxonomy_id}/policyTags/{id}".
      * 
* @@ -853,7 +861,7 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-     * Output only. Resource name of the policy tag, whose format is:
+     * Output only. Resource name of this policy tag, whose format is:
      * "projects/{project_number}/locations/{location_id}/taxonomies/{taxonomy_id}/policyTags/{id}".
      * 
* @@ -872,7 +880,7 @@ public Builder setName(java.lang.String value) { * * *
-     * Output only. Resource name of the policy tag, whose format is:
+     * Output only. Resource name of this policy tag, whose format is:
      * "projects/{project_number}/locations/{location_id}/taxonomies/{taxonomy_id}/policyTags/{id}".
      * 
* @@ -888,7 +896,7 @@ public Builder clearName() { * * *
-     * Output only. Resource name of the policy tag, whose format is:
+     * Output only. Resource name of this policy tag, whose format is:
      * "projects/{project_number}/locations/{location_id}/taxonomies/{taxonomy_id}/policyTags/{id}".
      * 
* @@ -910,7 +918,9 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Required. Human readable name of this policy tag. Max 200 bytes when
+     * Required. User defined name of this policy tag. It must: be unique within the parent
+     * taxonomy; contain only unicode letters, numbers, underscores, dashes and
+     * spaces; not start or end with spaces; and be at most 200 bytes long when
      * encoded in UTF-8.
      * 
* @@ -931,7 +941,9 @@ public java.lang.String getDisplayName() { * * *
-     * Required. Human readable name of this policy tag. Max 200 bytes when
+     * Required. User defined name of this policy tag. It must: be unique within the parent
+     * taxonomy; contain only unicode letters, numbers, underscores, dashes and
+     * spaces; not start or end with spaces; and be at most 200 bytes long when
      * encoded in UTF-8.
      * 
* @@ -952,7 +964,9 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-     * Required. Human readable name of this policy tag. Max 200 bytes when
+     * Required. User defined name of this policy tag. It must: be unique within the parent
+     * taxonomy; contain only unicode letters, numbers, underscores, dashes and
+     * spaces; not start or end with spaces; and be at most 200 bytes long when
      * encoded in UTF-8.
      * 
* @@ -971,7 +985,9 @@ public Builder setDisplayName(java.lang.String value) { * * *
-     * Required. Human readable name of this policy tag. Max 200 bytes when
+     * Required. User defined name of this policy tag. It must: be unique within the parent
+     * taxonomy; contain only unicode letters, numbers, underscores, dashes and
+     * spaces; not start or end with spaces; and be at most 200 bytes long when
      * encoded in UTF-8.
      * 
* @@ -987,7 +1003,9 @@ public Builder clearDisplayName() { * * *
-     * Required. Human readable name of this policy tag. Max 200 bytes when
+     * Required. User defined name of this policy tag. It must: be unique within the parent
+     * taxonomy; contain only unicode letters, numbers, underscores, dashes and
+     * spaces; not start or end with spaces; and be at most 200 bytes long when
      * encoded in UTF-8.
      * 
* @@ -1009,9 +1027,10 @@ public Builder setDisplayNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Description of the policy tag. The length of the description is limited to
-     * 2000 bytes when encoded in UTF-8. If not set, defaults to an empty
-     * description.
+     * Description of this policy tag. It must: contain only unicode characters,
+     * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+     * long when encoded in UTF-8. If not set, defaults to an empty description.
+     * If not set, defaults to an empty description.
      * 
* * string description = 3; @@ -1031,9 +1050,10 @@ public java.lang.String getDescription() { * * *
-     * Description of the policy tag. The length of the description is limited to
-     * 2000 bytes when encoded in UTF-8. If not set, defaults to an empty
-     * description.
+     * Description of this policy tag. It must: contain only unicode characters,
+     * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+     * long when encoded in UTF-8. If not set, defaults to an empty description.
+     * If not set, defaults to an empty description.
      * 
* * string description = 3; @@ -1053,9 +1073,10 @@ public com.google.protobuf.ByteString getDescriptionBytes() { * * *
-     * Description of the policy tag. The length of the description is limited to
-     * 2000 bytes when encoded in UTF-8. If not set, defaults to an empty
-     * description.
+     * Description of this policy tag. It must: contain only unicode characters,
+     * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+     * long when encoded in UTF-8. If not set, defaults to an empty description.
+     * If not set, defaults to an empty description.
      * 
* * string description = 3; @@ -1073,9 +1094,10 @@ public Builder setDescription(java.lang.String value) { * * *
-     * Description of the policy tag. The length of the description is limited to
-     * 2000 bytes when encoded in UTF-8. If not set, defaults to an empty
-     * description.
+     * Description of this policy tag. It must: contain only unicode characters,
+     * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+     * long when encoded in UTF-8. If not set, defaults to an empty description.
+     * If not set, defaults to an empty description.
      * 
* * string description = 3; @@ -1090,9 +1112,10 @@ public Builder clearDescription() { * * *
-     * Description of the policy tag. The length of the description is limited to
-     * 2000 bytes when encoded in UTF-8. If not set, defaults to an empty
-     * description.
+     * Description of this policy tag. It must: contain only unicode characters,
+     * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+     * long when encoded in UTF-8. If not set, defaults to an empty description.
+     * If not set, defaults to an empty description.
      * 
* * string description = 3; @@ -1113,11 +1136,12 @@ public Builder setDescriptionBytes(com.google.protobuf.ByteString value) { * * *
-     * Resource name of the parent policy tag to this policy tag (e.g. for policy
-     * tag "LatLong" in the example above, this field contains the resource name
-     * of policy tag "Geolocation"). If empty, it means this policy tag is a top
-     * level policy tag (e.g. this field is empty for policy tag "Geolocation" in
-     * the example above). If not set, defaults to an empty string.
+     * Resource name of this policy tag's parent policy tag (e.g. for the
+     * "LatLong" policy tag in the example above, this field contains the
+     * resource name of the "Geolocation" policy tag). If empty, it means this
+     * policy tag is a top level policy tag (e.g. this field is empty for the
+     * "Geolocation" policy tag in the example above). If not set, defaults to an
+     * empty string.
      * 
* * string parent_policy_tag = 4; @@ -1137,11 +1161,12 @@ public java.lang.String getParentPolicyTag() { * * *
-     * Resource name of the parent policy tag to this policy tag (e.g. for policy
-     * tag "LatLong" in the example above, this field contains the resource name
-     * of policy tag "Geolocation"). If empty, it means this policy tag is a top
-     * level policy tag (e.g. this field is empty for policy tag "Geolocation" in
-     * the example above). If not set, defaults to an empty string.
+     * Resource name of this policy tag's parent policy tag (e.g. for the
+     * "LatLong" policy tag in the example above, this field contains the
+     * resource name of the "Geolocation" policy tag). If empty, it means this
+     * policy tag is a top level policy tag (e.g. this field is empty for the
+     * "Geolocation" policy tag in the example above). If not set, defaults to an
+     * empty string.
      * 
* * string parent_policy_tag = 4; @@ -1161,11 +1186,12 @@ public com.google.protobuf.ByteString getParentPolicyTagBytes() { * * *
-     * Resource name of the parent policy tag to this policy tag (e.g. for policy
-     * tag "LatLong" in the example above, this field contains the resource name
-     * of policy tag "Geolocation"). If empty, it means this policy tag is a top
-     * level policy tag (e.g. this field is empty for policy tag "Geolocation" in
-     * the example above). If not set, defaults to an empty string.
+     * Resource name of this policy tag's parent policy tag (e.g. for the
+     * "LatLong" policy tag in the example above, this field contains the
+     * resource name of the "Geolocation" policy tag). If empty, it means this
+     * policy tag is a top level policy tag (e.g. this field is empty for the
+     * "Geolocation" policy tag in the example above). If not set, defaults to an
+     * empty string.
      * 
* * string parent_policy_tag = 4; @@ -1183,11 +1209,12 @@ public Builder setParentPolicyTag(java.lang.String value) { * * *
-     * Resource name of the parent policy tag to this policy tag (e.g. for policy
-     * tag "LatLong" in the example above, this field contains the resource name
-     * of policy tag "Geolocation"). If empty, it means this policy tag is a top
-     * level policy tag (e.g. this field is empty for policy tag "Geolocation" in
-     * the example above). If not set, defaults to an empty string.
+     * Resource name of this policy tag's parent policy tag (e.g. for the
+     * "LatLong" policy tag in the example above, this field contains the
+     * resource name of the "Geolocation" policy tag). If empty, it means this
+     * policy tag is a top level policy tag (e.g. this field is empty for the
+     * "Geolocation" policy tag in the example above). If not set, defaults to an
+     * empty string.
      * 
* * string parent_policy_tag = 4; @@ -1202,11 +1229,12 @@ public Builder clearParentPolicyTag() { * * *
-     * Resource name of the parent policy tag to this policy tag (e.g. for policy
-     * tag "LatLong" in the example above, this field contains the resource name
-     * of policy tag "Geolocation"). If empty, it means this policy tag is a top
-     * level policy tag (e.g. this field is empty for policy tag "Geolocation" in
-     * the example above). If not set, defaults to an empty string.
+     * Resource name of this policy tag's parent policy tag (e.g. for the
+     * "LatLong" policy tag in the example above, this field contains the
+     * resource name of the "Geolocation" policy tag). If empty, it means this
+     * policy tag is a top level policy tag (e.g. this field is empty for the
+     * "Geolocation" policy tag in the example above). If not set, defaults to an
+     * empty string.
      * 
* * string parent_policy_tag = 4; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTagManagerSerializationProto.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTagManagerSerializationProto.java index a6a95be1..2fdb068a 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTagManagerSerializationProto.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTagManagerSerializationProto.java @@ -67,11 +67,11 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { "\nDgoogle/cloud/datacatalog/v1beta1/polic" + "ytagmanagerserialization.proto\022 google.c" + "loud.datacatalog.v1beta1\032\034google/api/ann" - + "otations.proto\032\027google/api/client.proto\032" - + "\037google/api/field_behavior.proto\032\031google" - + "/api/resource.proto\0327google/cloud/dataca" - + "talog/v1beta1/policytagmanager.proto\032\032go" - + "ogle/iam/v1/policy.proto\"\220\001\n\022SerializedT" + + "otations.proto\032\037google/api/field_behavio" + + "r.proto\032\031google/api/resource.proto\0327goog" + + "le/cloud/datacatalog/v1beta1/policytagma" + + "nager.proto\032\032google/iam/v1/policy.proto\032" + + "\027google/api/client.proto\"\220\001\n\022SerializedT" + "axonomy\022\031\n\014display_name\030\001 \001(\tB\003\340A\002\022\023\n\013de" + "scription\030\002 \001(\t\022J\n\013policy_tags\030\003 \003(\01325.g" + "oogle.cloud.datacatalog.v1beta1.Serializ" @@ -127,11 +127,11 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.api.AnnotationsProto.getDescriptor(), - com.google.api.ClientProto.getDescriptor(), com.google.api.FieldBehaviorProto.getDescriptor(), com.google.api.ResourceProto.getDescriptor(), com.google.cloud.datacatalog.v1beta1.PolicyTagManagerProto.getDescriptor(), com.google.iam.v1.PolicyProto.getDescriptor(), + com.google.api.ClientProto.getDescriptor(), }, assigner); internal_static_google_cloud_datacatalog_v1beta1_SerializedTaxonomy_descriptor = @@ -200,11 +200,11 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( com.google.protobuf.Descriptors.FileDescriptor.internalUpdateFileDescriptor( descriptor, registry); com.google.api.AnnotationsProto.getDescriptor(); - com.google.api.ClientProto.getDescriptor(); com.google.api.FieldBehaviorProto.getDescriptor(); com.google.api.ResourceProto.getDescriptor(); com.google.cloud.datacatalog.v1beta1.PolicyTagManagerProto.getDescriptor(); com.google.iam.v1.PolicyProto.getDescriptor(); + com.google.api.ClientProto.getDescriptor(); } // @@protoc_insertion_point(outer_class_scope) diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTagOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTagOrBuilder.java index b8ef5669..ecfe9bda 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTagOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/PolicyTagOrBuilder.java @@ -27,7 +27,7 @@ public interface PolicyTagOrBuilder * * *
-   * Output only. Resource name of the policy tag, whose format is:
+   * Output only. Resource name of this policy tag, whose format is:
    * "projects/{project_number}/locations/{location_id}/taxonomies/{taxonomy_id}/policyTags/{id}".
    * 
* @@ -38,7 +38,7 @@ public interface PolicyTagOrBuilder * * *
-   * Output only. Resource name of the policy tag, whose format is:
+   * Output only. Resource name of this policy tag, whose format is:
    * "projects/{project_number}/locations/{location_id}/taxonomies/{taxonomy_id}/policyTags/{id}".
    * 
* @@ -50,7 +50,9 @@ public interface PolicyTagOrBuilder * * *
-   * Required. Human readable name of this policy tag. Max 200 bytes when
+   * Required. User defined name of this policy tag. It must: be unique within the parent
+   * taxonomy; contain only unicode letters, numbers, underscores, dashes and
+   * spaces; not start or end with spaces; and be at most 200 bytes long when
    * encoded in UTF-8.
    * 
* @@ -61,7 +63,9 @@ public interface PolicyTagOrBuilder * * *
-   * Required. Human readable name of this policy tag. Max 200 bytes when
+   * Required. User defined name of this policy tag. It must: be unique within the parent
+   * taxonomy; contain only unicode letters, numbers, underscores, dashes and
+   * spaces; not start or end with spaces; and be at most 200 bytes long when
    * encoded in UTF-8.
    * 
* @@ -73,9 +77,10 @@ public interface PolicyTagOrBuilder * * *
-   * Description of the policy tag. The length of the description is limited to
-   * 2000 bytes when encoded in UTF-8. If not set, defaults to an empty
-   * description.
+   * Description of this policy tag. It must: contain only unicode characters,
+   * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+   * long when encoded in UTF-8. If not set, defaults to an empty description.
+   * If not set, defaults to an empty description.
    * 
* * string description = 3; @@ -85,9 +90,10 @@ public interface PolicyTagOrBuilder * * *
-   * Description of the policy tag. The length of the description is limited to
-   * 2000 bytes when encoded in UTF-8. If not set, defaults to an empty
-   * description.
+   * Description of this policy tag. It must: contain only unicode characters,
+   * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+   * long when encoded in UTF-8. If not set, defaults to an empty description.
+   * If not set, defaults to an empty description.
    * 
* * string description = 3; @@ -98,11 +104,12 @@ public interface PolicyTagOrBuilder * * *
-   * Resource name of the parent policy tag to this policy tag (e.g. for policy
-   * tag "LatLong" in the example above, this field contains the resource name
-   * of policy tag "Geolocation"). If empty, it means this policy tag is a top
-   * level policy tag (e.g. this field is empty for policy tag "Geolocation" in
-   * the example above). If not set, defaults to an empty string.
+   * Resource name of this policy tag's parent policy tag (e.g. for the
+   * "LatLong" policy tag in the example above, this field contains the
+   * resource name of the "Geolocation" policy tag). If empty, it means this
+   * policy tag is a top level policy tag (e.g. this field is empty for the
+   * "Geolocation" policy tag in the example above). If not set, defaults to an
+   * empty string.
    * 
* * string parent_policy_tag = 4; @@ -112,11 +119,12 @@ public interface PolicyTagOrBuilder * * *
-   * Resource name of the parent policy tag to this policy tag (e.g. for policy
-   * tag "LatLong" in the example above, this field contains the resource name
-   * of policy tag "Geolocation"). If empty, it means this policy tag is a top
-   * level policy tag (e.g. this field is empty for policy tag "Geolocation" in
-   * the example above). If not set, defaults to an empty string.
+   * Resource name of this policy tag's parent policy tag (e.g. for the
+   * "LatLong" policy tag in the example above, this field contains the
+   * resource name of the "Geolocation" policy tag). If empty, it means this
+   * policy tag is a top level policy tag (e.g. this field is empty for the
+   * "Geolocation" policy tag in the example above). If not set, defaults to an
+   * empty string.
    * 
* * string parent_policy_tag = 4; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/RenameTagTemplateFieldRequest.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/RenameTagTemplateFieldRequest.java index 2feabd88..2958015b 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/RenameTagTemplateFieldRequest.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/RenameTagTemplateFieldRequest.java @@ -170,8 +170,7 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-   * Required. The new ID of this tag template field. For example,
-   * `my_new_field`.
+   * Required. The new ID of this tag template field. For example, `my_new_field`.
    * 
* * string new_tag_template_field_id = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -191,8 +190,7 @@ public java.lang.String getNewTagTemplateFieldId() { * * *
-   * Required. The new ID of this tag template field. For example,
-   * `my_new_field`.
+   * Required. The new ID of this tag template field. For example, `my_new_field`.
    * 
* * string new_tag_template_field_id = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -667,8 +665,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Required. The new ID of this tag template field. For example,
-     * `my_new_field`.
+     * Required. The new ID of this tag template field. For example, `my_new_field`.
      * 
* * string new_tag_template_field_id = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -688,8 +685,7 @@ public java.lang.String getNewTagTemplateFieldId() { * * *
-     * Required. The new ID of this tag template field. For example,
-     * `my_new_field`.
+     * Required. The new ID of this tag template field. For example, `my_new_field`.
      * 
* * string new_tag_template_field_id = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -709,8 +705,7 @@ public com.google.protobuf.ByteString getNewTagTemplateFieldIdBytes() { * * *
-     * Required. The new ID of this tag template field. For example,
-     * `my_new_field`.
+     * Required. The new ID of this tag template field. For example, `my_new_field`.
      * 
* * string new_tag_template_field_id = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -728,8 +723,7 @@ public Builder setNewTagTemplateFieldId(java.lang.String value) { * * *
-     * Required. The new ID of this tag template field. For example,
-     * `my_new_field`.
+     * Required. The new ID of this tag template field. For example, `my_new_field`.
      * 
* * string new_tag_template_field_id = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -744,8 +738,7 @@ public Builder clearNewTagTemplateFieldId() { * * *
-     * Required. The new ID of this tag template field. For example,
-     * `my_new_field`.
+     * Required. The new ID of this tag template field. For example, `my_new_field`.
      * 
* * string new_tag_template_field_id = 2 [(.google.api.field_behavior) = REQUIRED]; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/RenameTagTemplateFieldRequestOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/RenameTagTemplateFieldRequestOrBuilder.java index 665e7a62..41b8c634 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/RenameTagTemplateFieldRequestOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/RenameTagTemplateFieldRequestOrBuilder.java @@ -54,8 +54,7 @@ public interface RenameTagTemplateFieldRequestOrBuilder * * *
-   * Required. The new ID of this tag template field. For example,
-   * `my_new_field`.
+   * Required. The new ID of this tag template field. For example, `my_new_field`.
    * 
* * string new_tag_template_field_id = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -65,8 +64,7 @@ public interface RenameTagTemplateFieldRequestOrBuilder * * *
-   * Required. The new ID of this tag template field. For example,
-   * `my_new_field`.
+   * Required. The new ID of this tag template field. For example, `my_new_field`.
    * 
* * string new_tag_template_field_id = 2 [(.google.api.field_behavior) = REQUIRED]; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/Schema.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/Schema.java index e568826f..10c7fb73 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/Schema.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/Schema.java @@ -121,8 +121,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-   * can be specified.
+   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+   * specified.
    * 
* * @@ -136,8 +136,8 @@ public java.util.List getColu * * *
-   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-   * can be specified.
+   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+   * specified.
    * 
* * @@ -152,8 +152,8 @@ public java.util.List getColu * * *
-   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-   * can be specified.
+   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+   * specified.
    * 
* * @@ -167,8 +167,8 @@ public int getColumnsCount() { * * *
-   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-   * can be specified.
+   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+   * specified.
    * 
* * @@ -182,8 +182,8 @@ public com.google.cloud.datacatalog.v1beta1.ColumnSchema getColumns(int index) { * * *
-   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-   * can be specified.
+   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+   * specified.
    * 
* * @@ -573,8 +573,8 @@ private void ensureColumnsIsMutable() { * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -592,8 +592,8 @@ public java.util.List getColu * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -611,8 +611,8 @@ public int getColumnsCount() { * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -630,8 +630,8 @@ public com.google.cloud.datacatalog.v1beta1.ColumnSchema getColumns(int index) { * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -655,8 +655,8 @@ public Builder setColumns(int index, com.google.cloud.datacatalog.v1beta1.Column * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -678,8 +678,8 @@ public Builder setColumns( * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -703,8 +703,8 @@ public Builder addColumns(com.google.cloud.datacatalog.v1beta1.ColumnSchema valu * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -728,8 +728,8 @@ public Builder addColumns(int index, com.google.cloud.datacatalog.v1beta1.Column * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -751,8 +751,8 @@ public Builder addColumns( * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -774,8 +774,8 @@ public Builder addColumns( * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -797,8 +797,8 @@ public Builder addAllColumns( * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -819,8 +819,8 @@ public Builder clearColumns() { * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -841,8 +841,8 @@ public Builder removeColumns(int index) { * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -856,8 +856,8 @@ public com.google.cloud.datacatalog.v1beta1.ColumnSchema.Builder getColumnsBuild * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -876,8 +876,8 @@ public com.google.cloud.datacatalog.v1beta1.ColumnSchemaOrBuilder getColumnsOrBu * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -896,8 +896,8 @@ public com.google.cloud.datacatalog.v1beta1.ColumnSchemaOrBuilder getColumnsOrBu * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -912,8 +912,8 @@ public com.google.cloud.datacatalog.v1beta1.ColumnSchema.Builder addColumnsBuild * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * @@ -929,8 +929,8 @@ public com.google.cloud.datacatalog.v1beta1.ColumnSchema.Builder addColumnsBuild * * *
-     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-     * can be specified.
+     * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+     * specified.
      * 
* * diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SchemaOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SchemaOrBuilder.java index 78d69c6a..ae2ee915 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SchemaOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SchemaOrBuilder.java @@ -27,8 +27,8 @@ public interface SchemaOrBuilder * * *
-   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-   * can be specified.
+   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+   * specified.
    * 
* * @@ -40,8 +40,8 @@ public interface SchemaOrBuilder * * *
-   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-   * can be specified.
+   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+   * specified.
    * 
* * @@ -53,8 +53,8 @@ public interface SchemaOrBuilder * * *
-   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-   * can be specified.
+   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+   * specified.
    * 
* * @@ -66,8 +66,8 @@ public interface SchemaOrBuilder * * *
-   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-   * can be specified.
+   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+   * specified.
    * 
* * @@ -80,8 +80,8 @@ public interface SchemaOrBuilder * * *
-   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns
-   * can be specified.
+   * Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be
+   * specified.
    * 
* * diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SearchCatalogRequest.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SearchCatalogRequest.java index eac81c87..ff11617f 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SearchCatalogRequest.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SearchCatalogRequest.java @@ -1465,8 +1465,7 @@ public com.google.cloud.datacatalog.v1beta1.SearchCatalogRequest.Scope getScope( * * *
-   * Required. The query string in search query syntax. The query must be
-   * non-empty.
+   * Required. The query string in search query syntax. The query must be non-empty.
    * Query strings can be simple as "x" or more qualified as:
    * * name:x
    * * column:x
@@ -1493,8 +1492,7 @@ public java.lang.String getQuery() {
    *
    *
    * 
-   * Required. The query string in search query syntax. The query must be
-   * non-empty.
+   * Required. The query string in search query syntax. The query must be non-empty.
    * Query strings can be simple as "x" or more qualified as:
    * * name:x
    * * column:x
@@ -1541,8 +1539,8 @@ public int getPageSize() {
    *
    * 
    * Optional. Pagination token returned in an earlier
-   * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token],
-   * which indicates that this is a continuation of a prior
+   * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token], which
+   * indicates that this is a continuation of a prior
    * [SearchCatalogRequest][google.cloud.datacatalog.v1beta1.DataCatalog.SearchCatalog]
    * call, and that the system should return the next page of data. If empty,
    * the first page is returned.
@@ -1566,8 +1564,8 @@ public java.lang.String getPageToken() {
    *
    * 
    * Optional. Pagination token returned in an earlier
-   * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token],
-   * which indicates that this is a continuation of a prior
+   * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token], which
+   * indicates that this is a continuation of a prior
    * [SearchCatalogRequest][google.cloud.datacatalog.v1beta1.DataCatalog.SearchCatalog]
    * call, and that the system should return the next page of data. If empty,
    * the first page is returned.
@@ -2247,8 +2245,7 @@ public Builder clearScope() {
      *
      *
      * 
-     * Required. The query string in search query syntax. The query must be
-     * non-empty.
+     * Required. The query string in search query syntax. The query must be non-empty.
      * Query strings can be simple as "x" or more qualified as:
      * * name:x
      * * column:x
@@ -2275,8 +2272,7 @@ public java.lang.String getQuery() {
      *
      *
      * 
-     * Required. The query string in search query syntax. The query must be
-     * non-empty.
+     * Required. The query string in search query syntax. The query must be non-empty.
      * Query strings can be simple as "x" or more qualified as:
      * * name:x
      * * column:x
@@ -2303,8 +2299,7 @@ public com.google.protobuf.ByteString getQueryBytes() {
      *
      *
      * 
-     * Required. The query string in search query syntax. The query must be
-     * non-empty.
+     * Required. The query string in search query syntax. The query must be non-empty.
      * Query strings can be simple as "x" or more qualified as:
      * * name:x
      * * column:x
@@ -2329,8 +2324,7 @@ public Builder setQuery(java.lang.String value) {
      *
      *
      * 
-     * Required. The query string in search query syntax. The query must be
-     * non-empty.
+     * Required. The query string in search query syntax. The query must be non-empty.
      * Query strings can be simple as "x" or more qualified as:
      * * name:x
      * * column:x
@@ -2352,8 +2346,7 @@ public Builder clearQuery() {
      *
      *
      * 
-     * Required. The query string in search query syntax. The query must be
-     * non-empty.
+     * Required. The query string in search query syntax. The query must be non-empty.
      * Query strings can be simple as "x" or more qualified as:
      * * name:x
      * * column:x
@@ -2429,8 +2422,8 @@ public Builder clearPageSize() {
      *
      * 
      * Optional. Pagination token returned in an earlier
-     * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token],
-     * which indicates that this is a continuation of a prior
+     * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token], which
+     * indicates that this is a continuation of a prior
      * [SearchCatalogRequest][google.cloud.datacatalog.v1beta1.DataCatalog.SearchCatalog]
      * call, and that the system should return the next page of data. If empty,
      * the first page is returned.
@@ -2454,8 +2447,8 @@ public java.lang.String getPageToken() {
      *
      * 
      * Optional. Pagination token returned in an earlier
-     * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token],
-     * which indicates that this is a continuation of a prior
+     * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token], which
+     * indicates that this is a continuation of a prior
      * [SearchCatalogRequest][google.cloud.datacatalog.v1beta1.DataCatalog.SearchCatalog]
      * call, and that the system should return the next page of data. If empty,
      * the first page is returned.
@@ -2479,8 +2472,8 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
      *
      * 
      * Optional. Pagination token returned in an earlier
-     * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token],
-     * which indicates that this is a continuation of a prior
+     * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token], which
+     * indicates that this is a continuation of a prior
      * [SearchCatalogRequest][google.cloud.datacatalog.v1beta1.DataCatalog.SearchCatalog]
      * call, and that the system should return the next page of data. If empty,
      * the first page is returned.
@@ -2502,8 +2495,8 @@ public Builder setPageToken(java.lang.String value) {
      *
      * 
      * Optional. Pagination token returned in an earlier
-     * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token],
-     * which indicates that this is a continuation of a prior
+     * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token], which
+     * indicates that this is a continuation of a prior
      * [SearchCatalogRequest][google.cloud.datacatalog.v1beta1.DataCatalog.SearchCatalog]
      * call, and that the system should return the next page of data. If empty,
      * the first page is returned.
@@ -2522,8 +2515,8 @@ public Builder clearPageToken() {
      *
      * 
      * Optional. Pagination token returned in an earlier
-     * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token],
-     * which indicates that this is a continuation of a prior
+     * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token], which
+     * indicates that this is a continuation of a prior
      * [SearchCatalogRequest][google.cloud.datacatalog.v1beta1.DataCatalog.SearchCatalog]
      * call, and that the system should return the next page of data. If empty,
      * the first page is returned.
diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SearchCatalogRequestOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SearchCatalogRequestOrBuilder.java
index 531b92ff..5ba8e03e 100644
--- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SearchCatalogRequestOrBuilder.java
+++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SearchCatalogRequestOrBuilder.java
@@ -64,8 +64,7 @@ public interface SearchCatalogRequestOrBuilder
    *
    *
    * 
-   * Required. The query string in search query syntax. The query must be
-   * non-empty.
+   * Required. The query string in search query syntax. The query must be non-empty.
    * Query strings can be simple as "x" or more qualified as:
    * * name:x
    * * column:x
@@ -82,8 +81,7 @@ public interface SearchCatalogRequestOrBuilder
    *
    *
    * 
-   * Required. The query string in search query syntax. The query must be
-   * non-empty.
+   * Required. The query string in search query syntax. The query must be non-empty.
    * Query strings can be simple as "x" or more qualified as:
    * * name:x
    * * column:x
@@ -114,8 +112,8 @@ public interface SearchCatalogRequestOrBuilder
    *
    * 
    * Optional. Pagination token returned in an earlier
-   * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token],
-   * which indicates that this is a continuation of a prior
+   * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token], which
+   * indicates that this is a continuation of a prior
    * [SearchCatalogRequest][google.cloud.datacatalog.v1beta1.DataCatalog.SearchCatalog]
    * call, and that the system should return the next page of data. If empty,
    * the first page is returned.
@@ -129,8 +127,8 @@ public interface SearchCatalogRequestOrBuilder
    *
    * 
    * Optional. Pagination token returned in an earlier
-   * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token],
-   * which indicates that this is a continuation of a prior
+   * [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token], which
+   * indicates that this is a continuation of a prior
    * [SearchCatalogRequest][google.cloud.datacatalog.v1beta1.DataCatalog.SearchCatalog]
    * call, and that the system should return the next page of data. If empty,
    * the first page is returned.
diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SerializedPolicyTag.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SerializedPolicyTag.java
index 48cbad5d..3916000a 100644
--- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SerializedPolicyTag.java
+++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SerializedPolicyTag.java
@@ -139,8 +139,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    *
    *
    * 
-   * Required. Display name of the policy tag. Max 200 bytes when encoded in
-   * UTF-8.
+   * Required. Display name of the policy tag. Max 200 bytes when encoded in UTF-8.
    * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -160,8 +159,7 @@ public java.lang.String getDisplayName() { * * *
-   * Required. Display name of the policy tag. Max 200 bytes when encoded in
-   * UTF-8.
+   * Required. Display name of the policy tag. Max 200 bytes when encoded in UTF-8.
    * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -696,8 +694,7 @@ public Builder mergeFrom( * * *
-     * Required. Display name of the policy tag. Max 200 bytes when encoded in
-     * UTF-8.
+     * Required. Display name of the policy tag. Max 200 bytes when encoded in UTF-8.
      * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -717,8 +714,7 @@ public java.lang.String getDisplayName() { * * *
-     * Required. Display name of the policy tag. Max 200 bytes when encoded in
-     * UTF-8.
+     * Required. Display name of the policy tag. Max 200 bytes when encoded in UTF-8.
      * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -738,8 +734,7 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-     * Required. Display name of the policy tag. Max 200 bytes when encoded in
-     * UTF-8.
+     * Required. Display name of the policy tag. Max 200 bytes when encoded in UTF-8.
      * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -757,8 +752,7 @@ public Builder setDisplayName(java.lang.String value) { * * *
-     * Required. Display name of the policy tag. Max 200 bytes when encoded in
-     * UTF-8.
+     * Required. Display name of the policy tag. Max 200 bytes when encoded in UTF-8.
      * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -773,8 +767,7 @@ public Builder clearDisplayName() { * * *
-     * Required. Display name of the policy tag. Max 200 bytes when encoded in
-     * UTF-8.
+     * Required. Display name of the policy tag. Max 200 bytes when encoded in UTF-8.
      * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SerializedPolicyTagOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SerializedPolicyTagOrBuilder.java index 9d2d0aa0..46713c62 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SerializedPolicyTagOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SerializedPolicyTagOrBuilder.java @@ -27,8 +27,7 @@ public interface SerializedPolicyTagOrBuilder * * *
-   * Required. Display name of the policy tag. Max 200 bytes when encoded in
-   * UTF-8.
+   * Required. Display name of the policy tag. Max 200 bytes when encoded in UTF-8.
    * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -38,8 +37,7 @@ public interface SerializedPolicyTagOrBuilder * * *
-   * Required. Display name of the policy tag. Max 200 bytes when encoded in
-   * UTF-8.
+   * Required. Display name of the policy tag. Max 200 bytes when encoded in UTF-8.
    * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SerializedTaxonomy.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SerializedTaxonomy.java index a12fdbaf..474a387d 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SerializedTaxonomy.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SerializedTaxonomy.java @@ -140,8 +140,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Required. Display name of the taxonomy. Max 200 bytes when encoded in
-   * UTF-8.
+   * Required. Display name of the taxonomy. Max 200 bytes when encoded in UTF-8.
    * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -161,8 +160,7 @@ public java.lang.String getDisplayName() { * * *
-   * Required. Display name of the taxonomy. Max 200 bytes when encoded in
-   * UTF-8.
+   * Required. Display name of the taxonomy. Max 200 bytes when encoded in UTF-8.
    * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -693,8 +691,7 @@ public Builder mergeFrom( * * *
-     * Required. Display name of the taxonomy. Max 200 bytes when encoded in
-     * UTF-8.
+     * Required. Display name of the taxonomy. Max 200 bytes when encoded in UTF-8.
      * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -714,8 +711,7 @@ public java.lang.String getDisplayName() { * * *
-     * Required. Display name of the taxonomy. Max 200 bytes when encoded in
-     * UTF-8.
+     * Required. Display name of the taxonomy. Max 200 bytes when encoded in UTF-8.
      * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -735,8 +731,7 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-     * Required. Display name of the taxonomy. Max 200 bytes when encoded in
-     * UTF-8.
+     * Required. Display name of the taxonomy. Max 200 bytes when encoded in UTF-8.
      * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -754,8 +749,7 @@ public Builder setDisplayName(java.lang.String value) { * * *
-     * Required. Display name of the taxonomy. Max 200 bytes when encoded in
-     * UTF-8.
+     * Required. Display name of the taxonomy. Max 200 bytes when encoded in UTF-8.
      * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -770,8 +764,7 @@ public Builder clearDisplayName() { * * *
-     * Required. Display name of the taxonomy. Max 200 bytes when encoded in
-     * UTF-8.
+     * Required. Display name of the taxonomy. Max 200 bytes when encoded in UTF-8.
      * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SerializedTaxonomyOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SerializedTaxonomyOrBuilder.java index 03be3644..2a30eb06 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SerializedTaxonomyOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/SerializedTaxonomyOrBuilder.java @@ -27,8 +27,7 @@ public interface SerializedTaxonomyOrBuilder * * *
-   * Required. Display name of the taxonomy. Max 200 bytes when encoded in
-   * UTF-8.
+   * Required. Display name of the taxonomy. Max 200 bytes when encoded in UTF-8.
    * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -38,8 +37,7 @@ public interface SerializedTaxonomyOrBuilder * * *
-   * Required. Display name of the taxonomy. Max 200 bytes when encoded in
-   * UTF-8.
+   * Required. Display name of the taxonomy. Max 200 bytes when encoded in UTF-8.
    * 
* * string display_name = 1 [(.google.api.field_behavior) = REQUIRED]; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TableSpec.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TableSpec.java index 0b5d5662..b5722f03 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TableSpec.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TableSpec.java @@ -112,9 +112,9 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Output only. If the table is a dated shard, i.e., with name pattern
-   * `[prefix]YYYYMMDD`, `grouped_entry` is the Data Catalog resource name of
-   * the date sharded grouped entry, for example,
+   * Output only. If the table is a dated shard, i.e., with name pattern `[prefix]YYYYMMDD`,
+   * `grouped_entry` is the Data Catalog resource name of the date sharded
+   * grouped entry, for example,
    * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
    * Otherwise, `grouped_entry` is empty.
    * 
@@ -138,9 +138,9 @@ public java.lang.String getGroupedEntry() { * * *
-   * Output only. If the table is a dated shard, i.e., with name pattern
-   * `[prefix]YYYYMMDD`, `grouped_entry` is the Data Catalog resource name of
-   * the date sharded grouped entry, for example,
+   * Output only. If the table is a dated shard, i.e., with name pattern `[prefix]YYYYMMDD`,
+   * `grouped_entry` is the Data Catalog resource name of the date sharded
+   * grouped entry, for example,
    * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
    * Otherwise, `grouped_entry` is empty.
    * 
@@ -482,9 +482,9 @@ public Builder mergeFrom( * * *
-     * Output only. If the table is a dated shard, i.e., with name pattern
-     * `[prefix]YYYYMMDD`, `grouped_entry` is the Data Catalog resource name of
-     * the date sharded grouped entry, for example,
+     * Output only. If the table is a dated shard, i.e., with name pattern `[prefix]YYYYMMDD`,
+     * `grouped_entry` is the Data Catalog resource name of the date sharded
+     * grouped entry, for example,
      * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
      * Otherwise, `grouped_entry` is empty.
      * 
@@ -508,9 +508,9 @@ public java.lang.String getGroupedEntry() { * * *
-     * Output only. If the table is a dated shard, i.e., with name pattern
-     * `[prefix]YYYYMMDD`, `grouped_entry` is the Data Catalog resource name of
-     * the date sharded grouped entry, for example,
+     * Output only. If the table is a dated shard, i.e., with name pattern `[prefix]YYYYMMDD`,
+     * `grouped_entry` is the Data Catalog resource name of the date sharded
+     * grouped entry, for example,
      * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
      * Otherwise, `grouped_entry` is empty.
      * 
@@ -534,9 +534,9 @@ public com.google.protobuf.ByteString getGroupedEntryBytes() { * * *
-     * Output only. If the table is a dated shard, i.e., with name pattern
-     * `[prefix]YYYYMMDD`, `grouped_entry` is the Data Catalog resource name of
-     * the date sharded grouped entry, for example,
+     * Output only. If the table is a dated shard, i.e., with name pattern `[prefix]YYYYMMDD`,
+     * `grouped_entry` is the Data Catalog resource name of the date sharded
+     * grouped entry, for example,
      * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
      * Otherwise, `grouped_entry` is empty.
      * 
@@ -558,9 +558,9 @@ public Builder setGroupedEntry(java.lang.String value) { * * *
-     * Output only. If the table is a dated shard, i.e., with name pattern
-     * `[prefix]YYYYMMDD`, `grouped_entry` is the Data Catalog resource name of
-     * the date sharded grouped entry, for example,
+     * Output only. If the table is a dated shard, i.e., with name pattern `[prefix]YYYYMMDD`,
+     * `grouped_entry` is the Data Catalog resource name of the date sharded
+     * grouped entry, for example,
      * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
      * Otherwise, `grouped_entry` is empty.
      * 
@@ -579,9 +579,9 @@ public Builder clearGroupedEntry() { * * *
-     * Output only. If the table is a dated shard, i.e., with name pattern
-     * `[prefix]YYYYMMDD`, `grouped_entry` is the Data Catalog resource name of
-     * the date sharded grouped entry, for example,
+     * Output only. If the table is a dated shard, i.e., with name pattern `[prefix]YYYYMMDD`,
+     * `grouped_entry` is the Data Catalog resource name of the date sharded
+     * grouped entry, for example,
      * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
      * Otherwise, `grouped_entry` is empty.
      * 
diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TableSpecOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TableSpecOrBuilder.java index bae71749..acc77707 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TableSpecOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TableSpecOrBuilder.java @@ -27,9 +27,9 @@ public interface TableSpecOrBuilder * * *
-   * Output only. If the table is a dated shard, i.e., with name pattern
-   * `[prefix]YYYYMMDD`, `grouped_entry` is the Data Catalog resource name of
-   * the date sharded grouped entry, for example,
+   * Output only. If the table is a dated shard, i.e., with name pattern `[prefix]YYYYMMDD`,
+   * `grouped_entry` is the Data Catalog resource name of the date sharded
+   * grouped entry, for example,
    * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
    * Otherwise, `grouped_entry` is empty.
    * 
@@ -43,9 +43,9 @@ public interface TableSpecOrBuilder * * *
-   * Output only. If the table is a dated shard, i.e., with name pattern
-   * `[prefix]YYYYMMDD`, `grouped_entry` is the Data Catalog resource name of
-   * the date sharded grouped entry, for example,
+   * Output only. If the table is a dated shard, i.e., with name pattern `[prefix]YYYYMMDD`,
+   * `grouped_entry` is the Data Catalog resource name of the date sharded
+   * grouped entry, for example,
    * `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`.
    * Otherwise, `grouped_entry` is empty.
    * 
diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/Tag.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/Tag.java index 40e2befc..5c4999ea 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/Tag.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/Tag.java @@ -252,8 +252,7 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-   * Required. The resource name of the tag template that this tag uses.
-   * Example:
+   * Required. The resource name of the tag template that this tag uses. Example:
    * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}
    * This field cannot be modified after creation.
    * 
@@ -275,8 +274,7 @@ public java.lang.String getTemplate() { * * *
-   * Required. The resource name of the tag template that this tag uses.
-   * Example:
+   * Required. The resource name of the tag template that this tag uses. Example:
    * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}
    * This field cannot be modified after creation.
    * 
@@ -435,9 +433,9 @@ public int getFieldsCount() { * * *
-   * Required. This maps the ID of a tag field to the value of and additional
-   * information about that field. Valid field IDs are defined by the tag's
-   * template. A tag must have at least 1 field and at most 500 fields.
+   * Required. This maps the ID of a tag field to the value of and additional information
+   * about that field. Valid field IDs are defined by the tag's template. A tag
+   * must have at least 1 field and at most 500 fields.
    * 
* * @@ -460,9 +458,9 @@ public boolean containsFields(java.lang.String key) { * * *
-   * Required. This maps the ID of a tag field to the value of and additional
-   * information about that field. Valid field IDs are defined by the tag's
-   * template. A tag must have at least 1 field and at most 500 fields.
+   * Required. This maps the ID of a tag field to the value of and additional information
+   * about that field. Valid field IDs are defined by the tag's template. A tag
+   * must have at least 1 field and at most 500 fields.
    * 
* * @@ -477,9 +475,9 @@ public boolean containsFields(java.lang.String key) { * * *
-   * Required. This maps the ID of a tag field to the value of and additional
-   * information about that field. Valid field IDs are defined by the tag's
-   * template. A tag must have at least 1 field and at most 500 fields.
+   * Required. This maps the ID of a tag field to the value of and additional information
+   * about that field. Valid field IDs are defined by the tag's template. A tag
+   * must have at least 1 field and at most 500 fields.
    * 
* * @@ -499,9 +497,9 @@ public com.google.cloud.datacatalog.v1beta1.TagField getFieldsOrDefault( * * *
-   * Required. This maps the ID of a tag field to the value of and additional
-   * information about that field. Valid field IDs are defined by the tag's
-   * template. A tag must have at least 1 field and at most 500 fields.
+   * Required. This maps the ID of a tag field to the value of and additional information
+   * about that field. Valid field IDs are defined by the tag's template. A tag
+   * must have at least 1 field and at most 500 fields.
    * 
* * @@ -1086,8 +1084,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Required. The resource name of the tag template that this tag uses.
-     * Example:
+     * Required. The resource name of the tag template that this tag uses. Example:
      * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}
      * This field cannot be modified after creation.
      * 
@@ -1109,8 +1106,7 @@ public java.lang.String getTemplate() { * * *
-     * Required. The resource name of the tag template that this tag uses.
-     * Example:
+     * Required. The resource name of the tag template that this tag uses. Example:
      * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}
      * This field cannot be modified after creation.
      * 
@@ -1132,8 +1128,7 @@ public com.google.protobuf.ByteString getTemplateBytes() { * * *
-     * Required. The resource name of the tag template that this tag uses.
-     * Example:
+     * Required. The resource name of the tag template that this tag uses. Example:
      * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}
      * This field cannot be modified after creation.
      * 
@@ -1153,8 +1148,7 @@ public Builder setTemplate(java.lang.String value) { * * *
-     * Required. The resource name of the tag template that this tag uses.
-     * Example:
+     * Required. The resource name of the tag template that this tag uses. Example:
      * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}
      * This field cannot be modified after creation.
      * 
@@ -1171,8 +1165,7 @@ public Builder clearTemplate() { * * *
-     * Required. The resource name of the tag template that this tag uses.
-     * Example:
+     * Required. The resource name of the tag template that this tag uses. Example:
      * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}
      * This field cannot be modified after creation.
      * 
@@ -1443,9 +1436,9 @@ public int getFieldsCount() { * * *
-     * Required. This maps the ID of a tag field to the value of and additional
-     * information about that field. Valid field IDs are defined by the tag's
-     * template. A tag must have at least 1 field and at most 500 fields.
+     * Required. This maps the ID of a tag field to the value of and additional information
+     * about that field. Valid field IDs are defined by the tag's template. A tag
+     * must have at least 1 field and at most 500 fields.
      * 
* * @@ -1468,9 +1461,9 @@ public boolean containsFields(java.lang.String key) { * * *
-     * Required. This maps the ID of a tag field to the value of and additional
-     * information about that field. Valid field IDs are defined by the tag's
-     * template. A tag must have at least 1 field and at most 500 fields.
+     * Required. This maps the ID of a tag field to the value of and additional information
+     * about that field. Valid field IDs are defined by the tag's template. A tag
+     * must have at least 1 field and at most 500 fields.
      * 
* * @@ -1485,9 +1478,9 @@ public boolean containsFields(java.lang.String key) { * * *
-     * Required. This maps the ID of a tag field to the value of and additional
-     * information about that field. Valid field IDs are defined by the tag's
-     * template. A tag must have at least 1 field and at most 500 fields.
+     * Required. This maps the ID of a tag field to the value of and additional information
+     * about that field. Valid field IDs are defined by the tag's template. A tag
+     * must have at least 1 field and at most 500 fields.
      * 
* * @@ -1507,9 +1500,9 @@ public com.google.cloud.datacatalog.v1beta1.TagField getFieldsOrDefault( * * *
-     * Required. This maps the ID of a tag field to the value of and additional
-     * information about that field. Valid field IDs are defined by the tag's
-     * template. A tag must have at least 1 field and at most 500 fields.
+     * Required. This maps the ID of a tag field to the value of and additional information
+     * about that field. Valid field IDs are defined by the tag's template. A tag
+     * must have at least 1 field and at most 500 fields.
      * 
* * @@ -1536,9 +1529,9 @@ public Builder clearFields() { * * *
-     * Required. This maps the ID of a tag field to the value of and additional
-     * information about that field. Valid field IDs are defined by the tag's
-     * template. A tag must have at least 1 field and at most 500 fields.
+     * Required. This maps the ID of a tag field to the value of and additional information
+     * about that field. Valid field IDs are defined by the tag's template. A tag
+     * must have at least 1 field and at most 500 fields.
      * 
* * @@ -1562,9 +1555,9 @@ public Builder removeFields(java.lang.String key) { * * *
-     * Required. This maps the ID of a tag field to the value of and additional
-     * information about that field. Valid field IDs are defined by the tag's
-     * template. A tag must have at least 1 field and at most 500 fields.
+     * Required. This maps the ID of a tag field to the value of and additional information
+     * about that field. Valid field IDs are defined by the tag's template. A tag
+     * must have at least 1 field and at most 500 fields.
      * 
* * @@ -1586,9 +1579,9 @@ public Builder putFields( * * *
-     * Required. This maps the ID of a tag field to the value of and additional
-     * information about that field. Valid field IDs are defined by the tag's
-     * template. A tag must have at least 1 field and at most 500 fields.
+     * Required. This maps the ID of a tag field to the value of and additional information
+     * about that field. Valid field IDs are defined by the tag's template. A tag
+     * must have at least 1 field and at most 500 fields.
      * 
* * diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TagOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TagOrBuilder.java index 61d26cd1..0510ffe2 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TagOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TagOrBuilder.java @@ -54,8 +54,7 @@ public interface TagOrBuilder * * *
-   * Required. The resource name of the tag template that this tag uses.
-   * Example:
+   * Required. The resource name of the tag template that this tag uses. Example:
    * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}
    * This field cannot be modified after creation.
    * 
@@ -67,8 +66,7 @@ public interface TagOrBuilder * * *
-   * Required. The resource name of the tag template that this tag uses.
-   * Example:
+   * Required. The resource name of the tag template that this tag uses. Example:
    * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}
    * This field cannot be modified after creation.
    * 
@@ -131,9 +129,9 @@ public interface TagOrBuilder * * *
-   * Required. This maps the ID of a tag field to the value of and additional
-   * information about that field. Valid field IDs are defined by the tag's
-   * template. A tag must have at least 1 field and at most 500 fields.
+   * Required. This maps the ID of a tag field to the value of and additional information
+   * about that field. Valid field IDs are defined by the tag's template. A tag
+   * must have at least 1 field and at most 500 fields.
    * 
* * @@ -145,9 +143,9 @@ public interface TagOrBuilder * * *
-   * Required. This maps the ID of a tag field to the value of and additional
-   * information about that field. Valid field IDs are defined by the tag's
-   * template. A tag must have at least 1 field and at most 500 fields.
+   * Required. This maps the ID of a tag field to the value of and additional information
+   * about that field. Valid field IDs are defined by the tag's template. A tag
+   * must have at least 1 field and at most 500 fields.
    * 
* * @@ -162,9 +160,9 @@ public interface TagOrBuilder * * *
-   * Required. This maps the ID of a tag field to the value of and additional
-   * information about that field. Valid field IDs are defined by the tag's
-   * template. A tag must have at least 1 field and at most 500 fields.
+   * Required. This maps the ID of a tag field to the value of and additional information
+   * about that field. Valid field IDs are defined by the tag's template. A tag
+   * must have at least 1 field and at most 500 fields.
    * 
* * @@ -176,9 +174,9 @@ public interface TagOrBuilder * * *
-   * Required. This maps the ID of a tag field to the value of and additional
-   * information about that field. Valid field IDs are defined by the tag's
-   * template. A tag must have at least 1 field and at most 500 fields.
+   * Required. This maps the ID of a tag field to the value of and additional information
+   * about that field. Valid field IDs are defined by the tag's template. A tag
+   * must have at least 1 field and at most 500 fields.
    * 
* * @@ -191,9 +189,9 @@ com.google.cloud.datacatalog.v1beta1.TagField getFieldsOrDefault( * * *
-   * Required. This maps the ID of a tag field to the value of and additional
-   * information about that field. Valid field IDs are defined by the tag's
-   * template. A tag must have at least 1 field and at most 500 fields.
+   * Required. This maps the ID of a tag field to the value of and additional information
+   * about that field. Valid field IDs are defined by the tag's template. A tag
+   * must have at least 1 field and at most 500 fields.
    * 
* * diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TagTemplateField.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TagTemplateField.java index 54876be3..2392cc04 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TagTemplateField.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TagTemplateField.java @@ -136,8 +136,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-   * Output only. The resource name of the tag template field in URL format.
-   * Example:
+   * Output only. The resource name of the tag template field in URL format. Example:
    * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template}/fields/{field}
    * Note that this TagTemplateField may not actually be stored in the location
    * in this name.
@@ -160,8 +159,7 @@ public java.lang.String getName() {
    *
    *
    * 
-   * Output only. The resource name of the tag template field in URL format.
-   * Example:
+   * Output only. The resource name of the tag template field in URL format. Example:
    * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template}/fields/{field}
    * Note that this TagTemplateField may not actually be stored in the location
    * in this name.
@@ -639,8 +637,7 @@ public Builder mergeFrom(
      *
      *
      * 
-     * Output only. The resource name of the tag template field in URL format.
-     * Example:
+     * Output only. The resource name of the tag template field in URL format. Example:
      * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template}/fields/{field}
      * Note that this TagTemplateField may not actually be stored in the location
      * in this name.
@@ -663,8 +660,7 @@ public java.lang.String getName() {
      *
      *
      * 
-     * Output only. The resource name of the tag template field in URL format.
-     * Example:
+     * Output only. The resource name of the tag template field in URL format. Example:
      * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template}/fields/{field}
      * Note that this TagTemplateField may not actually be stored in the location
      * in this name.
@@ -687,8 +683,7 @@ public com.google.protobuf.ByteString getNameBytes() {
      *
      *
      * 
-     * Output only. The resource name of the tag template field in URL format.
-     * Example:
+     * Output only. The resource name of the tag template field in URL format. Example:
      * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template}/fields/{field}
      * Note that this TagTemplateField may not actually be stored in the location
      * in this name.
@@ -709,8 +704,7 @@ public Builder setName(java.lang.String value) {
      *
      *
      * 
-     * Output only. The resource name of the tag template field in URL format.
-     * Example:
+     * Output only. The resource name of the tag template field in URL format. Example:
      * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template}/fields/{field}
      * Note that this TagTemplateField may not actually be stored in the location
      * in this name.
@@ -728,8 +722,7 @@ public Builder clearName() {
      *
      *
      * 
-     * Output only. The resource name of the tag template field in URL format.
-     * Example:
+     * Output only. The resource name of the tag template field in URL format. Example:
      * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template}/fields/{field}
      * Note that this TagTemplateField may not actually be stored in the location
      * in this name.
diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TagTemplateFieldOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TagTemplateFieldOrBuilder.java
index 563efb7f..e4bd59b2 100644
--- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TagTemplateFieldOrBuilder.java
+++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TagTemplateFieldOrBuilder.java
@@ -27,8 +27,7 @@ public interface TagTemplateFieldOrBuilder
    *
    *
    * 
-   * Output only. The resource name of the tag template field in URL format.
-   * Example:
+   * Output only. The resource name of the tag template field in URL format. Example:
    * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template}/fields/{field}
    * Note that this TagTemplateField may not actually be stored in the location
    * in this name.
@@ -41,8 +40,7 @@ public interface TagTemplateFieldOrBuilder
    *
    *
    * 
-   * Output only. The resource name of the tag template field in URL format.
-   * Example:
+   * Output only. The resource name of the tag template field in URL format. Example:
    * * projects/{project_id}/locations/{location}/tagTemplates/{tag_template}/fields/{field}
    * Note that this TagTemplateField may not actually be stored in the location
    * in this name.
diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/Taxonomy.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/Taxonomy.java
index 2c502f4d..88c99ea4 100644
--- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/Taxonomy.java
+++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/Taxonomy.java
@@ -22,9 +22,11 @@
  *
  *
  * 
- * A taxonomy is a collection of policy tags of business significance, typically
- * associated with the substance of the policy tag (e.g. credit card, SSN), or
- * how it is used (e.g. account name, user ID).
+ * A taxonomy is a collection of policy tags that classify data along a common
+ * axis. For instance a data *sensitivity* taxonomy could contain policy tags
+ * denoting PII such as age, zipcode, and SSN. A data *origin* taxonomy could
+ * contain policy tags to distinguish user data, employee data, partner data,
+ * public data.
  * 
* * Protobuf type {@code google.cloud.datacatalog.v1beta1.Taxonomy} @@ -285,7 +287,7 @@ private PolicyType(int value) { * * *
-   * Output only. Resource name of the taxonomy, whose format is:
+   * Output only. Resource name of this taxonomy, whose format is:
    * "projects/{project_number}/locations/{location_id}/taxonomies/{id}".
    * 
* @@ -306,7 +308,7 @@ public java.lang.String getName() { * * *
-   * Output only. Resource name of the taxonomy, whose format is:
+   * Output only. Resource name of this taxonomy, whose format is:
    * "projects/{project_number}/locations/{location_id}/taxonomies/{id}".
    * 
* @@ -330,8 +332,9 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-   * Required. Human readable name of this taxonomy. Max 200 bytes when encoded
-   * in UTF-8.
+   * Required. User defined name of this taxonomy. It must: contain only unicode letters,
+   * numbers, underscores, dashes and spaces; not start or end with spaces; and
+   * be at most 200 bytes long when encoded in UTF-8.
    * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -351,8 +354,9 @@ public java.lang.String getDisplayName() { * * *
-   * Required. Human readable name of this taxonomy. Max 200 bytes when encoded
-   * in UTF-8.
+   * Required. User defined name of this taxonomy. It must: contain only unicode letters,
+   * numbers, underscores, dashes and spaces; not start or end with spaces; and
+   * be at most 200 bytes long when encoded in UTF-8.
    * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -375,9 +379,9 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-   * Optional. Description of the taxonomy. The length of the description is
-   * limited to 2000 bytes when encoded in UTF-8. If not set, defaults to an
-   * empty description.
+   * Optional. Description of this taxonomy. It must: contain only unicode characters,
+   * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+   * long when encoded in UTF-8. If not set, defaults to an empty description.
    * 
* * string description = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -397,9 +401,9 @@ public java.lang.String getDescription() { * * *
-   * Optional. Description of the taxonomy. The length of the description is
-   * limited to 2000 bytes when encoded in UTF-8. If not set, defaults to an
-   * empty description.
+   * Optional. Description of this taxonomy. It must: contain only unicode characters,
+   * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+   * long when encoded in UTF-8. If not set, defaults to an empty description.
    * 
* * string description = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -437,8 +441,8 @@ public com.google.cloud.datacatalog.v1beta1.Taxonomy.PolicyType convert( * * *
-   * Optional. A list of policy types that are activated for the taxonomy. If
-   * not set, defaults to an empty list of activated policy types.
+   * Optional. A list of policy types that are activated for this taxonomy. If not set,
+   * defaults to an empty list.
    * 
* * @@ -455,8 +459,8 @@ public com.google.cloud.datacatalog.v1beta1.Taxonomy.PolicyType convert( * * *
-   * Optional. A list of policy types that are activated for the taxonomy. If
-   * not set, defaults to an empty list of activated policy types.
+   * Optional. A list of policy types that are activated for this taxonomy. If not set,
+   * defaults to an empty list.
    * 
* * @@ -470,8 +474,8 @@ public int getActivatedPolicyTypesCount() { * * *
-   * Optional. A list of policy types that are activated for the taxonomy. If
-   * not set, defaults to an empty list of activated policy types.
+   * Optional. A list of policy types that are activated for this taxonomy. If not set,
+   * defaults to an empty list.
    * 
* * @@ -486,8 +490,8 @@ public com.google.cloud.datacatalog.v1beta1.Taxonomy.PolicyType getActivatedPoli * * *
-   * Optional. A list of policy types that are activated for the taxonomy. If
-   * not set, defaults to an empty list of activated policy types.
+   * Optional. A list of policy types that are activated for this taxonomy. If not set,
+   * defaults to an empty list.
    * 
* * @@ -501,8 +505,8 @@ public java.util.List getActivatedPolicyTypesValueList() { * * *
-   * Optional. A list of policy types that are activated for the taxonomy. If
-   * not set, defaults to an empty list of activated policy types.
+   * Optional. A list of policy types that are activated for this taxonomy. If not set,
+   * defaults to an empty list.
    * 
* * @@ -723,9 +727,11 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build * * *
-   * A taxonomy is a collection of policy tags of business significance, typically
-   * associated with the substance of the policy tag (e.g. credit card, SSN), or
-   * how it is used (e.g. account name, user ID).
+   * A taxonomy is a collection of policy tags that classify data along a common
+   * axis. For instance a data *sensitivity* taxonomy could contain policy tags
+   * denoting PII such as age, zipcode, and SSN. A data *origin* taxonomy could
+   * contain policy tags to distinguish user data, employee data, partner data,
+   * public data.
    * 
* * Protobuf type {@code google.cloud.datacatalog.v1beta1.Taxonomy} @@ -919,7 +925,7 @@ public Builder mergeFrom( * * *
-     * Output only. Resource name of the taxonomy, whose format is:
+     * Output only. Resource name of this taxonomy, whose format is:
      * "projects/{project_number}/locations/{location_id}/taxonomies/{id}".
      * 
* @@ -940,7 +946,7 @@ public java.lang.String getName() { * * *
-     * Output only. Resource name of the taxonomy, whose format is:
+     * Output only. Resource name of this taxonomy, whose format is:
      * "projects/{project_number}/locations/{location_id}/taxonomies/{id}".
      * 
* @@ -961,7 +967,7 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-     * Output only. Resource name of the taxonomy, whose format is:
+     * Output only. Resource name of this taxonomy, whose format is:
      * "projects/{project_number}/locations/{location_id}/taxonomies/{id}".
      * 
* @@ -980,7 +986,7 @@ public Builder setName(java.lang.String value) { * * *
-     * Output only. Resource name of the taxonomy, whose format is:
+     * Output only. Resource name of this taxonomy, whose format is:
      * "projects/{project_number}/locations/{location_id}/taxonomies/{id}".
      * 
* @@ -996,7 +1002,7 @@ public Builder clearName() { * * *
-     * Output only. Resource name of the taxonomy, whose format is:
+     * Output only. Resource name of this taxonomy, whose format is:
      * "projects/{project_number}/locations/{location_id}/taxonomies/{id}".
      * 
* @@ -1018,8 +1024,9 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Required. Human readable name of this taxonomy. Max 200 bytes when encoded
-     * in UTF-8.
+     * Required. User defined name of this taxonomy. It must: contain only unicode letters,
+     * numbers, underscores, dashes and spaces; not start or end with spaces; and
+     * be at most 200 bytes long when encoded in UTF-8.
      * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1039,8 +1046,9 @@ public java.lang.String getDisplayName() { * * *
-     * Required. Human readable name of this taxonomy. Max 200 bytes when encoded
-     * in UTF-8.
+     * Required. User defined name of this taxonomy. It must: contain only unicode letters,
+     * numbers, underscores, dashes and spaces; not start or end with spaces; and
+     * be at most 200 bytes long when encoded in UTF-8.
      * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1060,8 +1068,9 @@ public com.google.protobuf.ByteString getDisplayNameBytes() { * * *
-     * Required. Human readable name of this taxonomy. Max 200 bytes when encoded
-     * in UTF-8.
+     * Required. User defined name of this taxonomy. It must: contain only unicode letters,
+     * numbers, underscores, dashes and spaces; not start or end with spaces; and
+     * be at most 200 bytes long when encoded in UTF-8.
      * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1079,8 +1088,9 @@ public Builder setDisplayName(java.lang.String value) { * * *
-     * Required. Human readable name of this taxonomy. Max 200 bytes when encoded
-     * in UTF-8.
+     * Required. User defined name of this taxonomy. It must: contain only unicode letters,
+     * numbers, underscores, dashes and spaces; not start or end with spaces; and
+     * be at most 200 bytes long when encoded in UTF-8.
      * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1095,8 +1105,9 @@ public Builder clearDisplayName() { * * *
-     * Required. Human readable name of this taxonomy. Max 200 bytes when encoded
-     * in UTF-8.
+     * Required. User defined name of this taxonomy. It must: contain only unicode letters,
+     * numbers, underscores, dashes and spaces; not start or end with spaces; and
+     * be at most 200 bytes long when encoded in UTF-8.
      * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1117,9 +1128,9 @@ public Builder setDisplayNameBytes(com.google.protobuf.ByteString value) { * * *
-     * Optional. Description of the taxonomy. The length of the description is
-     * limited to 2000 bytes when encoded in UTF-8. If not set, defaults to an
-     * empty description.
+     * Optional. Description of this taxonomy. It must: contain only unicode characters,
+     * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+     * long when encoded in UTF-8. If not set, defaults to an empty description.
      * 
* * string description = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -1139,9 +1150,9 @@ public java.lang.String getDescription() { * * *
-     * Optional. Description of the taxonomy. The length of the description is
-     * limited to 2000 bytes when encoded in UTF-8. If not set, defaults to an
-     * empty description.
+     * Optional. Description of this taxonomy. It must: contain only unicode characters,
+     * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+     * long when encoded in UTF-8. If not set, defaults to an empty description.
      * 
* * string description = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -1161,9 +1172,9 @@ public com.google.protobuf.ByteString getDescriptionBytes() { * * *
-     * Optional. Description of the taxonomy. The length of the description is
-     * limited to 2000 bytes when encoded in UTF-8. If not set, defaults to an
-     * empty description.
+     * Optional. Description of this taxonomy. It must: contain only unicode characters,
+     * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+     * long when encoded in UTF-8. If not set, defaults to an empty description.
      * 
* * string description = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -1181,9 +1192,9 @@ public Builder setDescription(java.lang.String value) { * * *
-     * Optional. Description of the taxonomy. The length of the description is
-     * limited to 2000 bytes when encoded in UTF-8. If not set, defaults to an
-     * empty description.
+     * Optional. Description of this taxonomy. It must: contain only unicode characters,
+     * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+     * long when encoded in UTF-8. If not set, defaults to an empty description.
      * 
* * string description = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -1198,9 +1209,9 @@ public Builder clearDescription() { * * *
-     * Optional. Description of the taxonomy. The length of the description is
-     * limited to 2000 bytes when encoded in UTF-8. If not set, defaults to an
-     * empty description.
+     * Optional. Description of this taxonomy. It must: contain only unicode characters,
+     * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+     * long when encoded in UTF-8. If not set, defaults to an empty description.
      * 
* * string description = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -1229,8 +1240,8 @@ private void ensureActivatedPolicyTypesIsMutable() { * * *
-     * Optional. A list of policy types that are activated for the taxonomy. If
-     * not set, defaults to an empty list of activated policy types.
+     * Optional. A list of policy types that are activated for this taxonomy. If not set,
+     * defaults to an empty list.
      * 
* * @@ -1247,8 +1258,8 @@ private void ensureActivatedPolicyTypesIsMutable() { * * *
-     * Optional. A list of policy types that are activated for the taxonomy. If
-     * not set, defaults to an empty list of activated policy types.
+     * Optional. A list of policy types that are activated for this taxonomy. If not set,
+     * defaults to an empty list.
      * 
* * @@ -1262,8 +1273,8 @@ public int getActivatedPolicyTypesCount() { * * *
-     * Optional. A list of policy types that are activated for the taxonomy. If
-     * not set, defaults to an empty list of activated policy types.
+     * Optional. A list of policy types that are activated for this taxonomy. If not set,
+     * defaults to an empty list.
      * 
* * @@ -1278,8 +1289,8 @@ public com.google.cloud.datacatalog.v1beta1.Taxonomy.PolicyType getActivatedPoli * * *
-     * Optional. A list of policy types that are activated for the taxonomy. If
-     * not set, defaults to an empty list of activated policy types.
+     * Optional. A list of policy types that are activated for this taxonomy. If not set,
+     * defaults to an empty list.
      * 
* * @@ -1300,8 +1311,8 @@ public Builder setActivatedPolicyTypes( * * *
-     * Optional. A list of policy types that are activated for the taxonomy. If
-     * not set, defaults to an empty list of activated policy types.
+     * Optional. A list of policy types that are activated for this taxonomy. If not set,
+     * defaults to an empty list.
      * 
* * @@ -1322,8 +1333,8 @@ public Builder addActivatedPolicyTypes( * * *
-     * Optional. A list of policy types that are activated for the taxonomy. If
-     * not set, defaults to an empty list of activated policy types.
+     * Optional. A list of policy types that are activated for this taxonomy. If not set,
+     * defaults to an empty list.
      * 
* * @@ -1344,8 +1355,8 @@ public Builder addAllActivatedPolicyTypes( * * *
-     * Optional. A list of policy types that are activated for the taxonomy. If
-     * not set, defaults to an empty list of activated policy types.
+     * Optional. A list of policy types that are activated for this taxonomy. If not set,
+     * defaults to an empty list.
      * 
* * @@ -1362,8 +1373,8 @@ public Builder clearActivatedPolicyTypes() { * * *
-     * Optional. A list of policy types that are activated for the taxonomy. If
-     * not set, defaults to an empty list of activated policy types.
+     * Optional. A list of policy types that are activated for this taxonomy. If not set,
+     * defaults to an empty list.
      * 
* * @@ -1377,8 +1388,8 @@ public java.util.List getActivatedPolicyTypesValueList() { * * *
-     * Optional. A list of policy types that are activated for the taxonomy. If
-     * not set, defaults to an empty list of activated policy types.
+     * Optional. A list of policy types that are activated for this taxonomy. If not set,
+     * defaults to an empty list.
      * 
* * @@ -1392,8 +1403,8 @@ public int getActivatedPolicyTypesValue(int index) { * * *
-     * Optional. A list of policy types that are activated for the taxonomy. If
-     * not set, defaults to an empty list of activated policy types.
+     * Optional. A list of policy types that are activated for this taxonomy. If not set,
+     * defaults to an empty list.
      * 
* * @@ -1410,8 +1421,8 @@ public Builder setActivatedPolicyTypesValue(int index, int value) { * * *
-     * Optional. A list of policy types that are activated for the taxonomy. If
-     * not set, defaults to an empty list of activated policy types.
+     * Optional. A list of policy types that are activated for this taxonomy. If not set,
+     * defaults to an empty list.
      * 
* * @@ -1428,8 +1439,8 @@ public Builder addActivatedPolicyTypesValue(int value) { * * *
-     * Optional. A list of policy types that are activated for the taxonomy. If
-     * not set, defaults to an empty list of activated policy types.
+     * Optional. A list of policy types that are activated for this taxonomy. If not set,
+     * defaults to an empty list.
      * 
* * diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TaxonomyOrBuilder.java b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TaxonomyOrBuilder.java index 96887527..3ec8f8fd 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TaxonomyOrBuilder.java +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/TaxonomyOrBuilder.java @@ -27,7 +27,7 @@ public interface TaxonomyOrBuilder * * *
-   * Output only. Resource name of the taxonomy, whose format is:
+   * Output only. Resource name of this taxonomy, whose format is:
    * "projects/{project_number}/locations/{location_id}/taxonomies/{id}".
    * 
* @@ -38,7 +38,7 @@ public interface TaxonomyOrBuilder * * *
-   * Output only. Resource name of the taxonomy, whose format is:
+   * Output only. Resource name of this taxonomy, whose format is:
    * "projects/{project_number}/locations/{location_id}/taxonomies/{id}".
    * 
* @@ -50,8 +50,9 @@ public interface TaxonomyOrBuilder * * *
-   * Required. Human readable name of this taxonomy. Max 200 bytes when encoded
-   * in UTF-8.
+   * Required. User defined name of this taxonomy. It must: contain only unicode letters,
+   * numbers, underscores, dashes and spaces; not start or end with spaces; and
+   * be at most 200 bytes long when encoded in UTF-8.
    * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -61,8 +62,9 @@ public interface TaxonomyOrBuilder * * *
-   * Required. Human readable name of this taxonomy. Max 200 bytes when encoded
-   * in UTF-8.
+   * Required. User defined name of this taxonomy. It must: contain only unicode letters,
+   * numbers, underscores, dashes and spaces; not start or end with spaces; and
+   * be at most 200 bytes long when encoded in UTF-8.
    * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -73,9 +75,9 @@ public interface TaxonomyOrBuilder * * *
-   * Optional. Description of the taxonomy. The length of the description is
-   * limited to 2000 bytes when encoded in UTF-8. If not set, defaults to an
-   * empty description.
+   * Optional. Description of this taxonomy. It must: contain only unicode characters,
+   * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+   * long when encoded in UTF-8. If not set, defaults to an empty description.
    * 
* * string description = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -85,9 +87,9 @@ public interface TaxonomyOrBuilder * * *
-   * Optional. Description of the taxonomy. The length of the description is
-   * limited to 2000 bytes when encoded in UTF-8. If not set, defaults to an
-   * empty description.
+   * Optional. Description of this taxonomy. It must: contain only unicode characters,
+   * tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes
+   * long when encoded in UTF-8. If not set, defaults to an empty description.
    * 
* * string description = 3 [(.google.api.field_behavior) = OPTIONAL]; @@ -98,8 +100,8 @@ public interface TaxonomyOrBuilder * * *
-   * Optional. A list of policy types that are activated for the taxonomy. If
-   * not set, defaults to an empty list of activated policy types.
+   * Optional. A list of policy types that are activated for this taxonomy. If not set,
+   * defaults to an empty list.
    * 
* * @@ -112,8 +114,8 @@ public interface TaxonomyOrBuilder * * *
-   * Optional. A list of policy types that are activated for the taxonomy. If
-   * not set, defaults to an empty list of activated policy types.
+   * Optional. A list of policy types that are activated for this taxonomy. If not set,
+   * defaults to an empty list.
    * 
* * @@ -125,8 +127,8 @@ public interface TaxonomyOrBuilder * * *
-   * Optional. A list of policy types that are activated for the taxonomy. If
-   * not set, defaults to an empty list of activated policy types.
+   * Optional. A list of policy types that are activated for this taxonomy. If not set,
+   * defaults to an empty list.
    * 
* * @@ -138,8 +140,8 @@ public interface TaxonomyOrBuilder * * *
-   * Optional. A list of policy types that are activated for the taxonomy. If
-   * not set, defaults to an empty list of activated policy types.
+   * Optional. A list of policy types that are activated for this taxonomy. If not set,
+   * defaults to an empty list.
    * 
* * @@ -151,8 +153,8 @@ public interface TaxonomyOrBuilder * * *
-   * Optional. A list of policy types that are activated for the taxonomy. If
-   * not set, defaults to an empty list of activated policy types.
+   * Optional. A list of policy types that are activated for this taxonomy. If not set,
+   * defaults to an empty list.
    * 
* * diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/datacatalog.proto b/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/datacatalog.proto index c95b81fc..b725b20f 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/datacatalog.proto +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/datacatalog.proto @@ -41,8 +41,7 @@ option java_package = "com.google.cloud.datacatalog.v1beta1"; // their data. service DataCatalog { option (google.api.default_host) = "datacatalog.googleapis.com"; - option (google.api.oauth_scopes) = - "https://www.googleapis.com/auth/cloud-platform"; + option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform"; // Searches Data Catalog for multiple resources like entries, tags that // match a query. @@ -95,8 +94,7 @@ service DataCatalog { // deleted. The user should enable the Data Catalog API in the project // identified by the `name` parameter (see [Data Catalog Resource Project] // (/data-catalog/docs/concepts/resource-project) for more information). - rpc DeleteEntryGroup(DeleteEntryGroupRequest) - returns (google.protobuf.Empty) { + rpc DeleteEntryGroup(DeleteEntryGroupRequest) returns (google.protobuf.Empty) { option (google.api.http) = { delete: "/v1beta1/{name=projects/*/locations/*/entryGroups/*}" }; @@ -169,8 +167,7 @@ service DataCatalog { post: "/v1beta1/{parent=projects/*/locations/*}/tagTemplates" body: "tag_template" }; - option (google.api.method_signature) = - "parent,tag_template_id,tag_template"; + option (google.api.method_signature) = "parent,tag_template_id,tag_template"; } // Gets a tag template. @@ -200,8 +197,7 @@ service DataCatalog { // The user should enable the Data Catalog API in the project identified by // the `name` parameter (see [Data Catalog Resource Project] // (/data-catalog/docs/concepts/resource-project) for more information). - rpc DeleteTagTemplate(DeleteTagTemplateRequest) - returns (google.protobuf.Empty) { + rpc DeleteTagTemplate(DeleteTagTemplateRequest) returns (google.protobuf.Empty) { option (google.api.http) = { delete: "/v1beta1/{name=projects/*/locations/*/tagTemplates/*}" }; @@ -213,37 +209,32 @@ service DataCatalog { // [Data Catalog Resource // Project](/data-catalog/docs/concepts/resource-project) for more // information). - rpc CreateTagTemplateField(CreateTagTemplateFieldRequest) - returns (TagTemplateField) { + rpc CreateTagTemplateField(CreateTagTemplateFieldRequest) returns (TagTemplateField) { option (google.api.http) = { post: "/v1beta1/{parent=projects/*/locations/*/tagTemplates/*}/fields" body: "tag_template_field" }; - option (google.api.method_signature) = - "parent,tag_template_field_id,tag_template_field"; + option (google.api.method_signature) = "parent,tag_template_field_id,tag_template_field"; } // Updates a field in a tag template. This method cannot be used to update the // field type. The user should enable the Data Catalog API in the project // identified by the `name` parameter (see [Data Catalog Resource Project] // (/data-catalog/docs/concepts/resource-project) for more information). - rpc UpdateTagTemplateField(UpdateTagTemplateFieldRequest) - returns (TagTemplateField) { + rpc UpdateTagTemplateField(UpdateTagTemplateFieldRequest) returns (TagTemplateField) { option (google.api.http) = { patch: "/v1beta1/{name=projects/*/locations/*/tagTemplates/*/fields/*}" body: "tag_template_field" }; option (google.api.method_signature) = "name,tag_template_field"; - option (google.api.method_signature) = - "name,tag_template_field,update_mask"; + option (google.api.method_signature) = "name,tag_template_field,update_mask"; } // Renames a field in a tag template. The user should enable the Data Catalog // API in the project identified by the `name` parameter (see [Data Catalog // Resource Project](/data-catalog/docs/concepts/resource-project) for more // information). - rpc RenameTagTemplateField(RenameTagTemplateFieldRequest) - returns (TagTemplateField) { + rpc RenameTagTemplateField(RenameTagTemplateFieldRequest) returns (TagTemplateField) { option (google.api.http) = { post: "/v1beta1/{name=projects/*/locations/*/tagTemplates/*/fields/*}:rename" body: "*" @@ -255,8 +246,7 @@ service DataCatalog { // The user should enable the Data Catalog API in the project identified by // the `name` parameter (see [Data Catalog Resource Project] // (/data-catalog/docs/concepts/resource-project) for more information). - rpc DeleteTagTemplateField(DeleteTagTemplateFieldRequest) - returns (google.protobuf.Empty) { + rpc DeleteTagTemplateField(DeleteTagTemplateFieldRequest) returns (google.protobuf.Empty) { option (google.api.http) = { delete: "/v1beta1/{name=projects/*/locations/*/tagTemplates/*/fields/*}" }; @@ -319,8 +309,7 @@ service DataCatalog { // templates. // - `datacatalog.entries.setIamPolicy` to set policies on entries. // - `datacatalog.entryGroups.setIamPolicy` to set policies on entry groups. - rpc SetIamPolicy(google.iam.v1.SetIamPolicyRequest) - returns (google.iam.v1.Policy) { + rpc SetIamPolicy(google.iam.v1.SetIamPolicyRequest) returns (google.iam.v1.Policy) { option (google.api.http) = { post: "/v1beta1/{resource=projects/*/locations/*/tagTemplates/*}:setIamPolicy" body: "*" @@ -352,8 +341,7 @@ service DataCatalog { // templates. // - `datacatalog.entries.getIamPolicy` to get policies on entries. // - `datacatalog.entryGroups.getIamPolicy` to get policies on entry groups. - rpc GetIamPolicy(google.iam.v1.GetIamPolicyRequest) - returns (google.iam.v1.Policy) { + rpc GetIamPolicy(google.iam.v1.GetIamPolicyRequest) returns (google.iam.v1.Policy) { option (google.api.http) = { post: "/v1beta1/{resource=projects/*/locations/*/tagTemplates/*}:getIamPolicy" body: "*" @@ -382,8 +370,7 @@ service DataCatalog { // // A caller is not required to have Google IAM permission to make this // request. - rpc TestIamPermissions(google.iam.v1.TestIamPermissionsRequest) - returns (google.iam.v1.TestIamPermissionsResponse) { + rpc TestIamPermissions(google.iam.v1.TestIamPermissionsRequest) returns (google.iam.v1.TestIamPermissionsResponse) { option (google.api.http) = { post: "/v1beta1/{resource=projects/*/locations/*/tagTemplates/*}:testIamPermissions" body: "*" @@ -429,8 +416,7 @@ message SearchCatalogRequest { // Required. The scope of this search request. Scope scope = 6 [(google.api.field_behavior) = REQUIRED]; - // Required. The query string in search query syntax. The query must be - // non-empty. + // Required. The query string in search query syntax. The query must be non-empty. // // Query strings can be simple as "x" or more qualified as: // @@ -448,8 +434,8 @@ message SearchCatalogRequest { int32 page_size = 2; // Optional. Pagination token returned in an earlier - // [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token], - // which indicates that this is a continuation of a prior + // [SearchCatalogResponse.next_page_token][google.cloud.datacatalog.v1beta1.SearchCatalogResponse.next_page_token], which + // indicates that this is a continuation of a prior // [SearchCatalogRequest][google.cloud.datacatalog.v1beta1.DataCatalog.SearchCatalog] // call, and that the system should return the next page of data. If empty, // the first page is returned. @@ -664,8 +650,8 @@ message Entry { // Note that this Entry and its child resources may not actually be stored in // the location in this name. string name = 1 [(google.api.resource_reference) = { - type: "datacatalog.googleapis.com/EntryGroup" - }]; + type: "datacatalog.googleapis.com/EntryGroup" + }]; // Output only. The resource this metadata entry refers to. // @@ -713,8 +699,7 @@ message Entry { // Output only. Timestamps about the underlying Google Cloud Platform // resource, not about this Data Catalog Entry. - SystemTimestamps source_system_timestamps = 7 - [(google.api.field_behavior) = OUTPUT_ONLY]; + SystemTimestamps source_system_timestamps = 7 [(google.api.field_behavior) = OUTPUT_ONLY]; } // EntryGroup Metadata. @@ -743,10 +728,8 @@ message EntryGroup { // string. string description = 3; - // Output only. Timestamps about this EntryGroup. Default value is empty - // timestamps. - SystemTimestamps data_catalog_timestamps = 4 - [(google.api.field_behavior) = OUTPUT_ONLY]; + // Output only. Timestamps about this EntryGroup. Default value is empty timestamps. + SystemTimestamps data_catalog_timestamps = 4 [(google.api.field_behavior) = OUTPUT_ONLY]; } // Request message for @@ -845,8 +828,8 @@ message DeleteTagTemplateRequest { // Request message for // [CreateTag][google.cloud.datacatalog.v1beta1.DataCatalog.CreateTag]. message CreateTagRequest { - // Required. The name of the resource to attach this tag to. Tags can be - // attached to Entries. Example: + // Required. The name of the resource to attach this tag to. Tags can be attached to + // Entries. Example: // // * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id} // @@ -854,7 +837,9 @@ message CreateTagRequest { // the location in this name. string parent = 1 [ (google.api.field_behavior) = REQUIRED, - (google.api.resource_reference) = { type: "datacatalog.googleapis.com/Tag" } + (google.api.resource_reference) = { + type: "datacatalog.googleapis.com/Tag" + } ]; // Required. The tag to create. @@ -910,8 +895,7 @@ message CreateTagTemplateFieldRequest { string tag_template_field_id = 2 [(google.api.field_behavior) = REQUIRED]; // Required. The tag template field to create. - TagTemplateField tag_template_field = 3 - [(google.api.field_behavior) = REQUIRED]; + TagTemplateField tag_template_field = 3 [(google.api.field_behavior) = REQUIRED]; } // Request message for @@ -928,8 +912,7 @@ message UpdateTagTemplateFieldRequest { ]; // Required. The template to update. - TagTemplateField tag_template_field = 2 - [(google.api.field_behavior) = REQUIRED]; + TagTemplateField tag_template_field = 2 [(google.api.field_behavior) = REQUIRED]; // The field mask specifies the parts of the template to be updated. // Allowed fields: @@ -959,8 +942,7 @@ message RenameTagTemplateFieldRequest { } ]; - // Required. The new ID of this tag template field. For example, - // `my_new_field`. + // Required. The new ID of this tag template field. For example, `my_new_field`. string new_tag_template_field_id = 2 [(google.api.field_behavior) = REQUIRED]; } diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/gcs_fileset_spec.proto b/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/gcs_fileset_spec.proto index 4a8d4ba0..5fb5164d 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/gcs_fileset_spec.proto +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/gcs_fileset_spec.proto @@ -27,11 +27,16 @@ option java_package = "com.google.cloud.datacatalog.v1beta1"; // Describes a Cloud Storage fileset entry. message GcsFilesetSpec { - // Required. Patterns to identify a set of files in Google Cloud Storage. + // Required. Patterns to identify a set of files in Google Cloud Storage. See [Cloud + // Storage documentation](storage/docs/gsutil/addlhelp/WildcardNames) for + // more information. Note that bucket wildcards are currently not supported. // // Examples of valid file_patterns: // - // * `gs://bucket_name/*`: matches all files in `bucket_name` + // * `gs://bucket_name/dir/*`: matches all files within `bucket_name/dir` + // directory. + // * `gs://bucket_name/dir/**`: matches all files in `bucket_name/dir` + // spanning all subdirectories. // * `gs://bucket_name/file*`: matches files prefixed by `file` in // `bucket_name` // * `gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match @@ -39,10 +44,9 @@ message GcsFilesetSpec { // * `gs://another_bucket/a.txt`: matches `gs://another_bucket/a.txt` repeated string file_patterns = 1 [(google.api.field_behavior) = REQUIRED]; - // Output only. Sample files contained in this fileset, not all files - // contained in this fileset are represented here. - repeated GcsFileSpec sample_gcs_file_specs = 2 - [(google.api.field_behavior) = OUTPUT_ONLY]; + // Output only. Sample files contained in this fileset, not all files contained in this + // fileset are represented here. + repeated GcsFileSpec sample_gcs_file_specs = 2 [(google.api.field_behavior) = OUTPUT_ONLY]; } // Specifications of a single file in Cloud Storage. @@ -51,8 +55,7 @@ message GcsFileSpec { string file_path = 1 [(google.api.field_behavior) = REQUIRED]; // Output only. Timestamps about the Cloud Storage file. - SystemTimestamps gcs_timestamps = 2 - [(google.api.field_behavior) = OUTPUT_ONLY]; + SystemTimestamps gcs_timestamps = 2 [(google.api.field_behavior) = OUTPUT_ONLY]; // Output only. The size of the file, in bytes. int64 size_bytes = 4 [(google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/policytagmanager.proto b/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/policytagmanager.proto index 9caaef0a..f40fd6e2 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/policytagmanager.proto +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/policytagmanager.proto @@ -33,14 +33,13 @@ option java_multiple_files = true; option java_outer_classname = "PolicyTagManagerProto"; option java_package = "com.google.cloud.datacatalog.v1beta1"; -// Policy tag manager API service allows clients to manage their taxonomies and -// policy tags data. +// The policy tag manager API service allows clients to manage their taxonomies +// and policy tags. service PolicyTagManager { option (google.api.default_host) = "datacatalog.googleapis.com"; - option (google.api.oauth_scopes) = - "https://www.googleapis.com/auth/cloud-platform"; + option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform"; - // Creates a new taxonomy in a given project. + // Creates a taxonomy in the specified project. rpc CreateTaxonomy(CreateTaxonomyRequest) returns (Taxonomy) { option (google.api.http) = { post: "/v1beta1/{parent=projects/*/locations/*}/taxonomies" @@ -50,7 +49,7 @@ service PolicyTagManager { } // Deletes a taxonomy. This operation will also delete all - // policy tags in this taxonomy. + // policy tags in this taxonomy along with their associated policies. rpc DeleteTaxonomy(DeleteTaxonomyRequest) returns (google.protobuf.Empty) { option (google.api.http) = { delete: "/v1beta1/{name=projects/*/locations/*/taxonomies/*}" @@ -67,7 +66,8 @@ service PolicyTagManager { option (google.api.method_signature) = "taxonomy"; } - // Lists all taxonomies in a project in a particular location. + // Lists all taxonomies in a project in a particular location that the caller + // has permission to view. rpc ListTaxonomies(ListTaxonomiesRequest) returns (ListTaxonomiesResponse) { option (google.api.http) = { get: "/v1beta1/{parent=projects/*/locations/*}/taxonomies" @@ -83,7 +83,7 @@ service PolicyTagManager { option (google.api.method_signature) = "name"; } - // Creates a policy tag in a taxonomy. + // Creates a policy tag in the specified taxonomy. rpc CreatePolicyTag(CreatePolicyTagRequest) returns (PolicyTag) { option (google.api.http) = { post: "/v1beta1/{parent=projects/*/locations/*/taxonomies/*}/policyTags" @@ -126,8 +126,7 @@ service PolicyTagManager { } // Gets the IAM policy for a taxonomy or a policy tag. - rpc GetIamPolicy(google.iam.v1.GetIamPolicyRequest) - returns (google.iam.v1.Policy) { + rpc GetIamPolicy(google.iam.v1.GetIamPolicyRequest) returns (google.iam.v1.Policy) { option (google.api.http) = { post: "/v1beta1/{resource=projects/*/locations/*/taxonomies/*}:getIamPolicy" body: "*" @@ -139,8 +138,7 @@ service PolicyTagManager { } // Sets the IAM policy for a taxonomy or a policy tag. - rpc SetIamPolicy(google.iam.v1.SetIamPolicyRequest) - returns (google.iam.v1.Policy) { + rpc SetIamPolicy(google.iam.v1.SetIamPolicyRequest) returns (google.iam.v1.Policy) { option (google.api.http) = { post: "/v1beta1/{resource=projects/*/locations/*/taxonomies/*}:setIamPolicy" body: "*" @@ -151,9 +149,9 @@ service PolicyTagManager { }; } - // Returns permissions that a caller has on specified resources. - rpc TestIamPermissions(google.iam.v1.TestIamPermissionsRequest) - returns (google.iam.v1.TestIamPermissionsResponse) { + // Returns the permissions that a caller has on the specified taxonomy or + // policy tag. + rpc TestIamPermissions(google.iam.v1.TestIamPermissionsRequest) returns (google.iam.v1.TestIamPermissionsResponse) { option (google.api.http) = { post: "/v1beta1/{resource=projects/*/locations/*/taxonomies/*}:testIamPermissions" body: "*" @@ -165,9 +163,11 @@ service PolicyTagManager { } } -// A taxonomy is a collection of policy tags of business significance, typically -// associated with the substance of the policy tag (e.g. credit card, SSN), or -// how it is used (e.g. account name, user ID). +// A taxonomy is a collection of policy tags that classify data along a common +// axis. For instance a data *sensitivity* taxonomy could contain policy tags +// denoting PII such as age, zipcode, and SSN. A data *origin* taxonomy could +// contain policy tags to distinguish user data, employee data, partner data, +// public data. message Taxonomy { option (google.api.resource) = { type: "datacatalog.googleapis.com/Taxonomy" @@ -184,23 +184,23 @@ message Taxonomy { FINE_GRAINED_ACCESS_CONTROL = 1; } - // Output only. Resource name of the taxonomy, whose format is: + // Output only. Resource name of this taxonomy, whose format is: // "projects/{project_number}/locations/{location_id}/taxonomies/{id}". string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY]; - // Required. Human readable name of this taxonomy. Max 200 bytes when encoded - // in UTF-8. + // Required. User defined name of this taxonomy. It must: contain only unicode letters, + // numbers, underscores, dashes and spaces; not start or end with spaces; and + // be at most 200 bytes long when encoded in UTF-8. string display_name = 2 [(google.api.field_behavior) = REQUIRED]; - // Optional. Description of the taxonomy. The length of the description is - // limited to 2000 bytes when encoded in UTF-8. If not set, defaults to an - // empty description. + // Optional. Description of this taxonomy. It must: contain only unicode characters, + // tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes + // long when encoded in UTF-8. If not set, defaults to an empty description. string description = 3 [(google.api.field_behavior) = OPTIONAL]; - // Optional. A list of policy types that are activated for the taxonomy. If - // not set, defaults to an empty list of activated policy types. - repeated PolicyType activated_policy_types = 6 - [(google.api.field_behavior) = OPTIONAL]; + // Optional. A list of policy types that are activated for this taxonomy. If not set, + // defaults to an empty list. + repeated PolicyType activated_policy_types = 6 [(google.api.field_behavior) = OPTIONAL]; } // Denotes one policy tag in a taxonomy (e.g. ssn). Policy Tags can be defined @@ -218,36 +218,38 @@ message PolicyTag { pattern: "projects/{project}/locations/{location}/taxonomies/{taxonomy}/policyTags/{policy_tag}" }; - // Output only. Resource name of the policy tag, whose format is: + // Output only. Resource name of this policy tag, whose format is: // "projects/{project_number}/locations/{location_id}/taxonomies/{taxonomy_id}/policyTags/{id}". string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY]; - // Required. Human readable name of this policy tag. Max 200 bytes when + // Required. User defined name of this policy tag. It must: be unique within the parent + // taxonomy; contain only unicode letters, numbers, underscores, dashes and + // spaces; not start or end with spaces; and be at most 200 bytes long when // encoded in UTF-8. string display_name = 2 [(google.api.field_behavior) = REQUIRED]; - // Description of the policy tag. The length of the description is limited to - // 2000 bytes when encoded in UTF-8. If not set, defaults to an empty - // description. + // Description of this policy tag. It must: contain only unicode characters, + // tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes + // long when encoded in UTF-8. If not set, defaults to an empty description. + // If not set, defaults to an empty description. string description = 3; - // Resource name of the parent policy tag to this policy tag (e.g. for policy - // tag "LatLong" in the example above, this field contains the resource name - // of policy tag "Geolocation"). If empty, it means this policy tag is a top - // level policy tag (e.g. this field is empty for policy tag "Geolocation" in - // the example above). If not set, defaults to an empty string. + // Resource name of this policy tag's parent policy tag (e.g. for the + // "LatLong" policy tag in the example above, this field contains the + // resource name of the "Geolocation" policy tag). If empty, it means this + // policy tag is a top level policy tag (e.g. this field is empty for the + // "Geolocation" policy tag in the example above). If not set, defaults to an + // empty string. string parent_policy_tag = 4; // Output only. Resource names of child policy tags of this policy tag. - repeated string child_policy_tags = 5 - [(google.api.field_behavior) = OUTPUT_ONLY]; + repeated string child_policy_tags = 5 [(google.api.field_behavior) = OUTPUT_ONLY]; } // Request message for // [CreateTaxonomy][google.cloud.datacatalog.v1beta1.PolicyTagManager.CreateTaxonomy]. message CreateTaxonomyRequest { - // Required. Resource name of the project that the newly created taxonomy - // belongs to. + // Required. Resource name of the project that the taxonomy will belong to. string parent = 1 [ (google.api.field_behavior) = REQUIRED, (google.api.resource_reference) = { @@ -255,8 +257,7 @@ message CreateTaxonomyRequest { } ]; - // The taxonomy to be created. The name field must be left blank. The - // display_name field is mandatory. + // The taxonomy to be created. Taxonomy taxonomy = 2; } @@ -290,7 +291,7 @@ message UpdateTaxonomyRequest { // Request message for // [ListTaxonomies][google.cloud.datacatalog.v1beta1.PolicyTagManager.ListTaxonomies]. message ListTaxonomiesRequest { - // Required. Resource name of a project to list the taxonomies of. + // Required. Resource name of the project to list the taxonomies of. string parent = 1 [ (google.api.field_behavior) = REQUIRED, (google.api.resource_reference) = { @@ -298,7 +299,8 @@ message ListTaxonomiesRequest { } ]; - // The maximum number of items to return. If not set, defaults to 50. + // The maximum number of items to return. Must be a value between 1 and 1000. + // If not set, defaults to 50. int32 page_size = 2; // The next_page_token value returned from a previous list request, if any. If @@ -312,7 +314,7 @@ message ListTaxonomiesResponse { // Taxonomies that the project contains. repeated Taxonomy taxonomies = 1; - // Token to retrieve the next page of results, or empty if there are no + // Token used to retrieve the next page of results, or empty if there are no // more results in the list. string next_page_token = 2; } @@ -320,7 +322,7 @@ message ListTaxonomiesResponse { // Request message for // [GetTaxonomy][google.cloud.datacatalog.v1beta1.PolicyTagManager.GetTaxonomy]. message GetTaxonomyRequest { - // Required. Resource name of the taxonomy to be returned. + // Required. Resource name of the requested taxonomy. string name = 1 [ (google.api.field_behavior) = REQUIRED, (google.api.resource_reference) = { @@ -332,8 +334,7 @@ message GetTaxonomyRequest { // Request message for // [CreatePolicyTag][google.cloud.datacatalog.v1beta1.PolicyTagManager.CreatePolicyTag]. message CreatePolicyTagRequest { - // Required. Resource name of the taxonomy that the newly created policy tag - // belongs to. + // Required. Resource name of the taxonomy that the policy tag will belong to. string parent = 1 [ (google.api.field_behavior) = REQUIRED, (google.api.resource_reference) = { @@ -341,16 +342,14 @@ message CreatePolicyTagRequest { } ]; - // The policy tag to be created. The name, and taxonomy_display_name field - // must be left blank. The display_name field is mandatory and must not be - // duplicated with existing policy tags in the same taxonomy. + // The policy tag to be created. PolicyTag policy_tag = 2; } // Request message for // [DeletePolicyTag][google.cloud.datacatalog.v1beta1.PolicyTagManager.DeletePolicyTag]. message DeletePolicyTagRequest { - // Required. Resource name of the policy tag to be deleted. All its descendant + // Required. Resource name of the policy tag to be deleted. All of its descendant // policy tags will also be deleted. string name = 1 [ (google.api.field_behavior) = REQUIRED, @@ -380,7 +379,7 @@ message UpdatePolicyTagRequest { // Request message for // [ListPolicyTags][google.cloud.datacatalog.v1beta1.PolicyTagManager.ListPolicyTags]. message ListPolicyTagsRequest { - // Required. Resource name of a taxonomy to list the policy tags of. + // Required. Resource name of the taxonomy to list the policy tags of. string parent = 1 [ (google.api.field_behavior) = REQUIRED, (google.api.resource_reference) = { @@ -388,7 +387,8 @@ message ListPolicyTagsRequest { } ]; - // The maximum number of items to return. If not set, defaults to 50. + // The maximum number of items to return. Must be a value between 1 and 1000. + // If not set, defaults to 50. int32 page_size = 2; // The next_page_token value returned from a previous List request, if any. If @@ -399,10 +399,10 @@ message ListPolicyTagsRequest { // Response message for // [ListPolicyTags][google.cloud.datacatalog.v1beta1.PolicyTagManager.ListPolicyTags]. message ListPolicyTagsResponse { - // Policy Tags that are in this taxonomy. + // The policy tags that are in the requested taxonomy. repeated PolicyTag policy_tags = 1; - // Token to retrieve the next page of results, or empty if there are no + // Token used to retrieve the next page of results, or empty if there are no // more results in the list. string next_page_token = 2; } @@ -410,7 +410,7 @@ message ListPolicyTagsResponse { // Request message for // [GetPolicyTag][google.cloud.datacatalog.v1beta1.PolicyTagManager.GetPolicyTag]. message GetPolicyTagRequest { - // Required. Resource name of the policy tag to be returned. + // Required. Resource name of the requested policy tag. string name = 1 [ (google.api.field_behavior) = REQUIRED, (google.api.resource_reference) = { diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/policytagmanagerserialization.proto b/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/policytagmanagerserialization.proto index 720a019a..36e59fcf 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/policytagmanagerserialization.proto +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/policytagmanagerserialization.proto @@ -18,11 +18,11 @@ syntax = "proto3"; package google.cloud.datacatalog.v1beta1; import "google/api/annotations.proto"; -import "google/api/client.proto"; import "google/api/field_behavior.proto"; import "google/api/resource.proto"; import "google/cloud/datacatalog/v1beta1/policytagmanager.proto"; import "google/iam/v1/policy.proto"; +import "google/api/client.proto"; option cc_enable_arenas = true; option go_package = "google.golang.org/genproto/googleapis/cloud/datacatalog/v1beta1;datacatalog"; @@ -34,16 +34,14 @@ option java_package = "com.google.cloud.datacatalog.v1beta1"; // their taxonomies and policy tags data with serialized format. service PolicyTagManagerSerialization { option (google.api.default_host) = "datacatalog.googleapis.com"; - option (google.api.oauth_scopes) = - "https://www.googleapis.com/auth/cloud-platform"; + option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform"; // Imports all taxonomies and their policy tags to a project as new // taxonomies. // // This method provides a bulk taxonomy / policy tag creation using nested // proto structure. - rpc ImportTaxonomies(ImportTaxonomiesRequest) - returns (ImportTaxonomiesResponse) { + rpc ImportTaxonomies(ImportTaxonomiesRequest) returns (ImportTaxonomiesResponse) { option (google.api.http) = { post: "/v1beta1/{parent=projects/*/locations/*}/taxonomies:import" body: "*" @@ -54,8 +52,7 @@ service PolicyTagManagerSerialization { // // This method generates SerializedTaxonomy protos with nested policy tags // that can be used as an input for future ImportTaxonomies calls. - rpc ExportTaxonomies(ExportTaxonomiesRequest) - returns (ExportTaxonomiesResponse) { + rpc ExportTaxonomies(ExportTaxonomiesRequest) returns (ExportTaxonomiesResponse) { option (google.api.http) = { get: "/v1beta1/{parent=projects/*/locations/*}/taxonomies:export" }; @@ -65,8 +62,7 @@ service PolicyTagManagerSerialization { // Message capturing a taxonomy and its policy tag hierarchy as a nested proto. // Used for taxonomy import/export and mutation. message SerializedTaxonomy { - // Required. Display name of the taxonomy. Max 200 bytes when encoded in - // UTF-8. + // Required. Display name of the taxonomy. Max 200 bytes when encoded in UTF-8. string display_name = 1 [(google.api.field_behavior) = REQUIRED]; // Description of the serialized taxonomy. The length of the @@ -80,8 +76,7 @@ message SerializedTaxonomy { // Message representing one policy tag when exported as a nested proto. message SerializedPolicyTag { - // Required. Display name of the policy tag. Max 200 bytes when encoded in - // UTF-8. + // Required. Display name of the policy tag. Max 200 bytes when encoded in UTF-8. string display_name = 2 [(google.api.field_behavior) = REQUIRED]; // Description of the serialized policy tag. The length of the @@ -115,8 +110,7 @@ message ImportTaxonomiesRequest { // Inline source used for taxonomies import. message InlineSource { // Required. Taxonomies to be imported. - repeated SerializedTaxonomy taxonomies = 1 - [(google.api.field_behavior) = REQUIRED]; + repeated SerializedTaxonomy taxonomies = 1 [(google.api.field_behavior) = REQUIRED]; } // Response message for diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/schema.proto b/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/schema.proto index 35b7fea3..91e4da9b 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/schema.proto +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/schema.proto @@ -26,8 +26,8 @@ option java_package = "com.google.cloud.datacatalog.v1beta1"; // Represents a schema (e.g. BigQuery, GoogleSQL, Avro schema). message Schema { - // Required. Schema of columns. A maximum of 10,000 columns and sub-columns - // can be specified. + // Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be + // specified. repeated ColumnSchema columns = 2 [(google.api.field_behavior) = REQUIRED]; } @@ -43,12 +43,11 @@ message ColumnSchema { // Optional. Description of the column. Default value is an empty string. string description = 2 [(google.api.field_behavior) = OPTIONAL]; - // Optional. A column's mode indicates whether the values in this column are - // required, nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are - // supported. Default mode is `NULLABLE`. + // Optional. A column's mode indicates whether the values in this column are required, + // nullable, etc. Only `NULLABLE`, `REQUIRED` and `REPEATED` are supported. + // Default mode is `NULLABLE`. string mode = 3 [(google.api.field_behavior) = OPTIONAL]; - // Optional. Schema of sub-columns. A column can have zero or more - // sub-columns. + // Optional. Schema of sub-columns. A column can have zero or more sub-columns. repeated ColumnSchema subcolumns = 7 [(google.api.field_behavior) = OPTIONAL]; } diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/table_spec.proto b/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/table_spec.proto index c701b039..b0bf6cc4 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/table_spec.proto +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/table_spec.proto @@ -28,8 +28,7 @@ option java_package = "com.google.cloud.datacatalog.v1beta1"; // Describes a BigQuery table. message BigQueryTableSpec { // Output only. The table source type. - TableSourceType table_source_type = 1 - [(google.api.field_behavior) = OUTPUT_ONLY]; + TableSourceType table_source_type = 1 [(google.api.field_behavior) = OUTPUT_ONLY]; // Output only. oneof type_spec { @@ -63,9 +62,9 @@ message ViewSpec { // Normal BigQuery table spec. message TableSpec { - // Output only. If the table is a dated shard, i.e., with name pattern - // `[prefix]YYYYMMDD`, `grouped_entry` is the Data Catalog resource name of - // the date sharded grouped entry, for example, + // Output only. If the table is a dated shard, i.e., with name pattern `[prefix]YYYYMMDD`, + // `grouped_entry` is the Data Catalog resource name of the date sharded + // grouped entry, for example, // `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`. // Otherwise, `grouped_entry` is empty. string grouped_entry = 1 [ @@ -80,8 +79,8 @@ message TableSpec { // Context: // https://cloud.google.com/bigquery/docs/partitioned-tables#partitioning_versus_sharding message BigQueryDateShardedSpec { - // Output only. The Data Catalog resource name of the dataset entry the - // current table belongs to, for example, + // Output only. The Data Catalog resource name of the dataset entry the current table + // belongs to, for example, // `projects/{project_id}/locations/{location}/entrygroups/{entry_group_id}/entries/{entry_id}`. string dataset = 1 [ (google.api.field_behavior) = OUTPUT_ONLY, @@ -90,8 +89,7 @@ message BigQueryDateShardedSpec { } ]; - // Output only. The table name prefix of the shards. The name of any given - // shard is + // Output only. The table name prefix of the shards. The name of any given shard is // `[table_prefix]YYYYMMDD`, for example, for shard `MyTable20180101`, the // `table_prefix` is `MyTable`. string table_prefix = 2 [(google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/tags.proto b/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/tags.proto index d1691e27..8d12e241 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/tags.proto +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/tags.proto @@ -45,8 +45,7 @@ message Tag { // Note that this Tag may not actually be stored in the location in this name. string name = 1; - // Required. The resource name of the tag template that this tag uses. - // Example: + // Required. The resource name of the tag template that this tag uses. Example: // // * projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id} // @@ -71,9 +70,9 @@ message Tag { string column = 4; } - // Required. This maps the ID of a tag field to the value of and additional - // information about that field. Valid field IDs are defined by the tag's - // template. A tag must have at least 1 field and at most 500 fields. + // Required. This maps the ID of a tag field to the value of and additional information + // about that field. Valid field IDs are defined by the tag's template. A tag + // must have at least 1 field and at most 500 fields. map fields = 3 [(google.api.field_behavior) = REQUIRED]; } @@ -137,8 +136,7 @@ message TagTemplate { // letters (both uppercase and lowercase), numbers (0-9) and underscores (_). // Field IDs must be at least 1 character long and at most // 64 characters long. Field IDs must start with a letter or underscore. - map fields = 3 - [(google.api.field_behavior) = REQUIRED]; + map fields = 3 [(google.api.field_behavior) = REQUIRED]; } // The template for an individual field within a tag template. @@ -148,8 +146,7 @@ message TagTemplateField { pattern: "projects/{project}/locations/{location}/tagTemplates/{tag_template}/fields/{field}" }; - // Output only. The resource name of the tag template field in URL format. - // Example: + // Output only. The resource name of the tag template field in URL format. Example: // // * projects/{project_id}/locations/{location}/tagTemplates/{tag_template}/fields/{field} // @@ -167,8 +164,7 @@ message TagTemplateField { message FieldType { message EnumType { message EnumValue { - // Required. The display name of the enum value. Must not be an empty - // string. + // Required. The display name of the enum value. Must not be an empty string. string display_name = 1 [(google.api.field_behavior) = REQUIRED]; } diff --git a/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/timestamps.proto b/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/timestamps.proto index d1777aeb..6268b3cf 100644 --- a/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/timestamps.proto +++ b/proto-google-cloud-datacatalog-v1beta1/src/main/proto/google/cloud/datacatalog/v1beta1/timestamps.proto @@ -35,6 +35,5 @@ message SystemTimestamps { // Output only. The expiration time of the resource within the given system. // Currently only apllicable to BigQuery resources. - google.protobuf.Timestamp expire_time = 3 - [(google.api.field_behavior) = OUTPUT_ONLY]; + google.protobuf.Timestamp expire_time = 3 [(google.api.field_behavior) = OUTPUT_ONLY]; } diff --git a/synth.metadata b/synth.metadata index 2ad75120..65cd8ed4 100644 --- a/synth.metadata +++ b/synth.metadata @@ -1,5 +1,5 @@ { - "updateTime": "2019-11-19T20:40:02.864832Z", + "updateTime": "2019-11-20T18:09:21.303749Z", "sources": [ { "generator": { @@ -11,16 +11,16 @@ { "git": { "name": "googleapis", - "remote": "git@github.com:googleapis/googleapis.git", - "sha": "5af83f47b9656261cafcf88b0b3334521ab266b3", - "internalRef": "281334391" + "remote": "https://github.com/googleapis/googleapis.git", + "sha": "16543773103e2619d2b5f52456264de5bb9be104", + "internalRef": "281423227" } }, { "template": { "name": "java_library", "origin": "synthtool.gcp", - "version": "2019.5.2" + "version": "2019.10.17" } } ],