@google-cloud/logging-api 0.1.0 → 0.3.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/protos.d.ts +500 -1
- package/build/protos/protos.js +1 -1
- package/build/protos/protos.json +1 -1
- package/build/src/index.js.map +1 -1
- package/package.json +7 -7
package/build/protos/protos.d.ts
CHANGED
|
@@ -228,6 +228,8 @@ export namespace google {
|
|
|
228
228
|
EDITION_PROTO3 = 999,
|
|
229
229
|
EDITION_2023 = 1000,
|
|
230
230
|
EDITION_2024 = 1001,
|
|
231
|
+
EDITION_2026 = 1002,
|
|
232
|
+
EDITION_UNSTABLE = 9999,
|
|
231
233
|
EDITION_1_TEST_ONLY = 1,
|
|
232
234
|
EDITION_2_TEST_ONLY = 2,
|
|
233
235
|
EDITION_99997_TEST_ONLY = 99997,
|
|
@@ -2599,6 +2601,9 @@ export namespace google {
|
|
|
2599
2601
|
|
|
2600
2602
|
/** FeatureSupport editionRemoved */
|
|
2601
2603
|
editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
2604
|
+
|
|
2605
|
+
/** FeatureSupport removalError */
|
|
2606
|
+
removalError?: (string|null);
|
|
2602
2607
|
}
|
|
2603
2608
|
|
|
2604
2609
|
/** Represents a FeatureSupport. */
|
|
@@ -2622,6 +2627,9 @@ export namespace google {
|
|
|
2622
2627
|
/** FeatureSupport editionRemoved. */
|
|
2623
2628
|
public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
2624
2629
|
|
|
2630
|
+
/** FeatureSupport removalError. */
|
|
2631
|
+
public removalError: string;
|
|
2632
|
+
|
|
2625
2633
|
/**
|
|
2626
2634
|
* Creates a new FeatureSupport instance using the specified properties.
|
|
2627
2635
|
* @param [properties] Properties to set
|
|
@@ -3563,6 +3571,9 @@ export namespace google {
|
|
|
3563
3571
|
|
|
3564
3572
|
/** FeatureSet defaultSymbolVisibility */
|
|
3565
3573
|
defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
|
|
3574
|
+
|
|
3575
|
+
/** FeatureSet enforceProtoLimits */
|
|
3576
|
+
enforceProtoLimits?: (google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|keyof typeof google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|null);
|
|
3566
3577
|
}
|
|
3567
3578
|
|
|
3568
3579
|
/** Represents a FeatureSet. */
|
|
@@ -3598,6 +3609,9 @@ export namespace google {
|
|
|
3598
3609
|
/** FeatureSet defaultSymbolVisibility. */
|
|
3599
3610
|
public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
|
|
3600
3611
|
|
|
3612
|
+
/** FeatureSet enforceProtoLimits. */
|
|
3613
|
+
public enforceProtoLimits: (google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|keyof typeof google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits);
|
|
3614
|
+
|
|
3601
3615
|
/**
|
|
3602
3616
|
* Creates a new FeatureSet instance using the specified properties.
|
|
3603
3617
|
* @param [properties] Properties to set
|
|
@@ -3725,7 +3739,8 @@ export namespace google {
|
|
|
3725
3739
|
enum EnforceNamingStyle {
|
|
3726
3740
|
ENFORCE_NAMING_STYLE_UNKNOWN = 0,
|
|
3727
3741
|
STYLE2024 = 1,
|
|
3728
|
-
STYLE_LEGACY = 2
|
|
3742
|
+
STYLE_LEGACY = 2,
|
|
3743
|
+
STYLE2026 = 3
|
|
3729
3744
|
}
|
|
3730
3745
|
|
|
3731
3746
|
/** Properties of a VisibilityFeature. */
|
|
@@ -3830,6 +3845,107 @@ export namespace google {
|
|
|
3830
3845
|
STRICT = 4
|
|
3831
3846
|
}
|
|
3832
3847
|
}
|
|
3848
|
+
|
|
3849
|
+
/** Properties of a ProtoLimitsFeature. */
|
|
3850
|
+
interface IProtoLimitsFeature {
|
|
3851
|
+
}
|
|
3852
|
+
|
|
3853
|
+
/** Represents a ProtoLimitsFeature. */
|
|
3854
|
+
class ProtoLimitsFeature implements IProtoLimitsFeature {
|
|
3855
|
+
|
|
3856
|
+
/**
|
|
3857
|
+
* Constructs a new ProtoLimitsFeature.
|
|
3858
|
+
* @param [properties] Properties to set
|
|
3859
|
+
*/
|
|
3860
|
+
constructor(properties?: google.protobuf.FeatureSet.IProtoLimitsFeature);
|
|
3861
|
+
|
|
3862
|
+
/**
|
|
3863
|
+
* Creates a new ProtoLimitsFeature instance using the specified properties.
|
|
3864
|
+
* @param [properties] Properties to set
|
|
3865
|
+
* @returns ProtoLimitsFeature instance
|
|
3866
|
+
*/
|
|
3867
|
+
public static create(properties?: google.protobuf.FeatureSet.IProtoLimitsFeature): google.protobuf.FeatureSet.ProtoLimitsFeature;
|
|
3868
|
+
|
|
3869
|
+
/**
|
|
3870
|
+
* Encodes the specified ProtoLimitsFeature message. Does not implicitly {@link google.protobuf.FeatureSet.ProtoLimitsFeature.verify|verify} messages.
|
|
3871
|
+
* @param message ProtoLimitsFeature message or plain object to encode
|
|
3872
|
+
* @param [writer] Writer to encode to
|
|
3873
|
+
* @returns Writer
|
|
3874
|
+
*/
|
|
3875
|
+
public static encode(message: google.protobuf.FeatureSet.IProtoLimitsFeature, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3876
|
+
|
|
3877
|
+
/**
|
|
3878
|
+
* Encodes the specified ProtoLimitsFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.ProtoLimitsFeature.verify|verify} messages.
|
|
3879
|
+
* @param message ProtoLimitsFeature message or plain object to encode
|
|
3880
|
+
* @param [writer] Writer to encode to
|
|
3881
|
+
* @returns Writer
|
|
3882
|
+
*/
|
|
3883
|
+
public static encodeDelimited(message: google.protobuf.FeatureSet.IProtoLimitsFeature, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3884
|
+
|
|
3885
|
+
/**
|
|
3886
|
+
* Decodes a ProtoLimitsFeature message from the specified reader or buffer.
|
|
3887
|
+
* @param reader Reader or buffer to decode from
|
|
3888
|
+
* @param [length] Message length if known beforehand
|
|
3889
|
+
* @returns ProtoLimitsFeature
|
|
3890
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3891
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3892
|
+
*/
|
|
3893
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.ProtoLimitsFeature;
|
|
3894
|
+
|
|
3895
|
+
/**
|
|
3896
|
+
* Decodes a ProtoLimitsFeature message from the specified reader or buffer, length delimited.
|
|
3897
|
+
* @param reader Reader or buffer to decode from
|
|
3898
|
+
* @returns ProtoLimitsFeature
|
|
3899
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3900
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3901
|
+
*/
|
|
3902
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.ProtoLimitsFeature;
|
|
3903
|
+
|
|
3904
|
+
/**
|
|
3905
|
+
* Verifies a ProtoLimitsFeature message.
|
|
3906
|
+
* @param message Plain object to verify
|
|
3907
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
3908
|
+
*/
|
|
3909
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
3910
|
+
|
|
3911
|
+
/**
|
|
3912
|
+
* Creates a ProtoLimitsFeature message from a plain object. Also converts values to their respective internal types.
|
|
3913
|
+
* @param object Plain object
|
|
3914
|
+
* @returns ProtoLimitsFeature
|
|
3915
|
+
*/
|
|
3916
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.ProtoLimitsFeature;
|
|
3917
|
+
|
|
3918
|
+
/**
|
|
3919
|
+
* Creates a plain object from a ProtoLimitsFeature message. Also converts values to other types if specified.
|
|
3920
|
+
* @param message ProtoLimitsFeature
|
|
3921
|
+
* @param [options] Conversion options
|
|
3922
|
+
* @returns Plain object
|
|
3923
|
+
*/
|
|
3924
|
+
public static toObject(message: google.protobuf.FeatureSet.ProtoLimitsFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
3925
|
+
|
|
3926
|
+
/**
|
|
3927
|
+
* Converts this ProtoLimitsFeature to JSON.
|
|
3928
|
+
* @returns JSON object
|
|
3929
|
+
*/
|
|
3930
|
+
public toJSON(): { [k: string]: any };
|
|
3931
|
+
|
|
3932
|
+
/**
|
|
3933
|
+
* Gets the default type url for ProtoLimitsFeature
|
|
3934
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3935
|
+
* @returns The default type url
|
|
3936
|
+
*/
|
|
3937
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3938
|
+
}
|
|
3939
|
+
|
|
3940
|
+
namespace ProtoLimitsFeature {
|
|
3941
|
+
|
|
3942
|
+
/** EnforceProtoLimits enum. */
|
|
3943
|
+
enum EnforceProtoLimits {
|
|
3944
|
+
PROTO_LIMITS_UNKNOWN = 0,
|
|
3945
|
+
LEGACY_NO_EXPLICIT_LIMITS = 1,
|
|
3946
|
+
PROTO_LIMITS2026 = 2
|
|
3947
|
+
}
|
|
3948
|
+
}
|
|
3833
3949
|
}
|
|
3834
3950
|
|
|
3835
3951
|
/** Properties of a FeatureSetDefaults. */
|
|
@@ -16323,6 +16439,9 @@ export namespace google {
|
|
|
16323
16439
|
|
|
16324
16440
|
/** PhpSettings common */
|
|
16325
16441
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
16442
|
+
|
|
16443
|
+
/** PhpSettings libraryPackage */
|
|
16444
|
+
libraryPackage?: (string|null);
|
|
16326
16445
|
}
|
|
16327
16446
|
|
|
16328
16447
|
/** Represents a PhpSettings. */
|
|
@@ -16337,6 +16456,9 @@ export namespace google {
|
|
|
16337
16456
|
/** PhpSettings common. */
|
|
16338
16457
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
16339
16458
|
|
|
16459
|
+
/** PhpSettings libraryPackage. */
|
|
16460
|
+
public libraryPackage: string;
|
|
16461
|
+
|
|
16340
16462
|
/**
|
|
16341
16463
|
* Creates a new PhpSettings instance using the specified properties.
|
|
16342
16464
|
* @param [properties] Properties to set
|
|
@@ -17065,6 +17187,9 @@ export namespace google {
|
|
|
17065
17187
|
|
|
17066
17188
|
/** MethodSettings autoPopulatedFields */
|
|
17067
17189
|
autoPopulatedFields?: (string[]|null);
|
|
17190
|
+
|
|
17191
|
+
/** MethodSettings batching */
|
|
17192
|
+
batching?: (google.api.IBatchingConfigProto|null);
|
|
17068
17193
|
}
|
|
17069
17194
|
|
|
17070
17195
|
/** Represents a MethodSettings. */
|
|
@@ -17085,6 +17210,9 @@ export namespace google {
|
|
|
17085
17210
|
/** MethodSettings autoPopulatedFields. */
|
|
17086
17211
|
public autoPopulatedFields: string[];
|
|
17087
17212
|
|
|
17213
|
+
/** MethodSettings batching. */
|
|
17214
|
+
public batching?: (google.api.IBatchingConfigProto|null);
|
|
17215
|
+
|
|
17088
17216
|
/**
|
|
17089
17217
|
* Creates a new MethodSettings instance using the specified properties.
|
|
17090
17218
|
* @param [properties] Properties to set
|
|
@@ -17403,6 +17531,365 @@ export namespace google {
|
|
|
17403
17531
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
17404
17532
|
}
|
|
17405
17533
|
|
|
17534
|
+
/** Properties of a BatchingConfigProto. */
|
|
17535
|
+
interface IBatchingConfigProto {
|
|
17536
|
+
|
|
17537
|
+
/** BatchingConfigProto thresholds */
|
|
17538
|
+
thresholds?: (google.api.IBatchingSettingsProto|null);
|
|
17539
|
+
|
|
17540
|
+
/** BatchingConfigProto batchDescriptor */
|
|
17541
|
+
batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
|
|
17542
|
+
}
|
|
17543
|
+
|
|
17544
|
+
/** Represents a BatchingConfigProto. */
|
|
17545
|
+
class BatchingConfigProto implements IBatchingConfigProto {
|
|
17546
|
+
|
|
17547
|
+
/**
|
|
17548
|
+
* Constructs a new BatchingConfigProto.
|
|
17549
|
+
* @param [properties] Properties to set
|
|
17550
|
+
*/
|
|
17551
|
+
constructor(properties?: google.api.IBatchingConfigProto);
|
|
17552
|
+
|
|
17553
|
+
/** BatchingConfigProto thresholds. */
|
|
17554
|
+
public thresholds?: (google.api.IBatchingSettingsProto|null);
|
|
17555
|
+
|
|
17556
|
+
/** BatchingConfigProto batchDescriptor. */
|
|
17557
|
+
public batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
|
|
17558
|
+
|
|
17559
|
+
/**
|
|
17560
|
+
* Creates a new BatchingConfigProto instance using the specified properties.
|
|
17561
|
+
* @param [properties] Properties to set
|
|
17562
|
+
* @returns BatchingConfigProto instance
|
|
17563
|
+
*/
|
|
17564
|
+
public static create(properties?: google.api.IBatchingConfigProto): google.api.BatchingConfigProto;
|
|
17565
|
+
|
|
17566
|
+
/**
|
|
17567
|
+
* Encodes the specified BatchingConfigProto message. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
|
|
17568
|
+
* @param message BatchingConfigProto message or plain object to encode
|
|
17569
|
+
* @param [writer] Writer to encode to
|
|
17570
|
+
* @returns Writer
|
|
17571
|
+
*/
|
|
17572
|
+
public static encode(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17573
|
+
|
|
17574
|
+
/**
|
|
17575
|
+
* Encodes the specified BatchingConfigProto message, length delimited. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
|
|
17576
|
+
* @param message BatchingConfigProto message or plain object to encode
|
|
17577
|
+
* @param [writer] Writer to encode to
|
|
17578
|
+
* @returns Writer
|
|
17579
|
+
*/
|
|
17580
|
+
public static encodeDelimited(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17581
|
+
|
|
17582
|
+
/**
|
|
17583
|
+
* Decodes a BatchingConfigProto message from the specified reader or buffer.
|
|
17584
|
+
* @param reader Reader or buffer to decode from
|
|
17585
|
+
* @param [length] Message length if known beforehand
|
|
17586
|
+
* @returns BatchingConfigProto
|
|
17587
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17588
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17589
|
+
*/
|
|
17590
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingConfigProto;
|
|
17591
|
+
|
|
17592
|
+
/**
|
|
17593
|
+
* Decodes a BatchingConfigProto message from the specified reader or buffer, length delimited.
|
|
17594
|
+
* @param reader Reader or buffer to decode from
|
|
17595
|
+
* @returns BatchingConfigProto
|
|
17596
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17597
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17598
|
+
*/
|
|
17599
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingConfigProto;
|
|
17600
|
+
|
|
17601
|
+
/**
|
|
17602
|
+
* Verifies a BatchingConfigProto message.
|
|
17603
|
+
* @param message Plain object to verify
|
|
17604
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
17605
|
+
*/
|
|
17606
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
17607
|
+
|
|
17608
|
+
/**
|
|
17609
|
+
* Creates a BatchingConfigProto message from a plain object. Also converts values to their respective internal types.
|
|
17610
|
+
* @param object Plain object
|
|
17611
|
+
* @returns BatchingConfigProto
|
|
17612
|
+
*/
|
|
17613
|
+
public static fromObject(object: { [k: string]: any }): google.api.BatchingConfigProto;
|
|
17614
|
+
|
|
17615
|
+
/**
|
|
17616
|
+
* Creates a plain object from a BatchingConfigProto message. Also converts values to other types if specified.
|
|
17617
|
+
* @param message BatchingConfigProto
|
|
17618
|
+
* @param [options] Conversion options
|
|
17619
|
+
* @returns Plain object
|
|
17620
|
+
*/
|
|
17621
|
+
public static toObject(message: google.api.BatchingConfigProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
17622
|
+
|
|
17623
|
+
/**
|
|
17624
|
+
* Converts this BatchingConfigProto to JSON.
|
|
17625
|
+
* @returns JSON object
|
|
17626
|
+
*/
|
|
17627
|
+
public toJSON(): { [k: string]: any };
|
|
17628
|
+
|
|
17629
|
+
/**
|
|
17630
|
+
* Gets the default type url for BatchingConfigProto
|
|
17631
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
17632
|
+
* @returns The default type url
|
|
17633
|
+
*/
|
|
17634
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
17635
|
+
}
|
|
17636
|
+
|
|
17637
|
+
/** Properties of a BatchingSettingsProto. */
|
|
17638
|
+
interface IBatchingSettingsProto {
|
|
17639
|
+
|
|
17640
|
+
/** BatchingSettingsProto elementCountThreshold */
|
|
17641
|
+
elementCountThreshold?: (number|null);
|
|
17642
|
+
|
|
17643
|
+
/** BatchingSettingsProto requestByteThreshold */
|
|
17644
|
+
requestByteThreshold?: (number|Long|string|null);
|
|
17645
|
+
|
|
17646
|
+
/** BatchingSettingsProto delayThreshold */
|
|
17647
|
+
delayThreshold?: (google.protobuf.IDuration|null);
|
|
17648
|
+
|
|
17649
|
+
/** BatchingSettingsProto elementCountLimit */
|
|
17650
|
+
elementCountLimit?: (number|null);
|
|
17651
|
+
|
|
17652
|
+
/** BatchingSettingsProto requestByteLimit */
|
|
17653
|
+
requestByteLimit?: (number|null);
|
|
17654
|
+
|
|
17655
|
+
/** BatchingSettingsProto flowControlElementLimit */
|
|
17656
|
+
flowControlElementLimit?: (number|null);
|
|
17657
|
+
|
|
17658
|
+
/** BatchingSettingsProto flowControlByteLimit */
|
|
17659
|
+
flowControlByteLimit?: (number|null);
|
|
17660
|
+
|
|
17661
|
+
/** BatchingSettingsProto flowControlLimitExceededBehavior */
|
|
17662
|
+
flowControlLimitExceededBehavior?: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto|null);
|
|
17663
|
+
}
|
|
17664
|
+
|
|
17665
|
+
/** Represents a BatchingSettingsProto. */
|
|
17666
|
+
class BatchingSettingsProto implements IBatchingSettingsProto {
|
|
17667
|
+
|
|
17668
|
+
/**
|
|
17669
|
+
* Constructs a new BatchingSettingsProto.
|
|
17670
|
+
* @param [properties] Properties to set
|
|
17671
|
+
*/
|
|
17672
|
+
constructor(properties?: google.api.IBatchingSettingsProto);
|
|
17673
|
+
|
|
17674
|
+
/** BatchingSettingsProto elementCountThreshold. */
|
|
17675
|
+
public elementCountThreshold: number;
|
|
17676
|
+
|
|
17677
|
+
/** BatchingSettingsProto requestByteThreshold. */
|
|
17678
|
+
public requestByteThreshold: (number|Long|string);
|
|
17679
|
+
|
|
17680
|
+
/** BatchingSettingsProto delayThreshold. */
|
|
17681
|
+
public delayThreshold?: (google.protobuf.IDuration|null);
|
|
17682
|
+
|
|
17683
|
+
/** BatchingSettingsProto elementCountLimit. */
|
|
17684
|
+
public elementCountLimit: number;
|
|
17685
|
+
|
|
17686
|
+
/** BatchingSettingsProto requestByteLimit. */
|
|
17687
|
+
public requestByteLimit: number;
|
|
17688
|
+
|
|
17689
|
+
/** BatchingSettingsProto flowControlElementLimit. */
|
|
17690
|
+
public flowControlElementLimit: number;
|
|
17691
|
+
|
|
17692
|
+
/** BatchingSettingsProto flowControlByteLimit. */
|
|
17693
|
+
public flowControlByteLimit: number;
|
|
17694
|
+
|
|
17695
|
+
/** BatchingSettingsProto flowControlLimitExceededBehavior. */
|
|
17696
|
+
public flowControlLimitExceededBehavior: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto);
|
|
17697
|
+
|
|
17698
|
+
/**
|
|
17699
|
+
* Creates a new BatchingSettingsProto instance using the specified properties.
|
|
17700
|
+
* @param [properties] Properties to set
|
|
17701
|
+
* @returns BatchingSettingsProto instance
|
|
17702
|
+
*/
|
|
17703
|
+
public static create(properties?: google.api.IBatchingSettingsProto): google.api.BatchingSettingsProto;
|
|
17704
|
+
|
|
17705
|
+
/**
|
|
17706
|
+
* Encodes the specified BatchingSettingsProto message. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
|
|
17707
|
+
* @param message BatchingSettingsProto message or plain object to encode
|
|
17708
|
+
* @param [writer] Writer to encode to
|
|
17709
|
+
* @returns Writer
|
|
17710
|
+
*/
|
|
17711
|
+
public static encode(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17712
|
+
|
|
17713
|
+
/**
|
|
17714
|
+
* Encodes the specified BatchingSettingsProto message, length delimited. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
|
|
17715
|
+
* @param message BatchingSettingsProto message or plain object to encode
|
|
17716
|
+
* @param [writer] Writer to encode to
|
|
17717
|
+
* @returns Writer
|
|
17718
|
+
*/
|
|
17719
|
+
public static encodeDelimited(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17720
|
+
|
|
17721
|
+
/**
|
|
17722
|
+
* Decodes a BatchingSettingsProto message from the specified reader or buffer.
|
|
17723
|
+
* @param reader Reader or buffer to decode from
|
|
17724
|
+
* @param [length] Message length if known beforehand
|
|
17725
|
+
* @returns BatchingSettingsProto
|
|
17726
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17727
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17728
|
+
*/
|
|
17729
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingSettingsProto;
|
|
17730
|
+
|
|
17731
|
+
/**
|
|
17732
|
+
* Decodes a BatchingSettingsProto message from the specified reader or buffer, length delimited.
|
|
17733
|
+
* @param reader Reader or buffer to decode from
|
|
17734
|
+
* @returns BatchingSettingsProto
|
|
17735
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17736
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17737
|
+
*/
|
|
17738
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingSettingsProto;
|
|
17739
|
+
|
|
17740
|
+
/**
|
|
17741
|
+
* Verifies a BatchingSettingsProto message.
|
|
17742
|
+
* @param message Plain object to verify
|
|
17743
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
17744
|
+
*/
|
|
17745
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
17746
|
+
|
|
17747
|
+
/**
|
|
17748
|
+
* Creates a BatchingSettingsProto message from a plain object. Also converts values to their respective internal types.
|
|
17749
|
+
* @param object Plain object
|
|
17750
|
+
* @returns BatchingSettingsProto
|
|
17751
|
+
*/
|
|
17752
|
+
public static fromObject(object: { [k: string]: any }): google.api.BatchingSettingsProto;
|
|
17753
|
+
|
|
17754
|
+
/**
|
|
17755
|
+
* Creates a plain object from a BatchingSettingsProto message. Also converts values to other types if specified.
|
|
17756
|
+
* @param message BatchingSettingsProto
|
|
17757
|
+
* @param [options] Conversion options
|
|
17758
|
+
* @returns Plain object
|
|
17759
|
+
*/
|
|
17760
|
+
public static toObject(message: google.api.BatchingSettingsProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
17761
|
+
|
|
17762
|
+
/**
|
|
17763
|
+
* Converts this BatchingSettingsProto to JSON.
|
|
17764
|
+
* @returns JSON object
|
|
17765
|
+
*/
|
|
17766
|
+
public toJSON(): { [k: string]: any };
|
|
17767
|
+
|
|
17768
|
+
/**
|
|
17769
|
+
* Gets the default type url for BatchingSettingsProto
|
|
17770
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
17771
|
+
* @returns The default type url
|
|
17772
|
+
*/
|
|
17773
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
17774
|
+
}
|
|
17775
|
+
|
|
17776
|
+
/** FlowControlLimitExceededBehaviorProto enum. */
|
|
17777
|
+
enum FlowControlLimitExceededBehaviorProto {
|
|
17778
|
+
UNSET_BEHAVIOR = 0,
|
|
17779
|
+
THROW_EXCEPTION = 1,
|
|
17780
|
+
BLOCK = 2,
|
|
17781
|
+
IGNORE = 3
|
|
17782
|
+
}
|
|
17783
|
+
|
|
17784
|
+
/** Properties of a BatchingDescriptorProto. */
|
|
17785
|
+
interface IBatchingDescriptorProto {
|
|
17786
|
+
|
|
17787
|
+
/** BatchingDescriptorProto batchedField */
|
|
17788
|
+
batchedField?: (string|null);
|
|
17789
|
+
|
|
17790
|
+
/** BatchingDescriptorProto discriminatorFields */
|
|
17791
|
+
discriminatorFields?: (string[]|null);
|
|
17792
|
+
|
|
17793
|
+
/** BatchingDescriptorProto subresponseField */
|
|
17794
|
+
subresponseField?: (string|null);
|
|
17795
|
+
}
|
|
17796
|
+
|
|
17797
|
+
/** Represents a BatchingDescriptorProto. */
|
|
17798
|
+
class BatchingDescriptorProto implements IBatchingDescriptorProto {
|
|
17799
|
+
|
|
17800
|
+
/**
|
|
17801
|
+
* Constructs a new BatchingDescriptorProto.
|
|
17802
|
+
* @param [properties] Properties to set
|
|
17803
|
+
*/
|
|
17804
|
+
constructor(properties?: google.api.IBatchingDescriptorProto);
|
|
17805
|
+
|
|
17806
|
+
/** BatchingDescriptorProto batchedField. */
|
|
17807
|
+
public batchedField: string;
|
|
17808
|
+
|
|
17809
|
+
/** BatchingDescriptorProto discriminatorFields. */
|
|
17810
|
+
public discriminatorFields: string[];
|
|
17811
|
+
|
|
17812
|
+
/** BatchingDescriptorProto subresponseField. */
|
|
17813
|
+
public subresponseField: string;
|
|
17814
|
+
|
|
17815
|
+
/**
|
|
17816
|
+
* Creates a new BatchingDescriptorProto instance using the specified properties.
|
|
17817
|
+
* @param [properties] Properties to set
|
|
17818
|
+
* @returns BatchingDescriptorProto instance
|
|
17819
|
+
*/
|
|
17820
|
+
public static create(properties?: google.api.IBatchingDescriptorProto): google.api.BatchingDescriptorProto;
|
|
17821
|
+
|
|
17822
|
+
/**
|
|
17823
|
+
* Encodes the specified BatchingDescriptorProto message. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
|
|
17824
|
+
* @param message BatchingDescriptorProto message or plain object to encode
|
|
17825
|
+
* @param [writer] Writer to encode to
|
|
17826
|
+
* @returns Writer
|
|
17827
|
+
*/
|
|
17828
|
+
public static encode(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17829
|
+
|
|
17830
|
+
/**
|
|
17831
|
+
* Encodes the specified BatchingDescriptorProto message, length delimited. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
|
|
17832
|
+
* @param message BatchingDescriptorProto message or plain object to encode
|
|
17833
|
+
* @param [writer] Writer to encode to
|
|
17834
|
+
* @returns Writer
|
|
17835
|
+
*/
|
|
17836
|
+
public static encodeDelimited(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17837
|
+
|
|
17838
|
+
/**
|
|
17839
|
+
* Decodes a BatchingDescriptorProto message from the specified reader or buffer.
|
|
17840
|
+
* @param reader Reader or buffer to decode from
|
|
17841
|
+
* @param [length] Message length if known beforehand
|
|
17842
|
+
* @returns BatchingDescriptorProto
|
|
17843
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17844
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17845
|
+
*/
|
|
17846
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingDescriptorProto;
|
|
17847
|
+
|
|
17848
|
+
/**
|
|
17849
|
+
* Decodes a BatchingDescriptorProto message from the specified reader or buffer, length delimited.
|
|
17850
|
+
* @param reader Reader or buffer to decode from
|
|
17851
|
+
* @returns BatchingDescriptorProto
|
|
17852
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17853
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17854
|
+
*/
|
|
17855
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingDescriptorProto;
|
|
17856
|
+
|
|
17857
|
+
/**
|
|
17858
|
+
* Verifies a BatchingDescriptorProto message.
|
|
17859
|
+
* @param message Plain object to verify
|
|
17860
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
17861
|
+
*/
|
|
17862
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
17863
|
+
|
|
17864
|
+
/**
|
|
17865
|
+
* Creates a BatchingDescriptorProto message from a plain object. Also converts values to their respective internal types.
|
|
17866
|
+
* @param object Plain object
|
|
17867
|
+
* @returns BatchingDescriptorProto
|
|
17868
|
+
*/
|
|
17869
|
+
public static fromObject(object: { [k: string]: any }): google.api.BatchingDescriptorProto;
|
|
17870
|
+
|
|
17871
|
+
/**
|
|
17872
|
+
* Creates a plain object from a BatchingDescriptorProto message. Also converts values to other types if specified.
|
|
17873
|
+
* @param message BatchingDescriptorProto
|
|
17874
|
+
* @param [options] Conversion options
|
|
17875
|
+
* @returns Plain object
|
|
17876
|
+
*/
|
|
17877
|
+
public static toObject(message: google.api.BatchingDescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
17878
|
+
|
|
17879
|
+
/**
|
|
17880
|
+
* Converts this BatchingDescriptorProto to JSON.
|
|
17881
|
+
* @returns JSON object
|
|
17882
|
+
*/
|
|
17883
|
+
public toJSON(): { [k: string]: any };
|
|
17884
|
+
|
|
17885
|
+
/**
|
|
17886
|
+
* Gets the default type url for BatchingDescriptorProto
|
|
17887
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
17888
|
+
* @returns The default type url
|
|
17889
|
+
*/
|
|
17890
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
17891
|
+
}
|
|
17892
|
+
|
|
17406
17893
|
/** Properties of a Distribution. */
|
|
17407
17894
|
interface IDistribution {
|
|
17408
17895
|
|
|
@@ -19070,6 +19557,9 @@ export namespace google {
|
|
|
19070
19557
|
|
|
19071
19558
|
/** ListOperationsRequest pageToken */
|
|
19072
19559
|
pageToken?: (string|null);
|
|
19560
|
+
|
|
19561
|
+
/** ListOperationsRequest returnPartialSuccess */
|
|
19562
|
+
returnPartialSuccess?: (boolean|null);
|
|
19073
19563
|
}
|
|
19074
19564
|
|
|
19075
19565
|
/** Represents a ListOperationsRequest. */
|
|
@@ -19093,6 +19583,9 @@ export namespace google {
|
|
|
19093
19583
|
/** ListOperationsRequest pageToken. */
|
|
19094
19584
|
public pageToken: string;
|
|
19095
19585
|
|
|
19586
|
+
/** ListOperationsRequest returnPartialSuccess. */
|
|
19587
|
+
public returnPartialSuccess: boolean;
|
|
19588
|
+
|
|
19096
19589
|
/**
|
|
19097
19590
|
* Creates a new ListOperationsRequest instance using the specified properties.
|
|
19098
19591
|
* @param [properties] Properties to set
|
|
@@ -19179,6 +19672,9 @@ export namespace google {
|
|
|
19179
19672
|
|
|
19180
19673
|
/** ListOperationsResponse nextPageToken */
|
|
19181
19674
|
nextPageToken?: (string|null);
|
|
19675
|
+
|
|
19676
|
+
/** ListOperationsResponse unreachable */
|
|
19677
|
+
unreachable?: (string[]|null);
|
|
19182
19678
|
}
|
|
19183
19679
|
|
|
19184
19680
|
/** Represents a ListOperationsResponse. */
|
|
@@ -19196,6 +19692,9 @@ export namespace google {
|
|
|
19196
19692
|
/** ListOperationsResponse nextPageToken. */
|
|
19197
19693
|
public nextPageToken: string;
|
|
19198
19694
|
|
|
19695
|
+
/** ListOperationsResponse unreachable. */
|
|
19696
|
+
public unreachable: string[];
|
|
19697
|
+
|
|
19199
19698
|
/**
|
|
19200
19699
|
* Creates a new ListOperationsResponse instance using the specified properties.
|
|
19201
19700
|
* @param [properties] Properties to set
|