@google-cloud/dlp 5.11.0 → 5.13.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.
@@ -1,4 +1,4 @@
1
- // Copyright 2024 Google LLC
1
+ // Copyright 2025 Google LLC
2
2
  //
3
3
  // Licensed under the Apache License, Version 2.0 (the "License");
4
4
  // you may not use this file except in compliance with the License.
@@ -2327,7 +2327,8 @@ export namespace google {
2327
2327
  TSV = 13,
2328
2328
  AUDIO = 15,
2329
2329
  VIDEO = 16,
2330
- EXECUTABLE = 17
2330
+ EXECUTABLE = 17,
2331
+ AI_MODEL = 18
2331
2332
  }
2332
2333
  }
2333
2334
 
@@ -6485,6 +6486,9 @@ export namespace google {
6485
6486
  /** InfoTypeDescription description */
6486
6487
  description?: (string|null);
6487
6488
 
6489
+ /** InfoTypeDescription example */
6490
+ example?: (string|null);
6491
+
6488
6492
  /** InfoTypeDescription versions */
6489
6493
  versions?: (google.privacy.dlp.v2.IVersionDescription[]|null);
6490
6494
 
@@ -6516,6 +6520,9 @@ export namespace google {
6516
6520
  /** InfoTypeDescription description. */
6517
6521
  public description: string;
6518
6522
 
6523
+ /** InfoTypeDescription example. */
6524
+ public example: string;
6525
+
6519
6526
  /** InfoTypeDescription versions. */
6520
6527
  public versions: google.privacy.dlp.v2.IVersionDescription[];
6521
6528
 
@@ -6789,7 +6796,8 @@ export namespace google {
6789
6796
  CREDENTIAL = 4,
6790
6797
  GOVERNMENT_ID = 5,
6791
6798
  DOCUMENT = 6,
6792
- CONTEXTUAL_INFORMATION = 7
6799
+ CONTEXTUAL_INFORMATION = 7,
6800
+ CUSTOM = 8
6793
6801
  }
6794
6802
  }
6795
6803
 
@@ -21396,7 +21404,8 @@ export namespace google {
21396
21404
  enum BigQueryTableType {
21397
21405
  BIG_QUERY_TABLE_TYPE_UNSPECIFIED = 0,
21398
21406
  BIG_QUERY_TABLE_TYPE_TABLE = 1,
21399
- BIG_QUERY_TABLE_TYPE_EXTERNAL_BIG_LAKE = 2
21407
+ BIG_QUERY_TABLE_TYPE_EXTERNAL_BIG_LAKE = 2,
21408
+ BIG_QUERY_TABLE_TYPE_SNAPSHOT = 3
21400
21409
  }
21401
21410
 
21402
21411
  /** DataProfileUpdateFrequency enum. */
@@ -21642,6 +21651,9 @@ export namespace google {
21642
21651
 
21643
21652
  /** DiscoveryConfig status */
21644
21653
  status?: (google.privacy.dlp.v2.DiscoveryConfig.Status|keyof typeof google.privacy.dlp.v2.DiscoveryConfig.Status|null);
21654
+
21655
+ /** DiscoveryConfig processingLocation */
21656
+ processingLocation?: (google.privacy.dlp.v2.IProcessingLocation|null);
21645
21657
  }
21646
21658
 
21647
21659
  /** Represents a DiscoveryConfig. */
@@ -21689,6 +21701,9 @@ export namespace google {
21689
21701
  /** DiscoveryConfig status. */
21690
21702
  public status: (google.privacy.dlp.v2.DiscoveryConfig.Status|keyof typeof google.privacy.dlp.v2.DiscoveryConfig.Status);
21691
21703
 
21704
+ /** DiscoveryConfig processingLocation. */
21705
+ public processingLocation?: (google.privacy.dlp.v2.IProcessingLocation|null);
21706
+
21692
21707
  /**
21693
21708
  * Creates a new DiscoveryConfig instance using the specified properties.
21694
21709
  * @param [properties] Properties to set
@@ -21897,6 +21912,9 @@ export namespace google {
21897
21912
 
21898
21913
  /** DiscoveryTarget otherCloudTarget */
21899
21914
  otherCloudTarget?: (google.privacy.dlp.v2.IOtherCloudDiscoveryTarget|null);
21915
+
21916
+ /** DiscoveryTarget vertexDatasetTarget */
21917
+ vertexDatasetTarget?: (google.privacy.dlp.v2.IVertexDatasetDiscoveryTarget|null);
21900
21918
  }
21901
21919
 
21902
21920
  /** Represents a DiscoveryTarget. */
@@ -21923,8 +21941,11 @@ export namespace google {
21923
21941
  /** DiscoveryTarget otherCloudTarget. */
21924
21942
  public otherCloudTarget?: (google.privacy.dlp.v2.IOtherCloudDiscoveryTarget|null);
21925
21943
 
21944
+ /** DiscoveryTarget vertexDatasetTarget. */
21945
+ public vertexDatasetTarget?: (google.privacy.dlp.v2.IVertexDatasetDiscoveryTarget|null);
21946
+
21926
21947
  /** DiscoveryTarget target. */
21927
- public target?: ("bigQueryTarget"|"cloudSqlTarget"|"secretsTarget"|"cloudStorageTarget"|"otherCloudTarget");
21948
+ public target?: ("bigQueryTarget"|"cloudSqlTarget"|"secretsTarget"|"cloudStorageTarget"|"otherCloudTarget"|"vertexDatasetTarget");
21928
21949
 
21929
21950
  /**
21930
21951
  * Creates a new DiscoveryTarget instance using the specified properties.
@@ -27114,6 +27135,833 @@ export namespace google {
27114
27135
  public static getTypeUrl(typeUrlPrefix?: string): string;
27115
27136
  }
27116
27137
 
27138
+ /** Properties of a VertexDatasetDiscoveryTarget. */
27139
+ interface IVertexDatasetDiscoveryTarget {
27140
+
27141
+ /** VertexDatasetDiscoveryTarget filter */
27142
+ filter?: (google.privacy.dlp.v2.IDiscoveryVertexDatasetFilter|null);
27143
+
27144
+ /** VertexDatasetDiscoveryTarget conditions */
27145
+ conditions?: (google.privacy.dlp.v2.IDiscoveryVertexDatasetConditions|null);
27146
+
27147
+ /** VertexDatasetDiscoveryTarget generationCadence */
27148
+ generationCadence?: (google.privacy.dlp.v2.IDiscoveryVertexDatasetGenerationCadence|null);
27149
+
27150
+ /** VertexDatasetDiscoveryTarget disabled */
27151
+ disabled?: (google.privacy.dlp.v2.IDisabled|null);
27152
+ }
27153
+
27154
+ /** Represents a VertexDatasetDiscoveryTarget. */
27155
+ class VertexDatasetDiscoveryTarget implements IVertexDatasetDiscoveryTarget {
27156
+
27157
+ /**
27158
+ * Constructs a new VertexDatasetDiscoveryTarget.
27159
+ * @param [properties] Properties to set
27160
+ */
27161
+ constructor(properties?: google.privacy.dlp.v2.IVertexDatasetDiscoveryTarget);
27162
+
27163
+ /** VertexDatasetDiscoveryTarget filter. */
27164
+ public filter?: (google.privacy.dlp.v2.IDiscoveryVertexDatasetFilter|null);
27165
+
27166
+ /** VertexDatasetDiscoveryTarget conditions. */
27167
+ public conditions?: (google.privacy.dlp.v2.IDiscoveryVertexDatasetConditions|null);
27168
+
27169
+ /** VertexDatasetDiscoveryTarget generationCadence. */
27170
+ public generationCadence?: (google.privacy.dlp.v2.IDiscoveryVertexDatasetGenerationCadence|null);
27171
+
27172
+ /** VertexDatasetDiscoveryTarget disabled. */
27173
+ public disabled?: (google.privacy.dlp.v2.IDisabled|null);
27174
+
27175
+ /** VertexDatasetDiscoveryTarget cadence. */
27176
+ public cadence?: ("generationCadence"|"disabled");
27177
+
27178
+ /**
27179
+ * Creates a new VertexDatasetDiscoveryTarget instance using the specified properties.
27180
+ * @param [properties] Properties to set
27181
+ * @returns VertexDatasetDiscoveryTarget instance
27182
+ */
27183
+ public static create(properties?: google.privacy.dlp.v2.IVertexDatasetDiscoveryTarget): google.privacy.dlp.v2.VertexDatasetDiscoveryTarget;
27184
+
27185
+ /**
27186
+ * Encodes the specified VertexDatasetDiscoveryTarget message. Does not implicitly {@link google.privacy.dlp.v2.VertexDatasetDiscoveryTarget.verify|verify} messages.
27187
+ * @param message VertexDatasetDiscoveryTarget message or plain object to encode
27188
+ * @param [writer] Writer to encode to
27189
+ * @returns Writer
27190
+ */
27191
+ public static encode(message: google.privacy.dlp.v2.IVertexDatasetDiscoveryTarget, writer?: $protobuf.Writer): $protobuf.Writer;
27192
+
27193
+ /**
27194
+ * Encodes the specified VertexDatasetDiscoveryTarget message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.VertexDatasetDiscoveryTarget.verify|verify} messages.
27195
+ * @param message VertexDatasetDiscoveryTarget message or plain object to encode
27196
+ * @param [writer] Writer to encode to
27197
+ * @returns Writer
27198
+ */
27199
+ public static encodeDelimited(message: google.privacy.dlp.v2.IVertexDatasetDiscoveryTarget, writer?: $protobuf.Writer): $protobuf.Writer;
27200
+
27201
+ /**
27202
+ * Decodes a VertexDatasetDiscoveryTarget message from the specified reader or buffer.
27203
+ * @param reader Reader or buffer to decode from
27204
+ * @param [length] Message length if known beforehand
27205
+ * @returns VertexDatasetDiscoveryTarget
27206
+ * @throws {Error} If the payload is not a reader or valid buffer
27207
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27208
+ */
27209
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.VertexDatasetDiscoveryTarget;
27210
+
27211
+ /**
27212
+ * Decodes a VertexDatasetDiscoveryTarget message from the specified reader or buffer, length delimited.
27213
+ * @param reader Reader or buffer to decode from
27214
+ * @returns VertexDatasetDiscoveryTarget
27215
+ * @throws {Error} If the payload is not a reader or valid buffer
27216
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27217
+ */
27218
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.VertexDatasetDiscoveryTarget;
27219
+
27220
+ /**
27221
+ * Verifies a VertexDatasetDiscoveryTarget message.
27222
+ * @param message Plain object to verify
27223
+ * @returns `null` if valid, otherwise the reason why it is not
27224
+ */
27225
+ public static verify(message: { [k: string]: any }): (string|null);
27226
+
27227
+ /**
27228
+ * Creates a VertexDatasetDiscoveryTarget message from a plain object. Also converts values to their respective internal types.
27229
+ * @param object Plain object
27230
+ * @returns VertexDatasetDiscoveryTarget
27231
+ */
27232
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.VertexDatasetDiscoveryTarget;
27233
+
27234
+ /**
27235
+ * Creates a plain object from a VertexDatasetDiscoveryTarget message. Also converts values to other types if specified.
27236
+ * @param message VertexDatasetDiscoveryTarget
27237
+ * @param [options] Conversion options
27238
+ * @returns Plain object
27239
+ */
27240
+ public static toObject(message: google.privacy.dlp.v2.VertexDatasetDiscoveryTarget, options?: $protobuf.IConversionOptions): { [k: string]: any };
27241
+
27242
+ /**
27243
+ * Converts this VertexDatasetDiscoveryTarget to JSON.
27244
+ * @returns JSON object
27245
+ */
27246
+ public toJSON(): { [k: string]: any };
27247
+
27248
+ /**
27249
+ * Gets the default type url for VertexDatasetDiscoveryTarget
27250
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27251
+ * @returns The default type url
27252
+ */
27253
+ public static getTypeUrl(typeUrlPrefix?: string): string;
27254
+ }
27255
+
27256
+ /** Properties of a DiscoveryVertexDatasetFilter. */
27257
+ interface IDiscoveryVertexDatasetFilter {
27258
+
27259
+ /** DiscoveryVertexDatasetFilter collection */
27260
+ collection?: (google.privacy.dlp.v2.IVertexDatasetCollection|null);
27261
+
27262
+ /** DiscoveryVertexDatasetFilter vertexDatasetResourceReference */
27263
+ vertexDatasetResourceReference?: (google.privacy.dlp.v2.IVertexDatasetResourceReference|null);
27264
+
27265
+ /** DiscoveryVertexDatasetFilter others */
27266
+ others?: (google.privacy.dlp.v2.IAllOtherResources|null);
27267
+ }
27268
+
27269
+ /** Represents a DiscoveryVertexDatasetFilter. */
27270
+ class DiscoveryVertexDatasetFilter implements IDiscoveryVertexDatasetFilter {
27271
+
27272
+ /**
27273
+ * Constructs a new DiscoveryVertexDatasetFilter.
27274
+ * @param [properties] Properties to set
27275
+ */
27276
+ constructor(properties?: google.privacy.dlp.v2.IDiscoveryVertexDatasetFilter);
27277
+
27278
+ /** DiscoveryVertexDatasetFilter collection. */
27279
+ public collection?: (google.privacy.dlp.v2.IVertexDatasetCollection|null);
27280
+
27281
+ /** DiscoveryVertexDatasetFilter vertexDatasetResourceReference. */
27282
+ public vertexDatasetResourceReference?: (google.privacy.dlp.v2.IVertexDatasetResourceReference|null);
27283
+
27284
+ /** DiscoveryVertexDatasetFilter others. */
27285
+ public others?: (google.privacy.dlp.v2.IAllOtherResources|null);
27286
+
27287
+ /** DiscoveryVertexDatasetFilter filter. */
27288
+ public filter?: ("collection"|"vertexDatasetResourceReference"|"others");
27289
+
27290
+ /**
27291
+ * Creates a new DiscoveryVertexDatasetFilter instance using the specified properties.
27292
+ * @param [properties] Properties to set
27293
+ * @returns DiscoveryVertexDatasetFilter instance
27294
+ */
27295
+ public static create(properties?: google.privacy.dlp.v2.IDiscoveryVertexDatasetFilter): google.privacy.dlp.v2.DiscoveryVertexDatasetFilter;
27296
+
27297
+ /**
27298
+ * Encodes the specified DiscoveryVertexDatasetFilter message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryVertexDatasetFilter.verify|verify} messages.
27299
+ * @param message DiscoveryVertexDatasetFilter message or plain object to encode
27300
+ * @param [writer] Writer to encode to
27301
+ * @returns Writer
27302
+ */
27303
+ public static encode(message: google.privacy.dlp.v2.IDiscoveryVertexDatasetFilter, writer?: $protobuf.Writer): $protobuf.Writer;
27304
+
27305
+ /**
27306
+ * Encodes the specified DiscoveryVertexDatasetFilter message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryVertexDatasetFilter.verify|verify} messages.
27307
+ * @param message DiscoveryVertexDatasetFilter message or plain object to encode
27308
+ * @param [writer] Writer to encode to
27309
+ * @returns Writer
27310
+ */
27311
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryVertexDatasetFilter, writer?: $protobuf.Writer): $protobuf.Writer;
27312
+
27313
+ /**
27314
+ * Decodes a DiscoveryVertexDatasetFilter message from the specified reader or buffer.
27315
+ * @param reader Reader or buffer to decode from
27316
+ * @param [length] Message length if known beforehand
27317
+ * @returns DiscoveryVertexDatasetFilter
27318
+ * @throws {Error} If the payload is not a reader or valid buffer
27319
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27320
+ */
27321
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryVertexDatasetFilter;
27322
+
27323
+ /**
27324
+ * Decodes a DiscoveryVertexDatasetFilter message from the specified reader or buffer, length delimited.
27325
+ * @param reader Reader or buffer to decode from
27326
+ * @returns DiscoveryVertexDatasetFilter
27327
+ * @throws {Error} If the payload is not a reader or valid buffer
27328
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27329
+ */
27330
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryVertexDatasetFilter;
27331
+
27332
+ /**
27333
+ * Verifies a DiscoveryVertexDatasetFilter message.
27334
+ * @param message Plain object to verify
27335
+ * @returns `null` if valid, otherwise the reason why it is not
27336
+ */
27337
+ public static verify(message: { [k: string]: any }): (string|null);
27338
+
27339
+ /**
27340
+ * Creates a DiscoveryVertexDatasetFilter message from a plain object. Also converts values to their respective internal types.
27341
+ * @param object Plain object
27342
+ * @returns DiscoveryVertexDatasetFilter
27343
+ */
27344
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryVertexDatasetFilter;
27345
+
27346
+ /**
27347
+ * Creates a plain object from a DiscoveryVertexDatasetFilter message. Also converts values to other types if specified.
27348
+ * @param message DiscoveryVertexDatasetFilter
27349
+ * @param [options] Conversion options
27350
+ * @returns Plain object
27351
+ */
27352
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryVertexDatasetFilter, options?: $protobuf.IConversionOptions): { [k: string]: any };
27353
+
27354
+ /**
27355
+ * Converts this DiscoveryVertexDatasetFilter to JSON.
27356
+ * @returns JSON object
27357
+ */
27358
+ public toJSON(): { [k: string]: any };
27359
+
27360
+ /**
27361
+ * Gets the default type url for DiscoveryVertexDatasetFilter
27362
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27363
+ * @returns The default type url
27364
+ */
27365
+ public static getTypeUrl(typeUrlPrefix?: string): string;
27366
+ }
27367
+
27368
+ /** Properties of a VertexDatasetCollection. */
27369
+ interface IVertexDatasetCollection {
27370
+
27371
+ /** VertexDatasetCollection vertexDatasetRegexes */
27372
+ vertexDatasetRegexes?: (google.privacy.dlp.v2.IVertexDatasetRegexes|null);
27373
+ }
27374
+
27375
+ /** Represents a VertexDatasetCollection. */
27376
+ class VertexDatasetCollection implements IVertexDatasetCollection {
27377
+
27378
+ /**
27379
+ * Constructs a new VertexDatasetCollection.
27380
+ * @param [properties] Properties to set
27381
+ */
27382
+ constructor(properties?: google.privacy.dlp.v2.IVertexDatasetCollection);
27383
+
27384
+ /** VertexDatasetCollection vertexDatasetRegexes. */
27385
+ public vertexDatasetRegexes?: (google.privacy.dlp.v2.IVertexDatasetRegexes|null);
27386
+
27387
+ /** VertexDatasetCollection pattern. */
27388
+ public pattern?: "vertexDatasetRegexes";
27389
+
27390
+ /**
27391
+ * Creates a new VertexDatasetCollection instance using the specified properties.
27392
+ * @param [properties] Properties to set
27393
+ * @returns VertexDatasetCollection instance
27394
+ */
27395
+ public static create(properties?: google.privacy.dlp.v2.IVertexDatasetCollection): google.privacy.dlp.v2.VertexDatasetCollection;
27396
+
27397
+ /**
27398
+ * Encodes the specified VertexDatasetCollection message. Does not implicitly {@link google.privacy.dlp.v2.VertexDatasetCollection.verify|verify} messages.
27399
+ * @param message VertexDatasetCollection message or plain object to encode
27400
+ * @param [writer] Writer to encode to
27401
+ * @returns Writer
27402
+ */
27403
+ public static encode(message: google.privacy.dlp.v2.IVertexDatasetCollection, writer?: $protobuf.Writer): $protobuf.Writer;
27404
+
27405
+ /**
27406
+ * Encodes the specified VertexDatasetCollection message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.VertexDatasetCollection.verify|verify} messages.
27407
+ * @param message VertexDatasetCollection message or plain object to encode
27408
+ * @param [writer] Writer to encode to
27409
+ * @returns Writer
27410
+ */
27411
+ public static encodeDelimited(message: google.privacy.dlp.v2.IVertexDatasetCollection, writer?: $protobuf.Writer): $protobuf.Writer;
27412
+
27413
+ /**
27414
+ * Decodes a VertexDatasetCollection message from the specified reader or buffer.
27415
+ * @param reader Reader or buffer to decode from
27416
+ * @param [length] Message length if known beforehand
27417
+ * @returns VertexDatasetCollection
27418
+ * @throws {Error} If the payload is not a reader or valid buffer
27419
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27420
+ */
27421
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.VertexDatasetCollection;
27422
+
27423
+ /**
27424
+ * Decodes a VertexDatasetCollection message from the specified reader or buffer, length delimited.
27425
+ * @param reader Reader or buffer to decode from
27426
+ * @returns VertexDatasetCollection
27427
+ * @throws {Error} If the payload is not a reader or valid buffer
27428
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27429
+ */
27430
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.VertexDatasetCollection;
27431
+
27432
+ /**
27433
+ * Verifies a VertexDatasetCollection message.
27434
+ * @param message Plain object to verify
27435
+ * @returns `null` if valid, otherwise the reason why it is not
27436
+ */
27437
+ public static verify(message: { [k: string]: any }): (string|null);
27438
+
27439
+ /**
27440
+ * Creates a VertexDatasetCollection message from a plain object. Also converts values to their respective internal types.
27441
+ * @param object Plain object
27442
+ * @returns VertexDatasetCollection
27443
+ */
27444
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.VertexDatasetCollection;
27445
+
27446
+ /**
27447
+ * Creates a plain object from a VertexDatasetCollection message. Also converts values to other types if specified.
27448
+ * @param message VertexDatasetCollection
27449
+ * @param [options] Conversion options
27450
+ * @returns Plain object
27451
+ */
27452
+ public static toObject(message: google.privacy.dlp.v2.VertexDatasetCollection, options?: $protobuf.IConversionOptions): { [k: string]: any };
27453
+
27454
+ /**
27455
+ * Converts this VertexDatasetCollection to JSON.
27456
+ * @returns JSON object
27457
+ */
27458
+ public toJSON(): { [k: string]: any };
27459
+
27460
+ /**
27461
+ * Gets the default type url for VertexDatasetCollection
27462
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27463
+ * @returns The default type url
27464
+ */
27465
+ public static getTypeUrl(typeUrlPrefix?: string): string;
27466
+ }
27467
+
27468
+ /** Properties of a VertexDatasetRegexes. */
27469
+ interface IVertexDatasetRegexes {
27470
+
27471
+ /** VertexDatasetRegexes patterns */
27472
+ patterns?: (google.privacy.dlp.v2.IVertexDatasetRegex[]|null);
27473
+ }
27474
+
27475
+ /** Represents a VertexDatasetRegexes. */
27476
+ class VertexDatasetRegexes implements IVertexDatasetRegexes {
27477
+
27478
+ /**
27479
+ * Constructs a new VertexDatasetRegexes.
27480
+ * @param [properties] Properties to set
27481
+ */
27482
+ constructor(properties?: google.privacy.dlp.v2.IVertexDatasetRegexes);
27483
+
27484
+ /** VertexDatasetRegexes patterns. */
27485
+ public patterns: google.privacy.dlp.v2.IVertexDatasetRegex[];
27486
+
27487
+ /**
27488
+ * Creates a new VertexDatasetRegexes instance using the specified properties.
27489
+ * @param [properties] Properties to set
27490
+ * @returns VertexDatasetRegexes instance
27491
+ */
27492
+ public static create(properties?: google.privacy.dlp.v2.IVertexDatasetRegexes): google.privacy.dlp.v2.VertexDatasetRegexes;
27493
+
27494
+ /**
27495
+ * Encodes the specified VertexDatasetRegexes message. Does not implicitly {@link google.privacy.dlp.v2.VertexDatasetRegexes.verify|verify} messages.
27496
+ * @param message VertexDatasetRegexes message or plain object to encode
27497
+ * @param [writer] Writer to encode to
27498
+ * @returns Writer
27499
+ */
27500
+ public static encode(message: google.privacy.dlp.v2.IVertexDatasetRegexes, writer?: $protobuf.Writer): $protobuf.Writer;
27501
+
27502
+ /**
27503
+ * Encodes the specified VertexDatasetRegexes message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.VertexDatasetRegexes.verify|verify} messages.
27504
+ * @param message VertexDatasetRegexes message or plain object to encode
27505
+ * @param [writer] Writer to encode to
27506
+ * @returns Writer
27507
+ */
27508
+ public static encodeDelimited(message: google.privacy.dlp.v2.IVertexDatasetRegexes, writer?: $protobuf.Writer): $protobuf.Writer;
27509
+
27510
+ /**
27511
+ * Decodes a VertexDatasetRegexes message from the specified reader or buffer.
27512
+ * @param reader Reader or buffer to decode from
27513
+ * @param [length] Message length if known beforehand
27514
+ * @returns VertexDatasetRegexes
27515
+ * @throws {Error} If the payload is not a reader or valid buffer
27516
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27517
+ */
27518
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.VertexDatasetRegexes;
27519
+
27520
+ /**
27521
+ * Decodes a VertexDatasetRegexes message from the specified reader or buffer, length delimited.
27522
+ * @param reader Reader or buffer to decode from
27523
+ * @returns VertexDatasetRegexes
27524
+ * @throws {Error} If the payload is not a reader or valid buffer
27525
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27526
+ */
27527
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.VertexDatasetRegexes;
27528
+
27529
+ /**
27530
+ * Verifies a VertexDatasetRegexes message.
27531
+ * @param message Plain object to verify
27532
+ * @returns `null` if valid, otherwise the reason why it is not
27533
+ */
27534
+ public static verify(message: { [k: string]: any }): (string|null);
27535
+
27536
+ /**
27537
+ * Creates a VertexDatasetRegexes message from a plain object. Also converts values to their respective internal types.
27538
+ * @param object Plain object
27539
+ * @returns VertexDatasetRegexes
27540
+ */
27541
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.VertexDatasetRegexes;
27542
+
27543
+ /**
27544
+ * Creates a plain object from a VertexDatasetRegexes message. Also converts values to other types if specified.
27545
+ * @param message VertexDatasetRegexes
27546
+ * @param [options] Conversion options
27547
+ * @returns Plain object
27548
+ */
27549
+ public static toObject(message: google.privacy.dlp.v2.VertexDatasetRegexes, options?: $protobuf.IConversionOptions): { [k: string]: any };
27550
+
27551
+ /**
27552
+ * Converts this VertexDatasetRegexes to JSON.
27553
+ * @returns JSON object
27554
+ */
27555
+ public toJSON(): { [k: string]: any };
27556
+
27557
+ /**
27558
+ * Gets the default type url for VertexDatasetRegexes
27559
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27560
+ * @returns The default type url
27561
+ */
27562
+ public static getTypeUrl(typeUrlPrefix?: string): string;
27563
+ }
27564
+
27565
+ /** Properties of a VertexDatasetRegex. */
27566
+ interface IVertexDatasetRegex {
27567
+
27568
+ /** VertexDatasetRegex projectIdRegex */
27569
+ projectIdRegex?: (string|null);
27570
+ }
27571
+
27572
+ /** Represents a VertexDatasetRegex. */
27573
+ class VertexDatasetRegex implements IVertexDatasetRegex {
27574
+
27575
+ /**
27576
+ * Constructs a new VertexDatasetRegex.
27577
+ * @param [properties] Properties to set
27578
+ */
27579
+ constructor(properties?: google.privacy.dlp.v2.IVertexDatasetRegex);
27580
+
27581
+ /** VertexDatasetRegex projectIdRegex. */
27582
+ public projectIdRegex: string;
27583
+
27584
+ /**
27585
+ * Creates a new VertexDatasetRegex instance using the specified properties.
27586
+ * @param [properties] Properties to set
27587
+ * @returns VertexDatasetRegex instance
27588
+ */
27589
+ public static create(properties?: google.privacy.dlp.v2.IVertexDatasetRegex): google.privacy.dlp.v2.VertexDatasetRegex;
27590
+
27591
+ /**
27592
+ * Encodes the specified VertexDatasetRegex message. Does not implicitly {@link google.privacy.dlp.v2.VertexDatasetRegex.verify|verify} messages.
27593
+ * @param message VertexDatasetRegex message or plain object to encode
27594
+ * @param [writer] Writer to encode to
27595
+ * @returns Writer
27596
+ */
27597
+ public static encode(message: google.privacy.dlp.v2.IVertexDatasetRegex, writer?: $protobuf.Writer): $protobuf.Writer;
27598
+
27599
+ /**
27600
+ * Encodes the specified VertexDatasetRegex message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.VertexDatasetRegex.verify|verify} messages.
27601
+ * @param message VertexDatasetRegex message or plain object to encode
27602
+ * @param [writer] Writer to encode to
27603
+ * @returns Writer
27604
+ */
27605
+ public static encodeDelimited(message: google.privacy.dlp.v2.IVertexDatasetRegex, writer?: $protobuf.Writer): $protobuf.Writer;
27606
+
27607
+ /**
27608
+ * Decodes a VertexDatasetRegex message from the specified reader or buffer.
27609
+ * @param reader Reader or buffer to decode from
27610
+ * @param [length] Message length if known beforehand
27611
+ * @returns VertexDatasetRegex
27612
+ * @throws {Error} If the payload is not a reader or valid buffer
27613
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27614
+ */
27615
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.VertexDatasetRegex;
27616
+
27617
+ /**
27618
+ * Decodes a VertexDatasetRegex message from the specified reader or buffer, length delimited.
27619
+ * @param reader Reader or buffer to decode from
27620
+ * @returns VertexDatasetRegex
27621
+ * @throws {Error} If the payload is not a reader or valid buffer
27622
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27623
+ */
27624
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.VertexDatasetRegex;
27625
+
27626
+ /**
27627
+ * Verifies a VertexDatasetRegex message.
27628
+ * @param message Plain object to verify
27629
+ * @returns `null` if valid, otherwise the reason why it is not
27630
+ */
27631
+ public static verify(message: { [k: string]: any }): (string|null);
27632
+
27633
+ /**
27634
+ * Creates a VertexDatasetRegex message from a plain object. Also converts values to their respective internal types.
27635
+ * @param object Plain object
27636
+ * @returns VertexDatasetRegex
27637
+ */
27638
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.VertexDatasetRegex;
27639
+
27640
+ /**
27641
+ * Creates a plain object from a VertexDatasetRegex message. Also converts values to other types if specified.
27642
+ * @param message VertexDatasetRegex
27643
+ * @param [options] Conversion options
27644
+ * @returns Plain object
27645
+ */
27646
+ public static toObject(message: google.privacy.dlp.v2.VertexDatasetRegex, options?: $protobuf.IConversionOptions): { [k: string]: any };
27647
+
27648
+ /**
27649
+ * Converts this VertexDatasetRegex to JSON.
27650
+ * @returns JSON object
27651
+ */
27652
+ public toJSON(): { [k: string]: any };
27653
+
27654
+ /**
27655
+ * Gets the default type url for VertexDatasetRegex
27656
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27657
+ * @returns The default type url
27658
+ */
27659
+ public static getTypeUrl(typeUrlPrefix?: string): string;
27660
+ }
27661
+
27662
+ /** Properties of a VertexDatasetResourceReference. */
27663
+ interface IVertexDatasetResourceReference {
27664
+
27665
+ /** VertexDatasetResourceReference datasetResourceName */
27666
+ datasetResourceName?: (string|null);
27667
+ }
27668
+
27669
+ /** Represents a VertexDatasetResourceReference. */
27670
+ class VertexDatasetResourceReference implements IVertexDatasetResourceReference {
27671
+
27672
+ /**
27673
+ * Constructs a new VertexDatasetResourceReference.
27674
+ * @param [properties] Properties to set
27675
+ */
27676
+ constructor(properties?: google.privacy.dlp.v2.IVertexDatasetResourceReference);
27677
+
27678
+ /** VertexDatasetResourceReference datasetResourceName. */
27679
+ public datasetResourceName: string;
27680
+
27681
+ /**
27682
+ * Creates a new VertexDatasetResourceReference instance using the specified properties.
27683
+ * @param [properties] Properties to set
27684
+ * @returns VertexDatasetResourceReference instance
27685
+ */
27686
+ public static create(properties?: google.privacy.dlp.v2.IVertexDatasetResourceReference): google.privacy.dlp.v2.VertexDatasetResourceReference;
27687
+
27688
+ /**
27689
+ * Encodes the specified VertexDatasetResourceReference message. Does not implicitly {@link google.privacy.dlp.v2.VertexDatasetResourceReference.verify|verify} messages.
27690
+ * @param message VertexDatasetResourceReference message or plain object to encode
27691
+ * @param [writer] Writer to encode to
27692
+ * @returns Writer
27693
+ */
27694
+ public static encode(message: google.privacy.dlp.v2.IVertexDatasetResourceReference, writer?: $protobuf.Writer): $protobuf.Writer;
27695
+
27696
+ /**
27697
+ * Encodes the specified VertexDatasetResourceReference message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.VertexDatasetResourceReference.verify|verify} messages.
27698
+ * @param message VertexDatasetResourceReference message or plain object to encode
27699
+ * @param [writer] Writer to encode to
27700
+ * @returns Writer
27701
+ */
27702
+ public static encodeDelimited(message: google.privacy.dlp.v2.IVertexDatasetResourceReference, writer?: $protobuf.Writer): $protobuf.Writer;
27703
+
27704
+ /**
27705
+ * Decodes a VertexDatasetResourceReference message from the specified reader or buffer.
27706
+ * @param reader Reader or buffer to decode from
27707
+ * @param [length] Message length if known beforehand
27708
+ * @returns VertexDatasetResourceReference
27709
+ * @throws {Error} If the payload is not a reader or valid buffer
27710
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27711
+ */
27712
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.VertexDatasetResourceReference;
27713
+
27714
+ /**
27715
+ * Decodes a VertexDatasetResourceReference message from the specified reader or buffer, length delimited.
27716
+ * @param reader Reader or buffer to decode from
27717
+ * @returns VertexDatasetResourceReference
27718
+ * @throws {Error} If the payload is not a reader or valid buffer
27719
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27720
+ */
27721
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.VertexDatasetResourceReference;
27722
+
27723
+ /**
27724
+ * Verifies a VertexDatasetResourceReference message.
27725
+ * @param message Plain object to verify
27726
+ * @returns `null` if valid, otherwise the reason why it is not
27727
+ */
27728
+ public static verify(message: { [k: string]: any }): (string|null);
27729
+
27730
+ /**
27731
+ * Creates a VertexDatasetResourceReference message from a plain object. Also converts values to their respective internal types.
27732
+ * @param object Plain object
27733
+ * @returns VertexDatasetResourceReference
27734
+ */
27735
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.VertexDatasetResourceReference;
27736
+
27737
+ /**
27738
+ * Creates a plain object from a VertexDatasetResourceReference message. Also converts values to other types if specified.
27739
+ * @param message VertexDatasetResourceReference
27740
+ * @param [options] Conversion options
27741
+ * @returns Plain object
27742
+ */
27743
+ public static toObject(message: google.privacy.dlp.v2.VertexDatasetResourceReference, options?: $protobuf.IConversionOptions): { [k: string]: any };
27744
+
27745
+ /**
27746
+ * Converts this VertexDatasetResourceReference to JSON.
27747
+ * @returns JSON object
27748
+ */
27749
+ public toJSON(): { [k: string]: any };
27750
+
27751
+ /**
27752
+ * Gets the default type url for VertexDatasetResourceReference
27753
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27754
+ * @returns The default type url
27755
+ */
27756
+ public static getTypeUrl(typeUrlPrefix?: string): string;
27757
+ }
27758
+
27759
+ /** Properties of a DiscoveryVertexDatasetConditions. */
27760
+ interface IDiscoveryVertexDatasetConditions {
27761
+
27762
+ /** DiscoveryVertexDatasetConditions createdAfter */
27763
+ createdAfter?: (google.protobuf.ITimestamp|null);
27764
+
27765
+ /** DiscoveryVertexDatasetConditions minAge */
27766
+ minAge?: (google.protobuf.IDuration|null);
27767
+ }
27768
+
27769
+ /** Represents a DiscoveryVertexDatasetConditions. */
27770
+ class DiscoveryVertexDatasetConditions implements IDiscoveryVertexDatasetConditions {
27771
+
27772
+ /**
27773
+ * Constructs a new DiscoveryVertexDatasetConditions.
27774
+ * @param [properties] Properties to set
27775
+ */
27776
+ constructor(properties?: google.privacy.dlp.v2.IDiscoveryVertexDatasetConditions);
27777
+
27778
+ /** DiscoveryVertexDatasetConditions createdAfter. */
27779
+ public createdAfter?: (google.protobuf.ITimestamp|null);
27780
+
27781
+ /** DiscoveryVertexDatasetConditions minAge. */
27782
+ public minAge?: (google.protobuf.IDuration|null);
27783
+
27784
+ /**
27785
+ * Creates a new DiscoveryVertexDatasetConditions instance using the specified properties.
27786
+ * @param [properties] Properties to set
27787
+ * @returns DiscoveryVertexDatasetConditions instance
27788
+ */
27789
+ public static create(properties?: google.privacy.dlp.v2.IDiscoveryVertexDatasetConditions): google.privacy.dlp.v2.DiscoveryVertexDatasetConditions;
27790
+
27791
+ /**
27792
+ * Encodes the specified DiscoveryVertexDatasetConditions message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryVertexDatasetConditions.verify|verify} messages.
27793
+ * @param message DiscoveryVertexDatasetConditions message or plain object to encode
27794
+ * @param [writer] Writer to encode to
27795
+ * @returns Writer
27796
+ */
27797
+ public static encode(message: google.privacy.dlp.v2.IDiscoveryVertexDatasetConditions, writer?: $protobuf.Writer): $protobuf.Writer;
27798
+
27799
+ /**
27800
+ * Encodes the specified DiscoveryVertexDatasetConditions message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryVertexDatasetConditions.verify|verify} messages.
27801
+ * @param message DiscoveryVertexDatasetConditions message or plain object to encode
27802
+ * @param [writer] Writer to encode to
27803
+ * @returns Writer
27804
+ */
27805
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryVertexDatasetConditions, writer?: $protobuf.Writer): $protobuf.Writer;
27806
+
27807
+ /**
27808
+ * Decodes a DiscoveryVertexDatasetConditions message from the specified reader or buffer.
27809
+ * @param reader Reader or buffer to decode from
27810
+ * @param [length] Message length if known beforehand
27811
+ * @returns DiscoveryVertexDatasetConditions
27812
+ * @throws {Error} If the payload is not a reader or valid buffer
27813
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27814
+ */
27815
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryVertexDatasetConditions;
27816
+
27817
+ /**
27818
+ * Decodes a DiscoveryVertexDatasetConditions message from the specified reader or buffer, length delimited.
27819
+ * @param reader Reader or buffer to decode from
27820
+ * @returns DiscoveryVertexDatasetConditions
27821
+ * @throws {Error} If the payload is not a reader or valid buffer
27822
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27823
+ */
27824
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryVertexDatasetConditions;
27825
+
27826
+ /**
27827
+ * Verifies a DiscoveryVertexDatasetConditions message.
27828
+ * @param message Plain object to verify
27829
+ * @returns `null` if valid, otherwise the reason why it is not
27830
+ */
27831
+ public static verify(message: { [k: string]: any }): (string|null);
27832
+
27833
+ /**
27834
+ * Creates a DiscoveryVertexDatasetConditions message from a plain object. Also converts values to their respective internal types.
27835
+ * @param object Plain object
27836
+ * @returns DiscoveryVertexDatasetConditions
27837
+ */
27838
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryVertexDatasetConditions;
27839
+
27840
+ /**
27841
+ * Creates a plain object from a DiscoveryVertexDatasetConditions message. Also converts values to other types if specified.
27842
+ * @param message DiscoveryVertexDatasetConditions
27843
+ * @param [options] Conversion options
27844
+ * @returns Plain object
27845
+ */
27846
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryVertexDatasetConditions, options?: $protobuf.IConversionOptions): { [k: string]: any };
27847
+
27848
+ /**
27849
+ * Converts this DiscoveryVertexDatasetConditions to JSON.
27850
+ * @returns JSON object
27851
+ */
27852
+ public toJSON(): { [k: string]: any };
27853
+
27854
+ /**
27855
+ * Gets the default type url for DiscoveryVertexDatasetConditions
27856
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27857
+ * @returns The default type url
27858
+ */
27859
+ public static getTypeUrl(typeUrlPrefix?: string): string;
27860
+ }
27861
+
27862
+ /** Properties of a DiscoveryVertexDatasetGenerationCadence. */
27863
+ interface IDiscoveryVertexDatasetGenerationCadence {
27864
+
27865
+ /** DiscoveryVertexDatasetGenerationCadence refreshFrequency */
27866
+ refreshFrequency?: (google.privacy.dlp.v2.DataProfileUpdateFrequency|keyof typeof google.privacy.dlp.v2.DataProfileUpdateFrequency|null);
27867
+
27868
+ /** DiscoveryVertexDatasetGenerationCadence inspectTemplateModifiedCadence */
27869
+ inspectTemplateModifiedCadence?: (google.privacy.dlp.v2.IDiscoveryInspectTemplateModifiedCadence|null);
27870
+ }
27871
+
27872
+ /** Represents a DiscoveryVertexDatasetGenerationCadence. */
27873
+ class DiscoveryVertexDatasetGenerationCadence implements IDiscoveryVertexDatasetGenerationCadence {
27874
+
27875
+ /**
27876
+ * Constructs a new DiscoveryVertexDatasetGenerationCadence.
27877
+ * @param [properties] Properties to set
27878
+ */
27879
+ constructor(properties?: google.privacy.dlp.v2.IDiscoveryVertexDatasetGenerationCadence);
27880
+
27881
+ /** DiscoveryVertexDatasetGenerationCadence refreshFrequency. */
27882
+ public refreshFrequency: (google.privacy.dlp.v2.DataProfileUpdateFrequency|keyof typeof google.privacy.dlp.v2.DataProfileUpdateFrequency);
27883
+
27884
+ /** DiscoveryVertexDatasetGenerationCadence inspectTemplateModifiedCadence. */
27885
+ public inspectTemplateModifiedCadence?: (google.privacy.dlp.v2.IDiscoveryInspectTemplateModifiedCadence|null);
27886
+
27887
+ /**
27888
+ * Creates a new DiscoveryVertexDatasetGenerationCadence instance using the specified properties.
27889
+ * @param [properties] Properties to set
27890
+ * @returns DiscoveryVertexDatasetGenerationCadence instance
27891
+ */
27892
+ public static create(properties?: google.privacy.dlp.v2.IDiscoveryVertexDatasetGenerationCadence): google.privacy.dlp.v2.DiscoveryVertexDatasetGenerationCadence;
27893
+
27894
+ /**
27895
+ * Encodes the specified DiscoveryVertexDatasetGenerationCadence message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryVertexDatasetGenerationCadence.verify|verify} messages.
27896
+ * @param message DiscoveryVertexDatasetGenerationCadence message or plain object to encode
27897
+ * @param [writer] Writer to encode to
27898
+ * @returns Writer
27899
+ */
27900
+ public static encode(message: google.privacy.dlp.v2.IDiscoveryVertexDatasetGenerationCadence, writer?: $protobuf.Writer): $protobuf.Writer;
27901
+
27902
+ /**
27903
+ * Encodes the specified DiscoveryVertexDatasetGenerationCadence message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryVertexDatasetGenerationCadence.verify|verify} messages.
27904
+ * @param message DiscoveryVertexDatasetGenerationCadence message or plain object to encode
27905
+ * @param [writer] Writer to encode to
27906
+ * @returns Writer
27907
+ */
27908
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryVertexDatasetGenerationCadence, writer?: $protobuf.Writer): $protobuf.Writer;
27909
+
27910
+ /**
27911
+ * Decodes a DiscoveryVertexDatasetGenerationCadence message from the specified reader or buffer.
27912
+ * @param reader Reader or buffer to decode from
27913
+ * @param [length] Message length if known beforehand
27914
+ * @returns DiscoveryVertexDatasetGenerationCadence
27915
+ * @throws {Error} If the payload is not a reader or valid buffer
27916
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27917
+ */
27918
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryVertexDatasetGenerationCadence;
27919
+
27920
+ /**
27921
+ * Decodes a DiscoveryVertexDatasetGenerationCadence message from the specified reader or buffer, length delimited.
27922
+ * @param reader Reader or buffer to decode from
27923
+ * @returns DiscoveryVertexDatasetGenerationCadence
27924
+ * @throws {Error} If the payload is not a reader or valid buffer
27925
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27926
+ */
27927
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryVertexDatasetGenerationCadence;
27928
+
27929
+ /**
27930
+ * Verifies a DiscoveryVertexDatasetGenerationCadence message.
27931
+ * @param message Plain object to verify
27932
+ * @returns `null` if valid, otherwise the reason why it is not
27933
+ */
27934
+ public static verify(message: { [k: string]: any }): (string|null);
27935
+
27936
+ /**
27937
+ * Creates a DiscoveryVertexDatasetGenerationCadence message from a plain object. Also converts values to their respective internal types.
27938
+ * @param object Plain object
27939
+ * @returns DiscoveryVertexDatasetGenerationCadence
27940
+ */
27941
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryVertexDatasetGenerationCadence;
27942
+
27943
+ /**
27944
+ * Creates a plain object from a DiscoveryVertexDatasetGenerationCadence message. Also converts values to other types if specified.
27945
+ * @param message DiscoveryVertexDatasetGenerationCadence
27946
+ * @param [options] Conversion options
27947
+ * @returns Plain object
27948
+ */
27949
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryVertexDatasetGenerationCadence, options?: $protobuf.IConversionOptions): { [k: string]: any };
27950
+
27951
+ /**
27952
+ * Converts this DiscoveryVertexDatasetGenerationCadence to JSON.
27953
+ * @returns JSON object
27954
+ */
27955
+ public toJSON(): { [k: string]: any };
27956
+
27957
+ /**
27958
+ * Gets the default type url for DiscoveryVertexDatasetGenerationCadence
27959
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27960
+ * @returns The default type url
27961
+ */
27962
+ public static getTypeUrl(typeUrlPrefix?: string): string;
27963
+ }
27964
+
27117
27965
  /** Properties of a DlpJob. */
