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

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

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 @@ -391,6 +391,20 @@ public CharactersCase getCharactersCase() {
}

public static final int CHARACTERS_TO_SKIP_FIELD_NUMBER = 1;
/**
*
*
* <pre>
* Characters to not transform when masking.
* </pre>
*
* <code>string characters_to_skip = 1;</code>
*
* @return Whether the charactersToSkip field is set.
*/
public boolean hasCharactersToSkip() {
return charactersCase_ == 1;
}
/**
*
*
Expand Down Expand Up @@ -447,6 +461,22 @@ public com.google.protobuf.ByteString getCharactersToSkipBytes() {
}

public static final int COMMON_CHARACTERS_TO_IGNORE_FIELD_NUMBER = 2;
/**
*
*
* <pre>
* Common characters to not transform when masking. Useful to avoid removing
* punctuation.
* </pre>
*
* <code>.google.privacy.dlp.v2.CharsToIgnore.CommonCharsToIgnore common_characters_to_ignore = 2;
* </code>
*
* @return Whether the commonCharactersToIgnore field is set.
*/
public boolean hasCommonCharactersToIgnore() {
return charactersCase_ == 2;
}
/**
*
*
Expand Down Expand Up @@ -872,6 +902,21 @@ public Builder clearCharacters() {
return this;
}

/**
*
*
* <pre>
* Characters to not transform when masking.
* </pre>
*
* <code>string characters_to_skip = 1;</code>
*
* @return Whether the charactersToSkip field is set.
*/
@java.lang.Override
public boolean hasCharactersToSkip() {
return charactersCase_ == 1;
}
/**
*
*
Expand Down Expand Up @@ -991,6 +1036,24 @@ public Builder setCharactersToSkipBytes(com.google.protobuf.ByteString value) {
return this;
}

/**
*
*
* <pre>
* Common characters to not transform when masking. Useful to avoid removing
* punctuation.
* </pre>
*
* <code>
* .google.privacy.dlp.v2.CharsToIgnore.CommonCharsToIgnore common_characters_to_ignore = 2;
* </code>
*
* @return Whether the commonCharactersToIgnore field is set.
*/
@java.lang.Override
public boolean hasCommonCharactersToIgnore() {
return charactersCase_ == 2;
}
/**
*
*
Expand Down
Expand Up @@ -23,6 +23,18 @@ public interface CharsToIgnoreOrBuilder
// @@protoc_insertion_point(interface_extends:google.privacy.dlp.v2.CharsToIgnore)
com.google.protobuf.MessageOrBuilder {

/**
*
*
* <pre>
* Characters to not transform when masking.
* </pre>
*
* <code>string characters_to_skip = 1;</code>
*
* @return Whether the charactersToSkip field is set.
*/
boolean hasCharactersToSkip();
/**
*
*
Expand All @@ -48,6 +60,20 @@ public interface CharsToIgnoreOrBuilder
*/
com.google.protobuf.ByteString getCharactersToSkipBytes();

