@google-cloud/pubsub 3.0.1 → 3.1.1
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 +35 -0
- package/README.md +1 -0
- package/build/protos/protos.d.ts +689 -2
- package/build/protos/protos.js +3162 -1244
- package/build/protos/protos.json +17 -0
- package/build/src/default-options.d.ts +4 -0
- package/build/src/default-options.js +7 -0
- package/build/src/default-options.js.map +1 -1
- package/build/src/index.d.ts +1 -0
- package/build/src/index.js +3 -1
- package/build/src/index.js.map +1 -1
- package/build/src/lease-manager.d.ts +1 -1
- package/build/src/lease-manager.js +1 -1
- package/build/src/subscriber.d.ts +43 -12
- package/build/src/subscriber.js +77 -24
- package/build/src/subscriber.js.map +1 -1
- package/build/src/temporal.d.ts +45 -0
- package/build/src/temporal.js +68 -0
- package/build/src/temporal.js.map +1 -0
- package/build/src/v1/publisher_client.d.ts +16 -10
- package/build/src/v1/publisher_client.js +37 -30
- package/build/src/v1/publisher_client.js.map +1 -1
- package/build/src/v1/schema_service_client.d.ts +16 -10
- package/build/src/v1/schema_service_client.js +29 -22
- package/build/src/v1/schema_service_client.js.map +1 -1
- package/build/src/v1/subscriber_client.d.ts +15 -9
- package/build/src/v1/subscriber_client.js +42 -35
- package/build/src/v1/subscriber_client.js.map +1 -1
- package/package.json +10 -10
package/build/protos/protos.d.ts
CHANGED
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
// See the License for the specific language governing permissions and
|
|
13
13
|
// limitations under the License.
|
|
14
14
|
|
|
15
|
-
import
|
|
16
|
-
import {protobuf as $protobuf} from "google-gax";
|
|
15
|
+
import Long = require("long");
|
|
16
|
+
import type {protobuf as $protobuf} from "google-gax";
|
|
17
17
|
/** Namespace google. */
|
|
18
18
|
export namespace google {
|
|
19
19
|
|
|
@@ -324,6 +324,13 @@ export namespace google {
|
|
|
324
324
|
* @returns JSON object
|
|
325
325
|
*/
|
|
326
326
|
public toJSON(): { [k: string]: any };
|
|
327
|
+
|
|
328
|
+
/**
|
|
329
|
+
* Gets the default type url for MessageStoragePolicy
|
|
330
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
331
|
+
* @returns The default type url
|
|
332
|
+
*/
|
|
333
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
327
334
|
}
|
|
328
335
|
|
|
329
336
|
/** Properties of a SchemaSettings. */
|
|
@@ -420,6 +427,13 @@ export namespace google {
|
|
|
420
427
|
* @returns JSON object
|
|
421
428
|
*/
|
|
422
429
|
public toJSON(): { [k: string]: any };
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* Gets the default type url for SchemaSettings
|
|
433
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
434
|
+
* @returns The default type url
|
|
435
|
+
*/
|
|
436
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
423
437
|
}
|
|
424
438
|
|
|
425
439
|
/** Properties of a Topic. */
|
|
@@ -546,6 +560,13 @@ export namespace google {
|
|
|
546
560
|
* @returns JSON object
|
|
547
561
|
*/
|
|
548
562
|
public toJSON(): { [k: string]: any };
|
|
563
|
+
|
|
564
|
+
/**
|
|
565
|
+
* Gets the default type url for Topic
|
|
566
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
567
|
+
* @returns The default type url
|
|
568
|
+
*/
|
|
569
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
549
570
|
}
|
|
550
571
|
|
|
551
572
|
/** Properties of a PubsubMessage. */
|
|
@@ -660,6 +681,13 @@ export namespace google {
|
|
|
660
681
|
* @returns JSON object
|
|
661
682
|
*/
|
|
662
683
|
public toJSON(): { [k: string]: any };
|
|
684
|
+
|
|
685
|
+
/**
|
|
686
|
+
* Gets the default type url for PubsubMessage
|
|
687
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
688
|
+
* @returns The default type url
|
|
689
|
+
*/
|
|
690
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
663
691
|
}
|
|
664
692
|
|
|
665
693
|
/** Properties of a GetTopicRequest. */
|
|
@@ -750,6 +778,13 @@ export namespace google {
|
|
|
750
778
|
* @returns JSON object
|
|
751
779
|
*/
|
|
752
780
|
public toJSON(): { [k: string]: any };
|
|
781
|
+
|
|
782
|
+
/**
|
|
783
|
+
* Gets the default type url for GetTopicRequest
|
|
784
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
785
|
+
* @returns The default type url
|
|
786
|
+
*/
|
|
787
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
753
788
|
}
|
|
754
789
|
|
|
755
790
|
/** Properties of an UpdateTopicRequest. */
|
|
@@ -846,6 +881,13 @@ export namespace google {
|
|
|
846
881
|
* @returns JSON object
|
|
847
882
|
*/
|
|
848
883
|
public toJSON(): { [k: string]: any };
|
|
884
|
+
|
|
885
|
+
/**
|
|
886
|
+
* Gets the default type url for UpdateTopicRequest
|
|
887
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
888
|
+
* @returns The default type url
|
|
889
|
+
*/
|
|
890
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
849
891
|
}
|
|
850
892
|
|
|
851
893
|
/** Properties of a PublishRequest. */
|
|
@@ -942,6 +984,13 @@ export namespace google {
|
|
|
942
984
|
* @returns JSON object
|
|
943
985
|
*/
|
|
944
986
|
public toJSON(): { [k: string]: any };
|
|
987
|
+
|
|
988
|
+
/**
|
|
989
|
+
* Gets the default type url for PublishRequest
|
|
990
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
991
|
+
* @returns The default type url
|
|
992
|
+
*/
|
|
993
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
945
994
|
}
|
|
946
995
|
|
|
947
996
|
/** Properties of a PublishResponse. */
|
|
@@ -1032,6 +1081,13 @@ export namespace google {
|
|
|
1032
1081
|
* @returns JSON object
|
|
1033
1082
|
*/
|
|
1034
1083
|
public toJSON(): { [k: string]: any };
|
|
1084
|
+
|
|
1085
|
+
/**
|
|
1086
|
+
* Gets the default type url for PublishResponse
|
|
1087
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1088
|
+
* @returns The default type url
|
|
1089
|
+
*/
|
|
1090
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1035
1091
|
}
|
|
1036
1092
|
|
|
1037
1093
|
/** Properties of a ListTopicsRequest. */
|
|
@@ -1134,6 +1190,13 @@ export namespace google {
|
|
|
1134
1190
|
* @returns JSON object
|
|
1135
1191
|
*/
|
|
1136
1192
|
public toJSON(): { [k: string]: any };
|
|
1193
|
+
|
|
1194
|
+
/**
|
|
1195
|
+
* Gets the default type url for ListTopicsRequest
|
|
1196
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1197
|
+
* @returns The default type url
|
|
1198
|
+
*/
|
|
1199
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1137
1200
|
}
|
|
1138
1201
|
|
|
1139
1202
|
/** Properties of a ListTopicsResponse. */
|
|
@@ -1230,6 +1293,13 @@ export namespace google {
|
|
|
1230
1293
|
* @returns JSON object
|
|
1231
1294
|
*/
|
|
1232
1295
|
public toJSON(): { [k: string]: any };
|
|
1296
|
+
|
|
1297
|
+
/**
|
|
1298
|
+
* Gets the default type url for ListTopicsResponse
|
|
1299
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1300
|
+
* @returns The default type url
|
|
1301
|
+
*/
|
|
1302
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1233
1303
|
}
|
|
1234
1304
|
|
|
1235
1305
|
/** Properties of a ListTopicSubscriptionsRequest. */
|
|
@@ -1332,6 +1402,13 @@ export namespace google {
|
|
|
1332
1402
|
* @returns JSON object
|
|
1333
1403
|
*/
|
|
1334
1404
|
public toJSON(): { [k: string]: any };
|
|
1405
|
+
|
|
1406
|
+
/**
|
|
1407
|
+
* Gets the default type url for ListTopicSubscriptionsRequest
|
|
1408
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1409
|
+
* @returns The default type url
|
|
1410
|
+
*/
|
|
1411
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1335
1412
|
}
|
|
1336
1413
|
|
|
1337
1414
|
/** Properties of a ListTopicSubscriptionsResponse. */
|
|
@@ -1428,6 +1505,13 @@ export namespace google {
|
|
|
1428
1505
|
* @returns JSON object
|
|
1429
1506
|
*/
|
|
1430
1507
|
public toJSON(): { [k: string]: any };
|
|
1508
|
+
|
|
1509
|
+
/**
|
|
1510
|
+
* Gets the default type url for ListTopicSubscriptionsResponse
|
|
1511
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1512
|
+
* @returns The default type url
|
|
1513
|
+
*/
|
|
1514
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1431
1515
|
}
|
|
1432
1516
|
|
|
1433
1517
|
/** Properties of a ListTopicSnapshotsRequest. */
|
|
@@ -1530,6 +1614,13 @@ export namespace google {
|
|
|
1530
1614
|
* @returns JSON object
|
|
1531
1615
|
*/
|
|
1532
1616
|
public toJSON(): { [k: string]: any };
|
|
1617
|
+
|
|
1618
|
+
/**
|
|
1619
|
+
* Gets the default type url for ListTopicSnapshotsRequest
|
|
1620
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1621
|
+
* @returns The default type url
|
|
1622
|
+
*/
|
|
1623
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1533
1624
|
}
|
|
1534
1625
|
|
|
1535
1626
|
/** Properties of a ListTopicSnapshotsResponse. */
|
|
@@ -1626,6 +1717,13 @@ export namespace google {
|
|
|
1626
1717
|
* @returns JSON object
|
|
1627
1718
|
*/
|
|
1628
1719
|
public toJSON(): { [k: string]: any };
|
|
1720
|
+
|
|
1721
|
+
/**
|
|
1722
|
+
* Gets the default type url for ListTopicSnapshotsResponse
|
|
1723
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1724
|
+
* @returns The default type url
|
|
1725
|
+
*/
|
|
1726
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1629
1727
|
}
|
|
1630
1728
|
|
|
1631
1729
|
/** Properties of a DeleteTopicRequest. */
|
|
@@ -1716,6 +1814,13 @@ export namespace google {
|
|
|
1716
1814
|
* @returns JSON object
|
|
1717
1815
|
*/
|
|
1718
1816
|
public toJSON(): { [k: string]: any };
|
|
1817
|
+
|
|
1818
|
+
/**
|
|
1819
|
+
* Gets the default type url for DeleteTopicRequest
|
|
1820
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1821
|
+
* @returns The default type url
|
|
1822
|
+
*/
|
|
1823
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1719
1824
|
}
|
|
1720
1825
|
|
|
1721
1826
|
/** Properties of a DetachSubscriptionRequest. */
|
|
@@ -1806,6 +1911,13 @@ export namespace google {
|
|
|
1806
1911
|
* @returns JSON object
|
|
1807
1912
|
*/
|
|
1808
1913
|
public toJSON(): { [k: string]: any };
|
|
1914
|
+
|
|
1915
|
+
/**
|
|
1916
|
+
* Gets the default type url for DetachSubscriptionRequest
|
|
1917
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
1918
|
+
* @returns The default type url
|
|
1919
|
+
*/
|
|
1920
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1809
1921
|
}
|
|
1810
1922
|
|
|
1811
1923
|
/** Properties of a DetachSubscriptionResponse. */
|
|
@@ -1890,6 +2002,13 @@ export namespace google {
|
|
|
1890
2002
|
* @returns JSON object
|
|
1891
2003
|
*/
|
|
1892
2004
|
public toJSON(): { [k: string]: any };
|
|
2005
|
+
|
|
2006
|
+
/**
|
|
2007
|
+
* Gets the default type url for DetachSubscriptionResponse
|
|
2008
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2009
|
+
* @returns The default type url
|
|
2010
|
+
*/
|
|
2011
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
1893
2012
|
}
|
|
1894
2013
|
|
|
1895
2014
|
/** Represents a Subscriber */
|
|
@@ -2436,6 +2555,13 @@ export namespace google {
|
|
|
2436
2555
|
* @returns JSON object
|
|
2437
2556
|
*/
|
|
2438
2557
|
public toJSON(): { [k: string]: any };
|
|
2558
|
+
|
|
2559
|
+
/**
|
|
2560
|
+
* Gets the default type url for Subscription
|
|
2561
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2562
|
+
* @returns The default type url
|
|
2563
|
+
*/
|
|
2564
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2439
2565
|
}
|
|
2440
2566
|
|
|
2441
2567
|
namespace Subscription {
|
|
@@ -2542,6 +2668,13 @@ export namespace google {
|
|
|
2542
2668
|
* @returns JSON object
|
|
2543
2669
|
*/
|
|
2544
2670
|
public toJSON(): { [k: string]: any };
|
|
2671
|
+
|
|
2672
|
+
/**
|
|
2673
|
+
* Gets the default type url for RetryPolicy
|
|
2674
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2675
|
+
* @returns The default type url
|
|
2676
|
+
*/
|
|
2677
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2545
2678
|
}
|
|
2546
2679
|
|
|
2547
2680
|
/** Properties of a DeadLetterPolicy. */
|
|
@@ -2638,6 +2771,13 @@ export namespace google {
|
|
|
2638
2771
|
* @returns JSON object
|
|
2639
2772
|
*/
|
|
2640
2773
|
public toJSON(): { [k: string]: any };
|
|
2774
|
+
|
|
2775
|
+
/**
|
|
2776
|
+
* Gets the default type url for DeadLetterPolicy
|
|
2777
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2778
|
+
* @returns The default type url
|
|
2779
|
+
*/
|
|
2780
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2641
2781
|
}
|
|
2642
2782
|
|
|
2643
2783
|
/** Properties of an ExpirationPolicy. */
|
|
@@ -2728,6 +2868,13 @@ export namespace google {
|
|
|
2728
2868
|
* @returns JSON object
|
|
2729
2869
|
*/
|
|
2730
2870
|
public toJSON(): { [k: string]: any };
|
|
2871
|
+
|
|
2872
|
+
/**
|
|
2873
|
+
* Gets the default type url for ExpirationPolicy
|
|
2874
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2875
|
+
* @returns The default type url
|
|
2876
|
+
*/
|
|
2877
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2731
2878
|
}
|
|
2732
2879
|
|
|
2733
2880
|
/** Properties of a PushConfig. */
|
|
@@ -2833,6 +2980,13 @@ export namespace google {
|
|
|
2833
2980
|
* @returns JSON object
|
|
2834
2981
|
*/
|
|
2835
2982
|
public toJSON(): { [k: string]: any };
|
|
2983
|
+
|
|
2984
|
+
/**
|
|
2985
|
+
* Gets the default type url for PushConfig
|
|
2986
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
2987
|
+
* @returns The default type url
|
|
2988
|
+
*/
|
|
2989
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2836
2990
|
}
|
|
2837
2991
|
|
|
2838
2992
|
namespace PushConfig {
|
|
@@ -2931,6 +3085,13 @@ export namespace google {
|
|
|
2931
3085
|
* @returns JSON object
|
|
2932
3086
|
*/
|
|
2933
3087
|
public toJSON(): { [k: string]: any };
|
|
3088
|
+
|
|
3089
|
+
/**
|
|
3090
|
+
* Gets the default type url for OidcToken
|
|
3091
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3092
|
+
* @returns The default type url
|
|
3093
|
+
*/
|
|
3094
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
2934
3095
|
}
|
|
2935
3096
|
}
|
|
2936
3097
|
|
|
@@ -3046,6 +3207,13 @@ export namespace google {
|
|
|
3046
3207
|
* @returns JSON object
|
|
3047
3208
|
*/
|
|
3048
3209
|
public toJSON(): { [k: string]: any };
|
|
3210
|
+
|
|
3211
|
+
/**
|
|
3212
|
+
* Gets the default type url for BigQueryConfig
|
|
3213
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3214
|
+
* @returns The default type url
|
|
3215
|
+
*/
|
|
3216
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3049
3217
|
}
|
|
3050
3218
|
|
|
3051
3219
|
namespace BigQueryConfig {
|
|
@@ -3160,6 +3328,13 @@ export namespace google {
|
|
|
3160
3328
|
* @returns JSON object
|
|
3161
3329
|
*/
|
|
3162
3330
|
public toJSON(): { [k: string]: any };
|
|
3331
|
+
|
|
3332
|
+
/**
|
|
3333
|
+
* Gets the default type url for ReceivedMessage
|
|
3334
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3335
|
+
* @returns The default type url
|
|
3336
|
+
*/
|
|
3337
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3163
3338
|
}
|
|
3164
3339
|
|
|
3165
3340
|
/** Properties of a GetSubscriptionRequest. */
|
|
@@ -3250,6 +3425,13 @@ export namespace google {
|
|
|
3250
3425
|
* @returns JSON object
|
|
3251
3426
|
*/
|
|
3252
3427
|
public toJSON(): { [k: string]: any };
|
|
3428
|
+
|
|
3429
|
+
/**
|
|
3430
|
+
* Gets the default type url for GetSubscriptionRequest
|
|
3431
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3432
|
+
* @returns The default type url
|
|
3433
|
+
*/
|
|
3434
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3253
3435
|
}
|
|
3254
3436
|
|
|
3255
3437
|
/** Properties of an UpdateSubscriptionRequest. */
|
|
@@ -3346,6 +3528,13 @@ export namespace google {
|
|
|
3346
3528
|
* @returns JSON object
|
|
3347
3529
|
*/
|
|
3348
3530
|
public toJSON(): { [k: string]: any };
|
|
3531
|
+
|
|
3532
|
+
/**
|
|
3533
|
+
* Gets the default type url for UpdateSubscriptionRequest
|
|
3534
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3535
|
+
* @returns The default type url
|
|
3536
|
+
*/
|
|
3537
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3349
3538
|
}
|
|
3350
3539
|
|
|
3351
3540
|
/** Properties of a ListSubscriptionsRequest. */
|
|
@@ -3448,6 +3637,13 @@ export namespace google {
|
|
|
3448
3637
|
* @returns JSON object
|
|
3449
3638
|
*/
|
|
3450
3639
|
public toJSON(): { [k: string]: any };
|
|
3640
|
+
|
|
3641
|
+
/**
|
|
3642
|
+
* Gets the default type url for ListSubscriptionsRequest
|
|
3643
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3644
|
+
* @returns The default type url
|
|
3645
|
+
*/
|
|
3646
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3451
3647
|
}
|
|
3452
3648
|
|
|
3453
3649
|
/** Properties of a ListSubscriptionsResponse. */
|
|
@@ -3544,6 +3740,13 @@ export namespace google {
|
|
|
3544
3740
|
* @returns JSON object
|
|
3545
3741
|
*/
|
|
3546
3742
|
public toJSON(): { [k: string]: any };
|
|
3743
|
+
|
|
3744
|
+
/**
|
|
3745
|
+
* Gets the default type url for ListSubscriptionsResponse
|
|
3746
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3747
|
+
* @returns The default type url
|
|
3748
|
+
*/
|
|
3749
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3547
3750
|
}
|
|
3548
3751
|
|
|
3549
3752
|
/** Properties of a DeleteSubscriptionRequest. */
|
|
@@ -3634,6 +3837,13 @@ export namespace google {
|
|
|
3634
3837
|
* @returns JSON object
|
|
3635
3838
|
*/
|
|
3636
3839
|
public toJSON(): { [k: string]: any };
|
|
3840
|
+
|
|
3841
|
+
/**
|
|
3842
|
+
* Gets the default type url for DeleteSubscriptionRequest
|
|
3843
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3844
|
+
* @returns The default type url
|
|
3845
|
+
*/
|
|
3846
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3637
3847
|
}
|
|
3638
3848
|
|
|
3639
3849
|
/** Properties of a ModifyPushConfigRequest. */
|
|
@@ -3730,6 +3940,13 @@ export namespace google {
|
|
|
3730
3940
|
* @returns JSON object
|
|
3731
3941
|
*/
|
|
3732
3942
|
public toJSON(): { [k: string]: any };
|
|
3943
|
+
|
|
3944
|
+
/**
|
|
3945
|
+
* Gets the default type url for ModifyPushConfigRequest
|
|
3946
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3947
|
+
* @returns The default type url
|
|
3948
|
+
*/
|
|
3949
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3733
3950
|
}
|
|
3734
3951
|
|
|
3735
3952
|
/** Properties of a PullRequest. */
|
|
@@ -3832,6 +4049,13 @@ export namespace google {
|
|
|
3832
4049
|
* @returns JSON object
|
|
3833
4050
|
*/
|
|
3834
4051
|
public toJSON(): { [k: string]: any };
|
|
4052
|
+
|
|
4053
|
+
/**
|
|
4054
|
+
* Gets the default type url for PullRequest
|
|
4055
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4056
|
+
* @returns The default type url
|
|
4057
|
+
*/
|
|
4058
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3835
4059
|
}
|
|
3836
4060
|
|
|
3837
4061
|
/** Properties of a PullResponse. */
|
|
@@ -3922,6 +4146,13 @@ export namespace google {
|
|
|
3922
4146
|
* @returns JSON object
|
|
3923
4147
|
*/
|
|
3924
4148
|
public toJSON(): { [k: string]: any };
|
|
4149
|
+
|
|
4150
|
+
/**
|
|
4151
|
+
* Gets the default type url for PullResponse
|
|
4152
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4153
|
+
* @returns The default type url
|
|
4154
|
+
*/
|
|
4155
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3925
4156
|
}
|
|
3926
4157
|
|
|
3927
4158
|
/** Properties of a ModifyAckDeadlineRequest. */
|
|
@@ -4024,6 +4255,13 @@ export namespace google {
|
|
|
4024
4255
|
* @returns JSON object
|
|
4025
4256
|
*/
|
|
4026
4257
|
public toJSON(): { [k: string]: any };
|
|
4258
|
+
|
|
4259
|
+
/**
|
|
4260
|
+
* Gets the default type url for ModifyAckDeadlineRequest
|
|
4261
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4262
|
+
* @returns The default type url
|
|
4263
|
+
*/
|
|
4264
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4027
4265
|
}
|
|
4028
4266
|
|
|
4029
4267
|
/** Properties of an AcknowledgeRequest. */
|
|
@@ -4120,6 +4358,13 @@ export namespace google {
|
|
|
4120
4358
|
* @returns JSON object
|
|
4121
4359
|
*/
|
|
4122
4360
|
public toJSON(): { [k: string]: any };
|
|
4361
|
+
|
|
4362
|
+
/**
|
|
4363
|
+
* Gets the default type url for AcknowledgeRequest
|
|
4364
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4365
|
+
* @returns The default type url
|
|
4366
|
+
*/
|
|
4367
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4123
4368
|
}
|
|
4124
4369
|
|
|
4125
4370
|
/** Properties of a StreamingPullRequest. */
|
|
@@ -4252,6 +4497,13 @@ export namespace google {
|
|
|
4252
4497
|
* @returns JSON object
|
|
4253
4498
|
*/
|
|
4254
4499
|
public toJSON(): { [k: string]: any };
|
|
4500
|
+
|
|
4501
|
+
/**
|
|
4502
|
+
* Gets the default type url for StreamingPullRequest
|
|
4503
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4504
|
+
* @returns The default type url
|
|
4505
|
+
*/
|
|
4506
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4255
4507
|
}
|
|
4256
4508
|
|
|
4257
4509
|
/** Properties of a StreamingPullResponse. */
|
|
@@ -4360,6 +4612,13 @@ export namespace google {
|
|
|
4360
4612
|
* @returns JSON object
|
|
4361
4613
|
*/
|
|
4362
4614
|
public toJSON(): { [k: string]: any };
|
|
4615
|
+
|
|
4616
|
+
/**
|
|
4617
|
+
* Gets the default type url for StreamingPullResponse
|
|
4618
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4619
|
+
* @returns The default type url
|
|
4620
|
+
*/
|
|
4621
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4363
4622
|
}
|
|
4364
4623
|
|
|
4365
4624
|
namespace StreamingPullResponse {
|
|
@@ -4464,6 +4723,13 @@ export namespace google {
|
|
|
4464
4723
|
* @returns JSON object
|
|
4465
4724
|
*/
|
|
4466
4725
|
public toJSON(): { [k: string]: any };
|
|
4726
|
+
|
|
4727
|
+
/**
|
|
4728
|
+
* Gets the default type url for AcknowledgeConfirmation
|
|
4729
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4730
|
+
* @returns The default type url
|
|
4731
|
+
*/
|
|
4732
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4467
4733
|
}
|
|
4468
4734
|
|
|
4469
4735
|
/** Properties of a ModifyAckDeadlineConfirmation. */
|
|
@@ -4560,6 +4826,13 @@ export namespace google {
|
|
|
4560
4826
|
* @returns JSON object
|
|
4561
4827
|
*/
|
|
4562
4828
|
public toJSON(): { [k: string]: any };
|
|
4829
|
+
|
|
4830
|
+
/**
|
|
4831
|
+
* Gets the default type url for ModifyAckDeadlineConfirmation
|
|
4832
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4833
|
+
* @returns The default type url
|
|
4834
|
+
*/
|
|
4835
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4563
4836
|
}
|
|
4564
4837
|
|
|
4565
4838
|
/** Properties of a SubscriptionProperties. */
|
|
@@ -4656,6 +4929,13 @@ export namespace google {
|
|
|
4656
4929
|
* @returns JSON object
|
|
4657
4930
|
*/
|
|
4658
4931
|
public toJSON(): { [k: string]: any };
|
|
4932
|
+
|
|
4933
|
+
/**
|
|
4934
|
+
* Gets the default type url for SubscriptionProperties
|
|
4935
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4936
|
+
* @returns The default type url
|
|
4937
|
+
*/
|
|
4938
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4659
4939
|
}
|
|
4660
4940
|
}
|
|
4661
4941
|
|
|
@@ -4759,6 +5039,13 @@ export namespace google {
|
|
|
4759
5039
|
* @returns JSON object
|
|
4760
5040
|
*/
|
|
4761
5041
|
public toJSON(): { [k: string]: any };
|
|
5042
|
+
|
|
5043
|
+
/**
|
|
5044
|
+
* Gets the default type url for CreateSnapshotRequest
|
|
5045
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5046
|
+
* @returns The default type url
|
|
5047
|
+
*/
|
|
5048
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4762
5049
|
}
|
|
4763
5050
|
|
|
4764
5051
|
/** Properties of an UpdateSnapshotRequest. */
|
|
@@ -4855,6 +5142,13 @@ export namespace google {
|
|
|
4855
5142
|
* @returns JSON object
|
|
4856
5143
|
*/
|
|
4857
5144
|
public toJSON(): { [k: string]: any };
|
|
5145
|
+
|
|
5146
|
+
/**
|
|
5147
|
+
* Gets the default type url for UpdateSnapshotRequest
|
|
5148
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5149
|
+
* @returns The default type url
|
|
5150
|
+
*/
|
|
5151
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4858
5152
|
}
|
|
4859
5153
|
|
|
4860
5154
|
/** Properties of a Snapshot. */
|
|
@@ -4963,6 +5257,13 @@ export namespace google {
|
|
|
4963
5257
|
* @returns JSON object
|
|
4964
5258
|
*/
|
|
4965
5259
|
public toJSON(): { [k: string]: any };
|
|
5260
|
+
|
|
5261
|
+
/**
|
|
5262
|
+
* Gets the default type url for Snapshot
|
|
5263
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5264
|
+
* @returns The default type url
|
|
5265
|
+
*/
|
|
5266
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4966
5267
|
}
|
|
4967
5268
|
|
|
4968
5269
|
/** Properties of a GetSnapshotRequest. */
|
|
@@ -5053,6 +5354,13 @@ export namespace google {
|
|
|
5053
5354
|
* @returns JSON object
|
|
5054
5355
|
*/
|
|
5055
5356
|
public toJSON(): { [k: string]: any };
|
|
5357
|
+
|
|
5358
|
+
/**
|
|
5359
|
+
* Gets the default type url for GetSnapshotRequest
|
|
5360
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5361
|
+
* @returns The default type url
|
|
5362
|
+
*/
|
|
5363
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5056
5364
|
}
|
|
5057
5365
|
|
|
5058
5366
|
/** Properties of a ListSnapshotsRequest. */
|
|
@@ -5155,6 +5463,13 @@ export namespace google {
|
|
|
5155
5463
|
* @returns JSON object
|
|
5156
5464
|
*/
|
|
5157
5465
|
public toJSON(): { [k: string]: any };
|
|
5466
|
+
|
|
5467
|
+
/**
|
|
5468
|
+
* Gets the default type url for ListSnapshotsRequest
|
|
5469
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5470
|
+
* @returns The default type url
|
|
5471
|
+
*/
|
|
5472
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5158
5473
|
}
|
|
5159
5474
|
|
|
5160
5475
|
/** Properties of a ListSnapshotsResponse. */
|
|
@@ -5251,6 +5566,13 @@ export namespace google {
|
|
|
5251
5566
|
* @returns JSON object
|
|
5252
5567
|
*/
|
|
5253
5568
|
public toJSON(): { [k: string]: any };
|
|
5569
|
+
|
|
5570
|
+
/**
|
|
5571
|
+
* Gets the default type url for ListSnapshotsResponse
|
|
5572
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5573
|
+
* @returns The default type url
|
|
5574
|
+
*/
|
|
5575
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5254
5576
|
}
|
|
5255
5577
|
|
|
5256
5578
|
/** Properties of a DeleteSnapshotRequest. */
|
|
@@ -5341,6 +5663,13 @@ export namespace google {
|
|
|
5341
5663
|
* @returns JSON object
|
|
5342
5664
|
*/
|
|
5343
5665
|
public toJSON(): { [k: string]: any };
|
|
5666
|
+
|
|
5667
|
+
/**
|
|
5668
|
+
* Gets the default type url for DeleteSnapshotRequest
|
|
5669
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5670
|
+
* @returns The default type url
|
|
5671
|
+
*/
|
|
5672
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5344
5673
|
}
|
|
5345
5674
|
|
|
5346
5675
|
/** Properties of a SeekRequest. */
|
|
@@ -5446,6 +5775,13 @@ export namespace google {
|
|
|
5446
5775
|
* @returns JSON object
|
|
5447
5776
|
*/
|
|
5448
5777
|
public toJSON(): { [k: string]: any };
|
|
5778
|
+
|
|
5779
|
+
/**
|
|
5780
|
+
* Gets the default type url for SeekRequest
|
|
5781
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5782
|
+
* @returns The default type url
|
|
5783
|
+
*/
|
|
5784
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5449
5785
|
}
|
|
5450
5786
|
|
|
5451
5787
|
/** Properties of a SeekResponse. */
|
|
@@ -5530,6 +5866,13 @@ export namespace google {
|
|
|
5530
5866
|
* @returns JSON object
|
|
5531
5867
|
*/
|
|
5532
5868
|
public toJSON(): { [k: string]: any };
|
|
5869
|
+
|
|
5870
|
+
/**
|
|
5871
|
+
* Gets the default type url for SeekResponse
|
|
5872
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5873
|
+
* @returns The default type url
|
|
5874
|
+
*/
|
|
5875
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5533
5876
|
}
|
|
5534
5877
|
|
|
5535
5878
|
/** Represents a SchemaService */
|
|
@@ -5782,6 +6125,13 @@ export namespace google {
|
|
|
5782
6125
|
* @returns JSON object
|
|
5783
6126
|
*/
|
|
5784
6127
|
public toJSON(): { [k: string]: any };
|
|
6128
|
+
|
|
6129
|
+
/**
|
|
6130
|
+
* Gets the default type url for Schema
|
|
6131
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6132
|
+
* @returns The default type url
|
|
6133
|
+
*/
|
|
6134
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5785
6135
|
}
|
|
5786
6136
|
|
|
5787
6137
|
namespace Schema {
|
|
@@ -5894,6 +6244,13 @@ export namespace google {
|
|
|
5894
6244
|
* @returns JSON object
|
|
5895
6245
|
*/
|
|
5896
6246
|
public toJSON(): { [k: string]: any };
|
|
6247
|
+
|
|
6248
|
+
/**
|
|
6249
|
+
* Gets the default type url for CreateSchemaRequest
|
|
6250
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6251
|
+
* @returns The default type url
|
|
6252
|
+
*/
|
|
6253
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5897
6254
|
}
|
|
5898
6255
|
|
|
5899
6256
|
/** SchemaView enum. */
|
|
@@ -5997,6 +6354,13 @@ export namespace google {
|
|
|
5997
6354
|
* @returns JSON object
|
|
5998
6355
|
*/
|
|
5999
6356
|
public toJSON(): { [k: string]: any };
|
|
6357
|
+
|
|
6358
|
+
/**
|
|
6359
|
+
* Gets the default type url for GetSchemaRequest
|
|
6360
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6361
|
+
* @returns The default type url
|
|
6362
|
+
*/
|
|
6363
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6000
6364
|
}
|
|
6001
6365
|
|
|
6002
6366
|
/** Properties of a ListSchemasRequest. */
|
|
@@ -6105,6 +6469,13 @@ export namespace google {
|
|
|
6105
6469
|
* @returns JSON object
|
|
6106
6470
|
*/
|
|
6107
6471
|
public toJSON(): { [k: string]: any };
|
|
6472
|
+
|
|
6473
|
+
/**
|
|
6474
|
+
* Gets the default type url for ListSchemasRequest
|
|
6475
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6476
|
+
* @returns The default type url
|
|
6477
|
+
*/
|
|
6478
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6108
6479
|
}
|
|
6109
6480
|
|
|
6110
6481
|
/** Properties of a ListSchemasResponse. */
|
|
@@ -6201,6 +6572,13 @@ export namespace google {
|
|
|
6201
6572
|
* @returns JSON object
|
|
6202
6573
|
*/
|
|
6203
6574
|
public toJSON(): { [k: string]: any };
|
|
6575
|
+
|
|
6576
|
+
/**
|
|
6577
|
+
* Gets the default type url for ListSchemasResponse
|
|
6578
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6579
|
+
* @returns The default type url
|
|
6580
|
+
*/
|
|
6581
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6204
6582
|
}
|
|
6205
6583
|
|
|
6206
6584
|
/** Properties of a DeleteSchemaRequest. */
|
|
@@ -6291,6 +6669,13 @@ export namespace google {
|
|
|
6291
6669
|
* @returns JSON object
|
|
6292
6670
|
*/
|
|
6293
6671
|
public toJSON(): { [k: string]: any };
|
|
6672
|
+
|
|
6673
|
+
/**
|
|
6674
|
+
* Gets the default type url for DeleteSchemaRequest
|
|
6675
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6676
|
+
* @returns The default type url
|
|
6677
|
+
*/
|
|
6678
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6294
6679
|
}
|
|
6295
6680
|
|
|
6296
6681
|
/** Properties of a ValidateSchemaRequest. */
|
|
@@ -6387,6 +6772,13 @@ export namespace google {
|
|
|
6387
6772
|
* @returns JSON object
|
|
6388
6773
|
*/
|
|
6389
6774
|
public toJSON(): { [k: string]: any };
|
|
6775
|
+
|
|
6776
|
+
/**
|
|
6777
|
+
* Gets the default type url for ValidateSchemaRequest
|
|
6778
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6779
|
+
* @returns The default type url
|
|
6780
|
+
*/
|
|
6781
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6390
6782
|
}
|
|
6391
6783
|
|
|
6392
6784
|
/** Properties of a ValidateSchemaResponse. */
|
|
@@ -6471,6 +6863,13 @@ export namespace google {
|
|
|
6471
6863
|
* @returns JSON object
|
|
6472
6864
|
*/
|
|
6473
6865
|
public toJSON(): { [k: string]: any };
|
|
6866
|
+
|
|
6867
|
+
/**
|
|
6868
|
+
* Gets the default type url for ValidateSchemaResponse
|
|
6869
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6870
|
+
* @returns The default type url
|
|
6871
|
+
*/
|
|
6872
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6474
6873
|
}
|
|
6475
6874
|
|
|
6476
6875
|
/** Properties of a ValidateMessageRequest. */
|
|
@@ -6588,6 +6987,13 @@ export namespace google {
|
|
|
6588
6987
|
* @returns JSON object
|
|
6589
6988
|
*/
|
|
6590
6989
|
public toJSON(): { [k: string]: any };
|
|
6990
|
+
|
|
6991
|
+
/**
|
|
6992
|
+
* Gets the default type url for ValidateMessageRequest
|
|
6993
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6994
|
+
* @returns The default type url
|
|
6995
|
+
*/
|
|
6996
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6591
6997
|
}
|
|
6592
6998
|
|
|
6593
6999
|
/** Properties of a ValidateMessageResponse. */
|
|
@@ -6672,6 +7078,13 @@ export namespace google {
|
|
|
6672
7078
|
* @returns JSON object
|
|
6673
7079
|
*/
|
|
6674
7080
|
public toJSON(): { [k: string]: any };
|
|
7081
|
+
|
|
7082
|
+
/**
|
|
7083
|
+
* Gets the default type url for ValidateMessageResponse
|
|
7084
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7085
|
+
* @returns The default type url
|
|
7086
|
+
*/
|
|
7087
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6675
7088
|
}
|
|
6676
7089
|
|
|
6677
7090
|
/** Encoding enum. */
|
|
@@ -6780,6 +7193,13 @@ export namespace google {
|
|
|
6780
7193
|
* @returns JSON object
|
|
6781
7194
|
*/
|
|
6782
7195
|
public toJSON(): { [k: string]: any };
|
|
7196
|
+
|
|
7197
|
+
/**
|
|
7198
|
+
* Gets the default type url for Http
|
|
7199
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7200
|
+
* @returns The default type url
|
|
7201
|
+
*/
|
|
7202
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6783
7203
|
}
|
|
6784
7204
|
|
|
6785
7205
|
/** Properties of a HttpRule. */
|
|
@@ -6927,6 +7347,13 @@ export namespace google {
|
|
|
6927
7347
|
* @returns JSON object
|
|
6928
7348
|
*/
|
|
6929
7349
|
public toJSON(): { [k: string]: any };
|
|
7350
|
+
|
|
7351
|
+
/**
|
|
7352
|
+
* Gets the default type url for HttpRule
|
|
7353
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7354
|
+
* @returns The default type url
|
|
7355
|
+
*/
|
|
7356
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6930
7357
|
}
|
|
6931
7358
|
|
|
6932
7359
|
/** Properties of a CustomHttpPattern. */
|
|
@@ -7023,6 +7450,13 @@ export namespace google {
|
|
|
7023
7450
|
* @returns JSON object
|
|
7024
7451
|
*/
|
|
7025
7452
|
public toJSON(): { [k: string]: any };
|
|
7453
|
+
|
|
7454
|
+
/**
|
|
7455
|
+
* Gets the default type url for CustomHttpPattern
|
|
7456
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7457
|
+
* @returns The default type url
|
|
7458
|
+
*/
|
|
7459
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7026
7460
|
}
|
|
7027
7461
|
|
|
7028
7462
|
/** FieldBehavior enum. */
|
|
@@ -7161,6 +7595,13 @@ export namespace google {
|
|
|
7161
7595
|
* @returns JSON object
|
|
7162
7596
|
*/
|
|
7163
7597
|
public toJSON(): { [k: string]: any };
|
|
7598
|
+
|
|
7599
|
+
/**
|
|
7600
|
+
* Gets the default type url for ResourceDescriptor
|
|
7601
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7602
|
+
* @returns The default type url
|
|
7603
|
+
*/
|
|
7604
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7164
7605
|
}
|
|
7165
7606
|
|
|
7166
7607
|
namespace ResourceDescriptor {
|
|
@@ -7273,6 +7714,13 @@ export namespace google {
|
|
|
7273
7714
|
* @returns JSON object
|
|
7274
7715
|
*/
|
|
7275
7716
|
public toJSON(): { [k: string]: any };
|
|
7717
|
+
|
|
7718
|
+
/**
|
|
7719
|
+
* Gets the default type url for ResourceReference
|
|
7720
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7721
|
+
* @returns The default type url
|
|
7722
|
+
*/
|
|
7723
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7276
7724
|
}
|
|
7277
7725
|
}
|
|
7278
7726
|
|
|
@@ -7367,6 +7815,13 @@ export namespace google {
|
|
|
7367
7815
|
* @returns JSON object
|
|
7368
7816
|
*/
|
|
7369
7817
|
public toJSON(): { [k: string]: any };
|
|
7818
|
+
|
|
7819
|
+
/**
|
|
7820
|
+
* Gets the default type url for FileDescriptorSet
|
|
7821
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7822
|
+
* @returns The default type url
|
|
7823
|
+
*/
|
|
7824
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7370
7825
|
}
|
|
7371
7826
|
|
|
7372
7827
|
/** Properties of a FileDescriptorProto. */
|
|
@@ -7407,6 +7862,9 @@ export namespace google {
|
|
|
7407
7862
|
|
|
7408
7863
|
/** FileDescriptorProto syntax */
|
|
7409
7864
|
syntax?: (string|null);
|
|
7865
|
+
|
|
7866
|
+
/** FileDescriptorProto edition */
|
|
7867
|
+
edition?: (string|null);
|
|
7410
7868
|
}
|
|
7411
7869
|
|
|
7412
7870
|
/** Represents a FileDescriptorProto. */
|
|
@@ -7454,6 +7912,9 @@ export namespace google {
|
|
|
7454
7912
|
/** FileDescriptorProto syntax. */
|
|
7455
7913
|
public syntax: string;
|
|
7456
7914
|
|
|
7915
|
+
/** FileDescriptorProto edition. */
|
|
7916
|
+
public edition: string;
|
|
7917
|
+
|
|
7457
7918
|
/**
|
|
7458
7919
|
* Creates a new FileDescriptorProto instance using the specified properties.
|
|
7459
7920
|
* @param [properties] Properties to set
|
|
@@ -7523,6 +7984,13 @@ export namespace google {
|
|
|
7523
7984
|
* @returns JSON object
|
|
7524
7985
|
*/
|
|
7525
7986
|
public toJSON(): { [k: string]: any };
|
|
7987
|
+
|
|
7988
|
+
/**
|
|
7989
|
+
* Gets the default type url for FileDescriptorProto
|
|
7990
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7991
|
+
* @returns The default type url
|
|
7992
|
+
*/
|
|
7993
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7526
7994
|
}
|
|
7527
7995
|
|
|
7528
7996
|
/** Properties of a DescriptorProto. */
|
|
@@ -7667,6 +8135,13 @@ export namespace google {
|
|
|
7667
8135
|
* @returns JSON object
|
|
7668
8136
|
*/
|
|
7669
8137
|
public toJSON(): { [k: string]: any };
|
|
8138
|
+
|
|
8139
|
+
/**
|
|
8140
|
+
* Gets the default type url for DescriptorProto
|
|
8141
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8142
|
+
* @returns The default type url
|
|
8143
|
+
*/
|
|
8144
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7670
8145
|
}
|
|
7671
8146
|
|
|
7672
8147
|
namespace DescriptorProto {
|
|
@@ -7771,6 +8246,13 @@ export namespace google {
|
|
|
7771
8246
|
* @returns JSON object
|
|
7772
8247
|
*/
|
|
7773
8248
|
public toJSON(): { [k: string]: any };
|
|
8249
|
+
|
|
8250
|
+
/**
|
|
8251
|
+
* Gets the default type url for ExtensionRange
|
|
8252
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8253
|
+
* @returns The default type url
|
|
8254
|
+
*/
|
|
8255
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7774
8256
|
}
|
|
7775
8257
|
|
|
7776
8258
|
/** Properties of a ReservedRange. */
|
|
@@ -7867,6 +8349,13 @@ export namespace google {
|
|
|
7867
8349
|
* @returns JSON object
|
|
7868
8350
|
*/
|
|
7869
8351
|
public toJSON(): { [k: string]: any };
|
|
8352
|
+
|
|
8353
|
+
/**
|
|
8354
|
+
* Gets the default type url for ReservedRange
|
|
8355
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8356
|
+
* @returns The default type url
|
|
8357
|
+
*/
|
|
8358
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7870
8359
|
}
|
|
7871
8360
|
}
|
|
7872
8361
|
|
|
@@ -7958,6 +8447,13 @@ export namespace google {
|
|
|
7958
8447
|
* @returns JSON object
|
|
7959
8448
|
*/
|
|
7960
8449
|
public toJSON(): { [k: string]: any };
|
|
8450
|
+
|
|
8451
|
+
/**
|
|
8452
|
+
* Gets the default type url for ExtensionRangeOptions
|
|
8453
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8454
|
+
* @returns The default type url
|
|
8455
|
+
*/
|
|
8456
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7961
8457
|
}
|
|
7962
8458
|
|
|
7963
8459
|
/** Properties of a FieldDescriptorProto. */
|
|
@@ -8108,6 +8604,13 @@ export namespace google {
|
|
|
8108
8604
|
* @returns JSON object
|
|
8109
8605
|
*/
|
|
8110
8606
|
public toJSON(): { [k: string]: any };
|
|
8607
|
+
|
|
8608
|
+
/**
|
|
8609
|
+
* Gets the default type url for FieldDescriptorProto
|
|
8610
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8611
|
+
* @returns The default type url
|
|
8612
|
+
*/
|
|
8613
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8111
8614
|
}
|
|
8112
8615
|
|
|
8113
8616
|
namespace FieldDescriptorProto {
|
|
@@ -8236,6 +8739,13 @@ export namespace google {
|
|
|
8236
8739
|
* @returns JSON object
|
|
8237
8740
|
*/
|
|
8238
8741
|
public toJSON(): { [k: string]: any };
|
|
8742
|
+
|
|
8743
|
+
/**
|
|
8744
|
+
* Gets the default type url for OneofDescriptorProto
|
|
8745
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8746
|
+
* @returns The default type url
|
|
8747
|
+
*/
|
|
8748
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8239
8749
|
}
|
|
8240
8750
|
|
|
8241
8751
|
/** Properties of an EnumDescriptorProto. */
|
|
@@ -8350,6 +8860,13 @@ export namespace google {
|
|
|
8350
8860
|
* @returns JSON object
|
|
8351
8861
|
*/
|
|
8352
8862
|
public toJSON(): { [k: string]: any };
|
|
8863
|
+
|
|
8864
|
+
/**
|
|
8865
|
+
* Gets the default type url for EnumDescriptorProto
|
|
8866
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8867
|
+
* @returns The default type url
|
|
8868
|
+
*/
|
|
8869
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8353
8870
|
}
|
|
8354
8871
|
|
|
8355
8872
|
namespace EnumDescriptorProto {
|
|
@@ -8448,6 +8965,13 @@ export namespace google {
|
|
|
8448
8965
|
* @returns JSON object
|
|
8449
8966
|
*/
|
|
8450
8967
|
public toJSON(): { [k: string]: any };
|
|
8968
|
+
|
|
8969
|
+
/**
|
|
8970
|
+
* Gets the default type url for EnumReservedRange
|
|
8971
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8972
|
+
* @returns The default type url
|
|
8973
|
+
*/
|
|
8974
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8451
8975
|
}
|
|
8452
8976
|
}
|
|
8453
8977
|
|
|
@@ -8551,6 +9075,13 @@ export namespace google {
|
|
|
8551
9075
|
* @returns JSON object
|
|
8552
9076
|
*/
|
|
8553
9077
|
public toJSON(): { [k: string]: any };
|
|
9078
|
+
|
|
9079
|
+
/**
|
|
9080
|
+
* Gets the default type url for EnumValueDescriptorProto
|
|
9081
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9082
|
+
* @returns The default type url
|
|
9083
|
+
*/
|
|
9084
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8554
9085
|
}
|
|
8555
9086
|
|
|
8556
9087
|
/** Properties of a ServiceDescriptorProto. */
|
|
@@ -8653,6 +9184,13 @@ export namespace google {
|
|
|
8653
9184
|
* @returns JSON object
|
|
8654
9185
|
*/
|
|
8655
9186
|
public toJSON(): { [k: string]: any };
|
|
9187
|
+
|
|
9188
|
+
/**
|
|
9189
|
+
* Gets the default type url for ServiceDescriptorProto
|
|
9190
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9191
|
+
* @returns The default type url
|
|
9192
|
+
*/
|
|
9193
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8656
9194
|
}
|
|
8657
9195
|
|
|
8658
9196
|
/** Properties of a MethodDescriptorProto. */
|
|
@@ -8773,6 +9311,13 @@ export namespace google {
|
|
|
8773
9311
|
* @returns JSON object
|
|
8774
9312
|
*/
|
|
8775
9313
|
public toJSON(): { [k: string]: any };
|
|
9314
|
+
|
|
9315
|
+
/**
|
|
9316
|
+
* Gets the default type url for MethodDescriptorProto
|
|
9317
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9318
|
+
* @returns The default type url
|
|
9319
|
+
*/
|
|
9320
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8776
9321
|
}
|
|
8777
9322
|
|
|
8778
9323
|
/** Properties of a FileOptions. */
|
|
@@ -8986,6 +9531,13 @@ export namespace google {
|
|
|
8986
9531
|
* @returns JSON object
|
|
8987
9532
|
*/
|
|
8988
9533
|
public toJSON(): { [k: string]: any };
|
|
9534
|
+
|
|
9535
|
+
/**
|
|
9536
|
+
* Gets the default type url for FileOptions
|
|
9537
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9538
|
+
* @returns The default type url
|
|
9539
|
+
*/
|
|
9540
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8989
9541
|
}
|
|
8990
9542
|
|
|
8991
9543
|
namespace FileOptions {
|
|
@@ -9113,6 +9665,13 @@ export namespace google {
|
|
|
9113
9665
|
* @returns JSON object
|
|
9114
9666
|
*/
|
|
9115
9667
|
public toJSON(): { [k: string]: any };
|
|
9668
|
+
|
|
9669
|
+
/**
|
|
9670
|
+
* Gets the default type url for MessageOptions
|
|
9671
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9672
|
+
* @returns The default type url
|
|
9673
|
+
*/
|
|
9674
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9116
9675
|
}
|
|
9117
9676
|
|
|
9118
9677
|
/** Properties of a FieldOptions. */
|
|
@@ -9251,6 +9810,13 @@ export namespace google {
|
|
|
9251
9810
|
* @returns JSON object
|
|
9252
9811
|
*/
|
|
9253
9812
|
public toJSON(): { [k: string]: any };
|
|
9813
|
+
|
|
9814
|
+
/**
|
|
9815
|
+
* Gets the default type url for FieldOptions
|
|
9816
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9817
|
+
* @returns The default type url
|
|
9818
|
+
*/
|
|
9819
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9254
9820
|
}
|
|
9255
9821
|
|
|
9256
9822
|
namespace FieldOptions {
|
|
@@ -9358,6 +9924,13 @@ export namespace google {
|
|
|
9358
9924
|
* @returns JSON object
|
|
9359
9925
|
*/
|
|
9360
9926
|
public toJSON(): { [k: string]: any };
|
|
9927
|
+
|
|
9928
|
+
/**
|
|
9929
|
+
* Gets the default type url for OneofOptions
|
|
9930
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9931
|
+
* @returns The default type url
|
|
9932
|
+
*/
|
|
9933
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9361
9934
|
}
|
|
9362
9935
|
|
|
9363
9936
|
/** Properties of an EnumOptions. */
|
|
@@ -9460,6 +10033,13 @@ export namespace google {
|
|
|
9460
10033
|
* @returns JSON object
|
|
9461
10034
|
*/
|
|
9462
10035
|
public toJSON(): { [k: string]: any };
|
|
10036
|
+
|
|
10037
|
+
/**
|
|
10038
|
+
* Gets the default type url for EnumOptions
|
|
10039
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10040
|
+
* @returns The default type url
|
|
10041
|
+
*/
|
|
10042
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9463
10043
|
}
|
|
9464
10044
|
|
|
9465
10045
|
/** Properties of an EnumValueOptions. */
|
|
@@ -9556,6 +10136,13 @@ export namespace google {
|
|
|
9556
10136
|
* @returns JSON object
|
|
9557
10137
|
*/
|
|
9558
10138
|
public toJSON(): { [k: string]: any };
|
|
10139
|
+
|
|
10140
|
+
/**
|
|
10141
|
+
* Gets the default type url for EnumValueOptions
|
|
10142
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10143
|
+
* @returns The default type url
|
|
10144
|
+
*/
|
|
10145
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9559
10146
|
}
|
|
9560
10147
|
|
|
9561
10148
|
/** Properties of a ServiceOptions. */
|
|
@@ -9658,6 +10245,13 @@ export namespace google {
|
|
|
9658
10245
|
* @returns JSON object
|
|
9659
10246
|
*/
|
|
9660
10247
|
public toJSON(): { [k: string]: any };
|
|
10248
|
+
|
|
10249
|
+
/**
|
|
10250
|
+
* Gets the default type url for ServiceOptions
|
|
10251
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10252
|
+
* @returns The default type url
|
|
10253
|
+
*/
|
|
10254
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9661
10255
|
}
|
|
9662
10256
|
|
|
9663
10257
|
/** Properties of a MethodOptions. */
|
|
@@ -9766,6 +10360,13 @@ export namespace google {
|
|
|
9766
10360
|
* @returns JSON object
|
|
9767
10361
|
*/
|
|
9768
10362
|
public toJSON(): { [k: string]: any };
|
|
10363
|
+
|
|
10364
|
+
/**
|
|
10365
|
+
* Gets the default type url for MethodOptions
|
|
10366
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10367
|
+
* @returns The default type url
|
|
10368
|
+
*/
|
|
10369
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9769
10370
|
}
|
|
9770
10371
|
|
|
9771
10372
|
namespace MethodOptions {
|
|
@@ -9902,6 +10503,13 @@ export namespace google {
|
|
|
9902
10503
|
* @returns JSON object
|
|
9903
10504
|
*/
|
|
9904
10505
|
public toJSON(): { [k: string]: any };
|
|
10506
|
+
|
|
10507
|
+
/**
|
|
10508
|
+
* Gets the default type url for UninterpretedOption
|
|
10509
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10510
|
+
* @returns The default type url
|
|
10511
|
+
*/
|
|
10512
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9905
10513
|
}
|
|
9906
10514
|
|
|
9907
10515
|
namespace UninterpretedOption {
|
|
@@ -10000,6 +10608,13 @@ export namespace google {
|
|
|
10000
10608
|
* @returns JSON object
|
|
10001
10609
|
*/
|
|
10002
10610
|
public toJSON(): { [k: string]: any };
|
|
10611
|
+
|
|
10612
|
+
/**
|
|
10613
|
+
* Gets the default type url for NamePart
|
|
10614
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10615
|
+
* @returns The default type url
|
|
10616
|
+
*/
|
|
10617
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10003
10618
|
}
|
|
10004
10619
|
}
|
|
10005
10620
|
|
|
@@ -10091,6 +10706,13 @@ export namespace google {
|
|
|
10091
10706
|
* @returns JSON object
|
|
10092
10707
|
*/
|
|
10093
10708
|
public toJSON(): { [k: string]: any };
|
|
10709
|
+
|
|
10710
|
+
/**
|
|
10711
|
+
* Gets the default type url for SourceCodeInfo
|
|
10712
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10713
|
+
* @returns The default type url
|
|
10714
|
+
*/
|
|
10715
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10094
10716
|
}
|
|
10095
10717
|
|
|
10096
10718
|
namespace SourceCodeInfo {
|
|
@@ -10207,6 +10829,13 @@ export namespace google {
|
|
|
10207
10829
|
* @returns JSON object
|
|
10208
10830
|
*/
|
|
10209
10831
|
public toJSON(): { [k: string]: any };
|
|
10832
|
+
|
|
10833
|
+
/**
|
|
10834
|
+
* Gets the default type url for Location
|
|
10835
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10836
|
+
* @returns The default type url
|
|
10837
|
+
*/
|
|
10838
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10210
10839
|
}
|
|
10211
10840
|
}
|
|
10212
10841
|
|
|
@@ -10298,6 +10927,13 @@ export namespace google {
|
|
|
10298
10927
|
* @returns JSON object
|
|
10299
10928
|
*/
|
|
10300
10929
|
public toJSON(): { [k: string]: any };
|
|
10930
|
+
|
|
10931
|
+
/**
|
|
10932
|
+
* Gets the default type url for GeneratedCodeInfo
|
|
10933
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10934
|
+
* @returns The default type url
|
|
10935
|
+
*/
|
|
10936
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10301
10937
|
}
|
|
10302
10938
|
|
|
10303
10939
|
namespace GeneratedCodeInfo {
|
|
@@ -10316,6 +10952,9 @@ export namespace google {
|
|
|
10316
10952
|
|
|
10317
10953
|
/** Annotation end */
|
|
10318
10954
|
end?: (number|null);
|
|
10955
|
+
|
|
10956
|
+
/** Annotation semantic */
|
|
10957
|
+
semantic?: (google.protobuf.GeneratedCodeInfo.Annotation.Semantic|keyof typeof google.protobuf.GeneratedCodeInfo.Annotation.Semantic|null);
|
|
10319
10958
|
}
|
|
10320
10959
|
|
|
10321
10960
|
/** Represents an Annotation. */
|
|
@@ -10339,6 +10978,9 @@ export namespace google {
|
|
|
10339
10978
|
/** Annotation end. */
|
|
10340
10979
|
public end: number;
|
|
10341
10980
|
|
|
10981
|
+
/** Annotation semantic. */
|
|
10982
|
+
public semantic: (google.protobuf.GeneratedCodeInfo.Annotation.Semantic|keyof typeof google.protobuf.GeneratedCodeInfo.Annotation.Semantic);
|
|
10983
|
+
|
|
10342
10984
|
/**
|
|
10343
10985
|
* Creates a new Annotation instance using the specified properties.
|
|
10344
10986
|
* @param [properties] Properties to set
|
|
@@ -10408,6 +11050,23 @@ export namespace google {
|
|
|
10408
11050
|
* @returns JSON object
|
|
10409
11051
|
*/
|
|
10410
11052
|
public toJSON(): { [k: string]: any };
|
|
11053
|
+
|
|
11054
|
+
/**
|
|
11055
|
+
* Gets the default type url for Annotation
|
|
11056
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11057
|
+
* @returns The default type url
|
|
11058
|
+
*/
|
|
11059
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11060
|
+
}
|
|
11061
|
+
|
|
11062
|
+
namespace Annotation {
|
|
11063
|
+
|
|
11064
|
+
/** Semantic enum. */
|
|
11065
|
+
enum Semantic {
|
|
11066
|
+
NONE = 0,
|
|
11067
|
+
SET = 1,
|
|
11068
|
+
ALIAS = 2
|
|
11069
|
+
}
|
|
10411
11070
|
}
|
|
10412
11071
|
}
|
|
10413
11072
|
|
|
@@ -10505,6 +11164,13 @@ export namespace google {
|
|
|
10505
11164
|
* @returns JSON object
|
|
10506
11165
|
*/
|
|
10507
11166
|
public toJSON(): { [k: string]: any };
|
|
11167
|
+
|
|
11168
|
+
/**
|
|
11169
|
+
* Gets the default type url for Duration
|
|
11170
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11171
|
+
* @returns The default type url
|
|
11172
|
+
*/
|
|
11173
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10508
11174
|
}
|
|
10509
11175
|
|
|
10510
11176
|
/** Properties of an Empty. */
|
|
@@ -10589,6 +11255,13 @@ export namespace google {
|
|
|
10589
11255
|
* @returns JSON object
|
|
10590
11256
|
*/
|
|
10591
11257
|
public toJSON(): { [k: string]: any };
|
|
11258
|
+
|
|
11259
|
+
/**
|
|
11260
|
+
* Gets the default type url for Empty
|
|
11261
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11262
|
+
* @returns The default type url
|
|
11263
|
+
*/
|
|
11264
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10592
11265
|
}
|
|
10593
11266
|
|
|
10594
11267
|
/** Properties of a FieldMask. */
|
|
@@ -10679,6 +11352,13 @@ export namespace google {
|
|
|
10679
11352
|
* @returns JSON object
|
|
10680
11353
|
*/
|
|
10681
11354
|
public toJSON(): { [k: string]: any };
|
|
11355
|
+
|
|
11356
|
+
/**
|
|
11357
|
+
* Gets the default type url for FieldMask
|
|
11358
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11359
|
+
* @returns The default type url
|
|
11360
|
+
*/
|
|
11361
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10682
11362
|
}
|
|
10683
11363
|
|
|
10684
11364
|
/** Properties of a Timestamp. */
|
|
@@ -10775,6 +11455,13 @@ export namespace google {
|
|
|
10775
11455
|
* @returns JSON object
|
|
10776
11456
|
*/
|
|
10777
11457
|
public toJSON(): { [k: string]: any };
|
|
11458
|
+
|
|
11459
|
+
/**
|
|
11460
|
+
* Gets the default type url for Timestamp
|
|
11461
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11462
|
+
* @returns The default type url
|
|
11463
|
+
*/
|
|
11464
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10778
11465
|
}
|
|
10779
11466
|
}
|
|
10780
11467
|
}
|