@google-analytics/data 7.0.0 → 7.1.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
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. */
|
|
@@ -26770,6 +26886,9 @@ export namespace google {
|
|
|
26770
26886
|
|
|
26771
26887
|
/** PhpSettings common */
|
|
26772
26888
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
26889
|
+
|
|
26890
|
+
/** PhpSettings libraryPackage */
|
|
26891
|
+
libraryPackage?: (string|null);
|
|
26773
26892
|
}
|
|
26774
26893
|
|
|
26775
26894
|
/** Represents a PhpSettings. */
|
|
@@ -26784,6 +26903,9 @@ export namespace google {
|
|
|
26784
26903
|
/** PhpSettings common. */
|
|
26785
26904
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
26786
26905
|
|
|
26906
|
+
/** PhpSettings libraryPackage. */
|
|
26907
|
+
public libraryPackage: string;
|
|
26908
|
+
|
|
26787
26909
|
/**
|
|
26788
26910
|
* Creates a new PhpSettings instance using the specified properties.
|
|
26789
26911
|
* @param [properties] Properties to set
|
|
@@ -27512,6 +27634,9 @@ export namespace google {
|
|
|
27512
27634
|
|
|
27513
27635
|
/** MethodSettings autoPopulatedFields */
|
|
27514
27636
|
autoPopulatedFields?: (string[]|null);
|
|
27637
|
+
|
|
27638
|
+
/** MethodSettings batching */
|
|
27639
|
+
batching?: (google.api.IBatchingConfigProto|null);
|
|
27515
27640
|
}
|
|
27516
27641
|
|
|
27517
27642
|
/** Represents a MethodSettings. */
|
|
@@ -27532,6 +27657,9 @@ export namespace google {
|
|
|
27532
27657
|
/** MethodSettings autoPopulatedFields. */
|
|
27533
27658
|
public autoPopulatedFields: string[];
|
|
27534
27659
|
|
|
27660
|
+
/** MethodSettings batching. */
|
|
27661
|
+
public batching?: (google.api.IBatchingConfigProto|null);
|
|
27662
|
+
|
|
27535
27663
|
/**
|
|
27536
27664
|
* Creates a new MethodSettings instance using the specified properties.
|
|
27537
27665
|
* @param [properties] Properties to set
|
|
@@ -27850,6 +27978,365 @@ export namespace google {
|
|
|
27850
27978
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
27851
27979
|
}
|
|
27852
27980
|
|
|
27981
|
+
/** Properties of a BatchingConfigProto. */
|
|
27982
|
+
interface IBatchingConfigProto {
|
|
27983
|
+
|
|
27984
|
+
/** BatchingConfigProto thresholds */
|
|
27985
|
+
thresholds?: (google.api.IBatchingSettingsProto|null);
|
|
27986
|
+
|
|
27987
|
+
/** BatchingConfigProto batchDescriptor */
|
|
27988
|
+
batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
|
|
27989
|
+
}
|
|
27990
|
+
|
|
27991
|
+
/** Represents a BatchingConfigProto. */
|
|
27992
|
+
class BatchingConfigProto implements IBatchingConfigProto {
|
|
27993
|
+
|
|
27994
|
+
/**
|
|
27995
|
+
* Constructs a new BatchingConfigProto.
|
|
27996
|
+
* @param [properties] Properties to set
|
|
27997
|
+
*/
|
|
27998
|
+
constructor(properties?: google.api.IBatchingConfigProto);
|
|
27999
|
+
|
|
28000
|
+
/** BatchingConfigProto thresholds. */
|
|
28001
|
+
public thresholds?: (google.api.IBatchingSettingsProto|null);
|
|
28002
|
+
|
|
28003
|
+
/** BatchingConfigProto batchDescriptor. */
|
|
28004
|
+
public batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
|
|
28005
|
+
|
|
28006
|
+
/**
|
|
28007
|
+
* Creates a new BatchingConfigProto instance using the specified properties.
|
|
28008
|
+
* @param [properties] Properties to set
|
|
28009
|
+
* @returns BatchingConfigProto instance
|
|
28010
|
+
*/
|
|
28011
|
+
public static create(properties?: google.api.IBatchingConfigProto): google.api.BatchingConfigProto;
|
|
28012
|
+
|
|
28013
|
+
/**
|
|
28014
|
+
* Encodes the specified BatchingConfigProto message. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
|
|
28015
|
+
* @param message BatchingConfigProto message or plain object to encode
|
|
28016
|
+
* @param [writer] Writer to encode to
|
|
28017
|
+
* @returns Writer
|
|
28018
|
+
*/
|
|
28019
|
+
public static encode(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28020
|
+
|
|
28021
|
+
/**
|
|
28022
|
+
* Encodes the specified BatchingConfigProto message, length delimited. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
|
|
28023
|
+
* @param message BatchingConfigProto message or plain object to encode
|
|
28024
|
+
* @param [writer] Writer to encode to
|
|
28025
|
+
* @returns Writer
|
|
28026
|
+
*/
|
|
28027
|
+
public static encodeDelimited(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28028
|
+
|
|
28029
|
+
/**
|
|
28030
|
+
* Decodes a BatchingConfigProto message from the specified reader or buffer.
|
|
28031
|
+
* @param reader Reader or buffer to decode from
|
|
28032
|
+
* @param [length] Message length if known beforehand
|
|
28033
|
+
* @returns BatchingConfigProto
|
|
28034
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28035
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28036
|
+
*/
|
|
28037
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingConfigProto;
|
|
28038
|
+
|
|
28039
|
+
/**
|
|
28040
|
+
* Decodes a BatchingConfigProto message from the specified reader or buffer, length delimited.
|
|
28041
|
+
* @param reader Reader or buffer to decode from
|
|
28042
|
+
* @returns BatchingConfigProto
|
|
28043
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28044
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28045
|
+
*/
|
|
28046
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingConfigProto;
|
|
28047
|
+
|
|
28048
|
+
/**
|
|
28049
|
+
* Verifies a BatchingConfigProto message.
|
|
28050
|
+
* @param message Plain object to verify
|
|
28051
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
28052
|
+
*/
|
|
28053
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
28054
|
+
|
|
28055
|
+
/**
|
|
28056
|
+
* Creates a BatchingConfigProto message from a plain object. Also converts values to their respective internal types.
|
|
28057
|
+
* @param object Plain object
|
|
28058
|
+
* @returns BatchingConfigProto
|
|
28059
|
+
*/
|
|
28060
|
+
public static fromObject(object: { [k: string]: any }): google.api.BatchingConfigProto;
|
|
28061
|
+
|
|
28062
|
+
/**
|
|
28063
|
+
* Creates a plain object from a BatchingConfigProto message. Also converts values to other types if specified.
|
|
28064
|
+
* @param message BatchingConfigProto
|
|
28065
|
+
* @param [options] Conversion options
|
|
28066
|
+
* @returns Plain object
|
|
28067
|
+
*/
|
|
28068
|
+
public static toObject(message: google.api.BatchingConfigProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
28069
|
+
|
|
28070
|
+
/**
|
|
28071
|
+
* Converts this BatchingConfigProto to JSON.
|
|
28072
|
+
* @returns JSON object
|
|
28073
|
+
*/
|
|
28074
|
+
public toJSON(): { [k: string]: any };
|
|
28075
|
+
|
|
28076
|
+
/**
|
|
28077
|
+
* Gets the default type url for BatchingConfigProto
|
|
28078
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
28079
|
+
* @returns The default type url
|
|
28080
|
+
*/
|
|
28081
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
28082
|
+
}
|
|
28083
|
+
|
|
28084
|
+
/** Properties of a BatchingSettingsProto. */
|
|
28085
|
+
interface IBatchingSettingsProto {
|
|
28086
|
+
|
|
28087
|
+
/** BatchingSettingsProto elementCountThreshold */
|
|
28088
|
+
elementCountThreshold?: (number|null);
|
|
28089
|
+
|
|
28090
|
+
/** BatchingSettingsProto requestByteThreshold */
|
|
28091
|
+
requestByteThreshold?: (number|Long|string|null);
|
|
28092
|
+
|
|
28093
|
+
/** BatchingSettingsProto delayThreshold */
|
|
28094
|
+
delayThreshold?: (google.protobuf.IDuration|null);
|
|
28095
|
+
|
|
28096
|
+
/** BatchingSettingsProto elementCountLimit */
|
|
28097
|
+
elementCountLimit?: (number|null);
|
|
28098
|
+
|
|
28099
|
+
/** BatchingSettingsProto requestByteLimit */
|
|
28100
|
+
requestByteLimit?: (number|null);
|
|
28101
|
+
|
|
28102
|
+
/** BatchingSettingsProto flowControlElementLimit */
|
|
28103
|
+
flowControlElementLimit?: (number|null);
|
|
28104
|
+
|
|
28105
|
+
/** BatchingSettingsProto flowControlByteLimit */
|
|
28106
|
+
flowControlByteLimit?: (number|null);
|
|
28107
|
+
|
|
28108
|
+
/** BatchingSettingsProto flowControlLimitExceededBehavior */
|
|
28109
|
+
flowControlLimitExceededBehavior?: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto|null);
|
|
28110
|
+
}
|
|
28111
|
+
|
|
28112
|
+
/** Represents a BatchingSettingsProto. */
|
|
28113
|
+
class BatchingSettingsProto implements IBatchingSettingsProto {
|
|
28114
|
+
|
|
28115
|
+
/**
|
|
28116
|
+
* Constructs a new BatchingSettingsProto.
|
|
28117
|
+
* @param [properties] Properties to set
|
|
28118
|
+
*/
|
|
28119
|
+
constructor(properties?: google.api.IBatchingSettingsProto);
|
|
28120
|
+
|
|
28121
|
+
/** BatchingSettingsProto elementCountThreshold. */
|
|
28122
|
+
public elementCountThreshold: number;
|
|
28123
|
+
|
|
28124
|
+
/** BatchingSettingsProto requestByteThreshold. */
|
|
28125
|
+
public requestByteThreshold: (number|Long|string);
|
|
28126
|
+
|
|
28127
|
+
/** BatchingSettingsProto delayThreshold. */
|
|
28128
|
+
public delayThreshold?: (google.protobuf.IDuration|null);
|
|
28129
|
+
|
|
28130
|
+
/** BatchingSettingsProto elementCountLimit. */
|
|
28131
|
+
public elementCountLimit: number;
|
|
28132
|
+
|
|
28133
|
+
/** BatchingSettingsProto requestByteLimit. */
|
|
28134
|
+
public requestByteLimit: number;
|
|
28135
|
+
|
|
28136
|
+
/** BatchingSettingsProto flowControlElementLimit. */
|
|
28137
|
+
public flowControlElementLimit: number;
|
|
28138
|
+
|
|
28139
|
+
/** BatchingSettingsProto flowControlByteLimit. */
|
|
28140
|
+
public flowControlByteLimit: number;
|
|
28141
|
+
|
|
28142
|
+
/** BatchingSettingsProto flowControlLimitExceededBehavior. */
|
|
28143
|
+
public flowControlLimitExceededBehavior: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto);
|
|
28144
|
+
|
|
28145
|
+
/**
|
|
28146
|
+
* Creates a new BatchingSettingsProto instance using the specified properties.
|
|
28147
|
+
* @param [properties] Properties to set
|
|
28148
|
+
* @returns BatchingSettingsProto instance
|
|
28149
|
+
*/
|
|
28150
|
+
public static create(properties?: google.api.IBatchingSettingsProto): google.api.BatchingSettingsProto;
|
|
28151
|
+
|
|
28152
|
+
/**
|
|
28153
|
+
* Encodes the specified BatchingSettingsProto message. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
|
|
28154
|
+
* @param message BatchingSettingsProto message or plain object to encode
|
|
28155
|
+
* @param [writer] Writer to encode to
|
|
28156
|
+
* @returns Writer
|
|
28157
|
+
*/
|
|
28158
|
+
public static encode(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28159
|
+
|
|
28160
|
+
/**
|
|
28161
|
+
* Encodes the specified BatchingSettingsProto message, length delimited. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
|
|
28162
|
+
* @param message BatchingSettingsProto message or plain object to encode
|
|
28163
|
+
* @param [writer] Writer to encode to
|
|
28164
|
+
* @returns Writer
|
|
28165
|
+
*/
|
|
28166
|
+
public static encodeDelimited(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28167
|
+
|
|
28168
|
+
/**
|
|
28169
|
+
* Decodes a BatchingSettingsProto message from the specified reader or buffer.
|
|
28170
|
+
* @param reader Reader or buffer to decode from
|
|
28171
|
+
* @param [length] Message length if known beforehand
|
|
28172
|
+
* @returns BatchingSettingsProto
|
|
28173
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28174
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28175
|
+
*/
|
|
28176
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingSettingsProto;
|
|
28177
|
+
|
|
28178
|
+
/**
|
|
28179
|
+
* Decodes a BatchingSettingsProto message from the specified reader or buffer, length delimited.
|
|
28180
|
+
* @param reader Reader or buffer to decode from
|
|
28181
|
+
* @returns BatchingSettingsProto
|
|
28182
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28183
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28184
|
+
*/
|
|
28185
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingSettingsProto;
|
|
28186
|
+
|
|
28187
|
+
/**
|
|
28188
|
+
* Verifies a BatchingSettingsProto message.
|
|
28189
|
+
* @param message Plain object to verify
|
|
28190
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
28191
|
+
*/
|
|
28192
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
28193
|
+
|
|
28194
|
+
/**
|
|
28195
|
+
* Creates a BatchingSettingsProto message from a plain object. Also converts values to their respective internal types.
|
|
28196
|
+
* @param object Plain object
|
|
28197
|
+
* @returns BatchingSettingsProto
|
|
28198
|
+
*/
|
|
28199
|
+
public static fromObject(object: { [k: string]: any }): google.api.BatchingSettingsProto;
|
|
28200
|
+
|
|
28201
|
+
/**
|
|
28202
|
+
* Creates a plain object from a BatchingSettingsProto message. Also converts values to other types if specified.
|
|
28203
|
+
* @param message BatchingSettingsProto
|
|
28204
|
+
* @param [options] Conversion options
|
|
28205
|
+
* @returns Plain object
|
|
28206
|
+
*/
|
|
28207
|
+
public static toObject(message: google.api.BatchingSettingsProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
28208
|
+
|
|
28209
|
+
/**
|
|
28210
|
+
* Converts this BatchingSettingsProto to JSON.
|
|
28211
|
+
* @returns JSON object
|
|
28212
|
+
*/
|
|
28213
|
+
public toJSON(): { [k: string]: any };
|
|
28214
|
+
|
|
28215
|
+
/**
|
|
28216
|
+
* Gets the default type url for BatchingSettingsProto
|
|
28217
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
28218
|
+
* @returns The default type url
|
|
28219
|
+
*/
|
|
28220
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
28221
|
+
}
|
|
28222
|
+
|
|
28223
|
+
/** FlowControlLimitExceededBehaviorProto enum. */
|
|
28224
|
+
enum FlowControlLimitExceededBehaviorProto {
|
|
28225
|
+
UNSET_BEHAVIOR = 0,
|
|
28226
|
+
THROW_EXCEPTION = 1,
|
|
28227
|
+
BLOCK = 2,
|
|
28228
|
+
IGNORE = 3
|
|
28229
|
+
}
|
|
28230
|
+
|
|
28231
|
+
/** Properties of a BatchingDescriptorProto. */
|
|
28232
|
+
interface IBatchingDescriptorProto {
|
|
28233
|
+
|
|
28234
|
+
/** BatchingDescriptorProto batchedField */
|
|
28235
|
+
batchedField?: (string|null);
|
|
28236
|
+
|
|
28237
|
+
/** BatchingDescriptorProto discriminatorFields */
|
|
28238
|
+
discriminatorFields?: (string[]|null);
|
|
28239
|
+
|
|
28240
|
+
/** BatchingDescriptorProto subresponseField */
|
|
28241
|
+
subresponseField?: (string|null);
|
|
28242
|
+
}
|
|
28243
|
+
|
|
28244
|
+
/** Represents a BatchingDescriptorProto. */
|
|
28245
|
+
class BatchingDescriptorProto implements IBatchingDescriptorProto {
|
|
28246
|
+
|
|
28247
|
+
/**
|
|
28248
|
+
* Constructs a new BatchingDescriptorProto.
|
|
28249
|
+
* @param [properties] Properties to set
|
|
28250
|
+
*/
|
|
28251
|
+
constructor(properties?: google.api.IBatchingDescriptorProto);
|
|
28252
|
+
|
|
28253
|
+
/** BatchingDescriptorProto batchedField. */
|
|
28254
|
+
public batchedField: string;
|
|
28255
|
+
|
|
28256
|
+
/** BatchingDescriptorProto discriminatorFields. */
|
|
28257
|
+
public discriminatorFields: string[];
|
|
28258
|
+
|
|
28259
|
+
/** BatchingDescriptorProto subresponseField. */
|
|
28260
|
+
public subresponseField: string;
|
|
28261
|
+
|
|
28262
|
+
/**
|
|
28263
|
+
* Creates a new BatchingDescriptorProto instance using the specified properties.
|
|
28264
|
+
* @param [properties] Properties to set
|
|
28265
|
+
* @returns BatchingDescriptorProto instance
|
|
28266
|
+
*/
|
|
28267
|
+
public static create(properties?: google.api.IBatchingDescriptorProto): google.api.BatchingDescriptorProto;
|
|
28268
|
+
|
|
28269
|
+
/**
|
|
28270
|
+
* Encodes the specified BatchingDescriptorProto message. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
|
|
28271
|
+
* @param message BatchingDescriptorProto message or plain object to encode
|
|
28272
|
+
* @param [writer] Writer to encode to
|
|
28273
|
+
* @returns Writer
|
|
28274
|
+
*/
|
|
28275
|
+
public static encode(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28276
|
+
|
|
28277
|
+
/**
|
|
28278
|
+
* Encodes the specified BatchingDescriptorProto message, length delimited. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
|
|
28279
|
+
* @param message BatchingDescriptorProto message or plain object to encode
|
|
28280
|
+
* @param [writer] Writer to encode to
|
|
28281
|
+
* @returns Writer
|
|
28282
|
+
*/
|
|
28283
|
+
public static encodeDelimited(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28284
|
+
|
|
28285
|
+
/**
|
|
28286
|
+
* Decodes a BatchingDescriptorProto message from the specified reader or buffer.
|
|
28287
|
+
* @param reader Reader or buffer to decode from
|
|
28288
|
+
* @param [length] Message length if known beforehand
|
|
28289
|
+
* @returns BatchingDescriptorProto
|
|
28290
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28291
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28292
|
+
*/
|
|
28293
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingDescriptorProto;
|
|
28294
|
+
|
|
28295
|
+
/**
|
|
28296
|
+
* Decodes a BatchingDescriptorProto message from the specified reader or buffer, length delimited.
|
|
28297
|
+
* @param reader Reader or buffer to decode from
|
|
28298
|
+
* @returns BatchingDescriptorProto
|
|
28299
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28300
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28301
|
+
*/
|
|
28302
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingDescriptorProto;
|
|
28303
|
+
|
|
28304
|
+
/**
|
|
28305
|
+
* Verifies a BatchingDescriptorProto message.
|
|
28306
|
+
* @param message Plain object to verify
|
|
28307
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
28308
|
+
*/
|
|
28309
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
28310
|
+
|
|
28311
|
+
/**
|
|
28312
|
+
* Creates a BatchingDescriptorProto message from a plain object. Also converts values to their respective internal types.
|
|
28313
|
+
* @param object Plain object
|
|
28314
|
+
* @returns BatchingDescriptorProto
|
|
28315
|
+
*/
|
|
28316
|
+
public static fromObject(object: { [k: string]: any }): google.api.BatchingDescriptorProto;
|
|
28317
|
+
|
|
28318
|
+
/**
|
|
28319
|
+
* Creates a plain object from a BatchingDescriptorProto message. Also converts values to other types if specified.
|
|
28320
|
+
* @param message BatchingDescriptorProto
|
|
28321
|
+
* @param [options] Conversion options
|
|
28322
|
+
* @returns Plain object
|
|
28323
|
+
*/
|
|
28324
|
+
public static toObject(message: google.api.BatchingDescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
28325
|
+
|
|
28326
|
+
/**
|
|
28327
|
+
* Converts this BatchingDescriptorProto to JSON.
|
|
28328
|
+
* @returns JSON object
|
|
28329
|
+
*/
|
|
28330
|
+
public toJSON(): { [k: string]: any };
|
|
28331
|
+
|
|
28332
|
+
/**
|
|
28333
|
+
* Gets the default type url for BatchingDescriptorProto
|
|
28334
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
28335
|
+
* @returns The default type url
|
|
28336
|
+
*/
|
|
28337
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
28338
|
+
}
|
|
28339
|
+
|
|
27853
28340
|
/** LaunchStage enum. */
|
|
27854
28341
|
enum LaunchStage {
|
|
27855
28342
|
LAUNCH_STAGE_UNSPECIFIED = 0,
|
|
@@ -28495,6 +28982,9 @@ export namespace google {
|
|
|
28495
28982
|
|
|
28496
28983
|
/** ListOperationsRequest pageToken */
|
|
28497
28984
|
pageToken?: (string|null);
|
|
28985
|
+
|
|
28986
|
+
/** ListOperationsRequest returnPartialSuccess */
|
|
28987
|
+
returnPartialSuccess?: (boolean|null);
|
|
28498
28988
|
}
|
|
28499
28989
|
|
|
28500
28990
|
/** Represents a ListOperationsRequest. */
|
|
@@ -28518,6 +29008,9 @@ export namespace google {
|
|
|
28518
29008
|
/** ListOperationsRequest pageToken. */
|
|
28519
29009
|
public pageToken: string;
|
|
28520
29010
|
|
|
29011
|
+
/** ListOperationsRequest returnPartialSuccess. */
|
|
29012
|
+
public returnPartialSuccess: boolean;
|
|
29013
|
+
|
|
28521
29014
|
/**
|
|
28522
29015
|
* Creates a new ListOperationsRequest instance using the specified properties.
|
|
28523
29016
|
* @param [properties] Properties to set
|
|
@@ -28604,6 +29097,9 @@ export namespace google {
|
|
|
28604
29097
|
|
|
28605
29098
|
/** ListOperationsResponse nextPageToken */
|
|
28606
29099
|
nextPageToken?: (string|null);
|
|
29100
|
+
|
|
29101
|
+
/** ListOperationsResponse unreachable */
|
|
29102
|
+
unreachable?: (string[]|null);
|
|
28607
29103
|
}
|
|
28608
29104
|
|
|
28609
29105
|
/** Represents a ListOperationsResponse. */
|
|
@@ -28621,6 +29117,9 @@ export namespace google {
|
|
|
28621
29117
|
/** ListOperationsResponse nextPageToken. */
|
|
28622
29118
|
public nextPageToken: string;
|
|
28623
29119
|
|
|
29120
|
+
/** ListOperationsResponse unreachable. */
|
|
29121
|
+
public unreachable: string[];
|
|
29122
|
+
|
|
28624
29123
|
/**
|
|
28625
29124
|
* Creates a new ListOperationsResponse instance using the specified properties.
|
|
28626
29125
|
* @param [properties] Properties to set
|