Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

feat(generator): update protoc to v3.15.3 #445

Merged
merged 1 commit into from Mar 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -523,6 +523,21 @@ public com.google.protobuf.ByteString getLinkedResourceBytes() {
}

public static final int TYPE_FIELD_NUMBER = 2;
/**
*
*
* <pre>
* The type of the entry.
* Only used for Entries with types in the EntryType enum.
* </pre>
*
* <code>.google.cloud.datacatalog.v1.EntryType type = 2;</code>
*
* @return Whether the type field is set.
*/
public boolean hasType() {
return entryTypeCase_ == 2;
}
/**
*
*
Expand Down Expand Up @@ -564,6 +579,28 @@ public com.google.cloud.datacatalog.v1.EntryType getType() {
}

public static final int USER_SPECIFIED_TYPE_FIELD_NUMBER = 16;
/**
*
*
* <pre>
* Entry type if it does not fit any of the input-allowed values listed in
* `EntryType` enum above. When creating an entry, users should check the
* enum values first, if nothing matches the entry to be created, then
* provide a custom value, for example "my_special_type".
* `user_specified_type` strings must begin with a letter or underscore and
* can only contain letters, numbers, and underscores; are case insensitive;
* must be at least 1 character and at most 64 characters long.
* Currently, only FILESET enum value is allowed. All other entries created
* through Data Catalog must use `user_specified_type`.
* </pre>
*
* <code>string user_specified_type = 16;</code>
*
* @return Whether the userSpecifiedType field is set.
*/
public boolean hasUserSpecifiedType() {
return entryTypeCase_ == 16;
}
/**
*
*
Expand Down Expand Up @@ -636,6 +673,23 @@ public com.google.protobuf.ByteString getUserSpecifiedTypeBytes() {
}

public static final int INTEGRATED_SYSTEM_FIELD_NUMBER = 17;
/**
*
*
* <pre>
* Output only. This field indicates the entry's source system that Data
* Catalog integrates with, such as BigQuery or Pub/Sub.
* </pre>
*
* <code>
* .google.cloud.datacatalog.v1.IntegratedSystem integrated_system = 17 [(.google.api.field_behavior) = OUTPUT_ONLY];
* </code>
*
* @return Whether the integratedSystem field is set.
*/
public boolean hasIntegratedSystem() {
return systemCase_ == 17;
}
/**
*
*
Expand Down Expand Up @@ -683,6 +737,24 @@ public com.google.cloud.datacatalog.v1.IntegratedSystem getIntegratedSystem() {
}

public static final int USER_SPECIFIED_SYSTEM_FIELD_NUMBER = 18;
/**
*
*
* <pre>
* This field indicates the entry's source system that Data Catalog does not
* integrate with. `user_specified_system` strings must begin with a letter
* or underscore and can only contain letters, numbers, and underscores; are
* case insensitive; must be at least 1 character and at most 64 characters
* long.
* </pre>
*
* <code>string user_specified_system = 18;</code>
*
* @return Whether the userSpecifiedSystem field is set.
*/
public boolean hasUserSpecifiedSystem() {
return systemCase_ == 18;
}
/**
*
*
Expand Down Expand Up @@ -2086,6 +2158,22 @@ public Builder setLinkedResourceBytes(com.google.protobuf.ByteString value) {
return this;
}

/**
*
*
* <pre>
* The type of the entry.
* Only used for Entries with types in the EntryType enum.
* </pre>
*
* <code>.google.cloud.datacatalog.v1.EntryType type = 2;</code>
*
* @return Whether the type field is set.
*/
@java.lang.Override
public boolean hasType() {
return entryTypeCase_ == 2;
}
/**
*
*
Expand Down Expand Up @@ -2189,6 +2277,29 @@ public Builder clearType() {
return this;
}

/**
*
*
* <pre>
* Entry type if it does not fit any of the input-allowed values listed in
* `EntryType` enum above. When creating an entry, users should check the
* enum values first, if nothing matches the entry to be created, then
* provide a custom value, for example "my_special_type".
* `user_specified_type` strings must begin with a letter or underscore and
* can only contain letters, numbers, and underscores; are case insensitive;
* must be at least 1 character and at most 64 characters long.
* Currently, only FILESET enum value is allowed. All other entries created
* through Data Catalog must use `user_specified_type`.
* </pre>
*
* <code>string user_specified_type = 16;</code>
*
* @return Whether the userSpecifiedType field is set.
*/
@java.lang.Override
public boolean hasUserSpecifiedType() {
return entryTypeCase_ == 16;
}
/**
*
*
Expand Down Expand Up @@ -2348,6 +2459,24 @@ public Builder setUserSpecifiedTypeBytes(com.google.protobuf.ByteString value) {
return this;
}

/**
*
*
* <pre>
* Output only. This field indicates the entry's source system that Data
* Catalog integrates with, such as BigQuery or Pub/Sub.
* </pre>
*
* <code>
* .google.cloud.datacatalog.v1.IntegratedSystem integrated_system = 17 [(.google.api.field_behavior) = OUTPUT_ONLY];
* </code>
*
* @return Whether the integratedSystem field is set.
*/
@java.lang.Override
public boolean hasIntegratedSystem() {
return systemCase_ == 17;
}
/**
*
*
Expand Down Expand Up @@ -2463,6 +2592,25 @@ public Builder clearIntegratedSystem() {
return this;
}

/**
*
*
* <pre>
* This field indicates the entry's source system that Data Catalog does not
* integrate with. `user_specified_system` strings must begin with a letter
* or underscore and can only contain letters, numbers, and underscores; are
* case insensitive; must be at least 1 character and at most 64 characters
* long.
* </pre>
*
* <code>string user_specified_system = 18;</code>
*
* @return Whether the userSpecifiedSystem field is set.
*/
@java.lang.Override
public boolean hasUserSpecifiedSystem() {
return systemCase_ == 18;
}
/**
*
*
Expand Down
Expand Up @@ -95,6 +95,19 @@ public interface EntryOrBuilder
*/
com.google.protobuf.ByteString getLinkedResourceBytes();

