@google-analytics/data 4.1.0 → 4.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.
- package/CHANGELOG.md +7 -0
- package/README.md +3 -0
- package/build/protos/google/analytics/data/v1alpha/analytics_data_api.proto +208 -1
- package/build/protos/protos.d.ts +838 -742
- package/build/protos/protos.js +1578 -1924
- package/build/protos/protos.json +229 -289
- package/build/src/v1alpha/alpha_analytics_data_client.d.ts +220 -0
- package/build/src/v1alpha/alpha_analytics_data_client.js +196 -0
- package/build/src/v1alpha/alpha_analytics_data_client_config.json +15 -0
- package/package.json +2 -2
package/build/protos/protos.d.ts
CHANGED
|
@@ -760,15 +760,6 @@ export namespace google {
|
|
|
760
760
|
|
|
761
761
|
/** ExtensionRangeOptions uninterpretedOption */
|
|
762
762
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
763
|
-
|
|
764
|
-
/** ExtensionRangeOptions declaration */
|
|
765
|
-
declaration?: (google.protobuf.ExtensionRangeOptions.IDeclaration[]|null);
|
|
766
|
-
|
|
767
|
-
/** ExtensionRangeOptions features */
|
|
768
|
-
features?: (google.protobuf.IFeatureSet|null);
|
|
769
|
-
|
|
770
|
-
/** ExtensionRangeOptions verification */
|
|
771
|
-
verification?: (google.protobuf.ExtensionRangeOptions.VerificationState|keyof typeof google.protobuf.ExtensionRangeOptions.VerificationState|null);
|
|
772
763
|
}
|
|
773
764
|
|
|
774
765
|
/** Represents an ExtensionRangeOptions. */
|
|
@@ -783,15 +774,6 @@ export namespace google {
|
|
|
783
774
|
/** ExtensionRangeOptions uninterpretedOption. */
|
|
784
775
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
785
776
|
|
|
786
|
-
/** ExtensionRangeOptions declaration. */
|
|
787
|
-
public declaration: google.protobuf.ExtensionRangeOptions.IDeclaration[];
|
|
788
|
-
|
|
789
|
-
/** ExtensionRangeOptions features. */
|
|
790
|
-
public features?: (google.protobuf.IFeatureSet|null);
|
|
791
|
-
|
|
792
|
-
/** ExtensionRangeOptions verification. */
|
|
793
|
-
public verification: (google.protobuf.ExtensionRangeOptions.VerificationState|keyof typeof google.protobuf.ExtensionRangeOptions.VerificationState);
|
|
794
|
-
|
|
795
777
|
/**
|
|
796
778
|
* Creates a new ExtensionRangeOptions instance using the specified properties.
|
|
797
779
|
* @param [properties] Properties to set
|
|
@@ -870,136 +852,6 @@ export namespace google {
|
|
|
870
852
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
871
853
|
}
|
|
872
854
|
|
|
873
|
-
namespace ExtensionRangeOptions {
|
|
874
|
-
|
|
875
|
-
/** Properties of a Declaration. */
|
|
876
|
-
interface IDeclaration {
|
|
877
|
-
|
|
878
|
-
/** Declaration number */
|
|
879
|
-
number?: (number|null);
|
|
880
|
-
|
|
881
|
-
/** Declaration fullName */
|
|
882
|
-
fullName?: (string|null);
|
|
883
|
-
|
|
884
|
-
/** Declaration type */
|
|
885
|
-
type?: (string|null);
|
|
886
|
-
|
|
887
|
-
/** Declaration reserved */
|
|
888
|
-
reserved?: (boolean|null);
|
|
889
|
-
|
|
890
|
-
/** Declaration repeated */
|
|
891
|
-
repeated?: (boolean|null);
|
|
892
|
-
}
|
|
893
|
-
|
|
894
|
-
/** Represents a Declaration. */
|
|
895
|
-
class Declaration implements IDeclaration {
|
|
896
|
-
|
|
897
|
-
/**
|
|
898
|
-
* Constructs a new Declaration.
|
|
899
|
-
* @param [properties] Properties to set
|
|
900
|
-
*/
|
|
901
|
-
constructor(properties?: google.protobuf.ExtensionRangeOptions.IDeclaration);
|
|
902
|
-
|
|
903
|
-
/** Declaration number. */
|
|
904
|
-
public number: number;
|
|
905
|
-
|
|
906
|
-
/** Declaration fullName. */
|
|
907
|
-
public fullName: string;
|
|
908
|
-
|
|
909
|
-
/** Declaration type. */
|
|
910
|
-
public type: string;
|
|
911
|
-
|
|
912
|
-
/** Declaration reserved. */
|
|
913
|
-
public reserved: boolean;
|
|
914
|
-
|
|
915
|
-
/** Declaration repeated. */
|
|
916
|
-
public repeated: boolean;
|
|
917
|
-
|
|
918
|
-
/**
|
|
919
|
-
* Creates a new Declaration instance using the specified properties.
|
|
920
|
-
* @param [properties] Properties to set
|
|
921
|
-
* @returns Declaration instance
|
|
922
|
-
*/
|
|
923
|
-
public static create(properties?: google.protobuf.ExtensionRangeOptions.IDeclaration): google.protobuf.ExtensionRangeOptions.Declaration;
|
|
924
|
-
|
|
925
|
-
/**
|
|
926
|
-
* Encodes the specified Declaration message. Does not implicitly {@link google.protobuf.ExtensionRangeOptions.Declaration.verify|verify} messages.
|
|
927
|
-
* @param message Declaration message or plain object to encode
|
|
928
|
-
* @param [writer] Writer to encode to
|
|
929
|
-
* @returns Writer
|
|
930
|
-
*/
|
|
931
|
-
public static encode(message: google.protobuf.ExtensionRangeOptions.IDeclaration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
932
|
-
|
|
933
|
-
/**
|
|
934
|
-
* Encodes the specified Declaration message, length delimited. Does not implicitly {@link google.protobuf.ExtensionRangeOptions.Declaration.verify|verify} messages.
|
|
935
|
-
* @param message Declaration message or plain object to encode
|
|
936
|
-
* @param [writer] Writer to encode to
|
|
937
|
-
* @returns Writer
|
|
938
|
-
*/
|
|
939
|
-
public static encodeDelimited(message: google.protobuf.ExtensionRangeOptions.IDeclaration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
940
|
-
|
|
941
|
-
/**
|
|
942
|
-
* Decodes a Declaration message from the specified reader or buffer.
|
|
943
|
-
* @param reader Reader or buffer to decode from
|
|
944
|
-
* @param [length] Message length if known beforehand
|
|
945
|
-
* @returns Declaration
|
|
946
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
947
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
948
|
-
*/
|
|
949
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.ExtensionRangeOptions.Declaration;
|
|
950
|
-
|
|
951
|
-
/**
|
|
952
|
-
* Decodes a Declaration message from the specified reader or buffer, length delimited.
|
|
953
|
-
* @param reader Reader or buffer to decode from
|
|
954
|
-
* @returns Declaration
|
|
955
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
956
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
957
|
-
*/
|
|
958
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.ExtensionRangeOptions.Declaration;
|
|
959
|
-
|
|
960
|
-
/**
|
|
961
|
-
* Verifies a Declaration message.
|
|
962
|
-
* @param message Plain object to verify
|
|
963
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
964
|
-
*/
|
|
965
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
966
|
-
|
|
967
|
-
/**
|
|
968
|
-
* Creates a Declaration message from a plain object. Also converts values to their respective internal types.
|
|
969
|
-
* @param object Plain object
|
|
970
|
-
* @returns Declaration
|
|
971
|
-
*/
|
|
972
|
-
public static fromObject(object: { [k: string]: any }): google.protobuf.ExtensionRangeOptions.Declaration;
|
|
973
|
-
|
|
974
|
-
/**
|
|
975
|
-
* Creates a plain object from a Declaration message. Also converts values to other types if specified.
|
|
976
|
-
* @param message Declaration
|
|
977
|
-
* @param [options] Conversion options
|
|
978
|
-
* @returns Plain object
|
|
979
|
-
*/
|
|
980
|
-
public static toObject(message: google.protobuf.ExtensionRangeOptions.Declaration, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
981
|
-
|
|
982
|
-
/**
|
|
983
|
-
* Converts this Declaration to JSON.
|
|
984
|
-
* @returns JSON object
|
|
985
|
-
*/
|
|
986
|
-
public toJSON(): { [k: string]: any };
|
|
987
|
-
|
|
988
|
-
/**
|
|
989
|
-
* Gets the default type url for Declaration
|
|
990
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
991
|
-
* @returns The default type url
|
|
992
|
-
*/
|
|
993
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
994
|
-
}
|
|
995
|
-
|
|
996
|
-
/** VerificationState enum. */
|
|
997
|
-
enum VerificationState {
|
|
998
|
-
DECLARATION = 0,
|
|
999
|
-
UNVERIFIED = 1
|
|
1000
|
-
}
|
|
1001
|
-
}
|
|
1002
|
-
|
|
1003
855
|
/** Properties of a FieldDescriptorProto. */
|
|
1004
856
|
interface IFieldDescriptorProto {
|
|
1005
857
|
|
|
@@ -1927,9 +1779,6 @@ export namespace google {
|
|
|
1927
1779
|
/** FileOptions rubyPackage */
|
|
1928
1780
|
rubyPackage?: (string|null);
|
|
1929
1781
|
|
|
1930
|
-
/** FileOptions features */
|
|
1931
|
-
features?: (google.protobuf.IFeatureSet|null);
|
|
1932
|
-
|
|
1933
1782
|
/** FileOptions uninterpretedOption */
|
|
1934
1783
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
1935
1784
|
|
|
@@ -2006,9 +1855,6 @@ export namespace google {
|
|
|
2006
1855
|
/** FileOptions rubyPackage. */
|
|
2007
1856
|
public rubyPackage: string;
|
|
2008
1857
|
|
|
2009
|
-
/** FileOptions features. */
|
|
2010
|
-
public features?: (google.protobuf.IFeatureSet|null);
|
|
2011
|
-
|
|
2012
1858
|
/** FileOptions uninterpretedOption. */
|
|
2013
1859
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
2014
1860
|
|
|
@@ -2118,9 +1964,6 @@ export namespace google {
|
|
|
2118
1964
|
/** MessageOptions deprecatedLegacyJsonFieldConflicts */
|
|
2119
1965
|
deprecatedLegacyJsonFieldConflicts?: (boolean|null);
|
|
2120
1966
|
|
|
2121
|
-
/** MessageOptions features */
|
|
2122
|
-
features?: (google.protobuf.IFeatureSet|null);
|
|
2123
|
-
|
|
2124
1967
|
/** MessageOptions uninterpretedOption */
|
|
2125
1968
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
2126
1969
|
|
|
@@ -2152,9 +1995,6 @@ export namespace google {
|
|
|
2152
1995
|
/** MessageOptions deprecatedLegacyJsonFieldConflicts. */
|
|
2153
1996
|
public deprecatedLegacyJsonFieldConflicts: boolean;
|
|
2154
1997
|
|
|
2155
|
-
/** MessageOptions features. */
|
|
2156
|
-
public features?: (google.protobuf.IFeatureSet|null);
|
|
2157
|
-
|
|
2158
1998
|
/** MessageOptions uninterpretedOption. */
|
|
2159
1999
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
2160
2000
|
|
|
@@ -2266,14 +2106,8 @@ export namespace google {
|
|
|
2266
2106
|
/** FieldOptions retention */
|
|
2267
2107
|
retention?: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention|null);
|
|
2268
2108
|
|
|
2269
|
-
/** FieldOptions
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
/** FieldOptions editionDefaults */
|
|
2273
|
-
editionDefaults?: (google.protobuf.FieldOptions.IEditionDefault[]|null);
|
|
2274
|
-
|
|
2275
|
-
/** FieldOptions features */
|
|
2276
|
-
features?: (google.protobuf.IFeatureSet|null);
|
|
2109
|
+
/** FieldOptions target */
|
|
2110
|
+
target?: (google.protobuf.FieldOptions.OptionTargetType|keyof typeof google.protobuf.FieldOptions.OptionTargetType|null);
|
|
2277
2111
|
|
|
2278
2112
|
/** FieldOptions uninterpretedOption */
|
|
2279
2113
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
@@ -2321,14 +2155,8 @@ export namespace google {
|
|
|
2321
2155
|
/** FieldOptions retention. */
|
|
2322
2156
|
public retention: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention);
|
|
2323
2157
|
|
|
2324
|
-
/** FieldOptions
|
|
2325
|
-
public
|
|
2326
|
-
|
|
2327
|
-
/** FieldOptions editionDefaults. */
|
|
2328
|
-
public editionDefaults: google.protobuf.FieldOptions.IEditionDefault[];
|
|
2329
|
-
|
|
2330
|
-
/** FieldOptions features. */
|
|
2331
|
-
public features?: (google.protobuf.IFeatureSet|null);
|
|
2158
|
+
/** FieldOptions target. */
|
|
2159
|
+
public target: (google.protobuf.FieldOptions.OptionTargetType|keyof typeof google.protobuf.FieldOptions.OptionTargetType);
|
|
2332
2160
|
|
|
2333
2161
|
/** FieldOptions uninterpretedOption. */
|
|
2334
2162
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
@@ -2447,117 +2275,11 @@ export namespace google {
|
|
|
2447
2275
|
TARGET_TYPE_SERVICE = 8,
|
|
2448
2276
|
TARGET_TYPE_METHOD = 9
|
|
2449
2277
|
}
|
|
2450
|
-
|
|
2451
|
-
/** Properties of an EditionDefault. */
|
|
2452
|
-
interface IEditionDefault {
|
|
2453
|
-
|
|
2454
|
-
/** EditionDefault edition */
|
|
2455
|
-
edition?: (string|null);
|
|
2456
|
-
|
|
2457
|
-
/** EditionDefault value */
|
|
2458
|
-
value?: (string|null);
|
|
2459
|
-
}
|
|
2460
|
-
|
|
2461
|
-
/** Represents an EditionDefault. */
|
|
2462
|
-
class EditionDefault implements IEditionDefault {
|
|
2463
|
-
|
|
2464
|
-
/**
|
|
2465
|
-
* Constructs a new EditionDefault.
|
|
2466
|
-
* @param [properties] Properties to set
|
|
2467
|
-
*/
|
|
2468
|
-
constructor(properties?: google.protobuf.FieldOptions.IEditionDefault);
|
|
2469
|
-
|
|
2470
|
-
/** EditionDefault edition. */
|
|
2471
|
-
public edition: string;
|
|
2472
|
-
|
|
2473
|
-
/** EditionDefault value. */
|
|
2474
|
-
public value: string;
|
|
2475
|
-
|
|
2476
|
-
/**
|
|
2477
|
-
* Creates a new EditionDefault instance using the specified properties.
|
|
2478
|
-
* @param [properties] Properties to set
|
|
2479
|
-
* @returns EditionDefault instance
|
|
2480
|
-
*/
|
|
2481
|
-
public static create(properties?: google.protobuf.FieldOptions.IEditionDefault): google.protobuf.FieldOptions.EditionDefault;
|
|
2482
|
-
|
|
2483
|
-
/**
|
|
2484
|
-
* Encodes the specified EditionDefault message. Does not implicitly {@link google.protobuf.FieldOptions.EditionDefault.verify|verify} messages.
|
|
2485
|
-
* @param message EditionDefault message or plain object to encode
|
|
2486
|
-
* @param [writer] Writer to encode to
|
|
2487
|
-
* @returns Writer
|
|
2488
|
-
*/
|
|
2489
|
-
public static encode(message: google.protobuf.FieldOptions.IEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
2490
|
-
|
|
2491
|
-
/**
|
|
2492
|
-
* Encodes the specified EditionDefault message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.EditionDefault.verify|verify} messages.
|
|
2493
|
-
* @param message EditionDefault message or plain object to encode
|
|
2494
|
-
* @param [writer] Writer to encode to
|
|
2495
|
-
* @returns Writer
|
|
2496
|
-
*/
|
|
2497
|
-
public static encodeDelimited(message: google.protobuf.FieldOptions.IEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
2498
|
-
|
|
2499
|
-
/**
|
|
2500
|
-
* Decodes an EditionDefault message from the specified reader or buffer.
|
|
2501
|
-
* @param reader Reader or buffer to decode from
|
|
2502
|
-
* @param [length] Message length if known beforehand
|
|
2503
|
-
* @returns EditionDefault
|
|
2504
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
2505
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
2506
|
-
*/
|
|
2507
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.EditionDefault;
|
|
2508
|
-
|
|
2509
|
-
/**
|
|
2510
|
-
* Decodes an EditionDefault message from the specified reader or buffer, length delimited.
|
|
2511
|
-
* @param reader Reader or buffer to decode from
|
|
2512
|
-
* @returns EditionDefault
|
|
2513
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
2514
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
2515
|
-
*/
|
|
2516
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.EditionDefault;
|
|
2517
|
-
|
|
2518
|
-
/**
|
|
2519
|
-
* Verifies an EditionDefault message.
|
|
2520
|
-
* @param message Plain object to verify
|
|
2521
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
2522
|
-
*/
|
|
2523
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
2524
|
-
|
|
2525
|
-
/**
|
|
2526
|
-
* Creates an EditionDefault message from a plain object. Also converts values to their respective internal types.
|
|
2527
|
-
* @param object Plain object
|
|
2528
|
-
* @returns EditionDefault
|
|
2529
|
-
*/
|
|
2530
|
-
public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.EditionDefault;
|
|
2531
|
-
|
|
2532
|
-
/**
|
|
2533
|
-
* Creates a plain object from an EditionDefault message. Also converts values to other types if specified.
|
|
2534
|
-
* @param message EditionDefault
|
|
2535
|
-
* @param [options] Conversion options
|
|
2536
|
-
* @returns Plain object
|
|
2537
|
-
*/
|
|
2538
|
-
public static toObject(message: google.protobuf.FieldOptions.EditionDefault, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
2539
|
-
|
|
2540
|
-
/**
|
|
2541
|
-
* Converts this EditionDefault to JSON.
|
|
2542
|
-
* @returns JSON object
|
|
2543
|
-
*/
|
|
2544
|
-
public toJSON(): { [k: string]: any };
|
|
2545
|
-
|
|
2546
|
-
/**
|
|
2547
|
-
* Gets the default type url for EditionDefault
|
|
2548
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2549
|
-
* @returns The default type url
|
|
2550
|
-
*/
|
|
2551
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2552
|
-
}
|
|
2553
2278
|
}
|
|
2554
2279
|
|
|
2555
2280
|
/** Properties of an OneofOptions. */
|
|
2556
2281
|
interface IOneofOptions {
|
|
2557
2282
|
|
|
2558
|
-
/** OneofOptions features */
|
|
2559
|
-
features?: (google.protobuf.IFeatureSet|null);
|
|
2560
|
-
|
|
2561
2283
|
/** OneofOptions uninterpretedOption */
|
|
2562
2284
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
2563
2285
|
}
|
|
@@ -2571,9 +2293,6 @@ export namespace google {
|
|
|
2571
2293
|
*/
|
|
2572
2294
|
constructor(properties?: google.protobuf.IOneofOptions);
|
|
2573
2295
|
|
|
2574
|
-
/** OneofOptions features. */
|
|
2575
|
-
public features?: (google.protobuf.IFeatureSet|null);
|
|
2576
|
-
|
|
2577
2296
|
/** OneofOptions uninterpretedOption. */
|
|
2578
2297
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
2579
2298
|
|
|
@@ -2667,9 +2386,6 @@ export namespace google {
|
|
|
2667
2386
|
/** EnumOptions deprecatedLegacyJsonFieldConflicts */
|
|
2668
2387
|
deprecatedLegacyJsonFieldConflicts?: (boolean|null);
|
|
2669
2388
|
|
|
2670
|
-
/** EnumOptions features */
|
|
2671
|
-
features?: (google.protobuf.IFeatureSet|null);
|
|
2672
|
-
|
|
2673
2389
|
/** EnumOptions uninterpretedOption */
|
|
2674
2390
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
2675
2391
|
}
|
|
@@ -2692,9 +2408,6 @@ export namespace google {
|
|
|
2692
2408
|
/** EnumOptions deprecatedLegacyJsonFieldConflicts. */
|
|
2693
2409
|
public deprecatedLegacyJsonFieldConflicts: boolean;
|
|
2694
2410
|
|
|
2695
|
-
/** EnumOptions features. */
|
|
2696
|
-
public features?: (google.protobuf.IFeatureSet|null);
|
|
2697
|
-
|
|
2698
2411
|
/** EnumOptions uninterpretedOption. */
|
|
2699
2412
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
2700
2413
|
|
|
@@ -2782,12 +2495,6 @@ export namespace google {
|
|
|
2782
2495
|
/** EnumValueOptions deprecated */
|
|
2783
2496
|
deprecated?: (boolean|null);
|
|
2784
2497
|
|
|
2785
|
-
/** EnumValueOptions features */
|
|
2786
|
-
features?: (google.protobuf.IFeatureSet|null);
|
|
2787
|
-
|
|
2788
|
-
/** EnumValueOptions debugRedact */
|
|
2789
|
-
debugRedact?: (boolean|null);
|
|
2790
|
-
|
|
2791
2498
|
/** EnumValueOptions uninterpretedOption */
|
|
2792
2499
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
2793
2500
|
}
|
|
@@ -2804,12 +2511,6 @@ export namespace google {
|
|
|
2804
2511
|
/** EnumValueOptions deprecated. */
|
|
2805
2512
|
public deprecated: boolean;
|
|
2806
2513
|
|
|
2807
|
-
/** EnumValueOptions features. */
|
|
2808
|
-
public features?: (google.protobuf.IFeatureSet|null);
|
|
2809
|
-
|
|
2810
|
-
/** EnumValueOptions debugRedact. */
|
|
2811
|
-
public debugRedact: boolean;
|
|
2812
|
-
|
|
2813
2514
|
/** EnumValueOptions uninterpretedOption. */
|
|
2814
2515
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
2815
2516
|
|
|
@@ -2894,9 +2595,6 @@ export namespace google {
|
|
|
2894
2595
|
/** Properties of a ServiceOptions. */
|
|
2895
2596
|
interface IServiceOptions {
|
|
2896
2597
|
|
|
2897
|
-
/** ServiceOptions features */
|
|
2898
|
-
features?: (google.protobuf.IFeatureSet|null);
|
|
2899
|
-
|
|
2900
2598
|
/** ServiceOptions deprecated */
|
|
2901
2599
|
deprecated?: (boolean|null);
|
|
2902
2600
|
|
|
@@ -2919,9 +2617,6 @@ export namespace google {
|
|
|
2919
2617
|
*/
|
|
2920
2618
|
constructor(properties?: google.protobuf.IServiceOptions);
|
|
2921
2619
|
|
|
2922
|
-
/** ServiceOptions features. */
|
|
2923
|
-
public features?: (google.protobuf.IFeatureSet|null);
|
|
2924
|
-
|
|
2925
2620
|
/** ServiceOptions deprecated. */
|
|
2926
2621
|
public deprecated: boolean;
|
|
2927
2622
|
|
|
@@ -3015,9 +2710,6 @@ export namespace google {
|
|
|
3015
2710
|
/** MethodOptions idempotencyLevel */
|
|
3016
2711
|
idempotencyLevel?: (google.protobuf.MethodOptions.IdempotencyLevel|keyof typeof google.protobuf.MethodOptions.IdempotencyLevel|null);
|
|
3017
2712
|
|
|
3018
|
-
/** MethodOptions features */
|
|
3019
|
-
features?: (google.protobuf.IFeatureSet|null);
|
|
3020
|
-
|
|
3021
2713
|
/** MethodOptions uninterpretedOption */
|
|
3022
2714
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
3023
2715
|
|
|
@@ -3046,9 +2738,6 @@ export namespace google {
|
|
|
3046
2738
|
/** MethodOptions idempotencyLevel. */
|
|
3047
2739
|
public idempotencyLevel: (google.protobuf.MethodOptions.IdempotencyLevel|keyof typeof google.protobuf.MethodOptions.IdempotencyLevel);
|
|
3048
2740
|
|
|
3049
|
-
/** MethodOptions features. */
|
|
3050
|
-
public features?: (google.protobuf.IFeatureSet|null);
|
|
3051
|
-
|
|
3052
2741
|
/** MethodOptions uninterpretedOption. */
|
|
3053
2742
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
3054
2743
|
|
|
@@ -3379,318 +3068,138 @@ export namespace google {
|
|
|
3379
3068
|
}
|
|
3380
3069
|
}
|
|
3381
3070
|
|
|
3382
|
-
/** Properties of a
|
|
3383
|
-
interface
|
|
3384
|
-
|
|
3385
|
-
/** FeatureSet fieldPresence */
|
|
3386
|
-
fieldPresence?: (google.protobuf.FeatureSet.FieldPresence|keyof typeof google.protobuf.FeatureSet.FieldPresence|null);
|
|
3387
|
-
|
|
3388
|
-
/** FeatureSet enumType */
|
|
3389
|
-
enumType?: (google.protobuf.FeatureSet.EnumType|keyof typeof google.protobuf.FeatureSet.EnumType|null);
|
|
3390
|
-
|
|
3391
|
-
/** FeatureSet repeatedFieldEncoding */
|
|
3392
|
-
repeatedFieldEncoding?: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding|null);
|
|
3393
|
-
|
|
3394
|
-
/** FeatureSet stringFieldValidation */
|
|
3395
|
-
stringFieldValidation?: (google.protobuf.FeatureSet.StringFieldValidation|keyof typeof google.protobuf.FeatureSet.StringFieldValidation|null);
|
|
3396
|
-
|
|
3397
|
-
/** FeatureSet messageEncoding */
|
|
3398
|
-
messageEncoding?: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding|null);
|
|
3399
|
-
|
|
3400
|
-
/** FeatureSet jsonFormat */
|
|
3401
|
-
jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
|
|
3071
|
+
/** Properties of a SourceCodeInfo. */
|
|
3072
|
+
interface ISourceCodeInfo {
|
|
3402
3073
|
|
|
3403
|
-
/**
|
|
3404
|
-
|
|
3074
|
+
/** SourceCodeInfo location */
|
|
3075
|
+
location?: (google.protobuf.SourceCodeInfo.ILocation[]|null);
|
|
3405
3076
|
}
|
|
3406
3077
|
|
|
3407
|
-
/** Represents a
|
|
3408
|
-
class
|
|
3078
|
+
/** Represents a SourceCodeInfo. */
|
|
3079
|
+
class SourceCodeInfo implements ISourceCodeInfo {
|
|
3409
3080
|
|
|
3410
3081
|
/**
|
|
3411
|
-
* Constructs a new
|
|
3082
|
+
* Constructs a new SourceCodeInfo.
|
|
3412
3083
|
* @param [properties] Properties to set
|
|
3413
3084
|
*/
|
|
3414
|
-
constructor(properties?: google.protobuf.
|
|
3415
|
-
|
|
3416
|
-
/** FeatureSet fieldPresence. */
|
|
3417
|
-
public fieldPresence: (google.protobuf.FeatureSet.FieldPresence|keyof typeof google.protobuf.FeatureSet.FieldPresence);
|
|
3418
|
-
|
|
3419
|
-
/** FeatureSet enumType. */
|
|
3420
|
-
public enumType: (google.protobuf.FeatureSet.EnumType|keyof typeof google.protobuf.FeatureSet.EnumType);
|
|
3421
|
-
|
|
3422
|
-
/** FeatureSet repeatedFieldEncoding. */
|
|
3423
|
-
public repeatedFieldEncoding: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding);
|
|
3424
|
-
|
|
3425
|
-
/** FeatureSet stringFieldValidation. */
|
|
3426
|
-
public stringFieldValidation: (google.protobuf.FeatureSet.StringFieldValidation|keyof typeof google.protobuf.FeatureSet.StringFieldValidation);
|
|
3427
|
-
|
|
3428
|
-
/** FeatureSet messageEncoding. */
|
|
3429
|
-
public messageEncoding: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding);
|
|
3430
|
-
|
|
3431
|
-
/** FeatureSet jsonFormat. */
|
|
3432
|
-
public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
|
|
3085
|
+
constructor(properties?: google.protobuf.ISourceCodeInfo);
|
|
3433
3086
|
|
|
3434
|
-
/**
|
|
3435
|
-
public
|
|
3087
|
+
/** SourceCodeInfo location. */
|
|
3088
|
+
public location: google.protobuf.SourceCodeInfo.ILocation[];
|
|
3436
3089
|
|
|
3437
3090
|
/**
|
|
3438
|
-
* Creates a new
|
|
3091
|
+
* Creates a new SourceCodeInfo instance using the specified properties.
|
|
3439
3092
|
* @param [properties] Properties to set
|
|
3440
|
-
* @returns
|
|
3093
|
+
* @returns SourceCodeInfo instance
|
|
3441
3094
|
*/
|
|
3442
|
-
public static create(properties?: google.protobuf.
|
|
3095
|
+
public static create(properties?: google.protobuf.ISourceCodeInfo): google.protobuf.SourceCodeInfo;
|
|
3443
3096
|
|
|
3444
3097
|
/**
|
|
3445
|
-
* Encodes the specified
|
|
3446
|
-
* @param message
|
|
3098
|
+
* Encodes the specified SourceCodeInfo message. Does not implicitly {@link google.protobuf.SourceCodeInfo.verify|verify} messages.
|
|
3099
|
+
* @param message SourceCodeInfo message or plain object to encode
|
|
3447
3100
|
* @param [writer] Writer to encode to
|
|
3448
3101
|
* @returns Writer
|
|
3449
3102
|
*/
|
|
3450
|
-
public static encode(message: google.protobuf.
|
|
3103
|
+
public static encode(message: google.protobuf.ISourceCodeInfo, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3451
3104
|
|
|
3452
3105
|
/**
|
|
3453
|
-
* Encodes the specified
|
|
3454
|
-
* @param message
|
|
3106
|
+
* Encodes the specified SourceCodeInfo message, length delimited. Does not implicitly {@link google.protobuf.SourceCodeInfo.verify|verify} messages.
|
|
3107
|
+
* @param message SourceCodeInfo message or plain object to encode
|
|
3455
3108
|
* @param [writer] Writer to encode to
|
|
3456
3109
|
* @returns Writer
|
|
3457
3110
|
*/
|
|
3458
|
-
public static encodeDelimited(message: google.protobuf.
|
|
3111
|
+
public static encodeDelimited(message: google.protobuf.ISourceCodeInfo, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3459
3112
|
|
|
3460
3113
|
/**
|
|
3461
|
-
* Decodes a
|
|
3114
|
+
* Decodes a SourceCodeInfo message from the specified reader or buffer.
|
|
3462
3115
|
* @param reader Reader or buffer to decode from
|
|
3463
3116
|
* @param [length] Message length if known beforehand
|
|
3464
|
-
* @returns
|
|
3117
|
+
* @returns SourceCodeInfo
|
|
3465
3118
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3466
3119
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3467
3120
|
*/
|
|
3468
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.
|
|
3121
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.SourceCodeInfo;
|
|
3469
3122
|
|
|
3470
3123
|
/**
|
|
3471
|
-
* Decodes a
|
|
3124
|
+
* Decodes a SourceCodeInfo message from the specified reader or buffer, length delimited.
|
|
3472
3125
|
* @param reader Reader or buffer to decode from
|
|
3473
|
-
* @returns
|
|
3126
|
+
* @returns SourceCodeInfo
|
|
3474
3127
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3475
3128
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3476
3129
|
*/
|
|
3477
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.
|
|
3130
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.SourceCodeInfo;
|
|
3478
3131
|
|
|
3479
3132
|
/**
|
|
3480
|
-
* Verifies a
|
|
3133
|
+
* Verifies a SourceCodeInfo message.
|
|
3481
3134
|
* @param message Plain object to verify
|
|
3482
3135
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
3483
3136
|
*/
|
|
3484
3137
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
3485
3138
|
|
|
3486
3139
|
/**
|
|
3487
|
-
* Creates a
|
|
3140
|
+
* Creates a SourceCodeInfo message from a plain object. Also converts values to their respective internal types.
|
|
3488
3141
|
* @param object Plain object
|
|
3489
|
-
* @returns
|
|
3142
|
+
* @returns SourceCodeInfo
|
|
3490
3143
|
*/
|
|
3491
|
-
public static fromObject(object: { [k: string]: any }): google.protobuf.
|
|
3144
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.SourceCodeInfo;
|
|
3492
3145
|
|
|
3493
3146
|
/**
|
|
3494
|
-
* Creates a plain object from a
|
|
3495
|
-
* @param message
|
|
3147
|
+
* Creates a plain object from a SourceCodeInfo message. Also converts values to other types if specified.
|
|
3148
|
+
* @param message SourceCodeInfo
|
|
3496
3149
|
* @param [options] Conversion options
|
|
3497
3150
|
* @returns Plain object
|
|
3498
3151
|
*/
|
|
3499
|
-
public static toObject(message: google.protobuf.
|
|
3152
|
+
public static toObject(message: google.protobuf.SourceCodeInfo, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
3500
3153
|
|
|
3501
3154
|
/**
|
|
3502
|
-
* Converts this
|
|
3155
|
+
* Converts this SourceCodeInfo to JSON.
|
|
3503
3156
|
* @returns JSON object
|
|
3504
3157
|
*/
|
|
3505
3158
|
public toJSON(): { [k: string]: any };
|
|
3506
3159
|
|
|
3507
3160
|
/**
|
|
3508
|
-
* Gets the default type url for
|
|
3161
|
+
* Gets the default type url for SourceCodeInfo
|
|
3509
3162
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3510
3163
|
* @returns The default type url
|
|
3511
3164
|
*/
|
|
3512
3165
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3513
3166
|
}
|
|
3514
3167
|
|
|
3515
|
-
namespace
|
|
3168
|
+
namespace SourceCodeInfo {
|
|
3516
3169
|
|
|
3517
|
-
/**
|
|
3518
|
-
|
|
3519
|
-
FIELD_PRESENCE_UNKNOWN = 0,
|
|
3520
|
-
EXPLICIT = 1,
|
|
3521
|
-
IMPLICIT = 2,
|
|
3522
|
-
LEGACY_REQUIRED = 3
|
|
3523
|
-
}
|
|
3170
|
+
/** Properties of a Location. */
|
|
3171
|
+
interface ILocation {
|
|
3524
3172
|
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
ENUM_TYPE_UNKNOWN = 0,
|
|
3528
|
-
OPEN = 1,
|
|
3529
|
-
CLOSED = 2
|
|
3530
|
-
}
|
|
3173
|
+
/** Location path */
|
|
3174
|
+
path?: (number[]|null);
|
|
3531
3175
|
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
REPEATED_FIELD_ENCODING_UNKNOWN = 0,
|
|
3535
|
-
PACKED = 1,
|
|
3536
|
-
EXPANDED = 2
|
|
3537
|
-
}
|
|
3176
|
+
/** Location span */
|
|
3177
|
+
span?: (number[]|null);
|
|
3538
3178
|
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
STRING_FIELD_VALIDATION_UNKNOWN = 0,
|
|
3542
|
-
MANDATORY = 1,
|
|
3543
|
-
HINT = 2,
|
|
3544
|
-
NONE = 3
|
|
3545
|
-
}
|
|
3179
|
+
/** Location leadingComments */
|
|
3180
|
+
leadingComments?: (string|null);
|
|
3546
3181
|
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
MESSAGE_ENCODING_UNKNOWN = 0,
|
|
3550
|
-
LENGTH_PREFIXED = 1,
|
|
3551
|
-
DELIMITED = 2
|
|
3552
|
-
}
|
|
3182
|
+
/** Location trailingComments */
|
|
3183
|
+
trailingComments?: (string|null);
|
|
3553
3184
|
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
JSON_FORMAT_UNKNOWN = 0,
|
|
3557
|
-
ALLOW = 1,
|
|
3558
|
-
LEGACY_BEST_EFFORT = 2
|
|
3185
|
+
/** Location leadingDetachedComments */
|
|
3186
|
+
leadingDetachedComments?: (string[]|null);
|
|
3559
3187
|
}
|
|
3560
|
-
}
|
|
3561
3188
|
|
|
3562
|
-
|
|
3563
|
-
|
|
3189
|
+
/** Represents a Location. */
|
|
3190
|
+
class Location implements ILocation {
|
|
3564
3191
|
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3192
|
+
/**
|
|
3193
|
+
* Constructs a new Location.
|
|
3194
|
+
* @param [properties] Properties to set
|
|
3195
|
+
*/
|
|
3196
|
+
constructor(properties?: google.protobuf.SourceCodeInfo.ILocation);
|
|
3568
3197
|
|
|
3569
|
-
|
|
3570
|
-
|
|
3198
|
+
/** Location path. */
|
|
3199
|
+
public path: number[];
|
|
3571
3200
|
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
* @param [properties] Properties to set
|
|
3575
|
-
*/
|
|
3576
|
-
constructor(properties?: google.protobuf.ISourceCodeInfo);
|
|
3577
|
-
|
|
3578
|
-
/** SourceCodeInfo location. */
|
|
3579
|
-
public location: google.protobuf.SourceCodeInfo.ILocation[];
|
|
3580
|
-
|
|
3581
|
-
/**
|
|
3582
|
-
* Creates a new SourceCodeInfo instance using the specified properties.
|
|
3583
|
-
* @param [properties] Properties to set
|
|
3584
|
-
* @returns SourceCodeInfo instance
|
|
3585
|
-
*/
|
|
3586
|
-
public static create(properties?: google.protobuf.ISourceCodeInfo): google.protobuf.SourceCodeInfo;
|
|
3587
|
-
|
|
3588
|
-
/**
|
|
3589
|
-
* Encodes the specified SourceCodeInfo message. Does not implicitly {@link google.protobuf.SourceCodeInfo.verify|verify} messages.
|
|
3590
|
-
* @param message SourceCodeInfo message or plain object to encode
|
|
3591
|
-
* @param [writer] Writer to encode to
|
|
3592
|
-
* @returns Writer
|
|
3593
|
-
*/
|
|
3594
|
-
public static encode(message: google.protobuf.ISourceCodeInfo, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3595
|
-
|
|
3596
|
-
/**
|
|
3597
|
-
* Encodes the specified SourceCodeInfo message, length delimited. Does not implicitly {@link google.protobuf.SourceCodeInfo.verify|verify} messages.
|
|
3598
|
-
* @param message SourceCodeInfo message or plain object to encode
|
|
3599
|
-
* @param [writer] Writer to encode to
|
|
3600
|
-
* @returns Writer
|
|
3601
|
-
*/
|
|
3602
|
-
public static encodeDelimited(message: google.protobuf.ISourceCodeInfo, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3603
|
-
|
|
3604
|
-
/**
|
|
3605
|
-
* Decodes a SourceCodeInfo message from the specified reader or buffer.
|
|
3606
|
-
* @param reader Reader or buffer to decode from
|
|
3607
|
-
* @param [length] Message length if known beforehand
|
|
3608
|
-
* @returns SourceCodeInfo
|
|
3609
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3610
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3611
|
-
*/
|
|
3612
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.SourceCodeInfo;
|
|
3613
|
-
|
|
3614
|
-
/**
|
|
3615
|
-
* Decodes a SourceCodeInfo message from the specified reader or buffer, length delimited.
|
|
3616
|
-
* @param reader Reader or buffer to decode from
|
|
3617
|
-
* @returns SourceCodeInfo
|
|
3618
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3619
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3620
|
-
*/
|
|
3621
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.SourceCodeInfo;
|
|
3622
|
-
|
|
3623
|
-
/**
|
|
3624
|
-
* Verifies a SourceCodeInfo message.
|
|
3625
|
-
* @param message Plain object to verify
|
|
3626
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
3627
|
-
*/
|
|
3628
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
3629
|
-
|
|
3630
|
-
/**
|
|
3631
|
-
* Creates a SourceCodeInfo message from a plain object. Also converts values to their respective internal types.
|
|
3632
|
-
* @param object Plain object
|
|
3633
|
-
* @returns SourceCodeInfo
|
|
3634
|
-
*/
|
|
3635
|
-
public static fromObject(object: { [k: string]: any }): google.protobuf.SourceCodeInfo;
|
|
3636
|
-
|
|
3637
|
-
/**
|
|
3638
|
-
* Creates a plain object from a SourceCodeInfo message. Also converts values to other types if specified.
|
|
3639
|
-
* @param message SourceCodeInfo
|
|
3640
|
-
* @param [options] Conversion options
|
|
3641
|
-
* @returns Plain object
|
|
3642
|
-
*/
|
|
3643
|
-
public static toObject(message: google.protobuf.SourceCodeInfo, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
3644
|
-
|
|
3645
|
-
/**
|
|
3646
|
-
* Converts this SourceCodeInfo to JSON.
|
|
3647
|
-
* @returns JSON object
|
|
3648
|
-
*/
|
|
3649
|
-
public toJSON(): { [k: string]: any };
|
|
3650
|
-
|
|
3651
|
-
/**
|
|
3652
|
-
* Gets the default type url for SourceCodeInfo
|
|
3653
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3654
|
-
* @returns The default type url
|
|
3655
|
-
*/
|
|
3656
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3657
|
-
}
|
|
3658
|
-
|
|
3659
|
-
namespace SourceCodeInfo {
|
|
3660
|
-
|
|
3661
|
-
/** Properties of a Location. */
|
|
3662
|
-
interface ILocation {
|
|
3663
|
-
|
|
3664
|
-
/** Location path */
|
|
3665
|
-
path?: (number[]|null);
|
|
3666
|
-
|
|
3667
|
-
/** Location span */
|
|
3668
|
-
span?: (number[]|null);
|
|
3669
|
-
|
|
3670
|
-
/** Location leadingComments */
|
|
3671
|
-
leadingComments?: (string|null);
|
|
3672
|
-
|
|
3673
|
-
/** Location trailingComments */
|
|
3674
|
-
trailingComments?: (string|null);
|
|
3675
|
-
|
|
3676
|
-
/** Location leadingDetachedComments */
|
|
3677
|
-
leadingDetachedComments?: (string[]|null);
|
|
3678
|
-
}
|
|
3679
|
-
|
|
3680
|
-
/** Represents a Location. */
|
|
3681
|
-
class Location implements ILocation {
|
|
3682
|
-
|
|
3683
|
-
/**
|
|
3684
|
-
* Constructs a new Location.
|
|
3685
|
-
* @param [properties] Properties to set
|
|
3686
|
-
*/
|
|
3687
|
-
constructor(properties?: google.protobuf.SourceCodeInfo.ILocation);
|
|
3688
|
-
|
|
3689
|
-
/** Location path. */
|
|
3690
|
-
public path: number[];
|
|
3691
|
-
|
|
3692
|
-
/** Location span. */
|
|
3693
|
-
public span: number[];
|
|
3201
|
+
/** Location span. */
|
|
3202
|
+
public span: number[];
|
|
3694
3203
|
|
|
3695
3204
|
/** Location leadingComments. */
|
|
3696
3205
|
public leadingComments: string;
|
|
@@ -4245,227 +3754,835 @@ export namespace google {
|
|
|
4245
3754
|
*/
|
|
4246
3755
|
public static encode(message: google.protobuf.ITimestamp, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
4247
3756
|
|
|
4248
|
-
/**
|
|
4249
|
-
* Encodes the specified Timestamp message, length delimited. Does not implicitly {@link google.protobuf.Timestamp.verify|verify} messages.
|
|
4250
|
-
* @param message Timestamp message or plain object to encode
|
|
4251
|
-
* @param [writer] Writer to encode to
|
|
4252
|
-
* @returns Writer
|
|
4253
|
-
*/
|
|
4254
|
-
public static encodeDelimited(message: google.protobuf.ITimestamp, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3757
|
+
/**
|
|
3758
|
+
* Encodes the specified Timestamp message, length delimited. Does not implicitly {@link google.protobuf.Timestamp.verify|verify} messages.
|
|
3759
|
+
* @param message Timestamp message or plain object to encode
|
|
3760
|
+
* @param [writer] Writer to encode to
|
|
3761
|
+
* @returns Writer
|
|
3762
|
+
*/
|
|
3763
|
+
public static encodeDelimited(message: google.protobuf.ITimestamp, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3764
|
+
|
|
3765
|
+
/**
|
|
3766
|
+
* Decodes a Timestamp message from the specified reader or buffer.
|
|
3767
|
+
* @param reader Reader or buffer to decode from
|
|
3768
|
+
* @param [length] Message length if known beforehand
|
|
3769
|
+
* @returns Timestamp
|
|
3770
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3771
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3772
|
+
*/
|
|
3773
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Timestamp;
|
|
3774
|
+
|
|
3775
|
+
/**
|
|
3776
|
+
* Decodes a Timestamp message from the specified reader or buffer, length delimited.
|
|
3777
|
+
* @param reader Reader or buffer to decode from
|
|
3778
|
+
* @returns Timestamp
|
|
3779
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3780
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3781
|
+
*/
|
|
3782
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.Timestamp;
|
|
3783
|
+
|
|
3784
|
+
/**
|
|
3785
|
+
* Verifies a Timestamp message.
|
|
3786
|
+
* @param message Plain object to verify
|
|
3787
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
3788
|
+
*/
|
|
3789
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
3790
|
+
|
|
3791
|
+
/**
|
|
3792
|
+
* Creates a Timestamp message from a plain object. Also converts values to their respective internal types.
|
|
3793
|
+
* @param object Plain object
|
|
3794
|
+
* @returns Timestamp
|
|
3795
|
+
*/
|
|
3796
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.Timestamp;
|
|
3797
|
+
|
|
3798
|
+
/**
|
|
3799
|
+
* Creates a plain object from a Timestamp message. Also converts values to other types if specified.
|
|
3800
|
+
* @param message Timestamp
|
|
3801
|
+
* @param [options] Conversion options
|
|
3802
|
+
* @returns Plain object
|
|
3803
|
+
*/
|
|
3804
|
+
public static toObject(message: google.protobuf.Timestamp, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
3805
|
+
|
|
3806
|
+
/**
|
|
3807
|
+
* Converts this Timestamp to JSON.
|
|
3808
|
+
* @returns JSON object
|
|
3809
|
+
*/
|
|
3810
|
+
public toJSON(): { [k: string]: any };
|
|
3811
|
+
|
|
3812
|
+
/**
|
|
3813
|
+
* Gets the default type url for Timestamp
|
|
3814
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3815
|
+
* @returns The default type url
|
|
3816
|
+
*/
|
|
3817
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3818
|
+
}
|
|
3819
|
+
}
|
|
3820
|
+
|
|
3821
|
+
/** Namespace analytics. */
|
|
3822
|
+
namespace analytics {
|
|
3823
|
+
|
|
3824
|
+
/** Namespace data. */
|
|
3825
|
+
namespace data {
|
|
3826
|
+
|
|
3827
|
+
/** Namespace v1alpha. */
|
|
3828
|
+
namespace v1alpha {
|
|
3829
|
+
|
|
3830
|
+
/** Represents an AlphaAnalyticsData */
|
|
3831
|
+
class AlphaAnalyticsData extends $protobuf.rpc.Service {
|
|
3832
|
+
|
|
3833
|
+
/**
|
|
3834
|
+
* Constructs a new AlphaAnalyticsData service.
|
|
3835
|
+
* @param rpcImpl RPC implementation
|
|
3836
|
+
* @param [requestDelimited=false] Whether requests are length-delimited
|
|
3837
|
+
* @param [responseDelimited=false] Whether responses are length-delimited
|
|
3838
|
+
*/
|
|
3839
|
+
constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean);
|
|
3840
|
+
|
|
3841
|
+
/**
|
|
3842
|
+
* Creates new AlphaAnalyticsData service using the specified rpc implementation.
|
|
3843
|
+
* @param rpcImpl RPC implementation
|
|
3844
|
+
* @param [requestDelimited=false] Whether requests are length-delimited
|
|
3845
|
+
* @param [responseDelimited=false] Whether responses are length-delimited
|
|
3846
|
+
* @returns RPC service. Useful where requests and/or responses are streamed.
|
|
3847
|
+
*/
|
|
3848
|
+
public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): AlphaAnalyticsData;
|
|
3849
|
+
|
|
3850
|
+
/**
|
|
3851
|
+
* Calls RunFunnelReport.
|
|
3852
|
+
* @param request RunFunnelReportRequest message or plain object
|
|
3853
|
+
* @param callback Node-style callback called with the error, if any, and RunFunnelReportResponse
|
|
3854
|
+
*/
|
|
3855
|
+
public runFunnelReport(request: google.analytics.data.v1alpha.IRunFunnelReportRequest, callback: google.analytics.data.v1alpha.AlphaAnalyticsData.RunFunnelReportCallback): void;
|
|
3856
|
+
|
|
3857
|
+
/**
|
|
3858
|
+
* Calls RunFunnelReport.
|
|
3859
|
+
* @param request RunFunnelReportRequest message or plain object
|
|
3860
|
+
* @returns Promise
|
|
3861
|
+
*/
|
|
3862
|
+
public runFunnelReport(request: google.analytics.data.v1alpha.IRunFunnelReportRequest): Promise<google.analytics.data.v1alpha.RunFunnelReportResponse>;
|
|
3863
|
+
|
|
3864
|
+
/**
|
|
3865
|
+
* Calls CreateAudienceList.
|
|
3866
|
+
* @param request CreateAudienceListRequest message or plain object
|
|
3867
|
+
* @param callback Node-style callback called with the error, if any, and Operation
|
|
3868
|
+
*/
|
|
3869
|
+
public createAudienceList(request: google.analytics.data.v1alpha.ICreateAudienceListRequest, callback: google.analytics.data.v1alpha.AlphaAnalyticsData.CreateAudienceListCallback): void;
|
|
3870
|
+
|
|
3871
|
+
/**
|
|
3872
|
+
* Calls CreateAudienceList.
|
|
3873
|
+
* @param request CreateAudienceListRequest message or plain object
|
|
3874
|
+
* @returns Promise
|
|
3875
|
+
*/
|
|
3876
|
+
public createAudienceList(request: google.analytics.data.v1alpha.ICreateAudienceListRequest): Promise<google.longrunning.Operation>;
|
|
3877
|
+
|
|
3878
|
+
/**
|
|
3879
|
+
* Calls QueryAudienceList.
|
|
3880
|
+
* @param request QueryAudienceListRequest message or plain object
|
|
3881
|
+
* @param callback Node-style callback called with the error, if any, and QueryAudienceListResponse
|
|
3882
|
+
*/
|
|
3883
|
+
public queryAudienceList(request: google.analytics.data.v1alpha.IQueryAudienceListRequest, callback: google.analytics.data.v1alpha.AlphaAnalyticsData.QueryAudienceListCallback): void;
|
|
3884
|
+
|
|
3885
|
+
/**
|
|
3886
|
+
* Calls QueryAudienceList.
|
|
3887
|
+
* @param request QueryAudienceListRequest message or plain object
|
|
3888
|
+
* @returns Promise
|
|
3889
|
+
*/
|
|
3890
|
+
public queryAudienceList(request: google.analytics.data.v1alpha.IQueryAudienceListRequest): Promise<google.analytics.data.v1alpha.QueryAudienceListResponse>;
|
|
3891
|
+
|
|
3892
|
+
/**
|
|
3893
|
+
* Calls SheetExportAudienceList.
|
|
3894
|
+
* @param request SheetExportAudienceListRequest message or plain object
|
|
3895
|
+
* @param callback Node-style callback called with the error, if any, and SheetExportAudienceListResponse
|
|
3896
|
+
*/
|
|
3897
|
+
public sheetExportAudienceList(request: google.analytics.data.v1alpha.ISheetExportAudienceListRequest, callback: google.analytics.data.v1alpha.AlphaAnalyticsData.SheetExportAudienceListCallback): void;
|
|
3898
|
+
|
|
3899
|
+
/**
|
|
3900
|
+
* Calls SheetExportAudienceList.
|
|
3901
|
+
* @param request SheetExportAudienceListRequest message or plain object
|
|
3902
|
+
* @returns Promise
|
|
3903
|
+
*/
|
|
3904
|
+
public sheetExportAudienceList(request: google.analytics.data.v1alpha.ISheetExportAudienceListRequest): Promise<google.analytics.data.v1alpha.SheetExportAudienceListResponse>;
|
|
3905
|
+
|
|
3906
|
+
/**
|
|
3907
|
+
* Calls GetAudienceList.
|
|
3908
|
+
* @param request GetAudienceListRequest message or plain object
|
|
3909
|
+
* @param callback Node-style callback called with the error, if any, and AudienceList
|
|
3910
|
+
*/
|
|
3911
|
+
public getAudienceList(request: google.analytics.data.v1alpha.IGetAudienceListRequest, callback: google.analytics.data.v1alpha.AlphaAnalyticsData.GetAudienceListCallback): void;
|
|
3912
|
+
|
|
3913
|
+
/**
|
|
3914
|
+
* Calls GetAudienceList.
|
|
3915
|
+
* @param request GetAudienceListRequest message or plain object
|
|
3916
|
+
* @returns Promise
|
|
3917
|
+
*/
|
|
3918
|
+
public getAudienceList(request: google.analytics.data.v1alpha.IGetAudienceListRequest): Promise<google.analytics.data.v1alpha.AudienceList>;
|
|
3919
|
+
|
|
3920
|
+
/**
|
|
3921
|
+
* Calls ListAudienceLists.
|
|
3922
|
+
* @param request ListAudienceListsRequest message or plain object
|
|
3923
|
+
* @param callback Node-style callback called with the error, if any, and ListAudienceListsResponse
|
|
3924
|
+
*/
|
|
3925
|
+
public listAudienceLists(request: google.analytics.data.v1alpha.IListAudienceListsRequest, callback: google.analytics.data.v1alpha.AlphaAnalyticsData.ListAudienceListsCallback): void;
|
|
3926
|
+
|
|
3927
|
+
/**
|
|
3928
|
+
* Calls ListAudienceLists.
|
|
3929
|
+
* @param request ListAudienceListsRequest message or plain object
|
|
3930
|
+
* @returns Promise
|
|
3931
|
+
*/
|
|
3932
|
+
public listAudienceLists(request: google.analytics.data.v1alpha.IListAudienceListsRequest): Promise<google.analytics.data.v1alpha.ListAudienceListsResponse>;
|
|
3933
|
+
|
|
3934
|
+
/**
|
|
3935
|
+
* Calls CreateRecurringAudienceList.
|
|
3936
|
+
* @param request CreateRecurringAudienceListRequest message or plain object
|
|
3937
|
+
* @param callback Node-style callback called with the error, if any, and RecurringAudienceList
|
|
3938
|
+
*/
|
|
3939
|
+
public createRecurringAudienceList(request: google.analytics.data.v1alpha.ICreateRecurringAudienceListRequest, callback: google.analytics.data.v1alpha.AlphaAnalyticsData.CreateRecurringAudienceListCallback): void;
|
|
3940
|
+
|
|
3941
|
+
/**
|
|
3942
|
+
* Calls CreateRecurringAudienceList.
|
|
3943
|
+
* @param request CreateRecurringAudienceListRequest message or plain object
|
|
3944
|
+
* @returns Promise
|
|
3945
|
+
*/
|
|
3946
|
+
public createRecurringAudienceList(request: google.analytics.data.v1alpha.ICreateRecurringAudienceListRequest): Promise<google.analytics.data.v1alpha.RecurringAudienceList>;
|
|
3947
|
+
|
|
3948
|
+
/**
|
|
3949
|
+
* Calls GetRecurringAudienceList.
|
|
3950
|
+
* @param request GetRecurringAudienceListRequest message or plain object
|
|
3951
|
+
* @param callback Node-style callback called with the error, if any, and RecurringAudienceList
|
|
3952
|
+
*/
|
|
3953
|
+
public getRecurringAudienceList(request: google.analytics.data.v1alpha.IGetRecurringAudienceListRequest, callback: google.analytics.data.v1alpha.AlphaAnalyticsData.GetRecurringAudienceListCallback): void;
|
|
3954
|
+
|
|
3955
|
+
/**
|
|
3956
|
+
* Calls GetRecurringAudienceList.
|
|
3957
|
+
* @param request GetRecurringAudienceListRequest message or plain object
|
|
3958
|
+
* @returns Promise
|
|
3959
|
+
*/
|
|
3960
|
+
public getRecurringAudienceList(request: google.analytics.data.v1alpha.IGetRecurringAudienceListRequest): Promise<google.analytics.data.v1alpha.RecurringAudienceList>;
|
|
3961
|
+
|
|
3962
|
+
/**
|
|
3963
|
+
* Calls ListRecurringAudienceLists.
|
|
3964
|
+
* @param request ListRecurringAudienceListsRequest message or plain object
|
|
3965
|
+
* @param callback Node-style callback called with the error, if any, and ListRecurringAudienceListsResponse
|
|
3966
|
+
*/
|
|
3967
|
+
public listRecurringAudienceLists(request: google.analytics.data.v1alpha.IListRecurringAudienceListsRequest, callback: google.analytics.data.v1alpha.AlphaAnalyticsData.ListRecurringAudienceListsCallback): void;
|
|
3968
|
+
|
|
3969
|
+
/**
|
|
3970
|
+
* Calls ListRecurringAudienceLists.
|
|
3971
|
+
* @param request ListRecurringAudienceListsRequest message or plain object
|
|
3972
|
+
* @returns Promise
|
|
3973
|
+
*/
|
|
3974
|
+
public listRecurringAudienceLists(request: google.analytics.data.v1alpha.IListRecurringAudienceListsRequest): Promise<google.analytics.data.v1alpha.ListRecurringAudienceListsResponse>;
|
|
3975
|
+
}
|
|
3976
|
+
|
|
3977
|
+
namespace AlphaAnalyticsData {
|
|
3978
|
+
|
|
3979
|
+
/**
|
|
3980
|
+
* Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|runFunnelReport}.
|
|
3981
|
+
* @param error Error, if any
|
|
3982
|
+
* @param [response] RunFunnelReportResponse
|
|
3983
|
+
*/
|
|
3984
|
+
type RunFunnelReportCallback = (error: (Error|null), response?: google.analytics.data.v1alpha.RunFunnelReportResponse) => void;
|
|
3985
|
+
|
|
3986
|
+
/**
|
|
3987
|
+
* Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|createAudienceList}.
|
|
3988
|
+
* @param error Error, if any
|
|
3989
|
+
* @param [response] Operation
|
|
3990
|
+
*/
|
|
3991
|
+
type CreateAudienceListCallback = (error: (Error|null), response?: google.longrunning.Operation) => void;
|
|
3992
|
+
|
|
3993
|
+
/**
|
|
3994
|
+
* Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|queryAudienceList}.
|
|
3995
|
+
* @param error Error, if any
|
|
3996
|
+
* @param [response] QueryAudienceListResponse
|
|
3997
|
+
*/
|
|
3998
|
+
type QueryAudienceListCallback = (error: (Error|null), response?: google.analytics.data.v1alpha.QueryAudienceListResponse) => void;
|
|
3999
|
+
|
|
4000
|
+
/**
|
|
4001
|
+
* Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|sheetExportAudienceList}.
|
|
4002
|
+
* @param error Error, if any
|
|
4003
|
+
* @param [response] SheetExportAudienceListResponse
|
|
4004
|
+
*/
|
|
4005
|
+
type SheetExportAudienceListCallback = (error: (Error|null), response?: google.analytics.data.v1alpha.SheetExportAudienceListResponse) => void;
|
|
4006
|
+
|
|
4007
|
+
/**
|
|
4008
|
+
* Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|getAudienceList}.
|
|
4009
|
+
* @param error Error, if any
|
|
4010
|
+
* @param [response] AudienceList
|
|
4011
|
+
*/
|
|
4012
|
+
type GetAudienceListCallback = (error: (Error|null), response?: google.analytics.data.v1alpha.AudienceList) => void;
|
|
4013
|
+
|
|
4014
|
+
/**
|
|
4015
|
+
* Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|listAudienceLists}.
|
|
4016
|
+
* @param error Error, if any
|
|
4017
|
+
* @param [response] ListAudienceListsResponse
|
|
4018
|
+
*/
|
|
4019
|
+
type ListAudienceListsCallback = (error: (Error|null), response?: google.analytics.data.v1alpha.ListAudienceListsResponse) => void;
|
|
4020
|
+
|
|
4021
|
+
/**
|
|
4022
|
+
* Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|createRecurringAudienceList}.
|
|
4023
|
+
* @param error Error, if any
|
|
4024
|
+
* @param [response] RecurringAudienceList
|
|
4025
|
+
*/
|
|
4026
|
+
type CreateRecurringAudienceListCallback = (error: (Error|null), response?: google.analytics.data.v1alpha.RecurringAudienceList) => void;
|
|
4027
|
+
|
|
4028
|
+
/**
|
|
4029
|
+
* Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|getRecurringAudienceList}.
|
|
4030
|
+
* @param error Error, if any
|
|
4031
|
+
* @param [response] RecurringAudienceList
|
|
4032
|
+
*/
|
|
4033
|
+
type GetRecurringAudienceListCallback = (error: (Error|null), response?: google.analytics.data.v1alpha.RecurringAudienceList) => void;
|
|
4034
|
+
|
|
4035
|
+
/**
|
|
4036
|
+
* Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|listRecurringAudienceLists}.
|
|
4037
|
+
* @param error Error, if any
|
|
4038
|
+
* @param [response] ListRecurringAudienceListsResponse
|
|
4039
|
+
*/
|
|
4040
|
+
type ListRecurringAudienceListsCallback = (error: (Error|null), response?: google.analytics.data.v1alpha.ListRecurringAudienceListsResponse) => void;
|
|
4041
|
+
}
|
|
4042
|
+
|
|
4043
|
+
/** Properties of a CreateRecurringAudienceListRequest. */
|
|
4044
|
+
interface ICreateRecurringAudienceListRequest {
|
|
4045
|
+
|
|
4046
|
+
/** CreateRecurringAudienceListRequest parent */
|
|
4047
|
+
parent?: (string|null);
|
|
4048
|
+
|
|
4049
|
+
/** CreateRecurringAudienceListRequest recurringAudienceList */
|
|
4050
|
+
recurringAudienceList?: (google.analytics.data.v1alpha.IRecurringAudienceList|null);
|
|
4051
|
+
}
|
|
4052
|
+
|
|
4053
|
+
/** Represents a CreateRecurringAudienceListRequest. */
|
|
4054
|
+
class CreateRecurringAudienceListRequest implements ICreateRecurringAudienceListRequest {
|
|
4055
|
+
|
|
4056
|
+
/**
|
|
4057
|
+
* Constructs a new CreateRecurringAudienceListRequest.
|
|
4058
|
+
* @param [properties] Properties to set
|
|
4059
|
+
*/
|
|
4060
|
+
constructor(properties?: google.analytics.data.v1alpha.ICreateRecurringAudienceListRequest);
|
|
4061
|
+
|
|
4062
|
+
/** CreateRecurringAudienceListRequest parent. */
|
|
4063
|
+
public parent: string;
|
|
4064
|
+
|
|
4065
|
+
/** CreateRecurringAudienceListRequest recurringAudienceList. */
|
|
4066
|
+
public recurringAudienceList?: (google.analytics.data.v1alpha.IRecurringAudienceList|null);
|
|
4067
|
+
|
|
4068
|
+
/**
|
|
4069
|
+
* Creates a new CreateRecurringAudienceListRequest instance using the specified properties.
|
|
4070
|
+
* @param [properties] Properties to set
|
|
4071
|
+
* @returns CreateRecurringAudienceListRequest instance
|
|
4072
|
+
*/
|
|
4073
|
+
public static create(properties?: google.analytics.data.v1alpha.ICreateRecurringAudienceListRequest): google.analytics.data.v1alpha.CreateRecurringAudienceListRequest;
|
|
4074
|
+
|
|
4075
|
+
/**
|
|
4076
|
+
* Encodes the specified CreateRecurringAudienceListRequest message. Does not implicitly {@link google.analytics.data.v1alpha.CreateRecurringAudienceListRequest.verify|verify} messages.
|
|
4077
|
+
* @param message CreateRecurringAudienceListRequest message or plain object to encode
|
|
4078
|
+
* @param [writer] Writer to encode to
|
|
4079
|
+
* @returns Writer
|
|
4080
|
+
*/
|
|
4081
|
+
public static encode(message: google.analytics.data.v1alpha.ICreateRecurringAudienceListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
4082
|
+
|
|
4083
|
+
/**
|
|
4084
|
+
* Encodes the specified CreateRecurringAudienceListRequest message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.CreateRecurringAudienceListRequest.verify|verify} messages.
|
|
4085
|
+
* @param message CreateRecurringAudienceListRequest message or plain object to encode
|
|
4086
|
+
* @param [writer] Writer to encode to
|
|
4087
|
+
* @returns Writer
|
|
4088
|
+
*/
|
|
4089
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.ICreateRecurringAudienceListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
4090
|
+
|
|
4091
|
+
/**
|
|
4092
|
+
* Decodes a CreateRecurringAudienceListRequest message from the specified reader or buffer.
|
|
4093
|
+
* @param reader Reader or buffer to decode from
|
|
4094
|
+
* @param [length] Message length if known beforehand
|
|
4095
|
+
* @returns CreateRecurringAudienceListRequest
|
|
4096
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
4097
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
4098
|
+
*/
|
|
4099
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.CreateRecurringAudienceListRequest;
|
|
4100
|
+
|
|
4101
|
+
/**
|
|
4102
|
+
* Decodes a CreateRecurringAudienceListRequest message from the specified reader or buffer, length delimited.
|
|
4103
|
+
* @param reader Reader or buffer to decode from
|
|
4104
|
+
* @returns CreateRecurringAudienceListRequest
|
|
4105
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
4106
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
4107
|
+
*/
|
|
4108
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.CreateRecurringAudienceListRequest;
|
|
4109
|
+
|
|
4110
|
+
/**
|
|
4111
|
+
* Verifies a CreateRecurringAudienceListRequest message.
|
|
4112
|
+
* @param message Plain object to verify
|
|
4113
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
4114
|
+
*/
|
|
4115
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
4116
|
+
|
|
4117
|
+
/**
|
|
4118
|
+
* Creates a CreateRecurringAudienceListRequest message from a plain object. Also converts values to their respective internal types.
|
|
4119
|
+
* @param object Plain object
|
|
4120
|
+
* @returns CreateRecurringAudienceListRequest
|
|
4121
|
+
*/
|
|
4122
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.CreateRecurringAudienceListRequest;
|
|
4123
|
+
|
|
4124
|
+
/**
|
|
4125
|
+
* Creates a plain object from a CreateRecurringAudienceListRequest message. Also converts values to other types if specified.
|
|
4126
|
+
* @param message CreateRecurringAudienceListRequest
|
|
4127
|
+
* @param [options] Conversion options
|
|
4128
|
+
* @returns Plain object
|
|
4129
|
+
*/
|
|
4130
|
+
public static toObject(message: google.analytics.data.v1alpha.CreateRecurringAudienceListRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
4131
|
+
|
|
4132
|
+
/**
|
|
4133
|
+
* Converts this CreateRecurringAudienceListRequest to JSON.
|
|
4134
|
+
* @returns JSON object
|
|
4135
|
+
*/
|
|
4136
|
+
public toJSON(): { [k: string]: any };
|
|
4137
|
+
|
|
4138
|
+
/**
|
|
4139
|
+
* Gets the default type url for CreateRecurringAudienceListRequest
|
|
4140
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4141
|
+
* @returns The default type url
|
|
4142
|
+
*/
|
|
4143
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4144
|
+
}
|
|
4145
|
+
|
|
4146
|
+
/** Properties of a RecurringAudienceList. */
|
|
4147
|
+
interface IRecurringAudienceList {
|
|
4148
|
+
|
|
4149
|
+
/** RecurringAudienceList name */
|
|
4150
|
+
name?: (string|null);
|
|
4151
|
+
|
|
4152
|
+
/** RecurringAudienceList audience */
|
|
4153
|
+
audience?: (string|null);
|
|
4154
|
+
|
|
4155
|
+
/** RecurringAudienceList audienceDisplayName */
|
|
4156
|
+
audienceDisplayName?: (string|null);
|
|
4157
|
+
|
|
4158
|
+
/** RecurringAudienceList dimensions */
|
|
4159
|
+
dimensions?: (google.analytics.data.v1alpha.IAudienceDimension[]|null);
|
|
4160
|
+
|
|
4161
|
+
/** RecurringAudienceList activeDaysRemaining */
|
|
4162
|
+
activeDaysRemaining?: (number|null);
|
|
4163
|
+
|
|
4164
|
+
/** RecurringAudienceList audienceLists */
|
|
4165
|
+
audienceLists?: (string[]|null);
|
|
4166
|
+
}
|
|
4167
|
+
|
|
4168
|
+
/** Represents a RecurringAudienceList. */
|
|
4169
|
+
class RecurringAudienceList implements IRecurringAudienceList {
|
|
4170
|
+
|
|
4171
|
+
/**
|
|
4172
|
+
* Constructs a new RecurringAudienceList.
|
|
4173
|
+
* @param [properties] Properties to set
|
|
4174
|
+
*/
|
|
4175
|
+
constructor(properties?: google.analytics.data.v1alpha.IRecurringAudienceList);
|
|
4176
|
+
|
|
4177
|
+
/** RecurringAudienceList name. */
|
|
4178
|
+
public name: string;
|
|
4179
|
+
|
|
4180
|
+
/** RecurringAudienceList audience. */
|
|
4181
|
+
public audience: string;
|
|
4182
|
+
|
|
4183
|
+
/** RecurringAudienceList audienceDisplayName. */
|
|
4184
|
+
public audienceDisplayName: string;
|
|
4185
|
+
|
|
4186
|
+
/** RecurringAudienceList dimensions. */
|
|
4187
|
+
public dimensions: google.analytics.data.v1alpha.IAudienceDimension[];
|
|
4188
|
+
|
|
4189
|
+
/** RecurringAudienceList activeDaysRemaining. */
|
|
4190
|
+
public activeDaysRemaining?: (number|null);
|
|
4191
|
+
|
|
4192
|
+
/** RecurringAudienceList audienceLists. */
|
|
4193
|
+
public audienceLists: string[];
|
|
4194
|
+
|
|
4195
|
+
/** RecurringAudienceList _activeDaysRemaining. */
|
|
4196
|
+
public _activeDaysRemaining?: "activeDaysRemaining";
|
|
4197
|
+
|
|
4198
|
+
/**
|
|
4199
|
+
* Creates a new RecurringAudienceList instance using the specified properties.
|
|
4200
|
+
* @param [properties] Properties to set
|
|
4201
|
+
* @returns RecurringAudienceList instance
|
|
4202
|
+
*/
|
|
4203
|
+
public static create(properties?: google.analytics.data.v1alpha.IRecurringAudienceList): google.analytics.data.v1alpha.RecurringAudienceList;
|
|
4204
|
+
|
|
4205
|
+
/**
|
|
4206
|
+
* Encodes the specified RecurringAudienceList message. Does not implicitly {@link google.analytics.data.v1alpha.RecurringAudienceList.verify|verify} messages.
|
|
4207
|
+
* @param message RecurringAudienceList message or plain object to encode
|
|
4208
|
+
* @param [writer] Writer to encode to
|
|
4209
|
+
* @returns Writer
|
|
4210
|
+
*/
|
|
4211
|
+
public static encode(message: google.analytics.data.v1alpha.IRecurringAudienceList, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
4212
|
+
|
|
4213
|
+
/**
|
|
4214
|
+
* Encodes the specified RecurringAudienceList message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.RecurringAudienceList.verify|verify} messages.
|
|
4215
|
+
* @param message RecurringAudienceList message or plain object to encode
|
|
4216
|
+
* @param [writer] Writer to encode to
|
|
4217
|
+
* @returns Writer
|
|
4218
|
+
*/
|
|
4219
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IRecurringAudienceList, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
4220
|
+
|
|
4221
|
+
/**
|
|
4222
|
+
* Decodes a RecurringAudienceList message from the specified reader or buffer.
|
|
4223
|
+
* @param reader Reader or buffer to decode from
|
|
4224
|
+
* @param [length] Message length if known beforehand
|
|
4225
|
+
* @returns RecurringAudienceList
|
|
4226
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
4227
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
4228
|
+
*/
|
|
4229
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.RecurringAudienceList;
|
|
4230
|
+
|
|
4231
|
+
/**
|
|
4232
|
+
* Decodes a RecurringAudienceList message from the specified reader or buffer, length delimited.
|
|
4233
|
+
* @param reader Reader or buffer to decode from
|
|
4234
|
+
* @returns RecurringAudienceList
|
|
4235
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
4236
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
4237
|
+
*/
|
|
4238
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.RecurringAudienceList;
|
|
4239
|
+
|
|
4240
|
+
/**
|
|
4241
|
+
* Verifies a RecurringAudienceList message.
|
|
4242
|
+
* @param message Plain object to verify
|
|
4243
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
4244
|
+
*/
|
|
4245
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
4246
|
+
|
|
4247
|
+
/**
|
|
4248
|
+
* Creates a RecurringAudienceList message from a plain object. Also converts values to their respective internal types.
|
|
4249
|
+
* @param object Plain object
|
|
4250
|
+
* @returns RecurringAudienceList
|
|
4251
|
+
*/
|
|
4252
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.RecurringAudienceList;
|
|
4253
|
+
|
|
4254
|
+
/**
|
|
4255
|
+
* Creates a plain object from a RecurringAudienceList message. Also converts values to other types if specified.
|
|
4256
|
+
* @param message RecurringAudienceList
|
|
4257
|
+
* @param [options] Conversion options
|
|
4258
|
+
* @returns Plain object
|
|
4259
|
+
*/
|
|
4260
|
+
public static toObject(message: google.analytics.data.v1alpha.RecurringAudienceList, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
4261
|
+
|
|
4262
|
+
/**
|
|
4263
|
+
* Converts this RecurringAudienceList to JSON.
|
|
4264
|
+
* @returns JSON object
|
|
4265
|
+
*/
|
|
4266
|
+
public toJSON(): { [k: string]: any };
|
|
4267
|
+
|
|
4268
|
+
/**
|
|
4269
|
+
* Gets the default type url for RecurringAudienceList
|
|
4270
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4271
|
+
* @returns The default type url
|
|
4272
|
+
*/
|
|
4273
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4274
|
+
}
|
|
4275
|
+
|
|
4276
|
+
/** Properties of a GetRecurringAudienceListRequest. */
|
|
4277
|
+
interface IGetRecurringAudienceListRequest {
|
|
4278
|
+
|
|
4279
|
+
/** GetRecurringAudienceListRequest name */
|
|
4280
|
+
name?: (string|null);
|
|
4281
|
+
}
|
|
4282
|
+
|
|
4283
|
+
/** Represents a GetRecurringAudienceListRequest. */
|
|
4284
|
+
class GetRecurringAudienceListRequest implements IGetRecurringAudienceListRequest {
|
|
4285
|
+
|
|
4286
|
+
/**
|
|
4287
|
+
* Constructs a new GetRecurringAudienceListRequest.
|
|
4288
|
+
* @param [properties] Properties to set
|
|
4289
|
+
*/
|
|
4290
|
+
constructor(properties?: google.analytics.data.v1alpha.IGetRecurringAudienceListRequest);
|
|
4291
|
+
|
|
4292
|
+
/** GetRecurringAudienceListRequest name. */
|
|
4293
|
+
public name: string;
|
|
4294
|
+
|
|
4295
|
+
/**
|
|
4296
|
+
* Creates a new GetRecurringAudienceListRequest instance using the specified properties.
|
|
4297
|
+
* @param [properties] Properties to set
|
|
4298
|
+
* @returns GetRecurringAudienceListRequest instance
|
|
4299
|
+
*/
|
|
4300
|
+
public static create(properties?: google.analytics.data.v1alpha.IGetRecurringAudienceListRequest): google.analytics.data.v1alpha.GetRecurringAudienceListRequest;
|
|
4301
|
+
|
|
4302
|
+
/**
|
|
4303
|
+
* Encodes the specified GetRecurringAudienceListRequest message. Does not implicitly {@link google.analytics.data.v1alpha.GetRecurringAudienceListRequest.verify|verify} messages.
|
|
4304
|
+
* @param message GetRecurringAudienceListRequest message or plain object to encode
|
|
4305
|
+
* @param [writer] Writer to encode to
|
|
4306
|
+
* @returns Writer
|
|
4307
|
+
*/
|
|
4308
|
+
public static encode(message: google.analytics.data.v1alpha.IGetRecurringAudienceListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
4309
|
+
|
|
4310
|
+
/**
|
|
4311
|
+
* Encodes the specified GetRecurringAudienceListRequest message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.GetRecurringAudienceListRequest.verify|verify} messages.
|
|
4312
|
+
* @param message GetRecurringAudienceListRequest message or plain object to encode
|
|
4313
|
+
* @param [writer] Writer to encode to
|
|
4314
|
+
* @returns Writer
|
|
4315
|
+
*/
|
|
4316
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IGetRecurringAudienceListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
4317
|
+
|
|
4318
|
+
/**
|
|
4319
|
+
* Decodes a GetRecurringAudienceListRequest message from the specified reader or buffer.
|
|
4320
|
+
* @param reader Reader or buffer to decode from
|
|
4321
|
+
* @param [length] Message length if known beforehand
|
|
4322
|
+
* @returns GetRecurringAudienceListRequest
|
|
4323
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
4324
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
4325
|
+
*/
|
|
4326
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.GetRecurringAudienceListRequest;
|
|
4327
|
+
|
|
4328
|
+
/**
|
|
4329
|
+
* Decodes a GetRecurringAudienceListRequest message from the specified reader or buffer, length delimited.
|
|
4330
|
+
* @param reader Reader or buffer to decode from
|
|
4331
|
+
* @returns GetRecurringAudienceListRequest
|
|
4332
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
4333
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
4334
|
+
*/
|
|
4335
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.GetRecurringAudienceListRequest;
|
|
4336
|
+
|
|
4337
|
+
/**
|
|
4338
|
+
* Verifies a GetRecurringAudienceListRequest message.
|
|
4339
|
+
* @param message Plain object to verify
|
|
4340
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
4341
|
+
*/
|
|
4342
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
4343
|
+
|
|
4344
|
+
/**
|
|
4345
|
+
* Creates a GetRecurringAudienceListRequest message from a plain object. Also converts values to their respective internal types.
|
|
4346
|
+
* @param object Plain object
|
|
4347
|
+
* @returns GetRecurringAudienceListRequest
|
|
4348
|
+
*/
|
|
4349
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.GetRecurringAudienceListRequest;
|
|
4255
4350
|
|
|
4256
|
-
|
|
4257
|
-
|
|
4258
|
-
|
|
4259
|
-
|
|
4260
|
-
|
|
4261
|
-
|
|
4262
|
-
|
|
4263
|
-
*/
|
|
4264
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Timestamp;
|
|
4351
|
+
/**
|
|
4352
|
+
* Creates a plain object from a GetRecurringAudienceListRequest message. Also converts values to other types if specified.
|
|
4353
|
+
* @param message GetRecurringAudienceListRequest
|
|
4354
|
+
* @param [options] Conversion options
|
|
4355
|
+
* @returns Plain object
|
|
4356
|
+
*/
|
|
4357
|
+
public static toObject(message: google.analytics.data.v1alpha.GetRecurringAudienceListRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
4265
4358
|
|
|
4266
|
-
|
|
4267
|
-
|
|
4268
|
-
|
|
4269
|
-
|
|
4270
|
-
|
|
4271
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
4272
|
-
*/
|
|
4273
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.Timestamp;
|
|
4359
|
+
/**
|
|
4360
|
+
* Converts this GetRecurringAudienceListRequest to JSON.
|
|
4361
|
+
* @returns JSON object
|
|
4362
|
+
*/
|
|
4363
|
+
public toJSON(): { [k: string]: any };
|
|
4274
4364
|
|
|
4275
|
-
|
|
4276
|
-
|
|
4277
|
-
|
|
4278
|
-
|
|
4279
|
-
|
|
4280
|
-
|
|
4365
|
+
/**
|
|
4366
|
+
* Gets the default type url for GetRecurringAudienceListRequest
|
|
4367
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4368
|
+
* @returns The default type url
|
|
4369
|
+
*/
|
|
4370
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4371
|
+
}
|
|
4281
4372
|
|
|
4282
|
-
|
|
4283
|
-
|
|
4284
|
-
* @param object Plain object
|
|
4285
|
-
* @returns Timestamp
|
|
4286
|
-
*/
|
|
4287
|
-
public static fromObject(object: { [k: string]: any }): google.protobuf.Timestamp;
|
|
4373
|
+
/** Properties of a ListRecurringAudienceListsRequest. */
|
|
4374
|
+
interface IListRecurringAudienceListsRequest {
|
|
4288
4375
|
|
|
4289
|
-
|
|
4290
|
-
|
|
4291
|
-
* @param message Timestamp
|
|
4292
|
-
* @param [options] Conversion options
|
|
4293
|
-
* @returns Plain object
|
|
4294
|
-
*/
|
|
4295
|
-
public static toObject(message: google.protobuf.Timestamp, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
4376
|
+
/** ListRecurringAudienceListsRequest parent */
|
|
4377
|
+
parent?: (string|null);
|
|
4296
4378
|
|
|
4297
|
-
|
|
4298
|
-
|
|
4299
|
-
* @returns JSON object
|
|
4300
|
-
*/
|
|
4301
|
-
public toJSON(): { [k: string]: any };
|
|
4379
|
+
/** ListRecurringAudienceListsRequest pageSize */
|
|
4380
|
+
pageSize?: (number|null);
|
|
4302
4381
|
|
|
4303
|
-
|
|
4304
|
-
|
|
4305
|
-
|
|
4306
|
-
* @returns The default type url
|
|
4307
|
-
*/
|
|
4308
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4309
|
-
}
|
|
4310
|
-
}
|
|
4382
|
+
/** ListRecurringAudienceListsRequest pageToken */
|
|
4383
|
+
pageToken?: (string|null);
|
|
4384
|
+
}
|
|
4311
4385
|
|
|
4312
|
-
|
|
4313
|
-
|
|
4386
|
+
/** Represents a ListRecurringAudienceListsRequest. */
|
|
4387
|
+
class ListRecurringAudienceListsRequest implements IListRecurringAudienceListsRequest {
|
|
4314
4388
|
|
|
4315
|
-
|
|
4316
|
-
|
|
4389
|
+
/**
|
|
4390
|
+
* Constructs a new ListRecurringAudienceListsRequest.
|
|
4391
|
+
* @param [properties] Properties to set
|
|
4392
|
+
*/
|
|
4393
|
+
constructor(properties?: google.analytics.data.v1alpha.IListRecurringAudienceListsRequest);
|
|
4317
4394
|
|
|
4318
|
-
|
|
4319
|
-
|
|
4395
|
+
/** ListRecurringAudienceListsRequest parent. */
|
|
4396
|
+
public parent: string;
|
|
4320
4397
|
|
|
4321
|
-
|
|
4322
|
-
|
|
4398
|
+
/** ListRecurringAudienceListsRequest pageSize. */
|
|
4399
|
+
public pageSize: number;
|
|
4400
|
+
|
|
4401
|
+
/** ListRecurringAudienceListsRequest pageToken. */
|
|
4402
|
+
public pageToken: string;
|
|
4323
4403
|
|
|
4324
4404
|
/**
|
|
4325
|
-
*
|
|
4326
|
-
* @param
|
|
4327
|
-
* @
|
|
4328
|
-
* @param [responseDelimited=false] Whether responses are length-delimited
|
|
4405
|
+
* Creates a new ListRecurringAudienceListsRequest instance using the specified properties.
|
|
4406
|
+
* @param [properties] Properties to set
|
|
4407
|
+
* @returns ListRecurringAudienceListsRequest instance
|
|
4329
4408
|
*/
|
|
4330
|
-
|
|
4409
|
+
public static create(properties?: google.analytics.data.v1alpha.IListRecurringAudienceListsRequest): google.analytics.data.v1alpha.ListRecurringAudienceListsRequest;
|
|
4331
4410
|
|
|
4332
4411
|
/**
|
|
4333
|
-
*
|
|
4334
|
-
* @param
|
|
4335
|
-
* @param [
|
|
4336
|
-
* @
|
|
4337
|
-
* @returns RPC service. Useful where requests and/or responses are streamed.
|
|
4412
|
+
* Encodes the specified ListRecurringAudienceListsRequest message. Does not implicitly {@link google.analytics.data.v1alpha.ListRecurringAudienceListsRequest.verify|verify} messages.
|
|
4413
|
+
* @param message ListRecurringAudienceListsRequest message or plain object to encode
|
|
4414
|
+
* @param [writer] Writer to encode to
|
|
4415
|
+
* @returns Writer
|
|
4338
4416
|
*/
|
|
4339
|
-
public static
|
|
4417
|
+
public static encode(message: google.analytics.data.v1alpha.IListRecurringAudienceListsRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
4340
4418
|
|
|
4341
4419
|
/**
|
|
4342
|
-
*
|
|
4343
|
-
* @param
|
|
4344
|
-
* @param
|
|
4420
|
+
* Encodes the specified ListRecurringAudienceListsRequest message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ListRecurringAudienceListsRequest.verify|verify} messages.
|
|
4421
|
+
* @param message ListRecurringAudienceListsRequest message or plain object to encode
|
|
4422
|
+
* @param [writer] Writer to encode to
|
|
4423
|
+
* @returns Writer
|
|
4345
4424
|
*/
|
|
4346
|
-
public
|
|
4425
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IListRecurringAudienceListsRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
4347
4426
|
|
|
4348
4427
|
/**
|
|
4349
|
-
*
|
|
4350
|
-
* @param
|
|
4351
|
-
* @
|
|
4428
|
+
* Decodes a ListRecurringAudienceListsRequest message from the specified reader or buffer.
|
|
4429
|
+
* @param reader Reader or buffer to decode from
|
|
4430
|
+
* @param [length] Message length if known beforehand
|
|
4431
|
+
* @returns ListRecurringAudienceListsRequest
|
|
4432
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
4433
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
4352
4434
|
*/
|
|
4353
|
-
public
|
|
4435
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ListRecurringAudienceListsRequest;
|
|
4354
4436
|
|
|
4355
4437
|
/**
|
|
4356
|
-
*
|
|
4357
|
-
* @param
|
|
4358
|
-
* @
|
|
4438
|
+
* Decodes a ListRecurringAudienceListsRequest message from the specified reader or buffer, length delimited.
|
|
4439
|
+
* @param reader Reader or buffer to decode from
|
|
4440
|
+
* @returns ListRecurringAudienceListsRequest
|
|
4441
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
4442
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
4359
4443
|
*/
|
|
4360
|
-
public
|
|
4444
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ListRecurringAudienceListsRequest;
|
|
4361
4445
|
|
|
4362
4446
|
/**
|
|
4363
|
-
*
|
|
4364
|
-
* @param
|
|
4365
|
-
* @returns
|
|
4447
|
+
* Verifies a ListRecurringAudienceListsRequest message.
|
|
4448
|
+
* @param message Plain object to verify
|
|
4449
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
4366
4450
|
*/
|
|
4367
|
-
public
|
|
4451
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
4368
4452
|
|
|
4369
4453
|
/**
|
|
4370
|
-
*
|
|
4371
|
-
* @param
|
|
4372
|
-
* @
|
|
4454
|
+
* Creates a ListRecurringAudienceListsRequest message from a plain object. Also converts values to their respective internal types.
|
|
4455
|
+
* @param object Plain object
|
|
4456
|
+
* @returns ListRecurringAudienceListsRequest
|
|
4373
4457
|
*/
|
|
4374
|
-
public
|
|
4458
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ListRecurringAudienceListsRequest;
|
|
4375
4459
|
|
|
4376
4460
|
/**
|
|
4377
|
-
*
|
|
4378
|
-
* @param
|
|
4379
|
-
* @
|
|
4461
|
+
* Creates a plain object from a ListRecurringAudienceListsRequest message. Also converts values to other types if specified.
|
|
4462
|
+
* @param message ListRecurringAudienceListsRequest
|
|
4463
|
+
* @param [options] Conversion options
|
|
4464
|
+
* @returns Plain object
|
|
4380
4465
|
*/
|
|
4381
|
-
public
|
|
4466
|
+
public static toObject(message: google.analytics.data.v1alpha.ListRecurringAudienceListsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
4382
4467
|
|
|
4383
4468
|
/**
|
|
4384
|
-
*
|
|
4385
|
-
* @
|
|
4386
|
-
* @param callback Node-style callback called with the error, if any, and SheetExportAudienceListResponse
|
|
4469
|
+
* Converts this ListRecurringAudienceListsRequest to JSON.
|
|
4470
|
+
* @returns JSON object
|
|
4387
4471
|
*/
|
|
4388
|
-
public
|
|
4472
|
+
public toJSON(): { [k: string]: any };
|
|
4389
4473
|
|
|
4390
4474
|
/**
|
|
4391
|
-
*
|
|
4392
|
-
* @param
|
|
4393
|
-
* @returns
|
|
4475
|
+
* Gets the default type url for ListRecurringAudienceListsRequest
|
|
4476
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4477
|
+
* @returns The default type url
|
|
4394
4478
|
*/
|
|
4395
|
-
public
|
|
4479
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4480
|
+
}
|
|
4481
|
+
|
|
4482
|
+
/** Properties of a ListRecurringAudienceListsResponse. */
|
|
4483
|
+
interface IListRecurringAudienceListsResponse {
|
|
4484
|
+
|
|
4485
|
+
/** ListRecurringAudienceListsResponse recurringAudienceLists */
|
|
4486
|
+
recurringAudienceLists?: (google.analytics.data.v1alpha.IRecurringAudienceList[]|null);
|
|
4487
|
+
|
|
4488
|
+
/** ListRecurringAudienceListsResponse nextPageToken */
|
|
4489
|
+
nextPageToken?: (string|null);
|
|
4490
|
+
}
|
|
4491
|
+
|
|
4492
|
+
/** Represents a ListRecurringAudienceListsResponse. */
|
|
4493
|
+
class ListRecurringAudienceListsResponse implements IListRecurringAudienceListsResponse {
|
|
4396
4494
|
|
|
4397
4495
|
/**
|
|
4398
|
-
*
|
|
4399
|
-
* @param
|
|
4400
|
-
* @param callback Node-style callback called with the error, if any, and AudienceList
|
|
4496
|
+
* Constructs a new ListRecurringAudienceListsResponse.
|
|
4497
|
+
* @param [properties] Properties to set
|
|
4401
4498
|
*/
|
|
4402
|
-
|
|
4499
|
+
constructor(properties?: google.analytics.data.v1alpha.IListRecurringAudienceListsResponse);
|
|
4500
|
+
|
|
4501
|
+
/** ListRecurringAudienceListsResponse recurringAudienceLists. */
|
|
4502
|
+
public recurringAudienceLists: google.analytics.data.v1alpha.IRecurringAudienceList[];
|
|
4503
|
+
|
|
4504
|
+
/** ListRecurringAudienceListsResponse nextPageToken. */
|
|
4505
|
+
public nextPageToken?: (string|null);
|
|
4506
|
+
|
|
4507
|
+
/** ListRecurringAudienceListsResponse _nextPageToken. */
|
|
4508
|
+
public _nextPageToken?: "nextPageToken";
|
|
4403
4509
|
|
|
4404
4510
|
/**
|
|
4405
|
-
*
|
|
4406
|
-
* @param
|
|
4407
|
-
* @returns
|
|
4511
|
+
* Creates a new ListRecurringAudienceListsResponse instance using the specified properties.
|
|
4512
|
+
* @param [properties] Properties to set
|
|
4513
|
+
* @returns ListRecurringAudienceListsResponse instance
|
|
4408
4514
|
*/
|
|
4409
|
-
public
|
|
4515
|
+
public static create(properties?: google.analytics.data.v1alpha.IListRecurringAudienceListsResponse): google.analytics.data.v1alpha.ListRecurringAudienceListsResponse;
|
|
4410
4516
|
|
|
4411
4517
|
/**
|
|
4412
|
-
*
|
|
4413
|
-
* @param
|
|
4414
|
-
* @param
|
|
4518
|
+
* Encodes the specified ListRecurringAudienceListsResponse message. Does not implicitly {@link google.analytics.data.v1alpha.ListRecurringAudienceListsResponse.verify|verify} messages.
|
|
4519
|
+
* @param message ListRecurringAudienceListsResponse message or plain object to encode
|
|
4520
|
+
* @param [writer] Writer to encode to
|
|
4521
|
+
* @returns Writer
|
|
4415
4522
|
*/
|
|
4416
|
-
public
|
|
4523
|
+
public static encode(message: google.analytics.data.v1alpha.IListRecurringAudienceListsResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
4417
4524
|
|
|
4418
4525
|
/**
|
|
4419
|
-
*
|
|
4420
|
-
* @param
|
|
4421
|
-
* @
|
|
4526
|
+
* Encodes the specified ListRecurringAudienceListsResponse message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ListRecurringAudienceListsResponse.verify|verify} messages.
|
|
4527
|
+
* @param message ListRecurringAudienceListsResponse message or plain object to encode
|
|
4528
|
+
* @param [writer] Writer to encode to
|
|
4529
|
+
* @returns Writer
|
|
4422
4530
|
*/
|
|
4423
|
-
public
|
|
4424
|
-
}
|
|
4531
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IListRecurringAudienceListsResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
4425
4532
|
|
|
4426
|
-
|
|
4533
|
+
/**
|
|
4534
|
+
* Decodes a ListRecurringAudienceListsResponse message from the specified reader or buffer.
|
|
4535
|
+
* @param reader Reader or buffer to decode from
|
|
4536
|
+
* @param [length] Message length if known beforehand
|
|
4537
|
+
* @returns ListRecurringAudienceListsResponse
|
|
4538
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
4539
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
4540
|
+
*/
|
|
4541
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ListRecurringAudienceListsResponse;
|
|
4427
4542
|
|
|
4428
4543
|
/**
|
|
4429
|
-
*
|
|
4430
|
-
* @param
|
|
4431
|
-
* @
|
|
4544
|
+
* Decodes a ListRecurringAudienceListsResponse message from the specified reader or buffer, length delimited.
|
|
4545
|
+
* @param reader Reader or buffer to decode from
|
|
4546
|
+
* @returns ListRecurringAudienceListsResponse
|
|
4547
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
4548
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
4432
4549
|
*/
|
|
4433
|
-
|
|
4550
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ListRecurringAudienceListsResponse;
|
|
4434
4551
|
|
|
4435
4552
|
/**
|
|
4436
|
-
*
|
|
4437
|
-
* @param
|
|
4438
|
-
* @
|
|
4553
|
+
* Verifies a ListRecurringAudienceListsResponse message.
|
|
4554
|
+
* @param message Plain object to verify
|
|
4555
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
4439
4556
|
*/
|
|
4440
|
-
|
|
4557
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
4441
4558
|
|
|
4442
4559
|
/**
|
|
4443
|
-
*
|
|
4444
|
-
* @param
|
|
4445
|
-
* @
|
|
4560
|
+
* Creates a ListRecurringAudienceListsResponse message from a plain object. Also converts values to their respective internal types.
|
|
4561
|
+
* @param object Plain object
|
|
4562
|
+
* @returns ListRecurringAudienceListsResponse
|
|
4446
4563
|
*/
|
|
4447
|
-
|
|
4564
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ListRecurringAudienceListsResponse;
|
|
4448
4565
|
|
|
4449
4566
|
/**
|
|
4450
|
-
*
|
|
4451
|
-
* @param
|
|
4452
|
-
* @param [
|
|
4567
|
+
* Creates a plain object from a ListRecurringAudienceListsResponse message. Also converts values to other types if specified.
|
|
4568
|
+
* @param message ListRecurringAudienceListsResponse
|
|
4569
|
+
* @param [options] Conversion options
|
|
4570
|
+
* @returns Plain object
|
|
4453
4571
|
*/
|
|
4454
|
-
|
|
4572
|
+
public static toObject(message: google.analytics.data.v1alpha.ListRecurringAudienceListsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
4455
4573
|
|
|
4456
4574
|
/**
|
|
4457
|
-
*
|
|
4458
|
-
* @
|
|
4459
|
-
* @param [response] AudienceList
|
|
4575
|
+
* Converts this ListRecurringAudienceListsResponse to JSON.
|
|
4576
|
+
* @returns JSON object
|
|
4460
4577
|
*/
|
|
4461
|
-
|
|
4578
|
+
public toJSON(): { [k: string]: any };
|
|
4462
4579
|
|
|
4463
4580
|
/**
|
|
4464
|
-
*
|
|
4465
|
-
* @param
|
|
4466
|
-
* @
|
|
4581
|
+
* Gets the default type url for ListRecurringAudienceListsResponse
|
|
4582
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4583
|
+
* @returns The default type url
|
|
4467
4584
|
*/
|
|
4468
|
-
|
|
4585
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4469
4586
|
}
|
|
4470
4587
|
|
|
4471
4588
|
/** Properties of a GetAudienceListRequest. */
|
|
@@ -4912,6 +5029,12 @@ export namespace google {
|
|
|
4912
5029
|
|
|
4913
5030
|
/** AudienceList errorMessage */
|
|
4914
5031
|
errorMessage?: (string|null);
|
|
5032
|
+
|
|
5033
|
+
/** AudienceList percentageCompleted */
|
|
5034
|
+
percentageCompleted?: (number|null);
|
|
5035
|
+
|
|
5036
|
+
/** AudienceList recurringAudienceList */
|
|
5037
|
+
recurringAudienceList?: (string|null);
|
|
4915
5038
|
}
|
|
4916
5039
|
|
|
4917
5040
|
/** Represents an AudienceList. */
|
|
@@ -4950,6 +5073,12 @@ export namespace google {
|
|
|
4950
5073
|
/** AudienceList errorMessage. */
|
|
4951
5074
|
public errorMessage?: (string|null);
|
|
4952
5075
|
|
|
5076
|
+
/** AudienceList percentageCompleted. */
|
|
5077
|
+
public percentageCompleted?: (number|null);
|
|
5078
|
+
|
|
5079
|
+
/** AudienceList recurringAudienceList. */
|
|
5080
|
+
public recurringAudienceList?: (string|null);
|
|
5081
|
+
|
|
4953
5082
|
/** AudienceList _state. */
|
|
4954
5083
|
public _state?: "state";
|
|
4955
5084
|
|
|
@@ -4962,6 +5091,12 @@ export namespace google {
|
|
|
4962
5091
|
/** AudienceList _errorMessage. */
|
|
4963
5092
|
public _errorMessage?: "errorMessage";
|
|
4964
5093
|
|
|
5094
|
+
/** AudienceList _percentageCompleted. */
|
|
5095
|
+
public _percentageCompleted?: "percentageCompleted";
|
|
5096
|
+
|
|
5097
|
+
/** AudienceList _recurringAudienceList. */
|
|
5098
|
+
public _recurringAudienceList?: "recurringAudienceList";
|
|
5099
|
+
|
|
4965
5100
|
/**
|
|
4966
5101
|
* Creates a new AudienceList instance using the specified properties.
|
|
4967
5102
|
* @param [properties] Properties to set
|
|
@@ -19665,9 +19800,6 @@ export namespace google {
|
|
|
19665
19800
|
|
|
19666
19801
|
/** Publishing librarySettings */
|
|
19667
19802
|
librarySettings?: (google.api.IClientLibrarySettings[]|null);
|
|
19668
|
-
|
|
19669
|
-
/** Publishing protoReferenceDocumentationUri */
|
|
19670
|
-
protoReferenceDocumentationUri?: (string|null);
|
|
19671
19803
|
}
|
|
19672
19804
|
|
|
19673
19805
|
/** Represents a Publishing. */
|
|
@@ -19706,9 +19838,6 @@ export namespace google {
|
|
|
19706
19838
|
/** Publishing librarySettings. */
|
|
19707
19839
|
public librarySettings: google.api.IClientLibrarySettings[];
|
|
19708
19840
|
|
|
19709
|
-
/** Publishing protoReferenceDocumentationUri. */
|
|
19710
|
-
public protoReferenceDocumentationUri: string;
|
|
19711
|
-
|
|
19712
19841
|
/**
|
|
19713
19842
|
* Creates a new Publishing instance using the specified properties.
|
|
19714
19843
|
* @param [properties] Properties to set
|
|
@@ -20289,21 +20418,6 @@ export namespace google {
|
|
|
20289
20418
|
|
|
20290
20419
|
/** DotnetSettings common */
|
|
20291
20420
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
20292
|
-
|
|
20293
|
-
/** DotnetSettings renamedServices */
|
|
20294
|
-
renamedServices?: ({ [k: string]: string }|null);
|
|
20295
|
-
|
|
20296
|
-
/** DotnetSettings renamedResources */
|
|
20297
|
-
renamedResources?: ({ [k: string]: string }|null);
|
|
20298
|
-
|
|
20299
|
-
/** DotnetSettings ignoredResources */
|
|
20300
|
-
ignoredResources?: (string[]|null);
|
|
20301
|
-
|
|
20302
|
-
/** DotnetSettings forcedNamespaceAliases */
|
|
20303
|
-
forcedNamespaceAliases?: (string[]|null);
|
|
20304
|
-
|
|
20305
|
-
/** DotnetSettings handwrittenSignatures */
|
|
20306
|
-
handwrittenSignatures?: (string[]|null);
|
|
20307
20421
|
}
|
|
20308
20422
|
|
|
20309
20423
|
/** Represents a DotnetSettings. */
|
|
@@ -20318,21 +20432,6 @@ export namespace google {
|
|
|
20318
20432
|
/** DotnetSettings common. */
|
|
20319
20433
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
20320
20434
|
|
|
20321
|
-
/** DotnetSettings renamedServices. */
|
|
20322
|
-
public renamedServices: { [k: string]: string };
|
|
20323
|
-
|
|
20324
|
-
/** DotnetSettings renamedResources. */
|
|
20325
|
-
public renamedResources: { [k: string]: string };
|
|
20326
|
-
|
|
20327
|
-
/** DotnetSettings ignoredResources. */
|
|
20328
|
-
public ignoredResources: string[];
|
|
20329
|
-
|
|
20330
|
-
/** DotnetSettings forcedNamespaceAliases. */
|
|
20331
|
-
public forcedNamespaceAliases: string[];
|
|
20332
|
-
|
|
20333
|
-
/** DotnetSettings handwrittenSignatures. */
|
|
20334
|
-
public handwrittenSignatures: string[];
|
|
20335
|
-
|
|
20336
20435
|
/**
|
|
20337
20436
|
* Creates a new DotnetSettings instance using the specified properties.
|
|
20338
20437
|
* @param [properties] Properties to set
|
|
@@ -20832,10 +20931,7 @@ export namespace google {
|
|
|
20832
20931
|
CLOUD = 1,
|
|
20833
20932
|
ADS = 2,
|
|
20834
20933
|
PHOTOS = 3,
|
|
20835
|
-
STREET_VIEW = 4
|
|
20836
|
-
SHOPPING = 5,
|
|
20837
|
-
GEO = 6,
|
|
20838
|
-
GENERATIVE_AI = 7
|
|
20934
|
+
STREET_VIEW = 4
|
|
20839
20935
|
}
|
|
20840
20936
|
|
|
20841
20937
|
/** ClientLibraryDestination enum. */
|