Class DateShiftConfig (3.3.2)

public final class DateShiftConfig extends GeneratedMessageV3 implements DateShiftConfigOrBuilder

Shifts dates by random number of days, with option to be consistent for the same context. See https://cloud.google.com/dlp/docs/concepts-date-shifting to learn more.

Protobuf type google.privacy.dlp.v2.DateShiftConfig

Static Fields

CONTEXT_FIELD_NUMBER

public static final int CONTEXT_FIELD_NUMBER
Field Value
TypeDescription
int

CRYPTO_KEY_FIELD_NUMBER

public static final int CRYPTO_KEY_FIELD_NUMBER
Field Value
TypeDescription
int

LOWER_BOUND_DAYS_FIELD_NUMBER

public static final int LOWER_BOUND_DAYS_FIELD_NUMBER
Field Value
TypeDescription
int

UPPER_BOUND_DAYS_FIELD_NUMBER

public static final int UPPER_BOUND_DAYS_FIELD_NUMBER
Field Value
TypeDescription
int

Static Methods

getDefaultInstance()

public static DateShiftConfig getDefaultInstance()
Returns
TypeDescription
DateShiftConfig

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
TypeDescription
Descriptor

newBuilder()

public static DateShiftConfig.Builder newBuilder()
Returns
TypeDescription
DateShiftConfig.Builder

newBuilder(DateShiftConfig prototype)

public static DateShiftConfig.Builder newBuilder(DateShiftConfig prototype)
Parameter
NameDescription
prototypeDateShiftConfig
Returns
TypeDescription
DateShiftConfig.Builder

parseDelimitedFrom(InputStream input)

public static DateShiftConfig parseDelimitedFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
DateShiftConfig
Exceptions
TypeDescription
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static DateShiftConfig parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
DateShiftConfig
Exceptions
TypeDescription
IOException

parseFrom(byte[] data)

public static DateShiftConfig parseFrom(byte[] data)
Parameter
NameDescription
databyte[]
Returns
TypeDescription
DateShiftConfig
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static DateShiftConfig parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
databyte[]
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
DateShiftConfig
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data)

public static DateShiftConfig parseFrom(ByteString data)
Parameter
NameDescription
dataByteString
Returns
TypeDescription
DateShiftConfig
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static DateShiftConfig parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteString
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
DateShiftConfig
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static DateShiftConfig parseFrom(CodedInputStream input)
Parameter
NameDescription
inputCodedInputStream
Returns
TypeDescription
DateShiftConfig
Exceptions
TypeDescription
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static DateShiftConfig parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputCodedInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
DateShiftConfig
Exceptions
TypeDescription
IOException

parseFrom(InputStream input)

public static DateShiftConfig parseFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
DateShiftConfig
Exceptions
TypeDescription
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static DateShiftConfig parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
DateShiftConfig
Exceptions
TypeDescription
IOException

parseFrom(ByteBuffer data)

public static DateShiftConfig parseFrom(ByteBuffer data)
Parameter
NameDescription
dataByteBuffer
Returns
TypeDescription
DateShiftConfig
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static DateShiftConfig parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteBuffer
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
DateShiftConfig
Exceptions
TypeDescription
InvalidProtocolBufferException

parser()

public static Parser<DateShiftConfig> parser()
Returns
TypeDescription
Parser<DateShiftConfig>

Methods

equals(Object obj)

public boolean equals(Object obj)
Parameter
NameDescription
objObject
Returns
TypeDescription
boolean
Overrides

getContext()

public FieldId getContext()

Points to the field that contains the context, for example, an entity id. If set, must also set cryptoKey. If set, shift will be consistent for the given context.

.google.privacy.dlp.v2.FieldId context = 3;

Returns
TypeDescription
FieldId

The context.

getContextOrBuilder()

public FieldIdOrBuilder getContextOrBuilder()

Points to the field that contains the context, for example, an entity id. If set, must also set cryptoKey. If set, shift will be consistent for the given context.

.google.privacy.dlp.v2.FieldId context = 3;

Returns
TypeDescription
FieldIdOrBuilder

getCryptoKey()

public CryptoKey getCryptoKey()

Causes the shift to be computed based on this key and the context. This results in the same shift for the same context and crypto_key. If set, must also set context. Can only be applied to table items.

.google.privacy.dlp.v2.CryptoKey crypto_key = 4;

Returns
TypeDescription
CryptoKey

The cryptoKey.

getCryptoKeyOrBuilder()

public CryptoKeyOrBuilder getCryptoKeyOrBuilder()

Causes the shift to be computed based on this key and the context. This results in the same shift for the same context and crypto_key. If set, must also set context. Can only be applied to table items.

.google.privacy.dlp.v2.CryptoKey crypto_key = 4;

Returns
TypeDescription
CryptoKeyOrBuilder

getDefaultInstanceForType()

public DateShiftConfig getDefaultInstanceForType()
Returns
TypeDescription
DateShiftConfig

getLowerBoundDays()

public int getLowerBoundDays()

Required. For example, -5 means shift date to at most 5 days back in the past.

int32 lower_bound_days = 2 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
int

The lowerBoundDays.

getMethodCase()

public DateShiftConfig.MethodCase getMethodCase()
Returns
TypeDescription
DateShiftConfig.MethodCase

getParserForType()

public Parser<DateShiftConfig> getParserForType()
Returns
TypeDescription
Parser<DateShiftConfig>
Overrides

getSerializedSize()

public int getSerializedSize()
Returns
TypeDescription
int
Overrides

getUnknownFields()

public final UnknownFieldSet getUnknownFields()
Returns
TypeDescription
UnknownFieldSet
Overrides

getUpperBoundDays()

public int getUpperBoundDays()

Required. Range of shift in days. Actual shift will be selected at random within this range (inclusive ends). Negative means shift to earlier in time. Must not be more than 365250 days (1000 years) each direction. For example, 3 means shift date to at most 3 days into the future.

int32 upper_bound_days = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
int

The upperBoundDays.

hasContext()

public boolean hasContext()

Points to the field that contains the context, for example, an entity id. If set, must also set cryptoKey. If set, shift will be consistent for the given context.

.google.privacy.dlp.v2.FieldId context = 3;

Returns
TypeDescription
boolean

Whether the context field is set.

hasCryptoKey()

public boolean hasCryptoKey()

Causes the shift to be computed based on this key and the context. This results in the same shift for the same context and crypto_key. If set, must also set context. Can only be applied to table items.

.google.privacy.dlp.v2.CryptoKey crypto_key = 4;

Returns
TypeDescription
boolean

Whether the cryptoKey field is set.

hashCode()

public int hashCode()
Returns
TypeDescription
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
TypeDescription
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
TypeDescription
boolean
Overrides

newBuilderForType()

public DateShiftConfig.Builder newBuilderForType()
Returns
TypeDescription
DateShiftConfig.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent)

protected DateShiftConfig.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
NameDescription
parentBuilderParent
Returns
TypeDescription
DateShiftConfig.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
NameDescription
unusedUnusedPrivateParameter
Returns
TypeDescription
Object
Overrides

toBuilder()

public DateShiftConfig.Builder toBuilder()
Returns
TypeDescription
DateShiftConfig.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
NameDescription
outputCodedOutputStream
Overrides Exceptions
TypeDescription
IOException