@google-cloud/storage-control 0.6.0 → 0.6.1

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.
@@ -5769,9 +5769,6 @@ export namespace google {
5769
5769
 
5770
5770
  /** CommonLanguageSettings destinations */
5771
5771
  destinations?: (google.api.ClientLibraryDestination[]|null);
5772
-
5773
- /** CommonLanguageSettings selectiveGapicGeneration */
5774
- selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
5775
5772
  }
5776
5773
 
5777
5774
  /** Represents a CommonLanguageSettings. */
@@ -5789,9 +5786,6 @@ export namespace google {
5789
5786
  /** CommonLanguageSettings destinations. */
5790
5787
  public destinations: google.api.ClientLibraryDestination[];
5791
5788
 
5792
- /** CommonLanguageSettings selectiveGapicGeneration. */
5793
- public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
5794
-
5795
5789
  /**
5796
5790
  * Creates a new CommonLanguageSettings instance using the specified properties.
5797
5791
  * @param [properties] Properties to set
@@ -6492,9 +6486,6 @@ export namespace google {
6492
6486
 
6493
6487
  /** PythonSettings common */
6494
6488
  common?: (google.api.ICommonLanguageSettings|null);
6495
-
6496
- /** PythonSettings experimentalFeatures */
6497
- experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
6498
6489
  }
6499
6490
 
6500
6491
  /** Represents a PythonSettings. */