/**
*
*
* <pre>
* Common characters to not transform when masking. Useful to avoid removing
* punctuation.
* </pre>
*
* <code>.google.privacy.dlp.v2.CharsToIgnore.CommonCharsToIgnore common_characters_to_ignore = 2;
* </code>
*
* @return Whether the commonCharactersToIgnore field is set.
*/
boolean hasCommonCharactersToIgnore();
/**
*
*
Expand Down
Expand Up @@ -191,6 +191,20 @@ public DataItemCase getDataItemCase() {
}

public static final int VALUE_FIELD_NUMBER = 3;
/**
*
*
* <pre>
* String data to inspect or redact.
* </pre>
*
* <code>string value = 3;</code>
*
* @return Whether the value field is set.
*/
public boolean hasValue() {
return dataItemCase_ == 3;
}
/**
*
*
Expand Down Expand Up @@ -761,6 +775,21 @@ public Builder clearDataItem() {
return this;
}

/**
*
*
* <pre>
* String data to inspect or redact.
* </pre>
*
* <code>string value = 3;</code>
*
* @return Whether the value field is set.
*/
@java.lang.Override
public boolean hasValue() {
return dataItemCase_ == 3;
}
/**
*
*
Expand Down
Expand Up @@ -23,6 +23,18 @@ public interface ContentItemOrBuilder
// @@protoc_insertion_point(interface_extends:google.privacy.dlp.v2.ContentItem)
com.google.protobuf.MessageOrBuilder {

/**
*
*
* <pre>
* String data to inspect or redact.
* </pre>
*
* <code>string value = 3;</code>
*
* @return Whether the value field is set.
*/
boolean hasValue();
/**
*
*
Expand Down
Expand Up @@ -577,6 +577,22 @@ public com.google.privacy.dlp.v2.FieldIdOrBuilder getContextOrBuilder() {
}

public static final int COMMON_ALPHABET_FIELD_NUMBER = 4;
/**
*
*
* <pre>
* Common alphabets.
* </pre>
*
* <code>
* .google.privacy.dlp.v2.CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet common_alphabet = 4;
* </code>
*
* @return Whether the commonAlphabet field is set.
*/
public boolean hasCommonAlphabet() {
return alphabetCase_ == 4;
}
/**
*
*
Expand Down Expand Up @@ -625,6 +641,29 @@ public int getCommonAlphabetValue() {
}

public static final int CUSTOM_ALPHABET_FIELD_NUMBER = 5;
/**
*
*
* <pre>
* This is supported by mapping these to the alphanumeric characters
* that the FFX mode natively supports. This happens before/after
* encryption/decryption.
* Each character listed must appear only once.
* Number of characters must be in the range [2, 95].
* This must be encoded as ASCII.
* The order of characters does not matter.
* The full list of allowed characters is:
* &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
* ~`!&#64;#$%^&amp;*()_-+={[}]|&#92;:;"'&lt;,&gt;.?/&lt;/code&gt;
* </pre>
*
* <code>string custom_alphabet = 5;</code>
*
* @return Whether the customAlphabet field is set.
*/
public boolean hasCustomAlphabet() {
return alphabetCase_ == 5;
}
/**
*
*
Expand Down Expand Up @@ -699,6 +738,21 @@ public com.google.protobuf.ByteString getCustomAlphabetBytes() {
}

public static final int RADIX_FIELD_NUMBER = 6;
/**
*
*
* <pre>
* The native way to select the alphabet. Must be in the range [2, 95].
* </pre>
*
* <code>int32 radix = 6;</code>
*
* @return Whether the radix field is set.
*/
@java.lang.Override
public boolean hasRadix() {
return alphabetCase_ == 6;
}
/**
*
*
Expand Down Expand Up @@ -1827,6 +1881,23 @@ public com.google.privacy.dlp.v2.FieldIdOrBuilder getContextOrBuilder() {
return contextBuilder_;
}

/**
*
*
* <pre>
* Common alphabets.
* </pre>
*
* <code>
* .google.privacy.dlp.v2.CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet common_alphabet = 4;
* </code>
*
* @return Whether the commonAlphabet field is set.
*/
@java.lang.Override
public boolean hasCommonAlphabet() {
return alphabetCase_ == 4;
}
/**
*
*
Expand Down Expand Up @@ -1942,6 +2013,30 @@ public Builder clearCommonAlphabet() {
return this;
}

/**
*
*
* <pre>
* This is supported by mapping these to the alphanumeric characters
* that the FFX mode natively supports. This happens before/after
* encryption/decryption.
* Each character listed must appear only once.
* Number of characters must be in the range [2, 95].
* This must be encoded as ASCII.
* The order of characters does not matter.
* The full list of allowed characters is:
* &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
* ~`!&#64;#$%^&amp;*()_-+={[}]|&#92;:;"'&lt;,&gt;.?/&lt;/code&gt;
* </pre>
*
* <code>string custom_alphabet = 5;</code>
*
* @return Whether the customAlphabet field is set.
*/
@java.lang.Override
public boolean hasCustomAlphabet() {
return alphabetCase_ == 5;
}
/**
*
*
Expand Down Expand Up @@ -2106,6 +2201,20 @@ public Builder setCustomAlphabetBytes(com.google.protobuf.ByteString value) {
return this;
}

/**
*
*
* <pre>
* The native way to select the alphabet. Must be in the range [2, 95].
* </pre>
*
* <code>int32 radix = 6;</code>
*
* @return Whether the radix field is set.
*/
public boolean hasRadix() {
return alphabetCase_ == 6;
}
/**
*
*
Expand Down