@google-cloud/dms 4.1.2 → 5.0.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.
@@ -17437,6 +17437,9 @@ export namespace google {
17437
17437
 
17438
17438
  /** CommonLanguageSettings destinations */
17439
17439
  destinations?: (google.api.ClientLibraryDestination[]|null);
17440
+
17441
+ /** CommonLanguageSettings selectiveGapicGeneration */
17442
+ selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
17440
17443
  }
17441
17444
 
17442
17445
  /** Represents a CommonLanguageSettings. */
@@ -17454,6 +17457,9 @@ export namespace google {
17454
17457
  /** CommonLanguageSettings destinations. */
17455
17458
  public destinations: google.api.ClientLibraryDestination[];
17456
17459
 
17460
+ /** CommonLanguageSettings selectiveGapicGeneration. */
17461
+ public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
17462
+
17457
17463
  /**
17458
17464
  * Creates a new CommonLanguageSettings instance using the specified properties.
17459
17465
  * @param [properties] Properties to set
@@ -18154,6 +18160,9 @@ export namespace google {
18154
18160
 
18155
18161
  /** PythonSettings common */
18156
18162
  common?: (google.api.ICommonLanguageSettings|null);
18163
+
18164
+ /** PythonSettings experimentalFeatures */
18165
+ experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
18157
18166
  }
18158
18167
 
18159
18168
  /** Represents a PythonSettings. */
