@wundergraph/cosmo-connect 0.90.1 → 0.91.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/dist/common/common_pb.d.ts +5 -1
- package/dist/common/common_pb.js +5 -0
- package/dist/common/common_pb.js.map +1 -1
- package/dist/node/v1/node_pb.d.ts +122 -0
- package/dist/node/v1/node_pb.js +205 -0
- package/dist/node/v1/node_pb.js.map +1 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.d.ts +76 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.js +76 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.js.map +1 -1
- package/dist/platform/v1/platform_connect.d.ts +56 -1
- package/dist/platform/v1/platform_connect.js +56 -1
- package/dist/platform/v1/platform_connect.js.map +1 -1
- package/dist/platform/v1/platform_pb.d.ts +279 -0
- package/dist/platform/v1/platform_pb.js +445 -0
- package/dist/platform/v1/platform_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -15592,4 +15592,449 @@ export class GetNamespaceResponse extends Message {
|
|
|
15592
15592
|
return proto3.util.equals(GetNamespaceResponse, a, b);
|
|
15593
15593
|
}
|
|
15594
15594
|
}
|
|
15595
|
+
/**
|
|
15596
|
+
* @generated from message wg.cosmo.platform.v1.PushCacheWarmerOperationRequest
|
|
15597
|
+
*/
|
|
15598
|
+
export class PushCacheWarmerOperationRequest extends Message {
|
|
15599
|
+
/**
|
|
15600
|
+
* @generated from field: string federatedGraphName = 1;
|
|
15601
|
+
*/
|
|
15602
|
+
federatedGraphName = "";
|
|
15603
|
+
/**
|
|
15604
|
+
* @generated from field: string operationContent = 2;
|
|
15605
|
+
*/
|
|
15606
|
+
operationContent = "";
|
|
15607
|
+
/**
|
|
15608
|
+
* @generated from field: string operationName = 3;
|
|
15609
|
+
*/
|
|
15610
|
+
operationName = "";
|
|
15611
|
+
/**
|
|
15612
|
+
* @generated from field: string operationPersistedId = 4;
|
|
15613
|
+
*/
|
|
15614
|
+
operationPersistedId = "";
|
|
15615
|
+
/**
|
|
15616
|
+
* @generated from field: string namespace = 5;
|
|
15617
|
+
*/
|
|
15618
|
+
namespace = "";
|
|
15619
|
+
constructor(data) {
|
|
15620
|
+
super();
|
|
15621
|
+
proto3.util.initPartial(data, this);
|
|
15622
|
+
}
|
|
15623
|
+
static runtime = proto3;
|
|
15624
|
+
static typeName = "wg.cosmo.platform.v1.PushCacheWarmerOperationRequest";
|
|
15625
|
+
static fields = proto3.util.newFieldList(() => [
|
|
15626
|
+
{ no: 1, name: "federatedGraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15627
|
+
{ no: 2, name: "operationContent", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15628
|
+
{ no: 3, name: "operationName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15629
|
+
{ no: 4, name: "operationPersistedId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15630
|
+
{ no: 5, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15631
|
+
]);
|
|
15632
|
+
static fromBinary(bytes, options) {
|
|
15633
|
+
return new PushCacheWarmerOperationRequest().fromBinary(bytes, options);
|
|
15634
|
+
}
|
|
15635
|
+
static fromJson(jsonValue, options) {
|
|
15636
|
+
return new PushCacheWarmerOperationRequest().fromJson(jsonValue, options);
|
|
15637
|
+
}
|
|
15638
|
+
static fromJsonString(jsonString, options) {
|
|
15639
|
+
return new PushCacheWarmerOperationRequest().fromJsonString(jsonString, options);
|
|
15640
|
+
}
|
|
15641
|
+
static equals(a, b) {
|
|
15642
|
+
return proto3.util.equals(PushCacheWarmerOperationRequest, a, b);
|
|
15643
|
+
}
|
|
15644
|
+
}
|
|
15645
|
+
/**
|
|
15646
|
+
* @generated from message wg.cosmo.platform.v1.PushCacheWarmerOperationResponse
|
|
15647
|
+
*/
|
|
15648
|
+
export class PushCacheWarmerOperationResponse extends Message {
|
|
15649
|
+
/**
|
|
15650
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
15651
|
+
*/
|
|
15652
|
+
response;
|
|
15653
|
+
constructor(data) {
|
|
15654
|
+
super();
|
|
15655
|
+
proto3.util.initPartial(data, this);
|
|
15656
|
+
}
|
|
15657
|
+
static runtime = proto3;
|
|
15658
|
+
static typeName = "wg.cosmo.platform.v1.PushCacheWarmerOperationResponse";
|
|
15659
|
+
static fields = proto3.util.newFieldList(() => [
|
|
15660
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
15661
|
+
]);
|
|
15662
|
+
static fromBinary(bytes, options) {
|
|
15663
|
+
return new PushCacheWarmerOperationResponse().fromBinary(bytes, options);
|
|
15664
|
+
}
|
|
15665
|
+
static fromJson(jsonValue, options) {
|
|
15666
|
+
return new PushCacheWarmerOperationResponse().fromJson(jsonValue, options);
|
|
15667
|
+
}
|
|
15668
|
+
static fromJsonString(jsonString, options) {
|
|
15669
|
+
return new PushCacheWarmerOperationResponse().fromJsonString(jsonString, options);
|
|
15670
|
+
}
|
|
15671
|
+
static equals(a, b) {
|
|
15672
|
+
return proto3.util.equals(PushCacheWarmerOperationResponse, a, b);
|
|
15673
|
+
}
|
|
15674
|
+
}
|
|
15675
|
+
/**
|
|
15676
|
+
* @generated from message wg.cosmo.platform.v1.GetCacheWarmerOperationsRequest
|
|
15677
|
+
*/
|
|
15678
|
+
export class GetCacheWarmerOperationsRequest extends Message {
|
|
15679
|
+
/**
|
|
15680
|
+
* @generated from field: string federatedGraphName = 1;
|
|
15681
|
+
*/
|
|
15682
|
+
federatedGraphName = "";
|
|
15683
|
+
/**
|
|
15684
|
+
* @generated from field: string namespace = 2;
|
|
15685
|
+
*/
|
|
15686
|
+
namespace = "";
|
|
15687
|
+
/**
|
|
15688
|
+
* @generated from field: int32 limit = 3;
|
|
15689
|
+
*/
|
|
15690
|
+
limit = 0;
|
|
15691
|
+
/**
|
|
15692
|
+
* @generated from field: int32 offset = 4;
|
|
15693
|
+
*/
|
|
15694
|
+
offset = 0;
|
|
15695
|
+
constructor(data) {
|
|
15696
|
+
super();
|
|
15697
|
+
proto3.util.initPartial(data, this);
|
|
15698
|
+
}
|
|
15699
|
+
static runtime = proto3;
|
|
15700
|
+
static typeName = "wg.cosmo.platform.v1.GetCacheWarmerOperationsRequest";
|
|
15701
|
+
static fields = proto3.util.newFieldList(() => [
|
|
15702
|
+
{ no: 1, name: "federatedGraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15703
|
+
{ no: 2, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15704
|
+
{ no: 3, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
15705
|
+
{ no: 4, name: "offset", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
15706
|
+
]);
|
|
15707
|
+
static fromBinary(bytes, options) {
|
|
15708
|
+
return new GetCacheWarmerOperationsRequest().fromBinary(bytes, options);
|
|
15709
|
+
}
|
|
15710
|
+
static fromJson(jsonValue, options) {
|
|
15711
|
+
return new GetCacheWarmerOperationsRequest().fromJson(jsonValue, options);
|
|
15712
|
+
}
|
|
15713
|
+
static fromJsonString(jsonString, options) {
|
|
15714
|
+
return new GetCacheWarmerOperationsRequest().fromJsonString(jsonString, options);
|
|
15715
|
+
}
|
|
15716
|
+
static equals(a, b) {
|
|
15717
|
+
return proto3.util.equals(GetCacheWarmerOperationsRequest, a, b);
|
|
15718
|
+
}
|
|
15719
|
+
}
|
|
15720
|
+
/**
|
|
15721
|
+
* @generated from message wg.cosmo.platform.v1.CacheWarmerOperation
|
|
15722
|
+
*/
|
|
15723
|
+
export class CacheWarmerOperation extends Message {
|
|
15724
|
+
/**
|
|
15725
|
+
* @generated from field: string id = 1;
|
|
15726
|
+
*/
|
|
15727
|
+
id = "";
|
|
15728
|
+
/**
|
|
15729
|
+
* @generated from field: string operationContent = 2;
|
|
15730
|
+
*/
|
|
15731
|
+
operationContent = "";
|
|
15732
|
+
/**
|
|
15733
|
+
* @generated from field: string operationName = 3;
|
|
15734
|
+
*/
|
|
15735
|
+
operationName = "";
|
|
15736
|
+
/**
|
|
15737
|
+
* @generated from field: string operationPersistedId = 4;
|
|
15738
|
+
*/
|
|
15739
|
+
operationPersistedId = "";
|
|
15740
|
+
/**
|
|
15741
|
+
* @generated from field: string operationHash = 5;
|
|
15742
|
+
*/
|
|
15743
|
+
operationHash = "";
|
|
15744
|
+
/**
|
|
15745
|
+
* @generated from field: string clientName = 6;
|
|
15746
|
+
*/
|
|
15747
|
+
clientName = "";
|
|
15748
|
+
/**
|
|
15749
|
+
* @generated from field: string clientVersion = 7;
|
|
15750
|
+
*/
|
|
15751
|
+
clientVersion = "";
|
|
15752
|
+
/**
|
|
15753
|
+
* @generated from field: float planningTime = 8;
|
|
15754
|
+
*/
|
|
15755
|
+
planningTime = 0;
|
|
15756
|
+
/**
|
|
15757
|
+
* @generated from field: bool isManuallyAdded = 9;
|
|
15758
|
+
*/
|
|
15759
|
+
isManuallyAdded = false;
|
|
15760
|
+
/**
|
|
15761
|
+
* @generated from field: string createdAt = 10;
|
|
15762
|
+
*/
|
|
15763
|
+
createdAt = "";
|
|
15764
|
+
/**
|
|
15765
|
+
* @generated from field: string createdBy = 11;
|
|
15766
|
+
*/
|
|
15767
|
+
createdBy = "";
|
|
15768
|
+
constructor(data) {
|
|
15769
|
+
super();
|
|
15770
|
+
proto3.util.initPartial(data, this);
|
|
15771
|
+
}
|
|
15772
|
+
static runtime = proto3;
|
|
15773
|
+
static typeName = "wg.cosmo.platform.v1.CacheWarmerOperation";
|
|
15774
|
+
static fields = proto3.util.newFieldList(() => [
|
|
15775
|
+
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15776
|
+
{ no: 2, name: "operationContent", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15777
|
+
{ no: 3, name: "operationName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15778
|
+
{ no: 4, name: "operationPersistedId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15779
|
+
{ no: 5, name: "operationHash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15780
|
+
{ no: 6, name: "clientName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15781
|
+
{ no: 7, name: "clientVersion", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15782
|
+
{ no: 8, name: "planningTime", kind: "scalar", T: 2 /* ScalarType.FLOAT */ },
|
|
15783
|
+
{ no: 9, name: "isManuallyAdded", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
15784
|
+
{ no: 10, name: "createdAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15785
|
+
{ no: 11, name: "createdBy", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15786
|
+
]);
|
|
15787
|
+
static fromBinary(bytes, options) {
|
|
15788
|
+
return new CacheWarmerOperation().fromBinary(bytes, options);
|
|
15789
|
+
}
|
|
15790
|
+
static fromJson(jsonValue, options) {
|
|
15791
|
+
return new CacheWarmerOperation().fromJson(jsonValue, options);
|
|
15792
|
+
}
|
|
15793
|
+
static fromJsonString(jsonString, options) {
|
|
15794
|
+
return new CacheWarmerOperation().fromJsonString(jsonString, options);
|
|
15795
|
+
}
|
|
15796
|
+
static equals(a, b) {
|
|
15797
|
+
return proto3.util.equals(CacheWarmerOperation, a, b);
|
|
15798
|
+
}
|
|
15799
|
+
}
|
|
15800
|
+
/**
|
|
15801
|
+
* @generated from message wg.cosmo.platform.v1.GetCacheWarmerOperationsResponse
|
|
15802
|
+
*/
|
|
15803
|
+
export class GetCacheWarmerOperationsResponse extends Message {
|
|
15804
|
+
/**
|
|
15805
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
15806
|
+
*/
|
|
15807
|
+
response;
|
|
15808
|
+
/**
|
|
15809
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CacheWarmerOperation operations = 2;
|
|
15810
|
+
*/
|
|
15811
|
+
operations = [];
|
|
15812
|
+
/**
|
|
15813
|
+
* @generated from field: int32 total_count = 3;
|
|
15814
|
+
*/
|
|
15815
|
+
totalCount = 0;
|
|
15816
|
+
/**
|
|
15817
|
+
* @generated from field: bool isCacheWarmerEnabled = 4;
|
|
15818
|
+
*/
|
|
15819
|
+
isCacheWarmerEnabled = false;
|
|
15820
|
+
constructor(data) {
|
|
15821
|
+
super();
|
|
15822
|
+
proto3.util.initPartial(data, this);
|
|
15823
|
+
}
|
|
15824
|
+
static runtime = proto3;
|
|
15825
|
+
static typeName = "wg.cosmo.platform.v1.GetCacheWarmerOperationsResponse";
|
|
15826
|
+
static fields = proto3.util.newFieldList(() => [
|
|
15827
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
15828
|
+
{ no: 2, name: "operations", kind: "message", T: CacheWarmerOperation, repeated: true },
|
|
15829
|
+
{ no: 3, name: "total_count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
15830
|
+
{ no: 4, name: "isCacheWarmerEnabled", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
15831
|
+
]);
|
|
15832
|
+
static fromBinary(bytes, options) {
|
|
15833
|
+
return new GetCacheWarmerOperationsResponse().fromBinary(bytes, options);
|
|
15834
|
+
}
|
|
15835
|
+
static fromJson(jsonValue, options) {
|
|
15836
|
+
return new GetCacheWarmerOperationsResponse().fromJson(jsonValue, options);
|
|
15837
|
+
}
|
|
15838
|
+
static fromJsonString(jsonString, options) {
|
|
15839
|
+
return new GetCacheWarmerOperationsResponse().fromJsonString(jsonString, options);
|
|
15840
|
+
}
|
|
15841
|
+
static equals(a, b) {
|
|
15842
|
+
return proto3.util.equals(GetCacheWarmerOperationsResponse, a, b);
|
|
15843
|
+
}
|
|
15844
|
+
}
|
|
15845
|
+
/**
|
|
15846
|
+
* @generated from message wg.cosmo.platform.v1.ComputeCacheWarmerOperationsRequest
|
|
15847
|
+
*/
|
|
15848
|
+
export class ComputeCacheWarmerOperationsRequest extends Message {
|
|
15849
|
+
/**
|
|
15850
|
+
* @generated from field: string federatedGraphName = 1;
|
|
15851
|
+
*/
|
|
15852
|
+
federatedGraphName = "";
|
|
15853
|
+
/**
|
|
15854
|
+
* @generated from field: string namespace = 2;
|
|
15855
|
+
*/
|
|
15856
|
+
namespace = "";
|
|
15857
|
+
constructor(data) {
|
|
15858
|
+
super();
|
|
15859
|
+
proto3.util.initPartial(data, this);
|
|
15860
|
+
}
|
|
15861
|
+
static runtime = proto3;
|
|
15862
|
+
static typeName = "wg.cosmo.platform.v1.ComputeCacheWarmerOperationsRequest";
|
|
15863
|
+
static fields = proto3.util.newFieldList(() => [
|
|
15864
|
+
{ no: 1, name: "federatedGraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15865
|
+
{ no: 2, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15866
|
+
]);
|
|
15867
|
+
static fromBinary(bytes, options) {
|
|
15868
|
+
return new ComputeCacheWarmerOperationsRequest().fromBinary(bytes, options);
|
|
15869
|
+
}
|
|
15870
|
+
static fromJson(jsonValue, options) {
|
|
15871
|
+
return new ComputeCacheWarmerOperationsRequest().fromJson(jsonValue, options);
|
|
15872
|
+
}
|
|
15873
|
+
static fromJsonString(jsonString, options) {
|
|
15874
|
+
return new ComputeCacheWarmerOperationsRequest().fromJsonString(jsonString, options);
|
|
15875
|
+
}
|
|
15876
|
+
static equals(a, b) {
|
|
15877
|
+
return proto3.util.equals(ComputeCacheWarmerOperationsRequest, a, b);
|
|
15878
|
+
}
|
|
15879
|
+
}
|
|
15880
|
+
/**
|
|
15881
|
+
* @generated from message wg.cosmo.platform.v1.ComputeCacheWarmerOperationsResponse
|
|
15882
|
+
*/
|
|
15883
|
+
export class ComputeCacheWarmerOperationsResponse extends Message {
|
|
15884
|
+
/**
|
|
15885
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
15886
|
+
*/
|
|
15887
|
+
response;
|
|
15888
|
+
constructor(data) {
|
|
15889
|
+
super();
|
|
15890
|
+
proto3.util.initPartial(data, this);
|
|
15891
|
+
}
|
|
15892
|
+
static runtime = proto3;
|
|
15893
|
+
static typeName = "wg.cosmo.platform.v1.ComputeCacheWarmerOperationsResponse";
|
|
15894
|
+
static fields = proto3.util.newFieldList(() => [
|
|
15895
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
15896
|
+
]);
|
|
15897
|
+
static fromBinary(bytes, options) {
|
|
15898
|
+
return new ComputeCacheWarmerOperationsResponse().fromBinary(bytes, options);
|
|
15899
|
+
}
|
|
15900
|
+
static fromJson(jsonValue, options) {
|
|
15901
|
+
return new ComputeCacheWarmerOperationsResponse().fromJson(jsonValue, options);
|
|
15902
|
+
}
|
|
15903
|
+
static fromJsonString(jsonString, options) {
|
|
15904
|
+
return new ComputeCacheWarmerOperationsResponse().fromJsonString(jsonString, options);
|
|
15905
|
+
}
|
|
15906
|
+
static equals(a, b) {
|
|
15907
|
+
return proto3.util.equals(ComputeCacheWarmerOperationsResponse, a, b);
|
|
15908
|
+
}
|
|
15909
|
+
}
|
|
15910
|
+
/**
|
|
15911
|
+
* @generated from message wg.cosmo.platform.v1.ConfigureCacheWarmerRequest
|
|
15912
|
+
*/
|
|
15913
|
+
export class ConfigureCacheWarmerRequest extends Message {
|
|
15914
|
+
/**
|
|
15915
|
+
* @generated from field: string namespace = 1;
|
|
15916
|
+
*/
|
|
15917
|
+
namespace = "";
|
|
15918
|
+
/**
|
|
15919
|
+
* @generated from field: bool enableCacheWarmer = 2;
|
|
15920
|
+
*/
|
|
15921
|
+
enableCacheWarmer = false;
|
|
15922
|
+
constructor(data) {
|
|
15923
|
+
super();
|
|
15924
|
+
proto3.util.initPartial(data, this);
|
|
15925
|
+
}
|
|
15926
|
+
static runtime = proto3;
|
|
15927
|
+
static typeName = "wg.cosmo.platform.v1.ConfigureCacheWarmerRequest";
|
|
15928
|
+
static fields = proto3.util.newFieldList(() => [
|
|
15929
|
+
{ no: 1, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15930
|
+
{ no: 2, name: "enableCacheWarmer", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
15931
|
+
]);
|
|
15932
|
+
static fromBinary(bytes, options) {
|
|
15933
|
+
return new ConfigureCacheWarmerRequest().fromBinary(bytes, options);
|
|
15934
|
+
}
|
|
15935
|
+
static fromJson(jsonValue, options) {
|
|
15936
|
+
return new ConfigureCacheWarmerRequest().fromJson(jsonValue, options);
|
|
15937
|
+
}
|
|
15938
|
+
static fromJsonString(jsonString, options) {
|
|
15939
|
+
return new ConfigureCacheWarmerRequest().fromJsonString(jsonString, options);
|
|
15940
|
+
}
|
|
15941
|
+
static equals(a, b) {
|
|
15942
|
+
return proto3.util.equals(ConfigureCacheWarmerRequest, a, b);
|
|
15943
|
+
}
|
|
15944
|
+
}
|
|
15945
|
+
/**
|
|
15946
|
+
* @generated from message wg.cosmo.platform.v1.ConfigureCacheWarmerResponse
|
|
15947
|
+
*/
|
|
15948
|
+
export class ConfigureCacheWarmerResponse extends Message {
|
|
15949
|
+
/**
|
|
15950
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
15951
|
+
*/
|
|
15952
|
+
response;
|
|
15953
|
+
constructor(data) {
|
|
15954
|
+
super();
|
|
15955
|
+
proto3.util.initPartial(data, this);
|
|
15956
|
+
}
|
|
15957
|
+
static runtime = proto3;
|
|
15958
|
+
static typeName = "wg.cosmo.platform.v1.ConfigureCacheWarmerResponse";
|
|
15959
|
+
static fields = proto3.util.newFieldList(() => [
|
|
15960
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
15961
|
+
]);
|
|
15962
|
+
static fromBinary(bytes, options) {
|
|
15963
|
+
return new ConfigureCacheWarmerResponse().fromBinary(bytes, options);
|
|
15964
|
+
}
|
|
15965
|
+
static fromJson(jsonValue, options) {
|
|
15966
|
+
return new ConfigureCacheWarmerResponse().fromJson(jsonValue, options);
|
|
15967
|
+
}
|
|
15968
|
+
static fromJsonString(jsonString, options) {
|
|
15969
|
+
return new ConfigureCacheWarmerResponse().fromJsonString(jsonString, options);
|
|
15970
|
+
}
|
|
15971
|
+
static equals(a, b) {
|
|
15972
|
+
return proto3.util.equals(ConfigureCacheWarmerResponse, a, b);
|
|
15973
|
+
}
|
|
15974
|
+
}
|
|
15975
|
+
/**
|
|
15976
|
+
* @generated from message wg.cosmo.platform.v1.GetCacheWarmerConfigRequest
|
|
15977
|
+
*/
|
|
15978
|
+
export class GetCacheWarmerConfigRequest extends Message {
|
|
15979
|
+
/**
|
|
15980
|
+
* @generated from field: string namespace = 1;
|
|
15981
|
+
*/
|
|
15982
|
+
namespace = "";
|
|
15983
|
+
constructor(data) {
|
|
15984
|
+
super();
|
|
15985
|
+
proto3.util.initPartial(data, this);
|
|
15986
|
+
}
|
|
15987
|
+
static runtime = proto3;
|
|
15988
|
+
static typeName = "wg.cosmo.platform.v1.GetCacheWarmerConfigRequest";
|
|
15989
|
+
static fields = proto3.util.newFieldList(() => [
|
|
15990
|
+
{ no: 1, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
15991
|
+
]);
|
|
15992
|
+
static fromBinary(bytes, options) {
|
|
15993
|
+
return new GetCacheWarmerConfigRequest().fromBinary(bytes, options);
|
|
15994
|
+
}
|
|
15995
|
+
static fromJson(jsonValue, options) {
|
|
15996
|
+
return new GetCacheWarmerConfigRequest().fromJson(jsonValue, options);
|
|
15997
|
+
}
|
|
15998
|
+
static fromJsonString(jsonString, options) {
|
|
15999
|
+
return new GetCacheWarmerConfigRequest().fromJsonString(jsonString, options);
|
|
16000
|
+
}
|
|
16001
|
+
static equals(a, b) {
|
|
16002
|
+
return proto3.util.equals(GetCacheWarmerConfigRequest, a, b);
|
|
16003
|
+
}
|
|
16004
|
+
}
|
|
16005
|
+
/**
|
|
16006
|
+
* @generated from message wg.cosmo.platform.v1.GetCacheWarmerConfigResponse
|
|
16007
|
+
*/
|
|
16008
|
+
export class GetCacheWarmerConfigResponse extends Message {
|
|
16009
|
+
/**
|
|
16010
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
16011
|
+
*/
|
|
16012
|
+
response;
|
|
16013
|
+
/**
|
|
16014
|
+
* @generated from field: bool isCacheWarmerEnabled = 2;
|
|
16015
|
+
*/
|
|
16016
|
+
isCacheWarmerEnabled = false;
|
|
16017
|
+
constructor(data) {
|
|
16018
|
+
super();
|
|
16019
|
+
proto3.util.initPartial(data, this);
|
|
16020
|
+
}
|
|
16021
|
+
static runtime = proto3;
|
|
16022
|
+
static typeName = "wg.cosmo.platform.v1.GetCacheWarmerConfigResponse";
|
|
16023
|
+
static fields = proto3.util.newFieldList(() => [
|
|
16024
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
16025
|
+
{ no: 2, name: "isCacheWarmerEnabled", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
16026
|
+
]);
|
|
16027
|
+
static fromBinary(bytes, options) {
|
|
16028
|
+
return new GetCacheWarmerConfigResponse().fromBinary(bytes, options);
|
|
16029
|
+
}
|
|
16030
|
+
static fromJson(jsonValue, options) {
|
|
16031
|
+
return new GetCacheWarmerConfigResponse().fromJson(jsonValue, options);
|
|
16032
|
+
}
|
|
16033
|
+
static fromJsonString(jsonString, options) {
|
|
16034
|
+
return new GetCacheWarmerConfigResponse().fromJsonString(jsonString, options);
|
|
16035
|
+
}
|
|
16036
|
+
static equals(a, b) {
|
|
16037
|
+
return proto3.util.equals(GetCacheWarmerConfigResponse, a, b);
|
|
16038
|
+
}
|
|
16039
|
+
}
|
|
15595
16040
|
//# sourceMappingURL=platform_pb.js.map
|