27118
27966
  interface IDlpJob {
27119
27967
 
@@ -31571,6 +32419,9 @@ export namespace google {
31571
32419
 
31572
32420
  /** TableDataProfile createTime */
31573
32421
  createTime?: (google.protobuf.ITimestamp|null);
32422
+
32423
+ /** TableDataProfile relatedResources */
32424
+ relatedResources?: (google.privacy.dlp.v2.IRelatedResource[]|null);
31574
32425
  }
31575
32426
 
31576
32427
  /** Represents a TableDataProfile. */
@@ -31660,6 +32511,9 @@ export namespace google {
31660
32511
  /** TableDataProfile createTime. */
31661
32512
  public createTime?: (google.protobuf.ITimestamp|null);
31662
32513
 
32514
+ /** TableDataProfile relatedResources. */
32515
+ public relatedResources: google.privacy.dlp.v2.IRelatedResource[];
32516
+
31663
32517
  /**
31664
32518
  * Creates a new TableDataProfile instance using the specified properties.
31665
32519
  * @param [properties] Properties to set
@@ -32408,6 +33262,9 @@ export namespace google {
32408
33262
 
32409
33263
  /** FileStoreDataProfile fileStoreIsEmpty */
32410
33264
  fileStoreIsEmpty?: (boolean|null);
33265
+
33266
+ /** FileStoreDataProfile relatedResources */
33267
+ relatedResources?: (google.privacy.dlp.v2.IRelatedResource[]|null);
32411
33268
  }
32412
33269
 
32413
33270
  /** Represents a FileStoreDataProfile. */
@@ -32488,6 +33345,9 @@ export namespace google {
32488
33345
  /** FileStoreDataProfile fileStoreIsEmpty. */
32489
33346
  public fileStoreIsEmpty: boolean;
32490
33347
 
33348
+ /** FileStoreDataProfile relatedResources. */
33349
+ public relatedResources: google.privacy.dlp.v2.IRelatedResource[];
33350
+
32491
33351
  /**
32492
33352
  * Creates a new FileStoreDataProfile instance using the specified properties.
32493
33353
  * @param [properties] Properties to set
@@ -32576,6 +33436,103 @@ export namespace google {
32576
33436
  }
32577
33437
  }
32578
33438
 
33439
+ /** Properties of a RelatedResource. */
33440
+ interface IRelatedResource {
33441
+
33442
+ /** RelatedResource fullResource */
33443
+ fullResource?: (string|null);
33444
+ }
33445
+
33446
+ /** Represents a RelatedResource. */
33447
+ class RelatedResource implements IRelatedResource {
33448
+
33449
+ /**
33450
+ * Constructs a new RelatedResource.
33451
+ * @param [properties] Properties to set
33452
+ */
33453
+ constructor(properties?: google.privacy.dlp.v2.IRelatedResource);
33454
+
33455
+ /** RelatedResource fullResource. */
33456
+ public fullResource: string;
33457
+
33458
+ /**
33459
+ * Creates a new RelatedResource instance using the specified properties.
33460
+ * @param [properties] Properties to set
33461
+ * @returns RelatedResource instance
33462
+ */
33463
+ public static create(properties?: google.privacy.dlp.v2.IRelatedResource): google.privacy.dlp.v2.RelatedResource;
33464
+
33465
+ /**
33466
+ * Encodes the specified RelatedResource message. Does not implicitly {@link google.privacy.dlp.v2.RelatedResource.verify|verify} messages.
33467
+ * @param message RelatedResource message or plain object to encode
33468
+ * @param [writer] Writer to encode to
33469
+ * @returns Writer
33470
+ */
33471
+ public static encode(message: google.privacy.dlp.v2.IRelatedResource, writer?: $protobuf.Writer): $protobuf.Writer;
33472
+
33473
+ /**
33474
+ * Encodes the specified RelatedResource message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.RelatedResource.verify|verify} messages.
33475
+ * @param message RelatedResource message or plain object to encode
33476
+ * @param [writer] Writer to encode to
33477
+ * @returns Writer
33478
+ */
33479
+ public static encodeDelimited(message: google.privacy.dlp.v2.IRelatedResource, writer?: $protobuf.Writer): $protobuf.Writer;
33480
+
33481
+ /**
33482
+ * Decodes a RelatedResource message from the specified reader or buffer.
33483
+ * @param reader Reader or buffer to decode from
33484
+ * @param [length] Message length if known beforehand
33485
+ * @returns RelatedResource
33486
+ * @throws {Error} If the payload is not a reader or valid buffer
33487
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
33488
+ */
33489
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.RelatedResource;
33490
+
33491
+ /**
33492
+ * Decodes a RelatedResource message from the specified reader or buffer, length delimited.
33493
+ * @param reader Reader or buffer to decode from
33494
+ * @returns RelatedResource
33495
+ * @throws {Error} If the payload is not a reader or valid buffer
33496
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
33497
+ */
33498
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.RelatedResource;
33499
+
33500
+ /**
33501
+ * Verifies a RelatedResource message.
33502
+ * @param message Plain object to verify
33503
+ * @returns `null` if valid, otherwise the reason why it is not
33504
+ */
33505
+ public static verify(message: { [k: string]: any }): (string|null);
33506
+
33507
+ /**
33508
+ * Creates a RelatedResource message from a plain object. Also converts values to their respective internal types.
33509
+ * @param object Plain object
33510
+ * @returns RelatedResource
33511
+ */
33512
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.RelatedResource;
33513
+
33514
+ /**
33515
+ * Creates a plain object from a RelatedResource message. Also converts values to other types if specified.
33516
+ * @param message RelatedResource
33517
+ * @param [options] Conversion options
33518
+ * @returns Plain object
33519
+ */
33520
+ public static toObject(message: google.privacy.dlp.v2.RelatedResource, options?: $protobuf.IConversionOptions): { [k: string]: any };
33521
+
33522
+ /**
33523
+ * Converts this RelatedResource to JSON.
33524
+ * @returns JSON object
33525
+ */
33526
+ public toJSON(): { [k: string]: any };
33527
+
33528
+ /**
33529
+ * Gets the default type url for RelatedResource
33530
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
33531
+ * @returns The default type url
33532
+ */
33533
+ public static getTypeUrl(typeUrlPrefix?: string): string;
33534
+ }
33535
+
32579
33536
  /** Properties of a FileStoreInfoTypeSummary. */
32580
33537
  interface IFileStoreInfoTypeSummary {
32581
33538
 
@@ -35656,7 +36613,393 @@ export namespace google {
35656
36613
  CLUSTER_IMAGE = 6,
35657
36614
  CLUSTER_ARCHIVE = 7,
35658
36615
  CLUSTER_MULTIMEDIA = 8,
35659
- CLUSTER_EXECUTABLE = 9
36616
+ CLUSTER_EXECUTABLE = 9,
36617
+ CLUSTER_AI_MODEL = 10
36618
+ }
36619
+ }
36620
+
36621
+ /** Properties of a ProcessingLocation. */
36622
+ interface IProcessingLocation {
36623
+
36624
+ /** ProcessingLocation imageFallbackLocation */
36625
+ imageFallbackLocation?: (google.privacy.dlp.v2.ProcessingLocation.IImageFallbackLocation|null);
36626
+ }
36627
+
36628
+ /** Represents a ProcessingLocation. */
36629
+ class ProcessingLocation implements IProcessingLocation {
36630
+
36631
+ /**
36632
+ * Constructs a new ProcessingLocation.
36633
+ * @param [properties] Properties to set
36634
+ */
36635
+ constructor(properties?: google.privacy.dlp.v2.IProcessingLocation);
36636
+
36637
+ /** ProcessingLocation imageFallbackLocation. */
36638
+ public imageFallbackLocation?: (google.privacy.dlp.v2.ProcessingLocation.IImageFallbackLocation|null);
36639
+
36640
+ /**
36641
+ * Creates a new ProcessingLocation instance using the specified properties.
36642
+ * @param [properties] Properties to set
36643
+ * @returns ProcessingLocation instance
36644
+ */
36645
+ public static create(properties?: google.privacy.dlp.v2.IProcessingLocation): google.privacy.dlp.v2.ProcessingLocation;
36646
+
36647
+ /**
36648
+ * Encodes the specified ProcessingLocation message. Does not implicitly {@link google.privacy.dlp.v2.ProcessingLocation.verify|verify} messages.
36649
+ * @param message ProcessingLocation message or plain object to encode
36650
+ * @param [writer] Writer to encode to
36651
+ * @returns Writer
36652
+ */
36653
+ public static encode(message: google.privacy.dlp.v2.IProcessingLocation, writer?: $protobuf.Writer): $protobuf.Writer;
36654
+
36655
+ /**
36656
+ * Encodes the specified ProcessingLocation message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ProcessingLocation.verify|verify} messages.
36657
+ * @param message ProcessingLocation message or plain object to encode
36658
+ * @param [writer] Writer to encode to
36659
+ * @returns Writer
36660
+ */
36661
+ public static encodeDelimited(message: google.privacy.dlp.v2.IProcessingLocation, writer?: $protobuf.Writer): $protobuf.Writer;
36662
+
36663
+ /**
36664
+ * Decodes a ProcessingLocation message from the specified reader or buffer.
36665
+ * @param reader Reader or buffer to decode from
36666
+ * @param [length] Message length if known beforehand
36667
+ * @returns ProcessingLocation
36668
+ * @throws {Error} If the payload is not a reader or valid buffer
36669
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
36670
+ */
36671
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ProcessingLocation;
36672
+
36673
+ /**
36674
+ * Decodes a ProcessingLocation message from the specified reader or buffer, length delimited.
36675
+ * @param reader Reader or buffer to decode from
36676
+ * @returns ProcessingLocation
36677
+ * @throws {Error} If the payload is not a reader or valid buffer
36678
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
36679
+ */
36680
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ProcessingLocation;
36681
+
36682
+ /**
36683
+ * Verifies a ProcessingLocation message.
36684
+ * @param message Plain object to verify
36685
+ * @returns `null` if valid, otherwise the reason why it is not
36686
+ */
36687
+ public static verify(message: { [k: string]: any }): (string|null);
36688
+
36689
+ /**
36690
+ * Creates a ProcessingLocation message from a plain object. Also converts values to their respective internal types.
36691
+ * @param object Plain object
36692
+ * @returns ProcessingLocation
36693
+ */
36694
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ProcessingLocation;
36695
+
36696
+ /**
36697
+ * Creates a plain object from a ProcessingLocation message. Also converts values to other types if specified.
36698
+ * @param message ProcessingLocation
36699
+ * @param [options] Conversion options
36700
+ * @returns Plain object
36701
+ */
36702
+ public static toObject(message: google.privacy.dlp.v2.ProcessingLocation, options?: $protobuf.IConversionOptions): { [k: string]: any };
36703
+
36704
+ /**
36705
+ * Converts this ProcessingLocation to JSON.
36706
+ * @returns JSON object
36707
+ */
36708
+ public toJSON(): { [k: string]: any };
36709
+
36710
+ /**
36711
+ * Gets the default type url for ProcessingLocation
36712
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
36713
+ * @returns The default type url
36714
+ */
36715
+ public static getTypeUrl(typeUrlPrefix?: string): string;
36716
+ }
36717
+
36718
+ namespace ProcessingLocation {
36719
+
36720
+ /** Properties of a MultiRegionProcessing. */
36721
+ interface IMultiRegionProcessing {
36722
+ }
36723
+
36724
+ /** Represents a MultiRegionProcessing. */
36725
+ class MultiRegionProcessing implements IMultiRegionProcessing {
36726
+
36727
+ /**
36728
+ * Constructs a new MultiRegionProcessing.
36729
+ * @param [properties] Properties to set
36730
+ */
36731
+ constructor(properties?: google.privacy.dlp.v2.ProcessingLocation.IMultiRegionProcessing);
36732
+
36733
+ /**
36734
+ * Creates a new MultiRegionProcessing instance using the specified properties.
36735
+ * @param [properties] Properties to set
36736
+ * @returns MultiRegionProcessing instance
36737
+ */
36738
+ public static create(properties?: google.privacy.dlp.v2.ProcessingLocation.IMultiRegionProcessing): google.privacy.dlp.v2.ProcessingLocation.MultiRegionProcessing;
36739
+
36740
+ /**
36741
+ * Encodes the specified MultiRegionProcessing message. Does not implicitly {@link google.privacy.dlp.v2.ProcessingLocation.MultiRegionProcessing.verify|verify} messages.
36742
+ * @param message MultiRegionProcessing message or plain object to encode
36743
+ * @param [writer] Writer to encode to
36744
+ * @returns Writer
36745
+ */
36746
+ public static encode(message: google.privacy.dlp.v2.ProcessingLocation.IMultiRegionProcessing, writer?: $protobuf.Writer): $protobuf.Writer;
36747
+
36748
+ /**
36749
+ * Encodes the specified MultiRegionProcessing message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ProcessingLocation.MultiRegionProcessing.verify|verify} messages.
36750
+ * @param message MultiRegionProcessing message or plain object to encode
36751
+ * @param [writer] Writer to encode to
36752
+ * @returns Writer
36753
+ */
36754
+ public static encodeDelimited(message: google.privacy.dlp.v2.ProcessingLocation.IMultiRegionProcessing, writer?: $protobuf.Writer): $protobuf.Writer;
36755
+
36756
+ /**
36757
+ * Decodes a MultiRegionProcessing message from the specified reader or buffer.
36758
+ * @param reader Reader or buffer to decode from
36759
+ * @param [length] Message length if known beforehand
36760
+ * @returns MultiRegionProcessing
36761
+ * @throws {Error} If the payload is not a reader or valid buffer
36762
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
36763
+ */
36764
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ProcessingLocation.MultiRegionProcessing;
36765
+
36766
+ /**
36767
+ * Decodes a MultiRegionProcessing message from the specified reader or buffer, length delimited.
36768
+ * @param reader Reader or buffer to decode from
36769
+ * @returns MultiRegionProcessing
36770
+ * @throws {Error} If the payload is not a reader or valid buffer
36771
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
36772
+ */
36773
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ProcessingLocation.MultiRegionProcessing;
36774
+
36775
+ /**
36776
+ * Verifies a MultiRegionProcessing message.
36777
+ * @param message Plain object to verify
36778
+ * @returns `null` if valid, otherwise the reason why it is not
36779
+ */
36780
+ public static verify(message: { [k: string]: any }): (string|null);
36781
+
36782
+ /**
36783
+ * Creates a MultiRegionProcessing message from a plain object. Also converts values to their respective internal types.
36784
+ * @param object Plain object
36785
+ * @returns MultiRegionProcessing
36786
+ */
36787
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ProcessingLocation.MultiRegionProcessing;
36788
+
36789
+ /**
36790
+ * Creates a plain object from a MultiRegionProcessing message. Also converts values to other types if specified.
36791
+ * @param message MultiRegionProcessing
36792
+ * @param [options] Conversion options
36793
+ * @returns Plain object
36794
+ */
36795
+ public static toObject(message: google.privacy.dlp.v2.ProcessingLocation.MultiRegionProcessing, options?: $protobuf.IConversionOptions): { [k: string]: any };
36796
+
36797
+ /**
36798
+ * Converts this MultiRegionProcessing to JSON.
36799
+ * @returns JSON object
36800
+ */
36801
+ public toJSON(): { [k: string]: any };
36802
+
36803
+ /**
36804
+ * Gets the default type url for MultiRegionProcessing
36805
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
36806
+ * @returns The default type url
36807
+ */
36808
+ public static getTypeUrl(typeUrlPrefix?: string): string;
36809
+ }
36810
+
36811
+ /** Properties of a GlobalProcessing. */
36812
+ interface IGlobalProcessing {
36813
+ }
36814
+
36815
+ /** Represents a GlobalProcessing. */
36816
+ class GlobalProcessing implements IGlobalProcessing {
36817
+
36818
+ /**
36819
+ * Constructs a new GlobalProcessing.
36820
+ * @param [properties] Properties to set
36821
+ */
36822
+ constructor(properties?: google.privacy.dlp.v2.ProcessingLocation.IGlobalProcessing);
36823
+
36824
+ /**
36825
+ * Creates a new GlobalProcessing instance using the specified properties.
36826
+ * @param [properties] Properties to set
36827
+ * @returns GlobalProcessing instance
36828
+ */
36829
+ public static create(properties?: google.privacy.dlp.v2.ProcessingLocation.IGlobalProcessing): google.privacy.dlp.v2.ProcessingLocation.GlobalProcessing;
36830
+
36831
+ /**
36832
+ * Encodes the specified GlobalProcessing message. Does not implicitly {@link google.privacy.dlp.v2.ProcessingLocation.GlobalProcessing.verify|verify} messages.
36833
+ * @param message GlobalProcessing message or plain object to encode
36834
+ * @param [writer] Writer to encode to
36835
+ * @returns Writer
36836
+ */
36837
+ public static encode(message: google.privacy.dlp.v2.ProcessingLocation.IGlobalProcessing, writer?: $protobuf.Writer): $protobuf.Writer;
36838
+
36839
+ /**
36840
+ * Encodes the specified GlobalProcessing message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ProcessingLocation.GlobalProcessing.verify|verify} messages.
36841
+ * @param message GlobalProcessing message or plain object to encode
36842
+ * @param [writer] Writer to encode to
36843
+ * @returns Writer
36844
+ */
36845
+ public static encodeDelimited(message: google.privacy.dlp.v2.ProcessingLocation.IGlobalProcessing, writer?: $protobuf.Writer): $protobuf.Writer;
36846
+
36847
+ /**
36848
+ * Decodes a GlobalProcessing message from the specified reader or buffer.
36849
+ * @param reader Reader or buffer to decode from
36850
+ * @param [length] Message length if known beforehand
36851
+ * @returns GlobalProcessing
36852
+ * @throws {Error} If the payload is not a reader or valid buffer
36853
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
36854
+ */
36855
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ProcessingLocation.GlobalProcessing;
36856
+
36857
+ /**
36858
+ * Decodes a GlobalProcessing message from the specified reader or buffer, length delimited.
36859
+ * @param reader Reader or buffer to decode from
36860
+ * @returns GlobalProcessing
36861
+ * @throws {Error} If the payload is not a reader or valid buffer
36862
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
36863
+ */
36864
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ProcessingLocation.GlobalProcessing;
36865
+
36866
+ /**
36867
+ * Verifies a GlobalProcessing message.
36868
+ * @param message Plain object to verify
36869
+ * @returns `null` if valid, otherwise the reason why it is not
36870
+ */
36871
+ public static verify(message: { [k: string]: any }): (string|null);
36872
+
36873
+ /**
36874
+ * Creates a GlobalProcessing message from a plain object. Also converts values to their respective internal types.
36875
+ * @param object Plain object
36876
+ * @returns GlobalProcessing
36877
+ */
36878
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ProcessingLocation.GlobalProcessing;
36879
+
36880
+ /**
36881
+ * Creates a plain object from a GlobalProcessing message. Also converts values to other types if specified.
36882
+ * @param message GlobalProcessing
36883
+ * @param [options] Conversion options
36884
+ * @returns Plain object
36885
+ */
36886
+ public static toObject(message: google.privacy.dlp.v2.ProcessingLocation.GlobalProcessing, options?: $protobuf.IConversionOptions): { [k: string]: any };
36887
+
36888
+ /**
36889
+ * Converts this GlobalProcessing to JSON.
36890
+ * @returns JSON object
36891
+ */
36892
+ public toJSON(): { [k: string]: any };
36893
+
36894
+ /**
36895
+ * Gets the default type url for GlobalProcessing
36896
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
36897
+ * @returns The default type url
36898
+ */
36899
+ public static getTypeUrl(typeUrlPrefix?: string): string;
36900
+ }
36901
+
36902
+ /** Properties of an ImageFallbackLocation. */
36903
+ interface IImageFallbackLocation {
36904
+
36905
+ /** ImageFallbackLocation multiRegionProcessing */
36906
+ multiRegionProcessing?: (google.privacy.dlp.v2.ProcessingLocation.IMultiRegionProcessing|null);
36907
+
36908
+ /** ImageFallbackLocation globalProcessing */
36909
+ globalProcessing?: (google.privacy.dlp.v2.ProcessingLocation.IGlobalProcessing|null);
36910
+ }
36911
+
36912
+ /** Represents an ImageFallbackLocation. */
36913
+ class ImageFallbackLocation implements IImageFallbackLocation {
36914
+
36915
+ /**
36916
+ * Constructs a new ImageFallbackLocation.
36917
+ * @param [properties] Properties to set
36918
+ */
36919
+ constructor(properties?: google.privacy.dlp.v2.ProcessingLocation.IImageFallbackLocation);
36920
+
36921
+ /** ImageFallbackLocation multiRegionProcessing. */
36922
+ public multiRegionProcessing?: (google.privacy.dlp.v2.ProcessingLocation.IMultiRegionProcessing|null);
36923
+
36924
+ /** ImageFallbackLocation globalProcessing. */
36925
+ public globalProcessing?: (google.privacy.dlp.v2.ProcessingLocation.IGlobalProcessing|null);
36926
+
36927
+ /**
36928
+ * Creates a new ImageFallbackLocation instance using the specified properties.
36929
+ * @param [properties] Properties to set
36930
+ * @returns ImageFallbackLocation instance
36931
+ */
36932
+ public static create(properties?: google.privacy.dlp.v2.ProcessingLocation.IImageFallbackLocation): google.privacy.dlp.v2.ProcessingLocation.ImageFallbackLocation;
36933
+
36934
+ /**
36935
+ * Encodes the specified ImageFallbackLocation message. Does not implicitly {@link google.privacy.dlp.v2.ProcessingLocation.ImageFallbackLocation.verify|verify} messages.
36936
+ * @param message ImageFallbackLocation message or plain object to encode
36937
+ * @param [writer] Writer to encode to
36938
+ * @returns Writer
36939
+ */
36940
+ public static encode(message: google.privacy.dlp.v2.ProcessingLocation.IImageFallbackLocation, writer?: $protobuf.Writer): $protobuf.Writer;
36941
+
36942
+ /**
36943
+ * Encodes the specified ImageFallbackLocation message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ProcessingLocation.ImageFallbackLocation.verify|verify} messages.
36944
+ * @param message ImageFallbackLocation message or plain object to encode
36945
+ * @param [writer] Writer to encode to
36946
+ * @returns Writer
36947
+ */
36948
+ public static encodeDelimited(message: google.privacy.dlp.v2.ProcessingLocation.IImageFallbackLocation, writer?: $protobuf.Writer): $protobuf.Writer;
36949
+
36950
+ /**
36951
+ * Decodes an ImageFallbackLocation message from the specified reader or buffer.
36952
+ * @param reader Reader or buffer to decode from
36953
+ * @param [length] Message length if known beforehand
36954
+ * @returns ImageFallbackLocation
36955
+ * @throws {Error} If the payload is not a reader or valid buffer
36956
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
36957
+ */
36958
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ProcessingLocation.ImageFallbackLocation;
36959
+
36960
+ /**
36961
+ * Decodes an ImageFallbackLocation message from the specified reader or buffer, length delimited.
36962
+ * @param reader Reader or buffer to decode from
36963
+ * @returns ImageFallbackLocation
36964
+ * @throws {Error} If the payload is not a reader or valid buffer
36965
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
36966
+ */
36967
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ProcessingLocation.ImageFallbackLocation;
36968
+
36969
+ /**
36970
+ * Verifies an ImageFallbackLocation message.
36971
+ * @param message Plain object to verify
36972
+ * @returns `null` if valid, otherwise the reason why it is not
36973
+ */
36974
+ public static verify(message: { [k: string]: any }): (string|null);
36975
+
36976
+ /**
36977
+ * Creates an ImageFallbackLocation message from a plain object. Also converts values to their respective internal types.
36978
+ * @param object Plain object
36979
+ * @returns ImageFallbackLocation
36980
+ */
36981
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ProcessingLocation.ImageFallbackLocation;
36982
+
36983
+ /**
36984
+ * Creates a plain object from an ImageFallbackLocation message. Also converts values to other types if specified.
36985
+ * @param message ImageFallbackLocation
36986
+ * @param [options] Conversion options
36987
+ * @returns Plain object
36988
+ */
36989
+ public static toObject(message: google.privacy.dlp.v2.ProcessingLocation.ImageFallbackLocation, options?: $protobuf.IConversionOptions): { [k: string]: any };
36990
+
36991
+ /**
36992
+ * Converts this ImageFallbackLocation to JSON.
36993
+ * @returns JSON object
36994
+ */
36995
+ public toJSON(): { [k: string]: any };
36996
+
36997
+ /**
36998
+ * Gets the default type url for ImageFallbackLocation
36999
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
37000
+ * @returns The default type url
37001
+ */
37002
+ public static getTypeUrl(typeUrlPrefix?: string): string;
35660
37003
  }
35661
37004
  }
35662
37005