@google-cloud/dlp 5.10.0 → 5.12.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.
@@ -20111,6 +20111,12 @@ export namespace google {
20111
20111
  /** DataProfileAction pubSubNotification */
20112
20112
  pubSubNotification?: (google.privacy.dlp.v2.DataProfileAction.IPubSubNotification|null);
20113
20113
 
20114
+ /** DataProfileAction publishToChronicle */
20115
+ publishToChronicle?: (google.privacy.dlp.v2.DataProfileAction.IPublishToChronicle|null);
20116
+
20117
+ /** DataProfileAction publishToScc */
20118
+ publishToScc?: (google.privacy.dlp.v2.DataProfileAction.IPublishToSecurityCommandCenter|null);
20119
+
20114
20120
  /** DataProfileAction tagResources */
20115
20121
  tagResources?: (google.privacy.dlp.v2.DataProfileAction.ITagResources|null);
20116
20122
  }
@@ -20130,11 +20136,17 @@ export namespace google {
20130
20136
  /** DataProfileAction pubSubNotification. */
20131
20137
  public pubSubNotification?: (google.privacy.dlp.v2.DataProfileAction.IPubSubNotification|null);
20132
20138
 
20139
+ /** DataProfileAction publishToChronicle. */
20140
+ public publishToChronicle?: (google.privacy.dlp.v2.DataProfileAction.IPublishToChronicle|null);
20141
+
20142
+ /** DataProfileAction publishToScc. */
20143
+ public publishToScc?: (google.privacy.dlp.v2.DataProfileAction.IPublishToSecurityCommandCenter|null);
20144
+
20133
20145
  /** DataProfileAction tagResources. */
20134
20146
  public tagResources?: (google.privacy.dlp.v2.DataProfileAction.ITagResources|null);
20135
20147
 
20136
20148
  /** DataProfileAction action. */
20137
- public action?: ("exportData"|"pubSubNotification"|"tagResources");
20149
+ public action?: ("exportData"|"pubSubNotification"|"publishToChronicle"|"publishToScc"|"tagResources");
20138
20150
 
20139
20151
  /**
20140
20152
  * Creates a new DataProfileAction instance using the specified properties.
@@ -20448,6 +20460,188 @@ export namespace google {
20448
20460
  ERROR_CHANGED = 4
20449
20461
  }
20450
20462
 
20463
+ /** Properties of a PublishToChronicle. */
20464
+ interface IPublishToChronicle {
20465
+ }
20466
+
20467
+ /** Represents a PublishToChronicle. */
20468
+ class PublishToChronicle implements IPublishToChronicle {
20469
+
20470
+ /**
20471
+ * Constructs a new PublishToChronicle.
20472
+ * @param [properties] Properties to set
20473
+ */
20474
+ constructor(properties?: google.privacy.dlp.v2.DataProfileAction.IPublishToChronicle);
20475
+
20476
+ /**
20477
+ * Creates a new PublishToChronicle instance using the specified properties.
20478
+ * @param [properties] Properties to set
20479
+ * @returns PublishToChronicle instance
20480
+ */
20481
+ public static create(properties?: google.privacy.dlp.v2.DataProfileAction.IPublishToChronicle): google.privacy.dlp.v2.DataProfileAction.PublishToChronicle;
20482
+
20483
+ /**
20484
+ * Encodes the specified PublishToChronicle message. Does not implicitly {@link google.privacy.dlp.v2.DataProfileAction.PublishToChronicle.verify|verify} messages.
20485
+ * @param message PublishToChronicle message or plain object to encode
20486
+ * @param [writer] Writer to encode to
20487
+ * @returns Writer
20488
+ */
20489
+ public static encode(message: google.privacy.dlp.v2.DataProfileAction.IPublishToChronicle, writer?: $protobuf.Writer): $protobuf.Writer;
20490
+
20491
+ /**
20492
+ * Encodes the specified PublishToChronicle message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DataProfileAction.PublishToChronicle.verify|verify} messages.
20493
+ * @param message PublishToChronicle message or plain object to encode
20494
+ * @param [writer] Writer to encode to
20495
+ * @returns Writer
20496
+ */
20497
+ public static encodeDelimited(message: google.privacy.dlp.v2.DataProfileAction.IPublishToChronicle, writer?: $protobuf.Writer): $protobuf.Writer;
20498
+
20499
+ /**
20500
+ * Decodes a PublishToChronicle message from the specified reader or buffer.
20501
+ * @param reader Reader or buffer to decode from
20502
+ * @param [length] Message length if known beforehand
20503
+ * @returns PublishToChronicle
20504
+ * @throws {Error} If the payload is not a reader or valid buffer
20505
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20506
+ */
20507
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DataProfileAction.PublishToChronicle;
20508
+
20509
+ /**
20510
+ * Decodes a PublishToChronicle message from the specified reader or buffer, length delimited.
20511
+ * @param reader Reader or buffer to decode from
20512
+ * @returns PublishToChronicle
20513
+ * @throws {Error} If the payload is not a reader or valid buffer
20514
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20515
+ */
20516
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DataProfileAction.PublishToChronicle;
20517
+
20518
+ /**
20519
+ * Verifies a PublishToChronicle message.
20520
+ * @param message Plain object to verify
20521
+ * @returns `null` if valid, otherwise the reason why it is not
20522
+ */
20523
+ public static verify(message: { [k: string]: any }): (string|null);
20524
+
20525
+ /**
20526
+ * Creates a PublishToChronicle message from a plain object. Also converts values to their respective internal types.
20527
+ * @param object Plain object
20528
+ * @returns PublishToChronicle
20529
+ */
20530
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DataProfileAction.PublishToChronicle;
20531
+
20532
+ /**
20533
+ * Creates a plain object from a PublishToChronicle message. Also converts values to other types if specified.
20534
+ * @param message PublishToChronicle
20535
+ * @param [options] Conversion options
20536
+ * @returns Plain object
20537
+ */
20538
+ public static toObject(message: google.privacy.dlp.v2.DataProfileAction.PublishToChronicle, options?: $protobuf.IConversionOptions): { [k: string]: any };
20539
+
20540
+ /**
20541
+ * Converts this PublishToChronicle to JSON.
20542
+ * @returns JSON object
20543
+ */
20544
+ public toJSON(): { [k: string]: any };
20545
+
20546
+ /**
20547
+ * Gets the default type url for PublishToChronicle
20548
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
20549
+ * @returns The default type url
20550
+ */
20551
+ public static getTypeUrl(typeUrlPrefix?: string): string;
20552
+ }
20553
+
20554
+ /** Properties of a PublishToSecurityCommandCenter. */
20555
+ interface IPublishToSecurityCommandCenter {
20556
+ }
20557
+
20558
+ /** Represents a PublishToSecurityCommandCenter. */
20559
+ class PublishToSecurityCommandCenter implements IPublishToSecurityCommandCenter {
20560
+
20561
+ /**
20562
+ * Constructs a new PublishToSecurityCommandCenter.
20563
+ * @param [properties] Properties to set
20564
+ */
20565
+ constructor(properties?: google.privacy.dlp.v2.DataProfileAction.IPublishToSecurityCommandCenter);
20566
+
20567
+ /**
20568
+ * Creates a new PublishToSecurityCommandCenter instance using the specified properties.
20569
+ * @param [properties] Properties to set
20570
+ * @returns PublishToSecurityCommandCenter instance
20571
+ */
20572
+ public static create(properties?: google.privacy.dlp.v2.DataProfileAction.IPublishToSecurityCommandCenter): google.privacy.dlp.v2.DataProfileAction.PublishToSecurityCommandCenter;
20573
+
20574
+ /**
20575
+ * Encodes the specified PublishToSecurityCommandCenter message. Does not implicitly {@link google.privacy.dlp.v2.DataProfileAction.PublishToSecurityCommandCenter.verify|verify} messages.
20576
+ * @param message PublishToSecurityCommandCenter message or plain object to encode
20577
+ * @param [writer] Writer to encode to
20578
+ * @returns Writer
20579
+ */
20580
+ public static encode(message: google.privacy.dlp.v2.DataProfileAction.IPublishToSecurityCommandCenter, writer?: $protobuf.Writer): $protobuf.Writer;
20581
+
20582
+ /**
20583
+ * Encodes the specified PublishToSecurityCommandCenter message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DataProfileAction.PublishToSecurityCommandCenter.verify|verify} messages.
20584
+ * @param message PublishToSecurityCommandCenter message or plain object to encode
20585
+ * @param [writer] Writer to encode to
20586
+ * @returns Writer
20587
+ */
20588
+ public static encodeDelimited(message: google.privacy.dlp.v2.DataProfileAction.IPublishToSecurityCommandCenter, writer?: $protobuf.Writer): $protobuf.Writer;
20589
+
20590
+ /**
20591
+ * Decodes a PublishToSecurityCommandCenter message from the specified reader or buffer.
20592
+ * @param reader Reader or buffer to decode from
20593
+ * @param [length] Message length if known beforehand
20594
+ * @returns PublishToSecurityCommandCenter
20595
+ * @throws {Error} If the payload is not a reader or valid buffer
20596
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20597
+ */
20598
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DataProfileAction.PublishToSecurityCommandCenter;
20599
+
20600
+ /**
20601
+ * Decodes a PublishToSecurityCommandCenter message from the specified reader or buffer, length delimited.
20602
+ * @param reader Reader or buffer to decode from
20603
+ * @returns PublishToSecurityCommandCenter
20604
+ * @throws {Error} If the payload is not a reader or valid buffer
20605
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20606
+ */
20607
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DataProfileAction.PublishToSecurityCommandCenter;
20608
+
20609
+ /**
20610
+ * Verifies a PublishToSecurityCommandCenter message.
20611
+ * @param message Plain object to verify
20612
+ * @returns `null` if valid, otherwise the reason why it is not
20613
+ */
20614
+ public static verify(message: { [k: string]: any }): (string|null);
20615
+
20616
+ /**
20617
+ * Creates a PublishToSecurityCommandCenter message from a plain object. Also converts values to their respective internal types.
20618
+ * @param object Plain object
20619
+ * @returns PublishToSecurityCommandCenter
20620
+ */
20621
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DataProfileAction.PublishToSecurityCommandCenter;
20622
+
20623
+ /**
20624
+ * Creates a plain object from a PublishToSecurityCommandCenter message. Also converts values to other types if specified.
20625
+ * @param message PublishToSecurityCommandCenter
20626
+ * @param [options] Conversion options
20627
+ * @returns Plain object
20628
+ */
20629
+ public static toObject(message: google.privacy.dlp.v2.DataProfileAction.PublishToSecurityCommandCenter, options?: $protobuf.IConversionOptions): { [k: string]: any };
20630
+
20631
+ /**
20632
+ * Converts this PublishToSecurityCommandCenter to JSON.
20633
+ * @returns JSON object
20634
+ */
20635
+ public toJSON(): { [k: string]: any };
20636
+
20637
+ /**
20638
+ * Gets the default type url for PublishToSecurityCommandCenter
20639
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
20640
+ * @returns The default type url
20641
+ */
20642
+ public static getTypeUrl(typeUrlPrefix?: string): string;
20643
+ }
20644
+
20451
20645
  /** Properties of a TagResources. */
20452
20646
  interface ITagResources {
20453
20647
 
@@ -20776,6 +20970,9 @@ export namespace google {
20776
20970
  /** DataProfileJobConfig projectId */
20777
20971
  projectId?: (string|null);
20778
20972
 
20973
+ /** DataProfileJobConfig otherCloudStartingLocation */
20974
+ otherCloudStartingLocation?: (google.privacy.dlp.v2.IOtherCloudDiscoveryStartingLocation|null);
20975
+
20779
20976
  /** DataProfileJobConfig inspectTemplates */
20780
20977
  inspectTemplates?: (string[]|null);
20781
20978
 
@@ -20798,6 +20995,9 @@ export namespace google {
20798
20995
  /** DataProfileJobConfig projectId. */
20799
20996
  public projectId: string;
20800
20997
 
20998
+ /** DataProfileJobConfig otherCloudStartingLocation. */
20999
+ public otherCloudStartingLocation?: (google.privacy.dlp.v2.IOtherCloudDiscoveryStartingLocation|null);
21000
+
20801
21001
  /** DataProfileJobConfig inspectTemplates. */
20802
21002
  public inspectTemplates: string[];
20803
21003
 
@@ -21196,7 +21396,8 @@ export namespace google {
21196
21396
  enum BigQueryTableType {
21197
21397
  BIG_QUERY_TABLE_TYPE_UNSPECIFIED = 0,
21198
21398
  BIG_QUERY_TABLE_TYPE_TABLE = 1,
21199
- BIG_QUERY_TABLE_TYPE_EXTERNAL_BIG_LAKE = 2
21399
+ BIG_QUERY_TABLE_TYPE_EXTERNAL_BIG_LAKE = 2,
21400
+ BIG_QUERY_TABLE_TYPE_SNAPSHOT = 3
21200
21401
  }
21201
21402
 
21202
21403
  /** DataProfileUpdateFrequency enum. */
@@ -21416,6 +21617,9 @@ export namespace google {
21416
21617
  /** DiscoveryConfig orgConfig */
21417
21618
  orgConfig?: (google.privacy.dlp.v2.DiscoveryConfig.IOrgConfig|null);
21418
21619
 
21620
+ /** DiscoveryConfig otherCloudStartingLocation */
21621
+ otherCloudStartingLocation?: (google.privacy.dlp.v2.IOtherCloudDiscoveryStartingLocation|null);
21622
+
21419
21623
  /** DiscoveryConfig inspectTemplates */
21420
21624
  inspectTemplates?: (string[]|null);
21421
21625
 
@@ -21459,6 +21663,9 @@ export namespace google {
21459
21663
  /** DiscoveryConfig orgConfig. */
21460
21664
  public orgConfig?: (google.privacy.dlp.v2.DiscoveryConfig.IOrgConfig|null);
21461
21665
 
21666
+ /** DiscoveryConfig otherCloudStartingLocation. */
21667
+ public otherCloudStartingLocation?: (google.privacy.dlp.v2.IOtherCloudDiscoveryStartingLocation|null);
21668
+
21462
21669
  /** DiscoveryConfig inspectTemplates. */
21463
21670
  public inspectTemplates: string[];
21464
21671
 
@@ -21688,6 +21895,9 @@ export namespace google {
21688
21895
 
21689
21896
  /** DiscoveryTarget cloudStorageTarget */
21690
21897
  cloudStorageTarget?: (google.privacy.dlp.v2.ICloudStorageDiscoveryTarget|null);
21898
+
21899
+ /** DiscoveryTarget otherCloudTarget */
21900
+ otherCloudTarget?: (google.privacy.dlp.v2.IOtherCloudDiscoveryTarget|null);
21691
21901
  }
21692
21902
 
21693
21903
  /** Represents a DiscoveryTarget. */
@@ -21711,8 +21921,11 @@ export namespace google {
21711
21921
  /** DiscoveryTarget cloudStorageTarget. */
21712
21922
  public cloudStorageTarget?: (google.privacy.dlp.v2.ICloudStorageDiscoveryTarget|null);
21713
21923
 
21924
+ /** DiscoveryTarget otherCloudTarget. */
21925
+ public otherCloudTarget?: (google.privacy.dlp.v2.IOtherCloudDiscoveryTarget|null);
21926
+
21714
21927
  /** DiscoveryTarget target. */
21715
- public target?: ("bigQueryTarget"|"cloudSqlTarget"|"secretsTarget"|"cloudStorageTarget");
21928
+ public target?: ("bigQueryTarget"|"cloudSqlTarget"|"secretsTarget"|"cloudStorageTarget"|"otherCloudTarget");
21716
21929
 
21717
21930
  /**
21718
21931
  * Creates a new DiscoveryTarget instance using the specified properties.
@@ -25131,112 +25344,1686 @@ export namespace google {
25131
25344
  public static getTypeUrl(typeUrlPrefix?: string): string;
25132
25345
  }
25133
25346
 
25134
- /** Properties of a DiscoveryStartingLocation. */
25135
- interface IDiscoveryStartingLocation {
25347
+ /** Properties of an OtherCloudDiscoveryTarget. */
25348
+ interface IOtherCloudDiscoveryTarget {
25136
25349
 
25137
- /** DiscoveryStartingLocation organizationId */
25138
- organizationId?: (number|Long|string|null);
25350
+ /** OtherCloudDiscoveryTarget dataSourceType */
25351
+ dataSourceType?: (google.privacy.dlp.v2.IDataSourceType|null);
25139
25352
 
25140
- /** DiscoveryStartingLocation folderId */
25141
- folderId?: (number|Long|string|null);
25353
+ /** OtherCloudDiscoveryTarget filter */
25354
+ filter?: (google.privacy.dlp.v2.IDiscoveryOtherCloudFilter|null);
25355
+
25356
+ /** OtherCloudDiscoveryTarget conditions */
25357
+ conditions?: (google.privacy.dlp.v2.IDiscoveryOtherCloudConditions|null);
25358
+
25359
+ /** OtherCloudDiscoveryTarget generationCadence */
25360
+ generationCadence?: (google.privacy.dlp.v2.IDiscoveryOtherCloudGenerationCadence|null);
25361
+
25362
+ /** OtherCloudDiscoveryTarget disabled */
25363
+ disabled?: (google.privacy.dlp.v2.IDisabled|null);
25142
25364
  }
25143
25365
 
25144
- /** Represents a DiscoveryStartingLocation. */
25145
- class DiscoveryStartingLocation implements IDiscoveryStartingLocation {
25366
+ /** Represents an OtherCloudDiscoveryTarget. */
25367
+ class OtherCloudDiscoveryTarget implements IOtherCloudDiscoveryTarget {
25146
25368
 
25147
25369
  /**
25148
- * Constructs a new DiscoveryStartingLocation.
25370
+ * Constructs a new OtherCloudDiscoveryTarget.
25149
25371
  * @param [properties] Properties to set
25150
25372
  */
25151
- constructor(properties?: google.privacy.dlp.v2.IDiscoveryStartingLocation);
25373
+ constructor(properties?: google.privacy.dlp.v2.IOtherCloudDiscoveryTarget);
25152
25374
 
25153
- /** DiscoveryStartingLocation organizationId. */
25154
- public organizationId?: (number|Long|string|null);
25375
+ /** OtherCloudDiscoveryTarget dataSourceType. */
25376
+ public dataSourceType?: (google.privacy.dlp.v2.IDataSourceType|null);
25155
25377
 
25156
- /** DiscoveryStartingLocation folderId. */
25157
- public folderId?: (number|Long|string|null);
25378
+ /** OtherCloudDiscoveryTarget filter. */
25379
+ public filter?: (google.privacy.dlp.v2.IDiscoveryOtherCloudFilter|null);
25158
25380
 
25159
- /** DiscoveryStartingLocation location. */
25160
- public location?: ("organizationId"|"folderId");
25381
+ /** OtherCloudDiscoveryTarget conditions. */
25382
+ public conditions?: (google.privacy.dlp.v2.IDiscoveryOtherCloudConditions|null);
25383
+
25384
+ /** OtherCloudDiscoveryTarget generationCadence. */
25385
+ public generationCadence?: (google.privacy.dlp.v2.IDiscoveryOtherCloudGenerationCadence|null);
25386
+
25387
+ /** OtherCloudDiscoveryTarget disabled. */
25388
+ public disabled?: (google.privacy.dlp.v2.IDisabled|null);
25389
+
25390
+ /** OtherCloudDiscoveryTarget cadence. */
25391
+ public cadence?: ("generationCadence"|"disabled");
25161
25392
 
25162
25393
  /**
25163
- * Creates a new DiscoveryStartingLocation instance using the specified properties.
25394
+ * Creates a new OtherCloudDiscoveryTarget instance using the specified properties.
25164
25395
  * @param [properties] Properties to set
25165
- * @returns DiscoveryStartingLocation instance
25396
+ * @returns OtherCloudDiscoveryTarget instance
25166
25397
  */
25167
- public static create(properties?: google.privacy.dlp.v2.IDiscoveryStartingLocation): google.privacy.dlp.v2.DiscoveryStartingLocation;
25398
+ public static create(properties?: google.privacy.dlp.v2.IOtherCloudDiscoveryTarget): google.privacy.dlp.v2.OtherCloudDiscoveryTarget;
25168
25399
 
25169
25400
  /**
25170
- * Encodes the specified DiscoveryStartingLocation message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryStartingLocation.verify|verify} messages.
25171
- * @param message DiscoveryStartingLocation message or plain object to encode
25401
+ * Encodes the specified OtherCloudDiscoveryTarget message. Does not implicitly {@link google.privacy.dlp.v2.OtherCloudDiscoveryTarget.verify|verify} messages.
25402
+ * @param message OtherCloudDiscoveryTarget message or plain object to encode
25172
25403
  * @param [writer] Writer to encode to
25173
25404
  * @returns Writer
25174
25405
  */
25175
- public static encode(message: google.privacy.dlp.v2.IDiscoveryStartingLocation, writer?: $protobuf.Writer): $protobuf.Writer;
25406
+ public static encode(message: google.privacy.dlp.v2.IOtherCloudDiscoveryTarget, writer?: $protobuf.Writer): $protobuf.Writer;
25176
25407
 
25177
25408
  /**
25178
- * Encodes the specified DiscoveryStartingLocation message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryStartingLocation.verify|verify} messages.
25179
- * @param message DiscoveryStartingLocation message or plain object to encode
25409
+ * Encodes the specified OtherCloudDiscoveryTarget message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.OtherCloudDiscoveryTarget.verify|verify} messages.
25410
+ * @param message OtherCloudDiscoveryTarget message or plain object to encode
25180
25411
  * @param [writer] Writer to encode to
25181
25412
  * @returns Writer
25182
25413
  */
25183
- public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryStartingLocation, writer?: $protobuf.Writer): $protobuf.Writer;
25414
+ public static encodeDelimited(message: google.privacy.dlp.v2.IOtherCloudDiscoveryTarget, writer?: $protobuf.Writer): $protobuf.Writer;
25184
25415
 
25185
25416
  /**
25186
- * Decodes a DiscoveryStartingLocation message from the specified reader or buffer.
25417
+ * Decodes an OtherCloudDiscoveryTarget message from the specified reader or buffer.
25187
25418
  * @param reader Reader or buffer to decode from
25188
25419
  * @param [length] Message length if known beforehand
25189
- * @returns DiscoveryStartingLocation
25420
+ * @returns OtherCloudDiscoveryTarget
25190
25421
  * @throws {Error} If the payload is not a reader or valid buffer
25191
25422
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
25192
25423
  */
25193
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryStartingLocation;
25424
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.OtherCloudDiscoveryTarget;
25194
25425
 
25195
25426
  /**
25196
- * Decodes a DiscoveryStartingLocation message from the specified reader or buffer, length delimited.
25427
+ * Decodes an OtherCloudDiscoveryTarget message from the specified reader or buffer, length delimited.
25197
25428
  * @param reader Reader or buffer to decode from
25198
- * @returns DiscoveryStartingLocation
25429
+ * @returns OtherCloudDiscoveryTarget
25199
25430
  * @throws {Error} If the payload is not a reader or valid buffer
25200
25431
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
25201
25432
  */
25202
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryStartingLocation;
25433
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.OtherCloudDiscoveryTarget;
25203
25434
 
25204
25435
  /**
25205
- * Verifies a DiscoveryStartingLocation message.
25436
+ * Verifies an OtherCloudDiscoveryTarget message.
25206
25437
  * @param message Plain object to verify
25207
25438
  * @returns `null` if valid, otherwise the reason why it is not
25208
25439
  */
25209
25440
  public static verify(message: { [k: string]: any }): (string|null);
25210
25441
 
25211
25442
  /**
25212
- * Creates a DiscoveryStartingLocation message from a plain object. Also converts values to their respective internal types.
25443
+ * Creates an OtherCloudDiscoveryTarget message from a plain object. Also converts values to their respective internal types.
25213
25444
  * @param object Plain object
25214
- * @returns DiscoveryStartingLocation
25445
+ * @returns OtherCloudDiscoveryTarget
25215
25446
  */
25216
- public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryStartingLocation;
25447
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.OtherCloudDiscoveryTarget;
25217
25448
 
25218
25449
  /**
25219
- * Creates a plain object from a DiscoveryStartingLocation message. Also converts values to other types if specified.
25220
- * @param message DiscoveryStartingLocation
25450
+ * Creates a plain object from an OtherCloudDiscoveryTarget message. Also converts values to other types if specified.
25451
+ * @param message OtherCloudDiscoveryTarget
25221
25452
  * @param [options] Conversion options
25222
25453
  * @returns Plain object
25223
25454
  */
25224
- public static toObject(message: google.privacy.dlp.v2.DiscoveryStartingLocation, options?: $protobuf.IConversionOptions): { [k: string]: any };
25455
+ public static toObject(message: google.privacy.dlp.v2.OtherCloudDiscoveryTarget, options?: $protobuf.IConversionOptions): { [k: string]: any };
25225
25456
 
25226
25457
  /**
25227
- * Converts this DiscoveryStartingLocation to JSON.
25458
+ * Converts this OtherCloudDiscoveryTarget to JSON.
25228
25459
  * @returns JSON object
25229
25460
  */
25230
25461
  public toJSON(): { [k: string]: any };
25231
25462
 
25232
25463
  /**
25233
- * Gets the default type url for DiscoveryStartingLocation
25464
+ * Gets the default type url for OtherCloudDiscoveryTarget
25465
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
25466
+ * @returns The default type url
25467
+ */
25468
+ public static getTypeUrl(typeUrlPrefix?: string): string;
25469
+ }
25470
+
25471
+ /** Properties of a DiscoveryOtherCloudFilter. */
25472
+ interface IDiscoveryOtherCloudFilter {
25473
+
25474
+ /** DiscoveryOtherCloudFilter collection */
25475
+ collection?: (google.privacy.dlp.v2.IOtherCloudResourceCollection|null);
25476
+
25477
+ /** DiscoveryOtherCloudFilter singleResource */
25478
+ singleResource?: (google.privacy.dlp.v2.IOtherCloudSingleResourceReference|null);
25479
+
25480
+ /** DiscoveryOtherCloudFilter others */
25481
+ others?: (google.privacy.dlp.v2.IAllOtherResources|null);
25482
+ }
25483
+
25484
+ /** Represents a DiscoveryOtherCloudFilter. */
25485
+ class DiscoveryOtherCloudFilter implements IDiscoveryOtherCloudFilter {
25486
+
25487
+ /**
25488
+ * Constructs a new DiscoveryOtherCloudFilter.
25489
+ * @param [properties] Properties to set
25490
+ */
25491
+ constructor(properties?: google.privacy.dlp.v2.IDiscoveryOtherCloudFilter);
25492
+
25493
+ /** DiscoveryOtherCloudFilter collection. */
25494
+ public collection?: (google.privacy.dlp.v2.IOtherCloudResourceCollection|null);
25495
+
25496
+ /** DiscoveryOtherCloudFilter singleResource. */
25497
+ public singleResource?: (google.privacy.dlp.v2.IOtherCloudSingleResourceReference|null);
25498
+
25499
+ /** DiscoveryOtherCloudFilter others. */
25500
+ public others?: (google.privacy.dlp.v2.IAllOtherResources|null);
25501
+
25502
+ /** DiscoveryOtherCloudFilter filter. */
25503
+ public filter?: ("collection"|"singleResource"|"others");
25504
+
25505
+ /**
25506
+ * Creates a new DiscoveryOtherCloudFilter instance using the specified properties.
25507
+ * @param [properties] Properties to set
25508
+ * @returns DiscoveryOtherCloudFilter instance
25509
+ */
25510
+ public static create(properties?: google.privacy.dlp.v2.IDiscoveryOtherCloudFilter): google.privacy.dlp.v2.DiscoveryOtherCloudFilter;
25511
+
25512
+ /**
25513
+ * Encodes the specified DiscoveryOtherCloudFilter message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryOtherCloudFilter.verify|verify} messages.
25514
+ * @param message DiscoveryOtherCloudFilter message or plain object to encode
25515
+ * @param [writer] Writer to encode to
25516
+ * @returns Writer
25517
+ */
25518
+ public static encode(message: google.privacy.dlp.v2.IDiscoveryOtherCloudFilter, writer?: $protobuf.Writer): $protobuf.Writer;
25519
+
25520
+ /**
25521
+ * Encodes the specified DiscoveryOtherCloudFilter message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryOtherCloudFilter.verify|verify} messages.
25522
+ * @param message DiscoveryOtherCloudFilter message or plain object to encode
25523
+ * @param [writer] Writer to encode to
25524
+ * @returns Writer
25525
+ */
25526
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryOtherCloudFilter, writer?: $protobuf.Writer): $protobuf.Writer;
25527
+
25528
+ /**
25529
+ * Decodes a DiscoveryOtherCloudFilter message from the specified reader or buffer.
25530
+ * @param reader Reader or buffer to decode from
25531
+ * @param [length] Message length if known beforehand
25532
+ * @returns DiscoveryOtherCloudFilter
25533
+ * @throws {Error} If the payload is not a reader or valid buffer
25534
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
25535
+ */
25536
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryOtherCloudFilter;
25537
+
25538
+ /**
25539
+ * Decodes a DiscoveryOtherCloudFilter message from the specified reader or buffer, length delimited.
25540
+ * @param reader Reader or buffer to decode from
25541
+ * @returns DiscoveryOtherCloudFilter
25542
+ * @throws {Error} If the payload is not a reader or valid buffer
25543
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
25544
+ */
25545
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryOtherCloudFilter;
25546
+
25547
+ /**
25548
+ * Verifies a DiscoveryOtherCloudFilter message.
25549
+ * @param message Plain object to verify
25550
+ * @returns `null` if valid, otherwise the reason why it is not
25551
+ */
25552
+ public static verify(message: { [k: string]: any }): (string|null);
25553
+
25554
+ /**
25555
+ * Creates a DiscoveryOtherCloudFilter message from a plain object. Also converts values to their respective internal types.
25556
+ * @param object Plain object
25557
+ * @returns DiscoveryOtherCloudFilter
25558
+ */
25559
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryOtherCloudFilter;
25560
+
25561
+ /**
25562
+ * Creates a plain object from a DiscoveryOtherCloudFilter message. Also converts values to other types if specified.
25563
+ * @param message DiscoveryOtherCloudFilter
25564
+ * @param [options] Conversion options
25565
+ * @returns Plain object
25566
+ */
25567
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryOtherCloudFilter, options?: $protobuf.IConversionOptions): { [k: string]: any };
25568
+
25569
+ /**
25570
+ * Converts this DiscoveryOtherCloudFilter to JSON.
25571
+ * @returns JSON object
25572
+ */
25573
+ public toJSON(): { [k: string]: any };
25574
+
25575
+ /**
25576
+ * Gets the default type url for DiscoveryOtherCloudFilter
25234
25577
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
25235
25578
  * @returns The default type url
25236
25579
  */
25237
25580
  public static getTypeUrl(typeUrlPrefix?: string): string;
25238
25581
  }
25239
25582
 
25583
+ /** Properties of an OtherCloudResourceCollection. */
25584
+ interface IOtherCloudResourceCollection {
25585
+
25586
+ /** OtherCloudResourceCollection includeRegexes */
25587
+ includeRegexes?: (google.privacy.dlp.v2.IOtherCloudResourceRegexes|null);
25588
+ }
25589
+
25590
+ /** Represents an OtherCloudResourceCollection. */
25591
+ class OtherCloudResourceCollection implements IOtherCloudResourceCollection {
25592
+
25593
+ /**
25594
+ * Constructs a new OtherCloudResourceCollection.
25595
+ * @param [properties] Properties to set
25596
+ */
25597
+ constructor(properties?: google.privacy.dlp.v2.IOtherCloudResourceCollection);
25598
+
25599
+ /** OtherCloudResourceCollection includeRegexes. */
25600
+ public includeRegexes?: (google.privacy.dlp.v2.IOtherCloudResourceRegexes|null);
25601
+
25602
+ /** OtherCloudResourceCollection pattern. */
25603
+ public pattern?: "includeRegexes";
25604
+
25605
+ /**
25606
+ * Creates a new OtherCloudResourceCollection instance using the specified properties.
25607
+ * @param [properties] Properties to set
25608
+ * @returns OtherCloudResourceCollection instance
25609
+ */
25610
+ public static create(properties?: google.privacy.dlp.v2.IOtherCloudResourceCollection): google.privacy.dlp.v2.OtherCloudResourceCollection;
25611
+
25612
+ /**
25613
+ * Encodes the specified OtherCloudResourceCollection message. Does not implicitly {@link google.privacy.dlp.v2.OtherCloudResourceCollection.verify|verify} messages.
25614
+ * @param message OtherCloudResourceCollection message or plain object to encode
25615
+ * @param [writer] Writer to encode to
25616
+ * @returns Writer
25617
+ */
25618
+ public static encode(message: google.privacy.dlp.v2.IOtherCloudResourceCollection, writer?: $protobuf.Writer): $protobuf.Writer;
25619
+
25620
+ /**
25621
+ * Encodes the specified OtherCloudResourceCollection message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.OtherCloudResourceCollection.verify|verify} messages.
25622
+ * @param message OtherCloudResourceCollection message or plain object to encode
25623
+ * @param [writer] Writer to encode to
25624
+ * @returns Writer
25625
+ */
25626
+ public static encodeDelimited(message: google.privacy.dlp.v2.IOtherCloudResourceCollection, writer?: $protobuf.Writer): $protobuf.Writer;
25627
+
25628
+ /**
25629
+ * Decodes an OtherCloudResourceCollection message from the specified reader or buffer.
25630
+ * @param reader Reader or buffer to decode from
25631
+ * @param [length] Message length if known beforehand
25632
+ * @returns OtherCloudResourceCollection
25633
+ * @throws {Error} If the payload is not a reader or valid buffer
25634
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
25635
+ */
25636
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.OtherCloudResourceCollection;
25637
+
25638
+ /**
25639
+ * Decodes an OtherCloudResourceCollection message from the specified reader or buffer, length delimited.
25640
+ * @param reader Reader or buffer to decode from
25641
+ * @returns OtherCloudResourceCollection
25642
+ * @throws {Error} If the payload is not a reader or valid buffer
25643
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
25644
+ */
25645
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.OtherCloudResourceCollection;
25646
+
25647
+ /**
25648
+ * Verifies an OtherCloudResourceCollection message.
25649
+ * @param message Plain object to verify
25650
+ * @returns `null` if valid, otherwise the reason why it is not
25651
+ */
25652
+ public static verify(message: { [k: string]: any }): (string|null);
25653
+
25654
+ /**
25655
+ * Creates an OtherCloudResourceCollection message from a plain object. Also converts values to their respective internal types.
25656
+ * @param object Plain object
25657
+ * @returns OtherCloudResourceCollection
25658
+ */
25659
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.OtherCloudResourceCollection;
25660
+
25661
+ /**
25662
+ * Creates a plain object from an OtherCloudResourceCollection message. Also converts values to other types if specified.
25663
+ * @param message OtherCloudResourceCollection
25664
+ * @param [options] Conversion options
25665
+ * @returns Plain object
25666
+ */
25667
+ public static toObject(message: google.privacy.dlp.v2.OtherCloudResourceCollection, options?: $protobuf.IConversionOptions): { [k: string]: any };
25668
+
25669
+ /**
25670
+ * Converts this OtherCloudResourceCollection to JSON.
25671
+ * @returns JSON object
25672
+ */
25673
+ public toJSON(): { [k: string]: any };
25674
+
25675
+ /**
25676
+ * Gets the default type url for OtherCloudResourceCollection
25677
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
25678
+ * @returns The default type url
25679
+ */
25680
+ public static getTypeUrl(typeUrlPrefix?: string): string;
25681
+ }
25682
+
25683
+ /** Properties of an OtherCloudResourceRegexes. */
25684
+ interface IOtherCloudResourceRegexes {
25685
+
25686
+ /** OtherCloudResourceRegexes patterns */
25687
+ patterns?: (google.privacy.dlp.v2.IOtherCloudResourceRegex[]|null);
25688
+ }
25689
+
25690
+ /** Represents an OtherCloudResourceRegexes. */
25691
+ class OtherCloudResourceRegexes implements IOtherCloudResourceRegexes {
25692
+
25693
+ /**
25694
+ * Constructs a new OtherCloudResourceRegexes.
25695
+ * @param [properties] Properties to set
25696
+ */
25697
+ constructor(properties?: google.privacy.dlp.v2.IOtherCloudResourceRegexes);
25698
+
25699
+ /** OtherCloudResourceRegexes patterns. */
25700
+ public patterns: google.privacy.dlp.v2.IOtherCloudResourceRegex[];
25701
+
25702
+ /**
25703
+ * Creates a new OtherCloudResourceRegexes instance using the specified properties.
25704
+ * @param [properties] Properties to set
25705
+ * @returns OtherCloudResourceRegexes instance
25706
+ */
25707
+ public static create(properties?: google.privacy.dlp.v2.IOtherCloudResourceRegexes): google.privacy.dlp.v2.OtherCloudResourceRegexes;
25708
+
25709
+ /**
25710
+ * Encodes the specified OtherCloudResourceRegexes message. Does not implicitly {@link google.privacy.dlp.v2.OtherCloudResourceRegexes.verify|verify} messages.
25711
+ * @param message OtherCloudResourceRegexes message or plain object to encode
25712
+ * @param [writer] Writer to encode to
25713
+ * @returns Writer
25714
+ */
25715
+ public static encode(message: google.privacy.dlp.v2.IOtherCloudResourceRegexes, writer?: $protobuf.Writer): $protobuf.Writer;
25716
+
25717
+ /**
25718
+ * Encodes the specified OtherCloudResourceRegexes message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.OtherCloudResourceRegexes.verify|verify} messages.
25719
+ * @param message OtherCloudResourceRegexes message or plain object to encode
25720
+ * @param [writer] Writer to encode to
25721
+ * @returns Writer
25722
+ */
25723
+ public static encodeDelimited(message: google.privacy.dlp.v2.IOtherCloudResourceRegexes, writer?: $protobuf.Writer): $protobuf.Writer;
25724
+
25725
+ /**
25726
+ * Decodes an OtherCloudResourceRegexes message from the specified reader or buffer.
25727
+ * @param reader Reader or buffer to decode from
25728
+ * @param [length] Message length if known beforehand
25729
+ * @returns OtherCloudResourceRegexes
25730
+ * @throws {Error} If the payload is not a reader or valid buffer
25731
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
25732
+ */
25733
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.OtherCloudResourceRegexes;
25734
+
25735
+ /**
25736
+ * Decodes an OtherCloudResourceRegexes message from the specified reader or buffer, length delimited.
25737
+ * @param reader Reader or buffer to decode from
25738
+ * @returns OtherCloudResourceRegexes
25739
+ * @throws {Error} If the payload is not a reader or valid buffer
25740
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
25741
+ */
25742
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.OtherCloudResourceRegexes;
25743
+
25744
+ /**
25745
+ * Verifies an OtherCloudResourceRegexes message.
25746
+ * @param message Plain object to verify
25747
+ * @returns `null` if valid, otherwise the reason why it is not
25748
+ */
25749
+ public static verify(message: { [k: string]: any }): (string|null);
25750
+
25751
+ /**
25752
+ * Creates an OtherCloudResourceRegexes message from a plain object. Also converts values to their respective internal types.
25753
+ * @param object Plain object
25754
+ * @returns OtherCloudResourceRegexes
25755
+ */
25756
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.OtherCloudResourceRegexes;
25757
+
25758
+ /**
25759
+ * Creates a plain object from an OtherCloudResourceRegexes message. Also converts values to other types if specified.
25760
+ * @param message OtherCloudResourceRegexes
25761
+ * @param [options] Conversion options
25762
+ * @returns Plain object
25763
+ */
25764
+ public static toObject(message: google.privacy.dlp.v2.OtherCloudResourceRegexes, options?: $protobuf.IConversionOptions): { [k: string]: any };
25765
+
25766
+ /**
25767
+ * Converts this OtherCloudResourceRegexes to JSON.
25768
+ * @returns JSON object
25769
+ */
25770
+ public toJSON(): { [k: string]: any };
25771
+
25772
+ /**
25773
+ * Gets the default type url for OtherCloudResourceRegexes
25774
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
25775
+ * @returns The default type url
25776
+ */
25777
+ public static getTypeUrl(typeUrlPrefix?: string): string;
25778
+ }
25779
+
25780
+ /** Properties of an OtherCloudResourceRegex. */
25781
+ interface IOtherCloudResourceRegex {
25782
+
25783
+ /** OtherCloudResourceRegex amazonS3BucketRegex */
25784
+ amazonS3BucketRegex?: (google.privacy.dlp.v2.IAmazonS3BucketRegex|null);
25785
+ }
25786
+
25787
+ /** Represents an OtherCloudResourceRegex. */
25788
+ class OtherCloudResourceRegex implements IOtherCloudResourceRegex {
25789
+
25790
+ /**
25791
+ * Constructs a new OtherCloudResourceRegex.
25792
+ * @param [properties] Properties to set
25793
+ */
25794
+ constructor(properties?: google.privacy.dlp.v2.IOtherCloudResourceRegex);
25795
+
25796
+ /** OtherCloudResourceRegex amazonS3BucketRegex. */
25797
+ public amazonS3BucketRegex?: (google.privacy.dlp.v2.IAmazonS3BucketRegex|null);
25798
+
25799
+ /** OtherCloudResourceRegex resourceRegex. */
25800
+ public resourceRegex?: "amazonS3BucketRegex";
25801
+
25802
+ /**
25803
+ * Creates a new OtherCloudResourceRegex instance using the specified properties.
25804
+ * @param [properties] Properties to set
25805
+ * @returns OtherCloudResourceRegex instance
25806
+ */
25807
+ public static create(properties?: google.privacy.dlp.v2.IOtherCloudResourceRegex): google.privacy.dlp.v2.OtherCloudResourceRegex;
25808
+
25809
+ /**
25810
+ * Encodes the specified OtherCloudResourceRegex message. Does not implicitly {@link google.privacy.dlp.v2.OtherCloudResourceRegex.verify|verify} messages.
25811
+ * @param message OtherCloudResourceRegex message or plain object to encode
25812
+ * @param [writer] Writer to encode to
25813
+ * @returns Writer
25814
+ */
25815
+ public static encode(message: google.privacy.dlp.v2.IOtherCloudResourceRegex, writer?: $protobuf.Writer): $protobuf.Writer;
25816
+
25817
+ /**
25818
+ * Encodes the specified OtherCloudResourceRegex message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.OtherCloudResourceRegex.verify|verify} messages.
25819
+ * @param message OtherCloudResourceRegex message or plain object to encode
25820
+ * @param [writer] Writer to encode to
25821
+ * @returns Writer
25822
+ */
25823
+ public static encodeDelimited(message: google.privacy.dlp.v2.IOtherCloudResourceRegex, writer?: $protobuf.Writer): $protobuf.Writer;
25824
+
25825
+ /**
25826
+ * Decodes an OtherCloudResourceRegex message from the specified reader or buffer.
25827
+ * @param reader Reader or buffer to decode from
25828
+ * @param [length] Message length if known beforehand
25829
+ * @returns OtherCloudResourceRegex
25830
+ * @throws {Error} If the payload is not a reader or valid buffer
25831
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
25832
+ */
25833
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.OtherCloudResourceRegex;
25834
+
25835
+ /**
25836
+ * Decodes an OtherCloudResourceRegex message from the specified reader or buffer, length delimited.
25837
+ * @param reader Reader or buffer to decode from
25838
+ * @returns OtherCloudResourceRegex
25839
+ * @throws {Error} If the payload is not a reader or valid buffer
25840
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
25841
+ */
25842
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.OtherCloudResourceRegex;
25843
+
25844
+ /**
25845
+ * Verifies an OtherCloudResourceRegex message.
25846
+ * @param message Plain object to verify
25847
+ * @returns `null` if valid, otherwise the reason why it is not
25848
+ */
25849
+ public static verify(message: { [k: string]: any }): (string|null);
25850
+
25851
+ /**
25852
+ * Creates an OtherCloudResourceRegex message from a plain object. Also converts values to their respective internal types.
25853
+ * @param object Plain object
25854
+ * @returns OtherCloudResourceRegex
25855
+ */
25856
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.OtherCloudResourceRegex;
25857
+
25858
+ /**
25859
+ * Creates a plain object from an OtherCloudResourceRegex message. Also converts values to other types if specified.
25860
+ * @param message OtherCloudResourceRegex
25861
+ * @param [options] Conversion options
25862
+ * @returns Plain object
25863
+ */
25864
+ public static toObject(message: google.privacy.dlp.v2.OtherCloudResourceRegex, options?: $protobuf.IConversionOptions): { [k: string]: any };
25865
+
25866
+ /**
25867
+ * Converts this OtherCloudResourceRegex to JSON.
25868
+ * @returns JSON object
25869
+ */
25870
+ public toJSON(): { [k: string]: any };
25871
+
25872
+ /**
25873
+ * Gets the default type url for OtherCloudResourceRegex
25874
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
25875
+ * @returns The default type url
25876
+ */
25877
+ public static getTypeUrl(typeUrlPrefix?: string): string;
25878
+ }
25879
+
25880
+ /** Properties of an AwsAccountRegex. */
25881
+ interface IAwsAccountRegex {
25882
+
25883
+ /** AwsAccountRegex accountIdRegex */
25884
+ accountIdRegex?: (string|null);
25885
+ }
25886
+
25887
+ /** Represents an AwsAccountRegex. */
25888
+ class AwsAccountRegex implements IAwsAccountRegex {
25889
+
25890
+ /**
25891
+ * Constructs a new AwsAccountRegex.
25892
+ * @param [properties] Properties to set
25893
+ */
25894
+ constructor(properties?: google.privacy.dlp.v2.IAwsAccountRegex);
25895
+
25896
+ /** AwsAccountRegex accountIdRegex. */
25897
+ public accountIdRegex: string;
25898
+
25899
+ /**
25900
+ * Creates a new AwsAccountRegex instance using the specified properties.
25901
+ * @param [properties] Properties to set
25902
+ * @returns AwsAccountRegex instance
25903
+ */
25904
+ public static create(properties?: google.privacy.dlp.v2.IAwsAccountRegex): google.privacy.dlp.v2.AwsAccountRegex;
25905
+
25906
+ /**
25907
+ * Encodes the specified AwsAccountRegex message. Does not implicitly {@link google.privacy.dlp.v2.AwsAccountRegex.verify|verify} messages.
25908
+ * @param message AwsAccountRegex message or plain object to encode
25909
+ * @param [writer] Writer to encode to
25910
+ * @returns Writer
25911
+ */
25912
+ public static encode(message: google.privacy.dlp.v2.IAwsAccountRegex, writer?: $protobuf.Writer): $protobuf.Writer;
25913
+
25914
+ /**
25915
+ * Encodes the specified AwsAccountRegex message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.AwsAccountRegex.verify|verify} messages.
25916
+ * @param message AwsAccountRegex message or plain object to encode
25917
+ * @param [writer] Writer to encode to
25918
+ * @returns Writer
25919
+ */
25920
+ public static encodeDelimited(message: google.privacy.dlp.v2.IAwsAccountRegex, writer?: $protobuf.Writer): $protobuf.Writer;
25921
+
25922
+ /**
25923
+ * Decodes an AwsAccountRegex message from the specified reader or buffer.
25924
+ * @param reader Reader or buffer to decode from
25925
+ * @param [length] Message length if known beforehand
25926
+ * @returns AwsAccountRegex
25927
+ * @throws {Error} If the payload is not a reader or valid buffer
25928
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
25929
+ */
25930
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.AwsAccountRegex;
25931
+
25932
+ /**
25933
+ * Decodes an AwsAccountRegex message from the specified reader or buffer, length delimited.
25934
+ * @param reader Reader or buffer to decode from
25935
+ * @returns AwsAccountRegex
25936
+ * @throws {Error} If the payload is not a reader or valid buffer
25937
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
25938
+ */
25939
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.AwsAccountRegex;
25940
+
25941
+ /**
25942
+ * Verifies an AwsAccountRegex message.
25943
+ * @param message Plain object to verify
25944
+ * @returns `null` if valid, otherwise the reason why it is not
25945
+ */
25946
+ public static verify(message: { [k: string]: any }): (string|null);
25947
+
25948
+ /**
25949
+ * Creates an AwsAccountRegex message from a plain object. Also converts values to their respective internal types.
25950
+ * @param object Plain object
25951
+ * @returns AwsAccountRegex
25952
+ */
25953
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.AwsAccountRegex;
25954
+
25955
+ /**
25956
+ * Creates a plain object from an AwsAccountRegex message. Also converts values to other types if specified.
25957
+ * @param message AwsAccountRegex
25958
+ * @param [options] Conversion options
25959
+ * @returns Plain object
25960
+ */
25961
+ public static toObject(message: google.privacy.dlp.v2.AwsAccountRegex, options?: $protobuf.IConversionOptions): { [k: string]: any };
25962
+
25963
+ /**
25964
+ * Converts this AwsAccountRegex to JSON.
25965
+ * @returns JSON object
25966
+ */
25967
+ public toJSON(): { [k: string]: any };
25968
+
25969
+ /**
25970
+ * Gets the default type url for AwsAccountRegex
25971
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
25972
+ * @returns The default type url
25973
+ */
25974
+ public static getTypeUrl(typeUrlPrefix?: string): string;
25975
+ }
25976
+
25977
+ /** Properties of an AmazonS3BucketRegex. */
25978
+ interface IAmazonS3BucketRegex {
25979
+
25980
+ /** AmazonS3BucketRegex awsAccountRegex */
25981
+ awsAccountRegex?: (google.privacy.dlp.v2.IAwsAccountRegex|null);
25982
+
25983
+ /** AmazonS3BucketRegex bucketNameRegex */
25984
+ bucketNameRegex?: (string|null);
25985
+ }
25986
+
25987
+ /** Represents an AmazonS3BucketRegex. */
25988
+ class AmazonS3BucketRegex implements IAmazonS3BucketRegex {
25989
+
25990
+ /**
25991
+ * Constructs a new AmazonS3BucketRegex.
25992
+ * @param [properties] Properties to set
25993
+ */
25994
+ constructor(properties?: google.privacy.dlp.v2.IAmazonS3BucketRegex);
25995
+
25996
+ /** AmazonS3BucketRegex awsAccountRegex. */
25997
+ public awsAccountRegex?: (google.privacy.dlp.v2.IAwsAccountRegex|null);
25998
+
25999
+ /** AmazonS3BucketRegex bucketNameRegex. */
26000
+ public bucketNameRegex: string;
26001
+
26002
+ /**
26003
+ * Creates a new AmazonS3BucketRegex instance using the specified properties.
26004
+ * @param [properties] Properties to set
26005
+ * @returns AmazonS3BucketRegex instance
26006
+ */
26007
+ public static create(properties?: google.privacy.dlp.v2.IAmazonS3BucketRegex): google.privacy.dlp.v2.AmazonS3BucketRegex;
26008
+
26009
+ /**
26010
+ * Encodes the specified AmazonS3BucketRegex message. Does not implicitly {@link google.privacy.dlp.v2.AmazonS3BucketRegex.verify|verify} messages.
26011
+ * @param message AmazonS3BucketRegex message or plain object to encode
26012
+ * @param [writer] Writer to encode to
26013
+ * @returns Writer
26014
+ */
26015
+ public static encode(message: google.privacy.dlp.v2.IAmazonS3BucketRegex, writer?: $protobuf.Writer): $protobuf.Writer;
26016
+
26017
+ /**
26018
+ * Encodes the specified AmazonS3BucketRegex message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.AmazonS3BucketRegex.verify|verify} messages.
26019
+ * @param message AmazonS3BucketRegex message or plain object to encode
26020
+ * @param [writer] Writer to encode to
26021
+ * @returns Writer
26022
+ */
26023
+ public static encodeDelimited(message: google.privacy.dlp.v2.IAmazonS3BucketRegex, writer?: $protobuf.Writer): $protobuf.Writer;
26024
+
26025
+ /**
26026
+ * Decodes an AmazonS3BucketRegex message from the specified reader or buffer.
26027
+ * @param reader Reader or buffer to decode from
26028
+ * @param [length] Message length if known beforehand
26029
+ * @returns AmazonS3BucketRegex
26030
+ * @throws {Error} If the payload is not a reader or valid buffer
26031
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26032
+ */
26033
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.AmazonS3BucketRegex;
26034
+
26035
+ /**
26036
+ * Decodes an AmazonS3BucketRegex message from the specified reader or buffer, length delimited.
26037
+ * @param reader Reader or buffer to decode from
26038
+ * @returns AmazonS3BucketRegex
26039
+ * @throws {Error} If the payload is not a reader or valid buffer
26040
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26041
+ */
26042
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.AmazonS3BucketRegex;
26043
+
26044
+ /**
26045
+ * Verifies an AmazonS3BucketRegex message.
26046
+ * @param message Plain object to verify
26047
+ * @returns `null` if valid, otherwise the reason why it is not
26048
+ */
26049
+ public static verify(message: { [k: string]: any }): (string|null);
26050
+
26051
+ /**
26052
+ * Creates an AmazonS3BucketRegex message from a plain object. Also converts values to their respective internal types.
26053
+ * @param object Plain object
26054
+ * @returns AmazonS3BucketRegex
26055
+ */
26056
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.AmazonS3BucketRegex;
26057
+
26058
+ /**
26059
+ * Creates a plain object from an AmazonS3BucketRegex message. Also converts values to other types if specified.
26060
+ * @param message AmazonS3BucketRegex
26061
+ * @param [options] Conversion options
26062
+ * @returns Plain object
26063
+ */
26064
+ public static toObject(message: google.privacy.dlp.v2.AmazonS3BucketRegex, options?: $protobuf.IConversionOptions): { [k: string]: any };
26065
+
26066
+ /**
26067
+ * Converts this AmazonS3BucketRegex to JSON.
26068
+ * @returns JSON object
26069
+ */
26070
+ public toJSON(): { [k: string]: any };
26071
+
26072
+ /**
26073
+ * Gets the default type url for AmazonS3BucketRegex
26074
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
26075
+ * @returns The default type url
26076
+ */
26077
+ public static getTypeUrl(typeUrlPrefix?: string): string;
26078
+ }
26079
+
26080
+ /** Properties of an OtherCloudSingleResourceReference. */
26081
+ interface IOtherCloudSingleResourceReference {
26082
+
26083
+ /** OtherCloudSingleResourceReference amazonS3Bucket */
26084
+ amazonS3Bucket?: (google.privacy.dlp.v2.IAmazonS3Bucket|null);
26085
+ }
26086
+
26087
+ /** Represents an OtherCloudSingleResourceReference. */
26088
+ class OtherCloudSingleResourceReference implements IOtherCloudSingleResourceReference {
26089
+
26090
+ /**
26091
+ * Constructs a new OtherCloudSingleResourceReference.
26092
+ * @param [properties] Properties to set
26093
+ */
26094
+ constructor(properties?: google.privacy.dlp.v2.IOtherCloudSingleResourceReference);
26095
+
26096
+ /** OtherCloudSingleResourceReference amazonS3Bucket. */
26097
+ public amazonS3Bucket?: (google.privacy.dlp.v2.IAmazonS3Bucket|null);
26098
+
26099
+ /** OtherCloudSingleResourceReference resource. */
26100
+ public resource?: "amazonS3Bucket";
26101
+
26102
+ /**
26103
+ * Creates a new OtherCloudSingleResourceReference instance using the specified properties.
26104
+ * @param [properties] Properties to set
26105
+ * @returns OtherCloudSingleResourceReference instance
26106
+ */
26107
+ public static create(properties?: google.privacy.dlp.v2.IOtherCloudSingleResourceReference): google.privacy.dlp.v2.OtherCloudSingleResourceReference;
26108
+
26109
+ /**
26110
+ * Encodes the specified OtherCloudSingleResourceReference message. Does not implicitly {@link google.privacy.dlp.v2.OtherCloudSingleResourceReference.verify|verify} messages.
26111
+ * @param message OtherCloudSingleResourceReference message or plain object to encode
26112
+ * @param [writer] Writer to encode to
26113
+ * @returns Writer
26114
+ */
26115
+ public static encode(message: google.privacy.dlp.v2.IOtherCloudSingleResourceReference, writer?: $protobuf.Writer): $protobuf.Writer;
26116
+
26117
+ /**
26118
+ * Encodes the specified OtherCloudSingleResourceReference message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.OtherCloudSingleResourceReference.verify|verify} messages.
26119
+ * @param message OtherCloudSingleResourceReference message or plain object to encode
26120
+ * @param [writer] Writer to encode to
26121
+ * @returns Writer
26122
+ */
26123
+ public static encodeDelimited(message: google.privacy.dlp.v2.IOtherCloudSingleResourceReference, writer?: $protobuf.Writer): $protobuf.Writer;
26124
+
26125
+ /**
26126
+ * Decodes an OtherCloudSingleResourceReference message from the specified reader or buffer.
26127
+ * @param reader Reader or buffer to decode from
26128
+ * @param [length] Message length if known beforehand
26129
+ * @returns OtherCloudSingleResourceReference
26130
+ * @throws {Error} If the payload is not a reader or valid buffer
26131
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26132
+ */
26133
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.OtherCloudSingleResourceReference;
26134
+
26135
+ /**
26136
+ * Decodes an OtherCloudSingleResourceReference message from the specified reader or buffer, length delimited.
26137
+ * @param reader Reader or buffer to decode from
26138
+ * @returns OtherCloudSingleResourceReference
26139
+ * @throws {Error} If the payload is not a reader or valid buffer
26140
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26141
+ */
26142
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.OtherCloudSingleResourceReference;
26143
+
26144
+ /**
26145
+ * Verifies an OtherCloudSingleResourceReference message.
26146
+ * @param message Plain object to verify
26147
+ * @returns `null` if valid, otherwise the reason why it is not
26148
+ */
26149
+ public static verify(message: { [k: string]: any }): (string|null);
26150
+
26151
+ /**
26152
+ * Creates an OtherCloudSingleResourceReference message from a plain object. Also converts values to their respective internal types.
26153
+ * @param object Plain object
26154
+ * @returns OtherCloudSingleResourceReference
26155
+ */
26156
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.OtherCloudSingleResourceReference;
26157
+
26158
+ /**
26159
+ * Creates a plain object from an OtherCloudSingleResourceReference message. Also converts values to other types if specified.
26160
+ * @param message OtherCloudSingleResourceReference
26161
+ * @param [options] Conversion options
26162
+ * @returns Plain object
26163
+ */
26164
+ public static toObject(message: google.privacy.dlp.v2.OtherCloudSingleResourceReference, options?: $protobuf.IConversionOptions): { [k: string]: any };
26165
+
26166
+ /**
26167
+ * Converts this OtherCloudSingleResourceReference to JSON.
26168
+ * @returns JSON object
26169
+ */
26170
+ public toJSON(): { [k: string]: any };
26171
+
26172
+ /**
26173
+ * Gets the default type url for OtherCloudSingleResourceReference
26174
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
26175
+ * @returns The default type url
26176
+ */
26177
+ public static getTypeUrl(typeUrlPrefix?: string): string;
26178
+ }
26179
+
26180
+ /** Properties of an AwsAccount. */
26181
+ interface IAwsAccount {
26182
+
26183
+ /** AwsAccount accountId */
26184
+ accountId?: (string|null);
26185
+ }
26186
+
26187
+ /** Represents an AwsAccount. */
26188
+ class AwsAccount implements IAwsAccount {
26189
+
26190
+ /**
26191
+ * Constructs a new AwsAccount.
26192
+ * @param [properties] Properties to set
26193
+ */
26194
+ constructor(properties?: google.privacy.dlp.v2.IAwsAccount);
26195
+
26196
+ /** AwsAccount accountId. */
26197
+ public accountId: string;
26198
+
26199
+ /**
26200
+ * Creates a new AwsAccount instance using the specified properties.
26201
+ * @param [properties] Properties to set
26202
+ * @returns AwsAccount instance
26203
+ */
26204
+ public static create(properties?: google.privacy.dlp.v2.IAwsAccount): google.privacy.dlp.v2.AwsAccount;
26205
+
26206
+ /**
26207
+ * Encodes the specified AwsAccount message. Does not implicitly {@link google.privacy.dlp.v2.AwsAccount.verify|verify} messages.
26208
+ * @param message AwsAccount message or plain object to encode
26209
+ * @param [writer] Writer to encode to
26210
+ * @returns Writer
26211
+ */
26212
+ public static encode(message: google.privacy.dlp.v2.IAwsAccount, writer?: $protobuf.Writer): $protobuf.Writer;
26213
+
26214
+ /**
26215
+ * Encodes the specified AwsAccount message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.AwsAccount.verify|verify} messages.
26216
+ * @param message AwsAccount message or plain object to encode
26217
+ * @param [writer] Writer to encode to
26218
+ * @returns Writer
26219
+ */
26220
+ public static encodeDelimited(message: google.privacy.dlp.v2.IAwsAccount, writer?: $protobuf.Writer): $protobuf.Writer;
26221
+
26222
+ /**
26223
+ * Decodes an AwsAccount message from the specified reader or buffer.
26224
+ * @param reader Reader or buffer to decode from
26225
+ * @param [length] Message length if known beforehand
26226
+ * @returns AwsAccount
26227
+ * @throws {Error} If the payload is not a reader or valid buffer
26228
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26229
+ */
26230
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.AwsAccount;
26231
+
26232
+ /**
26233
+ * Decodes an AwsAccount message from the specified reader or buffer, length delimited.
26234
+ * @param reader Reader or buffer to decode from
26235
+ * @returns AwsAccount
26236
+ * @throws {Error} If the payload is not a reader or valid buffer
26237
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26238
+ */
26239
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.AwsAccount;
26240
+
26241
+ /**
26242
+ * Verifies an AwsAccount message.
26243
+ * @param message Plain object to verify
26244
+ * @returns `null` if valid, otherwise the reason why it is not
26245
+ */
26246
+ public static verify(message: { [k: string]: any }): (string|null);
26247
+
26248
+ /**
26249
+ * Creates an AwsAccount message from a plain object. Also converts values to their respective internal types.
26250
+ * @param object Plain object
26251
+ * @returns AwsAccount
26252
+ */
26253
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.AwsAccount;
26254
+
26255
+ /**
26256
+ * Creates a plain object from an AwsAccount message. Also converts values to other types if specified.
26257
+ * @param message AwsAccount
26258
+ * @param [options] Conversion options
26259
+ * @returns Plain object
26260
+ */
26261
+ public static toObject(message: google.privacy.dlp.v2.AwsAccount, options?: $protobuf.IConversionOptions): { [k: string]: any };
26262
+
26263
+ /**
26264
+ * Converts this AwsAccount to JSON.
26265
+ * @returns JSON object
26266
+ */
26267
+ public toJSON(): { [k: string]: any };
26268
+
26269
+ /**
26270
+ * Gets the default type url for AwsAccount
26271
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
26272
+ * @returns The default type url
26273
+ */
26274
+ public static getTypeUrl(typeUrlPrefix?: string): string;
26275
+ }
26276
+
26277
+ /** Properties of an AmazonS3Bucket. */
26278
+ interface IAmazonS3Bucket {
26279
+
26280
+ /** AmazonS3Bucket awsAccount */
26281
+ awsAccount?: (google.privacy.dlp.v2.IAwsAccount|null);
26282
+
26283
+ /** AmazonS3Bucket bucketName */
26284
+ bucketName?: (string|null);
26285
+ }
26286
+
26287
+ /** Represents an AmazonS3Bucket. */
26288
+ class AmazonS3Bucket implements IAmazonS3Bucket {
26289
+
26290
+ /**
26291
+ * Constructs a new AmazonS3Bucket.
26292
+ * @param [properties] Properties to set
26293
+ */
26294
+ constructor(properties?: google.privacy.dlp.v2.IAmazonS3Bucket);
26295
+
26296
+ /** AmazonS3Bucket awsAccount. */
26297
+ public awsAccount?: (google.privacy.dlp.v2.IAwsAccount|null);
26298
+
26299
+ /** AmazonS3Bucket bucketName. */
26300
+ public bucketName: string;
26301
+
26302
+ /**
26303
+ * Creates a new AmazonS3Bucket instance using the specified properties.
26304
+ * @param [properties] Properties to set
26305
+ * @returns AmazonS3Bucket instance
26306
+ */
26307
+ public static create(properties?: google.privacy.dlp.v2.IAmazonS3Bucket): google.privacy.dlp.v2.AmazonS3Bucket;
26308
+
26309
+ /**
26310
+ * Encodes the specified AmazonS3Bucket message. Does not implicitly {@link google.privacy.dlp.v2.AmazonS3Bucket.verify|verify} messages.
26311
+ * @param message AmazonS3Bucket message or plain object to encode
26312
+ * @param [writer] Writer to encode to
26313
+ * @returns Writer
26314
+ */
26315
+ public static encode(message: google.privacy.dlp.v2.IAmazonS3Bucket, writer?: $protobuf.Writer): $protobuf.Writer;
26316
+
26317
+ /**
26318
+ * Encodes the specified AmazonS3Bucket message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.AmazonS3Bucket.verify|verify} messages.
26319
+ * @param message AmazonS3Bucket message or plain object to encode
26320
+ * @param [writer] Writer to encode to
26321
+ * @returns Writer
26322
+ */
26323
+ public static encodeDelimited(message: google.privacy.dlp.v2.IAmazonS3Bucket, writer?: $protobuf.Writer): $protobuf.Writer;
26324
+
26325
+ /**
26326
+ * Decodes an AmazonS3Bucket message from the specified reader or buffer.
26327
+ * @param reader Reader or buffer to decode from
26328
+ * @param [length] Message length if known beforehand
26329
+ * @returns AmazonS3Bucket
26330
+ * @throws {Error} If the payload is not a reader or valid buffer
26331
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26332
+ */
26333
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.AmazonS3Bucket;
26334
+
26335
+ /**
26336
+ * Decodes an AmazonS3Bucket message from the specified reader or buffer, length delimited.
26337
+ * @param reader Reader or buffer to decode from
26338
+ * @returns AmazonS3Bucket
26339
+ * @throws {Error} If the payload is not a reader or valid buffer
26340
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26341
+ */
26342
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.AmazonS3Bucket;
26343
+
26344
+ /**
26345
+ * Verifies an AmazonS3Bucket message.
26346
+ * @param message Plain object to verify
26347
+ * @returns `null` if valid, otherwise the reason why it is not
26348
+ */
26349
+ public static verify(message: { [k: string]: any }): (string|null);
26350
+
26351
+ /**
26352
+ * Creates an AmazonS3Bucket message from a plain object. Also converts values to their respective internal types.
26353
+ * @param object Plain object
26354
+ * @returns AmazonS3Bucket
26355
+ */
26356
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.AmazonS3Bucket;
26357
+
26358
+ /**
26359
+ * Creates a plain object from an AmazonS3Bucket message. Also converts values to other types if specified.
26360
+ * @param message AmazonS3Bucket
26361
+ * @param [options] Conversion options
26362
+ * @returns Plain object
26363
+ */
26364
+ public static toObject(message: google.privacy.dlp.v2.AmazonS3Bucket, options?: $protobuf.IConversionOptions): { [k: string]: any };
26365
+
26366
+ /**
26367
+ * Converts this AmazonS3Bucket to JSON.
26368
+ * @returns JSON object
26369
+ */
26370
+ public toJSON(): { [k: string]: any };
26371
+
26372
+ /**
26373
+ * Gets the default type url for AmazonS3Bucket
26374
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
26375
+ * @returns The default type url
26376
+ */
26377
+ public static getTypeUrl(typeUrlPrefix?: string): string;
26378
+ }
26379
+
26380
+ /** Properties of a DiscoveryOtherCloudConditions. */
26381
+ interface IDiscoveryOtherCloudConditions {
26382
+
26383
+ /** DiscoveryOtherCloudConditions minAge */
26384
+ minAge?: (google.protobuf.IDuration|null);
26385
+
26386
+ /** DiscoveryOtherCloudConditions amazonS3BucketConditions */
26387
+ amazonS3BucketConditions?: (google.privacy.dlp.v2.IAmazonS3BucketConditions|null);
26388
+ }
26389
+
26390
+ /** Represents a DiscoveryOtherCloudConditions. */
26391
+ class DiscoveryOtherCloudConditions implements IDiscoveryOtherCloudConditions {
26392
+
26393
+ /**
26394
+ * Constructs a new DiscoveryOtherCloudConditions.
26395
+ * @param [properties] Properties to set
26396
+ */
26397
+ constructor(properties?: google.privacy.dlp.v2.IDiscoveryOtherCloudConditions);
26398
+
26399
+ /** DiscoveryOtherCloudConditions minAge. */
26400
+ public minAge?: (google.protobuf.IDuration|null);
26401
+
26402
+ /** DiscoveryOtherCloudConditions amazonS3BucketConditions. */
26403
+ public amazonS3BucketConditions?: (google.privacy.dlp.v2.IAmazonS3BucketConditions|null);
26404
+
26405
+ /** DiscoveryOtherCloudConditions conditions. */
26406
+ public conditions?: "amazonS3BucketConditions";
26407
+
26408
+ /**
26409
+ * Creates a new DiscoveryOtherCloudConditions instance using the specified properties.
26410
+ * @param [properties] Properties to set
26411
+ * @returns DiscoveryOtherCloudConditions instance
26412
+ */
26413
+ public static create(properties?: google.privacy.dlp.v2.IDiscoveryOtherCloudConditions): google.privacy.dlp.v2.DiscoveryOtherCloudConditions;
26414
+
26415
+ /**
26416
+ * Encodes the specified DiscoveryOtherCloudConditions message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryOtherCloudConditions.verify|verify} messages.
26417
+ * @param message DiscoveryOtherCloudConditions message or plain object to encode
26418
+ * @param [writer] Writer to encode to
26419
+ * @returns Writer
26420
+ */
26421
+ public static encode(message: google.privacy.dlp.v2.IDiscoveryOtherCloudConditions, writer?: $protobuf.Writer): $protobuf.Writer;
26422
+
26423
+ /**
26424
+ * Encodes the specified DiscoveryOtherCloudConditions message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryOtherCloudConditions.verify|verify} messages.
26425
+ * @param message DiscoveryOtherCloudConditions message or plain object to encode
26426
+ * @param [writer] Writer to encode to
26427
+ * @returns Writer
26428
+ */
26429
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryOtherCloudConditions, writer?: $protobuf.Writer): $protobuf.Writer;
26430
+
26431
+ /**
26432
+ * Decodes a DiscoveryOtherCloudConditions message from the specified reader or buffer.
26433
+ * @param reader Reader or buffer to decode from
26434
+ * @param [length] Message length if known beforehand
26435
+ * @returns DiscoveryOtherCloudConditions
26436
+ * @throws {Error} If the payload is not a reader or valid buffer
26437
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26438
+ */
26439
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryOtherCloudConditions;
26440
+
26441
+ /**
26442
+ * Decodes a DiscoveryOtherCloudConditions message from the specified reader or buffer, length delimited.
26443
+ * @param reader Reader or buffer to decode from
26444
+ * @returns DiscoveryOtherCloudConditions
26445
+ * @throws {Error} If the payload is not a reader or valid buffer
26446
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26447
+ */
26448
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryOtherCloudConditions;
26449
+
26450
+ /**
26451
+ * Verifies a DiscoveryOtherCloudConditions message.
26452
+ * @param message Plain object to verify
26453
+ * @returns `null` if valid, otherwise the reason why it is not
26454
+ */
26455
+ public static verify(message: { [k: string]: any }): (string|null);
26456
+
26457
+ /**
26458
+ * Creates a DiscoveryOtherCloudConditions message from a plain object. Also converts values to their respective internal types.
26459
+ * @param object Plain object
26460
+ * @returns DiscoveryOtherCloudConditions
26461
+ */
26462
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryOtherCloudConditions;
26463
+
26464
+ /**
26465
+ * Creates a plain object from a DiscoveryOtherCloudConditions message. Also converts values to other types if specified.
26466
+ * @param message DiscoveryOtherCloudConditions
26467
+ * @param [options] Conversion options
26468
+ * @returns Plain object
26469
+ */
26470
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryOtherCloudConditions, options?: $protobuf.IConversionOptions): { [k: string]: any };
26471
+
26472
+ /**
26473
+ * Converts this DiscoveryOtherCloudConditions to JSON.
26474
+ * @returns JSON object
26475
+ */
26476
+ public toJSON(): { [k: string]: any };
26477
+
26478
+ /**
26479
+ * Gets the default type url for DiscoveryOtherCloudConditions
26480
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
26481
+ * @returns The default type url
26482
+ */
26483
+ public static getTypeUrl(typeUrlPrefix?: string): string;
26484
+ }
26485
+
26486
+ /** Properties of an AmazonS3BucketConditions. */
26487
+ interface IAmazonS3BucketConditions {
26488
+
26489
+ /** AmazonS3BucketConditions bucketTypes */
26490
+ bucketTypes?: (google.privacy.dlp.v2.AmazonS3BucketConditions.BucketType[]|null);
26491
+
26492
+ /** AmazonS3BucketConditions objectStorageClasses */
26493
+ objectStorageClasses?: (google.privacy.dlp.v2.AmazonS3BucketConditions.ObjectStorageClass[]|null);
26494
+ }
26495
+
26496
+ /** Represents an AmazonS3BucketConditions. */
26497
+ class AmazonS3BucketConditions implements IAmazonS3BucketConditions {
26498
+
26499
+ /**
26500
+ * Constructs a new AmazonS3BucketConditions.
26501
+ * @param [properties] Properties to set
26502
+ */
26503
+ constructor(properties?: google.privacy.dlp.v2.IAmazonS3BucketConditions);
26504
+
26505
+ /** AmazonS3BucketConditions bucketTypes. */
26506
+ public bucketTypes: google.privacy.dlp.v2.AmazonS3BucketConditions.BucketType[];
26507
+
26508
+ /** AmazonS3BucketConditions objectStorageClasses. */
26509
+ public objectStorageClasses: google.privacy.dlp.v2.AmazonS3BucketConditions.ObjectStorageClass[];
26510
+
26511
+ /**
26512
+ * Creates a new AmazonS3BucketConditions instance using the specified properties.
26513
+ * @param [properties] Properties to set
26514
+ * @returns AmazonS3BucketConditions instance
26515
+ */
26516
+ public static create(properties?: google.privacy.dlp.v2.IAmazonS3BucketConditions): google.privacy.dlp.v2.AmazonS3BucketConditions;
26517
+
26518
+ /**
26519
+ * Encodes the specified AmazonS3BucketConditions message. Does not implicitly {@link google.privacy.dlp.v2.AmazonS3BucketConditions.verify|verify} messages.
26520
+ * @param message AmazonS3BucketConditions message or plain object to encode
26521
+ * @param [writer] Writer to encode to
26522
+ * @returns Writer
26523
+ */
26524
+ public static encode(message: google.privacy.dlp.v2.IAmazonS3BucketConditions, writer?: $protobuf.Writer): $protobuf.Writer;
26525
+
26526
+ /**
26527
+ * Encodes the specified AmazonS3BucketConditions message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.AmazonS3BucketConditions.verify|verify} messages.
26528
+ * @param message AmazonS3BucketConditions message or plain object to encode
26529
+ * @param [writer] Writer to encode to
26530
+ * @returns Writer
26531
+ */
26532
+ public static encodeDelimited(message: google.privacy.dlp.v2.IAmazonS3BucketConditions, writer?: $protobuf.Writer): $protobuf.Writer;
26533
+
26534
+ /**
26535
+ * Decodes an AmazonS3BucketConditions message from the specified reader or buffer.
26536
+ * @param reader Reader or buffer to decode from
26537
+ * @param [length] Message length if known beforehand
26538
+ * @returns AmazonS3BucketConditions
26539
+ * @throws {Error} If the payload is not a reader or valid buffer
26540
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26541
+ */
26542
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.AmazonS3BucketConditions;
26543
+
26544
+ /**
26545
+ * Decodes an AmazonS3BucketConditions message from the specified reader or buffer, length delimited.
26546
+ * @param reader Reader or buffer to decode from
26547
+ * @returns AmazonS3BucketConditions
26548
+ * @throws {Error} If the payload is not a reader or valid buffer
26549
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26550
+ */
26551
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.AmazonS3BucketConditions;
26552
+
26553
+ /**
26554
+ * Verifies an AmazonS3BucketConditions message.
26555
+ * @param message Plain object to verify
26556
+ * @returns `null` if valid, otherwise the reason why it is not
26557
+ */
26558
+ public static verify(message: { [k: string]: any }): (string|null);
26559
+
26560
+ /**
26561
+ * Creates an AmazonS3BucketConditions message from a plain object. Also converts values to their respective internal types.
26562
+ * @param object Plain object
26563
+ * @returns AmazonS3BucketConditions
26564
+ */
26565
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.AmazonS3BucketConditions;
26566
+
26567
+ /**
26568
+ * Creates a plain object from an AmazonS3BucketConditions message. Also converts values to other types if specified.
26569
+ * @param message AmazonS3BucketConditions
26570
+ * @param [options] Conversion options
26571
+ * @returns Plain object
26572
+ */
26573
+ public static toObject(message: google.privacy.dlp.v2.AmazonS3BucketConditions, options?: $protobuf.IConversionOptions): { [k: string]: any };
26574
+
26575
+ /**
26576
+ * Converts this AmazonS3BucketConditions to JSON.
26577
+ * @returns JSON object
26578
+ */
26579
+ public toJSON(): { [k: string]: any };
26580
+
26581
+ /**
26582
+ * Gets the default type url for AmazonS3BucketConditions
26583
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
26584
+ * @returns The default type url
26585
+ */
26586
+ public static getTypeUrl(typeUrlPrefix?: string): string;
26587
+ }
26588
+
26589
+ namespace AmazonS3BucketConditions {
26590
+
26591
+ /** BucketType enum. */
26592
+ enum BucketType {
26593
+ TYPE_UNSPECIFIED = 0,
26594
+ TYPE_ALL_SUPPORTED = 1,
26595
+ TYPE_GENERAL_PURPOSE = 2
26596
+ }
26597
+
26598
+ /** ObjectStorageClass enum. */
26599
+ enum ObjectStorageClass {
26600
+ UNSPECIFIED = 0,
26601
+ ALL_SUPPORTED_CLASSES = 1,
26602
+ STANDARD = 2,
26603
+ STANDARD_INFREQUENT_ACCESS = 4,
26604
+ GLACIER_INSTANT_RETRIEVAL = 6,
26605
+ INTELLIGENT_TIERING = 7
26606
+ }
26607
+ }
26608
+
26609
+ /** Properties of a DiscoveryOtherCloudGenerationCadence. */
26610
+ interface IDiscoveryOtherCloudGenerationCadence {
26611
+
26612
+ /** DiscoveryOtherCloudGenerationCadence refreshFrequency */
26613
+ refreshFrequency?: (google.privacy.dlp.v2.DataProfileUpdateFrequency|keyof typeof google.privacy.dlp.v2.DataProfileUpdateFrequency|null);
26614
+
26615
+ /** DiscoveryOtherCloudGenerationCadence inspectTemplateModifiedCadence */
26616
+ inspectTemplateModifiedCadence?: (google.privacy.dlp.v2.IDiscoveryInspectTemplateModifiedCadence|null);
26617
+ }
26618
+
26619
+ /** Represents a DiscoveryOtherCloudGenerationCadence. */
26620
+ class DiscoveryOtherCloudGenerationCadence implements IDiscoveryOtherCloudGenerationCadence {
26621
+
26622
+ /**
26623
+ * Constructs a new DiscoveryOtherCloudGenerationCadence.
26624
+ * @param [properties] Properties to set
26625
+ */
26626
+ constructor(properties?: google.privacy.dlp.v2.IDiscoveryOtherCloudGenerationCadence);
26627
+
26628
+ /** DiscoveryOtherCloudGenerationCadence refreshFrequency. */
26629
+ public refreshFrequency: (google.privacy.dlp.v2.DataProfileUpdateFrequency|keyof typeof google.privacy.dlp.v2.DataProfileUpdateFrequency);
26630
+
26631
+ /** DiscoveryOtherCloudGenerationCadence inspectTemplateModifiedCadence. */
26632
+ public inspectTemplateModifiedCadence?: (google.privacy.dlp.v2.IDiscoveryInspectTemplateModifiedCadence|null);
26633
+
26634
+ /**
26635
+ * Creates a new DiscoveryOtherCloudGenerationCadence instance using the specified properties.
26636
+ * @param [properties] Properties to set
26637
+ * @returns DiscoveryOtherCloudGenerationCadence instance
26638
+ */
26639
+ public static create(properties?: google.privacy.dlp.v2.IDiscoveryOtherCloudGenerationCadence): google.privacy.dlp.v2.DiscoveryOtherCloudGenerationCadence;
26640
+
26641
+ /**
26642
+ * Encodes the specified DiscoveryOtherCloudGenerationCadence message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryOtherCloudGenerationCadence.verify|verify} messages.
26643
+ * @param message DiscoveryOtherCloudGenerationCadence message or plain object to encode
26644
+ * @param [writer] Writer to encode to
26645
+ * @returns Writer
26646
+ */
26647
+ public static encode(message: google.privacy.dlp.v2.IDiscoveryOtherCloudGenerationCadence, writer?: $protobuf.Writer): $protobuf.Writer;
26648
+
26649
+ /**
26650
+ * Encodes the specified DiscoveryOtherCloudGenerationCadence message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryOtherCloudGenerationCadence.verify|verify} messages.
26651
+ * @param message DiscoveryOtherCloudGenerationCadence message or plain object to encode
26652
+ * @param [writer] Writer to encode to
26653
+ * @returns Writer
26654
+ */
26655
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryOtherCloudGenerationCadence, writer?: $protobuf.Writer): $protobuf.Writer;
26656
+
26657
+ /**
26658
+ * Decodes a DiscoveryOtherCloudGenerationCadence message from the specified reader or buffer.
26659
+ * @param reader Reader or buffer to decode from
26660
+ * @param [length] Message length if known beforehand
26661
+ * @returns DiscoveryOtherCloudGenerationCadence
26662
+ * @throws {Error} If the payload is not a reader or valid buffer
26663
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26664
+ */
26665
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryOtherCloudGenerationCadence;
26666
+
26667
+ /**
26668
+ * Decodes a DiscoveryOtherCloudGenerationCadence message from the specified reader or buffer, length delimited.
26669
+ * @param reader Reader or buffer to decode from
26670
+ * @returns DiscoveryOtherCloudGenerationCadence
26671
+ * @throws {Error} If the payload is not a reader or valid buffer
26672
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26673
+ */
26674
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryOtherCloudGenerationCadence;
26675
+
26676
+ /**
26677
+ * Verifies a DiscoveryOtherCloudGenerationCadence message.
26678
+ * @param message Plain object to verify
26679
+ * @returns `null` if valid, otherwise the reason why it is not
26680
+ */
26681
+ public static verify(message: { [k: string]: any }): (string|null);
26682
+
26683
+ /**
26684
+ * Creates a DiscoveryOtherCloudGenerationCadence message from a plain object. Also converts values to their respective internal types.
26685
+ * @param object Plain object
26686
+ * @returns DiscoveryOtherCloudGenerationCadence
26687
+ */
26688
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryOtherCloudGenerationCadence;
26689
+
26690
+ /**
26691
+ * Creates a plain object from a DiscoveryOtherCloudGenerationCadence message. Also converts values to other types if specified.
26692
+ * @param message DiscoveryOtherCloudGenerationCadence
26693
+ * @param [options] Conversion options
26694
+ * @returns Plain object
26695
+ */
26696
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryOtherCloudGenerationCadence, options?: $protobuf.IConversionOptions): { [k: string]: any };
26697
+
26698
+ /**
26699
+ * Converts this DiscoveryOtherCloudGenerationCadence to JSON.
26700
+ * @returns JSON object
26701
+ */
26702
+ public toJSON(): { [k: string]: any };
26703
+
26704
+ /**
26705
+ * Gets the default type url for DiscoveryOtherCloudGenerationCadence
26706
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
26707
+ * @returns The default type url
26708
+ */
26709
+ public static getTypeUrl(typeUrlPrefix?: string): string;
26710
+ }
26711
+
26712
+ /** Properties of a DiscoveryStartingLocation. */
26713
+ interface IDiscoveryStartingLocation {
26714
+
26715
+ /** DiscoveryStartingLocation organizationId */
26716
+ organizationId?: (number|Long|string|null);
26717
+
26718
+ /** DiscoveryStartingLocation folderId */
26719
+ folderId?: (number|Long|string|null);
26720
+ }
26721
+
26722
+ /** Represents a DiscoveryStartingLocation. */
26723
+ class DiscoveryStartingLocation implements IDiscoveryStartingLocation {
26724
+
26725
+ /**
26726
+ * Constructs a new DiscoveryStartingLocation.
26727
+ * @param [properties] Properties to set
26728
+ */
26729
+ constructor(properties?: google.privacy.dlp.v2.IDiscoveryStartingLocation);
26730
+
26731
+ /** DiscoveryStartingLocation organizationId. */
26732
+ public organizationId?: (number|Long|string|null);
26733
+
26734
+ /** DiscoveryStartingLocation folderId. */
26735
+ public folderId?: (number|Long|string|null);
26736
+
26737
+ /** DiscoveryStartingLocation location. */
26738
+ public location?: ("organizationId"|"folderId");
26739
+
26740
+ /**
26741
+ * Creates a new DiscoveryStartingLocation instance using the specified properties.
26742
+ * @param [properties] Properties to set
26743
+ * @returns DiscoveryStartingLocation instance
26744
+ */
26745
+ public static create(properties?: google.privacy.dlp.v2.IDiscoveryStartingLocation): google.privacy.dlp.v2.DiscoveryStartingLocation;
26746
+
26747
+ /**
26748
+ * Encodes the specified DiscoveryStartingLocation message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryStartingLocation.verify|verify} messages.
26749
+ * @param message DiscoveryStartingLocation message or plain object to encode
26750
+ * @param [writer] Writer to encode to
26751
+ * @returns Writer
26752
+ */
26753
+ public static encode(message: google.privacy.dlp.v2.IDiscoveryStartingLocation, writer?: $protobuf.Writer): $protobuf.Writer;
26754
+
26755
+ /**
26756
+ * Encodes the specified DiscoveryStartingLocation message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryStartingLocation.verify|verify} messages.
26757
+ * @param message DiscoveryStartingLocation message or plain object to encode
26758
+ * @param [writer] Writer to encode to
26759
+ * @returns Writer
26760
+ */
26761
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryStartingLocation, writer?: $protobuf.Writer): $protobuf.Writer;
26762
+
26763
+ /**
26764
+ * Decodes a DiscoveryStartingLocation message from the specified reader or buffer.
26765
+ * @param reader Reader or buffer to decode from
26766
+ * @param [length] Message length if known beforehand
26767
+ * @returns DiscoveryStartingLocation
26768
+ * @throws {Error} If the payload is not a reader or valid buffer
26769
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26770
+ */
26771
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryStartingLocation;
26772
+
26773
+ /**
26774
+ * Decodes a DiscoveryStartingLocation message from the specified reader or buffer, length delimited.
26775
+ * @param reader Reader or buffer to decode from
26776
+ * @returns DiscoveryStartingLocation
26777
+ * @throws {Error} If the payload is not a reader or valid buffer
26778
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26779
+ */
26780
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryStartingLocation;
26781
+
26782
+ /**
26783
+ * Verifies a DiscoveryStartingLocation message.
26784
+ * @param message Plain object to verify
26785
+ * @returns `null` if valid, otherwise the reason why it is not
26786
+ */
26787
+ public static verify(message: { [k: string]: any }): (string|null);
26788
+
26789
+ /**
26790
+ * Creates a DiscoveryStartingLocation message from a plain object. Also converts values to their respective internal types.
26791
+ * @param object Plain object
26792
+ * @returns DiscoveryStartingLocation
26793
+ */
26794
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryStartingLocation;
26795
+
26796
+ /**
26797
+ * Creates a plain object from a DiscoveryStartingLocation message. Also converts values to other types if specified.
26798
+ * @param message DiscoveryStartingLocation
26799
+ * @param [options] Conversion options
26800
+ * @returns Plain object
26801
+ */
26802
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryStartingLocation, options?: $protobuf.IConversionOptions): { [k: string]: any };
26803
+
26804
+ /**
26805
+ * Converts this DiscoveryStartingLocation to JSON.
26806
+ * @returns JSON object
26807
+ */
26808
+ public toJSON(): { [k: string]: any };
26809
+
26810
+ /**
26811
+ * Gets the default type url for DiscoveryStartingLocation
26812
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
26813
+ * @returns The default type url
26814
+ */
26815
+ public static getTypeUrl(typeUrlPrefix?: string): string;
26816
+ }
26817
+
26818
+ /** Properties of an OtherCloudDiscoveryStartingLocation. */
26819
+ interface IOtherCloudDiscoveryStartingLocation {
26820
+
26821
+ /** OtherCloudDiscoveryStartingLocation awsLocation */
26822
+ awsLocation?: (google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation.IAwsDiscoveryStartingLocation|null);
26823
+ }
26824
+
26825
+ /** Represents an OtherCloudDiscoveryStartingLocation. */
26826
+ class OtherCloudDiscoveryStartingLocation implements IOtherCloudDiscoveryStartingLocation {
26827
+
26828
+ /**
26829
+ * Constructs a new OtherCloudDiscoveryStartingLocation.
26830
+ * @param [properties] Properties to set
26831
+ */
26832
+ constructor(properties?: google.privacy.dlp.v2.IOtherCloudDiscoveryStartingLocation);
26833
+
26834
+ /** OtherCloudDiscoveryStartingLocation awsLocation. */
26835
+ public awsLocation?: (google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation.IAwsDiscoveryStartingLocation|null);
26836
+
26837
+ /** OtherCloudDiscoveryStartingLocation location. */
26838
+ public location?: "awsLocation";
26839
+
26840
+ /**
26841
+ * Creates a new OtherCloudDiscoveryStartingLocation instance using the specified properties.
26842
+ * @param [properties] Properties to set
26843
+ * @returns OtherCloudDiscoveryStartingLocation instance
26844
+ */
26845
+ public static create(properties?: google.privacy.dlp.v2.IOtherCloudDiscoveryStartingLocation): google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation;
26846
+
26847
+ /**
26848
+ * Encodes the specified OtherCloudDiscoveryStartingLocation message. Does not implicitly {@link google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation.verify|verify} messages.
26849
+ * @param message OtherCloudDiscoveryStartingLocation message or plain object to encode
26850
+ * @param [writer] Writer to encode to
26851
+ * @returns Writer
26852
+ */
26853
+ public static encode(message: google.privacy.dlp.v2.IOtherCloudDiscoveryStartingLocation, writer?: $protobuf.Writer): $protobuf.Writer;
26854
+
26855
+ /**
26856
+ * Encodes the specified OtherCloudDiscoveryStartingLocation message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation.verify|verify} messages.
26857
+ * @param message OtherCloudDiscoveryStartingLocation message or plain object to encode
26858
+ * @param [writer] Writer to encode to
26859
+ * @returns Writer
26860
+ */
26861
+ public static encodeDelimited(message: google.privacy.dlp.v2.IOtherCloudDiscoveryStartingLocation, writer?: $protobuf.Writer): $protobuf.Writer;
26862
+
26863
+ /**
26864
+ * Decodes an OtherCloudDiscoveryStartingLocation message from the specified reader or buffer.
26865
+ * @param reader Reader or buffer to decode from
26866
+ * @param [length] Message length if known beforehand
26867
+ * @returns OtherCloudDiscoveryStartingLocation
26868
+ * @throws {Error} If the payload is not a reader or valid buffer
26869
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26870
+ */
26871
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation;
26872
+
26873
+ /**
26874
+ * Decodes an OtherCloudDiscoveryStartingLocation message from the specified reader or buffer, length delimited.
26875
+ * @param reader Reader or buffer to decode from
26876
+ * @returns OtherCloudDiscoveryStartingLocation
26877
+ * @throws {Error} If the payload is not a reader or valid buffer
26878
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26879
+ */
26880
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation;
26881
+
26882
+ /**
26883
+ * Verifies an OtherCloudDiscoveryStartingLocation message.
26884
+ * @param message Plain object to verify
26885
+ * @returns `null` if valid, otherwise the reason why it is not
26886
+ */
26887
+ public static verify(message: { [k: string]: any }): (string|null);
26888
+
26889
+ /**
26890
+ * Creates an OtherCloudDiscoveryStartingLocation message from a plain object. Also converts values to their respective internal types.
26891
+ * @param object Plain object
26892
+ * @returns OtherCloudDiscoveryStartingLocation
26893
+ */
26894
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation;
26895
+
26896
+ /**
26897
+ * Creates a plain object from an OtherCloudDiscoveryStartingLocation message. Also converts values to other types if specified.
26898
+ * @param message OtherCloudDiscoveryStartingLocation
26899
+ * @param [options] Conversion options
26900
+ * @returns Plain object
26901
+ */
26902
+ public static toObject(message: google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation, options?: $protobuf.IConversionOptions): { [k: string]: any };
26903
+
26904
+ /**
26905
+ * Converts this OtherCloudDiscoveryStartingLocation to JSON.
26906
+ * @returns JSON object
26907
+ */
26908
+ public toJSON(): { [k: string]: any };
26909
+
26910
+ /**
26911
+ * Gets the default type url for OtherCloudDiscoveryStartingLocation
26912
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
26913
+ * @returns The default type url
26914
+ */
26915
+ public static getTypeUrl(typeUrlPrefix?: string): string;
26916
+ }
26917
+
26918
+ namespace OtherCloudDiscoveryStartingLocation {
26919
+
26920
+ /** Properties of an AwsDiscoveryStartingLocation. */
26921
+ interface IAwsDiscoveryStartingLocation {
26922
+
26923
+ /** AwsDiscoveryStartingLocation accountId */
26924
+ accountId?: (string|null);
26925
+
26926
+ /** AwsDiscoveryStartingLocation allAssetInventoryAssets */
26927
+ allAssetInventoryAssets?: (boolean|null);
26928
+ }
26929
+
26930
+ /** Represents an AwsDiscoveryStartingLocation. */
26931
+ class AwsDiscoveryStartingLocation implements IAwsDiscoveryStartingLocation {
26932
+
26933
+ /**
26934
+ * Constructs a new AwsDiscoveryStartingLocation.
26935
+ * @param [properties] Properties to set
26936
+ */
26937
+ constructor(properties?: google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation.IAwsDiscoveryStartingLocation);
26938
+
26939
+ /** AwsDiscoveryStartingLocation accountId. */
26940
+ public accountId?: (string|null);
26941
+
26942
+ /** AwsDiscoveryStartingLocation allAssetInventoryAssets. */
26943
+ public allAssetInventoryAssets?: (boolean|null);
26944
+
26945
+ /** AwsDiscoveryStartingLocation scope. */
26946
+ public scope?: ("accountId"|"allAssetInventoryAssets");
26947
+
26948
+ /**
26949
+ * Creates a new AwsDiscoveryStartingLocation instance using the specified properties.
26950
+ * @param [properties] Properties to set
26951
+ * @returns AwsDiscoveryStartingLocation instance
26952
+ */
26953
+ public static create(properties?: google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation.IAwsDiscoveryStartingLocation): google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation.AwsDiscoveryStartingLocation;
26954
+
26955
+ /**
26956
+ * Encodes the specified AwsDiscoveryStartingLocation message. Does not implicitly {@link google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation.AwsDiscoveryStartingLocation.verify|verify} messages.
26957
+ * @param message AwsDiscoveryStartingLocation message or plain object to encode
26958
+ * @param [writer] Writer to encode to
26959
+ * @returns Writer
26960
+ */
26961
+ public static encode(message: google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation.IAwsDiscoveryStartingLocation, writer?: $protobuf.Writer): $protobuf.Writer;
26962
+
26963
+ /**
26964
+ * Encodes the specified AwsDiscoveryStartingLocation message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation.AwsDiscoveryStartingLocation.verify|verify} messages.
26965
+ * @param message AwsDiscoveryStartingLocation message or plain object to encode
26966
+ * @param [writer] Writer to encode to
26967
+ * @returns Writer
26968
+ */
26969
+ public static encodeDelimited(message: google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation.IAwsDiscoveryStartingLocation, writer?: $protobuf.Writer): $protobuf.Writer;
26970
+
26971
+ /**
26972
+ * Decodes an AwsDiscoveryStartingLocation message from the specified reader or buffer.
26973
+ * @param reader Reader or buffer to decode from
26974
+ * @param [length] Message length if known beforehand
26975
+ * @returns AwsDiscoveryStartingLocation
26976
+ * @throws {Error} If the payload is not a reader or valid buffer
26977
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26978
+ */
26979
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation.AwsDiscoveryStartingLocation;
26980
+
26981
+ /**
26982
+ * Decodes an AwsDiscoveryStartingLocation message from the specified reader or buffer, length delimited.
26983
+ * @param reader Reader or buffer to decode from
26984
+ * @returns AwsDiscoveryStartingLocation
26985
+ * @throws {Error} If the payload is not a reader or valid buffer
26986
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26987
+ */
26988
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation.AwsDiscoveryStartingLocation;
26989
+
26990
+ /**
26991
+ * Verifies an AwsDiscoveryStartingLocation message.
26992
+ * @param message Plain object to verify
26993
+ * @returns `null` if valid, otherwise the reason why it is not
26994
+ */
26995
+ public static verify(message: { [k: string]: any }): (string|null);
26996
+
26997
+ /**
26998
+ * Creates an AwsDiscoveryStartingLocation message from a plain object. Also converts values to their respective internal types.
26999
+ * @param object Plain object
27000
+ * @returns AwsDiscoveryStartingLocation
27001
+ */
27002
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation.AwsDiscoveryStartingLocation;
27003
+
27004
+ /**
27005
+ * Creates a plain object from an AwsDiscoveryStartingLocation message. Also converts values to other types if specified.
27006
+ * @param message AwsDiscoveryStartingLocation
27007
+ * @param [options] Conversion options
27008
+ * @returns Plain object
27009
+ */
27010
+ public static toObject(message: google.privacy.dlp.v2.OtherCloudDiscoveryStartingLocation.AwsDiscoveryStartingLocation, options?: $protobuf.IConversionOptions): { [k: string]: any };
27011
+
27012
+ /**
27013
+ * Converts this AwsDiscoveryStartingLocation to JSON.
27014
+ * @returns JSON object
27015
+ */
27016
+ public toJSON(): { [k: string]: any };
27017
+
27018
+ /**
27019
+ * Gets the default type url for AwsDiscoveryStartingLocation
27020
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27021
+ * @returns The default type url
27022
+ */
27023
+ public static getTypeUrl(typeUrlPrefix?: string): string;
27024
+ }
27025
+ }
27026
+
25240
27027
  /** Properties of an AllOtherResources. */
25241
27028
  interface IAllOtherResources {
25242
27029
  }