/**
*
*
* <pre>
* The type of the entry.
* Only used for Entries with types in the EntryType enum.
* </pre>
*
* <code>.google.cloud.datacatalog.v1.EntryType type = 2;</code>
*
* @return Whether the type field is set.
*/
boolean hasType();
/**
*
*
Expand Down Expand Up @@ -122,6 +135,26 @@ public interface EntryOrBuilder
*/
com.google.cloud.datacatalog.v1.EntryType getType();

/**
*
*
* <pre>
* Entry type if it does not fit any of the input-allowed values listed in
* `EntryType` enum above. When creating an entry, users should check the
* enum values first, if nothing matches the entry to be created, then
* provide a custom value, for example "my_special_type".
* `user_specified_type` strings must begin with a letter or underscore and
* can only contain letters, numbers, and underscores; are case insensitive;
* must be at least 1 character and at most 64 characters long.
* Currently, only FILESET enum value is allowed. All other entries created
* through Data Catalog must use `user_specified_type`.
* </pre>
*
* <code>string user_specified_type = 16;</code>
*
* @return Whether the userSpecifiedType field is set.
*/
boolean hasUserSpecifiedType();
/**
*
*
Expand Down Expand Up @@ -163,6 +196,21 @@ public interface EntryOrBuilder
*/
com.google.protobuf.ByteString getUserSpecifiedTypeBytes();

/**
*
*
* <pre>
* Output only. This field indicates the entry's source system that Data
* Catalog integrates with, such as BigQuery or Pub/Sub.
* </pre>
*
* <code>
* .google.cloud.datacatalog.v1.IntegratedSystem integrated_system = 17 [(.google.api.field_behavior) = OUTPUT_ONLY];
* </code>
*
* @return Whether the integratedSystem field is set.
*/
boolean hasIntegratedSystem();
/**
*
*
Expand Down Expand Up @@ -194,6 +242,22 @@ public interface EntryOrBuilder
*/
com.google.cloud.datacatalog.v1.IntegratedSystem getIntegratedSystem();

/**
*
*
* <pre>
* This field indicates the entry's source system that Data Catalog does not
* integrate with. `user_specified_system` strings must begin with a letter
* or underscore and can only contain letters, numbers, and underscores; are
* case insensitive; must be at least 1 character and at most 64 characters
* long.
* </pre>
*
* <code>string user_specified_system = 18;</code>
*
* @return Whether the userSpecifiedSystem field is set.
*/
boolean hasUserSpecifiedSystem();
/**
*
*
Expand Down
Expand Up @@ -2200,6 +2200,20 @@ public TypeDeclCase getTypeDeclCase() {
}

public static final int PRIMITIVE_TYPE_FIELD_NUMBER = 1;
/**
*
*
* <pre>
* Represents primitive types - string, bool etc.
* </pre>
*
* <code>.google.cloud.datacatalog.v1.FieldType.PrimitiveType primitive_type = 1;</code>
*
* @return Whether the primitiveType field is set.
*/
public boolean hasPrimitiveType() {
return typeDeclCase_ == 1;
}
/**
*
*
Expand Down Expand Up @@ -2665,6 +2679,21 @@ public Builder clearTypeDecl() {
return this;
}

/**
*
*
* <pre>
* Represents primitive types - string, bool etc.
* </pre>
*
* <code>.google.cloud.datacatalog.v1.FieldType.PrimitiveType primitive_type = 1;</code>
*
* @return Whether the primitiveType field is set.
*/
@java.lang.Override
public boolean hasPrimitiveType() {
return typeDeclCase_ == 1;
}
/**
*
*
Expand Down
Expand Up @@ -23,6 +23,18 @@ public interface FieldTypeOrBuilder
// @@protoc_insertion_point(interface_extends:google.cloud.datacatalog.v1.FieldType)
com.google.protobuf.MessageOrBuilder {

/**
*
*
* <pre>
* Represents primitive types - string, bool etc.
* </pre>
*
* <code>.google.cloud.datacatalog.v1.FieldType.PrimitiveType primitive_type = 1;</code>
*
* @return Whether the primitiveType field is set.
*/
boolean hasPrimitiveType();
/**
*
*
Expand Down