@google-cloud/dlp 6.4.0 → 6.5.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.
@@ -4144,6 +4144,12 @@ export namespace google {
4144
4144
 
4145
4145
  /** RedactImageRequest byteItem */
4146
4146
  byteItem?: (google.privacy.dlp.v2.IByteContentItem|null);
4147
+
4148
+ /** RedactImageRequest inspectTemplate */
4149
+ inspectTemplate?: (string|null);
4150
+
4151
+ /** RedactImageRequest deidentifyTemplate */
4152
+ deidentifyTemplate?: (string|null);
4147
4153
  }
4148
4154
 
4149
4155
  /** Represents a RedactImageRequest. */
@@ -4173,6 +4179,12 @@ export namespace google {
4173
4179
  /** RedactImageRequest byteItem. */
4174
4180
  public byteItem?: (google.privacy.dlp.v2.IByteContentItem|null);
4175
4181
 
4182
+ /** RedactImageRequest inspectTemplate. */
4183
+ public inspectTemplate: string;
4184
+
4185
+ /** RedactImageRequest deidentifyTemplate. */
4186
+ public deidentifyTemplate: string;
4187
+
4176
4188
  /**
4177
4189
  * Creates a new RedactImageRequest instance using the specified properties.
4178
4190
  * @param [properties] Properties to set
@@ -5280,6 +5292,9 @@ export namespace google {
5280
5292
  /** OutputStorageConfig table */
5281
5293
  table?: (google.privacy.dlp.v2.IBigQueryTable|null);
5282
5294
 
5295
+ /** OutputStorageConfig storagePath */
5296
+ storagePath?: (google.privacy.dlp.v2.ICloudStoragePath|null);
5297
+
5283
5298
  /** OutputStorageConfig outputSchema */
5284
5299
  outputSchema?: (google.privacy.dlp.v2.OutputStorageConfig.OutputSchema|keyof typeof google.privacy.dlp.v2.OutputStorageConfig.OutputSchema|null);
5285
5300
  }