@@ -18168,6 +18177,9 @@ export namespace google {
18168
18177
  /** PythonSettings common. */
18169
18178
  public common?: (google.api.ICommonLanguageSettings|null);
18170
18179
 
18180
+ /** PythonSettings experimentalFeatures. */
18181
+ public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
18182
+
18171
18183
  /**
18172
18184
  * Creates a new PythonSettings instance using the specified properties.
18173
18185
  * @param [properties] Properties to set
@@ -18246,6 +18258,118 @@ export namespace google {
18246
18258
  public static getTypeUrl(typeUrlPrefix?: string): string;
18247
18259
  }
18248
18260
 
18261
+ namespace PythonSettings {
18262
+
18263
+ /** Properties of an ExperimentalFeatures. */
18264
+ interface IExperimentalFeatures {
18265
+
18266
+ /** ExperimentalFeatures restAsyncIoEnabled */
18267
+ restAsyncIoEnabled?: (boolean|null);
18268
+
18269
+ /** ExperimentalFeatures protobufPythonicTypesEnabled */
18270
+ protobufPythonicTypesEnabled?: (boolean|null);
18271
+
18272
+ /** ExperimentalFeatures unversionedPackageDisabled */
18273
+ unversionedPackageDisabled?: (boolean|null);
18274
+ }
18275
+
18276
+ /** Represents an ExperimentalFeatures. */
18277
+ class ExperimentalFeatures implements IExperimentalFeatures {
18278
+
18279
+ /**
18280
+ * Constructs a new ExperimentalFeatures.
18281
+ * @param [properties] Properties to set
18282
+ */
18283
+ constructor(properties?: google.api.PythonSettings.IExperimentalFeatures);
18284
+
18285
+ /** ExperimentalFeatures restAsyncIoEnabled. */
18286
+ public restAsyncIoEnabled: boolean;
18287
+
18288
+ /** ExperimentalFeatures protobufPythonicTypesEnabled. */
18289
+ public protobufPythonicTypesEnabled: boolean;
18290
+
18291
+ /** ExperimentalFeatures unversionedPackageDisabled. */
18292
+ public unversionedPackageDisabled: boolean;
18293
+
18294
+ /**
18295
+ * Creates a new ExperimentalFeatures instance using the specified properties.
18296
+ * @param [properties] Properties to set
18297
+ * @returns ExperimentalFeatures instance
18298
+ */
18299
+ public static create(properties?: google.api.PythonSettings.IExperimentalFeatures): google.api.PythonSettings.ExperimentalFeatures;
18300
+
18301
+ /**
18302
+ * Encodes the specified ExperimentalFeatures message. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
18303
+ * @param message ExperimentalFeatures message or plain object to encode
18304
+ * @param [writer] Writer to encode to
18305
+ * @returns Writer
18306
+ */
18307
+ public static encode(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
18308
+
18309
+ /**
18310
+ * Encodes the specified ExperimentalFeatures message, length delimited. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
18311
+ * @param message ExperimentalFeatures message or plain object to encode
18312
+ * @param [writer] Writer to encode to
18313
+ * @returns Writer
18314
+ */
18315
+ public static encodeDelimited(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
18316
+
18317
+ /**
18318
+ * Decodes an ExperimentalFeatures message from the specified reader or buffer.
18319
+ * @param reader Reader or buffer to decode from
18320
+ * @param [length] Message length if known beforehand
18321
+ * @returns ExperimentalFeatures
18322
+ * @throws {Error} If the payload is not a reader or valid buffer
18323
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18324
+ */
18325
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings.ExperimentalFeatures;
18326
+
18327
+ /**
18328
+ * Decodes an ExperimentalFeatures message from the specified reader or buffer, length delimited.
18329
+ * @param reader Reader or buffer to decode from
18330
+ * @returns ExperimentalFeatures
18331
+ * @throws {Error} If the payload is not a reader or valid buffer
18332
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18333
+ */
18334
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings.ExperimentalFeatures;
18335
+
18336
+ /**
18337
+ * Verifies an ExperimentalFeatures message.
18338
+ * @param message Plain object to verify
18339
+ * @returns `null` if valid, otherwise the reason why it is not
18340
+ */
18341
+ public static verify(message: { [k: string]: any }): (string|null);
18342
+
18343
+ /**
18344
+ * Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
18345
+ * @param object Plain object
18346
+ * @returns ExperimentalFeatures
18347
+ */
18348
+ public static fromObject(object: { [k: string]: any }): google.api.PythonSettings.ExperimentalFeatures;
18349
+
18350
+ /**
18351
+ * Creates a plain object from an ExperimentalFeatures message. Also converts values to other types if specified.
18352
+ * @param message ExperimentalFeatures
18353
+ * @param [options] Conversion options
18354
+ * @returns Plain object
18355
+ */
18356
+ public static toObject(message: google.api.PythonSettings.ExperimentalFeatures, options?: $protobuf.IConversionOptions): { [k: string]: any };
18357
+
18358
+ /**
18359
+ * Converts this ExperimentalFeatures to JSON.
18360
+ * @returns JSON object
18361
+ */
18362
+ public toJSON(): { [k: string]: any };
18363
+
18364
+ /**
18365
+ * Gets the default type url for ExperimentalFeatures
18366
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
18367
+ * @returns The default type url
18368
+ */
18369
+ public static getTypeUrl(typeUrlPrefix?: string): string;
18370
+ }
18371
+ }
18372
+
18249
18373
  /** Properties of a NodeSettings. */
18250
18374
  interface INodeSettings {
18251
18375
 
@@ -18572,6 +18696,9 @@ export namespace google {
18572
18696
 
18573
18697
  /** GoSettings common */
18574
18698
  common?: (google.api.ICommonLanguageSettings|null);
18699
+
18700
+ /** GoSettings renamedServices */
18701
+ renamedServices?: ({ [k: string]: string }|null);
18575
18702
  }
18576
18703
 
18577
18704
  /** Represents a GoSettings. */
@@ -18586,6 +18713,9 @@ export namespace google {
18586
18713
  /** GoSettings common. */
18587
18714
  public common?: (google.api.ICommonLanguageSettings|null);
18588
18715
 
18716
+ /** GoSettings renamedServices. */
18717
+ public renamedServices: { [k: string]: string };
18718
+
18589
18719
  /**
18590
18720
  * Creates a new GoSettings instance using the specified properties.
18591
18721
  * @param [properties] Properties to set
@@ -18910,6 +19040,109 @@ export namespace google {
18910
19040
  PACKAGE_MANAGER = 20
18911
19041
  }
18912
19042
 
19043
+ /** Properties of a SelectiveGapicGeneration. */
19044
+ interface ISelectiveGapicGeneration {
19045
+
19046
+ /** SelectiveGapicGeneration methods */
19047
+ methods?: (string[]|null);
19048
+
19049
+ /** SelectiveGapicGeneration generateOmittedAsInternal */
19050
+ generateOmittedAsInternal?: (boolean|null);
19051
+ }
19052
+
19053
+ /** Represents a SelectiveGapicGeneration. */
19054
+ class SelectiveGapicGeneration implements ISelectiveGapicGeneration {
19055
+
19056
+ /**
19057
+ * Constructs a new SelectiveGapicGeneration.
19058
+ * @param [properties] Properties to set
19059
+ */
19060
+ constructor(properties?: google.api.ISelectiveGapicGeneration);
19061
+
19062
+ /** SelectiveGapicGeneration methods. */
19063
+ public methods: string[];
19064
+
19065
+ /** SelectiveGapicGeneration generateOmittedAsInternal. */
19066
+ public generateOmittedAsInternal: boolean;
19067
+
19068
+ /**
19069
+ * Creates a new SelectiveGapicGeneration instance using the specified properties.
19070
+ * @param [properties] Properties to set
19071
+ * @returns SelectiveGapicGeneration instance
19072
+ */
19073
+ public static create(properties?: google.api.ISelectiveGapicGeneration): google.api.SelectiveGapicGeneration;
19074
+
19075
+ /**
19076
+ * Encodes the specified SelectiveGapicGeneration message. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
19077
+ * @param message SelectiveGapicGeneration message or plain object to encode
19078
+ * @param [writer] Writer to encode to
19079
+ * @returns Writer
19080
+ */
19081
+ public static encode(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
19082
+
19083
+ /**
19084
+ * Encodes the specified SelectiveGapicGeneration message, length delimited. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
19085
+ * @param message SelectiveGapicGeneration message or plain object to encode
19086
+ * @param [writer] Writer to encode to
19087
+ * @returns Writer
19088
+ */
19089
+ public static encodeDelimited(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
19090
+
19091
+ /**
19092
+ * Decodes a SelectiveGapicGeneration message from the specified reader or buffer.
19093
+ * @param reader Reader or buffer to decode from
19094
+ * @param [length] Message length if known beforehand
19095
+ * @returns SelectiveGapicGeneration
19096
+ * @throws {Error} If the payload is not a reader or valid buffer
19097
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
19098
+ */
19099
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.SelectiveGapicGeneration;
19100
+
19101
+ /**
19102
+ * Decodes a SelectiveGapicGeneration message from the specified reader or buffer, length delimited.
19103
+ * @param reader Reader or buffer to decode from
19104
+ * @returns SelectiveGapicGeneration
19105
+ * @throws {Error} If the payload is not a reader or valid buffer
19106
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
19107
+ */
19108
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.SelectiveGapicGeneration;
19109
+
19110
+ /**
19111
+ * Verifies a SelectiveGapicGeneration message.
19112
+ * @param message Plain object to verify
19113
+ * @returns `null` if valid, otherwise the reason why it is not
19114
+ */
19115
+ public static verify(message: { [k: string]: any }): (string|null);
19116
+
19117
+ /**
19118
+ * Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
19119
+ * @param object Plain object
19120
+ * @returns SelectiveGapicGeneration
19121
+ */
19122
+ public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;
19123
+
19124
+ /**
19125
+ * Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
19126
+ * @param message SelectiveGapicGeneration
19127
+ * @param [options] Conversion options
19128
+ * @returns Plain object
19129
+ */
19130
+ public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };
19131
+
19132
+ /**
19133
+ * Converts this SelectiveGapicGeneration to JSON.
19134
+ * @returns JSON object
19135
+ */
19136
+ public toJSON(): { [k: string]: any };
19137
+
19138
+ /**
19139
+ * Gets the default type url for SelectiveGapicGeneration
19140
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
19141
+ * @returns The default type url
19142
+ */
19143
+ public static getTypeUrl(typeUrlPrefix?: string): string;
19144
+ }
19145
+
18913
19146
  /** LaunchStage enum. */
18914
19147
  enum LaunchStage {
18915
19148
  LAUNCH_STAGE_UNSPECIFIED = 0,
@@ -19291,6 +19524,7 @@ export namespace google {
19291
19524
  /** Edition enum. */
19292
19525
  enum Edition {
19293
19526
  EDITION_UNKNOWN = 0,
19527
+ EDITION_LEGACY = 900,
19294
19528
  EDITION_PROTO2 = 998,
19295
19529
  EDITION_PROTO3 = 999,
19296
19530
  EDITION_2023 = 1000,
@@ -19321,6 +19555,9 @@ export namespace google {
19321
19555
  /** FileDescriptorProto weakDependency */
19322
19556
  weakDependency?: (number[]|null);
19323
19557
 
19558
+ /** FileDescriptorProto optionDependency */
19559
+ optionDependency?: (string[]|null);
19560
+
19324
19561
  /** FileDescriptorProto messageType */
19325
19562
  messageType?: (google.protobuf.IDescriptorProto[]|null);
19326
19563
 
@@ -19370,6 +19607,9 @@ export namespace google {
19370
19607
  /** FileDescriptorProto weakDependency. */
19371
19608
  public weakDependency: number[];
19372
19609
 
19610
+ /** FileDescriptorProto optionDependency. */
19611
+ public optionDependency: string[];
19612
+
19373
19613
  /** FileDescriptorProto messageType. */
19374
19614
  public messageType: google.protobuf.IDescriptorProto[];
19375
19615
 
@@ -19504,6 +19744,9 @@ export namespace google {
19504
19744
 
19505
19745
  /** DescriptorProto reservedName */
19506
19746
  reservedName?: (string[]|null);
19747
+
19748
+ /** DescriptorProto visibility */
19749
+ visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
19507
19750
  }
19508
19751
 
19509
19752
  /** Represents a DescriptorProto. */
@@ -19545,6 +19788,9 @@ export namespace google {
19545
19788
  /** DescriptorProto reservedName. */
19546
19789
  public reservedName: string[];
19547
19790
 
19791
+ /** DescriptorProto visibility. */
19792
+ public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
19793
+
19548
19794
  /**
19549
19795
  * Creates a new DescriptorProto instance using the specified properties.
19550
19796
  * @param [properties] Properties to set
@@ -20392,6 +20638,9 @@ export namespace google {
20392
20638
 
20393
20639
  /** EnumDescriptorProto reservedName */
20394
20640
  reservedName?: (string[]|null);
20641
+
20642
+ /** EnumDescriptorProto visibility */
20643
+ visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
20395
20644
  }
20396
20645
 
20397
20646
  /** Represents an EnumDescriptorProto. */
@@ -20418,6 +20667,9 @@ export namespace google {
20418
20667
  /** EnumDescriptorProto reservedName. */
20419
20668
  public reservedName: string[];
20420
20669
 
20670
+ /** EnumDescriptorProto visibility. */
20671
+ public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
20672
+
20421
20673
  /**
20422
20674
  * Creates a new EnumDescriptorProto instance using the specified properties.
20423
20675
  * @param [properties] Properties to set
@@ -21352,6 +21604,9 @@ export namespace google {
21352
21604
  /** FieldOptions features */
21353
21605
  features?: (google.protobuf.IFeatureSet|null);
21354
21606
 
21607
+ /** FieldOptions featureSupport */
21608
+ featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
21609
+
21355
21610
  /** FieldOptions uninterpretedOption */
21356
21611
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
21357
21612
 
@@ -21407,6 +21662,9 @@ export namespace google {
21407
21662
  /** FieldOptions features. */
21408
21663
  public features?: (google.protobuf.IFeatureSet|null);
21409
21664
 
21665
+ /** FieldOptions featureSupport. */
21666
+ public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
21667
+
21410
21668
  /** FieldOptions uninterpretedOption. */
21411
21669
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
21412
21670
 
@@ -21627,6 +21885,121 @@ export namespace google {
21627
21885
  */
21628
21886
  public static getTypeUrl(typeUrlPrefix?: string): string;
21629
21887
  }
21888
+
21889
+ /** Properties of a FeatureSupport. */
21890
+ interface IFeatureSupport {
21891
+
21892
+ /** FeatureSupport editionIntroduced */
21893
+ editionIntroduced?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
21894
+
21895
+ /** FeatureSupport editionDeprecated */
21896
+ editionDeprecated?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
21897
+
21898
+ /** FeatureSupport deprecationWarning */
21899
+ deprecationWarning?: (string|null);
21900
+
21901
+ /** FeatureSupport editionRemoved */
21902
+ editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
21903
+ }
21904
+
21905
+ /** Represents a FeatureSupport. */
21906
+ class FeatureSupport implements IFeatureSupport {
21907
+
21908
+ /**
21909
+ * Constructs a new FeatureSupport.
21910
+ * @param [properties] Properties to set
21911
+ */
21912
+ constructor(properties?: google.protobuf.FieldOptions.IFeatureSupport);
21913
+
21914
+ /** FeatureSupport editionIntroduced. */
21915
+ public editionIntroduced: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
21916
+
21917
+ /** FeatureSupport editionDeprecated. */
21918
+ public editionDeprecated: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
21919
+
21920
+ /** FeatureSupport deprecationWarning. */
21921
+ public deprecationWarning: string;
21922
+
21923
+ /** FeatureSupport editionRemoved. */
21924
+ public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
21925
+
21926
+ /**
21927
+ * Creates a new FeatureSupport instance using the specified properties.
21928
+ * @param [properties] Properties to set
21929
+ * @returns FeatureSupport instance
21930
+ */
21931
+ public static create(properties?: google.protobuf.FieldOptions.IFeatureSupport): google.protobuf.FieldOptions.FeatureSupport;
21932
+
21933
+ /**
21934
+ * Encodes the specified FeatureSupport message. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
21935
+ * @param message FeatureSupport message or plain object to encode
21936
+ * @param [writer] Writer to encode to
21937
+ * @returns Writer
21938
+ */
21939
+ public static encode(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
21940
+
21941
+ /**
21942
+ * Encodes the specified FeatureSupport message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
21943
+ * @param message FeatureSupport message or plain object to encode
21944
+ * @param [writer] Writer to encode to
21945
+ * @returns Writer
21946
+ */
21947
+ public static encodeDelimited(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
21948
+
21949
+ /**
21950
+ * Decodes a FeatureSupport message from the specified reader or buffer.
21951
+ * @param reader Reader or buffer to decode from
21952
+ * @param [length] Message length if known beforehand
21953
+ * @returns FeatureSupport
21954
+ * @throws {Error} If the payload is not a reader or valid buffer
21955
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21956
+ */
21957
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.FeatureSupport;
21958
+
21959
+ /**
21960
+ * Decodes a FeatureSupport message from the specified reader or buffer, length delimited.
21961
+ * @param reader Reader or buffer to decode from
21962
+ * @returns FeatureSupport
21963
+ * @throws {Error} If the payload is not a reader or valid buffer
21964
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21965
+ */
21966
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.FeatureSupport;
21967
+
21968
+ /**
21969
+ * Verifies a FeatureSupport message.
21970
+ * @param message Plain object to verify
21971
+ * @returns `null` if valid, otherwise the reason why it is not
21972
+ */
21973
+ public static verify(message: { [k: string]: any }): (string|null);
21974
+
21975
+ /**
21976
+ * Creates a FeatureSupport message from a plain object. Also converts values to their respective internal types.
21977
+ * @param object Plain object
21978
+ * @returns FeatureSupport
21979
+ */
21980
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.FeatureSupport;
21981
+
21982
+ /**
21983
+ * Creates a plain object from a FeatureSupport message. Also converts values to other types if specified.
21984
+ * @param message FeatureSupport
21985
+ * @param [options] Conversion options
21986
+ * @returns Plain object
21987
+ */
21988
+ public static toObject(message: google.protobuf.FieldOptions.FeatureSupport, options?: $protobuf.IConversionOptions): { [k: string]: any };
21989
+
21990
+ /**
21991
+ * Converts this FeatureSupport to JSON.
21992
+ * @returns JSON object
21993
+ */
21994
+ public toJSON(): { [k: string]: any };
21995
+
21996
+ /**
21997
+ * Gets the default type url for FeatureSupport
21998
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
21999
+ * @returns The default type url
22000
+ */
22001
+ public static getTypeUrl(typeUrlPrefix?: string): string;
22002
+ }
21630
22003
  }
21631
22004
 
21632
22005
  /** Properties of an OneofOptions. */
@@ -21865,6 +22238,9 @@ export namespace google {
21865
22238
  /** EnumValueOptions debugRedact */
21866
22239
  debugRedact?: (boolean|null);
21867
22240
 
22241
+ /** EnumValueOptions featureSupport */
22242
+ featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
22243
+
21868
22244
  /** EnumValueOptions uninterpretedOption */
21869
22245
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
21870
22246
  }
@@ -21887,6 +22263,9 @@ export namespace google {
21887
22263
  /** EnumValueOptions debugRedact. */
21888
22264
  public debugRedact: boolean;
21889
22265
 
22266
+ /** EnumValueOptions featureSupport. */
22267
+ public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
22268
+
21890
22269
  /** EnumValueOptions uninterpretedOption. */
21891
22270
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
21892
22271
 
@@ -22479,6 +22858,12 @@ export namespace google {
22479
22858
 
22480
22859
  /** FeatureSet jsonFormat */
22481
22860
  jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
22861
+
22862
+ /** FeatureSet enforceNamingStyle */
22863
+ enforceNamingStyle?: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle|null);
22864
+
22865
+ /** FeatureSet defaultSymbolVisibility */
22866
+ defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
22482
22867
  }
22483
22868
 
22484
22869
  /** Represents a FeatureSet. */
@@ -22508,6 +22893,12 @@ export namespace google {
22508
22893
  /** FeatureSet jsonFormat. */
22509
22894
  public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
22510
22895
 
22896
+ /** FeatureSet enforceNamingStyle. */
22897
+ public enforceNamingStyle: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle);
22898
+
22899
+ /** FeatureSet defaultSymbolVisibility. */
22900
+ public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
22901
+
22511
22902
  /**
22512
22903
  * Creates a new FeatureSet instance using the specified properties.
22513
22904
  * @param [properties] Properties to set
@@ -22630,6 +23021,116 @@ export namespace google {
22630
23021
  ALLOW = 1,
22631
23022
  LEGACY_BEST_EFFORT = 2
22632
23023
  }
23024
+
23025
+ /** EnforceNamingStyle enum. */
23026
+ enum EnforceNamingStyle {
23027
+ ENFORCE_NAMING_STYLE_UNKNOWN = 0,
23028
+ STYLE2024 = 1,
23029
+ STYLE_LEGACY = 2
23030
+ }
23031
+
23032
+ /** Properties of a VisibilityFeature. */
23033
+ interface IVisibilityFeature {
23034
+ }
23035
+
23036
+ /** Represents a VisibilityFeature. */
23037
+ class VisibilityFeature implements IVisibilityFeature {
23038
+
23039
+ /**
23040
+ * Constructs a new VisibilityFeature.
23041
+ * @param [properties] Properties to set
23042
+ */
23043
+ constructor(properties?: google.protobuf.FeatureSet.IVisibilityFeature);
23044
+
23045
+ /**
23046
+ * Creates a new VisibilityFeature instance using the specified properties.
23047
+ * @param [properties] Properties to set
23048
+ * @returns VisibilityFeature instance
23049
+ */
23050
+ public static create(properties?: google.protobuf.FeatureSet.IVisibilityFeature): google.protobuf.FeatureSet.VisibilityFeature;
23051
+
23052
+ /**
23053
+ * Encodes the specified VisibilityFeature message. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
23054
+ * @param message VisibilityFeature message or plain object to encode
23055
+ * @param [writer] Writer to encode to
23056
+ * @returns Writer
23057
+ */
23058
+ public static encode(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
23059
+
23060
+ /**
23061
+ * Encodes the specified VisibilityFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
23062
+ * @param message VisibilityFeature message or plain object to encode
23063
+ * @param [writer] Writer to encode to
23064
+ * @returns Writer
23065
+ */
23066
+ public static encodeDelimited(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
23067
+
23068
+ /**
23069
+ * Decodes a VisibilityFeature message from the specified reader or buffer.
23070
+ * @param reader Reader or buffer to decode from
23071
+ * @param [length] Message length if known beforehand
23072
+ * @returns VisibilityFeature
23073
+ * @throws {Error} If the payload is not a reader or valid buffer
23074
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
23075
+ */
23076
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.VisibilityFeature;
23077
+
23078
+ /**
23079
+ * Decodes a VisibilityFeature message from the specified reader or buffer, length delimited.
23080
+ * @param reader Reader or buffer to decode from
23081
+ * @returns VisibilityFeature
23082
+ * @throws {Error} If the payload is not a reader or valid buffer
23083
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
23084
+ */
23085
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.VisibilityFeature;
23086
+
23087
+ /**
23088
+ * Verifies a VisibilityFeature message.
23089
+ * @param message Plain object to verify
23090
+ * @returns `null` if valid, otherwise the reason why it is not
23091
+ */
23092
+ public static verify(message: { [k: string]: any }): (string|null);
23093
+
23094
+ /**
23095
+ * Creates a VisibilityFeature message from a plain object. Also converts values to their respective internal types.
23096
+ * @param object Plain object
23097
+ * @returns VisibilityFeature
23098
+ */
23099
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.VisibilityFeature;
23100
+
23101
+ /**
23102
+ * Creates a plain object from a VisibilityFeature message. Also converts values to other types if specified.
23103
+ * @param message VisibilityFeature
23104
+ * @param [options] Conversion options
23105
+ * @returns Plain object
23106
+ */
23107
+ public static toObject(message: google.protobuf.FeatureSet.VisibilityFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
23108
+
23109
+ /**
23110
+ * Converts this VisibilityFeature to JSON.
23111
+ * @returns JSON object
23112
+ */
23113
+ public toJSON(): { [k: string]: any };
23114
+
23115
+ /**
23116
+ * Gets the default type url for VisibilityFeature
23117
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
23118
+ * @returns The default type url
23119
+ */
23120
+ public static getTypeUrl(typeUrlPrefix?: string): string;
23121
+ }
23122
+
23123
+ namespace VisibilityFeature {
23124
+
23125
+ /** DefaultSymbolVisibility enum. */
23126
+ enum DefaultSymbolVisibility {
23127
+ DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
23128
+ EXPORT_ALL = 1,
23129
+ EXPORT_TOP_LEVEL = 2,
23130
+ LOCAL_ALL = 3,
23131
+ STRICT = 4
23132
+ }
23133
+ }
22633
23134
  }
22634
23135
 
22635
23136
  /** Properties of a FeatureSetDefaults. */
@@ -22749,8 +23250,11 @@ export namespace google {
22749
23250
  /** FeatureSetEditionDefault edition */
22750
23251
  edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
22751
23252
 
22752
- /** FeatureSetEditionDefault features */
22753
- features?: (google.protobuf.IFeatureSet|null);
23253
+ /** FeatureSetEditionDefault overridableFeatures */
23254
+ overridableFeatures?: (google.protobuf.IFeatureSet|null);
23255
+
23256
+ /** FeatureSetEditionDefault fixedFeatures */
23257
+ fixedFeatures?: (google.protobuf.IFeatureSet|null);
22754
23258
  }
22755
23259
 
22756
23260
  /** Represents a FeatureSetEditionDefault. */
@@ -22765,8 +23269,11 @@ export namespace google {
22765
23269
  /** FeatureSetEditionDefault edition. */
22766
23270
  public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
22767
23271
 
22768
- /** FeatureSetEditionDefault features. */
22769
- public features?: (google.protobuf.IFeatureSet|null);
23272
+ /** FeatureSetEditionDefault overridableFeatures. */
23273
+ public overridableFeatures?: (google.protobuf.IFeatureSet|null);
23274
+
23275
+ /** FeatureSetEditionDefault fixedFeatures. */
23276
+ public fixedFeatures?: (google.protobuf.IFeatureSet|null);
22770
23277
 
22771
23278
  /**
22772
23279
  * Creates a new FeatureSetEditionDefault instance using the specified properties.
@@ -23299,6 +23806,13 @@ export namespace google {
23299
23806
  }
23300
23807
  }
23301
23808
 
23809
+ /** SymbolVisibility enum. */
23810
+ enum SymbolVisibility {
23811
+ VISIBILITY_UNSET = 0,
23812
+ VISIBILITY_LOCAL = 1,
23813
+ VISIBILITY_EXPORT = 2
23814
+ }
23815
+
23302
23816
  /** Properties of a Duration. */
23303
23817
  interface IDuration {
23304
23818