@google-apps/chat 0.16.0 → 0.17.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.
@@ -993,6 +993,7 @@ export namespace google {
993
993
  /** Edition enum. */
994
994
  enum Edition {
995
995
  EDITION_UNKNOWN = 0,
996
+ EDITION_LEGACY = 900,
996
997
  EDITION_PROTO2 = 998,
997
998
  EDITION_PROTO3 = 999,
998
999
  EDITION_2023 = 1000,
@@ -1023,6 +1024,9 @@ export namespace google {
1023
1024
  /** FileDescriptorProto weakDependency */
1024
1025
  weakDependency?: (number[]|null);
1025
1026
 
1027
+ /** FileDescriptorProto optionDependency */
1028
+ optionDependency?: (string[]|null);
1029
+
1026
1030
  /** FileDescriptorProto messageType */
1027
1031
  messageType?: (google.protobuf.IDescriptorProto[]|null);
1028
1032
 
@@ -1072,6 +1076,9 @@ export namespace google {
1072
1076
  /** FileDescriptorProto weakDependency. */
1073
1077
  public weakDependency: number[];
1074
1078
 
1079
+ /** FileDescriptorProto optionDependency. */
1080
+ public optionDependency: string[];
1081
+
1075
1082
  /** FileDescriptorProto messageType. */
1076
1083
  public messageType: google.protobuf.IDescriptorProto[];
1077
1084
 
@@ -1206,6 +1213,9 @@ export namespace google {
1206
1213
 
1207
1214
  /** DescriptorProto reservedName */
1208
1215
  reservedName?: (string[]|null);
1216
+
1217
+ /** DescriptorProto visibility */
1218
+ visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
1209
1219
  }
1210
1220
 
1211
1221
  /** Represents a DescriptorProto. */
@@ -1247,6 +1257,9 @@ export namespace google {
1247
1257
  /** DescriptorProto reservedName. */
1248
1258
  public reservedName: string[];
1249
1259
 
1260
+ /** DescriptorProto visibility. */
1261
+ public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
1262
+
1250
1263
  /**
1251
1264
  * Creates a new DescriptorProto instance using the specified properties.
1252
1265
  * @param [properties] Properties to set
@@ -2094,6 +2107,9 @@ export namespace google {
2094
2107
 
2095
2108
  /** EnumDescriptorProto reservedName */
2096
2109
  reservedName?: (string[]|null);
2110
+
2111
+ /** EnumDescriptorProto visibility */
2112
+ visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
2097
2113
  }
2098
2114
 
2099
2115
  /** Represents an EnumDescriptorProto. */
@@ -2120,6 +2136,9 @@ export namespace google {
2120
2136
  /** EnumDescriptorProto reservedName. */
2121
2137
  public reservedName: string[];
2122
2138
 
2139
+ /** EnumDescriptorProto visibility. */
2140
+ public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
2141
+
2123
2142
  /**
2124
2143
  * Creates a new EnumDescriptorProto instance using the specified properties.
2125
2144
  * @param [properties] Properties to set
@@ -3054,15 +3073,18 @@ export namespace google {
3054
3073
  /** FieldOptions features */
3055
3074
  features?: (google.protobuf.IFeatureSet|null);
3056
3075
 
3076
+ /** FieldOptions featureSupport */
3077
+ featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
3078
+
3057
3079
  /** FieldOptions uninterpretedOption */
3058
3080
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
3059
3081
 
3060
- /** FieldOptions .google.api.resourceReference */
3061
- ".google.api.resourceReference"?: (google.api.IResourceReference|null);
3062
-
3063
3082
  /** FieldOptions .google.api.fieldBehavior */
3064
3083
  ".google.api.fieldBehavior"?: (google.api.FieldBehavior[]|null);
3065
3084
 
3085
+ /** FieldOptions .google.api.resourceReference */
3086
+ ".google.api.resourceReference"?: (google.api.IResourceReference|null);
3087
+
3066
3088
  /** FieldOptions .google.api.fieldInfo */
3067
3089
  ".google.api.fieldInfo"?: (google.api.IFieldInfo|null);
3068
3090
  }
@@ -3112,6 +3134,9 @@ export namespace google {
3112
3134
  /** FieldOptions features. */
3113
3135
  public features?: (google.protobuf.IFeatureSet|null);
3114
3136
 
3137
+ /** FieldOptions featureSupport. */
3138
+ public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
3139
+
3115
3140
  /** FieldOptions uninterpretedOption. */
3116
3141
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
3117
3142
 
@@ -3332,6 +3357,121 @@ export namespace google {
3332
3357
  */
3333
3358
  public static getTypeUrl(typeUrlPrefix?: string): string;
3334
3359
  }
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
+ }
3335
3475
  }
3336
3476
 
3337
3477
  /** Properties of an OneofOptions. */
@@ -3570,6 +3710,9 @@ export namespace google {
3570
3710
  /** EnumValueOptions debugRedact */
3571
3711
  debugRedact?: (boolean|null);
3572
3712
 
3713
+ /** EnumValueOptions featureSupport */
3714
+ featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
3715
+
3573
3716
  /** EnumValueOptions uninterpretedOption */
3574
3717
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
3575
3718
  }
@@ -3592,6 +3735,9 @@ export namespace google {
3592
3735
  /** EnumValueOptions debugRedact. */
3593
3736
  public debugRedact: boolean;
3594
3737
 
3738
+ /** EnumValueOptions featureSupport. */
3739
+ public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
3740
+
3595
3741
  /** EnumValueOptions uninterpretedOption. */
3596
3742
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
3597
3743
 
@@ -4181,6 +4327,12 @@ export namespace google {
4181
4327
 
4182
4328
  /** FeatureSet jsonFormat */
4183
4329
  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);
4184
4336
  }
4185
4337
 
4186
4338
  /** Represents a FeatureSet. */
@@ -4210,6 +4362,12 @@ export namespace google {
4210
4362
  /** FeatureSet jsonFormat. */
4211
4363
  public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
4212
4364
 
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
+
4213
4371
  /**
4214
4372
  * Creates a new FeatureSet instance using the specified properties.
4215
4373
  * @param [properties] Properties to set
@@ -4332,6 +4490,116 @@ export namespace google {
4332
4490
  ALLOW = 1,
4333
4491
  LEGACY_BEST_EFFORT = 2
4334
4492
  }
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
+ }
4335
4603
  }
4336
4604
 
4337
4605
  /** Properties of a FeatureSetDefaults. */
@@ -4451,8 +4719,11 @@ export namespace google {
4451
4719
  /** FeatureSetEditionDefault edition */
4452
4720
  edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
4453
4721
 
4454
- /** FeatureSetEditionDefault features */
4455
- features?: (google.protobuf.IFeatureSet|null);
4722
+ /** FeatureSetEditionDefault overridableFeatures */
4723
+ overridableFeatures?: (google.protobuf.IFeatureSet|null);
4724
+
4725
+ /** FeatureSetEditionDefault fixedFeatures */
4726
+ fixedFeatures?: (google.protobuf.IFeatureSet|null);
4456
4727
  }
4457
4728
 
4458
4729
  /** Represents a FeatureSetEditionDefault. */
@@ -4467,8 +4738,11 @@ export namespace google {
4467
4738
  /** FeatureSetEditionDefault edition. */
4468
4739
  public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
4469
4740
 
4470
- /** FeatureSetEditionDefault features. */
4471
- public features?: (google.protobuf.IFeatureSet|null);
4741
+ /** FeatureSetEditionDefault overridableFeatures. */
4742
+ public overridableFeatures?: (google.protobuf.IFeatureSet|null);
4743
+
4744
+ /** FeatureSetEditionDefault fixedFeatures. */
4745
+ public fixedFeatures?: (google.protobuf.IFeatureSet|null);
4472
4746
 
4473
4747
  /**
4474
4748
  * Creates a new FeatureSetEditionDefault instance using the specified properties.
@@ -5001,6 +5275,13 @@ export namespace google {
5001
5275
  }
5002
5276
  }
5003
5277
 
5278
+ /** SymbolVisibility enum. */
5279
+ enum SymbolVisibility {
5280
+ VISIBILITY_UNSET = 0,
5281
+ VISIBILITY_LOCAL = 1,
5282
+ VISIBILITY_EXPORT = 2
5283
+ }
5284
+
5004
5285
  /** Properties of a Duration. */
5005
5286
  interface IDuration {
5006
5287
 
@@ -10188,6 +10469,12 @@ export namespace google {
10188
10469
 
10189
10470
  /** RichLinkMetadata chatSpaceLinkData */
10190
10471
  chatSpaceLinkData?: (google.chat.v1.IChatSpaceLinkData|null);
10472
+
10473
+ /** RichLinkMetadata meetSpaceLinkData */
10474
+ meetSpaceLinkData?: (google.chat.v1.IMeetSpaceLinkData|null);
10475
+
10476
+ /** RichLinkMetadata calendarEventLinkData */
10477
+ calendarEventLinkData?: (google.chat.v1.ICalendarEventLinkData|null);
10191
10478
  }
10192
10479
 
10193
10480
  /** Represents a RichLinkMetadata. */
@@ -10211,8 +10498,14 @@ export namespace google {
10211
10498
  /** RichLinkMetadata chatSpaceLinkData. */
10212
10499
  public chatSpaceLinkData?: (google.chat.v1.IChatSpaceLinkData|null);
10213
10500
 
10501
+ /** RichLinkMetadata meetSpaceLinkData. */
10502
+ public meetSpaceLinkData?: (google.chat.v1.IMeetSpaceLinkData|null);
10503
+
10504
+ /** RichLinkMetadata calendarEventLinkData. */
10505
+ public calendarEventLinkData?: (google.chat.v1.ICalendarEventLinkData|null);
10506
+
10214
10507
  /** RichLinkMetadata data. */
10215
- public data?: ("driveLinkData"|"chatSpaceLinkData");
10508
+ public data?: ("driveLinkData"|"chatSpaceLinkData"|"meetSpaceLinkData"|"calendarEventLinkData");
10216
10509
 
10217
10510
  /**
10218
10511
  * Creates a new RichLinkMetadata instance using the specified properties.
@@ -10298,7 +10591,9 @@ export namespace google {
10298
10591
  enum RichLinkType {
10299
10592
  RICH_LINK_TYPE_UNSPECIFIED = 0,
10300
10593
  DRIVE_FILE = 1,
10301
- CHAT_SPACE = 2
10594
+ CHAT_SPACE = 2,
10595
+ MEET_SPACE = 4,
10596
+ CALENDAR_EVENT = 5
10302
10597
  }
10303
10598
  }
10304
10599
 
@@ -10541,70 +10836,300 @@ export namespace google {
10541
10836
  public static create(properties?: google.chat.v1.IChatSpaceLinkData): google.chat.v1.ChatSpaceLinkData;
10542
10837
 
10543
10838
  /**
10544
- * Encodes the specified ChatSpaceLinkData message. Does not implicitly {@link google.chat.v1.ChatSpaceLinkData.verify|verify} messages.
10545
- * @param message ChatSpaceLinkData message or plain object to encode
10839
+ * Encodes the specified ChatSpaceLinkData message. Does not implicitly {@link google.chat.v1.ChatSpaceLinkData.verify|verify} messages.
10840
+ * @param message ChatSpaceLinkData message or plain object to encode
10841
+ * @param [writer] Writer to encode to
10842
+ * @returns Writer
10843
+ */
10844
+ public static encode(message: google.chat.v1.IChatSpaceLinkData, writer?: $protobuf.Writer): $protobuf.Writer;
10845
+
10846
+ /**
10847
+ * Encodes the specified ChatSpaceLinkData message, length delimited. Does not implicitly {@link google.chat.v1.ChatSpaceLinkData.verify|verify} messages.
10848
+ * @param message ChatSpaceLinkData message or plain object to encode
10849
+ * @param [writer] Writer to encode to
10850
+ * @returns Writer
10851
+ */
10852
+ public static encodeDelimited(message: google.chat.v1.IChatSpaceLinkData, writer?: $protobuf.Writer): $protobuf.Writer;
10853
+
10854
+ /**
10855
+ * Decodes a ChatSpaceLinkData message from the specified reader or buffer.
10856
+ * @param reader Reader or buffer to decode from
10857
+ * @param [length] Message length if known beforehand
10858
+ * @returns ChatSpaceLinkData
10859
+ * @throws {Error} If the payload is not a reader or valid buffer
10860
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
10861
+ */
10862
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.ChatSpaceLinkData;
10863
+
10864
+ /**
10865
+ * Decodes a ChatSpaceLinkData message from the specified reader or buffer, length delimited.
10866
+ * @param reader Reader or buffer to decode from
10867
+ * @returns ChatSpaceLinkData
10868
+ * @throws {Error} If the payload is not a reader or valid buffer
10869
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
10870
+ */
10871
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.ChatSpaceLinkData;
10872
+
10873
+ /**
10874
+ * Verifies a ChatSpaceLinkData message.
10875
+ * @param message Plain object to verify
10876
+ * @returns `null` if valid, otherwise the reason why it is not
10877
+ */
10878
+ public static verify(message: { [k: string]: any }): (string|null);
10879
+
10880
+ /**
10881
+ * Creates a ChatSpaceLinkData message from a plain object. Also converts values to their respective internal types.
10882
+ * @param object Plain object
10883
+ * @returns ChatSpaceLinkData
10884
+ */
10885
+ public static fromObject(object: { [k: string]: any }): google.chat.v1.ChatSpaceLinkData;
10886
+
10887
+ /**
10888
+ * Creates a plain object from a ChatSpaceLinkData message. Also converts values to other types if specified.
10889
+ * @param message ChatSpaceLinkData
10890
+ * @param [options] Conversion options
10891
+ * @returns Plain object
10892
+ */
10893
+ public static toObject(message: google.chat.v1.ChatSpaceLinkData, options?: $protobuf.IConversionOptions): { [k: string]: any };
10894
+
10895
+ /**
10896
+ * Converts this ChatSpaceLinkData to JSON.
10897
+ * @returns JSON object
10898
+ */
10899
+ public toJSON(): { [k: string]: any };
10900
+
10901
+ /**
10902
+ * Gets the default type url for ChatSpaceLinkData
10903
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
10904
+ * @returns The default type url
10905
+ */
10906
+ public static getTypeUrl(typeUrlPrefix?: string): string;
10907
+ }
10908
+
10909
+ /** Properties of a MeetSpaceLinkData. */
10910
+ interface IMeetSpaceLinkData {
10911
+
10912
+ /** MeetSpaceLinkData meetingCode */
10913
+ meetingCode?: (string|null);
10914
+
10915
+ /** MeetSpaceLinkData type */
10916
+ type?: (google.chat.v1.MeetSpaceLinkData.Type|keyof typeof google.chat.v1.MeetSpaceLinkData.Type|null);
10917
+
10918
+ /** MeetSpaceLinkData huddleStatus */
10919
+ huddleStatus?: (google.chat.v1.MeetSpaceLinkData.HuddleStatus|keyof typeof google.chat.v1.MeetSpaceLinkData.HuddleStatus|null);
10920
+ }
10921
+
10922
+ /** Represents a MeetSpaceLinkData. */
10923
+ class MeetSpaceLinkData implements IMeetSpaceLinkData {
10924
+
10925
+ /**
10926
+ * Constructs a new MeetSpaceLinkData.
10927
+ * @param [properties] Properties to set
10928
+ */
10929
+ constructor(properties?: google.chat.v1.IMeetSpaceLinkData);
10930
+
10931
+ /** MeetSpaceLinkData meetingCode. */
10932
+ public meetingCode: string;
10933
+
10934
+ /** MeetSpaceLinkData type. */
10935
+ public type: (google.chat.v1.MeetSpaceLinkData.Type|keyof typeof google.chat.v1.MeetSpaceLinkData.Type);
10936
+
10937
+ /** MeetSpaceLinkData huddleStatus. */
10938
+ public huddleStatus: (google.chat.v1.MeetSpaceLinkData.HuddleStatus|keyof typeof google.chat.v1.MeetSpaceLinkData.HuddleStatus);
10939
+
10940
+ /**
10941
+ * Creates a new MeetSpaceLinkData instance using the specified properties.
10942
+ * @param [properties] Properties to set
10943
+ * @returns MeetSpaceLinkData instance
10944
+ */
10945
+ public static create(properties?: google.chat.v1.IMeetSpaceLinkData): google.chat.v1.MeetSpaceLinkData;
10946
+
10947
+ /**
10948
+ * Encodes the specified MeetSpaceLinkData message. Does not implicitly {@link google.chat.v1.MeetSpaceLinkData.verify|verify} messages.
10949
+ * @param message MeetSpaceLinkData message or plain object to encode
10950
+ * @param [writer] Writer to encode to
10951
+ * @returns Writer
10952
+ */
10953
+ public static encode(message: google.chat.v1.IMeetSpaceLinkData, writer?: $protobuf.Writer): $protobuf.Writer;
10954
+
10955
+ /**
10956
+ * Encodes the specified MeetSpaceLinkData message, length delimited. Does not implicitly {@link google.chat.v1.MeetSpaceLinkData.verify|verify} messages.
10957
+ * @param message MeetSpaceLinkData message or plain object to encode
10958
+ * @param [writer] Writer to encode to
10959
+ * @returns Writer
10960
+ */
10961
+ public static encodeDelimited(message: google.chat.v1.IMeetSpaceLinkData, writer?: $protobuf.Writer): $protobuf.Writer;
10962
+
10963
+ /**
10964
+ * Decodes a MeetSpaceLinkData message from the specified reader or buffer.
10965
+ * @param reader Reader or buffer to decode from
10966
+ * @param [length] Message length if known beforehand
10967
+ * @returns MeetSpaceLinkData
10968
+ * @throws {Error} If the payload is not a reader or valid buffer
10969
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
10970
+ */
10971
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.MeetSpaceLinkData;
10972
+
10973
+ /**
10974
+ * Decodes a MeetSpaceLinkData message from the specified reader or buffer, length delimited.
10975
+ * @param reader Reader or buffer to decode from
10976
+ * @returns MeetSpaceLinkData
10977
+ * @throws {Error} If the payload is not a reader or valid buffer
10978
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
10979
+ */
10980
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.MeetSpaceLinkData;
10981
+
10982
+ /**
10983
+ * Verifies a MeetSpaceLinkData message.
10984
+ * @param message Plain object to verify
10985
+ * @returns `null` if valid, otherwise the reason why it is not
10986
+ */
10987
+ public static verify(message: { [k: string]: any }): (string|null);
10988
+
10989
+ /**
10990
+ * Creates a MeetSpaceLinkData message from a plain object. Also converts values to their respective internal types.
10991
+ * @param object Plain object
10992
+ * @returns MeetSpaceLinkData
10993
+ */
10994
+ public static fromObject(object: { [k: string]: any }): google.chat.v1.MeetSpaceLinkData;
10995
+
10996
+ /**
10997
+ * Creates a plain object from a MeetSpaceLinkData message. Also converts values to other types if specified.
10998
+ * @param message MeetSpaceLinkData
10999
+ * @param [options] Conversion options
11000
+ * @returns Plain object
11001
+ */
11002
+ public static toObject(message: google.chat.v1.MeetSpaceLinkData, options?: $protobuf.IConversionOptions): { [k: string]: any };
11003
+
11004
+ /**
11005
+ * Converts this MeetSpaceLinkData to JSON.
11006
+ * @returns JSON object
11007
+ */
11008
+ public toJSON(): { [k: string]: any };
11009
+
11010
+ /**
11011
+ * Gets the default type url for MeetSpaceLinkData
11012
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
11013
+ * @returns The default type url
11014
+ */
11015
+ public static getTypeUrl(typeUrlPrefix?: string): string;
11016
+ }
11017
+
11018
+ namespace MeetSpaceLinkData {
11019
+
11020
+ /** Type enum. */
11021
+ enum Type {
11022
+ TYPE_UNSPECIFIED = 0,
11023
+ MEETING = 1,
11024
+ HUDDLE = 2
11025
+ }
11026
+
11027
+ /** HuddleStatus enum. */
11028
+ enum HuddleStatus {
11029
+ HUDDLE_STATUS_UNSPECIFIED = 0,
11030
+ STARTED = 1,
11031
+ ENDED = 2,
11032
+ MISSED = 3
11033
+ }
11034
+ }
11035
+
11036
+ /** Properties of a CalendarEventLinkData. */
11037
+ interface ICalendarEventLinkData {
11038
+
11039
+ /** CalendarEventLinkData calendarId */
11040
+ calendarId?: (string|null);
11041
+
11042
+ /** CalendarEventLinkData eventId */
11043
+ eventId?: (string|null);
11044
+ }
11045
+
11046
+ /** Represents a CalendarEventLinkData. */
11047
+ class CalendarEventLinkData implements ICalendarEventLinkData {
11048
+
11049
+ /**
11050
+ * Constructs a new CalendarEventLinkData.
11051
+ * @param [properties] Properties to set
11052
+ */
11053
+ constructor(properties?: google.chat.v1.ICalendarEventLinkData);
11054
+
11055
+ /** CalendarEventLinkData calendarId. */
11056
+ public calendarId: string;
11057
+
11058
+ /** CalendarEventLinkData eventId. */
11059
+ public eventId: string;
11060
+
11061
+ /**
11062
+ * Creates a new CalendarEventLinkData instance using the specified properties.
11063
+ * @param [properties] Properties to set
11064
+ * @returns CalendarEventLinkData instance
11065
+ */
11066
+ public static create(properties?: google.chat.v1.ICalendarEventLinkData): google.chat.v1.CalendarEventLinkData;
11067
+
11068
+ /**
11069
+ * Encodes the specified CalendarEventLinkData message. Does not implicitly {@link google.chat.v1.CalendarEventLinkData.verify|verify} messages.
11070
+ * @param message CalendarEventLinkData message or plain object to encode
10546
11071
  * @param [writer] Writer to encode to
10547
11072
  * @returns Writer
10548
11073
  */
10549
- public static encode(message: google.chat.v1.IChatSpaceLinkData, writer?: $protobuf.Writer): $protobuf.Writer;
11074
+ public static encode(message: google.chat.v1.ICalendarEventLinkData, writer?: $protobuf.Writer): $protobuf.Writer;
10550
11075
 
10551
11076
  /**
10552
- * Encodes the specified ChatSpaceLinkData message, length delimited. Does not implicitly {@link google.chat.v1.ChatSpaceLinkData.verify|verify} messages.
10553
- * @param message ChatSpaceLinkData message or plain object to encode
11077
+ * Encodes the specified CalendarEventLinkData message, length delimited. Does not implicitly {@link google.chat.v1.CalendarEventLinkData.verify|verify} messages.
11078
+ * @param message CalendarEventLinkData message or plain object to encode
10554
11079
  * @param [writer] Writer to encode to
10555
11080
  * @returns Writer
10556
11081
  */
10557
- public static encodeDelimited(message: google.chat.v1.IChatSpaceLinkData, writer?: $protobuf.Writer): $protobuf.Writer;
11082
+ public static encodeDelimited(message: google.chat.v1.ICalendarEventLinkData, writer?: $protobuf.Writer): $protobuf.Writer;
10558
11083
 
10559
11084
  /**
10560
- * Decodes a ChatSpaceLinkData message from the specified reader or buffer.
11085
+ * Decodes a CalendarEventLinkData message from the specified reader or buffer.
10561
11086
  * @param reader Reader or buffer to decode from
10562
11087
  * @param [length] Message length if known beforehand
10563
- * @returns ChatSpaceLinkData
11088
+ * @returns CalendarEventLinkData
10564
11089
  * @throws {Error} If the payload is not a reader or valid buffer
10565
11090
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
10566
11091
  */
10567
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.ChatSpaceLinkData;
11092
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.CalendarEventLinkData;
10568
11093
 
10569
11094
  /**
10570
- * Decodes a ChatSpaceLinkData message from the specified reader or buffer, length delimited.
11095
+ * Decodes a CalendarEventLinkData message from the specified reader or buffer, length delimited.
10571
11096
  * @param reader Reader or buffer to decode from
10572
- * @returns ChatSpaceLinkData
11097
+ * @returns CalendarEventLinkData
10573
11098
  * @throws {Error} If the payload is not a reader or valid buffer
10574
11099
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
10575
11100
  */
10576
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.ChatSpaceLinkData;
11101
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.CalendarEventLinkData;
10577
11102
 
10578
11103
  /**
10579
- * Verifies a ChatSpaceLinkData message.
11104
+ * Verifies a CalendarEventLinkData message.
10580
11105
  * @param message Plain object to verify
10581
11106
  * @returns `null` if valid, otherwise the reason why it is not
10582
11107
  */
10583
11108
  public static verify(message: { [k: string]: any }): (string|null);
10584
11109
 
10585
11110
  /**
10586
- * Creates a ChatSpaceLinkData message from a plain object. Also converts values to their respective internal types.
11111
+ * Creates a CalendarEventLinkData message from a plain object. Also converts values to their respective internal types.
10587
11112
  * @param object Plain object
10588
- * @returns ChatSpaceLinkData
11113
+ * @returns CalendarEventLinkData
10589
11114
  */
10590
- public static fromObject(object: { [k: string]: any }): google.chat.v1.ChatSpaceLinkData;
11115
+ public static fromObject(object: { [k: string]: any }): google.chat.v1.CalendarEventLinkData;
10591
11116
 
10592
11117
  /**
10593
- * Creates a plain object from a ChatSpaceLinkData message. Also converts values to other types if specified.
10594
- * @param message ChatSpaceLinkData
11118
+ * Creates a plain object from a CalendarEventLinkData message. Also converts values to other types if specified.
11119
+ * @param message CalendarEventLinkData
10595
11120
  * @param [options] Conversion options
10596
11121
  * @returns Plain object
10597
11122
  */
10598
- public static toObject(message: google.chat.v1.ChatSpaceLinkData, options?: $protobuf.IConversionOptions): { [k: string]: any };
11123
+ public static toObject(message: google.chat.v1.CalendarEventLinkData, options?: $protobuf.IConversionOptions): { [k: string]: any };
10599
11124
 
10600
11125
  /**
10601
- * Converts this ChatSpaceLinkData to JSON.
11126
+ * Converts this CalendarEventLinkData to JSON.
10602
11127
  * @returns JSON object
10603
11128
  */
10604
11129
  public toJSON(): { [k: string]: any };
10605
11130
 
10606
11131
  /**
10607
- * Gets the default type url for ChatSpaceLinkData
11132
+ * Gets the default type url for CalendarEventLinkData
10608
11133
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
10609
11134
  * @returns The default type url
10610
11135
  */
@@ -23812,6 +24337,19 @@ export namespace google {
23812
24337
  /** Namespace api. */
23813
24338
  namespace api {
23814
24339
 
24340
+ /** FieldBehavior enum. */
24341
+ enum FieldBehavior {
24342
+ FIELD_BEHAVIOR_UNSPECIFIED = 0,
24343
+ OPTIONAL = 1,
24344
+ REQUIRED = 2,
24345
+ OUTPUT_ONLY = 3,
24346
+ INPUT_ONLY = 4,
24347
+ IMMUTABLE = 5,
24348
+ UNORDERED_LIST = 6,
24349
+ NON_EMPTY_DEFAULT = 7,
24350
+ IDENTIFIER = 8
24351
+ }
24352
+
23815
24353
  /** Properties of a ResourceDescriptor. */
23816
24354
  interface IResourceDescriptor {
23817
24355
 
@@ -24064,24 +24602,14 @@ export namespace google {
24064
24602
  public static getTypeUrl(typeUrlPrefix?: string): string;
24065
24603
  }
24066
24604
 
24067
- /** FieldBehavior enum. */
24068
- enum FieldBehavior {
24069
- FIELD_BEHAVIOR_UNSPECIFIED = 0,
24070
- OPTIONAL = 1,
24071
- REQUIRED = 2,
24072
- OUTPUT_ONLY = 3,
24073
- INPUT_ONLY = 4,
24074
- IMMUTABLE = 5,
24075
- UNORDERED_LIST = 6,
24076
- NON_EMPTY_DEFAULT = 7,
24077
- IDENTIFIER = 8
24078
- }
24079
-
24080
24605
  /** Properties of a FieldInfo. */
24081
24606
  interface IFieldInfo {
24082
24607
 
24083
24608
  /** FieldInfo format */
24084
24609
  format?: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format|null);
24610
+
24611
+ /** FieldInfo referencedTypes */
24612
+ referencedTypes?: (google.api.ITypeReference[]|null);
24085
24613
  }
24086
24614
 
24087
24615
  /** Represents a FieldInfo. */
@@ -24096,6 +24624,9 @@ export namespace google {
24096
24624
  /** FieldInfo format. */
24097
24625
  public format: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format);
24098
24626
 
24627
+ /** FieldInfo referencedTypes. */
24628
+ public referencedTypes: google.api.ITypeReference[];
24629
+
24099
24630
  /**
24100
24631
  * Creates a new FieldInfo instance using the specified properties.
24101
24632
  * @param [properties] Properties to set
@@ -24186,6 +24717,103 @@ export namespace google {
24186
24717
  }
24187
24718
  }
24188
24719
 
24720
+ /** Properties of a TypeReference. */
24721
+ interface ITypeReference {
24722
+
24723
+ /** TypeReference typeName */
24724
+ typeName?: (string|null);
24725
+ }
24726
+
24727
+ /** Represents a TypeReference. */
24728
+ class TypeReference implements ITypeReference {
24729
+
24730
+ /**
24731
+ * Constructs a new TypeReference.
24732
+ * @param [properties] Properties to set
24733
+ */
24734
+ constructor(properties?: google.api.ITypeReference);
24735
+
24736
+ /** TypeReference typeName. */
24737
+ public typeName: string;
24738
+
24739
+ /**
24740
+ * Creates a new TypeReference instance using the specified properties.
24741
+ * @param [properties] Properties to set
24742
+ * @returns TypeReference instance
24743
+ */
24744
+ public static create(properties?: google.api.ITypeReference): google.api.TypeReference;
24745
+
24746
+ /**
24747
+ * Encodes the specified TypeReference message. Does not implicitly {@link google.api.TypeReference.verify|verify} messages.
24748
+ * @param message TypeReference message or plain object to encode
24749
+ * @param [writer] Writer to encode to
24750
+ * @returns Writer
24751
+ */
24752
+ public static encode(message: google.api.ITypeReference, writer?: $protobuf.Writer): $protobuf.Writer;
24753
+
24754
+ /**
24755
+ * Encodes the specified TypeReference message, length delimited. Does not implicitly {@link google.api.TypeReference.verify|verify} messages.
24756
+ * @param message TypeReference message or plain object to encode
24757
+ * @param [writer] Writer to encode to
24758
+ * @returns Writer
24759
+ */
24760
+ public static encodeDelimited(message: google.api.ITypeReference, writer?: $protobuf.Writer): $protobuf.Writer;
24761
+
24762
+ /**
24763
+ * Decodes a TypeReference message from the specified reader or buffer.
24764
+ * @param reader Reader or buffer to decode from
24765
+ * @param [length] Message length if known beforehand
24766
+ * @returns TypeReference
24767
+ * @throws {Error} If the payload is not a reader or valid buffer
24768
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
24769
+ */
24770
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.TypeReference;
24771
+
24772
+ /**
24773
+ * Decodes a TypeReference message from the specified reader or buffer, length delimited.
24774
+ * @param reader Reader or buffer to decode from
24775
+ * @returns TypeReference
24776
+ * @throws {Error} If the payload is not a reader or valid buffer
24777
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
24778
+ */
24779
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.TypeReference;
24780
+
24781
+ /**
24782
+ * Verifies a TypeReference message.
24783
+ * @param message Plain object to verify
24784
+ * @returns `null` if valid, otherwise the reason why it is not
24785
+ */
24786
+ public static verify(message: { [k: string]: any }): (string|null);
24787
+
24788
+ /**
24789
+ * Creates a TypeReference message from a plain object. Also converts values to their respective internal types.
24790
+ * @param object Plain object
24791
+ * @returns TypeReference
24792
+ */
24793
+ public static fromObject(object: { [k: string]: any }): google.api.TypeReference;
24794
+
24795
+ /**
24796
+ * Creates a plain object from a TypeReference message. Also converts values to other types if specified.
24797
+ * @param message TypeReference
24798
+ * @param [options] Conversion options
24799
+ * @returns Plain object
24800
+ */
24801
+ public static toObject(message: google.api.TypeReference, options?: $protobuf.IConversionOptions): { [k: string]: any };
24802
+
24803
+ /**
24804
+ * Converts this TypeReference to JSON.
24805
+ * @returns JSON object
24806
+ */
24807
+ public toJSON(): { [k: string]: any };
24808
+
24809
+ /**
24810
+ * Gets the default type url for TypeReference
24811
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
24812
+ * @returns The default type url
24813
+ */
24814
+ public static getTypeUrl(typeUrlPrefix?: string): string;
24815
+ }
24816
+
24189
24817
  /** Properties of a Http. */
24190
24818
  interface IHttp {
24191
24819
 
@@ -24554,6 +25182,9 @@ export namespace google {
24554
25182
 
24555
25183
  /** CommonLanguageSettings destinations */
24556
25184
  destinations?: (google.api.ClientLibraryDestination[]|null);
25185
+
25186
+ /** CommonLanguageSettings selectiveGapicGeneration */
25187
+ selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
24557
25188
  }
24558
25189
 
24559
25190
  /** Represents a CommonLanguageSettings. */
@@ -24571,6 +25202,9 @@ export namespace google {
24571
25202
  /** CommonLanguageSettings destinations. */
24572
25203
  public destinations: google.api.ClientLibraryDestination[];
24573
25204
 
25205
+ /** CommonLanguageSettings selectiveGapicGeneration. */
25206
+ public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
25207
+
24574
25208
  /**
24575
25209
  * Creates a new CommonLanguageSettings instance using the specified properties.
24576
25210
  * @param [properties] Properties to set
@@ -25271,6 +25905,9 @@ export namespace google {
25271
25905
 
25272
25906
  /** PythonSettings common */
25273
25907
  common?: (google.api.ICommonLanguageSettings|null);
25908
+
25909
+ /** PythonSettings experimentalFeatures */
25910
+ experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
25274
25911
  }
25275
25912
 
25276
25913
  /** Represents a PythonSettings. */
@@ -25285,6 +25922,9 @@ export namespace google {
25285
25922
  /** PythonSettings common. */
25286
25923
  public common?: (google.api.ICommonLanguageSettings|null);
25287
25924
 
25925
+ /** PythonSettings experimentalFeatures. */
25926
+ public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
25927
+
25288
25928
  /**
25289
25929
  * Creates a new PythonSettings instance using the specified properties.
25290
25930
  * @param [properties] Properties to set
@@ -25363,6 +26003,118 @@ export namespace google {
25363
26003
  public static getTypeUrl(typeUrlPrefix?: string): string;
25364
26004
  }
25365
26005
 
26006
+ namespace PythonSettings {
26007
+
26008
+ /** Properties of an ExperimentalFeatures. */
26009
+ interface IExperimentalFeatures {
26010
+
26011
+ /** ExperimentalFeatures restAsyncIoEnabled */
26012
+ restAsyncIoEnabled?: (boolean|null);
26013
+
26014
+ /** ExperimentalFeatures protobufPythonicTypesEnabled */
26015
+ protobufPythonicTypesEnabled?: (boolean|null);
26016
+
26017
+ /** ExperimentalFeatures unversionedPackageDisabled */
26018
+ unversionedPackageDisabled?: (boolean|null);
26019
+ }
26020
+
26021
+ /** Represents an ExperimentalFeatures. */
26022
+ class ExperimentalFeatures implements IExperimentalFeatures {
26023
+
26024
+ /**
26025
+ * Constructs a new ExperimentalFeatures.
26026
+ * @param [properties] Properties to set
26027
+ */
26028
+ constructor(properties?: google.api.PythonSettings.IExperimentalFeatures);
26029
+
26030
+ /** ExperimentalFeatures restAsyncIoEnabled. */
26031
+ public restAsyncIoEnabled: boolean;
26032
+
26033
+ /** ExperimentalFeatures protobufPythonicTypesEnabled. */
26034
+ public protobufPythonicTypesEnabled: boolean;
26035
+
26036
+ /** ExperimentalFeatures unversionedPackageDisabled. */
26037
+ public unversionedPackageDisabled: boolean;
26038
+
26039
+ /**
26040
+ * Creates a new ExperimentalFeatures instance using the specified properties.
26041
+ * @param [properties] Properties to set
26042
+ * @returns ExperimentalFeatures instance
26043
+ */
26044
+ public static create(properties?: google.api.PythonSettings.IExperimentalFeatures): google.api.PythonSettings.ExperimentalFeatures;
26045
+
26046
+ /**
26047
+ * Encodes the specified ExperimentalFeatures message. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
26048
+ * @param message ExperimentalFeatures message or plain object to encode
26049
+ * @param [writer] Writer to encode to
26050
+ * @returns Writer
26051
+ */
26052
+ public static encode(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
26053
+
26054
+ /**
26055
+ * Encodes the specified ExperimentalFeatures message, length delimited. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
26056
+ * @param message ExperimentalFeatures message or plain object to encode
26057
+ * @param [writer] Writer to encode to
26058
+ * @returns Writer
26059
+ */
26060
+ public static encodeDelimited(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
26061
+
26062
+ /**
26063
+ * Decodes an ExperimentalFeatures message from the specified reader or buffer.
26064
+ * @param reader Reader or buffer to decode from
26065
+ * @param [length] Message length if known beforehand
26066
+ * @returns ExperimentalFeatures
26067
+ * @throws {Error} If the payload is not a reader or valid buffer
26068
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26069
+ */
26070
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings.ExperimentalFeatures;
26071
+
26072
+ /**
26073
+ * Decodes an ExperimentalFeatures message from the specified reader or buffer, length delimited.
26074
+ * @param reader Reader or buffer to decode from
26075
+ * @returns ExperimentalFeatures
26076
+ * @throws {Error} If the payload is not a reader or valid buffer
26077
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26078
+ */
26079
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings.ExperimentalFeatures;
26080
+
26081
+ /**
26082
+ * Verifies an ExperimentalFeatures message.
26083
+ * @param message Plain object to verify
26084
+ * @returns `null` if valid, otherwise the reason why it is not
26085
+ */
26086
+ public static verify(message: { [k: string]: any }): (string|null);
26087
+
26088
+ /**
26089
+ * Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
26090
+ * @param object Plain object
26091
+ * @returns ExperimentalFeatures
26092
+ */
26093
+ public static fromObject(object: { [k: string]: any }): google.api.PythonSettings.ExperimentalFeatures;
26094
+
26095
+ /**
26096
+ * Creates a plain object from an ExperimentalFeatures message. Also converts values to other types if specified.
26097
+ * @param message ExperimentalFeatures
26098
+ * @param [options] Conversion options
26099
+ * @returns Plain object
26100
+ */
26101
+ public static toObject(message: google.api.PythonSettings.ExperimentalFeatures, options?: $protobuf.IConversionOptions): { [k: string]: any };
26102
+
26103
+ /**
26104
+ * Converts this ExperimentalFeatures to JSON.
26105
+ * @returns JSON object
26106
+ */
26107
+ public toJSON(): { [k: string]: any };
26108
+
26109
+ /**
26110
+ * Gets the default type url for ExperimentalFeatures
26111
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
26112
+ * @returns The default type url
26113
+ */
26114
+ public static getTypeUrl(typeUrlPrefix?: string): string;
26115
+ }
26116
+ }
26117
+
25366
26118
  /** Properties of a NodeSettings. */
25367
26119
  interface INodeSettings {
25368
26120
 
@@ -25689,6 +26441,9 @@ export namespace google {
25689
26441
 
25690
26442
  /** GoSettings common */
25691
26443
  common?: (google.api.ICommonLanguageSettings|null);
26444
+
26445
+ /** GoSettings renamedServices */
26446
+ renamedServices?: ({ [k: string]: string }|null);
25692
26447
  }
25693
26448
 
25694
26449
  /** Represents a GoSettings. */
@@ -25703,6 +26458,9 @@ export namespace google {
25703
26458
  /** GoSettings common. */
25704
26459
  public common?: (google.api.ICommonLanguageSettings|null);
25705
26460
 
26461
+ /** GoSettings renamedServices. */
26462
+ public renamedServices: { [k: string]: string };
26463
+
25706
26464
  /**
25707
26465
  * Creates a new GoSettings instance using the specified properties.
25708
26466
  * @param [properties] Properties to set
@@ -26027,6 +26785,109 @@ export namespace google {
26027
26785
  PACKAGE_MANAGER = 20
26028
26786
  }
26029
26787
 
26788
+ /** Properties of a SelectiveGapicGeneration. */
26789
+ interface ISelectiveGapicGeneration {
26790
+
26791
+ /** SelectiveGapicGeneration methods */
26792
+ methods?: (string[]|null);
26793
+
26794
+ /** SelectiveGapicGeneration generateOmittedAsInternal */
26795
+ generateOmittedAsInternal?: (boolean|null);
26796
+ }
26797
+
26798
+ /** Represents a SelectiveGapicGeneration. */
26799
+ class SelectiveGapicGeneration implements ISelectiveGapicGeneration {
26800
+
26801
+ /**
26802
+ * Constructs a new SelectiveGapicGeneration.
26803
+ * @param [properties] Properties to set
26804
+ */
26805
+ constructor(properties?: google.api.ISelectiveGapicGeneration);
26806
+
26807
+ /** SelectiveGapicGeneration methods. */
26808
+ public methods: string[];
26809
+
26810
+ /** SelectiveGapicGeneration generateOmittedAsInternal. */
26811
+ public generateOmittedAsInternal: boolean;
26812
+
26813
+ /**
26814
+ * Creates a new SelectiveGapicGeneration instance using the specified properties.
26815
+ * @param [properties] Properties to set
26816
+ * @returns SelectiveGapicGeneration instance
26817
+ */
26818
+ public static create(properties?: google.api.ISelectiveGapicGeneration): google.api.SelectiveGapicGeneration;
26819
+
26820
+ /**
26821
+ * Encodes the specified SelectiveGapicGeneration message. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
26822
+ * @param message SelectiveGapicGeneration message or plain object to encode
26823
+ * @param [writer] Writer to encode to
26824
+ * @returns Writer
26825
+ */
26826
+ public static encode(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
26827
+
26828
+ /**
26829
+ * Encodes the specified SelectiveGapicGeneration message, length delimited. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
26830
+ * @param message SelectiveGapicGeneration message or plain object to encode
26831
+ * @param [writer] Writer to encode to
26832
+ * @returns Writer
26833
+ */
26834
+ public static encodeDelimited(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
26835
+
26836
+ /**
26837
+ * Decodes a SelectiveGapicGeneration message from the specified reader or buffer.
26838
+ * @param reader Reader or buffer to decode from
26839
+ * @param [length] Message length if known beforehand
26840
+ * @returns SelectiveGapicGeneration
26841
+ * @throws {Error} If the payload is not a reader or valid buffer
26842
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26843
+ */
26844
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.SelectiveGapicGeneration;
26845
+
26846
+ /**
26847
+ * Decodes a SelectiveGapicGeneration message from the specified reader or buffer, length delimited.
26848
+ * @param reader Reader or buffer to decode from
26849
+ * @returns SelectiveGapicGeneration
26850
+ * @throws {Error} If the payload is not a reader or valid buffer
26851
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26852
+ */
26853
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.SelectiveGapicGeneration;
26854
+
26855
+ /**
26856
+ * Verifies a SelectiveGapicGeneration message.
26857
+ * @param message Plain object to verify
26858
+ * @returns `null` if valid, otherwise the reason why it is not
26859
+ */
26860
+ public static verify(message: { [k: string]: any }): (string|null);
26861
+
26862
+ /**
26863
+ * Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
26864
+ * @param object Plain object
26865
+ * @returns SelectiveGapicGeneration
26866
+ */
26867
+ public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;
26868
+
26869
+ /**
26870
+ * Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
26871
+ * @param message SelectiveGapicGeneration
26872
+ * @param [options] Conversion options
26873
+ * @returns Plain object
26874
+ */
26875
+ public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };
26876
+
26877
+ /**
26878
+ * Converts this SelectiveGapicGeneration to JSON.
26879
+ * @returns JSON object
26880
+ */
26881
+ public toJSON(): { [k: string]: any };
26882
+
26883
+ /**
26884
+ * Gets the default type url for SelectiveGapicGeneration
26885
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
26886
+ * @returns The default type url
26887
+ */
26888
+ public static getTypeUrl(typeUrlPrefix?: string): string;
26889
+ }
26890
+
26030
26891
  /** LaunchStage enum. */
26031
26892
  enum LaunchStage {
26032
26893
  LAUNCH_STAGE_UNSPECIFIED = 0,