@@ -5296,11 +5311,14 @@ export namespace google {
5296
5311
  /** OutputStorageConfig table. */
5297
5312
  public table?: (google.privacy.dlp.v2.IBigQueryTable|null);
5298
5313
 
5314
+ /** OutputStorageConfig storagePath. */
5315
+ public storagePath?: (google.privacy.dlp.v2.ICloudStoragePath|null);
5316
+
5299
5317
  /** OutputStorageConfig outputSchema. */
5300
5318
  public outputSchema: (google.privacy.dlp.v2.OutputStorageConfig.OutputSchema|keyof typeof google.privacy.dlp.v2.OutputStorageConfig.OutputSchema);
5301
5319
 
5302
5320
  /** OutputStorageConfig type. */
5303
- public type?: "table";
5321
+ public type?: ("table"|"storagePath");
5304
5322
 
5305
5323
  /**
5306
5324
  * Creates a new OutputStorageConfig instance using the specified properties.
@@ -17059,6 +17077,9 @@ export namespace google {
17059
17077
  /** Action publishFindingsToCloudDataCatalog */
17060
17078
  publishFindingsToCloudDataCatalog?: (google.privacy.dlp.v2.Action.IPublishFindingsToCloudDataCatalog|null);
17061
17079
 
17080
+ /** Action publishFindingsToDataplexCatalog */
17081
+ publishFindingsToDataplexCatalog?: (google.privacy.dlp.v2.Action.IPublishFindingsToDataplexCatalog|null);
17082
+
17062
17083
  /** Action deidentify */
17063
17084
  deidentify?: (google.privacy.dlp.v2.Action.IDeidentify|null);
17064
17085
 
@@ -17090,6 +17111,9 @@ export namespace google {
17090
17111
  /** Action publishFindingsToCloudDataCatalog. */
17091
17112
  public publishFindingsToCloudDataCatalog?: (google.privacy.dlp.v2.Action.IPublishFindingsToCloudDataCatalog|null);
17092
17113
 
17114
+ /** Action publishFindingsToDataplexCatalog. */
17115
+ public publishFindingsToDataplexCatalog?: (google.privacy.dlp.v2.Action.IPublishFindingsToDataplexCatalog|null);
17116
+
17093
17117
  /** Action deidentify. */
17094
17118
  public deidentify?: (google.privacy.dlp.v2.Action.IDeidentify|null);
17095
17119
 
@@ -17100,7 +17124,7 @@ export namespace google {
17100
17124
  public publishToStackdriver?: (google.privacy.dlp.v2.Action.IPublishToStackdriver|null);
17101
17125
 
17102
17126
  /** Action action. */
17103
- public action?: ("saveFindings"|"pubSub"|"publishSummaryToCscc"|"publishFindingsToCloudDataCatalog"|"deidentify"|"jobNotificationEmails"|"publishToStackdriver");
17127
+ public action?: ("saveFindings"|"pubSub"|"publishSummaryToCscc"|"publishFindingsToCloudDataCatalog"|"publishFindingsToDataplexCatalog"|"deidentify"|"jobNotificationEmails"|"publishToStackdriver");
17104
17128
 
17105
17129
  /**
17106
17130
  * Creates a new Action instance using the specified properties.
@@ -17558,6 +17582,97 @@ export namespace google {
17558
17582
  public static getTypeUrl(typeUrlPrefix?: string): string;
17559
17583
  }
17560
17584
 
17585
+ /** Properties of a PublishFindingsToDataplexCatalog. */
17586
+ interface IPublishFindingsToDataplexCatalog {
17587
+ }
17588
+
17589
+ /** Represents a PublishFindingsToDataplexCatalog. */
17590
+ class PublishFindingsToDataplexCatalog implements IPublishFindingsToDataplexCatalog {
17591
+
17592
+ /**
17593
+ * Constructs a new PublishFindingsToDataplexCatalog.
17594
+ * @param [properties] Properties to set
17595
+ */
17596
+ constructor(properties?: google.privacy.dlp.v2.Action.IPublishFindingsToDataplexCatalog);
17597
+
17598
+ /**
17599
+ * Creates a new PublishFindingsToDataplexCatalog instance using the specified properties.
17600
+ * @param [properties] Properties to set
17601
+ * @returns PublishFindingsToDataplexCatalog instance
17602
+ */
17603
+ public static create(properties?: google.privacy.dlp.v2.Action.IPublishFindingsToDataplexCatalog): google.privacy.dlp.v2.Action.PublishFindingsToDataplexCatalog;
17604
+
17605
+ /**
17606
+ * Encodes the specified PublishFindingsToDataplexCatalog message. Does not implicitly {@link google.privacy.dlp.v2.Action.PublishFindingsToDataplexCatalog.verify|verify} messages.
17607
+ * @param message PublishFindingsToDataplexCatalog message or plain object to encode
17608
+ * @param [writer] Writer to encode to
17609
+ * @returns Writer
17610
+ */
17611
+ public static encode(message: google.privacy.dlp.v2.Action.IPublishFindingsToDataplexCatalog, writer?: $protobuf.Writer): $protobuf.Writer;
17612
+
17613
+ /**
17614
+ * Encodes the specified PublishFindingsToDataplexCatalog message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.Action.PublishFindingsToDataplexCatalog.verify|verify} messages.
17615
+ * @param message PublishFindingsToDataplexCatalog message or plain object to encode
17616
+ * @param [writer] Writer to encode to
17617
+ * @returns Writer
17618
+ */
17619
+ public static encodeDelimited(message: google.privacy.dlp.v2.Action.IPublishFindingsToDataplexCatalog, writer?: $protobuf.Writer): $protobuf.Writer;
17620
+
17621
+ /**
17622
+ * Decodes a PublishFindingsToDataplexCatalog message from the specified reader or buffer.
17623
+ * @param reader Reader or buffer to decode from
17624
+ * @param [length] Message length if known beforehand
17625
+ * @returns PublishFindingsToDataplexCatalog
17626
+ * @throws {Error} If the payload is not a reader or valid buffer
17627
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
17628
+ */
17629
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.Action.PublishFindingsToDataplexCatalog;
17630
+
17631
+ /**
17632
+ * Decodes a PublishFindingsToDataplexCatalog message from the specified reader or buffer, length delimited.
17633
+ * @param reader Reader or buffer to decode from
17634
+ * @returns PublishFindingsToDataplexCatalog
17635
+ * @throws {Error} If the payload is not a reader or valid buffer
17636
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
17637
+ */
17638
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.Action.PublishFindingsToDataplexCatalog;
17639
+
17640
+ /**
17641
+ * Verifies a PublishFindingsToDataplexCatalog message.
17642
+ * @param message Plain object to verify
17643
+ * @returns `null` if valid, otherwise the reason why it is not
17644
+ */
17645
+ public static verify(message: { [k: string]: any }): (string|null);
17646
+
17647
+ /**
17648
+ * Creates a PublishFindingsToDataplexCatalog message from a plain object. Also converts values to their respective internal types.
17649
+ * @param object Plain object
17650
+ * @returns PublishFindingsToDataplexCatalog
17651
+ */
17652
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.Action.PublishFindingsToDataplexCatalog;
17653
+
17654
+ /**
17655
+ * Creates a plain object from a PublishFindingsToDataplexCatalog message. Also converts values to other types if specified.
17656
+ * @param message PublishFindingsToDataplexCatalog
17657
+ * @param [options] Conversion options
17658
+ * @returns Plain object
17659
+ */
17660
+ public static toObject(message: google.privacy.dlp.v2.Action.PublishFindingsToDataplexCatalog, options?: $protobuf.IConversionOptions): { [k: string]: any };
17661
+
17662
+ /**
17663
+ * Converts this PublishFindingsToDataplexCatalog to JSON.
17664
+ * @returns JSON object
17665
+ */
17666
+ public toJSON(): { [k: string]: any };
17667
+
17668
+ /**
17669
+ * Gets the default type url for PublishFindingsToDataplexCatalog
17670
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
17671
+ * @returns The default type url
17672
+ */
17673
+ public static getTypeUrl(typeUrlPrefix?: string): string;
17674
+ }
17675
+
17561
17676
  /** Properties of a Deidentify. */
17562
17677
  interface IDeidentify {
17563
17678
 
@@ -25114,6 +25229,9 @@ export namespace google {
25114
25229
 
25115
25230
  /** FileStoreCollection includeRegexes */
25116
25231
  includeRegexes?: (google.privacy.dlp.v2.IFileStoreRegexes|null);
25232
+
25233
+ /** FileStoreCollection includeTags */
25234
+ includeTags?: (google.privacy.dlp.v2.ITagFilters|null);
25117
25235
  }
25118
25236
 
25119
25237
  /** Represents a FileStoreCollection. */
@@ -25128,6 +25246,9 @@ export namespace google {
25128
25246
  /** FileStoreCollection includeRegexes. */
25129
25247
  public includeRegexes?: (google.privacy.dlp.v2.IFileStoreRegexes|null);
25130
25248
 
25249
+ /** FileStoreCollection includeTags. */
25250
+ public includeTags?: (google.privacy.dlp.v2.ITagFilters|null);
25251
+
25131
25252
  /** FileStoreCollection pattern. */
25132
25253
  public pattern?: "includeRegexes";
25133
25254
 
@@ -34171,6 +34292,209 @@ export namespace google {
34171
34292
  public static getTypeUrl(typeUrlPrefix?: string): string;
34172
34293
  }
34173
34294
 
34295
+ /** Properties of a TagFilters. */
34296
+ interface ITagFilters {
34297
+
34298
+ /** TagFilters tagFilters */
34299
+ tagFilters?: (google.privacy.dlp.v2.ITagFilter[]|null);
34300
+ }
34301
+
34302
+ /** Represents a TagFilters. */
34303
+ class TagFilters implements ITagFilters {
34304
+
34305
+ /**
34306
+ * Constructs a new TagFilters.
34307
+ * @param [properties] Properties to set
34308
+ */
34309
+ constructor(properties?: google.privacy.dlp.v2.ITagFilters);
34310
+
34311
+ /** TagFilters tagFilters. */
34312
+ public tagFilters: google.privacy.dlp.v2.ITagFilter[];
34313
+
34314
+ /**
34315
+ * Creates a new TagFilters instance using the specified properties.
34316
+ * @param [properties] Properties to set
34317
+ * @returns TagFilters instance
34318
+ */
34319
+ public static create(properties?: google.privacy.dlp.v2.ITagFilters): google.privacy.dlp.v2.TagFilters;
34320
+
34321
+ /**
34322
+ * Encodes the specified TagFilters message. Does not implicitly {@link google.privacy.dlp.v2.TagFilters.verify|verify} messages.
34323
+ * @param message TagFilters message or plain object to encode
34324
+ * @param [writer] Writer to encode to
34325
+ * @returns Writer
34326
+ */
34327
+ public static encode(message: google.privacy.dlp.v2.ITagFilters, writer?: $protobuf.Writer): $protobuf.Writer;
34328
+
34329
+ /**
34330
+ * Encodes the specified TagFilters message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.TagFilters.verify|verify} messages.
34331
+ * @param message TagFilters message or plain object to encode
34332
+ * @param [writer] Writer to encode to
34333
+ * @returns Writer
34334
+ */
34335
+ public static encodeDelimited(message: google.privacy.dlp.v2.ITagFilters, writer?: $protobuf.Writer): $protobuf.Writer;
34336
+
34337
+ /**
34338
+ * Decodes a TagFilters message from the specified reader or buffer.
34339
+ * @param reader Reader or buffer to decode from
34340
+ * @param [length] Message length if known beforehand
34341
+ * @returns TagFilters
34342
+ * @throws {Error} If the payload is not a reader or valid buffer
34343
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
34344
+ */
34345
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.TagFilters;
34346
+
34347
+ /**
34348
+ * Decodes a TagFilters message from the specified reader or buffer, length delimited.
34349
+ * @param reader Reader or buffer to decode from
34350
+ * @returns TagFilters
34351
+ * @throws {Error} If the payload is not a reader or valid buffer
34352
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
34353
+ */
34354
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.TagFilters;
34355
+
34356
+ /**
34357
+ * Verifies a TagFilters message.
34358
+ * @param message Plain object to verify
34359
+ * @returns `null` if valid, otherwise the reason why it is not
34360
+ */
34361
+ public static verify(message: { [k: string]: any }): (string|null);
34362
+
34363
+ /**
34364
+ * Creates a TagFilters message from a plain object. Also converts values to their respective internal types.
34365
+ * @param object Plain object
34366
+ * @returns TagFilters
34367
+ */
34368
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.TagFilters;
34369
+
34370
+ /**
34371
+ * Creates a plain object from a TagFilters message. Also converts values to other types if specified.
34372
+ * @param message TagFilters
34373
+ * @param [options] Conversion options
34374
+ * @returns Plain object
34375
+ */
34376
+ public static toObject(message: google.privacy.dlp.v2.TagFilters, options?: $protobuf.IConversionOptions): { [k: string]: any };
34377
+
34378
+ /**
34379
+ * Converts this TagFilters to JSON.
34380
+ * @returns JSON object
34381
+ */
34382
+ public toJSON(): { [k: string]: any };
34383
+
34384
+ /**
34385
+ * Gets the default type url for TagFilters
34386
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
34387
+ * @returns The default type url
34388
+ */
34389
+ public static getTypeUrl(typeUrlPrefix?: string): string;
34390
+ }
34391
+
34392
+ /** Properties of a TagFilter. */
34393
+ interface ITagFilter {
34394
+
34395
+ /** TagFilter namespacedTagValue */
34396
+ namespacedTagValue?: (string|null);
34397
+
34398
+ /** TagFilter namespacedTagKey */
34399
+ namespacedTagKey?: (string|null);
34400
+ }
34401
+
34402
+ /** Represents a TagFilter. */
34403
+ class TagFilter implements ITagFilter {
34404
+
34405
+ /**
34406
+ * Constructs a new TagFilter.
34407
+ * @param [properties] Properties to set
34408
+ */
34409
+ constructor(properties?: google.privacy.dlp.v2.ITagFilter);
34410
+
34411
+ /** TagFilter namespacedTagValue. */
34412
+ public namespacedTagValue?: (string|null);
34413
+
34414
+ /** TagFilter namespacedTagKey. */
34415
+ public namespacedTagKey?: (string|null);
34416
+
34417
+ /** TagFilter format. */
34418
+ public format?: ("namespacedTagValue"|"namespacedTagKey");
34419
+
34420
+ /**
34421
+ * Creates a new TagFilter instance using the specified properties.
34422
+ * @param [properties] Properties to set
34423
+ * @returns TagFilter instance
34424
+ */
34425
+ public static create(properties?: google.privacy.dlp.v2.ITagFilter): google.privacy.dlp.v2.TagFilter;
34426
+
34427
+ /**
34428
+ * Encodes the specified TagFilter message. Does not implicitly {@link google.privacy.dlp.v2.TagFilter.verify|verify} messages.
34429
+ * @param message TagFilter message or plain object to encode
34430
+ * @param [writer] Writer to encode to
34431
+ * @returns Writer
34432
+ */
34433
+ public static encode(message: google.privacy.dlp.v2.ITagFilter, writer?: $protobuf.Writer): $protobuf.Writer;
34434
+
34435
+ /**
34436
+ * Encodes the specified TagFilter message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.TagFilter.verify|verify} messages.
34437
+ * @param message TagFilter message or plain object to encode
34438
+ * @param [writer] Writer to encode to
34439
+ * @returns Writer
34440
+ */
34441
+ public static encodeDelimited(message: google.privacy.dlp.v2.ITagFilter, writer?: $protobuf.Writer): $protobuf.Writer;
34442
+
34443
+ /**
34444
+ * Decodes a TagFilter message from the specified reader or buffer.
34445
+ * @param reader Reader or buffer to decode from
34446
+ * @param [length] Message length if known beforehand
34447
+ * @returns TagFilter
34448
+ * @throws {Error} If the payload is not a reader or valid buffer
34449
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
34450
+ */
34451
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.TagFilter;
34452
+
34453
+ /**
34454
+ * Decodes a TagFilter message from the specified reader or buffer, length delimited.
34455
+ * @param reader Reader or buffer to decode from
34456
+ * @returns TagFilter
34457
+ * @throws {Error} If the payload is not a reader or valid buffer
34458
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
34459
+ */
34460
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.TagFilter;
34461
+
34462
+ /**
34463
+ * Verifies a TagFilter message.
34464
+ * @param message Plain object to verify
34465
+ * @returns `null` if valid, otherwise the reason why it is not
34466
+ */
34467
+ public static verify(message: { [k: string]: any }): (string|null);
34468
+
34469
+ /**
34470
+ * Creates a TagFilter message from a plain object. Also converts values to their respective internal types.
34471
+ * @param object Plain object
34472
+ * @returns TagFilter
34473
+ */
34474
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.TagFilter;
34475
+
34476
+ /**
34477
+ * Creates a plain object from a TagFilter message. Also converts values to other types if specified.
34478
+ * @param message TagFilter
34479
+ * @param [options] Conversion options
34480
+ * @returns Plain object
34481
+ */
34482
+ public static toObject(message: google.privacy.dlp.v2.TagFilter, options?: $protobuf.IConversionOptions): { [k: string]: any };
34483
+
34484
+ /**
34485
+ * Converts this TagFilter to JSON.
34486
+ * @returns JSON object
34487
+ */
34488
+ public toJSON(): { [k: string]: any };
34489
+
34490
+ /**
34491
+ * Gets the default type url for TagFilter
34492
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
34493
+ * @returns The default type url
34494
+ */
34495
+ public static getTypeUrl(typeUrlPrefix?: string): string;
34496
+ }
34497
+
34174
34498
  /** Properties of a RelatedResource. */
34175
34499
  interface IRelatedResource {
34176
34500
 
@@ -42254,9 +42578,6 @@ export namespace google {
42254
42578
 
42255
42579
  /** CommonLanguageSettings destinations */
42256
42580
  destinations?: (google.api.ClientLibraryDestination[]|null);
42257
-
42258
- /** CommonLanguageSettings selectiveGapicGeneration */
42259
- selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
42260
42581
  }
42261
42582
 
42262
42583
  /** Represents a CommonLanguageSettings. */
@@ -42274,9 +42595,6 @@ export namespace google {
42274
42595
  /** CommonLanguageSettings destinations. */
42275
42596
  public destinations: google.api.ClientLibraryDestination[];
42276
42597
 
42277
- /** CommonLanguageSettings selectiveGapicGeneration. */
42278
- public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
42279
-
42280
42598
  /**
42281
42599
  * Creates a new CommonLanguageSettings instance using the specified properties.
42282
42600
  * @param [properties] Properties to set
@@ -42977,9 +43295,6 @@ export namespace google {
42977
43295
 
42978
43296
  /** PythonSettings common */
42979
43297
  common?: (google.api.ICommonLanguageSettings|null);
42980
-
42981
- /** PythonSettings experimentalFeatures */
42982
- experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
42983
43298
  }
42984
43299
 
42985
43300
  /** Represents a PythonSettings. */
@@ -42994,9 +43309,6 @@ export namespace google {
42994
43309
  /** PythonSettings common. */
42995
43310
  public common?: (google.api.ICommonLanguageSettings|null);
42996
43311
 
42997
- /** PythonSettings experimentalFeatures. */
42998
- public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
42999
-
43000
43312
  /**
43001
43313
  * Creates a new PythonSettings instance using the specified properties.
43002
43314
  * @param [properties] Properties to set
@@ -43075,118 +43387,6 @@ export namespace google {
43075
43387
  public static getTypeUrl(typeUrlPrefix?: string): string;
43076
43388
  }
43077
43389
 
43078
- namespace PythonSettings {
43079
-
43080
- /** Properties of an ExperimentalFeatures. */
43081
- interface IExperimentalFeatures {
43082
-
43083
- /** ExperimentalFeatures restAsyncIoEnabled */
43084
- restAsyncIoEnabled?: (boolean|null);
43085
-
43086
- /** ExperimentalFeatures protobufPythonicTypesEnabled */
43087
- protobufPythonicTypesEnabled?: (boolean|null);
43088
-
43089
- /** ExperimentalFeatures unversionedPackageDisabled */
43090
- unversionedPackageDisabled?: (boolean|null);
43091
- }
43092
-
43093
- /** Represents an ExperimentalFeatures. */
43094
- class ExperimentalFeatures implements IExperimentalFeatures {
43095
-
43096
- /**
43097
- * Constructs a new ExperimentalFeatures.
43098
- * @param [properties] Properties to set
43099
- */
43100
- constructor(properties?: google.api.PythonSettings.IExperimentalFeatures);
43101
-
43102
- /** ExperimentalFeatures restAsyncIoEnabled. */
43103
- public restAsyncIoEnabled: boolean;
43104
-
43105
- /** ExperimentalFeatures protobufPythonicTypesEnabled. */
43106
- public protobufPythonicTypesEnabled: boolean;
43107
-
43108
- /** ExperimentalFeatures unversionedPackageDisabled. */
43109
- public unversionedPackageDisabled: boolean;
43110
-
43111
- /**
43112
- * Creates a new ExperimentalFeatures instance using the specified properties.
43113
- * @param [properties] Properties to set
43114
- * @returns ExperimentalFeatures instance
43115
- */
43116
- public static create(properties?: google.api.PythonSettings.IExperimentalFeatures): google.api.PythonSettings.ExperimentalFeatures;
43117
-
43118
- /**
43119
- * Encodes the specified ExperimentalFeatures message. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
43120
- * @param message ExperimentalFeatures message or plain object to encode
43121
- * @param [writer] Writer to encode to
43122
- * @returns Writer
43123
- */
43124
- public static encode(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
43125
-
43126
- /**
43127
- * Encodes the specified ExperimentalFeatures message, length delimited. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
43128
- * @param message ExperimentalFeatures message or plain object to encode
43129
- * @param [writer] Writer to encode to
43130
- * @returns Writer
43131
- */
43132
- public static encodeDelimited(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
43133
-
43134
- /**
43135
- * Decodes an ExperimentalFeatures message from the specified reader or buffer.
43136
- * @param reader Reader or buffer to decode from
43137
- * @param [length] Message length if known beforehand
43138
- * @returns ExperimentalFeatures
43139
- * @throws {Error} If the payload is not a reader or valid buffer
43140
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
43141
- */
43142
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings.ExperimentalFeatures;
43143
-
43144
- /**
43145
- * Decodes an ExperimentalFeatures message from the specified reader or buffer, length delimited.
43146
- * @param reader Reader or buffer to decode from
43147
- * @returns ExperimentalFeatures
43148
- * @throws {Error} If the payload is not a reader or valid buffer
43149
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
43150
- */
43151
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings.ExperimentalFeatures;
43152
-
43153
- /**
43154
- * Verifies an ExperimentalFeatures message.
43155
- * @param message Plain object to verify
43156
- * @returns `null` if valid, otherwise the reason why it is not
43157
- */
43158
- public static verify(message: { [k: string]: any }): (string|null);
43159
-
43160
- /**
43161
- * Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
43162
- * @param object Plain object
43163
- * @returns ExperimentalFeatures
43164
- */
43165
- public static fromObject(object: { [k: string]: any }): google.api.PythonSettings.ExperimentalFeatures;
43166
-
43167
- /**
43168
- * Creates a plain object from an ExperimentalFeatures message. Also converts values to other types if specified.
43169
- * @param message ExperimentalFeatures
43170
- * @param [options] Conversion options
43171
- * @returns Plain object
43172
- */
43173
- public static toObject(message: google.api.PythonSettings.ExperimentalFeatures, options?: $protobuf.IConversionOptions): { [k: string]: any };
43174
-
43175
- /**
43176
- * Converts this ExperimentalFeatures to JSON.
43177
- * @returns JSON object
43178
- */
43179
- public toJSON(): { [k: string]: any };
43180
-
43181
- /**
43182
- * Gets the default type url for ExperimentalFeatures
43183
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
43184
- * @returns The default type url
43185
- */
43186
- public static getTypeUrl(typeUrlPrefix?: string): string;
43187
- }
43188
- }
43189
-
43190
43390
  /** Properties of a NodeSettings. */
43191
43391
  interface INodeSettings {
43192
43392
 
@@ -43513,9 +43713,6 @@ export namespace google {
43513
43713
 
43514
43714
  /** GoSettings common */
43515
43715
  common?: (google.api.ICommonLanguageSettings|null);
43516
-
43517
- /** GoSettings renamedServices */
43518
- renamedServices?: ({ [k: string]: string }|null);
43519
43716
  }
43520
43717
 
43521
43718
  /** Represents a GoSettings. */
@@ -43530,9 +43727,6 @@ export namespace google {
43530
43727
  /** GoSettings common. */
43531
43728
  public common?: (google.api.ICommonLanguageSettings|null);
43532
43729
 
43533
- /** GoSettings renamedServices. */
43534
- public renamedServices: { [k: string]: string };
43535
-
43536
43730
  /**
43537
43731
  * Creates a new GoSettings instance using the specified properties.
43538
43732
  * @param [properties] Properties to set
@@ -43857,109 +44051,6 @@ export namespace google {
43857
44051
  PACKAGE_MANAGER = 20
43858
44052
  }
43859
44053
 
43860
- /** Properties of a SelectiveGapicGeneration. */
43861
- interface ISelectiveGapicGeneration {
43862
-
43863
- /** SelectiveGapicGeneration methods */
43864
- methods?: (string[]|null);
43865
-
43866
- /** SelectiveGapicGeneration generateOmittedAsInternal */
43867
- generateOmittedAsInternal?: (boolean|null);
43868
- }
43869
-
43870
- /** Represents a SelectiveGapicGeneration. */
43871
- class SelectiveGapicGeneration implements ISelectiveGapicGeneration {
43872
-
43873
- /**
43874
- * Constructs a new SelectiveGapicGeneration.
43875
- * @param [properties] Properties to set
43876
- */
43877
- constructor(properties?: google.api.ISelectiveGapicGeneration);
43878
-
43879
- /** SelectiveGapicGeneration methods. */
43880
- public methods: string[];
43881
-
43882
- /** SelectiveGapicGeneration generateOmittedAsInternal. */
43883
- public generateOmittedAsInternal: boolean;
43884
-
43885
- /**
43886
- * Creates a new SelectiveGapicGeneration instance using the specified properties.
43887
- * @param [properties] Properties to set
43888
- * @returns SelectiveGapicGeneration instance
43889
- */
43890
- public static create(properties?: google.api.ISelectiveGapicGeneration): google.api.SelectiveGapicGeneration;
43891
-
43892
- /**
43893
- * Encodes the specified SelectiveGapicGeneration message. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
43894
- * @param message SelectiveGapicGeneration message or plain object to encode
43895
- * @param [writer] Writer to encode to
43896
- * @returns Writer
43897
- */
43898
- public static encode(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
43899
-
43900
- /**
43901
- * Encodes the specified SelectiveGapicGeneration message, length delimited. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
43902
- * @param message SelectiveGapicGeneration message or plain object to encode
43903
- * @param [writer] Writer to encode to
43904
- * @returns Writer
43905
- */
43906
- public static encodeDelimited(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
43907
-
43908
- /**
43909
- * Decodes a SelectiveGapicGeneration message from the specified reader or buffer.
43910
- * @param reader Reader or buffer to decode from
43911
- * @param [length] Message length if known beforehand
43912
- * @returns SelectiveGapicGeneration
43913
- * @throws {Error} If the payload is not a reader or valid buffer
43914
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
43915
- */
43916
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.SelectiveGapicGeneration;
43917
-
43918
- /**
43919
- * Decodes a SelectiveGapicGeneration message from the specified reader or buffer, length delimited.
43920
- * @param reader Reader or buffer to decode from
43921
- * @returns SelectiveGapicGeneration
43922
- * @throws {Error} If the payload is not a reader or valid buffer
43923
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
43924
- */
43925
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.SelectiveGapicGeneration;
43926
-
43927
- /**
43928
- * Verifies a SelectiveGapicGeneration message.
43929
- * @param message Plain object to verify
43930
- * @returns `null` if valid, otherwise the reason why it is not
43931
- */
43932
- public static verify(message: { [k: string]: any }): (string|null);
43933
-
43934
- /**
43935
- * Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
43936
- * @param object Plain object
43937
- * @returns SelectiveGapicGeneration
43938
- */
43939
- public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;
43940
-
43941
- /**
43942
- * Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
43943
- * @param message SelectiveGapicGeneration
43944
- * @param [options] Conversion options
43945
- * @returns Plain object
43946
- */
43947
- public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };
43948
-
43949
- /**
43950
- * Converts this SelectiveGapicGeneration to JSON.
43951
- * @returns JSON object
43952
- */
43953
- public toJSON(): { [k: string]: any };
43954
-
43955
- /**
43956
- * Gets the default type url for SelectiveGapicGeneration
43957
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
43958
- * @returns The default type url
43959
- */
43960
- public static getTypeUrl(typeUrlPrefix?: string): string;
43961
- }
43962
-
43963
44054
  /** LaunchStage enum. */
43964
44055
  enum LaunchStage {
43965
44056
  LAUNCH_STAGE_UNSPECIFIED = 0,
@@ -44341,7 +44432,6 @@ export namespace google {
44341
44432
  /** Edition enum. */
44342
44433
  enum Edition {
44343
44434
  EDITION_UNKNOWN = 0,
44344
- EDITION_LEGACY = 900,
44345
44435
  EDITION_PROTO2 = 998,
44346
44436
  EDITION_PROTO3 = 999,
44347
44437
  EDITION_2023 = 1000,
@@ -44372,9 +44462,6 @@ export namespace google {
44372
44462
  /** FileDescriptorProto weakDependency */
44373
44463
  weakDependency?: (number[]|null);
44374
44464
 
44375
- /** FileDescriptorProto optionDependency */
44376
- optionDependency?: (string[]|null);
44377
-
44378
44465
  /** FileDescriptorProto messageType */
44379
44466
  messageType?: (google.protobuf.IDescriptorProto[]|null);
44380
44467
 
@@ -44424,9 +44511,6 @@ export namespace google {
44424
44511
  /** FileDescriptorProto weakDependency. */
44425
44512
  public weakDependency: number[];
44426
44513
 
44427
- /** FileDescriptorProto optionDependency. */
44428
- public optionDependency: string[];
44429
-
44430
44514
  /** FileDescriptorProto messageType. */
44431
44515
  public messageType: google.protobuf.IDescriptorProto[];
44432
44516
 
@@ -44561,9 +44645,6 @@ export namespace google {
44561
44645
 
44562
44646
  /** DescriptorProto reservedName */
44563
44647
  reservedName?: (string[]|null);
44564
-
44565
- /** DescriptorProto visibility */
44566
- visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
44567
44648
  }
44568
44649
 
44569
44650
  /** Represents a DescriptorProto. */
@@ -44605,9 +44686,6 @@ export namespace google {
44605
44686
  /** DescriptorProto reservedName. */
44606
44687
  public reservedName: string[];
44607
44688
 
44608
- /** DescriptorProto visibility. */
44609
- public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
44610
-
44611
44689
  /**
44612
44690
  * Creates a new DescriptorProto instance using the specified properties.
44613
44691
  * @param [properties] Properties to set
@@ -45455,9 +45533,6 @@ export namespace google {
45455
45533
 
45456
45534
  /** EnumDescriptorProto reservedName */
45457
45535
  reservedName?: (string[]|null);
45458
-
45459
- /** EnumDescriptorProto visibility */
45460
- visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
45461
45536
  }
45462
45537
 
45463
45538
  /** Represents an EnumDescriptorProto. */
@@ -45484,9 +45559,6 @@ export namespace google {
45484
45559
  /** EnumDescriptorProto reservedName. */
45485
45560
  public reservedName: string[];
45486
45561
 
45487
- /** EnumDescriptorProto visibility. */
45488
- public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
45489
-
45490
45562
  /**
45491
45563
  * Creates a new EnumDescriptorProto instance using the specified properties.
45492
45564
  * @param [properties] Properties to set
@@ -46421,9 +46493,6 @@ export namespace google {
46421
46493
  /** FieldOptions features */
46422
46494
  features?: (google.protobuf.IFeatureSet|null);
46423
46495
 
46424
- /** FieldOptions featureSupport */
46425
- featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
46426
-
46427
46496
  /** FieldOptions uninterpretedOption */
46428
46497
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
46429
46498
 
@@ -46479,9 +46548,6 @@ export namespace google {
46479
46548
  /** FieldOptions features. */
46480
46549
  public features?: (google.protobuf.IFeatureSet|null);
46481
46550
 
46482
- /** FieldOptions featureSupport. */
46483
- public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
46484
-
46485
46551
  /** FieldOptions uninterpretedOption. */
46486
46552
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
46487
46553
 
@@ -46702,121 +46768,6 @@ export namespace google {
46702
46768
  */
46703
46769
  public static getTypeUrl(typeUrlPrefix?: string): string;
46704
46770
  }
46705
-
46706
- /** Properties of a FeatureSupport. */
46707
- interface IFeatureSupport {
46708
-
46709
- /** FeatureSupport editionIntroduced */
46710
- editionIntroduced?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
46711
-
46712
- /** FeatureSupport editionDeprecated */
46713
- editionDeprecated?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
46714
-
46715
- /** FeatureSupport deprecationWarning */
46716
- deprecationWarning?: (string|null);
46717
-
46718
- /** FeatureSupport editionRemoved */
46719
- editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
46720
- }
46721
-
46722
- /** Represents a FeatureSupport. */
46723
- class FeatureSupport implements IFeatureSupport {
46724
-
46725
- /**
46726
- * Constructs a new FeatureSupport.
46727
- * @param [properties] Properties to set
46728
- */
46729
- constructor(properties?: google.protobuf.FieldOptions.IFeatureSupport);
46730
-
46731
- /** FeatureSupport editionIntroduced. */
46732
- public editionIntroduced: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
46733
-
46734
- /** FeatureSupport editionDeprecated. */
46735
- public editionDeprecated: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
46736
-
46737
- /** FeatureSupport deprecationWarning. */
46738
- public deprecationWarning: string;
46739
-
46740
- /** FeatureSupport editionRemoved. */
46741
- public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
46742
-
46743
- /**
46744
- * Creates a new FeatureSupport instance using the specified properties.
46745
- * @param [properties] Properties to set
46746
- * @returns FeatureSupport instance
46747
- */
46748
- public static create(properties?: google.protobuf.FieldOptions.IFeatureSupport): google.protobuf.FieldOptions.FeatureSupport;
46749
-
46750
- /**
46751
- * Encodes the specified FeatureSupport message. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
46752
- * @param message FeatureSupport message or plain object to encode
46753
- * @param [writer] Writer to encode to
46754
- * @returns Writer
46755
- */
46756
- public static encode(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
46757
-
46758
- /**
46759
- * Encodes the specified FeatureSupport message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
46760
- * @param message FeatureSupport message or plain object to encode
46761
- * @param [writer] Writer to encode to
46762
- * @returns Writer
46763
- */
46764
- public static encodeDelimited(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
46765
-
46766
- /**
46767
- * Decodes a FeatureSupport message from the specified reader or buffer.
46768
- * @param reader Reader or buffer to decode from
46769
- * @param [length] Message length if known beforehand
46770
- * @returns FeatureSupport
46771
- * @throws {Error} If the payload is not a reader or valid buffer
46772
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
46773
- */
46774
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.FeatureSupport;
46775
-
46776
- /**
46777
- * Decodes a FeatureSupport message from the specified reader or buffer, length delimited.
46778
- * @param reader Reader or buffer to decode from
46779
- * @returns FeatureSupport
46780
- * @throws {Error} If the payload is not a reader or valid buffer
46781
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
46782
- */
46783
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.FeatureSupport;
46784
-
46785
- /**
46786
- * Verifies a FeatureSupport message.
46787
- * @param message Plain object to verify
46788
- * @returns `null` if valid, otherwise the reason why it is not
46789
- */
46790
- public static verify(message: { [k: string]: any }): (string|null);
46791
-
46792
- /**
46793
- * Creates a FeatureSupport message from a plain object. Also converts values to their respective internal types.
46794
- * @param object Plain object
46795
- * @returns FeatureSupport
46796
- */
46797
- public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.FeatureSupport;
46798
-
46799
- /**
46800
- * Creates a plain object from a FeatureSupport message. Also converts values to other types if specified.
46801
- * @param message FeatureSupport
46802
- * @param [options] Conversion options
46803
- * @returns Plain object
46804
- */
46805
- public static toObject(message: google.protobuf.FieldOptions.FeatureSupport, options?: $protobuf.IConversionOptions): { [k: string]: any };
46806
-
46807
- /**
46808
- * Converts this FeatureSupport to JSON.
46809
- * @returns JSON object
46810
- */
46811
- public toJSON(): { [k: string]: any };
46812
-
46813
- /**
46814
- * Gets the default type url for FeatureSupport
46815
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
46816
- * @returns The default type url
46817
- */
46818
- public static getTypeUrl(typeUrlPrefix?: string): string;
46819
- }
46820
46771
  }
46821
46772
 
46822
46773
  /** Properties of an OneofOptions. */
@@ -47055,9 +47006,6 @@ export namespace google {
47055
47006
  /** EnumValueOptions debugRedact */
47056
47007
  debugRedact?: (boolean|null);
47057
47008
 
47058
- /** EnumValueOptions featureSupport */
47059
- featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
47060
-
47061
47009
  /** EnumValueOptions uninterpretedOption */
47062
47010
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
47063
47011
  }
@@ -47080,9 +47028,6 @@ export namespace google {
47080
47028
  /** EnumValueOptions debugRedact. */
47081
47029
  public debugRedact: boolean;
47082
47030
 
47083
- /** EnumValueOptions featureSupport. */
47084
- public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
47085
-
47086
47031
  /** EnumValueOptions uninterpretedOption. */
47087
47032
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
47088
47033
 
@@ -47672,12 +47617,6 @@ export namespace google {
47672
47617
 
47673
47618
  /** FeatureSet jsonFormat */
47674
47619
  jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
47675
-
47676
- /** FeatureSet enforceNamingStyle */
47677
- enforceNamingStyle?: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle|null);
47678
-
47679
- /** FeatureSet defaultSymbolVisibility */
47680
- defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
47681
47620
  }
47682
47621
 
47683
47622
  /** Represents a FeatureSet. */
@@ -47707,12 +47646,6 @@ export namespace google {
47707
47646
  /** FeatureSet jsonFormat. */
47708
47647
  public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
47709
47648
 
47710
- /** FeatureSet enforceNamingStyle. */
47711
- public enforceNamingStyle: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle);
47712
-
47713
- /** FeatureSet defaultSymbolVisibility. */
47714
- public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
47715
-
47716
47649
  /**
47717
47650
  * Creates a new FeatureSet instance using the specified properties.
47718
47651
  * @param [properties] Properties to set
@@ -47835,116 +47768,6 @@ export namespace google {
47835
47768
  ALLOW = 1,
47836
47769
  LEGACY_BEST_EFFORT = 2
47837
47770
  }
47838
-
47839
- /** EnforceNamingStyle enum. */
47840
- enum EnforceNamingStyle {
47841
- ENFORCE_NAMING_STYLE_UNKNOWN = 0,
47842
- STYLE2024 = 1,
47843
- STYLE_LEGACY = 2
47844
- }
47845
-
47846
- /** Properties of a VisibilityFeature. */
47847
- interface IVisibilityFeature {
47848
- }
47849
-
47850
- /** Represents a VisibilityFeature. */
47851
- class VisibilityFeature implements IVisibilityFeature {
47852
-
47853
- /**
47854
- * Constructs a new VisibilityFeature.
47855
- * @param [properties] Properties to set
47856
- */
47857
- constructor(properties?: google.protobuf.FeatureSet.IVisibilityFeature);
47858
-
47859
- /**
47860
- * Creates a new VisibilityFeature instance using the specified properties.
47861
- * @param [properties] Properties to set
47862
- * @returns VisibilityFeature instance
47863
- */
47864
- public static create(properties?: google.protobuf.FeatureSet.IVisibilityFeature): google.protobuf.FeatureSet.VisibilityFeature;
47865
-
47866
- /**
47867
- * Encodes the specified VisibilityFeature message. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
47868
- * @param message VisibilityFeature message or plain object to encode
47869
- * @param [writer] Writer to encode to
47870
- * @returns Writer
47871
- */
47872
- public static encode(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
47873
-
47874
- /**
47875
- * Encodes the specified VisibilityFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
47876
- * @param message VisibilityFeature message or plain object to encode
47877
- * @param [writer] Writer to encode to
47878
- * @returns Writer
47879
- */
47880
- public static encodeDelimited(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
47881
-
47882
- /**
47883
- * Decodes a VisibilityFeature message from the specified reader or buffer.
47884
- * @param reader Reader or buffer to decode from
47885
- * @param [length] Message length if known beforehand
47886
- * @returns VisibilityFeature
47887
- * @throws {Error} If the payload is not a reader or valid buffer
47888
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
47889
- */
47890
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.VisibilityFeature;
47891
-
47892
- /**
47893
- * Decodes a VisibilityFeature message from the specified reader or buffer, length delimited.
47894
- * @param reader Reader or buffer to decode from
47895
- * @returns VisibilityFeature
47896
- * @throws {Error} If the payload is not a reader or valid buffer
47897
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
47898
- */
47899
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.VisibilityFeature;
47900
-
47901
- /**
47902
- * Verifies a VisibilityFeature message.
47903
- * @param message Plain object to verify
47904
- * @returns `null` if valid, otherwise the reason why it is not
47905
- */
47906
- public static verify(message: { [k: string]: any }): (string|null);
47907
-
47908
- /**
47909
- * Creates a VisibilityFeature message from a plain object. Also converts values to their respective internal types.
47910
- * @param object Plain object
47911
- * @returns VisibilityFeature
47912
- */
47913
- public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.VisibilityFeature;
47914
-
47915
- /**
47916
- * Creates a plain object from a VisibilityFeature message. Also converts values to other types if specified.
47917
- * @param message VisibilityFeature
47918
- * @param [options] Conversion options
47919
- * @returns Plain object
47920
- */
47921
- public static toObject(message: google.protobuf.FeatureSet.VisibilityFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
47922
-
47923
- /**
47924
- * Converts this VisibilityFeature to JSON.
47925
- * @returns JSON object
47926
- */
47927
- public toJSON(): { [k: string]: any };
47928
-
47929
- /**
47930
- * Gets the default type url for VisibilityFeature
47931
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
47932
- * @returns The default type url
47933
- */
47934
- public static getTypeUrl(typeUrlPrefix?: string): string;
47935
- }
47936
-
47937
- namespace VisibilityFeature {
47938
-
47939
- /** DefaultSymbolVisibility enum. */
47940
- enum DefaultSymbolVisibility {
47941
- DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
47942
- EXPORT_ALL = 1,
47943
- EXPORT_TOP_LEVEL = 2,
47944
- LOCAL_ALL = 3,
47945
- STRICT = 4
47946
- }
47947
- }
47948
47771
  }
47949
47772
 
47950
47773
  /** Properties of a FeatureSetDefaults. */
@@ -48064,11 +47887,8 @@ export namespace google {
48064
47887
  /** FeatureSetEditionDefault edition */
48065
47888
  edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
48066
47889
 
48067
- /** FeatureSetEditionDefault overridableFeatures */
48068
- overridableFeatures?: (google.protobuf.IFeatureSet|null);
48069
-
48070
- /** FeatureSetEditionDefault fixedFeatures */
48071
- fixedFeatures?: (google.protobuf.IFeatureSet|null);
47890
+ /** FeatureSetEditionDefault features */
47891
+ features?: (google.protobuf.IFeatureSet|null);
48072
47892
  }
48073
47893
 
48074
47894
  /** Represents a FeatureSetEditionDefault. */
@@ -48083,11 +47903,8 @@ export namespace google {
48083
47903
  /** FeatureSetEditionDefault edition. */
48084
47904
  public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
48085
47905
 
48086
- /** FeatureSetEditionDefault overridableFeatures. */
48087
- public overridableFeatures?: (google.protobuf.IFeatureSet|null);
48088
-
48089
- /** FeatureSetEditionDefault fixedFeatures. */
48090
- public fixedFeatures?: (google.protobuf.IFeatureSet|null);
47906
+ /** FeatureSetEditionDefault features. */
47907
+ public features?: (google.protobuf.IFeatureSet|null);
48091
47908
 
48092
47909
  /**
48093
47910
  * Creates a new FeatureSetEditionDefault instance using the specified properties.
@@ -48620,13 +48437,6 @@ export namespace google {
48620
48437
  }
48621
48438
  }
48622
48439
 
48623
- /** SymbolVisibility enum. */
48624
- enum SymbolVisibility {
48625
- VISIBILITY_UNSET = 0,
48626
- VISIBILITY_LOCAL = 1,
48627
- VISIBILITY_EXPORT = 2
48628
- }
48629
-
48630
48440
  /** Properties of a Duration. */
48631
48441
  interface IDuration {
48632
48442