@google-cloud/dlp 6.0.0 → 6.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/build/protos/google/privacy/dlp/v2/dlp.proto +122 -0
- package/build/protos/protos.d.ts +488 -0
- package/build/protos/protos.js +1343 -1
- package/build/protos/protos.json +119 -4
- package/build/src/v2/dlp_service_client.d.ts +3 -0
- package/build/src/v2/dlp_service_client.js +237 -79
- package/package.json +2 -2
package/build/protos/protos.d.ts
CHANGED
|
@@ -6497,6 +6497,9 @@ export namespace google {
|
|
|
6497
6497
|
|
|
6498
6498
|
/** InfoTypeDescription sensitivityScore */
|
|
6499
6499
|
sensitivityScore?: (google.privacy.dlp.v2.ISensitivityScore|null);
|
|
6500
|
+
|
|
6501
|
+
/** InfoTypeDescription specificInfoTypes */
|
|
6502
|
+
specificInfoTypes?: (string[]|null);
|
|
6500
6503
|
}
|
|
6501
6504
|
|
|
6502
6505
|
/** Represents an InfoTypeDescription. */
|
|
@@ -6532,6 +6535,9 @@ export namespace google {
|
|
|
6532
6535
|
/** InfoTypeDescription sensitivityScore. */
|
|
6533
6536
|
public sensitivityScore?: (google.privacy.dlp.v2.ISensitivityScore|null);
|
|
6534
6537
|
|
|
6538
|
+
/** InfoTypeDescription specificInfoTypes. */
|
|
6539
|
+
public specificInfoTypes: string[];
|
|
6540
|
+
|
|
6535
6541
|
/**
|
|
6536
6542
|
* Creates a new InfoTypeDescription instance using the specified properties.
|
|
6537
6543
|
* @param [properties] Properties to set
|
|
@@ -6740,6 +6746,7 @@ export namespace google {
|
|
|
6740
6746
|
CHINA = 8,
|
|
6741
6747
|
COLOMBIA = 9,
|
|
6742
6748
|
CROATIA = 42,
|
|
6749
|
+
CZECHIA = 52,
|
|
6743
6750
|
DENMARK = 10,
|
|
6744
6751
|
FRANCE = 11,
|
|
6745
6752
|
FINLAND = 12,
|
|
@@ -20241,6 +20248,9 @@ export namespace google {
|
|
|
20241
20248
|
|
|
20242
20249
|
/** Export profileTable */
|
|
20243
20250
|
profileTable?: (google.privacy.dlp.v2.IBigQueryTable|null);
|
|
20251
|
+
|
|
20252
|
+
/** Export sampleFindingsTable */
|
|
20253
|
+
sampleFindingsTable?: (google.privacy.dlp.v2.IBigQueryTable|null);
|
|
20244
20254
|
}
|
|
20245
20255
|
|
|
20246
20256
|
/** Represents an Export. */
|
|
@@ -20255,6 +20265,9 @@ export namespace google {
|
|
|
20255
20265
|
/** Export profileTable. */
|
|
20256
20266
|
public profileTable?: (google.privacy.dlp.v2.IBigQueryTable|null);
|
|
20257
20267
|
|
|
20268
|
+
/** Export sampleFindingsTable. */
|
|
20269
|
+
public sampleFindingsTable?: (google.privacy.dlp.v2.IBigQueryTable|null);
|
|
20270
|
+
|
|
20258
20271
|
/**
|
|
20259
20272
|
* Creates a new Export instance using the specified properties.
|
|
20260
20273
|
* @param [properties] Properties to set
|
|
@@ -20969,6 +20982,348 @@ export namespace google {
|
|
|
20969
20982
|
}
|
|
20970
20983
|
}
|
|
20971
20984
|
|
|
20985
|
+
/** Properties of a DataProfileFinding. */
|
|
20986
|
+
interface IDataProfileFinding {
|
|
20987
|
+
|
|
20988
|
+
/** DataProfileFinding quote */
|
|
20989
|
+
quote?: (string|null);
|
|
20990
|
+
|
|
20991
|
+
/** DataProfileFinding infotype */
|
|
20992
|
+
infotype?: (google.privacy.dlp.v2.IInfoType|null);
|
|
20993
|
+
|
|
20994
|
+
/** DataProfileFinding quoteInfo */
|
|
20995
|
+
quoteInfo?: (google.privacy.dlp.v2.IQuoteInfo|null);
|
|
20996
|
+
|
|
20997
|
+
/** DataProfileFinding dataProfileResourceName */
|
|
20998
|
+
dataProfileResourceName?: (string|null);
|
|
20999
|
+
|
|
21000
|
+
/** DataProfileFinding findingId */
|
|
21001
|
+
findingId?: (string|null);
|
|
21002
|
+
|
|
21003
|
+
/** DataProfileFinding timestamp */
|
|
21004
|
+
timestamp?: (google.protobuf.ITimestamp|null);
|
|
21005
|
+
|
|
21006
|
+
/** DataProfileFinding location */
|
|
21007
|
+
location?: (google.privacy.dlp.v2.IDataProfileFindingLocation|null);
|
|
21008
|
+
|
|
21009
|
+
/** DataProfileFinding resourceVisibility */
|
|
21010
|
+
resourceVisibility?: (google.privacy.dlp.v2.ResourceVisibility|keyof typeof google.privacy.dlp.v2.ResourceVisibility|null);
|
|
21011
|
+
}
|
|
21012
|
+
|
|
21013
|
+
/** Represents a DataProfileFinding. */
|
|
21014
|
+
class DataProfileFinding implements IDataProfileFinding {
|
|
21015
|
+
|
|
21016
|
+
/**
|
|
21017
|
+
* Constructs a new DataProfileFinding.
|
|
21018
|
+
* @param [properties] Properties to set
|
|
21019
|
+
*/
|
|
21020
|
+
constructor(properties?: google.privacy.dlp.v2.IDataProfileFinding);
|
|
21021
|
+
|
|
21022
|
+
/** DataProfileFinding quote. */
|
|
21023
|
+
public quote: string;
|
|
21024
|
+
|
|
21025
|
+
/** DataProfileFinding infotype. */
|
|
21026
|
+
public infotype?: (google.privacy.dlp.v2.IInfoType|null);
|
|
21027
|
+
|
|
21028
|
+
/** DataProfileFinding quoteInfo. */
|
|
21029
|
+
public quoteInfo?: (google.privacy.dlp.v2.IQuoteInfo|null);
|
|
21030
|
+
|
|
21031
|
+
/** DataProfileFinding dataProfileResourceName. */
|
|
21032
|
+
public dataProfileResourceName: string;
|
|
21033
|
+
|
|
21034
|
+
/** DataProfileFinding findingId. */
|
|
21035
|
+
public findingId: string;
|
|
21036
|
+
|
|
21037
|
+
/** DataProfileFinding timestamp. */
|
|
21038
|
+
public timestamp?: (google.protobuf.ITimestamp|null);
|
|
21039
|
+
|
|
21040
|
+
/** DataProfileFinding location. */
|
|
21041
|
+
public location?: (google.privacy.dlp.v2.IDataProfileFindingLocation|null);
|
|
21042
|
+
|
|
21043
|
+
/** DataProfileFinding resourceVisibility. */
|
|
21044
|
+
public resourceVisibility: (google.privacy.dlp.v2.ResourceVisibility|keyof typeof google.privacy.dlp.v2.ResourceVisibility);
|
|
21045
|
+
|
|
21046
|
+
/**
|
|
21047
|
+
* Creates a new DataProfileFinding instance using the specified properties.
|
|
21048
|
+
* @param [properties] Properties to set
|
|
21049
|
+
* @returns DataProfileFinding instance
|
|
21050
|
+
*/
|
|
21051
|
+
public static create(properties?: google.privacy.dlp.v2.IDataProfileFinding): google.privacy.dlp.v2.DataProfileFinding;
|
|
21052
|
+
|
|
21053
|
+
/**
|
|
21054
|
+
* Encodes the specified DataProfileFinding message. Does not implicitly {@link google.privacy.dlp.v2.DataProfileFinding.verify|verify} messages.
|
|
21055
|
+
* @param message DataProfileFinding message or plain object to encode
|
|
21056
|
+
* @param [writer] Writer to encode to
|
|
21057
|
+
* @returns Writer
|
|
21058
|
+
*/
|
|
21059
|
+
public static encode(message: google.privacy.dlp.v2.IDataProfileFinding, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
21060
|
+
|
|
21061
|
+
/**
|
|
21062
|
+
* Encodes the specified DataProfileFinding message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DataProfileFinding.verify|verify} messages.
|
|
21063
|
+
* @param message DataProfileFinding message or plain object to encode
|
|
21064
|
+
* @param [writer] Writer to encode to
|
|
21065
|
+
* @returns Writer
|
|
21066
|
+
*/
|
|
21067
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IDataProfileFinding, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
21068
|
+
|
|
21069
|
+
/**
|
|
21070
|
+
* Decodes a DataProfileFinding message from the specified reader or buffer.
|
|
21071
|
+
* @param reader Reader or buffer to decode from
|
|
21072
|
+
* @param [length] Message length if known beforehand
|
|
21073
|
+
* @returns DataProfileFinding
|
|
21074
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
21075
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
21076
|
+
*/
|
|
21077
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DataProfileFinding;
|
|
21078
|
+
|
|
21079
|
+
/**
|
|
21080
|
+
* Decodes a DataProfileFinding message from the specified reader or buffer, length delimited.
|
|
21081
|
+
* @param reader Reader or buffer to decode from
|
|
21082
|
+
* @returns DataProfileFinding
|
|
21083
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
21084
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
21085
|
+
*/
|
|
21086
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DataProfileFinding;
|
|
21087
|
+
|
|
21088
|
+
/**
|
|
21089
|
+
* Verifies a DataProfileFinding message.
|
|
21090
|
+
* @param message Plain object to verify
|
|
21091
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
21092
|
+
*/
|
|
21093
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
21094
|
+
|
|
21095
|
+
/**
|
|
21096
|
+
* Creates a DataProfileFinding message from a plain object. Also converts values to their respective internal types.
|
|
21097
|
+
* @param object Plain object
|
|
21098
|
+
* @returns DataProfileFinding
|
|
21099
|
+
*/
|
|
21100
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DataProfileFinding;
|
|
21101
|
+
|
|
21102
|
+
/**
|
|
21103
|
+
* Creates a plain object from a DataProfileFinding message. Also converts values to other types if specified.
|
|
21104
|
+
* @param message DataProfileFinding
|
|
21105
|
+
* @param [options] Conversion options
|
|
21106
|
+
* @returns Plain object
|
|
21107
|
+
*/
|
|
21108
|
+
public static toObject(message: google.privacy.dlp.v2.DataProfileFinding, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
21109
|
+
|
|
21110
|
+
/**
|
|
21111
|
+
* Converts this DataProfileFinding to JSON.
|
|
21112
|
+
* @returns JSON object
|
|
21113
|
+
*/
|
|
21114
|
+
public toJSON(): { [k: string]: any };
|
|
21115
|
+
|
|
21116
|
+
/**
|
|
21117
|
+
* Gets the default type url for DataProfileFinding
|
|
21118
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
21119
|
+
* @returns The default type url
|
|
21120
|
+
*/
|
|
21121
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
21122
|
+
}
|
|
21123
|
+
|
|
21124
|
+
/** Properties of a DataProfileFindingLocation. */
|
|
21125
|
+
interface IDataProfileFindingLocation {
|
|
21126
|
+
|
|
21127
|
+
/** DataProfileFindingLocation containerName */
|
|
21128
|
+
containerName?: (string|null);
|
|
21129
|
+
|
|
21130
|
+
/** DataProfileFindingLocation dataProfileFindingRecordLocation */
|
|
21131
|
+
dataProfileFindingRecordLocation?: (google.privacy.dlp.v2.IDataProfileFindingRecordLocation|null);
|
|
21132
|
+
}
|
|
21133
|
+
|
|
21134
|
+
/** Represents a DataProfileFindingLocation. */
|
|
21135
|
+
class DataProfileFindingLocation implements IDataProfileFindingLocation {
|
|
21136
|
+
|
|
21137
|
+
/**
|
|
21138
|
+
* Constructs a new DataProfileFindingLocation.
|
|
21139
|
+
* @param [properties] Properties to set
|
|
21140
|
+
*/
|
|
21141
|
+
constructor(properties?: google.privacy.dlp.v2.IDataProfileFindingLocation);
|
|
21142
|
+
|
|
21143
|
+
/** DataProfileFindingLocation containerName. */
|
|
21144
|
+
public containerName: string;
|
|
21145
|
+
|
|
21146
|
+
/** DataProfileFindingLocation dataProfileFindingRecordLocation. */
|
|
21147
|
+
public dataProfileFindingRecordLocation?: (google.privacy.dlp.v2.IDataProfileFindingRecordLocation|null);
|
|
21148
|
+
|
|
21149
|
+
/** DataProfileFindingLocation locationExtraDetails. */
|
|
21150
|
+
public locationExtraDetails?: "dataProfileFindingRecordLocation";
|
|
21151
|
+
|
|
21152
|
+
/**
|
|
21153
|
+
* Creates a new DataProfileFindingLocation instance using the specified properties.
|
|
21154
|
+
* @param [properties] Properties to set
|
|
21155
|
+
* @returns DataProfileFindingLocation instance
|
|
21156
|
+
*/
|
|
21157
|
+
public static create(properties?: google.privacy.dlp.v2.IDataProfileFindingLocation): google.privacy.dlp.v2.DataProfileFindingLocation;
|
|
21158
|
+
|
|
21159
|
+
/**
|
|
21160
|
+
* Encodes the specified DataProfileFindingLocation message. Does not implicitly {@link google.privacy.dlp.v2.DataProfileFindingLocation.verify|verify} messages.
|
|
21161
|
+
* @param message DataProfileFindingLocation message or plain object to encode
|
|
21162
|
+
* @param [writer] Writer to encode to
|
|
21163
|
+
* @returns Writer
|
|
21164
|
+
*/
|
|
21165
|
+
public static encode(message: google.privacy.dlp.v2.IDataProfileFindingLocation, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
21166
|
+
|
|
21167
|
+
/**
|
|
21168
|
+
* Encodes the specified DataProfileFindingLocation message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DataProfileFindingLocation.verify|verify} messages.
|
|
21169
|
+
* @param message DataProfileFindingLocation message or plain object to encode
|
|
21170
|
+
* @param [writer] Writer to encode to
|
|
21171
|
+
* @returns Writer
|
|
21172
|
+
*/
|
|
21173
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IDataProfileFindingLocation, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
21174
|
+
|
|
21175
|
+
/**
|
|
21176
|
+
* Decodes a DataProfileFindingLocation message from the specified reader or buffer.
|
|
21177
|
+
* @param reader Reader or buffer to decode from
|
|
21178
|
+
* @param [length] Message length if known beforehand
|
|
21179
|
+
* @returns DataProfileFindingLocation
|
|
21180
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
21181
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
21182
|
+
*/
|
|
21183
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DataProfileFindingLocation;
|
|
21184
|
+
|
|
21185
|
+
/**
|
|
21186
|
+
* Decodes a DataProfileFindingLocation message from the specified reader or buffer, length delimited.
|
|
21187
|
+
* @param reader Reader or buffer to decode from
|
|
21188
|
+
* @returns DataProfileFindingLocation
|
|
21189
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
21190
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
21191
|
+
*/
|
|
21192
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DataProfileFindingLocation;
|
|
21193
|
+
|
|
21194
|
+
/**
|
|
21195
|
+
* Verifies a DataProfileFindingLocation message.
|
|
21196
|
+
* @param message Plain object to verify
|
|
21197
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
21198
|
+
*/
|
|
21199
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
21200
|
+
|
|
21201
|
+
/**
|
|
21202
|
+
* Creates a DataProfileFindingLocation message from a plain object. Also converts values to their respective internal types.
|
|
21203
|
+
* @param object Plain object
|
|
21204
|
+
* @returns DataProfileFindingLocation
|
|
21205
|
+
*/
|
|
21206
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DataProfileFindingLocation;
|
|
21207
|
+
|
|
21208
|
+
/**
|
|
21209
|
+
* Creates a plain object from a DataProfileFindingLocation message. Also converts values to other types if specified.
|
|
21210
|
+
* @param message DataProfileFindingLocation
|
|
21211
|
+
* @param [options] Conversion options
|
|
21212
|
+
* @returns Plain object
|
|
21213
|
+
*/
|
|
21214
|
+
public static toObject(message: google.privacy.dlp.v2.DataProfileFindingLocation, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
21215
|
+
|
|
21216
|
+
/**
|
|
21217
|
+
* Converts this DataProfileFindingLocation to JSON.
|
|
21218
|
+
* @returns JSON object
|
|
21219
|
+
*/
|
|
21220
|
+
public toJSON(): { [k: string]: any };
|
|
21221
|
+
|
|
21222
|
+
/**
|
|
21223
|
+
* Gets the default type url for DataProfileFindingLocation
|
|
21224
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
21225
|
+
* @returns The default type url
|
|
21226
|
+
*/
|
|
21227
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
21228
|
+
}
|
|
21229
|
+
|
|
21230
|
+
/** Properties of a DataProfileFindingRecordLocation. */
|
|
21231
|
+
interface IDataProfileFindingRecordLocation {
|
|
21232
|
+
|
|
21233
|
+
/** DataProfileFindingRecordLocation field */
|
|
21234
|
+
field?: (google.privacy.dlp.v2.IFieldId|null);
|
|
21235
|
+
}
|
|
21236
|
+
|
|
21237
|
+
/** Represents a DataProfileFindingRecordLocation. */
|
|
21238
|
+
class DataProfileFindingRecordLocation implements IDataProfileFindingRecordLocation {
|
|
21239
|
+
|
|
21240
|
+
/**
|
|
21241
|
+
* Constructs a new DataProfileFindingRecordLocation.
|
|
21242
|
+
* @param [properties] Properties to set
|
|
21243
|
+
*/
|
|
21244
|
+
constructor(properties?: google.privacy.dlp.v2.IDataProfileFindingRecordLocation);
|
|
21245
|
+
|
|
21246
|
+
/** DataProfileFindingRecordLocation field. */
|
|
21247
|
+
public field?: (google.privacy.dlp.v2.IFieldId|null);
|
|
21248
|
+
|
|
21249
|
+
/**
|
|
21250
|
+
* Creates a new DataProfileFindingRecordLocation instance using the specified properties.
|
|
21251
|
+
* @param [properties] Properties to set
|
|
21252
|
+
* @returns DataProfileFindingRecordLocation instance
|
|
21253
|
+
*/
|
|
21254
|
+
public static create(properties?: google.privacy.dlp.v2.IDataProfileFindingRecordLocation): google.privacy.dlp.v2.DataProfileFindingRecordLocation;
|
|
21255
|
+
|
|
21256
|
+
/**
|
|
21257
|
+
* Encodes the specified DataProfileFindingRecordLocation message. Does not implicitly {@link google.privacy.dlp.v2.DataProfileFindingRecordLocation.verify|verify} messages.
|
|
21258
|
+
* @param message DataProfileFindingRecordLocation message or plain object to encode
|
|
21259
|
+
* @param [writer] Writer to encode to
|
|
21260
|
+
* @returns Writer
|
|
21261
|
+
*/
|
|
21262
|
+
public static encode(message: google.privacy.dlp.v2.IDataProfileFindingRecordLocation, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
21263
|
+
|
|
21264
|
+
/**
|
|
21265
|
+
* Encodes the specified DataProfileFindingRecordLocation message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DataProfileFindingRecordLocation.verify|verify} messages.
|
|
21266
|
+
* @param message DataProfileFindingRecordLocation message or plain object to encode
|
|
21267
|
+
* @param [writer] Writer to encode to
|
|
21268
|
+
* @returns Writer
|
|
21269
|
+
*/
|
|
21270
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IDataProfileFindingRecordLocation, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
21271
|
+
|
|
21272
|
+
/**
|
|
21273
|
+
* Decodes a DataProfileFindingRecordLocation message from the specified reader or buffer.
|
|
21274
|
+
* @param reader Reader or buffer to decode from
|
|
21275
|
+
* @param [length] Message length if known beforehand
|
|
21276
|
+
* @returns DataProfileFindingRecordLocation
|
|
21277
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
21278
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
21279
|
+
*/
|
|
21280
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DataProfileFindingRecordLocation;
|
|
21281
|
+
|
|
21282
|
+
/**
|
|
21283
|
+
* Decodes a DataProfileFindingRecordLocation message from the specified reader or buffer, length delimited.
|
|
21284
|
+
* @param reader Reader or buffer to decode from
|
|
21285
|
+
* @returns DataProfileFindingRecordLocation
|
|
21286
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
21287
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
21288
|
+
*/
|
|
21289
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DataProfileFindingRecordLocation;
|
|
21290
|
+
|
|
21291
|
+
/**
|
|
21292
|
+
* Verifies a DataProfileFindingRecordLocation message.
|
|
21293
|
+
* @param message Plain object to verify
|
|
21294
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
21295
|
+
*/
|
|
21296
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
21297
|
+
|
|
21298
|
+
/**
|
|
21299
|
+
* Creates a DataProfileFindingRecordLocation message from a plain object. Also converts values to their respective internal types.
|
|
21300
|
+
* @param object Plain object
|
|
21301
|
+
* @returns DataProfileFindingRecordLocation
|
|
21302
|
+
*/
|
|
21303
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DataProfileFindingRecordLocation;
|
|
21304
|
+
|
|
21305
|
+
/**
|
|
21306
|
+
* Creates a plain object from a DataProfileFindingRecordLocation message. Also converts values to other types if specified.
|
|
21307
|
+
* @param message DataProfileFindingRecordLocation
|
|
21308
|
+
* @param [options] Conversion options
|
|
21309
|
+
* @returns Plain object
|
|
21310
|
+
*/
|
|
21311
|
+
public static toObject(message: google.privacy.dlp.v2.DataProfileFindingRecordLocation, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
21312
|
+
|
|
21313
|
+
/**
|
|
21314
|
+
* Converts this DataProfileFindingRecordLocation to JSON.
|
|
21315
|
+
* @returns JSON object
|
|
21316
|
+
*/
|
|
21317
|
+
public toJSON(): { [k: string]: any };
|
|
21318
|
+
|
|
21319
|
+
/**
|
|
21320
|
+
* Gets the default type url for DataProfileFindingRecordLocation
|
|
21321
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
21322
|
+
* @returns The default type url
|
|
21323
|
+
*/
|
|
21324
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
21325
|
+
}
|
|
21326
|
+
|
|
20972
21327
|
/** Properties of a DataProfileJobConfig. */
|
|
20973
21328
|
interface IDataProfileJobConfig {
|
|
20974
21329
|
|
|
@@ -32420,6 +32775,12 @@ export namespace google {
|
|
|
32420
32775
|
/** TableDataProfile createTime */
|
|
32421
32776
|
createTime?: (google.protobuf.ITimestamp|null);
|
|
32422
32777
|
|
|
32778
|
+
/** TableDataProfile sampleFindingsTable */
|
|
32779
|
+
sampleFindingsTable?: (google.privacy.dlp.v2.IBigQueryTable|null);
|
|
32780
|
+
|
|
32781
|
+
/** TableDataProfile tags */
|
|
32782
|
+
tags?: (google.privacy.dlp.v2.ITag[]|null);
|
|
32783
|
+
|
|
32423
32784
|
/** TableDataProfile relatedResources */
|
|
32424
32785
|
relatedResources?: (google.privacy.dlp.v2.IRelatedResource[]|null);
|
|
32425
32786
|
}
|
|
@@ -32511,6 +32872,12 @@ export namespace google {
|
|
|
32511
32872
|
/** TableDataProfile createTime. */
|
|
32512
32873
|
public createTime?: (google.protobuf.ITimestamp|null);
|
|
32513
32874
|
|
|
32875
|
+
/** TableDataProfile sampleFindingsTable. */
|
|
32876
|
+
public sampleFindingsTable?: (google.privacy.dlp.v2.IBigQueryTable|null);
|
|
32877
|
+
|
|
32878
|
+
/** TableDataProfile tags. */
|
|
32879
|
+
public tags: google.privacy.dlp.v2.ITag[];
|
|
32880
|
+
|
|
32514
32881
|
/** TableDataProfile relatedResources. */
|
|
32515
32882
|
public relatedResources: google.privacy.dlp.v2.IRelatedResource[];
|
|
32516
32883
|
|
|
@@ -33260,9 +33627,15 @@ export namespace google {
|
|
|
33260
33627
|
/** FileStoreDataProfile fileStoreInfoTypeSummaries */
|
|
33261
33628
|
fileStoreInfoTypeSummaries?: (google.privacy.dlp.v2.IFileStoreInfoTypeSummary[]|null);
|
|
33262
33629
|
|
|
33630
|
+
/** FileStoreDataProfile sampleFindingsTable */
|
|
33631
|
+
sampleFindingsTable?: (google.privacy.dlp.v2.IBigQueryTable|null);
|
|
33632
|
+
|
|
33263
33633
|
/** FileStoreDataProfile fileStoreIsEmpty */
|
|
33264
33634
|
fileStoreIsEmpty?: (boolean|null);
|
|
33265
33635
|
|
|
33636
|
+
/** FileStoreDataProfile tags */
|
|
33637
|
+
tags?: (google.privacy.dlp.v2.ITag[]|null);
|
|
33638
|
+
|
|
33266
33639
|
/** FileStoreDataProfile relatedResources */
|
|
33267
33640
|
relatedResources?: (google.privacy.dlp.v2.IRelatedResource[]|null);
|
|
33268
33641
|
}
|
|
@@ -33342,9 +33715,15 @@ export namespace google {
|
|
|
33342
33715
|
/** FileStoreDataProfile fileStoreInfoTypeSummaries. */
|
|
33343
33716
|
public fileStoreInfoTypeSummaries: google.privacy.dlp.v2.IFileStoreInfoTypeSummary[];
|
|
33344
33717
|
|
|
33718
|
+
/** FileStoreDataProfile sampleFindingsTable. */
|
|
33719
|
+
public sampleFindingsTable?: (google.privacy.dlp.v2.IBigQueryTable|null);
|
|
33720
|
+
|
|
33345
33721
|
/** FileStoreDataProfile fileStoreIsEmpty. */
|
|
33346
33722
|
public fileStoreIsEmpty: boolean;
|
|
33347
33723
|
|
|
33724
|
+
/** FileStoreDataProfile tags. */
|
|
33725
|
+
public tags: google.privacy.dlp.v2.ITag[];
|
|
33726
|
+
|
|
33348
33727
|
/** FileStoreDataProfile relatedResources. */
|
|
33349
33728
|
public relatedResources: google.privacy.dlp.v2.IRelatedResource[];
|
|
33350
33729
|
|
|
@@ -33436,6 +33815,115 @@ export namespace google {
|
|
|
33436
33815
|
}
|
|
33437
33816
|
}
|
|
33438
33817
|
|
|
33818
|
+
/** Properties of a Tag. */
|
|
33819
|
+
interface ITag {
|
|
33820
|
+
|
|
33821
|
+
/** Tag namespacedTagValue */
|
|
33822
|
+
namespacedTagValue?: (string|null);
|
|
33823
|
+
|
|
33824
|
+
/** Tag key */
|
|
33825
|
+
key?: (string|null);
|
|
33826
|
+
|
|
33827
|
+
/** Tag value */
|
|
33828
|
+
value?: (string|null);
|
|
33829
|
+
}
|
|
33830
|
+
|
|
33831
|
+
/** Represents a Tag. */
|
|
33832
|
+
class Tag implements ITag {
|
|
33833
|
+
|
|
33834
|
+
/**
|
|
33835
|
+
* Constructs a new Tag.
|
|
33836
|
+
* @param [properties] Properties to set
|
|
33837
|
+
*/
|
|
33838
|
+
constructor(properties?: google.privacy.dlp.v2.ITag);
|
|
33839
|
+
|
|
33840
|
+
/** Tag namespacedTagValue. */
|
|
33841
|
+
public namespacedTagValue: string;
|
|
33842
|
+
|
|
33843
|
+
/** Tag key. */
|
|
33844
|
+
public key: string;
|
|
33845
|
+
|
|
33846
|
+
/** Tag value. */
|
|
33847
|
+
public value: string;
|
|
33848
|
+
|
|
33849
|
+
/**
|
|
33850
|
+
* Creates a new Tag instance using the specified properties.
|
|
33851
|
+
* @param [properties] Properties to set
|
|
33852
|
+
* @returns Tag instance
|
|
33853
|
+
*/
|
|
33854
|
+
public static create(properties?: google.privacy.dlp.v2.ITag): google.privacy.dlp.v2.Tag;
|
|
33855
|
+
|
|
33856
|
+
/**
|
|
33857
|
+
* Encodes the specified Tag message. Does not implicitly {@link google.privacy.dlp.v2.Tag.verify|verify} messages.
|
|
33858
|
+
* @param message Tag message or plain object to encode
|
|
33859
|
+
* @param [writer] Writer to encode to
|
|
33860
|
+
* @returns Writer
|
|
33861
|
+
*/
|
|
33862
|
+
public static encode(message: google.privacy.dlp.v2.ITag, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
33863
|
+
|
|
33864
|
+
/**
|
|
33865
|
+
* Encodes the specified Tag message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.Tag.verify|verify} messages.
|
|
33866
|
+
* @param message Tag message or plain object to encode
|
|
33867
|
+
* @param [writer] Writer to encode to
|
|
33868
|
+
* @returns Writer
|
|
33869
|
+
*/
|
|
33870
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.ITag, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
33871
|
+
|
|
33872
|
+
/**
|
|
33873
|
+
* Decodes a Tag message from the specified reader or buffer.
|
|
33874
|
+
* @param reader Reader or buffer to decode from
|
|
33875
|
+
* @param [length] Message length if known beforehand
|
|
33876
|
+
* @returns Tag
|
|
33877
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
33878
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
33879
|
+
*/
|
|
33880
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.Tag;
|
|
33881
|
+
|
|
33882
|
+
/**
|
|
33883
|
+
* Decodes a Tag message from the specified reader or buffer, length delimited.
|
|
33884
|
+
* @param reader Reader or buffer to decode from
|
|
33885
|
+
* @returns Tag
|
|
33886
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
33887
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
33888
|
+
*/
|
|
33889
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.Tag;
|
|
33890
|
+
|
|
33891
|
+
/**
|
|
33892
|
+
* Verifies a Tag message.
|
|
33893
|
+
* @param message Plain object to verify
|
|
33894
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
33895
|
+
*/
|
|
33896
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
33897
|
+
|
|
33898
|
+
/**
|
|
33899
|
+
* Creates a Tag message from a plain object. Also converts values to their respective internal types.
|
|
33900
|
+
* @param object Plain object
|
|
33901
|
+
* @returns Tag
|
|
33902
|
+
*/
|
|
33903
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.Tag;
|
|
33904
|
+
|
|
33905
|
+
/**
|
|
33906
|
+
* Creates a plain object from a Tag message. Also converts values to other types if specified.
|
|
33907
|
+
* @param message Tag
|
|
33908
|
+
* @param [options] Conversion options
|
|
33909
|
+
* @returns Plain object
|
|
33910
|
+
*/
|
|
33911
|
+
public static toObject(message: google.privacy.dlp.v2.Tag, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
33912
|
+
|
|
33913
|
+
/**
|
|
33914
|
+
* Converts this Tag to JSON.
|
|
33915
|
+
* @returns JSON object
|
|
33916
|
+
*/
|
|
33917
|
+
public toJSON(): { [k: string]: any };
|
|
33918
|
+
|
|
33919
|
+
/**
|
|
33920
|
+
* Gets the default type url for Tag
|
|
33921
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
33922
|
+
* @returns The default type url
|
|
33923
|
+
*/
|
|
33924
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
33925
|
+
}
|
|
33926
|
+
|
|
33439
33927
|
/** Properties of a RelatedResource. */
|
|
33440
33928
|
interface IRelatedResource {
|
|
33441
33929
|
|