@google-apps/chat 0.18.0 → 0.19.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.
@@ -993,7 +993,6 @@ export namespace google {
993
993
  /** Edition enum. */
994
994
  enum Edition {
995
995
  EDITION_UNKNOWN = 0,
996
- EDITION_LEGACY = 900,
997
996
  EDITION_PROTO2 = 998,
998
997
  EDITION_PROTO3 = 999,
999
998
  EDITION_2023 = 1000,
@@ -1024,9 +1023,6 @@ export namespace google {
1024
1023
  /** FileDescriptorProto weakDependency */
1025
1024
  weakDependency?: (number[]|null);
1026
1025
 
1027
- /** FileDescriptorProto optionDependency */
1028
- optionDependency?: (string[]|null);
1029
-
1030
1026
  /** FileDescriptorProto messageType */
1031
1027
  messageType?: (google.protobuf.IDescriptorProto[]|null);
1032
1028
 
@@ -1076,9 +1072,6 @@ export namespace google {
1076
1072
  /** FileDescriptorProto weakDependency. */
1077
1073
  public weakDependency: number[];
1078
1074
 
1079
- /** FileDescriptorProto optionDependency. */
1080
- public optionDependency: string[];
1081
-
1082
1075
  /** FileDescriptorProto messageType. */
1083
1076
  public messageType: google.protobuf.IDescriptorProto[];
1084
1077
 
@@ -1213,9 +1206,6 @@ export namespace google {
1213
1206
 
1214
1207
  /** DescriptorProto reservedName */
1215
1208
  reservedName?: (string[]|null);
1216
-
1217
- /** DescriptorProto visibility */
1218
- visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
1219
1209
  }
1220
1210
 
1221
1211
  /** Represents a DescriptorProto. */
@@ -1257,9 +1247,6 @@ export namespace google {
1257
1247
  /** DescriptorProto reservedName. */
1258
1248
  public reservedName: string[];
1259
1249
 
1260
- /** DescriptorProto visibility. */
1261
- public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
1262
-
1263
1250
  /**
1264
1251
  * Creates a new DescriptorProto instance using the specified properties.
1265
1252
  * @param [properties] Properties to set
@@ -2107,9 +2094,6 @@ export namespace google {
2107
2094
 
2108
2095
  /** EnumDescriptorProto reservedName */
2109
2096
  reservedName?: (string[]|null);
2110
-
2111
- /** EnumDescriptorProto visibility */
2112
- visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
2113
2097
  }
2114
2098
 
2115
2099
  /** Represents an EnumDescriptorProto. */
@@ -2136,9 +2120,6 @@ export namespace google {
2136
2120
  /** EnumDescriptorProto reservedName. */
2137
2121
  public reservedName: string[];
2138
2122
 
2139
- /** EnumDescriptorProto visibility. */
2140
- public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
2141
-
2142
2123
  /**
2143
2124
  * Creates a new EnumDescriptorProto instance using the specified properties.
2144
2125
  * @param [properties] Properties to set
@@ -3073,9 +3054,6 @@ export namespace google {
3073
3054
  /** FieldOptions features */
3074
3055
  features?: (google.protobuf.IFeatureSet|null);
3075
3056
 
3076
- /** FieldOptions featureSupport */
3077
- featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
3078
-
3079
3057
  /** FieldOptions uninterpretedOption */
3080
3058
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
3081
3059
 
@@ -3134,9 +3112,6 @@ export namespace google {
3134
3112
  /** FieldOptions features. */
3135
3113
  public features?: (google.protobuf.IFeatureSet|null);
3136
3114
 
3137
- /** FieldOptions featureSupport. */
3138
- public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
3139
-
3140
3115
  /** FieldOptions uninterpretedOption. */
3141
3116
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
3142
3117
 
@@ -3357,121 +3332,6 @@ export namespace google {
3357
3332
  */
3358
3333
  public static getTypeUrl(typeUrlPrefix?: string): string;
3359
3334
  }
3360
-
3361
- /** Properties of a FeatureSupport. */
3362
- interface IFeatureSupport {
3363
-
3364
- /** FeatureSupport editionIntroduced */
3365
- editionIntroduced?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
3366
-
3367
- /** FeatureSupport editionDeprecated */
3368
- editionDeprecated?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
3369
-
3370
- /** FeatureSupport deprecationWarning */
3371
- deprecationWarning?: (string|null);
3372
-
3373
- /** FeatureSupport editionRemoved */
3374
- editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
3375
- }
3376
-
3377
- /** Represents a FeatureSupport. */
3378
- class FeatureSupport implements IFeatureSupport {
3379
-
3380
- /**
3381
- * Constructs a new FeatureSupport.
3382
- * @param [properties] Properties to set
3383
- */
3384
- constructor(properties?: google.protobuf.FieldOptions.IFeatureSupport);
3385
-
3386
- /** FeatureSupport editionIntroduced. */
3387
- public editionIntroduced: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
3388
-
3389
- /** FeatureSupport editionDeprecated. */
3390
- public editionDeprecated: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
3391
-
3392
- /** FeatureSupport deprecationWarning. */
3393
- public deprecationWarning: string;
3394
-
3395
- /** FeatureSupport editionRemoved. */
3396
- public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
3397
-
3398
- /**
3399
- * Creates a new FeatureSupport instance using the specified properties.
3400
- * @param [properties] Properties to set
3401
- * @returns FeatureSupport instance
3402
- */
3403
- public static create(properties?: google.protobuf.FieldOptions.IFeatureSupport): google.protobuf.FieldOptions.FeatureSupport;
3404
-
3405
- /**
3406
- * Encodes the specified FeatureSupport message. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
3407
- * @param message FeatureSupport message or plain object to encode
3408
- * @param [writer] Writer to encode to
3409
- * @returns Writer
3410
- */
3411
- public static encode(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
3412
-
3413
- /**
3414
- * Encodes the specified FeatureSupport message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
3415
- * @param message FeatureSupport message or plain object to encode
3416
- * @param [writer] Writer to encode to
3417
- * @returns Writer
3418
- */
3419
- public static encodeDelimited(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
3420
-
3421
- /**
3422
- * Decodes a FeatureSupport message from the specified reader or buffer.
3423
- * @param reader Reader or buffer to decode from
3424
- * @param [length] Message length if known beforehand
3425
- * @returns FeatureSupport
3426
- * @throws {Error} If the payload is not a reader or valid buffer
3427
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
3428
- */
3429
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.FeatureSupport;
3430
-
3431
- /**
3432
- * Decodes a FeatureSupport message from the specified reader or buffer, length delimited.
3433
- * @param reader Reader or buffer to decode from
3434
- * @returns FeatureSupport
3435
- * @throws {Error} If the payload is not a reader or valid buffer
3436
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
3437
- */
3438
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.FeatureSupport;
3439
-
3440
- /**
3441
- * Verifies a FeatureSupport message.
3442
- * @param message Plain object to verify
3443
- * @returns `null` if valid, otherwise the reason why it is not
3444
- */
3445
- public static verify(message: { [k: string]: any }): (string|null);
3446
-
3447
- /**
3448
- * Creates a FeatureSupport message from a plain object. Also converts values to their respective internal types.
3449
- * @param object Plain object
3450
- * @returns FeatureSupport
3451
- */
3452
- public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.FeatureSupport;
3453
-
3454
- /**
3455
- * Creates a plain object from a FeatureSupport message. Also converts values to other types if specified.
3456
- * @param message FeatureSupport
3457
- * @param [options] Conversion options
3458
- * @returns Plain object
3459
- */
3460
- public static toObject(message: google.protobuf.FieldOptions.FeatureSupport, options?: $protobuf.IConversionOptions): { [k: string]: any };
3461
-
3462
- /**
3463
- * Converts this FeatureSupport to JSON.
3464
- * @returns JSON object
3465
- */
3466
- public toJSON(): { [k: string]: any };
3467
-
3468
- /**
3469
- * Gets the default type url for FeatureSupport
3470
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
3471
- * @returns The default type url
3472
- */
3473
- public static getTypeUrl(typeUrlPrefix?: string): string;
3474
- }
3475
3335
  }
3476
3336
 
3477
3337
  /** Properties of an OneofOptions. */
@@ -3710,9 +3570,6 @@ export namespace google {
3710
3570
  /** EnumValueOptions debugRedact */
3711
3571
  debugRedact?: (boolean|null);
3712
3572
 
3713
- /** EnumValueOptions featureSupport */
3714
- featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
3715
-
3716
3573
  /** EnumValueOptions uninterpretedOption */
3717
3574
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
3718
3575
  }
@@ -3735,9 +3592,6 @@ export namespace google {
3735
3592
  /** EnumValueOptions debugRedact. */
3736
3593
  public debugRedact: boolean;
3737
3594
 
3738
- /** EnumValueOptions featureSupport. */
3739
- public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
3740
-
3741
3595
  /** EnumValueOptions uninterpretedOption. */
3742
3596
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
3743
3597
 
@@ -4327,12 +4181,6 @@ export namespace google {
4327
4181
 
4328
4182
  /** FeatureSet jsonFormat */
4329
4183
  jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
4330
-
4331
- /** FeatureSet enforceNamingStyle */
4332
- enforceNamingStyle?: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle|null);
4333
-
4334
- /** FeatureSet defaultSymbolVisibility */
4335
- defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
4336
4184
  }
4337
4185
 
4338
4186
  /** Represents a FeatureSet. */
@@ -4362,12 +4210,6 @@ export namespace google {
4362
4210
  /** FeatureSet jsonFormat. */
4363
4211
  public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
4364
4212
 
4365
- /** FeatureSet enforceNamingStyle. */
4366
- public enforceNamingStyle: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle);
4367
-
4368
- /** FeatureSet defaultSymbolVisibility. */
4369
- public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
4370
-
4371
4213
  /**
4372
4214
  * Creates a new FeatureSet instance using the specified properties.
4373
4215
  * @param [properties] Properties to set
@@ -4490,116 +4332,6 @@ export namespace google {
4490
4332
  ALLOW = 1,
4491
4333
  LEGACY_BEST_EFFORT = 2
4492
4334
  }
4493
-
4494
- /** EnforceNamingStyle enum. */
4495
- enum EnforceNamingStyle {
4496
- ENFORCE_NAMING_STYLE_UNKNOWN = 0,
4497
- STYLE2024 = 1,
4498
- STYLE_LEGACY = 2
4499
- }
4500
-
4501
- /** Properties of a VisibilityFeature. */
4502
- interface IVisibilityFeature {
4503
- }
4504
-
4505
- /** Represents a VisibilityFeature. */
4506
- class VisibilityFeature implements IVisibilityFeature {
4507
-
4508
- /**
4509
- * Constructs a new VisibilityFeature.
4510
- * @param [properties] Properties to set
4511
- */
4512
- constructor(properties?: google.protobuf.FeatureSet.IVisibilityFeature);
4513
-
4514
- /**
4515
- * Creates a new VisibilityFeature instance using the specified properties.
4516
- * @param [properties] Properties to set
4517
- * @returns VisibilityFeature instance
4518
- */
4519
- public static create(properties?: google.protobuf.FeatureSet.IVisibilityFeature): google.protobuf.FeatureSet.VisibilityFeature;
4520
-
4521
- /**
4522
- * Encodes the specified VisibilityFeature message. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
4523
- * @param message VisibilityFeature message or plain object to encode
4524
- * @param [writer] Writer to encode to
4525
- * @returns Writer
4526
- */
4527
- public static encode(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
4528
-
4529
- /**
4530
- * Encodes the specified VisibilityFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
4531
- * @param message VisibilityFeature message or plain object to encode
4532
- * @param [writer] Writer to encode to
4533
- * @returns Writer
4534
- */
4535
- public static encodeDelimited(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
4536
-
4537
- /**
4538
- * Decodes a VisibilityFeature message from the specified reader or buffer.
4539
- * @param reader Reader or buffer to decode from
4540
- * @param [length] Message length if known beforehand
4541
- * @returns VisibilityFeature
4542
- * @throws {Error} If the payload is not a reader or valid buffer
4543
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
4544
- */
4545
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.VisibilityFeature;
4546
-
4547
- /**
4548
- * Decodes a VisibilityFeature message from the specified reader or buffer, length delimited.
4549
- * @param reader Reader or buffer to decode from
4550
- * @returns VisibilityFeature
4551
- * @throws {Error} If the payload is not a reader or valid buffer
4552
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
4553
- */
4554
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.VisibilityFeature;
4555
-
4556
- /**
4557
- * Verifies a VisibilityFeature message.
4558
- * @param message Plain object to verify
4559
- * @returns `null` if valid, otherwise the reason why it is not
4560
- */
4561
- public static verify(message: { [k: string]: any }): (string|null);
4562
-
4563
- /**
4564
- * Creates a VisibilityFeature message from a plain object. Also converts values to their respective internal types.
4565
- * @param object Plain object
4566
- * @returns VisibilityFeature
4567
- */
4568
- public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.VisibilityFeature;
4569
-
4570
- /**
4571
- * Creates a plain object from a VisibilityFeature message. Also converts values to other types if specified.
4572
- * @param message VisibilityFeature
4573
- * @param [options] Conversion options
4574
- * @returns Plain object
4575
- */
4576
- public static toObject(message: google.protobuf.FeatureSet.VisibilityFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
4577
-
4578
- /**
4579
- * Converts this VisibilityFeature to JSON.
4580
- * @returns JSON object
4581
- */
4582
- public toJSON(): { [k: string]: any };
4583
-
4584
- /**
4585
- * Gets the default type url for VisibilityFeature
4586
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
4587
- * @returns The default type url
4588
- */
4589
- public static getTypeUrl(typeUrlPrefix?: string): string;
4590
- }
4591
-
4592
- namespace VisibilityFeature {
4593
-
4594
- /** DefaultSymbolVisibility enum. */
4595
- enum DefaultSymbolVisibility {
4596
- DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
4597
- EXPORT_ALL = 1,
4598
- EXPORT_TOP_LEVEL = 2,
4599
- LOCAL_ALL = 3,
4600
- STRICT = 4
4601
- }
4602
- }
4603
4335
  }
4604
4336
 
4605
4337
  /** Properties of a FeatureSetDefaults. */
@@ -4719,11 +4451,8 @@ export namespace google {
4719
4451
  /** FeatureSetEditionDefault edition */
4720
4452
  edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
4721
4453
 
4722
- /** FeatureSetEditionDefault overridableFeatures */
4723
- overridableFeatures?: (google.protobuf.IFeatureSet|null);
4724
-
4725
- /** FeatureSetEditionDefault fixedFeatures */
4726
- fixedFeatures?: (google.protobuf.IFeatureSet|null);
4454
+ /** FeatureSetEditionDefault features */
4455
+ features?: (google.protobuf.IFeatureSet|null);
4727
4456
  }
4728
4457
 
4729
4458
  /** Represents a FeatureSetEditionDefault. */
@@ -4738,11 +4467,8 @@ export namespace google {
4738
4467
  /** FeatureSetEditionDefault edition. */
4739
4468
  public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
4740
4469
 
4741
- /** FeatureSetEditionDefault overridableFeatures. */
4742
- public overridableFeatures?: (google.protobuf.IFeatureSet|null);
4743
-
4744
- /** FeatureSetEditionDefault fixedFeatures. */
4745
- public fixedFeatures?: (google.protobuf.IFeatureSet|null);
4470
+ /** FeatureSetEditionDefault features. */
4471
+ public features?: (google.protobuf.IFeatureSet|null);
4746
4472
 
4747
4473
  /**
4748
4474
  * Creates a new FeatureSetEditionDefault instance using the specified properties.
@@ -5275,13 +5001,6 @@ export namespace google {
5275
5001
  }
5276
5002
  }
5277
5003
 
5278
- /** SymbolVisibility enum. */
5279
- enum SymbolVisibility {
5280
- VISIBILITY_UNSET = 0,
5281
- VISIBILITY_LOCAL = 1,
5282
- VISIBILITY_EXPORT = 2
5283
- }
5284
-
5285
5004
  /** Properties of a Duration. */
5286
5005
  interface IDuration {
5287
5006
 
@@ -24613,9 +24332,6 @@ export namespace google {
24613
24332
 
24614
24333
  /** FieldInfo format */
24615
24334
  format?: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format|null);
24616
-
24617
- /** FieldInfo referencedTypes */
24618
- referencedTypes?: (google.api.ITypeReference[]|null);
24619
24335
  }
24620
24336
 
24621
24337
  /** Represents a FieldInfo. */
@@ -24630,9 +24346,6 @@ export namespace google {
24630
24346
  /** FieldInfo format. */
24631
24347
  public format: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format);
24632
24348
 
24633
- /** FieldInfo referencedTypes. */
24634
- public referencedTypes: google.api.ITypeReference[];
24635
-
24636
24349
  /**
24637
24350
  * Creates a new FieldInfo instance using the specified properties.
24638
24351
  * @param [properties] Properties to set
@@ -24723,103 +24436,6 @@ export namespace google {
24723
24436
  }
24724
24437
  }
24725
24438
 
24726
- /** Properties of a TypeReference. */
24727
- interface ITypeReference {
24728
-
24729
- /** TypeReference typeName */
24730
- typeName?: (string|null);
24731
- }
24732
-
24733
- /** Represents a TypeReference. */
24734
- class TypeReference implements ITypeReference {
24735
-
24736
- /**
24737
- * Constructs a new TypeReference.
24738
- * @param [properties] Properties to set
24739
- */
24740
- constructor(properties?: google.api.ITypeReference);
24741
-
24742
- /** TypeReference typeName. */
24743
- public typeName: string;
24744
-
24745
- /**
24746
- * Creates a new TypeReference instance using the specified properties.
24747
- * @param [properties] Properties to set
24748
- * @returns TypeReference instance
24749
- */
24750
- public static create(properties?: google.api.ITypeReference): google.api.TypeReference;
24751
-
24752
- /**
24753
- * Encodes the specified TypeReference message. Does not implicitly {@link google.api.TypeReference.verify|verify} messages.
24754
- * @param message TypeReference message or plain object to encode
24755
- * @param [writer] Writer to encode to
24756
- * @returns Writer
24757
- */
24758
- public static encode(message: google.api.ITypeReference, writer?: $protobuf.Writer): $protobuf.Writer;
24759
-
24760
- /**
24761
- * Encodes the specified TypeReference message, length delimited. Does not implicitly {@link google.api.TypeReference.verify|verify} messages.
24762
- * @param message TypeReference message or plain object to encode
24763
- * @param [writer] Writer to encode to
24764
- * @returns Writer
24765
- */
24766
- public static encodeDelimited(message: google.api.ITypeReference, writer?: $protobuf.Writer): $protobuf.Writer;
24767
-
24768
- /**
24769
- * Decodes a TypeReference message from the specified reader or buffer.
24770
- * @param reader Reader or buffer to decode from
24771
- * @param [length] Message length if known beforehand
24772
- * @returns TypeReference
24773
- * @throws {Error} If the payload is not a reader or valid buffer
24774
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
24775
- */
24776
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.TypeReference;
24777
-
24778
- /**
24779
- * Decodes a TypeReference message from the specified reader or buffer, length delimited.
24780
- * @param reader Reader or buffer to decode from
24781
- * @returns TypeReference
24782
- * @throws {Error} If the payload is not a reader or valid buffer
24783
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
24784
- */
24785
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.TypeReference;
24786
-
24787
- /**
24788
- * Verifies a TypeReference message.
24789
- * @param message Plain object to verify
24790
- * @returns `null` if valid, otherwise the reason why it is not
24791
- */
24792
- public static verify(message: { [k: string]: any }): (string|null);
24793
-
24794
- /**
24795
- * Creates a TypeReference message from a plain object. Also converts values to their respective internal types.
24796
- * @param object Plain object
24797
- * @returns TypeReference
24798
- */
24799
- public static fromObject(object: { [k: string]: any }): google.api.TypeReference;
24800
-
24801
- /**
24802
- * Creates a plain object from a TypeReference message. Also converts values to other types if specified.
24803
- * @param message TypeReference
24804
- * @param [options] Conversion options
24805
- * @returns Plain object
24806
- */
24807
- public static toObject(message: google.api.TypeReference, options?: $protobuf.IConversionOptions): { [k: string]: any };
24808
-
24809
- /**
24810
- * Converts this TypeReference to JSON.
24811
- * @returns JSON object
24812
- */
24813
- public toJSON(): { [k: string]: any };
24814
-
24815
- /**
24816
- * Gets the default type url for TypeReference
24817
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
24818
- * @returns The default type url
24819
- */
24820
- public static getTypeUrl(typeUrlPrefix?: string): string;
24821
- }
24822
-
24823
24439
  /** Properties of a Http. */
24824
24440
  interface IHttp {
24825
24441
 
@@ -25188,9 +24804,6 @@ export namespace google {
25188
24804
 
25189
24805
  /** CommonLanguageSettings destinations */
25190
24806
  destinations?: (google.api.ClientLibraryDestination[]|null);
25191
-
25192
- /** CommonLanguageSettings selectiveGapicGeneration */
25193
- selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
25194
24807
  }
25195
24808
 
25196
24809
  /** Represents a CommonLanguageSettings. */
@@ -25208,9 +24821,6 @@ export namespace google {
25208
24821
  /** CommonLanguageSettings destinations. */
25209
24822
  public destinations: google.api.ClientLibraryDestination[];
25210
24823
 
25211
- /** CommonLanguageSettings selectiveGapicGeneration. */
25212
- public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
25213
-
25214
24824
  /**
25215
24825
  * Creates a new CommonLanguageSettings instance using the specified properties.
25216
24826
  * @param [properties] Properties to set
@@ -25911,9 +25521,6 @@ export namespace google {
25911
25521
 
25912
25522
  /** PythonSettings common */
25913
25523
  common?: (google.api.ICommonLanguageSettings|null);
25914
-
25915
- /** PythonSettings experimentalFeatures */
25916
- experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
25917
25524
  }
25918
25525
 
25919
25526
  /** Represents a PythonSettings. */
@@ -25928,9 +25535,6 @@ export namespace google {
25928
25535
  /** PythonSettings common. */
25929
25536
  public common?: (google.api.ICommonLanguageSettings|null);
25930
25537
 
25931
- /** PythonSettings experimentalFeatures. */
25932
- public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
25933
-
25934
25538
  /**
25935
25539
  * Creates a new PythonSettings instance using the specified properties.
25936
25540
  * @param [properties] Properties to set
@@ -26009,118 +25613,6 @@ export namespace google {
26009
25613
  public static getTypeUrl(typeUrlPrefix?: string): string;
26010
25614
  }
26011
25615
 
26012
- namespace PythonSettings {
26013
-
26014
- /** Properties of an ExperimentalFeatures. */
26015
- interface IExperimentalFeatures {
26016
-
26017
- /** ExperimentalFeatures restAsyncIoEnabled */
26018
- restAsyncIoEnabled?: (boolean|null);
26019
-
26020
- /** ExperimentalFeatures protobufPythonicTypesEnabled */
26021
- protobufPythonicTypesEnabled?: (boolean|null);
26022
-
26023
- /** ExperimentalFeatures unversionedPackageDisabled */
26024
- unversionedPackageDisabled?: (boolean|null);
26025
- }
26026
-
26027
- /** Represents an ExperimentalFeatures. */
26028
- class ExperimentalFeatures implements IExperimentalFeatures {
26029
-
26030
- /**
26031
- * Constructs a new ExperimentalFeatures.
26032
- * @param [properties] Properties to set
26033
- */
26034
- constructor(properties?: google.api.PythonSettings.IExperimentalFeatures);
26035
-
26036
- /** ExperimentalFeatures restAsyncIoEnabled. */
26037
- public restAsyncIoEnabled: boolean;
26038
-
26039
- /** ExperimentalFeatures protobufPythonicTypesEnabled. */
26040
- public protobufPythonicTypesEnabled: boolean;
26041
-
26042
- /** ExperimentalFeatures unversionedPackageDisabled. */
26043
- public unversionedPackageDisabled: boolean;
26044
-
26045
- /**
26046
- * Creates a new ExperimentalFeatures instance using the specified properties.
26047
- * @param [properties] Properties to set
26048
- * @returns ExperimentalFeatures instance
26049
- */
26050
- public static create(properties?: google.api.PythonSettings.IExperimentalFeatures): google.api.PythonSettings.ExperimentalFeatures;
26051
-
26052
- /**
26053
- * Encodes the specified ExperimentalFeatures message. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
26054
- * @param message ExperimentalFeatures message or plain object to encode
26055
- * @param [writer] Writer to encode to
26056
- * @returns Writer
26057
- */
26058
- public static encode(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
26059
-
26060
- /**
26061
- * Encodes the specified ExperimentalFeatures message, length delimited. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
26062
- * @param message ExperimentalFeatures message or plain object to encode
26063
- * @param [writer] Writer to encode to
26064
- * @returns Writer
26065
- */
26066
- public static encodeDelimited(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
26067
-
26068
- /**
26069
- * Decodes an ExperimentalFeatures message from the specified reader or buffer.
26070
- * @param reader Reader or buffer to decode from
26071
- * @param [length] Message length if known beforehand
26072
- * @returns ExperimentalFeatures
26073
- * @throws {Error} If the payload is not a reader or valid buffer
26074
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
26075
- */
26076
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings.ExperimentalFeatures;
26077
-
26078
- /**
26079
- * Decodes an ExperimentalFeatures message from the specified reader or buffer, length delimited.
26080
- * @param reader Reader or buffer to decode from
26081
- * @returns ExperimentalFeatures
26082
- * @throws {Error} If the payload is not a reader or valid buffer
26083
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
26084
- */
26085
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings.ExperimentalFeatures;
26086
-
26087
- /**
26088
- * Verifies an ExperimentalFeatures message.
26089
- * @param message Plain object to verify
26090
- * @returns `null` if valid, otherwise the reason why it is not
26091
- */
26092
- public static verify(message: { [k: string]: any }): (string|null);
26093
-
26094
- /**
26095
- * Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
26096
- * @param object Plain object
26097
- * @returns ExperimentalFeatures
26098
- */
26099
- public static fromObject(object: { [k: string]: any }): google.api.PythonSettings.ExperimentalFeatures;
26100
-
26101
- /**
26102
- * Creates a plain object from an ExperimentalFeatures message. Also converts values to other types if specified.
26103
- * @param message ExperimentalFeatures
26104
- * @param [options] Conversion options
26105
- * @returns Plain object
26106
- */
26107
- public static toObject(message: google.api.PythonSettings.ExperimentalFeatures, options?: $protobuf.IConversionOptions): { [k: string]: any };
26108
-
26109
- /**
26110
- * Converts this ExperimentalFeatures to JSON.
26111
- * @returns JSON object
26112
- */
26113
- public toJSON(): { [k: string]: any };
26114
-
26115
- /**
26116
- * Gets the default type url for ExperimentalFeatures
26117
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
26118
- * @returns The default type url
26119
- */
26120
- public static getTypeUrl(typeUrlPrefix?: string): string;
26121
- }
26122
- }
26123
-
26124
25616
  /** Properties of a NodeSettings. */
26125
25617
  interface INodeSettings {
26126
25618
 
@@ -26447,9 +25939,6 @@ export namespace google {
26447
25939
 
26448
25940
  /** GoSettings common */
26449
25941
  common?: (google.api.ICommonLanguageSettings|null);
26450
-
26451
- /** GoSettings renamedServices */
26452
- renamedServices?: ({ [k: string]: string }|null);
26453
25942
  }
26454
25943
 
26455
25944
  /** Represents a GoSettings. */
@@ -26464,9 +25953,6 @@ export namespace google {
26464
25953
  /** GoSettings common. */
26465
25954
  public common?: (google.api.ICommonLanguageSettings|null);
26466
25955
 
26467
- /** GoSettings renamedServices. */
26468
- public renamedServices: { [k: string]: string };
26469
-
26470
25956
  /**
26471
25957
  * Creates a new GoSettings instance using the specified properties.
26472
25958
  * @param [properties] Properties to set
@@ -26791,109 +26277,6 @@ export namespace google {
26791
26277
  PACKAGE_MANAGER = 20
26792
26278
  }
26793
26279
 
26794
- /** Properties of a SelectiveGapicGeneration. */
26795
- interface ISelectiveGapicGeneration {
26796
-
26797
- /** SelectiveGapicGeneration methods */
26798
- methods?: (string[]|null);
26799
-
26800
- /** SelectiveGapicGeneration generateOmittedAsInternal */
26801
- generateOmittedAsInternal?: (boolean|null);
26802
- }
26803
-
26804
- /** Represents a SelectiveGapicGeneration. */
26805
- class SelectiveGapicGeneration implements ISelectiveGapicGeneration {
26806
-
26807
- /**
26808
- * Constructs a new SelectiveGapicGeneration.
26809
- * @param [properties] Properties to set
26810
- */
26811
- constructor(properties?: google.api.ISelectiveGapicGeneration);
26812
-
26813
- /** SelectiveGapicGeneration methods. */
26814
- public methods: string[];
26815
-
26816
- /** SelectiveGapicGeneration generateOmittedAsInternal. */
26817
- public generateOmittedAsInternal: boolean;
26818
-
26819
- /**
26820
- * Creates a new SelectiveGapicGeneration instance using the specified properties.
26821
- * @param [properties] Properties to set
26822
- * @returns SelectiveGapicGeneration instance
26823
- */
26824
- public static create(properties?: google.api.ISelectiveGapicGeneration): google.api.SelectiveGapicGeneration;
26825
-
26826
- /**
26827
- * Encodes the specified SelectiveGapicGeneration message. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
26828
- * @param message SelectiveGapicGeneration message or plain object to encode
26829
- * @param [writer] Writer to encode to
26830
- * @returns Writer
26831
- */
26832
- public static encode(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
26833
-
26834
- /**
26835
- * Encodes the specified SelectiveGapicGeneration message, length delimited. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
26836
- * @param message SelectiveGapicGeneration message or plain object to encode
26837
- * @param [writer] Writer to encode to
26838
- * @returns Writer
26839
- */
26840
- public static encodeDelimited(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
26841
-
26842
- /**
26843
- * Decodes a SelectiveGapicGeneration message from the specified reader or buffer.
26844
- * @param reader Reader or buffer to decode from
26845
- * @param [length] Message length if known beforehand
26846
- * @returns SelectiveGapicGeneration
26847
- * @throws {Error} If the payload is not a reader or valid buffer
26848
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
26849
- */
26850
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.SelectiveGapicGeneration;
26851
-
26852
- /**
26853
- * Decodes a SelectiveGapicGeneration message from the specified reader or buffer, length delimited.
26854
- * @param reader Reader or buffer to decode from
26855
- * @returns SelectiveGapicGeneration
26856
- * @throws {Error} If the payload is not a reader or valid buffer
26857
- * @throws {$protobuf.util.ProtocolError} If required fields are missing
26858
- */
26859
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.SelectiveGapicGeneration;
26860
-
26861
- /**
26862
- * Verifies a SelectiveGapicGeneration message.
26863
- * @param message Plain object to verify
26864
- * @returns `null` if valid, otherwise the reason why it is not
26865
- */
26866
- public static verify(message: { [k: string]: any }): (string|null);
26867
-
26868
- /**
26869
- * Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
26870
- * @param object Plain object
26871
- * @returns SelectiveGapicGeneration
26872
- */
26873
- public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;
26874
-
26875
- /**
26876
- * Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
26877
- * @param message SelectiveGapicGeneration
26878
- * @param [options] Conversion options
26879
- * @returns Plain object
26880
- */
26881
- public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };
26882
-
26883
- /**
26884
- * Converts this SelectiveGapicGeneration to JSON.
26885
- * @returns JSON object
26886
- */
26887
- public toJSON(): { [k: string]: any };
26888
-
26889
- /**
26890
- * Gets the default type url for SelectiveGapicGeneration
26891
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
26892
- * @returns The default type url
26893
- */
26894
- public static getTypeUrl(typeUrlPrefix?: string): string;
26895
- }
26896
-
26897
26280
  /** LaunchStage enum. */
26898
26281
  enum LaunchStage {
26899
26282
  LAUNCH_STAGE_UNSPECIFIED = 0,