@@ -6509,9 +6500,6 @@ export namespace google {
6509
6500
  /** PythonSettings common. */
6510
6501
  public common?: (google.api.ICommonLanguageSettings|null);
6511
6502
 
6512
- /** PythonSettings experimentalFeatures. */
6513
- public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
6514
-
6515
6503
  /**
6516
6504
  * Creates a new PythonSettings instance using the specified properties.
6517
6505
  * @param [properties] Properties to set
@@ -6590,118 +6578,6 @@ export namespace google {
6590
6578
  public static getTypeUrl(typeUrlPrefix?: string): string;
6591
6579
  }
6592
6580
 
6593
- namespace PythonSettings {
6594
-
6595
- /** Properties of an ExperimentalFeatures. */
6596
- interface IExperimentalFeatures {
6597
-
6598
- /** ExperimentalFeatures restAsyncIoEnabled */
6599
- restAsyncIoEnabled?: (boolean|null);
6600
-
6601
- /** ExperimentalFeatures protobufPythonicTypesEnabled */
6602
- protobufPythonicTypesEnabled?: (boolean|null);
6603
-
6604
- /** ExperimentalFeatures unversionedPackageDisabled */
6605
- unversionedPackageDisabled?: (boolean|null);
6606
- }
6607
-
6608
- /** Represents an ExperimentalFeatures. */
6609
- class ExperimentalFeatures implements IExperimentalFeatures {
6610
-
6611
- /**
6612
- * Constructs a new ExperimentalFeatures.
6613
- * @param [properties] Properties to set
6614
- */
6615
- constructor(properties?: google.api.PythonSettings.IExperimentalFeatures);
6616
-
6617
- /** ExperimentalFeatures restAsyncIoEnabled. */
6618
- public restAsyncIoEnabled: boolean;
6619
-
6620
- /** ExperimentalFeatures protobufPythonicTypesEnabled. */
6621
- public protobufPythonicTypesEnabled: boolean;
6622
-
6623
- /** ExperimentalFeatures unversionedPackageDisabled. */
6624
- public unversionedPackageDisabled: boolean;
6625
-
6626
- /**
6627
- * Creates a new ExperimentalFeatures instance using the specified properties.
6628
- * @param [properties] Properties to set
6629
- * @returns ExperimentalFeatures instance
6630
- */
6631
- public static create(properties?: google.api.PythonSettings.IExperimentalFeatures): google.api.PythonSettings.ExperimentalFeatures;
6632
-
6633
- /**
6634
- * Encodes the specified ExperimentalFeatures message. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
6635
- * @param message ExperimentalFeatures message or plain object to encode
6636
- * @param [writer] Writer to encode to
6637
- * @returns Writer
6638
- */
6639
- public static encode(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
6640
-
6641
- /**
6642
- * Encodes the specified ExperimentalFeatures message, length delimited. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
6643
- * @param message ExperimentalFeatures message or plain object to encode
6644
- * @param [writer] Writer to encode to
6645
- * @returns Writer
6646
- */
6647
- public static encodeDelimited(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
6648
-
6649
- /**
6650
- * Decodes an ExperimentalFeatures message from the specified reader or buffer.
6651
- * @param reader Reader or buffer to decode from
6652
- * @param [length] Message length if known beforehand
6653
- * @returns ExperimentalFeatures
6654
- * @throws {Error} If the payload is not a reader or valid buffer
6655
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
6656
- */
6657
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings.ExperimentalFeatures;
6658
-
6659
- /**
6660
- * Decodes an ExperimentalFeatures message from the specified reader or buffer, length delimited.
6661
- * @param reader Reader or buffer to decode from
6662
- * @returns ExperimentalFeatures
6663
- * @throws {Error} If the payload is not a reader or valid buffer
6664
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
6665
- */
6666
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings.ExperimentalFeatures;
6667
-
6668
- /**
6669
- * Verifies an ExperimentalFeatures message.
6670
- * @param message Plain object to verify
6671
- * @returns `null` if valid, otherwise the reason why it is not
6672
- */
6673
- public static verify(message: { [k: string]: any }): (string|null);
6674
-
6675
- /**
6676
- * Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
6677
- * @param object Plain object
6678
- * @returns ExperimentalFeatures
6679
- */
6680
- public static fromObject(object: { [k: string]: any }): google.api.PythonSettings.ExperimentalFeatures;
6681
-
6682
- /**
6683
- * Creates a plain object from an ExperimentalFeatures message. Also converts values to other types if specified.
6684
- * @param message ExperimentalFeatures
6685
- * @param [options] Conversion options
6686
- * @returns Plain object
6687
- */
6688
- public static toObject(message: google.api.PythonSettings.ExperimentalFeatures, options?: $protobuf.IConversionOptions): { [k: string]: any };
6689
-
6690
- /**
6691
- * Converts this ExperimentalFeatures to JSON.
6692
- * @returns JSON object
6693
- */
6694
- public toJSON(): { [k: string]: any };
6695
-
6696
- /**
6697
- * Gets the default type url for ExperimentalFeatures
6698
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6699
- * @returns The default type url
6700
- */
6701
- public static getTypeUrl(typeUrlPrefix?: string): string;
6702
- }
6703
- }
6704
-
6705
6581
  /** Properties of a NodeSettings. */
6706
6582
  interface INodeSettings {
6707
6583
 
@@ -7028,9 +6904,6 @@ export namespace google {
7028
6904
 
7029
6905
  /** GoSettings common */
7030
6906
  common?: (google.api.ICommonLanguageSettings|null);
7031
-
7032
- /** GoSettings renamedServices */
7033
- renamedServices?: ({ [k: string]: string }|null);
7034
6907
  }
7035
6908
 
7036
6909
  /** Represents a GoSettings. */
@@ -7045,9 +6918,6 @@ export namespace google {
7045
6918
  /** GoSettings common. */
7046
6919
  public common?: (google.api.ICommonLanguageSettings|null);
7047
6920
 
7048
- /** GoSettings renamedServices. */
7049
- public renamedServices: { [k: string]: string };
7050
-
7051
6921
  /**
7052
6922
  * Creates a new GoSettings instance using the specified properties.
7053
6923
  * @param [properties] Properties to set
@@ -7372,109 +7242,6 @@ export namespace google {
7372
7242
  PACKAGE_MANAGER = 20
7373
7243
  }
7374
7244
 
7375
- /** Properties of a SelectiveGapicGeneration. */
7376
- interface ISelectiveGapicGeneration {
7377
-
7378
- /** SelectiveGapicGeneration methods */
7379
- methods?: (string[]|null);
7380
-
7381
- /** SelectiveGapicGeneration generateOmittedAsInternal */
7382
- generateOmittedAsInternal?: (boolean|null);
7383
- }
7384
-
7385
- /** Represents a SelectiveGapicGeneration. */
7386
- class SelectiveGapicGeneration implements ISelectiveGapicGeneration {
7387
-
7388
- /**
7389
- * Constructs a new SelectiveGapicGeneration.
7390
- * @param [properties] Properties to set
7391
- */
7392
- constructor(properties?: google.api.ISelectiveGapicGeneration);
7393
-
7394
- /** SelectiveGapicGeneration methods. */
7395
- public methods: string[];
7396
-
7397
- /** SelectiveGapicGeneration generateOmittedAsInternal. */
7398
- public generateOmittedAsInternal: boolean;
7399
-
7400
- /**
7401
- * Creates a new SelectiveGapicGeneration instance using the specified properties.
7402
- * @param [properties] Properties to set
7403
- * @returns SelectiveGapicGeneration instance
7404
- */
7405
- public static create(properties?: google.api.ISelectiveGapicGeneration): google.api.SelectiveGapicGeneration;
7406
-
7407
- /**
7408
- * Encodes the specified SelectiveGapicGeneration message. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
7409
- * @param message SelectiveGapicGeneration message or plain object to encode
7410
- * @param [writer] Writer to encode to
7411
- * @returns Writer
7412
- */
7413
- public static encode(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
7414
-
7415
- /**
7416
- * Encodes the specified SelectiveGapicGeneration message, length delimited. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
7417
- * @param message SelectiveGapicGeneration message or plain object to encode
7418
- * @param [writer] Writer to encode to
7419
- * @returns Writer
7420
- */
7421
- public static encodeDelimited(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
7422
-
7423
- /**
7424
- * Decodes a SelectiveGapicGeneration message from the specified reader or buffer.
7425
- * @param reader Reader or buffer to decode from
7426
- * @param [length] Message length if known beforehand
7427
- * @returns SelectiveGapicGeneration
7428
- * @throws {Error} If the payload is not a reader or valid buffer
7429
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
7430
- */
7431
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.SelectiveGapicGeneration;
7432
-
7433
- /**
7434
- * Decodes a SelectiveGapicGeneration message from the specified reader or buffer, length delimited.
7435
- * @param reader Reader or buffer to decode from
7436
- * @returns SelectiveGapicGeneration
7437
- * @throws {Error} If the payload is not a reader or valid buffer
7438
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
7439
- */
7440
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.SelectiveGapicGeneration;
7441
-
7442
- /**
7443
- * Verifies a SelectiveGapicGeneration message.
7444
- * @param message Plain object to verify
7445
- * @returns `null` if valid, otherwise the reason why it is not
7446
- */
7447
- public static verify(message: { [k: string]: any }): (string|null);
7448
-
7449
- /**
7450
- * Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
7451
- * @param object Plain object
7452
- * @returns SelectiveGapicGeneration
7453
- */
7454
- public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;
7455
-
7456
- /**
7457
- * Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
7458
- * @param message SelectiveGapicGeneration
7459
- * @param [options] Conversion options
7460
- * @returns Plain object
7461
- */
7462
- public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };
7463
-
7464
- /**
7465
- * Converts this SelectiveGapicGeneration to JSON.
7466
- * @returns JSON object
7467
- */
7468
- public toJSON(): { [k: string]: any };
7469
-
7470
- /**
7471
- * Gets the default type url for SelectiveGapicGeneration
7472
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
7473
- * @returns The default type url
7474
- */
7475
- public static getTypeUrl(typeUrlPrefix?: string): string;
7476
- }
7477
-
7478
7245
  /** LaunchStage enum. */
7479
7246
  enum LaunchStage {
7480
7247
  LAUNCH_STAGE_UNSPECIFIED = 0,
@@ -7505,9 +7272,6 @@ export namespace google {
7505
7272
 
7506
7273
  /** FieldInfo format */
7507
7274
  format?: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format|null);
7508
-
7509
- /** FieldInfo referencedTypes */
7510
- referencedTypes?: (google.api.ITypeReference[]|null);
7511
7275
  }
7512
7276
 
7513
7277
  /** Represents a FieldInfo. */
@@ -7522,9 +7286,6 @@ export namespace google {
7522
7286
  /** FieldInfo format. */
7523
7287
  public format: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format);
7524
7288
 
7525
- /** FieldInfo referencedTypes. */
7526
- public referencedTypes: google.api.ITypeReference[];
7527
-
7528
7289
  /**
7529
7290
  * Creates a new FieldInfo instance using the specified properties.
7530
7291
  * @param [properties] Properties to set
@@ -7615,103 +7376,6 @@ export namespace google {
7615
7376
  }
7616
7377
  }
7617
7378
 
7618
- /** Properties of a TypeReference. */
7619
- interface ITypeReference {
7620
-
7621
- /** TypeReference typeName */
7622
- typeName?: (string|null);
7623
- }
7624
-
7625
- /** Represents a TypeReference. */
7626
- class TypeReference implements ITypeReference {
7627
-
7628
- /**
7629
- * Constructs a new TypeReference.
7630
- * @param [properties] Properties to set
7631
- */
7632
- constructor(properties?: google.api.ITypeReference);
7633
-
7634
- /** TypeReference typeName. */
7635
- public typeName: string;
7636
-
7637
- /**
7638
- * Creates a new TypeReference instance using the specified properties.
7639
- * @param [properties] Properties to set
7640
- * @returns TypeReference instance
7641
- */
7642
- public static create(properties?: google.api.ITypeReference): google.api.TypeReference;
7643
-
7644
- /**
7645
- * Encodes the specified TypeReference message. Does not implicitly {@link google.api.TypeReference.verify|verify} messages.
7646
- * @param message TypeReference message or plain object to encode
7647
- * @param [writer] Writer to encode to
7648
- * @returns Writer
7649
- */
7650
- public static encode(message: google.api.ITypeReference, writer?: $protobuf.Writer): $protobuf.Writer;
7651
-
7652
- /**
7653
- * Encodes the specified TypeReference message, length delimited. Does not implicitly {@link google.api.TypeReference.verify|verify} messages.
7654
- * @param message TypeReference message or plain object to encode
7655
- * @param [writer] Writer to encode to
7656
- * @returns Writer
7657
- */
7658
- public static encodeDelimited(message: google.api.ITypeReference, writer?: $protobuf.Writer): $protobuf.Writer;
7659
-
7660
- /**
7661
- * Decodes a TypeReference message from the specified reader or buffer.
7662
- * @param reader Reader or buffer to decode from
7663
- * @param [length] Message length if known beforehand
7664
- * @returns TypeReference
7665
- * @throws {Error} If the payload is not a reader or valid buffer
7666
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
7667
- */
7668
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.TypeReference;
7669
-
7670
- /**
7671
- * Decodes a TypeReference message from the specified reader or buffer, length delimited.
7672
- * @param reader Reader or buffer to decode from
7673
- * @returns TypeReference
7674
- * @throws {Error} If the payload is not a reader or valid buffer
7675
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
7676
- */
7677
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.TypeReference;
7678
-
7679
- /**
7680
- * Verifies a TypeReference message.
7681
- * @param message Plain object to verify
7682
- * @returns `null` if valid, otherwise the reason why it is not
7683
- */
7684
- public static verify(message: { [k: string]: any }): (string|null);
7685
-
7686
- /**
7687
- * Creates a TypeReference message from a plain object. Also converts values to their respective internal types.
7688
- * @param object Plain object
7689
- * @returns TypeReference
7690
- */
7691
- public static fromObject(object: { [k: string]: any }): google.api.TypeReference;
7692
-
7693
- /**
7694
- * Creates a plain object from a TypeReference message. Also converts values to other types if specified.
7695
- * @param message TypeReference
7696
- * @param [options] Conversion options
7697
- * @returns Plain object
7698
- */
7699
- public static toObject(message: google.api.TypeReference, options?: $protobuf.IConversionOptions): { [k: string]: any };
7700
-
7701
- /**
7702
- * Converts this TypeReference to JSON.
7703
- * @returns JSON object
7704
- */
7705
- public toJSON(): { [k: string]: any };
7706
-
7707
- /**
7708
- * Gets the default type url for TypeReference
7709
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
7710
- * @returns The default type url
7711
- */
7712
- public static getTypeUrl(typeUrlPrefix?: string): string;
7713
- }
7714
-
7715
7379
  /** Properties of a ResourceDescriptor. */
7716
7380
  interface IResourceDescriptor {
7717
7381
 
@@ -8268,7 +7932,6 @@ export namespace google {
8268
7932
  /** Edition enum. */
8269
7933
  enum Edition {
8270
7934
  EDITION_UNKNOWN = 0,
8271
- EDITION_LEGACY = 900,
8272
7935
  EDITION_PROTO2 = 998,
8273
7936
  EDITION_PROTO3 = 999,
8274
7937
  EDITION_2023 = 1000,
@@ -8299,9 +7962,6 @@ export namespace google {
8299
7962
  /** FileDescriptorProto weakDependency */
8300
7963
  weakDependency?: (number[]|null);
8301
7964
 
8302
- /** FileDescriptorProto optionDependency */
8303
- optionDependency?: (string[]|null);
8304
-
8305
7965
  /** FileDescriptorProto messageType */
8306
7966
  messageType?: (google.protobuf.IDescriptorProto[]|null);
8307
7967
 
@@ -8351,9 +8011,6 @@ export namespace google {
8351
8011
  /** FileDescriptorProto weakDependency. */
8352
8012
  public weakDependency: number[];
8353
8013
 
8354
- /** FileDescriptorProto optionDependency. */
8355
- public optionDependency: string[];
8356
-
8357
8014
  /** FileDescriptorProto messageType. */
8358
8015
  public messageType: google.protobuf.IDescriptorProto[];
8359
8016
 
@@ -8488,9 +8145,6 @@ export namespace google {
8488
8145
 
8489
8146
  /** DescriptorProto reservedName */
8490
8147
  reservedName?: (string[]|null);
8491
-
8492
- /** DescriptorProto visibility */
8493
- visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
8494
8148
  }
8495
8149
 
8496
8150
  /** Represents a DescriptorProto. */
@@ -8532,9 +8186,6 @@ export namespace google {
8532
8186
  /** DescriptorProto reservedName. */
8533
8187
  public reservedName: string[];
8534
8188
 
8535
- /** DescriptorProto visibility. */
8536
- public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
8537
-
8538
8189
  /**
8539
8190
  * Creates a new DescriptorProto instance using the specified properties.
8540
8191
  * @param [properties] Properties to set
@@ -9382,9 +9033,6 @@ export namespace google {
9382
9033
 
9383
9034
  /** EnumDescriptorProto reservedName */
9384
9035
  reservedName?: (string[]|null);
9385
-
9386
- /** EnumDescriptorProto visibility */
9387
- visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
9388
9036
  }
9389
9037
 
9390
9038
  /** Represents an EnumDescriptorProto. */
@@ -9411,9 +9059,6 @@ export namespace google {
9411
9059
  /** EnumDescriptorProto reservedName. */
9412
9060
  public reservedName: string[];
9413
9061
 
9414
- /** EnumDescriptorProto visibility. */
9415
- public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
9416
-
9417
9062
  /**
9418
9063
  * Creates a new EnumDescriptorProto instance using the specified properties.
9419
9064
  * @param [properties] Properties to set
@@ -10348,9 +9993,6 @@ export namespace google {
10348
9993
  /** FieldOptions features */
10349
9994
  features?: (google.protobuf.IFeatureSet|null);
10350
9995
 
10351
- /** FieldOptions featureSupport */
10352
- featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
10353
-
10354
9996
  /** FieldOptions uninterpretedOption */
10355
9997
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
10356
9998
 
@@ -10409,9 +10051,6 @@ export namespace google {
10409
10051
  /** FieldOptions features. */
10410
10052
  public features?: (google.protobuf.IFeatureSet|null);
10411
10053
 
10412
- /** FieldOptions featureSupport. */
10413
- public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
10414
-
10415
10054
  /** FieldOptions uninterpretedOption. */
10416
10055
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
10417
10056
 
@@ -10632,121 +10271,6 @@ export namespace google {
10632
10271
  */
10633
10272
  public static getTypeUrl(typeUrlPrefix?: string): string;
10634
10273
  }
10635
-
10636
- /** Properties of a FeatureSupport. */
10637
- interface IFeatureSupport {
10638
-
10639
- /** FeatureSupport editionIntroduced */
10640
- editionIntroduced?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
10641
-
10642
- /** FeatureSupport editionDeprecated */
10643
- editionDeprecated?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
10644
-
10645
- /** FeatureSupport deprecationWarning */
10646
- deprecationWarning?: (string|null);
10647
-
10648
- /** FeatureSupport editionRemoved */
10649
- editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
10650
- }
10651
-
10652
- /** Represents a FeatureSupport. */
10653
- class FeatureSupport implements IFeatureSupport {
10654
-
10655
- /**
10656
- * Constructs a new FeatureSupport.
10657
- * @param [properties] Properties to set
10658
- */
10659
- constructor(properties?: google.protobuf.FieldOptions.IFeatureSupport);
10660
-
10661
- /** FeatureSupport editionIntroduced. */
10662
- public editionIntroduced: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
10663
-
10664
- /** FeatureSupport editionDeprecated. */
10665
- public editionDeprecated: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
10666
-
10667
- /** FeatureSupport deprecationWarning. */
10668
- public deprecationWarning: string;
10669
-
10670
- /** FeatureSupport editionRemoved. */
10671
- public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
10672
-
10673
- /**
10674
- * Creates a new FeatureSupport instance using the specified properties.
10675
- * @param [properties] Properties to set
10676
- * @returns FeatureSupport instance
10677
- */
10678
- public static create(properties?: google.protobuf.FieldOptions.IFeatureSupport): google.protobuf.FieldOptions.FeatureSupport;
10679
-
10680
- /**
10681
- * Encodes the specified FeatureSupport message. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
10682
- * @param message FeatureSupport message or plain object to encode
10683
- * @param [writer] Writer to encode to
10684
- * @returns Writer
10685
- */
10686
- public static encode(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
10687
-
10688
- /**
10689
- * Encodes the specified FeatureSupport message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
10690
- * @param message FeatureSupport message or plain object to encode
10691
- * @param [writer] Writer to encode to
10692
- * @returns Writer
10693
- */
10694
- public static encodeDelimited(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
10695
-
10696
- /**
10697
- * Decodes a FeatureSupport message from the specified reader or buffer.
10698
- * @param reader Reader or buffer to decode from
10699
- * @param [length] Message length if known beforehand
10700
- * @returns FeatureSupport
10701
- * @throws {Error} If the payload is not a reader or valid buffer
10702
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
10703
- */
10704
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.FeatureSupport;
10705
-
10706
- /**
10707
- * Decodes a FeatureSupport message from the specified reader or buffer, length delimited.
10708
- * @param reader Reader or buffer to decode from
10709
- * @returns FeatureSupport
10710
- * @throws {Error} If the payload is not a reader or valid buffer
10711
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
10712
- */
10713
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.FeatureSupport;
10714
-
10715
- /**
10716
- * Verifies a FeatureSupport message.
10717
- * @param message Plain object to verify
10718
- * @returns `null` if valid, otherwise the reason why it is not
10719
- */
10720
- public static verify(message: { [k: string]: any }): (string|null);
10721
-
10722
- /**
10723
- * Creates a FeatureSupport message from a plain object. Also converts values to their respective internal types.
10724
- * @param object Plain object
10725
- * @returns FeatureSupport
10726
- */
10727
- public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.FeatureSupport;
10728
-
10729
- /**
10730
- * Creates a plain object from a FeatureSupport message. Also converts values to other types if specified.
10731
- * @param message FeatureSupport
10732
- * @param [options] Conversion options
10733
- * @returns Plain object
10734
- */
10735
- public static toObject(message: google.protobuf.FieldOptions.FeatureSupport, options?: $protobuf.IConversionOptions): { [k: string]: any };
10736
-
10737
- /**
10738
- * Converts this FeatureSupport to JSON.
10739
- * @returns JSON object
10740
- */
10741
- public toJSON(): { [k: string]: any };
10742
-
10743
- /**
10744
- * Gets the default type url for FeatureSupport
10745
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
10746
- * @returns The default type url
10747
- */
10748
- public static getTypeUrl(typeUrlPrefix?: string): string;
10749
- }
10750
10274
  }
10751
10275
 
10752
10276
  /** Properties of an OneofOptions. */
@@ -10985,9 +10509,6 @@ export namespace google {
10985
10509
  /** EnumValueOptions debugRedact */
10986
10510
  debugRedact?: (boolean|null);
10987
10511
 
10988
- /** EnumValueOptions featureSupport */
10989
- featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
10990
-
10991
10512
  /** EnumValueOptions uninterpretedOption */
10992
10513
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
10993
10514
  }
@@ -11010,9 +10531,6 @@ export namespace google {
11010
10531
  /** EnumValueOptions debugRedact. */
11011
10532
  public debugRedact: boolean;
11012
10533
 
11013
- /** EnumValueOptions featureSupport. */
11014
- public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
11015
-
11016
10534
  /** EnumValueOptions uninterpretedOption. */
11017
10535
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
11018
10536
 
@@ -11608,12 +11126,6 @@ export namespace google {
11608
11126
 
11609
11127
  /** FeatureSet jsonFormat */
11610
11128
  jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
11611
-
11612
- /** FeatureSet enforceNamingStyle */
11613
- enforceNamingStyle?: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle|null);
11614
-
11615
- /** FeatureSet defaultSymbolVisibility */
11616
- defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
11617
11129
  }
11618
11130
 
11619
11131
  /** Represents a FeatureSet. */
@@ -11643,12 +11155,6 @@ export namespace google {
11643
11155
  /** FeatureSet jsonFormat. */
11644
11156
  public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
11645
11157
 
11646
- /** FeatureSet enforceNamingStyle. */
11647
- public enforceNamingStyle: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle);
11648
-
11649
- /** FeatureSet defaultSymbolVisibility. */
11650
- public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
11651
-
11652
11158
  /**
11653
11159
  * Creates a new FeatureSet instance using the specified properties.
11654
11160
  * @param [properties] Properties to set
@@ -11771,116 +11277,6 @@ export namespace google {
11771
11277
  ALLOW = 1,
11772
11278
  LEGACY_BEST_EFFORT = 2
11773
11279
  }
11774
-
11775
- /** EnforceNamingStyle enum. */
11776
- enum EnforceNamingStyle {
11777
- ENFORCE_NAMING_STYLE_UNKNOWN = 0,
11778
- STYLE2024 = 1,
11779
- STYLE_LEGACY = 2
11780
- }
11781
-
11782
- /** Properties of a VisibilityFeature. */
11783
- interface IVisibilityFeature {
11784
- }
11785
-
11786
- /** Represents a VisibilityFeature. */
11787
- class VisibilityFeature implements IVisibilityFeature {
11788
-
11789
- /**
11790
- * Constructs a new VisibilityFeature.
11791
- * @param [properties] Properties to set
11792
- */
11793
- constructor(properties?: google.protobuf.FeatureSet.IVisibilityFeature);
11794
-
11795
- /**
11796
- * Creates a new VisibilityFeature instance using the specified properties.
11797
- * @param [properties] Properties to set
11798
- * @returns VisibilityFeature instance
11799
- */
11800
- public static create(properties?: google.protobuf.FeatureSet.IVisibilityFeature): google.protobuf.FeatureSet.VisibilityFeature;
11801
-
11802
- /**
11803
- * Encodes the specified VisibilityFeature message. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
11804
- * @param message VisibilityFeature message or plain object to encode
11805
- * @param [writer] Writer to encode to
11806
- * @returns Writer
11807
- */
11808
- public static encode(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
11809
-
11810
- /**
11811
- * Encodes the specified VisibilityFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
11812
- * @param message VisibilityFeature message or plain object to encode
11813
- * @param [writer] Writer to encode to
11814
- * @returns Writer
11815
- */
11816
- public static encodeDelimited(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
11817
-
11818
- /**
11819
- * Decodes a VisibilityFeature message from the specified reader or buffer.
11820
- * @param reader Reader or buffer to decode from
11821
- * @param [length] Message length if known beforehand
11822
- * @returns VisibilityFeature
11823
- * @throws {Error} If the payload is not a reader or valid buffer
11824
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
11825
- */
11826
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.VisibilityFeature;
11827
-
11828
- /**
11829
- * Decodes a VisibilityFeature message from the specified reader or buffer, length delimited.
11830
- * @param reader Reader or buffer to decode from
11831
- * @returns VisibilityFeature
11832
- * @throws {Error} If the payload is not a reader or valid buffer
11833
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
11834
- */
11835
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.VisibilityFeature;
11836
-
11837
- /**
11838
- * Verifies a VisibilityFeature message.
11839
- * @param message Plain object to verify
11840
- * @returns `null` if valid, otherwise the reason why it is not
11841
- */
11842
- public static verify(message: { [k: string]: any }): (string|null);
11843
-
11844
- /**
11845
- * Creates a VisibilityFeature message from a plain object. Also converts values to their respective internal types.
11846
- * @param object Plain object
11847
- * @returns VisibilityFeature
11848
- */
11849
- public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.VisibilityFeature;
11850
-
11851
- /**
11852
- * Creates a plain object from a VisibilityFeature message. Also converts values to other types if specified.
11853
- * @param message VisibilityFeature
11854
- * @param [options] Conversion options
11855
- * @returns Plain object
11856
- */
11857
- public static toObject(message: google.protobuf.FeatureSet.VisibilityFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
11858
-
11859
- /**
11860
- * Converts this VisibilityFeature to JSON.
11861
- * @returns JSON object
11862
- */
11863
- public toJSON(): { [k: string]: any };
11864
-
11865
- /**
11866
- * Gets the default type url for VisibilityFeature
11867
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
11868
- * @returns The default type url
11869
- */
11870
- public static getTypeUrl(typeUrlPrefix?: string): string;
11871
- }
11872
-
11873
- namespace VisibilityFeature {
11874
-
11875
- /** DefaultSymbolVisibility enum. */
11876
- enum DefaultSymbolVisibility {
11877
- DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
11878
- EXPORT_ALL = 1,
11879
- EXPORT_TOP_LEVEL = 2,
11880
- LOCAL_ALL = 3,
11881
- STRICT = 4
11882
- }
11883
- }
11884
11280
  }
11885
11281
 
11886
11282
  /** Properties of a FeatureSetDefaults. */
@@ -12000,11 +11396,8 @@ export namespace google {
12000
11396
  /** FeatureSetEditionDefault edition */
12001
11397
  edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
12002
11398
 
12003
- /** FeatureSetEditionDefault overridableFeatures */
12004
- overridableFeatures?: (google.protobuf.IFeatureSet|null);
12005
-
12006
- /** FeatureSetEditionDefault fixedFeatures */
12007
- fixedFeatures?: (google.protobuf.IFeatureSet|null);
11399
+ /** FeatureSetEditionDefault features */
11400
+ features?: (google.protobuf.IFeatureSet|null);
12008
11401
  }
12009
11402
 
12010
11403
  /** Represents a FeatureSetEditionDefault. */
@@ -12019,11 +11412,8 @@ export namespace google {
12019
11412
  /** FeatureSetEditionDefault edition. */
12020
11413
  public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
12021
11414
 
12022
- /** FeatureSetEditionDefault overridableFeatures. */
12023
- public overridableFeatures?: (google.protobuf.IFeatureSet|null);
12024
-
12025
- /** FeatureSetEditionDefault fixedFeatures. */
12026
- public fixedFeatures?: (google.protobuf.IFeatureSet|null);
11415
+ /** FeatureSetEditionDefault features. */
11416
+ public features?: (google.protobuf.IFeatureSet|null);
12027
11417
 
12028
11418
  /**
12029
11419
  * Creates a new FeatureSetEditionDefault instance using the specified properties.
@@ -12556,13 +11946,6 @@ export namespace google {
12556
11946
  }
12557
11947
  }
12558
11948
 
12559
- /** SymbolVisibility enum. */
12560
- enum SymbolVisibility {
12561
- VISIBILITY_UNSET = 0,
12562
- VISIBILITY_LOCAL = 1,
12563
- VISIBILITY_EXPORT = 2
12564
- }
12565
-
12566
11949
  /** Properties of a Duration. */
12567
11950
  interface IDuration {
12568
11951