@google-apps/chat 0.16.0 → 0.18.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.
- package/build/protos/google/chat/v1/annotation.proto +80 -5
- package/build/protos/google/chat/v1/chat_service.proto +344 -57
- package/build/protos/google/chat/v1/deletion_metadata.proto +13 -7
- package/build/protos/google/chat/v1/membership.proto +7 -5
- package/build/protos/google/chat/v1/message.proto +3 -1
- package/build/protos/google/chat/v1/slash_command.proto +2 -2
- package/build/protos/google/chat/v1/space.proto +41 -5
- package/build/protos/google/chat/v1/space_setup.proto +1 -1
- package/build/protos/google/chat/v1/user.proto +0 -1
- package/build/protos/protos.d.ts +908 -41
- package/build/protos/protos.js +2680 -72
- package/build/protos/protos.json +303 -46
- package/build/src/v1/chat_service_client.d.ts +348 -63
- package/build/src/v1/chat_service_client.js +4 -0
- package/build/src/v1/chat_service_client.js.map +1 -1
- package/package.json +1 -1
package/build/protos/protos.d.ts
CHANGED
|
@@ -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
|
|
4455
|
-
|
|
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
|
|
4471
|
-
public
|
|
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
|
|
|
@@ -10546,65 +10841,295 @@ export namespace google {
|
|
|
10546
10841
|
* @param [writer] Writer to encode to
|
|
10547
10842
|
* @returns Writer
|
|
10548
10843
|
*/
|
|
10549
|
-
public static encode(message: google.chat.v1.IChatSpaceLinkData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
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
|
|
11071
|
+
* @param [writer] Writer to encode to
|
|
11072
|
+
* @returns Writer
|
|
11073
|
+
*/
|
|
11074
|
+
public static encode(message: google.chat.v1.ICalendarEventLinkData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10550
11075
|
|
|
10551
11076
|
/**
|
|
10552
|
-
* Encodes the specified
|
|
10553
|
-
* @param message
|
|
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.
|
|
11082
|
+
public static encodeDelimited(message: google.chat.v1.ICalendarEventLinkData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10558
11083
|
|
|
10559
11084
|
/**
|
|
10560
|
-
* Decodes a
|
|
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
|
|
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.
|
|
11092
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.CalendarEventLinkData;
|
|
10568
11093
|
|
|
10569
11094
|
/**
|
|
10570
|
-
* Decodes a
|
|
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
|
|
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.
|
|
11101
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.CalendarEventLinkData;
|
|
10577
11102
|
|
|
10578
11103
|
/**
|
|
10579
|
-
* Verifies a
|
|
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
|
|
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
|
|
11113
|
+
* @returns CalendarEventLinkData
|
|
10589
11114
|
*/
|
|
10590
|
-
public static fromObject(object: { [k: string]: any }): google.chat.v1.
|
|
11115
|
+
public static fromObject(object: { [k: string]: any }): google.chat.v1.CalendarEventLinkData;
|
|
10591
11116
|
|
|
10592
11117
|
/**
|
|
10593
|
-
* Creates a plain object from a
|
|
10594
|
-
* @param message
|
|
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.
|
|
11123
|
+
public static toObject(message: google.chat.v1.CalendarEventLinkData, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10599
11124
|
|
|
10600
11125
|
/**
|
|
10601
|
-
* Converts this
|
|
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
|
|
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
|
*/
|
|
@@ -18646,6 +19171,9 @@ export namespace google {
|
|
|
18646
19171
|
/** Space accessSettings */
|
|
18647
19172
|
accessSettings?: (google.chat.v1.Space.IAccessSettings|null);
|
|
18648
19173
|
|
|
19174
|
+
/** Space customer */
|
|
19175
|
+
customer?: (string|null);
|
|
19176
|
+
|
|
18649
19177
|
/** Space spaceUri */
|
|
18650
19178
|
spaceUri?: (string|null);
|
|
18651
19179
|
|
|
@@ -18716,6 +19244,9 @@ export namespace google {
|
|
|
18716
19244
|
/** Space accessSettings. */
|
|
18717
19245
|
public accessSettings?: (google.chat.v1.Space.IAccessSettings|null);
|
|
18718
19246
|
|
|
19247
|
+
/** Space customer. */
|
|
19248
|
+
public customer?: (string|null);
|
|
19249
|
+
|
|
18719
19250
|
/** Space spaceUri. */
|
|
18720
19251
|
public spaceUri: string;
|
|
18721
19252
|
|
|
@@ -23812,6 +24343,19 @@ export namespace google {
|
|
|
23812
24343
|
/** Namespace api. */
|
|
23813
24344
|
namespace api {
|
|
23814
24345
|
|
|
24346
|
+
/** FieldBehavior enum. */
|
|
24347
|
+
enum FieldBehavior {
|
|
24348
|
+
FIELD_BEHAVIOR_UNSPECIFIED = 0,
|
|
24349
|
+
OPTIONAL = 1,
|
|
24350
|
+
REQUIRED = 2,
|
|
24351
|
+
OUTPUT_ONLY = 3,
|
|
24352
|
+
INPUT_ONLY = 4,
|
|
24353
|
+
IMMUTABLE = 5,
|
|
24354
|
+
UNORDERED_LIST = 6,
|
|
24355
|
+
NON_EMPTY_DEFAULT = 7,
|
|
24356
|
+
IDENTIFIER = 8
|
|
24357
|
+
}
|
|
24358
|
+
|
|
23815
24359
|
/** Properties of a ResourceDescriptor. */
|
|
23816
24360
|
interface IResourceDescriptor {
|
|
23817
24361
|
|
|
@@ -24064,24 +24608,14 @@ export namespace google {
|
|
|
24064
24608
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
24065
24609
|
}
|
|
24066
24610
|
|
|
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
24611
|
/** Properties of a FieldInfo. */
|
|
24081
24612
|
interface IFieldInfo {
|
|
24082
24613
|
|
|
24083
24614
|
/** FieldInfo format */
|
|
24084
24615
|
format?: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format|null);
|
|
24616
|
+
|
|
24617
|
+
/** FieldInfo referencedTypes */
|
|
24618
|
+
referencedTypes?: (google.api.ITypeReference[]|null);
|
|
24085
24619
|
}
|
|
24086
24620
|
|
|
24087
24621
|
/** Represents a FieldInfo. */
|
|
@@ -24096,6 +24630,9 @@ export namespace google {
|
|
|
24096
24630
|
/** FieldInfo format. */
|
|
24097
24631
|
public format: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format);
|
|
24098
24632
|
|
|
24633
|
+
/** FieldInfo referencedTypes. */
|
|
24634
|
+
public referencedTypes: google.api.ITypeReference[];
|
|
24635
|
+
|
|
24099
24636
|
/**
|
|
24100
24637
|
* Creates a new FieldInfo instance using the specified properties.
|
|
24101
24638
|
* @param [properties] Properties to set
|
|
@@ -24186,6 +24723,103 @@ export namespace google {
|
|
|
24186
24723
|
}
|
|
24187
24724
|
}
|
|
24188
24725
|
|
|
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
|
+
|
|
24189
24823
|
/** Properties of a Http. */
|
|
24190
24824
|
interface IHttp {
|
|
24191
24825
|
|
|
@@ -24554,6 +25188,9 @@ export namespace google {
|
|
|
24554
25188
|
|
|
24555
25189
|
/** CommonLanguageSettings destinations */
|
|
24556
25190
|
destinations?: (google.api.ClientLibraryDestination[]|null);
|
|
25191
|
+
|
|
25192
|
+
/** CommonLanguageSettings selectiveGapicGeneration */
|
|
25193
|
+
selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
|
|
24557
25194
|
}
|
|
24558
25195
|
|
|
24559
25196
|
/** Represents a CommonLanguageSettings. */
|
|
@@ -24571,6 +25208,9 @@ export namespace google {
|
|
|
24571
25208
|
/** CommonLanguageSettings destinations. */
|
|
24572
25209
|
public destinations: google.api.ClientLibraryDestination[];
|
|
24573
25210
|
|
|
25211
|
+
/** CommonLanguageSettings selectiveGapicGeneration. */
|
|
25212
|
+
public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
|
|
25213
|
+
|
|
24574
25214
|
/**
|
|
24575
25215
|
* Creates a new CommonLanguageSettings instance using the specified properties.
|
|
24576
25216
|
* @param [properties] Properties to set
|
|
@@ -25271,6 +25911,9 @@ export namespace google {
|
|
|
25271
25911
|
|
|
25272
25912
|
/** PythonSettings common */
|
|
25273
25913
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
25914
|
+
|
|
25915
|
+
/** PythonSettings experimentalFeatures */
|
|
25916
|
+
experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
|
|
25274
25917
|
}
|
|
25275
25918
|
|
|
25276
25919
|
/** Represents a PythonSettings. */
|
|
@@ -25285,6 +25928,9 @@ export namespace google {
|
|
|
25285
25928
|
/** PythonSettings common. */
|
|
25286
25929
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
25287
25930
|
|
|
25931
|
+
/** PythonSettings experimentalFeatures. */
|
|
25932
|
+
public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
|
|
25933
|
+
|
|
25288
25934
|
/**
|
|
25289
25935
|
* Creates a new PythonSettings instance using the specified properties.
|
|
25290
25936
|
* @param [properties] Properties to set
|
|
@@ -25363,6 +26009,118 @@ export namespace google {
|
|
|
25363
26009
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
25364
26010
|
}
|
|
25365
26011
|
|
|
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
|
+
|
|
25366
26124
|
/** Properties of a NodeSettings. */
|
|
25367
26125
|
interface INodeSettings {
|
|
25368
26126
|
|
|
@@ -25689,6 +26447,9 @@ export namespace google {
|
|
|
25689
26447
|
|
|
25690
26448
|
/** GoSettings common */
|
|
25691
26449
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
26450
|
+
|
|
26451
|
+
/** GoSettings renamedServices */
|
|
26452
|
+
renamedServices?: ({ [k: string]: string }|null);
|
|
25692
26453
|
}
|
|
25693
26454
|
|
|
25694
26455
|
/** Represents a GoSettings. */
|
|
@@ -25703,6 +26464,9 @@ export namespace google {
|
|
|
25703
26464
|
/** GoSettings common. */
|
|
25704
26465
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
25705
26466
|
|
|
26467
|
+
/** GoSettings renamedServices. */
|
|
26468
|
+
public renamedServices: { [k: string]: string };
|
|
26469
|
+
|
|
25706
26470
|
/**
|
|
25707
26471
|
* Creates a new GoSettings instance using the specified properties.
|
|
25708
26472
|
* @param [properties] Properties to set
|
|
@@ -26027,6 +26791,109 @@ export namespace google {
|
|
|
26027
26791
|
PACKAGE_MANAGER = 20
|
|
26028
26792
|
}
|
|
26029
26793
|
|
|
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
|
+
|
|
26030
26897
|
/** LaunchStage enum. */
|
|
26031
26898
|
enum LaunchStage {
|
|
26032
26899
|
LAUNCH_STAGE_UNSPECIFIED = 0,
|