@google-analytics/data 7.0.0 → 7.2.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.
@@ -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. */
@@ -5021,6 +5137,20 @@ export namespace google {
5021
5137
  */
5022
5138
  public listReportTasks(request: google.analytics.data.v1alpha.IListReportTasksRequest): Promise<google.analytics.data.v1alpha.ListReportTasksResponse>;
5023
5139
 
5140
+ /**
5141
+ * Calls Chat.
5142
+ * @param request ChatRequest message or plain object
5143
+ * @param callback Node-style callback called with the error, if any, and ChatResponse
5144
+ */
5145
+ public chat(request: google.analytics.data.v1alpha.IChatRequest, callback: google.analytics.data.v1alpha.AlphaAnalyticsData.ChatCallback): void;
5146
+
5147
+ /**
5148
+ * Calls Chat.
5149
+ * @param request ChatRequest message or plain object
5150
+ * @returns Promise
5151
+ */
5152
+ public chat(request: google.analytics.data.v1alpha.IChatRequest): Promise<google.analytics.data.v1alpha.ChatResponse>;
5153
+
5024
5154
  /**
5025
5155
  * Calls RunReport.
5026
5156
  * @param request RunReportRequest message or plain object
@@ -5143,6 +5273,13 @@ export namespace google {
5143
5273
  */
5144
5274
  type ListReportTasksCallback = (error: (Error|null), response?: google.analytics.data.v1alpha.ListReportTasksResponse) => void;
5145
5275
 
5276
+ /**
5277
+ * Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|chat}.
5278
+ * @param error Error, if any
5279
+ * @param [response] ChatResponse
5280
+ */
5281
+ type ChatCallback = (error: (Error|null), response?: google.analytics.data.v1alpha.ChatResponse) => void;
5282
+
5146
5283
  /**
5147
5284
  * Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|runReport}.
5148
5285
  * @param error Error, if any
@@ -8653,6 +8790,230 @@ export namespace google {
8653
8790
  public static getTypeUrl(typeUrlPrefix?: string): string;
8654
8791
  }
8655
8792
 
8793
+ /** Properties of a ChatRequest. */
8794
+ interface IChatRequest {
8795
+
8796
+ /** ChatRequest property */
8797
+ property?: (string|null);
8798
+
8799
+ /** ChatRequest userQuery */
8800
+ userQuery?: (string|null);
8801
+
8802
+ /** ChatRequest sessionId */
8803
+ sessionId?: (string|null);
8804
+
8805
+ /** ChatRequest returnPropertyQuota */
8806
+ returnPropertyQuota?: (boolean|null);
8807
+ }
8808
+
8809
+ /** Represents a ChatRequest. */
8810
+ class ChatRequest implements IChatRequest {
8811
+
8812
+ /**
8813
+ * Constructs a new ChatRequest.
8814
+ * @param [properties] Properties to set
8815
+ */
8816
+ constructor(properties?: google.analytics.data.v1alpha.IChatRequest);
8817
+
8818
+ /** ChatRequest property. */
8819
+ public property: string;
8820
+
8821
+ /** ChatRequest userQuery. */
8822
+ public userQuery: string;
8823
+
8824
+ /** ChatRequest sessionId. */
8825
+ public sessionId?: (string|null);
8826
+
8827
+ /** ChatRequest returnPropertyQuota. */
8828
+ public returnPropertyQuota: boolean;
8829
+
8830
+ /**
8831
+ * Creates a new ChatRequest instance using the specified properties.
8832
+ * @param [properties] Properties to set
8833
+ * @returns ChatRequest instance
8834
+ */
8835
+ public static create(properties?: google.analytics.data.v1alpha.IChatRequest): google.analytics.data.v1alpha.ChatRequest;
8836
+
8837
+ /**
8838
+ * Encodes the specified ChatRequest message. Does not implicitly {@link google.analytics.data.v1alpha.ChatRequest.verify|verify} messages.
8839
+ * @param message ChatRequest message or plain object to encode
8840
+ * @param [writer] Writer to encode to
8841
+ * @returns Writer
8842
+ */
8843
+ public static encode(message: google.analytics.data.v1alpha.IChatRequest, writer?: $protobuf.Writer): $protobuf.Writer;
8844
+
8845
+ /**
8846
+ * Encodes the specified ChatRequest message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ChatRequest.verify|verify} messages.
8847
+ * @param message ChatRequest message or plain object to encode
8848
+ * @param [writer] Writer to encode to
8849
+ * @returns Writer
8850
+ */
8851
+ public static encodeDelimited(message: google.analytics.data.v1alpha.IChatRequest, writer?: $protobuf.Writer): $protobuf.Writer;
8852
+
8853
+ /**
8854
+ * Decodes a ChatRequest message from the specified reader or buffer.
8855
+ * @param reader Reader or buffer to decode from
8856
+ * @param [length] Message length if known beforehand
8857
+ * @returns ChatRequest
8858
+ * @throws {Error} If the payload is not a reader or valid buffer
8859
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
8860
+ */
8861
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ChatRequest;
8862
+
8863
+ /**
8864
+ * Decodes a ChatRequest message from the specified reader or buffer, length delimited.
8865
+ * @param reader Reader or buffer to decode from
8866
+ * @returns ChatRequest
8867
+ * @throws {Error} If the payload is not a reader or valid buffer
8868
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
8869
+ */
8870
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ChatRequest;
8871
+
8872
+ /**
8873
+ * Verifies a ChatRequest message.
8874
+ * @param message Plain object to verify
8875
+ * @returns `null` if valid, otherwise the reason why it is not
8876
+ */
8877
+ public static verify(message: { [k: string]: any }): (string|null);
8878
+
8879
+ /**
8880
+ * Creates a ChatRequest message from a plain object. Also converts values to their respective internal types.
8881
+ * @param object Plain object
8882
+ * @returns ChatRequest
8883
+ */
8884
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ChatRequest;
8885
+
8886
+ /**
8887
+ * Creates a plain object from a ChatRequest message. Also converts values to other types if specified.
8888
+ * @param message ChatRequest
8889
+ * @param [options] Conversion options
8890
+ * @returns Plain object
8891
+ */
8892
+ public static toObject(message: google.analytics.data.v1alpha.ChatRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
8893
+
8894
+ /**
8895
+ * Converts this ChatRequest to JSON.
8896
+ * @returns JSON object
8897
+ */
8898
+ public toJSON(): { [k: string]: any };
8899
+
8900
+ /**
8901
+ * Gets the default type url for ChatRequest
8902
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
8903
+ * @returns The default type url
8904
+ */
8905
+ public static getTypeUrl(typeUrlPrefix?: string): string;
8906
+ }
8907
+
8908
+ /** Properties of a ChatResponse. */
8909
+ interface IChatResponse {
8910
+
8911
+ /** ChatResponse sessionId */
8912
+ sessionId?: (string|null);
8913
+
8914
+ /** ChatResponse blocks */
8915
+ blocks?: (google.analytics.data.v1alpha.IResponseBlock[]|null);
8916
+
8917
+ /** ChatResponse propertyQuota */
8918
+ propertyQuota?: (google.analytics.data.v1alpha.IPropertyChatQuota|null);
8919
+ }
8920
+
8921
+ /** Represents a ChatResponse. */
8922
+ class ChatResponse implements IChatResponse {
8923
+
8924
+ /**
8925
+ * Constructs a new ChatResponse.
8926
+ * @param [properties] Properties to set
8927
+ */
8928
+ constructor(properties?: google.analytics.data.v1alpha.IChatResponse);
8929
+
8930
+ /** ChatResponse sessionId. */
8931
+ public sessionId: string;
8932
+
8933
+ /** ChatResponse blocks. */
8934
+ public blocks: google.analytics.data.v1alpha.IResponseBlock[];
8935
+
8936
+ /** ChatResponse propertyQuota. */
8937
+ public propertyQuota?: (google.analytics.data.v1alpha.IPropertyChatQuota|null);
8938
+
8939
+ /**
8940
+ * Creates a new ChatResponse instance using the specified properties.
8941
+ * @param [properties] Properties to set
8942
+ * @returns ChatResponse instance
8943
+ */
8944
+ public static create(properties?: google.analytics.data.v1alpha.IChatResponse): google.analytics.data.v1alpha.ChatResponse;
8945
+
8946
+ /**
8947
+ * Encodes the specified ChatResponse message. Does not implicitly {@link google.analytics.data.v1alpha.ChatResponse.verify|verify} messages.
8948
+ * @param message ChatResponse message or plain object to encode
8949
+ * @param [writer] Writer to encode to
8950
+ * @returns Writer
8951
+ */
8952
+ public static encode(message: google.analytics.data.v1alpha.IChatResponse, writer?: $protobuf.Writer): $protobuf.Writer;
8953
+
8954
+ /**
8955
+ * Encodes the specified ChatResponse message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ChatResponse.verify|verify} messages.
8956
+ * @param message ChatResponse message or plain object to encode
8957
+ * @param [writer] Writer to encode to
8958
+ * @returns Writer
8959
+ */
8960
+ public static encodeDelimited(message: google.analytics.data.v1alpha.IChatResponse, writer?: $protobuf.Writer): $protobuf.Writer;
8961
+
8962
+ /**
8963
+ * Decodes a ChatResponse message from the specified reader or buffer.
8964
+ * @param reader Reader or buffer to decode from
8965
+ * @param [length] Message length if known beforehand
8966
+ * @returns ChatResponse
8967
+ * @throws {Error} If the payload is not a reader or valid buffer
8968
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
8969
+ */
8970
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ChatResponse;
8971
+
8972
+ /**
8973
+ * Decodes a ChatResponse message from the specified reader or buffer, length delimited.
8974
+ * @param reader Reader or buffer to decode from
8975
+ * @returns ChatResponse
8976
+ * @throws {Error} If the payload is not a reader or valid buffer
8977
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
8978
+ */
8979
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ChatResponse;
8980
+
8981
+ /**
8982
+ * Verifies a ChatResponse message.
8983
+ * @param message Plain object to verify
8984
+ * @returns `null` if valid, otherwise the reason why it is not
8985
+ */
8986
+ public static verify(message: { [k: string]: any }): (string|null);
8987
+
8988
+ /**
8989
+ * Creates a ChatResponse message from a plain object. Also converts values to their respective internal types.
8990
+ * @param object Plain object
8991
+ * @returns ChatResponse
8992
+ */
8993
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ChatResponse;
8994
+
8995
+ /**
8996
+ * Creates a plain object from a ChatResponse message. Also converts values to other types if specified.
8997
+ * @param message ChatResponse
8998
+ * @param [options] Conversion options
8999
+ * @returns Plain object
9000
+ */
9001
+ public static toObject(message: google.analytics.data.v1alpha.ChatResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
9002
+
9003
+ /**
9004
+ * Converts this ChatResponse to JSON.
9005
+ * @returns JSON object
9006
+ */
9007
+ public toJSON(): { [k: string]: any };
9008
+
9009
+ /**
9010
+ * Gets the default type url for ChatResponse
9011
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
9012
+ * @returns The default type url
9013
+ */
9014
+ public static getTypeUrl(typeUrlPrefix?: string): string;
9015
+ }
9016
+
8656
9017
  /** Properties of a RunReportRequest. */
8657
9018
  interface IRunReportRequest {
8658
9019
 
@@ -11744,6 +12105,9 @@ export namespace google {
11744
12105
 
11745
12106
  /** ResponseMetaData section */
11746
12107
  section?: (google.analytics.data.v1alpha.Section|keyof typeof google.analytics.data.v1alpha.Section|null);
12108
+
12109
+ /** ResponseMetaData dataTruncationReasons */
12110
+ dataTruncationReasons?: (google.analytics.data.v1alpha.ResponseMetaData.IDataTruncationReason[]|null);
11747
12111
  }
11748
12112
 
11749
12113
  /** Represents a ResponseMetaData. */
@@ -11779,6 +12143,9 @@ export namespace google {
11779
12143
  /** ResponseMetaData section. */
11780
12144
  public section: (google.analytics.data.v1alpha.Section|keyof typeof google.analytics.data.v1alpha.Section);
11781
12145
 
12146
+ /** ResponseMetaData dataTruncationReasons. */
12147
+ public dataTruncationReasons: google.analytics.data.v1alpha.ResponseMetaData.IDataTruncationReason[];
12148
+
11782
12149
  /**
11783
12150
  * Creates a new ResponseMetaData instance using the specified properties.
11784
12151
  * @param [properties] Properties to set
@@ -12061,44 +12428,280 @@ export namespace google {
12061
12428
  public static getTypeUrl(typeUrlPrefix?: string): string;
12062
12429
  }
12063
12430
  }
12064
- }
12065
12431
 
12066
- /** Properties of a DimensionHeader. */
12067
- interface IDimensionHeader {
12432
+ /** Properties of a DataTruncationReason. */
12433
+ interface IDataTruncationReason {
12068
12434
 
12069
- /** DimensionHeader name */
12070
- name?: (string|null);
12071
- }
12435
+ /** DataTruncationReason dataTruncationType */
12436
+ dataTruncationType?: (google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.DataTruncationType|keyof typeof google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.DataTruncationType|null);
12072
12437
 
12073
- /** Represents a DimensionHeader. */
12074
- class DimensionHeader implements IDimensionHeader {
12438
+ /** DataTruncationReason dataTruncationMessage */
12439
+ dataTruncationMessage?: (string|null);
12075
12440
 
12076
- /**
12077
- * Constructs a new DimensionHeader.
12078
- * @param [properties] Properties to set
12079
- */
12080
- constructor(properties?: google.analytics.data.v1alpha.IDimensionHeader);
12441
+ /** DataTruncationReason dataTruncationDate */
12442
+ dataTruncationDate?: (string|null);
12081
12443
 
12082
- /** DimensionHeader name. */
12083
- public name: string;
12444
+ /** DataTruncationReason dataTruncationDateRanges */
12445
+ dataTruncationDateRanges?: (google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.IDataTruncationDateRange[]|null);
12446
+ }
12084
12447
 
12085
- /**
12086
- * Creates a new DimensionHeader instance using the specified properties.
12087
- * @param [properties] Properties to set
12088
- * @returns DimensionHeader instance
12089
- */
12090
- public static create(properties?: google.analytics.data.v1alpha.IDimensionHeader): google.analytics.data.v1alpha.DimensionHeader;
12448
+ /** Represents a DataTruncationReason. */
12449
+ class DataTruncationReason implements IDataTruncationReason {
12091
12450
 
12092
- /**
12093
- * Encodes the specified DimensionHeader message. Does not implicitly {@link google.analytics.data.v1alpha.DimensionHeader.verify|verify} messages.
12094
- * @param message DimensionHeader message or plain object to encode
12095
- * @param [writer] Writer to encode to
12096
- * @returns Writer
12097
- */
12098
- public static encode(message: google.analytics.data.v1alpha.IDimensionHeader, writer?: $protobuf.Writer): $protobuf.Writer;
12451
+ /**
12452
+ * Constructs a new DataTruncationReason.
12453
+ * @param [properties] Properties to set
12454
+ */
12455
+ constructor(properties?: google.analytics.data.v1alpha.ResponseMetaData.IDataTruncationReason);
12099
12456
 
12100
- /**
12101
- * Encodes the specified DimensionHeader message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.DimensionHeader.verify|verify} messages.
12457
+ /** DataTruncationReason dataTruncationType. */
12458
+ public dataTruncationType?: (google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.DataTruncationType|keyof typeof google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.DataTruncationType|null);
12459
+
12460
+ /** DataTruncationReason dataTruncationMessage. */
12461
+ public dataTruncationMessage?: (string|null);
12462
+
12463
+ /** DataTruncationReason dataTruncationDate. */
12464
+ public dataTruncationDate?: (string|null);
12465
+
12466
+ /** DataTruncationReason dataTruncationDateRanges. */
12467
+ public dataTruncationDateRanges: google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.IDataTruncationDateRange[];
12468
+
12469
+ /**
12470
+ * Creates a new DataTruncationReason instance using the specified properties.
12471
+ * @param [properties] Properties to set
12472
+ * @returns DataTruncationReason instance
12473
+ */
12474
+ public static create(properties?: google.analytics.data.v1alpha.ResponseMetaData.IDataTruncationReason): google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason;
12475
+
12476
+ /**
12477
+ * Encodes the specified DataTruncationReason message. Does not implicitly {@link google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.verify|verify} messages.
12478
+ * @param message DataTruncationReason message or plain object to encode
12479
+ * @param [writer] Writer to encode to
12480
+ * @returns Writer
12481
+ */
12482
+ public static encode(message: google.analytics.data.v1alpha.ResponseMetaData.IDataTruncationReason, writer?: $protobuf.Writer): $protobuf.Writer;
12483
+
12484
+ /**
12485
+ * Encodes the specified DataTruncationReason message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.verify|verify} messages.
12486
+ * @param message DataTruncationReason message or plain object to encode
12487
+ * @param [writer] Writer to encode to
12488
+ * @returns Writer
12489
+ */
12490
+ public static encodeDelimited(message: google.analytics.data.v1alpha.ResponseMetaData.IDataTruncationReason, writer?: $protobuf.Writer): $protobuf.Writer;
12491
+
12492
+ /**
12493
+ * Decodes a DataTruncationReason message from the specified reader or buffer.
12494
+ * @param reader Reader or buffer to decode from
12495
+ * @param [length] Message length if known beforehand
12496
+ * @returns DataTruncationReason
12497
+ * @throws {Error} If the payload is not a reader or valid buffer
12498
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
12499
+ */
12500
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason;
12501
+
12502
+ /**
12503
+ * Decodes a DataTruncationReason message from the specified reader or buffer, length delimited.
12504
+ * @param reader Reader or buffer to decode from
12505
+ * @returns DataTruncationReason
12506
+ * @throws {Error} If the payload is not a reader or valid buffer
12507
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
12508
+ */
12509
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason;
12510
+
12511
+ /**
12512
+ * Verifies a DataTruncationReason message.
12513
+ * @param message Plain object to verify
12514
+ * @returns `null` if valid, otherwise the reason why it is not
12515
+ */
12516
+ public static verify(message: { [k: string]: any }): (string|null);
12517
+
12518
+ /**
12519
+ * Creates a DataTruncationReason message from a plain object. Also converts values to their respective internal types.
12520
+ * @param object Plain object
12521
+ * @returns DataTruncationReason
12522
+ */
12523
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason;
12524
+
12525
+ /**
12526
+ * Creates a plain object from a DataTruncationReason message. Also converts values to other types if specified.
12527
+ * @param message DataTruncationReason
12528
+ * @param [options] Conversion options
12529
+ * @returns Plain object
12530
+ */
12531
+ public static toObject(message: google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason, options?: $protobuf.IConversionOptions): { [k: string]: any };
12532
+
12533
+ /**
12534
+ * Converts this DataTruncationReason to JSON.
12535
+ * @returns JSON object
12536
+ */
12537
+ public toJSON(): { [k: string]: any };
12538
+
12539
+ /**
12540
+ * Gets the default type url for DataTruncationReason
12541
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
12542
+ * @returns The default type url
12543
+ */
12544
+ public static getTypeUrl(typeUrlPrefix?: string): string;
12545
+ }
12546
+
12547
+ namespace DataTruncationReason {
12548
+
12549
+ /** DataTruncationType enum. */
12550
+ enum DataTruncationType {
12551
+ DATA_TRUNCATION_TYPE_UNSPECIFIED = 0,
12552
+ DATA_TRUNCATION_TYPE_RULES_BASED_MODELS = 1,
12553
+ DATA_TRUNCATION_TYPE_DATA_DRIVEN_ATTRIBUTION = 2,
12554
+ DATA_TRUNCATION_TYPE_DV360 = 3,
12555
+ DATA_TRUNCATION_TYPE_CM360 = 4,
12556
+ DATA_TRUNCATION_TYPE_ITEM_SCOPED_ECOMMERCE_METRICS = 5,
12557
+ DATA_TRUNCATION_TYPE_EVENT_SCOPED_ECOMMERCE_METRICS = 6,
12558
+ DATA_TRUNCATION_TYPE_DATE_RANGE = 7,
12559
+ DATA_TRUNCATION_TYPE_PROPERTY = 8,
12560
+ DATA_TRUNCATION_TYPE_CONVERSIONS = 9,
12561
+ DATA_TRUNCATION_TYPE_GOOGLE_ADS = 10
12562
+ }
12563
+
12564
+ /** Properties of a DataTruncationDateRange. */
12565
+ interface IDataTruncationDateRange {
12566
+
12567
+ /** DataTruncationDateRange startDate */
12568
+ startDate?: (string|null);
12569
+
12570
+ /** DataTruncationDateRange endDate */
12571
+ endDate?: (string|null);
12572
+ }
12573
+
12574
+ /** Represents a DataTruncationDateRange. */
12575
+ class DataTruncationDateRange implements IDataTruncationDateRange {
12576
+
12577
+ /**
12578
+ * Constructs a new DataTruncationDateRange.
12579
+ * @param [properties] Properties to set
12580
+ */
12581
+ constructor(properties?: google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.IDataTruncationDateRange);
12582
+
12583
+ /** DataTruncationDateRange startDate. */
12584
+ public startDate?: (string|null);
12585
+
12586
+ /** DataTruncationDateRange endDate. */
12587
+ public endDate?: (string|null);
12588
+
12589
+ /**
12590
+ * Creates a new DataTruncationDateRange instance using the specified properties.
12591
+ * @param [properties] Properties to set
12592
+ * @returns DataTruncationDateRange instance
12593
+ */
12594
+ public static create(properties?: google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.IDataTruncationDateRange): google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.DataTruncationDateRange;
12595
+
12596
+ /**
12597
+ * Encodes the specified DataTruncationDateRange message. Does not implicitly {@link google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.DataTruncationDateRange.verify|verify} messages.
12598
+ * @param message DataTruncationDateRange message or plain object to encode
12599
+ * @param [writer] Writer to encode to
12600
+ * @returns Writer
12601
+ */
12602
+ public static encode(message: google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.IDataTruncationDateRange, writer?: $protobuf.Writer): $protobuf.Writer;
12603
+
12604
+ /**
12605
+ * Encodes the specified DataTruncationDateRange message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.DataTruncationDateRange.verify|verify} messages.
12606
+ * @param message DataTruncationDateRange message or plain object to encode
12607
+ * @param [writer] Writer to encode to
12608
+ * @returns Writer
12609
+ */
12610
+ public static encodeDelimited(message: google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.IDataTruncationDateRange, writer?: $protobuf.Writer): $protobuf.Writer;
12611
+
12612
+ /**
12613
+ * Decodes a DataTruncationDateRange message from the specified reader or buffer.
12614
+ * @param reader Reader or buffer to decode from
12615
+ * @param [length] Message length if known beforehand
12616
+ * @returns DataTruncationDateRange
12617
+ * @throws {Error} If the payload is not a reader or valid buffer
12618
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
12619
+ */
12620
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.DataTruncationDateRange;
12621
+
12622
+ /**
12623
+ * Decodes a DataTruncationDateRange message from the specified reader or buffer, length delimited.
12624
+ * @param reader Reader or buffer to decode from
12625
+ * @returns DataTruncationDateRange
12626
+ * @throws {Error} If the payload is not a reader or valid buffer
12627
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
12628
+ */
12629
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.DataTruncationDateRange;
12630
+
12631
+ /**
12632
+ * Verifies a DataTruncationDateRange message.
12633
+ * @param message Plain object to verify
12634
+ * @returns `null` if valid, otherwise the reason why it is not
12635
+ */
12636
+ public static verify(message: { [k: string]: any }): (string|null);
12637
+
12638
+ /**
12639
+ * Creates a DataTruncationDateRange message from a plain object. Also converts values to their respective internal types.
12640
+ * @param object Plain object
12641
+ * @returns DataTruncationDateRange
12642
+ */
12643
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.DataTruncationDateRange;
12644
+
12645
+ /**
12646
+ * Creates a plain object from a DataTruncationDateRange message. Also converts values to other types if specified.
12647
+ * @param message DataTruncationDateRange
12648
+ * @param [options] Conversion options
12649
+ * @returns Plain object
12650
+ */
12651
+ public static toObject(message: google.analytics.data.v1alpha.ResponseMetaData.DataTruncationReason.DataTruncationDateRange, options?: $protobuf.IConversionOptions): { [k: string]: any };
12652
+
12653
+ /**
12654
+ * Converts this DataTruncationDateRange to JSON.
12655
+ * @returns JSON object
12656
+ */
12657
+ public toJSON(): { [k: string]: any };
12658
+
12659
+ /**
12660
+ * Gets the default type url for DataTruncationDateRange
12661
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
12662
+ * @returns The default type url
12663
+ */
12664
+ public static getTypeUrl(typeUrlPrefix?: string): string;
12665
+ }
12666
+ }
12667
+ }
12668
+
12669
+ /** Properties of a DimensionHeader. */
12670
+ interface IDimensionHeader {
12671
+
12672
+ /** DimensionHeader name */
12673
+ name?: (string|null);
12674
+ }
12675
+
12676
+ /** Represents a DimensionHeader. */
12677
+ class DimensionHeader implements IDimensionHeader {
12678
+
12679
+ /**
12680
+ * Constructs a new DimensionHeader.
12681
+ * @param [properties] Properties to set
12682
+ */
12683
+ constructor(properties?: google.analytics.data.v1alpha.IDimensionHeader);
12684
+
12685
+ /** DimensionHeader name. */
12686
+ public name: string;
12687
+
12688
+ /**
12689
+ * Creates a new DimensionHeader instance using the specified properties.
12690
+ * @param [properties] Properties to set
12691
+ * @returns DimensionHeader instance
12692
+ */
12693
+ public static create(properties?: google.analytics.data.v1alpha.IDimensionHeader): google.analytics.data.v1alpha.DimensionHeader;
12694
+
12695
+ /**
12696
+ * Encodes the specified DimensionHeader message. Does not implicitly {@link google.analytics.data.v1alpha.DimensionHeader.verify|verify} messages.
12697
+ * @param message DimensionHeader message or plain object to encode
12698
+ * @param [writer] Writer to encode to
12699
+ * @returns Writer
12700
+ */
12701
+ public static encode(message: google.analytics.data.v1alpha.IDimensionHeader, writer?: $protobuf.Writer): $protobuf.Writer;
12702
+
12703
+ /**
12704
+ * Encodes the specified DimensionHeader message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.DimensionHeader.verify|verify} messages.
12102
12705
  * @param message DimensionHeader message or plain object to encode
12103
12706
  * @param [writer] Writer to encode to
12104
12707
  * @returns Writer
@@ -13327,12 +13930,521 @@ export namespace google {
13327
13930
  */
13328
13931
  public toJSON(): { [k: string]: any };
13329
13932
 
13330
- /**
13331
- * Gets the default type url for FunnelSubReport
13332
- * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
13333
- * @returns The default type url
13334
- */
13335
- public static getTypeUrl(typeUrlPrefix?: string): string;
13933
+ /**
13934
+ * Gets the default type url for FunnelSubReport
13935
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
13936
+ * @returns The default type url
13937
+ */
13938
+ public static getTypeUrl(typeUrlPrefix?: string): string;
13939
+ }
13940
+
13941
+ /** Properties of a ResponseBlock. */
13942
+ interface IResponseBlock {
13943
+
13944
+ /** ResponseBlock text */
13945
+ text?: (string|null);
13946
+
13947
+ /** ResponseBlock table */
13948
+ table?: (google.analytics.data.v1alpha.ResponseBlock.IDataTable|null);
13949
+ }
13950
+
13951
+ /** Represents a ResponseBlock. */
13952
+ class ResponseBlock implements IResponseBlock {
13953
+
13954
+ /**
13955
+ * Constructs a new ResponseBlock.
13956
+ * @param [properties] Properties to set
13957
+ */
13958
+ constructor(properties?: google.analytics.data.v1alpha.IResponseBlock);
13959
+
13960
+ /** ResponseBlock text. */
13961
+ public text?: (string|null);
13962
+
13963
+ /** ResponseBlock table. */
13964
+ public table?: (google.analytics.data.v1alpha.ResponseBlock.IDataTable|null);
13965
+
13966
+ /** ResponseBlock block. */
13967
+ public block?: ("text"|"table");
13968
+
13969
+ /**
13970
+ * Creates a new ResponseBlock instance using the specified properties.
13971
+ * @param [properties] Properties to set
13972
+ * @returns ResponseBlock instance
13973
+ */
13974
+ public static create(properties?: google.analytics.data.v1alpha.IResponseBlock): google.analytics.data.v1alpha.ResponseBlock;
13975
+
13976
+ /**
13977
+ * Encodes the specified ResponseBlock message. Does not implicitly {@link google.analytics.data.v1alpha.ResponseBlock.verify|verify} messages.
13978
+ * @param message ResponseBlock message or plain object to encode
13979
+ * @param [writer] Writer to encode to
13980
+ * @returns Writer
13981
+ */
13982
+ public static encode(message: google.analytics.data.v1alpha.IResponseBlock, writer?: $protobuf.Writer): $protobuf.Writer;
13983
+
13984
+ /**
13985
+ * Encodes the specified ResponseBlock message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ResponseBlock.verify|verify} messages.
13986
+ * @param message ResponseBlock message or plain object to encode
13987
+ * @param [writer] Writer to encode to
13988
+ * @returns Writer
13989
+ */
13990
+ public static encodeDelimited(message: google.analytics.data.v1alpha.IResponseBlock, writer?: $protobuf.Writer): $protobuf.Writer;
13991
+
13992
+ /**
13993
+ * Decodes a ResponseBlock message from the specified reader or buffer.
13994
+ * @param reader Reader or buffer to decode from
13995
+ * @param [length] Message length if known beforehand
13996
+ * @returns ResponseBlock
13997
+ * @throws {Error} If the payload is not a reader or valid buffer
13998
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
13999
+ */
14000
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ResponseBlock;
14001
+
14002
+ /**
14003
+ * Decodes a ResponseBlock message from the specified reader or buffer, length delimited.
14004
+ * @param reader Reader or buffer to decode from
14005
+ * @returns ResponseBlock
14006
+ * @throws {Error} If the payload is not a reader or valid buffer
14007
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14008
+ */
14009
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ResponseBlock;
14010
+
14011
+ /**
14012
+ * Verifies a ResponseBlock message.
14013
+ * @param message Plain object to verify
14014
+ * @returns `null` if valid, otherwise the reason why it is not
14015
+ */
14016
+ public static verify(message: { [k: string]: any }): (string|null);
14017
+
14018
+ /**
14019
+ * Creates a ResponseBlock message from a plain object. Also converts values to their respective internal types.
14020
+ * @param object Plain object
14021
+ * @returns ResponseBlock
14022
+ */
14023
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ResponseBlock;
14024
+
14025
+ /**
14026
+ * Creates a plain object from a ResponseBlock message. Also converts values to other types if specified.
14027
+ * @param message ResponseBlock
14028
+ * @param [options] Conversion options
14029
+ * @returns Plain object
14030
+ */
14031
+ public static toObject(message: google.analytics.data.v1alpha.ResponseBlock, options?: $protobuf.IConversionOptions): { [k: string]: any };
14032
+
14033
+ /**
14034
+ * Converts this ResponseBlock to JSON.
14035
+ * @returns JSON object
14036
+ */
14037
+ public toJSON(): { [k: string]: any };
14038
+
14039
+ /**
14040
+ * Gets the default type url for ResponseBlock
14041
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
14042
+ * @returns The default type url
14043
+ */
14044
+ public static getTypeUrl(typeUrlPrefix?: string): string;
14045
+ }
14046
+
14047
+ namespace ResponseBlock {
14048
+
14049
+ /** Properties of a DataTableCell. */
14050
+ interface IDataTableCell {
14051
+
14052
+ /** DataTableCell value */
14053
+ value?: (string|null);
14054
+ }
14055
+
14056
+ /** Represents a DataTableCell. */
14057
+ class DataTableCell implements IDataTableCell {
14058
+
14059
+ /**
14060
+ * Constructs a new DataTableCell.
14061
+ * @param [properties] Properties to set
14062
+ */
14063
+ constructor(properties?: google.analytics.data.v1alpha.ResponseBlock.IDataTableCell);
14064
+
14065
+ /** DataTableCell value. */
14066
+ public value: string;
14067
+
14068
+ /**
14069
+ * Creates a new DataTableCell instance using the specified properties.
14070
+ * @param [properties] Properties to set
14071
+ * @returns DataTableCell instance
14072
+ */
14073
+ public static create(properties?: google.analytics.data.v1alpha.ResponseBlock.IDataTableCell): google.analytics.data.v1alpha.ResponseBlock.DataTableCell;
14074
+
14075
+ /**
14076
+ * Encodes the specified DataTableCell message. Does not implicitly {@link google.analytics.data.v1alpha.ResponseBlock.DataTableCell.verify|verify} messages.
14077
+ * @param message DataTableCell message or plain object to encode
14078
+ * @param [writer] Writer to encode to
14079
+ * @returns Writer
14080
+ */
14081
+ public static encode(message: google.analytics.data.v1alpha.ResponseBlock.IDataTableCell, writer?: $protobuf.Writer): $protobuf.Writer;
14082
+
14083
+ /**
14084
+ * Encodes the specified DataTableCell message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ResponseBlock.DataTableCell.verify|verify} messages.
14085
+ * @param message DataTableCell message or plain object to encode
14086
+ * @param [writer] Writer to encode to
14087
+ * @returns Writer
14088
+ */
14089
+ public static encodeDelimited(message: google.analytics.data.v1alpha.ResponseBlock.IDataTableCell, writer?: $protobuf.Writer): $protobuf.Writer;
14090
+
14091
+ /**
14092
+ * Decodes a DataTableCell message from the specified reader or buffer.
14093
+ * @param reader Reader or buffer to decode from
14094
+ * @param [length] Message length if known beforehand
14095
+ * @returns DataTableCell
14096
+ * @throws {Error} If the payload is not a reader or valid buffer
14097
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14098
+ */
14099
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ResponseBlock.DataTableCell;
14100
+
14101
+ /**
14102
+ * Decodes a DataTableCell message from the specified reader or buffer, length delimited.
14103
+ * @param reader Reader or buffer to decode from
14104
+ * @returns DataTableCell
14105
+ * @throws {Error} If the payload is not a reader or valid buffer
14106
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14107
+ */
14108
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ResponseBlock.DataTableCell;
14109
+
14110
+ /**
14111
+ * Verifies a DataTableCell message.
14112
+ * @param message Plain object to verify
14113
+ * @returns `null` if valid, otherwise the reason why it is not
14114
+ */
14115
+ public static verify(message: { [k: string]: any }): (string|null);
14116
+
14117
+ /**
14118
+ * Creates a DataTableCell message from a plain object. Also converts values to their respective internal types.
14119
+ * @param object Plain object
14120
+ * @returns DataTableCell
14121
+ */
14122
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ResponseBlock.DataTableCell;
14123
+
14124
+ /**
14125
+ * Creates a plain object from a DataTableCell message. Also converts values to other types if specified.
14126
+ * @param message DataTableCell
14127
+ * @param [options] Conversion options
14128
+ * @returns Plain object
14129
+ */
14130
+ public static toObject(message: google.analytics.data.v1alpha.ResponseBlock.DataTableCell, options?: $protobuf.IConversionOptions): { [k: string]: any };
14131
+
14132
+ /**
14133
+ * Converts this DataTableCell to JSON.
14134
+ * @returns JSON object
14135
+ */
14136
+ public toJSON(): { [k: string]: any };
14137
+
14138
+ /**
14139
+ * Gets the default type url for DataTableCell
14140
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
14141
+ * @returns The default type url
14142
+ */
14143
+ public static getTypeUrl(typeUrlPrefix?: string): string;
14144
+ }
14145
+
14146
+ /** Properties of a DataTableHeader. */
14147
+ interface IDataTableHeader {
14148
+
14149
+ /** DataTableHeader header */
14150
+ header?: (string|null);
14151
+
14152
+ /** DataTableHeader dataType */
14153
+ dataType?: (string|null);
14154
+ }
14155
+
14156
+ /** Represents a DataTableHeader. */
14157
+ class DataTableHeader implements IDataTableHeader {
14158
+
14159
+ /**
14160
+ * Constructs a new DataTableHeader.
14161
+ * @param [properties] Properties to set
14162
+ */
14163
+ constructor(properties?: google.analytics.data.v1alpha.ResponseBlock.IDataTableHeader);
14164
+
14165
+ /** DataTableHeader header. */
14166
+ public header: string;
14167
+
14168
+ /** DataTableHeader dataType. */
14169
+ public dataType: string;
14170
+
14171
+ /**
14172
+ * Creates a new DataTableHeader instance using the specified properties.
14173
+ * @param [properties] Properties to set
14174
+ * @returns DataTableHeader instance
14175
+ */
14176
+ public static create(properties?: google.analytics.data.v1alpha.ResponseBlock.IDataTableHeader): google.analytics.data.v1alpha.ResponseBlock.DataTableHeader;
14177
+
14178
+ /**
14179
+ * Encodes the specified DataTableHeader message. Does not implicitly {@link google.analytics.data.v1alpha.ResponseBlock.DataTableHeader.verify|verify} messages.
14180
+ * @param message DataTableHeader message or plain object to encode
14181
+ * @param [writer] Writer to encode to
14182
+ * @returns Writer
14183
+ */
14184
+ public static encode(message: google.analytics.data.v1alpha.ResponseBlock.IDataTableHeader, writer?: $protobuf.Writer): $protobuf.Writer;
14185
+
14186
+ /**
14187
+ * Encodes the specified DataTableHeader message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ResponseBlock.DataTableHeader.verify|verify} messages.
14188
+ * @param message DataTableHeader message or plain object to encode
14189
+ * @param [writer] Writer to encode to
14190
+ * @returns Writer
14191
+ */
14192
+ public static encodeDelimited(message: google.analytics.data.v1alpha.ResponseBlock.IDataTableHeader, writer?: $protobuf.Writer): $protobuf.Writer;
14193
+
14194
+ /**
14195
+ * Decodes a DataTableHeader message from the specified reader or buffer.
14196
+ * @param reader Reader or buffer to decode from
14197
+ * @param [length] Message length if known beforehand
14198
+ * @returns DataTableHeader
14199
+ * @throws {Error} If the payload is not a reader or valid buffer
14200
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14201
+ */
14202
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ResponseBlock.DataTableHeader;
14203
+
14204
+ /**
14205
+ * Decodes a DataTableHeader message from the specified reader or buffer, length delimited.
14206
+ * @param reader Reader or buffer to decode from
14207
+ * @returns DataTableHeader
14208
+ * @throws {Error} If the payload is not a reader or valid buffer
14209
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14210
+ */
14211
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ResponseBlock.DataTableHeader;
14212
+
14213
+ /**
14214
+ * Verifies a DataTableHeader message.
14215
+ * @param message Plain object to verify
14216
+ * @returns `null` if valid, otherwise the reason why it is not
14217
+ */
14218
+ public static verify(message: { [k: string]: any }): (string|null);
14219
+
14220
+ /**
14221
+ * Creates a DataTableHeader message from a plain object. Also converts values to their respective internal types.
14222
+ * @param object Plain object
14223
+ * @returns DataTableHeader
14224
+ */
14225
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ResponseBlock.DataTableHeader;
14226
+
14227
+ /**
14228
+ * Creates a plain object from a DataTableHeader message. Also converts values to other types if specified.
14229
+ * @param message DataTableHeader
14230
+ * @param [options] Conversion options
14231
+ * @returns Plain object
14232
+ */
14233
+ public static toObject(message: google.analytics.data.v1alpha.ResponseBlock.DataTableHeader, options?: $protobuf.IConversionOptions): { [k: string]: any };
14234
+
14235
+ /**
14236
+ * Converts this DataTableHeader to JSON.
14237
+ * @returns JSON object
14238
+ */
14239
+ public toJSON(): { [k: string]: any };
14240
+
14241
+ /**
14242
+ * Gets the default type url for DataTableHeader
14243
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
14244
+ * @returns The default type url
14245
+ */
14246
+ public static getTypeUrl(typeUrlPrefix?: string): string;
14247
+ }
14248
+
14249
+ /** Properties of a DataTableRow. */
14250
+ interface IDataTableRow {
14251
+
14252
+ /** DataTableRow columns */
14253
+ columns?: (google.analytics.data.v1alpha.ResponseBlock.IDataTableCell[]|null);
14254
+ }
14255
+
14256
+ /** Represents a DataTableRow. */
14257
+ class DataTableRow implements IDataTableRow {
14258
+
14259
+ /**
14260
+ * Constructs a new DataTableRow.
14261
+ * @param [properties] Properties to set
14262
+ */
14263
+ constructor(properties?: google.analytics.data.v1alpha.ResponseBlock.IDataTableRow);
14264
+
14265
+ /** DataTableRow columns. */
14266
+ public columns: google.analytics.data.v1alpha.ResponseBlock.IDataTableCell[];
14267
+
14268
+ /**
14269
+ * Creates a new DataTableRow instance using the specified properties.
14270
+ * @param [properties] Properties to set
14271
+ * @returns DataTableRow instance
14272
+ */
14273
+ public static create(properties?: google.analytics.data.v1alpha.ResponseBlock.IDataTableRow): google.analytics.data.v1alpha.ResponseBlock.DataTableRow;
14274
+
14275
+ /**
14276
+ * Encodes the specified DataTableRow message. Does not implicitly {@link google.analytics.data.v1alpha.ResponseBlock.DataTableRow.verify|verify} messages.
14277
+ * @param message DataTableRow message or plain object to encode
14278
+ * @param [writer] Writer to encode to
14279
+ * @returns Writer
14280
+ */
14281
+ public static encode(message: google.analytics.data.v1alpha.ResponseBlock.IDataTableRow, writer?: $protobuf.Writer): $protobuf.Writer;
14282
+
14283
+ /**
14284
+ * Encodes the specified DataTableRow message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ResponseBlock.DataTableRow.verify|verify} messages.
14285
+ * @param message DataTableRow message or plain object to encode
14286
+ * @param [writer] Writer to encode to
14287
+ * @returns Writer
14288
+ */
14289
+ public static encodeDelimited(message: google.analytics.data.v1alpha.ResponseBlock.IDataTableRow, writer?: $protobuf.Writer): $protobuf.Writer;
14290
+
14291
+ /**
14292
+ * Decodes a DataTableRow message from the specified reader or buffer.
14293
+ * @param reader Reader or buffer to decode from
14294
+ * @param [length] Message length if known beforehand
14295
+ * @returns DataTableRow
14296
+ * @throws {Error} If the payload is not a reader or valid buffer
14297
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14298
+ */
14299
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ResponseBlock.DataTableRow;
14300
+
14301
+ /**
14302
+ * Decodes a DataTableRow message from the specified reader or buffer, length delimited.
14303
+ * @param reader Reader or buffer to decode from
14304
+ * @returns DataTableRow
14305
+ * @throws {Error} If the payload is not a reader or valid buffer
14306
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14307
+ */
14308
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ResponseBlock.DataTableRow;
14309
+
14310
+ /**
14311
+ * Verifies a DataTableRow message.
14312
+ * @param message Plain object to verify
14313
+ * @returns `null` if valid, otherwise the reason why it is not
14314
+ */
14315
+ public static verify(message: { [k: string]: any }): (string|null);
14316
+
14317
+ /**
14318
+ * Creates a DataTableRow message from a plain object. Also converts values to their respective internal types.
14319
+ * @param object Plain object
14320
+ * @returns DataTableRow
14321
+ */
14322
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ResponseBlock.DataTableRow;
14323
+
14324
+ /**
14325
+ * Creates a plain object from a DataTableRow message. Also converts values to other types if specified.
14326
+ * @param message DataTableRow
14327
+ * @param [options] Conversion options
14328
+ * @returns Plain object
14329
+ */
14330
+ public static toObject(message: google.analytics.data.v1alpha.ResponseBlock.DataTableRow, options?: $protobuf.IConversionOptions): { [k: string]: any };
14331
+
14332
+ /**
14333
+ * Converts this DataTableRow to JSON.
14334
+ * @returns JSON object
14335
+ */
14336
+ public toJSON(): { [k: string]: any };
14337
+
14338
+ /**
14339
+ * Gets the default type url for DataTableRow
14340
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
14341
+ * @returns The default type url
14342
+ */
14343
+ public static getTypeUrl(typeUrlPrefix?: string): string;
14344
+ }
14345
+
14346
+ /** Properties of a DataTable. */
14347
+ interface IDataTable {
14348
+
14349
+ /** DataTable headers */
14350
+ headers?: (google.analytics.data.v1alpha.ResponseBlock.IDataTableHeader[]|null);
14351
+
14352
+ /** DataTable rows */
14353
+ rows?: (google.analytics.data.v1alpha.ResponseBlock.IDataTableRow[]|null);
14354
+ }
14355
+
14356
+ /** Represents a DataTable. */
14357
+ class DataTable implements IDataTable {
14358
+
14359
+ /**
14360
+ * Constructs a new DataTable.
14361
+ * @param [properties] Properties to set
14362
+ */
14363
+ constructor(properties?: google.analytics.data.v1alpha.ResponseBlock.IDataTable);
14364
+
14365
+ /** DataTable headers. */
14366
+ public headers: google.analytics.data.v1alpha.ResponseBlock.IDataTableHeader[];
14367
+
14368
+ /** DataTable rows. */
14369
+ public rows: google.analytics.data.v1alpha.ResponseBlock.IDataTableRow[];
14370
+
14371
+ /**
14372
+ * Creates a new DataTable instance using the specified properties.
14373
+ * @param [properties] Properties to set
14374
+ * @returns DataTable instance
14375
+ */
14376
+ public static create(properties?: google.analytics.data.v1alpha.ResponseBlock.IDataTable): google.analytics.data.v1alpha.ResponseBlock.DataTable;
14377
+
14378
+ /**
14379
+ * Encodes the specified DataTable message. Does not implicitly {@link google.analytics.data.v1alpha.ResponseBlock.DataTable.verify|verify} messages.
14380
+ * @param message DataTable message or plain object to encode
14381
+ * @param [writer] Writer to encode to
14382
+ * @returns Writer
14383
+ */
14384
+ public static encode(message: google.analytics.data.v1alpha.ResponseBlock.IDataTable, writer?: $protobuf.Writer): $protobuf.Writer;
14385
+
14386
+ /**
14387
+ * Encodes the specified DataTable message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ResponseBlock.DataTable.verify|verify} messages.
14388
+ * @param message DataTable message or plain object to encode
14389
+ * @param [writer] Writer to encode to
14390
+ * @returns Writer
14391
+ */
14392
+ public static encodeDelimited(message: google.analytics.data.v1alpha.ResponseBlock.IDataTable, writer?: $protobuf.Writer): $protobuf.Writer;
14393
+
14394
+ /**
14395
+ * Decodes a DataTable message from the specified reader or buffer.
14396
+ * @param reader Reader or buffer to decode from
14397
+ * @param [length] Message length if known beforehand
14398
+ * @returns DataTable
14399
+ * @throws {Error} If the payload is not a reader or valid buffer
14400
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14401
+ */
14402
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ResponseBlock.DataTable;
14403
+
14404
+ /**
14405
+ * Decodes a DataTable message from the specified reader or buffer, length delimited.
14406
+ * @param reader Reader or buffer to decode from
14407
+ * @returns DataTable
14408
+ * @throws {Error} If the payload is not a reader or valid buffer
14409
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
14410
+ */
14411
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ResponseBlock.DataTable;
14412
+
14413
+ /**
14414
+ * Verifies a DataTable message.
14415
+ * @param message Plain object to verify
14416
+ * @returns `null` if valid, otherwise the reason why it is not
14417
+ */
14418
+ public static verify(message: { [k: string]: any }): (string|null);
14419
+
14420
+ /**
14421
+ * Creates a DataTable message from a plain object. Also converts values to their respective internal types.
14422
+ * @param object Plain object
14423
+ * @returns DataTable
14424
+ */
14425
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ResponseBlock.DataTable;
14426
+
14427
+ /**
14428
+ * Creates a plain object from a DataTable message. Also converts values to other types if specified.
14429
+ * @param message DataTable
14430
+ * @param [options] Conversion options
14431
+ * @returns Plain object
14432
+ */
14433
+ public static toObject(message: google.analytics.data.v1alpha.ResponseBlock.DataTable, options?: $protobuf.IConversionOptions): { [k: string]: any };
14434
+
14435
+ /**
14436
+ * Converts this DataTable to JSON.
14437
+ * @returns JSON object
14438
+ */
14439
+ public toJSON(): { [k: string]: any };
14440
+
14441
+ /**
14442
+ * Gets the default type url for DataTable
14443
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
14444
+ * @returns The default type url
14445
+ */
14446
+ public static getTypeUrl(typeUrlPrefix?: string): string;
14447
+ }
13336
14448
  }
13337
14449
 
13338
14450
  /** Properties of a UserSegment. */
@@ -17593,6 +18705,109 @@ export namespace google {
17593
18705
  */
17594
18706
  public static getTypeUrl(typeUrlPrefix?: string): string;
17595
18707
  }
18708
+
18709
+ /** Properties of a PropertyChatQuota. */
18710
+ interface IPropertyChatQuota {
18711
+
18712
+ /** PropertyChatQuota tokensPerDay */
18713
+ tokensPerDay?: (google.analytics.data.v1alpha.IQuotaStatus|null);
18714
+
18715
+ /** PropertyChatQuota tokensPerHour */
18716
+ tokensPerHour?: (google.analytics.data.v1alpha.IQuotaStatus|null);
18717
+ }
18718
+
18719
+ /** Represents a PropertyChatQuota. */
18720
+ class PropertyChatQuota implements IPropertyChatQuota {
18721
+
18722
+ /**
18723
+ * Constructs a new PropertyChatQuota.
18724
+ * @param [properties] Properties to set
18725
+ */
18726
+ constructor(properties?: google.analytics.data.v1alpha.IPropertyChatQuota);
18727
+
18728
+ /** PropertyChatQuota tokensPerDay. */
18729
+ public tokensPerDay?: (google.analytics.data.v1alpha.IQuotaStatus|null);
18730
+
18731
+ /** PropertyChatQuota tokensPerHour. */
18732
+ public tokensPerHour?: (google.analytics.data.v1alpha.IQuotaStatus|null);
18733
+
18734
+ /**
18735
+ * Creates a new PropertyChatQuota instance using the specified properties.
18736
+ * @param [properties] Properties to set
18737
+ * @returns PropertyChatQuota instance
18738
+ */
18739
+ public static create(properties?: google.analytics.data.v1alpha.IPropertyChatQuota): google.analytics.data.v1alpha.PropertyChatQuota;
18740
+
18741
+ /**
18742
+ * Encodes the specified PropertyChatQuota message. Does not implicitly {@link google.analytics.data.v1alpha.PropertyChatQuota.verify|verify} messages.
18743
+ * @param message PropertyChatQuota message or plain object to encode
18744
+ * @param [writer] Writer to encode to
18745
+ * @returns Writer
18746
+ */
18747
+ public static encode(message: google.analytics.data.v1alpha.IPropertyChatQuota, writer?: $protobuf.Writer): $protobuf.Writer;
18748
+
18749
+ /**
18750
+ * Encodes the specified PropertyChatQuota message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.PropertyChatQuota.verify|verify} messages.
18751
+ * @param message PropertyChatQuota message or plain object to encode
18752
+ * @param [writer] Writer to encode to
18753
+ * @returns Writer
18754
+ */
18755
+ public static encodeDelimited(message: google.analytics.data.v1alpha.IPropertyChatQuota, writer?: $protobuf.Writer): $protobuf.Writer;
18756
+
18757
+ /**
18758
+ * Decodes a PropertyChatQuota message from the specified reader or buffer.
18759
+ * @param reader Reader or buffer to decode from
18760
+ * @param [length] Message length if known beforehand
18761
+ * @returns PropertyChatQuota
18762
+ * @throws {Error} If the payload is not a reader or valid buffer
18763
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18764
+ */
18765
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.PropertyChatQuota;
18766
+
18767
+ /**
18768
+ * Decodes a PropertyChatQuota message from the specified reader or buffer, length delimited.
18769
+ * @param reader Reader or buffer to decode from
18770
+ * @returns PropertyChatQuota
18771
+ * @throws {Error} If the payload is not a reader or valid buffer
18772
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18773
+ */
18774
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.PropertyChatQuota;
18775
+
18776
+ /**
18777
+ * Verifies a PropertyChatQuota message.
18778
+ * @param message Plain object to verify
18779
+ * @returns `null` if valid, otherwise the reason why it is not
18780
+ */
18781
+ public static verify(message: { [k: string]: any }): (string|null);
18782
+
18783
+ /**
18784
+ * Creates a PropertyChatQuota message from a plain object. Also converts values to their respective internal types.
18785
+ * @param object Plain object
18786
+ * @returns PropertyChatQuota
18787
+ */
18788
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.PropertyChatQuota;
18789
+
18790
+ /**
18791
+ * Creates a plain object from a PropertyChatQuota message. Also converts values to other types if specified.
18792
+ * @param message PropertyChatQuota
18793
+ * @param [options] Conversion options
18794
+ * @returns Plain object
18795
+ */
18796
+ public static toObject(message: google.analytics.data.v1alpha.PropertyChatQuota, options?: $protobuf.IConversionOptions): { [k: string]: any };
18797
+
18798
+ /**
18799
+ * Converts this PropertyChatQuota to JSON.
18800
+ * @returns JSON object
18801
+ */
18802
+ public toJSON(): { [k: string]: any };
18803
+
18804
+ /**
18805
+ * Gets the default type url for PropertyChatQuota
18806
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
18807
+ * @returns The default type url
18808
+ */
18809
+ public static getTypeUrl(typeUrlPrefix?: string): string;
18810
+ }
17596
18811
  }
17597
18812
 
17598
18813
  /** Namespace v1beta. */
@@ -23675,6 +24890,9 @@ export namespace google {
23675
24890
 
23676
24891
  /** ResponseMetaData samplingMetadatas */
23677
24892
  samplingMetadatas?: (google.analytics.data.v1beta.ISamplingMetadata[]|null);
24893
+
24894
+ /** ResponseMetaData dataTruncationReasons */
24895
+ dataTruncationReasons?: (google.analytics.data.v1beta.ResponseMetaData.IDataTruncationReason[]|null);
23678
24896
  }
23679
24897
 
23680
24898
  /** Represents a ResponseMetaData. */
@@ -23707,6 +24925,9 @@ export namespace google {
23707
24925
  /** ResponseMetaData samplingMetadatas. */
23708
24926
  public samplingMetadatas: google.analytics.data.v1beta.ISamplingMetadata[];
23709
24927
 
24928
+ /** ResponseMetaData dataTruncationReasons. */
24929
+ public dataTruncationReasons: google.analytics.data.v1beta.ResponseMetaData.IDataTruncationReason[];
24930
+
23710
24931
  /**
23711
24932
  * Creates a new ResponseMetaData instance using the specified properties.
23712
24933
  * @param [properties] Properties to set
@@ -23892,97 +25113,333 @@ export namespace google {
23892
25113
  /** ActiveMetricRestriction metricName */
23893
25114
  metricName?: (string|null);
23894
25115
 
23895
- /** ActiveMetricRestriction restrictedMetricTypes */
23896
- restrictedMetricTypes?: (google.analytics.data.v1beta.RestrictedMetricType[]|null);
25116
+ /** ActiveMetricRestriction restrictedMetricTypes */
25117
+ restrictedMetricTypes?: (google.analytics.data.v1beta.RestrictedMetricType[]|null);
25118
+ }
25119
+
25120
+ /** Represents an ActiveMetricRestriction. */
25121
+ class ActiveMetricRestriction implements IActiveMetricRestriction {
25122
+
25123
+ /**
25124
+ * Constructs a new ActiveMetricRestriction.
25125
+ * @param [properties] Properties to set
25126
+ */
25127
+ constructor(properties?: google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.IActiveMetricRestriction);
25128
+
25129
+ /** ActiveMetricRestriction metricName. */
25130
+ public metricName?: (string|null);
25131
+
25132
+ /** ActiveMetricRestriction restrictedMetricTypes. */
25133
+ public restrictedMetricTypes: google.analytics.data.v1beta.RestrictedMetricType[];
25134
+
25135
+ /**
25136
+ * Creates a new ActiveMetricRestriction instance using the specified properties.
25137
+ * @param [properties] Properties to set
25138
+ * @returns ActiveMetricRestriction instance
25139
+ */
25140
+ public static create(properties?: google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.IActiveMetricRestriction): google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction;
25141
+
25142
+ /**
25143
+ * Encodes the specified ActiveMetricRestriction message. Does not implicitly {@link google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction.verify|verify} messages.
25144
+ * @param message ActiveMetricRestriction message or plain object to encode
25145
+ * @param [writer] Writer to encode to
25146
+ * @returns Writer
25147
+ */
25148
+ public static encode(message: google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.IActiveMetricRestriction, writer?: $protobuf.Writer): $protobuf.Writer;
25149
+
25150
+ /**
25151
+ * Encodes the specified ActiveMetricRestriction message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction.verify|verify} messages.
25152
+ * @param message ActiveMetricRestriction message or plain object to encode
25153
+ * @param [writer] Writer to encode to
25154
+ * @returns Writer
25155
+ */
25156
+ public static encodeDelimited(message: google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.IActiveMetricRestriction, writer?: $protobuf.Writer): $protobuf.Writer;
25157
+
25158
+ /**
25159
+ * Decodes an ActiveMetricRestriction message from the specified reader or buffer.
25160
+ * @param reader Reader or buffer to decode from
25161
+ * @param [length] Message length if known beforehand
25162
+ * @returns ActiveMetricRestriction
25163
+ * @throws {Error} If the payload is not a reader or valid buffer
25164
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
25165
+ */
25166
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction;
25167
+
25168
+ /**
25169
+ * Decodes an ActiveMetricRestriction message from the specified reader or buffer, length delimited.
25170
+ * @param reader Reader or buffer to decode from
25171
+ * @returns ActiveMetricRestriction
25172
+ * @throws {Error} If the payload is not a reader or valid buffer
25173
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
25174
+ */
25175
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction;
25176
+
25177
+ /**
25178
+ * Verifies an ActiveMetricRestriction message.
25179
+ * @param message Plain object to verify
25180
+ * @returns `null` if valid, otherwise the reason why it is not
25181
+ */
25182
+ public static verify(message: { [k: string]: any }): (string|null);
25183
+
25184
+ /**
25185
+ * Creates an ActiveMetricRestriction message from a plain object. Also converts values to their respective internal types.
25186
+ * @param object Plain object
25187
+ * @returns ActiveMetricRestriction
25188
+ */
25189
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction;
25190
+
25191
+ /**
25192
+ * Creates a plain object from an ActiveMetricRestriction message. Also converts values to other types if specified.
25193
+ * @param message ActiveMetricRestriction
25194
+ * @param [options] Conversion options
25195
+ * @returns Plain object
25196
+ */
25197
+ public static toObject(message: google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction, options?: $protobuf.IConversionOptions): { [k: string]: any };
25198
+
25199
+ /**
25200
+ * Converts this ActiveMetricRestriction to JSON.
25201
+ * @returns JSON object
25202
+ */
25203
+ public toJSON(): { [k: string]: any };
25204
+
25205
+ /**
25206
+ * Gets the default type url for ActiveMetricRestriction
25207
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
25208
+ * @returns The default type url
25209
+ */
25210
+ public static getTypeUrl(typeUrlPrefix?: string): string;
25211
+ }
25212
+ }
25213
+
25214
+ /** Properties of a DataTruncationReason. */
25215
+ interface IDataTruncationReason {
25216
+
25217
+ /** DataTruncationReason dataTruncationType */
25218
+ dataTruncationType?: (google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.DataTruncationType|keyof typeof google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.DataTruncationType|null);
25219
+
25220
+ /** DataTruncationReason dataTruncationMessage */
25221
+ dataTruncationMessage?: (string|null);
25222
+
25223
+ /** DataTruncationReason dataTruncationDate */
25224
+ dataTruncationDate?: (string|null);
25225
+
25226
+ /** DataTruncationReason dataTruncationDateRanges */
25227
+ dataTruncationDateRanges?: (google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.IDataTruncationDateRange[]|null);
25228
+ }
25229
+
25230
+ /** Represents a DataTruncationReason. */
25231
+ class DataTruncationReason implements IDataTruncationReason {
25232
+
25233
+ /**
25234
+ * Constructs a new DataTruncationReason.
25235
+ * @param [properties] Properties to set
25236
+ */
25237
+ constructor(properties?: google.analytics.data.v1beta.ResponseMetaData.IDataTruncationReason);
25238
+
25239
+ /** DataTruncationReason dataTruncationType. */
25240
+ public dataTruncationType?: (google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.DataTruncationType|keyof typeof google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.DataTruncationType|null);
25241
+
25242
+ /** DataTruncationReason dataTruncationMessage. */
25243
+ public dataTruncationMessage?: (string|null);
25244
+
25245
+ /** DataTruncationReason dataTruncationDate. */
25246
+ public dataTruncationDate?: (string|null);
25247
+
25248
+ /** DataTruncationReason dataTruncationDateRanges. */
25249
+ public dataTruncationDateRanges: google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.IDataTruncationDateRange[];
25250
+
25251
+ /**
25252
+ * Creates a new DataTruncationReason instance using the specified properties.
25253
+ * @param [properties] Properties to set
25254
+ * @returns DataTruncationReason instance
25255
+ */
25256
+ public static create(properties?: google.analytics.data.v1beta.ResponseMetaData.IDataTruncationReason): google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason;
25257
+
25258
+ /**
25259
+ * Encodes the specified DataTruncationReason message. Does not implicitly {@link google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.verify|verify} messages.
25260
+ * @param message DataTruncationReason message or plain object to encode
25261
+ * @param [writer] Writer to encode to
25262
+ * @returns Writer
25263
+ */
25264
+ public static encode(message: google.analytics.data.v1beta.ResponseMetaData.IDataTruncationReason, writer?: $protobuf.Writer): $protobuf.Writer;
25265
+
25266
+ /**
25267
+ * Encodes the specified DataTruncationReason message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.verify|verify} messages.
25268
+ * @param message DataTruncationReason message or plain object to encode
25269
+ * @param [writer] Writer to encode to
25270
+ * @returns Writer
25271
+ */
25272
+ public static encodeDelimited(message: google.analytics.data.v1beta.ResponseMetaData.IDataTruncationReason, writer?: $protobuf.Writer): $protobuf.Writer;
25273
+
25274
+ /**
25275
+ * Decodes a DataTruncationReason message from the specified reader or buffer.
25276
+ * @param reader Reader or buffer to decode from
25277
+ * @param [length] Message length if known beforehand
25278
+ * @returns DataTruncationReason
25279
+ * @throws {Error} If the payload is not a reader or valid buffer
25280
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
25281
+ */
25282
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason;
25283
+
25284
+ /**
25285
+ * Decodes a DataTruncationReason message from the specified reader or buffer, length delimited.
25286
+ * @param reader Reader or buffer to decode from
25287
+ * @returns DataTruncationReason
25288
+ * @throws {Error} If the payload is not a reader or valid buffer
25289
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
25290
+ */
25291
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason;
25292
+
25293
+ /**
25294
+ * Verifies a DataTruncationReason message.
25295
+ * @param message Plain object to verify
25296
+ * @returns `null` if valid, otherwise the reason why it is not
25297
+ */
25298
+ public static verify(message: { [k: string]: any }): (string|null);
25299
+
25300
+ /**
25301
+ * Creates a DataTruncationReason message from a plain object. Also converts values to their respective internal types.
25302
+ * @param object Plain object
25303
+ * @returns DataTruncationReason
25304
+ */
25305
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason;
25306
+
25307
+ /**
25308
+ * Creates a plain object from a DataTruncationReason message. Also converts values to other types if specified.
25309
+ * @param message DataTruncationReason
25310
+ * @param [options] Conversion options
25311
+ * @returns Plain object
25312
+ */
25313
+ public static toObject(message: google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason, options?: $protobuf.IConversionOptions): { [k: string]: any };
25314
+
25315
+ /**
25316
+ * Converts this DataTruncationReason to JSON.
25317
+ * @returns JSON object
25318
+ */
25319
+ public toJSON(): { [k: string]: any };
25320
+
25321
+ /**
25322
+ * Gets the default type url for DataTruncationReason
25323
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
25324
+ * @returns The default type url
25325
+ */
25326
+ public static getTypeUrl(typeUrlPrefix?: string): string;
25327
+ }
25328
+
25329
+ namespace DataTruncationReason {
25330
+
25331
+ /** DataTruncationType enum. */
25332
+ enum DataTruncationType {
25333
+ DATA_TRUNCATION_TYPE_UNSPECIFIED = 0,
25334
+ DATA_TRUNCATION_TYPE_RULES_BASED_MODELS = 1,
25335
+ DATA_TRUNCATION_TYPE_DATA_DRIVEN_ATTRIBUTION = 2,
25336
+ DATA_TRUNCATION_TYPE_DV360 = 3,
25337
+ DATA_TRUNCATION_TYPE_CM360 = 4,
25338
+ DATA_TRUNCATION_TYPE_ITEM_SCOPED_ECOMMERCE_METRICS = 5,
25339
+ DATA_TRUNCATION_TYPE_EVENT_SCOPED_ECOMMERCE_METRICS = 6,
25340
+ DATA_TRUNCATION_TYPE_DATE_RANGE = 7,
25341
+ DATA_TRUNCATION_TYPE_PROPERTY = 8,
25342
+ DATA_TRUNCATION_TYPE_CONVERSIONS = 9,
25343
+ DATA_TRUNCATION_TYPE_GOOGLE_ADS = 10
25344
+ }
25345
+
25346
+ /** Properties of a DataTruncationDateRange. */
25347
+ interface IDataTruncationDateRange {
25348
+
25349
+ /** DataTruncationDateRange startDate */
25350
+ startDate?: (string|null);
25351
+
25352
+ /** DataTruncationDateRange endDate */
25353
+ endDate?: (string|null);
23897
25354
  }
23898
25355
 
23899
- /** Represents an ActiveMetricRestriction. */
23900
- class ActiveMetricRestriction implements IActiveMetricRestriction {
25356
+ /** Represents a DataTruncationDateRange. */
25357
+ class DataTruncationDateRange implements IDataTruncationDateRange {
23901
25358
 
23902
25359
  /**
23903
- * Constructs a new ActiveMetricRestriction.
25360
+ * Constructs a new DataTruncationDateRange.
23904
25361
  * @param [properties] Properties to set
23905
25362
  */
23906
- constructor(properties?: google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.IActiveMetricRestriction);
25363
+ constructor(properties?: google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.IDataTruncationDateRange);
23907
25364
 
23908
- /** ActiveMetricRestriction metricName. */
23909
- public metricName?: (string|null);
25365
+ /** DataTruncationDateRange startDate. */
25366
+ public startDate?: (string|null);
23910
25367
 
23911
- /** ActiveMetricRestriction restrictedMetricTypes. */
23912
- public restrictedMetricTypes: google.analytics.data.v1beta.RestrictedMetricType[];
25368
+ /** DataTruncationDateRange endDate. */
25369
+ public endDate?: (string|null);
23913
25370
 
23914
25371
  /**
23915
- * Creates a new ActiveMetricRestriction instance using the specified properties.
25372
+ * Creates a new DataTruncationDateRange instance using the specified properties.
23916
25373
  * @param [properties] Properties to set
23917
- * @returns ActiveMetricRestriction instance
25374
+ * @returns DataTruncationDateRange instance
23918
25375
  */
23919
- public static create(properties?: google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.IActiveMetricRestriction): google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction;
25376
+ public static create(properties?: google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.IDataTruncationDateRange): google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.DataTruncationDateRange;
23920
25377
 
23921
25378
  /**
23922
- * Encodes the specified ActiveMetricRestriction message. Does not implicitly {@link google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction.verify|verify} messages.
23923
- * @param message ActiveMetricRestriction message or plain object to encode
25379
+ * Encodes the specified DataTruncationDateRange message. Does not implicitly {@link google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.DataTruncationDateRange.verify|verify} messages.
25380
+ * @param message DataTruncationDateRange message or plain object to encode
23924
25381
  * @param [writer] Writer to encode to
23925
25382
  * @returns Writer
23926
25383
  */
23927
- public static encode(message: google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.IActiveMetricRestriction, writer?: $protobuf.Writer): $protobuf.Writer;
25384
+ public static encode(message: google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.IDataTruncationDateRange, writer?: $protobuf.Writer): $protobuf.Writer;
23928
25385
 
23929
25386
  /**
23930
- * Encodes the specified ActiveMetricRestriction message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction.verify|verify} messages.
23931
- * @param message ActiveMetricRestriction message or plain object to encode
25387
+ * Encodes the specified DataTruncationDateRange message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.DataTruncationDateRange.verify|verify} messages.
25388
+ * @param message DataTruncationDateRange message or plain object to encode
23932
25389
  * @param [writer] Writer to encode to
23933
25390
  * @returns Writer
23934
25391
  */
23935
- public static encodeDelimited(message: google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.IActiveMetricRestriction, writer?: $protobuf.Writer): $protobuf.Writer;
25392
+ public static encodeDelimited(message: google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.IDataTruncationDateRange, writer?: $protobuf.Writer): $protobuf.Writer;
23936
25393
 
23937
25394
  /**
23938
- * Decodes an ActiveMetricRestriction message from the specified reader or buffer.
25395
+ * Decodes a DataTruncationDateRange message from the specified reader or buffer.
23939
25396
  * @param reader Reader or buffer to decode from
23940
25397
  * @param [length] Message length if known beforehand
23941
- * @returns ActiveMetricRestriction
25398
+ * @returns DataTruncationDateRange
23942
25399
  * @throws {Error} If the payload is not a reader or valid buffer
23943
25400
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
23944
25401
  */
23945
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction;
25402
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.DataTruncationDateRange;
23946
25403
 
23947
25404
  /**
23948
- * Decodes an ActiveMetricRestriction message from the specified reader or buffer, length delimited.
25405
+ * Decodes a DataTruncationDateRange message from the specified reader or buffer, length delimited.
23949
25406
  * @param reader Reader or buffer to decode from
23950
- * @returns ActiveMetricRestriction
25407
+ * @returns DataTruncationDateRange
23951
25408
  * @throws {Error} If the payload is not a reader or valid buffer
23952
25409
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
23953
25410
  */
23954
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction;
25411
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.DataTruncationDateRange;
23955
25412
 
23956
25413
  /**
23957
- * Verifies an ActiveMetricRestriction message.
25414
+ * Verifies a DataTruncationDateRange message.
23958
25415
  * @param message Plain object to verify
23959
25416
  * @returns `null` if valid, otherwise the reason why it is not
23960
25417
  */
23961
25418
  public static verify(message: { [k: string]: any }): (string|null);
23962
25419
 
23963
25420
  /**
23964
- * Creates an ActiveMetricRestriction message from a plain object. Also converts values to their respective internal types.
25421
+ * Creates a DataTruncationDateRange message from a plain object. Also converts values to their respective internal types.
23965
25422
  * @param object Plain object
23966
- * @returns ActiveMetricRestriction
25423
+ * @returns DataTruncationDateRange
23967
25424
  */
23968
- public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction;
25425
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.DataTruncationDateRange;
23969
25426
 
23970
25427
  /**
23971
- * Creates a plain object from an ActiveMetricRestriction message. Also converts values to other types if specified.
23972
- * @param message ActiveMetricRestriction
25428
+ * Creates a plain object from a DataTruncationDateRange message. Also converts values to other types if specified.
25429
+ * @param message DataTruncationDateRange
23973
25430
  * @param [options] Conversion options
23974
25431
  * @returns Plain object
23975
25432
  */
23976
- public static toObject(message: google.analytics.data.v1beta.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction, options?: $protobuf.IConversionOptions): { [k: string]: any };
25433
+ public static toObject(message: google.analytics.data.v1beta.ResponseMetaData.DataTruncationReason.DataTruncationDateRange, options?: $protobuf.IConversionOptions): { [k: string]: any };
23977
25434
 
23978
25435
  /**
23979
- * Converts this ActiveMetricRestriction to JSON.
25436
+ * Converts this DataTruncationDateRange to JSON.
23980
25437
  * @returns JSON object
23981
25438
  */
23982
25439
  public toJSON(): { [k: string]: any };
23983
25440
 
23984
25441
  /**
23985
- * Gets the default type url for ActiveMetricRestriction
25442
+ * Gets the default type url for DataTruncationDateRange
23986
25443
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
23987
25444
  * @returns The default type url
23988
25445
  */
@@ -26770,6 +28227,9 @@ export namespace google {
26770
28227
 
26771
28228
  /** PhpSettings common */
26772
28229
  common?: (google.api.ICommonLanguageSettings|null);
28230
+
28231
+ /** PhpSettings libraryPackage */
28232
+ libraryPackage?: (string|null);
26773
28233
  }
26774
28234
 
26775
28235
  /** Represents a PhpSettings. */
@@ -26784,6 +28244,9 @@ export namespace google {
26784
28244
  /** PhpSettings common. */
26785
28245
  public common?: (google.api.ICommonLanguageSettings|null);
26786
28246
 
28247
+ /** PhpSettings libraryPackage. */
28248
+ public libraryPackage: string;
28249
+
26787
28250
  /**
26788
28251
  * Creates a new PhpSettings instance using the specified properties.
26789
28252
  * @param [properties] Properties to set
@@ -27512,6 +28975,9 @@ export namespace google {
27512
28975
 
27513
28976
  /** MethodSettings autoPopulatedFields */
27514
28977
  autoPopulatedFields?: (string[]|null);
28978
+
28979
+ /** MethodSettings batching */
28980
+ batching?: (google.api.IBatchingConfigProto|null);
27515
28981
  }
27516
28982
 
27517
28983
  /** Represents a MethodSettings. */
@@ -27532,6 +28998,9 @@ export namespace google {
27532
28998
  /** MethodSettings autoPopulatedFields. */
27533
28999
  public autoPopulatedFields: string[];
27534
29000
 
29001
+ /** MethodSettings batching. */
29002
+ public batching?: (google.api.IBatchingConfigProto|null);
29003
+
27535
29004
  /**
27536
29005
  * Creates a new MethodSettings instance using the specified properties.
27537
29006
  * @param [properties] Properties to set
@@ -27850,6 +29319,365 @@ export namespace google {
27850
29319
  public static getTypeUrl(typeUrlPrefix?: string): string;
27851
29320
  }
27852
29321
 
29322
+ /** Properties of a BatchingConfigProto. */
29323
+ interface IBatchingConfigProto {
29324
+
29325
+ /** BatchingConfigProto thresholds */
29326
+ thresholds?: (google.api.IBatchingSettingsProto|null);
29327
+
29328
+ /** BatchingConfigProto batchDescriptor */
29329
+ batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
29330
+ }
29331
+
29332
+ /** Represents a BatchingConfigProto. */
29333
+ class BatchingConfigProto implements IBatchingConfigProto {
29334
+
29335
+ /**
29336
+ * Constructs a new BatchingConfigProto.
29337
+ * @param [properties] Properties to set
29338
+ */
29339
+ constructor(properties?: google.api.IBatchingConfigProto);
29340
+
29341
+ /** BatchingConfigProto thresholds. */
29342
+ public thresholds?: (google.api.IBatchingSettingsProto|null);
29343
+
29344
+ /** BatchingConfigProto batchDescriptor. */
29345
+ public batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
29346
+
29347
+ /**
29348
+ * Creates a new BatchingConfigProto instance using the specified properties.
29349
+ * @param [properties] Properties to set
29350
+ * @returns BatchingConfigProto instance
29351
+ */
29352
+ public static create(properties?: google.api.IBatchingConfigProto): google.api.BatchingConfigProto;
29353
+
29354
+ /**
29355
+ * Encodes the specified BatchingConfigProto message. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
29356
+ * @param message BatchingConfigProto message or plain object to encode
29357
+ * @param [writer] Writer to encode to
29358
+ * @returns Writer
29359
+ */
29360
+ public static encode(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
29361
+
29362
+ /**
29363
+ * Encodes the specified BatchingConfigProto message, length delimited. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
29364
+ * @param message BatchingConfigProto message or plain object to encode
29365
+ * @param [writer] Writer to encode to
29366
+ * @returns Writer
29367
+ */
29368
+ public static encodeDelimited(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
29369
+
29370
+ /**
29371
+ * Decodes a BatchingConfigProto message from the specified reader or buffer.
29372
+ * @param reader Reader or buffer to decode from
29373
+ * @param [length] Message length if known beforehand
29374
+ * @returns BatchingConfigProto
29375
+ * @throws {Error} If the payload is not a reader or valid buffer
29376
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
29377
+ */
29378
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingConfigProto;
29379
+
29380
+ /**
29381
+ * Decodes a BatchingConfigProto message from the specified reader or buffer, length delimited.
29382
+ * @param reader Reader or buffer to decode from
29383
+ * @returns BatchingConfigProto
29384
+ * @throws {Error} If the payload is not a reader or valid buffer
29385
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
29386
+ */
29387
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingConfigProto;
29388
+
29389
+ /**
29390
+ * Verifies a BatchingConfigProto message.
29391
+ * @param message Plain object to verify
29392
+ * @returns `null` if valid, otherwise the reason why it is not
29393
+ */
29394
+ public static verify(message: { [k: string]: any }): (string|null);
29395
+
29396
+ /**
29397
+ * Creates a BatchingConfigProto message from a plain object. Also converts values to their respective internal types.
29398
+ * @param object Plain object
29399
+ * @returns BatchingConfigProto
29400
+ */
29401
+ public static fromObject(object: { [k: string]: any }): google.api.BatchingConfigProto;
29402
+
29403
+ /**
29404
+ * Creates a plain object from a BatchingConfigProto message. Also converts values to other types if specified.
29405
+ * @param message BatchingConfigProto
29406
+ * @param [options] Conversion options
29407
+ * @returns Plain object
29408
+ */
29409
+ public static toObject(message: google.api.BatchingConfigProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
29410
+
29411
+ /**
29412
+ * Converts this BatchingConfigProto to JSON.
29413
+ * @returns JSON object
29414
+ */
29415
+ public toJSON(): { [k: string]: any };
29416
+
29417
+ /**
29418
+ * Gets the default type url for BatchingConfigProto
29419
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
29420
+ * @returns The default type url
29421
+ */
29422
+ public static getTypeUrl(typeUrlPrefix?: string): string;
29423
+ }
29424
+
29425
+ /** Properties of a BatchingSettingsProto. */
29426
+ interface IBatchingSettingsProto {
29427
+
29428
+ /** BatchingSettingsProto elementCountThreshold */
29429
+ elementCountThreshold?: (number|null);
29430
+
29431
+ /** BatchingSettingsProto requestByteThreshold */
29432
+ requestByteThreshold?: (number|Long|string|null);
29433
+
29434
+ /** BatchingSettingsProto delayThreshold */
29435
+ delayThreshold?: (google.protobuf.IDuration|null);
29436
+
29437
+ /** BatchingSettingsProto elementCountLimit */
29438
+ elementCountLimit?: (number|null);
29439
+
29440
+ /** BatchingSettingsProto requestByteLimit */
29441
+ requestByteLimit?: (number|null);
29442
+
29443
+ /** BatchingSettingsProto flowControlElementLimit */
29444
+ flowControlElementLimit?: (number|null);
29445
+
29446
+ /** BatchingSettingsProto flowControlByteLimit */
29447
+ flowControlByteLimit?: (number|null);
29448
+
29449
+ /** BatchingSettingsProto flowControlLimitExceededBehavior */
29450
+ flowControlLimitExceededBehavior?: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto|null);
29451
+ }
29452
+
29453
+ /** Represents a BatchingSettingsProto. */
29454
+ class BatchingSettingsProto implements IBatchingSettingsProto {
29455
+
29456
+ /**
29457
+ * Constructs a new BatchingSettingsProto.
29458
+ * @param [properties] Properties to set
29459
+ */
29460
+ constructor(properties?: google.api.IBatchingSettingsProto);
29461
+
29462
+ /** BatchingSettingsProto elementCountThreshold. */
29463
+ public elementCountThreshold: number;
29464
+
29465
+ /** BatchingSettingsProto requestByteThreshold. */
29466
+ public requestByteThreshold: (number|Long|string);
29467
+
29468
+ /** BatchingSettingsProto delayThreshold. */
29469
+ public delayThreshold?: (google.protobuf.IDuration|null);
29470
+
29471
+ /** BatchingSettingsProto elementCountLimit. */
29472
+ public elementCountLimit: number;
29473
+
29474
+ /** BatchingSettingsProto requestByteLimit. */
29475
+ public requestByteLimit: number;
29476
+
29477
+ /** BatchingSettingsProto flowControlElementLimit. */
29478
+ public flowControlElementLimit: number;
29479
+
29480
+ /** BatchingSettingsProto flowControlByteLimit. */
29481
+ public flowControlByteLimit: number;
29482
+
29483
+ /** BatchingSettingsProto flowControlLimitExceededBehavior. */
29484
+ public flowControlLimitExceededBehavior: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto);
29485
+
29486
+ /**
29487
+ * Creates a new BatchingSettingsProto instance using the specified properties.
29488
+ * @param [properties] Properties to set
29489
+ * @returns BatchingSettingsProto instance
29490
+ */
29491
+ public static create(properties?: google.api.IBatchingSettingsProto): google.api.BatchingSettingsProto;
29492
+
29493
+ /**
29494
+ * Encodes the specified BatchingSettingsProto message. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
29495
+ * @param message BatchingSettingsProto message or plain object to encode
29496
+ * @param [writer] Writer to encode to
29497
+ * @returns Writer
29498
+ */
29499
+ public static encode(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
29500
+
29501
+ /**
29502
+ * Encodes the specified BatchingSettingsProto message, length delimited. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
29503
+ * @param message BatchingSettingsProto message or plain object to encode
29504
+ * @param [writer] Writer to encode to
29505
+ * @returns Writer
29506
+ */
29507
+ public static encodeDelimited(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
29508
+
29509
+ /**
29510
+ * Decodes a BatchingSettingsProto message from the specified reader or buffer.
29511
+ * @param reader Reader or buffer to decode from
29512
+ * @param [length] Message length if known beforehand
29513
+ * @returns BatchingSettingsProto
29514
+ * @throws {Error} If the payload is not a reader or valid buffer
29515
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
29516
+ */
29517
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingSettingsProto;
29518
+
29519
+ /**
29520
+ * Decodes a BatchingSettingsProto message from the specified reader or buffer, length delimited.
29521
+ * @param reader Reader or buffer to decode from
29522
+ * @returns BatchingSettingsProto
29523
+ * @throws {Error} If the payload is not a reader or valid buffer
29524
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
29525
+ */
29526
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingSettingsProto;
29527
+
29528
+ /**
29529
+ * Verifies a BatchingSettingsProto message.
29530
+ * @param message Plain object to verify
29531
+ * @returns `null` if valid, otherwise the reason why it is not
29532
+ */
29533
+ public static verify(message: { [k: string]: any }): (string|null);
29534
+
29535
+ /**
29536
+ * Creates a BatchingSettingsProto message from a plain object. Also converts values to their respective internal types.
29537
+ * @param object Plain object
29538
+ * @returns BatchingSettingsProto
29539
+ */
29540
+ public static fromObject(object: { [k: string]: any }): google.api.BatchingSettingsProto;
29541
+
29542
+ /**
29543
+ * Creates a plain object from a BatchingSettingsProto message. Also converts values to other types if specified.
29544
+ * @param message BatchingSettingsProto
29545
+ * @param [options] Conversion options
29546
+ * @returns Plain object
29547
+ */
29548
+ public static toObject(message: google.api.BatchingSettingsProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
29549
+
29550
+ /**
29551
+ * Converts this BatchingSettingsProto to JSON.
29552
+ * @returns JSON object
29553
+ */
29554
+ public toJSON(): { [k: string]: any };
29555
+
29556
+ /**
29557
+ * Gets the default type url for BatchingSettingsProto
29558
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
29559
+ * @returns The default type url
29560
+ */
29561
+ public static getTypeUrl(typeUrlPrefix?: string): string;
29562
+ }
29563
+
29564
+ /** FlowControlLimitExceededBehaviorProto enum. */
29565
+ enum FlowControlLimitExceededBehaviorProto {
29566
+ UNSET_BEHAVIOR = 0,
29567
+ THROW_EXCEPTION = 1,
29568
+ BLOCK = 2,
29569
+ IGNORE = 3
29570
+ }
29571
+
29572
+ /** Properties of a BatchingDescriptorProto. */
29573
+ interface IBatchingDescriptorProto {
29574
+
29575
+ /** BatchingDescriptorProto batchedField */
29576
+ batchedField?: (string|null);
29577
+
29578
+ /** BatchingDescriptorProto discriminatorFields */
29579
+ discriminatorFields?: (string[]|null);
29580
+
29581
+ /** BatchingDescriptorProto subresponseField */
29582
+ subresponseField?: (string|null);
29583
+ }
29584
+
29585
+ /** Represents a BatchingDescriptorProto. */
29586
+ class BatchingDescriptorProto implements IBatchingDescriptorProto {
29587
+
29588
+ /**
29589
+ * Constructs a new BatchingDescriptorProto.
29590
+ * @param [properties] Properties to set
29591
+ */
29592
+ constructor(properties?: google.api.IBatchingDescriptorProto);
29593
+
29594
+ /** BatchingDescriptorProto batchedField. */
29595
+ public batchedField: string;
29596
+
29597
+ /** BatchingDescriptorProto discriminatorFields. */
29598
+ public discriminatorFields: string[];
29599
+
29600
+ /** BatchingDescriptorProto subresponseField. */
29601
+ public subresponseField: string;
29602
+
29603
+ /**
29604
+ * Creates a new BatchingDescriptorProto instance using the specified properties.
29605
+ * @param [properties] Properties to set
29606
+ * @returns BatchingDescriptorProto instance
29607
+ */
29608
+ public static create(properties?: google.api.IBatchingDescriptorProto): google.api.BatchingDescriptorProto;
29609
+
29610
+ /**
29611
+ * Encodes the specified BatchingDescriptorProto message. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
29612
+ * @param message BatchingDescriptorProto message or plain object to encode
29613
+ * @param [writer] Writer to encode to
29614
+ * @returns Writer
29615
+ */
29616
+ public static encode(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
29617
+
29618
+ /**
29619
+ * Encodes the specified BatchingDescriptorProto message, length delimited. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
29620
+ * @param message BatchingDescriptorProto message or plain object to encode
29621
+ * @param [writer] Writer to encode to
29622
+ * @returns Writer
29623
+ */
29624
+ public static encodeDelimited(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
29625
+
29626
+ /**
29627
+ * Decodes a BatchingDescriptorProto message from the specified reader or buffer.
29628
+ * @param reader Reader or buffer to decode from
29629
+ * @param [length] Message length if known beforehand
29630
+ * @returns BatchingDescriptorProto
29631
+ * @throws {Error} If the payload is not a reader or valid buffer
29632
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
29633
+ */
29634
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingDescriptorProto;
29635
+
29636
+ /**
29637
+ * Decodes a BatchingDescriptorProto message from the specified reader or buffer, length delimited.
29638
+ * @param reader Reader or buffer to decode from
29639
+ * @returns BatchingDescriptorProto
29640
+ * @throws {Error} If the payload is not a reader or valid buffer
29641
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
29642
+ */
29643
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingDescriptorProto;
29644
+
29645
+ /**
29646
+ * Verifies a BatchingDescriptorProto message.
29647
+ * @param message Plain object to verify
29648
+ * @returns `null` if valid, otherwise the reason why it is not
29649
+ */
29650
+ public static verify(message: { [k: string]: any }): (string|null);
29651
+
29652
+ /**
29653
+ * Creates a BatchingDescriptorProto message from a plain object. Also converts values to their respective internal types.
29654
+ * @param object Plain object
29655
+ * @returns BatchingDescriptorProto
29656
+ */
29657
+ public static fromObject(object: { [k: string]: any }): google.api.BatchingDescriptorProto;
29658
+
29659
+ /**
29660
+ * Creates a plain object from a BatchingDescriptorProto message. Also converts values to other types if specified.
29661
+ * @param message BatchingDescriptorProto
29662
+ * @param [options] Conversion options
29663
+ * @returns Plain object
29664
+ */
29665
+ public static toObject(message: google.api.BatchingDescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
29666
+
29667
+ /**
29668
+ * Converts this BatchingDescriptorProto to JSON.
29669
+ * @returns JSON object
29670
+ */
29671
+ public toJSON(): { [k: string]: any };
29672
+
29673
+ /**
29674
+ * Gets the default type url for BatchingDescriptorProto
29675
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
29676
+ * @returns The default type url
29677
+ */
29678
+ public static getTypeUrl(typeUrlPrefix?: string): string;
29679
+ }
29680
+
27853
29681
  /** LaunchStage enum. */
27854
29682
  enum LaunchStage {
27855
29683
  LAUNCH_STAGE_UNSPECIFIED = 0,
@@ -28495,6 +30323,9 @@ export namespace google {
28495
30323
 
28496
30324
  /** ListOperationsRequest pageToken */
28497
30325
  pageToken?: (string|null);
30326
+
30327
+ /** ListOperationsRequest returnPartialSuccess */
30328
+ returnPartialSuccess?: (boolean|null);
28498
30329
  }
28499
30330
 
28500
30331
  /** Represents a ListOperationsRequest. */
@@ -28518,6 +30349,9 @@ export namespace google {
28518
30349
  /** ListOperationsRequest pageToken. */
28519
30350
  public pageToken: string;
28520
30351
 
30352
+ /** ListOperationsRequest returnPartialSuccess. */
30353
+ public returnPartialSuccess: boolean;
30354
+
28521
30355
  /**
28522
30356
  * Creates a new ListOperationsRequest instance using the specified properties.
28523
30357
  * @param [properties] Properties to set
@@ -28604,6 +30438,9 @@ export namespace google {
28604
30438
 
28605
30439
  /** ListOperationsResponse nextPageToken */
28606
30440
  nextPageToken?: (string|null);
30441
+
30442
+ /** ListOperationsResponse unreachable */
30443
+ unreachable?: (string[]|null);
28607
30444
  }
28608
30445
 
28609
30446
  /** Represents a ListOperationsResponse. */
@@ -28621,6 +30458,9 @@ export namespace google {
28621
30458
  /** ListOperationsResponse nextPageToken. */
28622
30459
  public nextPageToken: string;
28623
30460
 
30461
+ /** ListOperationsResponse unreachable. */
30462
+ public unreachable: string[];
30463
+
28624
30464
  /**
28625
30465
  * Creates a new ListOperationsResponse instance using the specified properties.
28626
30466
  * @param [properties] Properties to set