@lansweeper/multitenant-api-grpc 0.4.73 → 0.4.75
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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/multitenant_grpc_pb.d.ts +14 -14
- package/gen-proto/multitenant_grpc_pb.js +18 -18
- package/gen-proto/multitenant_pb.d.ts +96 -50
- package/gen-proto/multitenant_pb.js +519 -173
- package/generated-go/multitenant.pb.go +1119 -991
- package/generated-go/multitenant_grpc.pb.go +15 -15
- package/package.json +2 -2
- package/proto/multitenant.proto +18 -10
|
@@ -5542,7 +5542,7 @@ func (x *GetSiteHierarchyIdsResponse) GetPageInfo() *SiteHierarchyIdsPageInfo {
|
|
|
5542
5542
|
return nil
|
|
5543
5543
|
}
|
|
5544
5544
|
|
|
5545
|
-
type
|
|
5545
|
+
type GetSitesOptions struct {
|
|
5546
5546
|
state protoimpl.MessageState
|
|
5547
5547
|
sizeCache protoimpl.SizeCache
|
|
5548
5548
|
unknownFields protoimpl.UnknownFields
|
|
@@ -5551,8 +5551,8 @@ type GetSitesIdsWithFederationRequest struct {
|
|
|
5551
5551
|
Limit *int32 `protobuf:"varint,2,opt,name=limit,proto3,oneof" json:"limit,omitempty"`
|
|
5552
5552
|
}
|
|
5553
5553
|
|
|
5554
|
-
func (x *
|
|
5555
|
-
*x =
|
|
5554
|
+
func (x *GetSitesOptions) Reset() {
|
|
5555
|
+
*x = GetSitesOptions{}
|
|
5556
5556
|
if protoimpl.UnsafeEnabled {
|
|
5557
5557
|
mi := &file_multitenant_proto_msgTypes[91]
|
|
5558
5558
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
@@ -5560,13 +5560,13 @@ func (x *GetSitesIdsWithFederationRequest) Reset() {
|
|
|
5560
5560
|
}
|
|
5561
5561
|
}
|
|
5562
5562
|
|
|
5563
|
-
func (x *
|
|
5563
|
+
func (x *GetSitesOptions) String() string {
|
|
5564
5564
|
return protoimpl.X.MessageStringOf(x)
|
|
5565
5565
|
}
|
|
5566
5566
|
|
|
5567
|
-
func (*
|
|
5567
|
+
func (*GetSitesOptions) ProtoMessage() {}
|
|
5568
5568
|
|
|
5569
|
-
func (x *
|
|
5569
|
+
func (x *GetSitesOptions) ProtoReflect() protoreflect.Message {
|
|
5570
5570
|
mi := &file_multitenant_proto_msgTypes[91]
|
|
5571
5571
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5572
5572
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
@@ -5578,37 +5578,35 @@ func (x *GetSitesIdsWithFederationRequest) ProtoReflect() protoreflect.Message {
|
|
|
5578
5578
|
return mi.MessageOf(x)
|
|
5579
5579
|
}
|
|
5580
5580
|
|
|
5581
|
-
// Deprecated: Use
|
|
5582
|
-
func (*
|
|
5581
|
+
// Deprecated: Use GetSitesOptions.ProtoReflect.Descriptor instead.
|
|
5582
|
+
func (*GetSitesOptions) Descriptor() ([]byte, []int) {
|
|
5583
5583
|
return file_multitenant_proto_rawDescGZIP(), []int{91}
|
|
5584
5584
|
}
|
|
5585
5585
|
|
|
5586
|
-
func (x *
|
|
5586
|
+
func (x *GetSitesOptions) GetOffsetId() string {
|
|
5587
5587
|
if x != nil && x.OffsetId != nil {
|
|
5588
5588
|
return *x.OffsetId
|
|
5589
5589
|
}
|
|
5590
5590
|
return ""
|
|
5591
5591
|
}
|
|
5592
5592
|
|
|
5593
|
-
func (x *
|
|
5593
|
+
func (x *GetSitesOptions) GetLimit() int32 {
|
|
5594
5594
|
if x != nil && x.Limit != nil {
|
|
5595
5595
|
return *x.Limit
|
|
5596
5596
|
}
|
|
5597
5597
|
return 0
|
|
5598
5598
|
}
|
|
5599
5599
|
|
|
5600
|
-
type
|
|
5600
|
+
type GetSitesRequest struct {
|
|
5601
5601
|
state protoimpl.MessageState
|
|
5602
5602
|
sizeCache protoimpl.SizeCache
|
|
5603
5603
|
unknownFields protoimpl.UnknownFields
|
|
5604
5604
|
|
|
5605
|
-
|
|
5606
|
-
EnabledMetadataFieldsFederation bool `protobuf:"varint,2,opt,name=enabledMetadataFieldsFederation,proto3" json:"enabledMetadataFieldsFederation,omitempty"`
|
|
5607
|
-
EnabledCustomFieldsFederation bool `protobuf:"varint,3,opt,name=enabledCustomFieldsFederation,proto3" json:"enabledCustomFieldsFederation,omitempty"`
|
|
5605
|
+
Options *GetSitesOptions `protobuf:"bytes,1,opt,name=options,proto3,oneof" json:"options,omitempty"`
|
|
5608
5606
|
}
|
|
5609
5607
|
|
|
5610
|
-
func (x *
|
|
5611
|
-
*x =
|
|
5608
|
+
func (x *GetSitesRequest) Reset() {
|
|
5609
|
+
*x = GetSitesRequest{}
|
|
5612
5610
|
if protoimpl.UnsafeEnabled {
|
|
5613
5611
|
mi := &file_multitenant_proto_msgTypes[92]
|
|
5614
5612
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
@@ -5616,13 +5614,13 @@ func (x *SitesIdsWithFederationItem) Reset() {
|
|
|
5616
5614
|
}
|
|
5617
5615
|
}
|
|
5618
5616
|
|
|
5619
|
-
func (x *
|
|
5617
|
+
func (x *GetSitesRequest) String() string {
|
|
5620
5618
|
return protoimpl.X.MessageStringOf(x)
|
|
5621
5619
|
}
|
|
5622
5620
|
|
|
5623
|
-
func (*
|
|
5621
|
+
func (*GetSitesRequest) ProtoMessage() {}
|
|
5624
5622
|
|
|
5625
|
-
func (x *
|
|
5623
|
+
func (x *GetSitesRequest) ProtoReflect() protoreflect.Message {
|
|
5626
5624
|
mi := &file_multitenant_proto_msgTypes[92]
|
|
5627
5625
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5628
5626
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
@@ -5634,33 +5632,129 @@ func (x *SitesIdsWithFederationItem) ProtoReflect() protoreflect.Message {
|
|
|
5634
5632
|
return mi.MessageOf(x)
|
|
5635
5633
|
}
|
|
5636
5634
|
|
|
5637
|
-
// Deprecated: Use
|
|
5638
|
-
func (*
|
|
5635
|
+
// Deprecated: Use GetSitesRequest.ProtoReflect.Descriptor instead.
|
|
5636
|
+
func (*GetSitesRequest) Descriptor() ([]byte, []int) {
|
|
5639
5637
|
return file_multitenant_proto_rawDescGZIP(), []int{92}
|
|
5640
5638
|
}
|
|
5641
5639
|
|
|
5642
|
-
func (x *
|
|
5640
|
+
func (x *GetSitesRequest) GetOptions() *GetSitesOptions {
|
|
5643
5641
|
if x != nil {
|
|
5644
|
-
return x.
|
|
5642
|
+
return x.Options
|
|
5645
5643
|
}
|
|
5646
|
-
return
|
|
5644
|
+
return nil
|
|
5645
|
+
}
|
|
5646
|
+
|
|
5647
|
+
type SiteItemMetadata struct {
|
|
5648
|
+
state protoimpl.MessageState
|
|
5649
|
+
sizeCache protoimpl.SizeCache
|
|
5650
|
+
unknownFields protoimpl.UnknownFields
|
|
5651
|
+
|
|
5652
|
+
EnabledMetadataFieldsFederation bool `protobuf:"varint,1,opt,name=enabled_metadata_fields_federation,json=enabledMetadataFieldsFederation,proto3" json:"enabled_metadata_fields_federation,omitempty"`
|
|
5653
|
+
EnabledCustomFieldsFederation bool `protobuf:"varint,2,opt,name=enabled_custom_fields_federation,json=enabledCustomFieldsFederation,proto3" json:"enabled_custom_fields_federation,omitempty"`
|
|
5654
|
+
}
|
|
5655
|
+
|
|
5656
|
+
func (x *SiteItemMetadata) Reset() {
|
|
5657
|
+
*x = SiteItemMetadata{}
|
|
5658
|
+
if protoimpl.UnsafeEnabled {
|
|
5659
|
+
mi := &file_multitenant_proto_msgTypes[93]
|
|
5660
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5661
|
+
ms.StoreMessageInfo(mi)
|
|
5662
|
+
}
|
|
5663
|
+
}
|
|
5664
|
+
|
|
5665
|
+
func (x *SiteItemMetadata) String() string {
|
|
5666
|
+
return protoimpl.X.MessageStringOf(x)
|
|
5667
|
+
}
|
|
5668
|
+
|
|
5669
|
+
func (*SiteItemMetadata) ProtoMessage() {}
|
|
5670
|
+
|
|
5671
|
+
func (x *SiteItemMetadata) ProtoReflect() protoreflect.Message {
|
|
5672
|
+
mi := &file_multitenant_proto_msgTypes[93]
|
|
5673
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
5674
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5675
|
+
if ms.LoadMessageInfo() == nil {
|
|
5676
|
+
ms.StoreMessageInfo(mi)
|
|
5677
|
+
}
|
|
5678
|
+
return ms
|
|
5679
|
+
}
|
|
5680
|
+
return mi.MessageOf(x)
|
|
5681
|
+
}
|
|
5682
|
+
|
|
5683
|
+
// Deprecated: Use SiteItemMetadata.ProtoReflect.Descriptor instead.
|
|
5684
|
+
func (*SiteItemMetadata) Descriptor() ([]byte, []int) {
|
|
5685
|
+
return file_multitenant_proto_rawDescGZIP(), []int{93}
|
|
5647
5686
|
}
|
|
5648
5687
|
|
|
5649
|
-
func (x *
|
|
5688
|
+
func (x *SiteItemMetadata) GetEnabledMetadataFieldsFederation() bool {
|
|
5650
5689
|
if x != nil {
|
|
5651
5690
|
return x.EnabledMetadataFieldsFederation
|
|
5652
5691
|
}
|
|
5653
5692
|
return false
|
|
5654
5693
|
}
|
|
5655
5694
|
|
|
5656
|
-
func (x *
|
|
5695
|
+
func (x *SiteItemMetadata) GetEnabledCustomFieldsFederation() bool {
|
|
5657
5696
|
if x != nil {
|
|
5658
5697
|
return x.EnabledCustomFieldsFederation
|
|
5659
5698
|
}
|
|
5660
5699
|
return false
|
|
5661
5700
|
}
|
|
5662
5701
|
|
|
5663
|
-
type
|
|
5702
|
+
type SiteItem struct {
|
|
5703
|
+
state protoimpl.MessageState
|
|
5704
|
+
sizeCache protoimpl.SizeCache
|
|
5705
|
+
unknownFields protoimpl.UnknownFields
|
|
5706
|
+
|
|
5707
|
+
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
5708
|
+
Metadata *SiteItemMetadata `protobuf:"bytes,2,opt,name=metadata,proto3,oneof" json:"metadata,omitempty"`
|
|
5709
|
+
}
|
|
5710
|
+
|
|
5711
|
+
func (x *SiteItem) Reset() {
|
|
5712
|
+
*x = SiteItem{}
|
|
5713
|
+
if protoimpl.UnsafeEnabled {
|
|
5714
|
+
mi := &file_multitenant_proto_msgTypes[94]
|
|
5715
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5716
|
+
ms.StoreMessageInfo(mi)
|
|
5717
|
+
}
|
|
5718
|
+
}
|
|
5719
|
+
|
|
5720
|
+
func (x *SiteItem) String() string {
|
|
5721
|
+
return protoimpl.X.MessageStringOf(x)
|
|
5722
|
+
}
|
|
5723
|
+
|
|
5724
|
+
func (*SiteItem) ProtoMessage() {}
|
|
5725
|
+
|
|
5726
|
+
func (x *SiteItem) ProtoReflect() protoreflect.Message {
|
|
5727
|
+
mi := &file_multitenant_proto_msgTypes[94]
|
|
5728
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
5729
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5730
|
+
if ms.LoadMessageInfo() == nil {
|
|
5731
|
+
ms.StoreMessageInfo(mi)
|
|
5732
|
+
}
|
|
5733
|
+
return ms
|
|
5734
|
+
}
|
|
5735
|
+
return mi.MessageOf(x)
|
|
5736
|
+
}
|
|
5737
|
+
|
|
5738
|
+
// Deprecated: Use SiteItem.ProtoReflect.Descriptor instead.
|
|
5739
|
+
func (*SiteItem) Descriptor() ([]byte, []int) {
|
|
5740
|
+
return file_multitenant_proto_rawDescGZIP(), []int{94}
|
|
5741
|
+
}
|
|
5742
|
+
|
|
5743
|
+
func (x *SiteItem) GetId() string {
|
|
5744
|
+
if x != nil {
|
|
5745
|
+
return x.Id
|
|
5746
|
+
}
|
|
5747
|
+
return ""
|
|
5748
|
+
}
|
|
5749
|
+
|
|
5750
|
+
func (x *SiteItem) GetMetadata() *SiteItemMetadata {
|
|
5751
|
+
if x != nil {
|
|
5752
|
+
return x.Metadata
|
|
5753
|
+
}
|
|
5754
|
+
return nil
|
|
5755
|
+
}
|
|
5756
|
+
|
|
5757
|
+
type GetSitesPageInfo struct {
|
|
5664
5758
|
state protoimpl.MessageState
|
|
5665
5759
|
sizeCache protoimpl.SizeCache
|
|
5666
5760
|
unknownFields protoimpl.UnknownFields
|
|
@@ -5670,23 +5764,23 @@ type SitesIdsWithFederationPageInfo struct {
|
|
|
5670
5764
|
HasNextPage bool `protobuf:"varint,3,opt,name=has_next_page,json=hasNextPage,proto3" json:"has_next_page,omitempty"`
|
|
5671
5765
|
}
|
|
5672
5766
|
|
|
5673
|
-
func (x *
|
|
5674
|
-
*x =
|
|
5767
|
+
func (x *GetSitesPageInfo) Reset() {
|
|
5768
|
+
*x = GetSitesPageInfo{}
|
|
5675
5769
|
if protoimpl.UnsafeEnabled {
|
|
5676
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5770
|
+
mi := &file_multitenant_proto_msgTypes[95]
|
|
5677
5771
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5678
5772
|
ms.StoreMessageInfo(mi)
|
|
5679
5773
|
}
|
|
5680
5774
|
}
|
|
5681
5775
|
|
|
5682
|
-
func (x *
|
|
5776
|
+
func (x *GetSitesPageInfo) String() string {
|
|
5683
5777
|
return protoimpl.X.MessageStringOf(x)
|
|
5684
5778
|
}
|
|
5685
5779
|
|
|
5686
|
-
func (*
|
|
5780
|
+
func (*GetSitesPageInfo) ProtoMessage() {}
|
|
5687
5781
|
|
|
5688
|
-
func (x *
|
|
5689
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5782
|
+
func (x *GetSitesPageInfo) ProtoReflect() protoreflect.Message {
|
|
5783
|
+
mi := &file_multitenant_proto_msgTypes[95]
|
|
5690
5784
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5691
5785
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5692
5786
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5697,59 +5791,59 @@ func (x *SitesIdsWithFederationPageInfo) ProtoReflect() protoreflect.Message {
|
|
|
5697
5791
|
return mi.MessageOf(x)
|
|
5698
5792
|
}
|
|
5699
5793
|
|
|
5700
|
-
// Deprecated: Use
|
|
5701
|
-
func (*
|
|
5702
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5794
|
+
// Deprecated: Use GetSitesPageInfo.ProtoReflect.Descriptor instead.
|
|
5795
|
+
func (*GetSitesPageInfo) Descriptor() ([]byte, []int) {
|
|
5796
|
+
return file_multitenant_proto_rawDescGZIP(), []int{95}
|
|
5703
5797
|
}
|
|
5704
5798
|
|
|
5705
|
-
func (x *
|
|
5799
|
+
func (x *GetSitesPageInfo) GetOffsetId() string {
|
|
5706
5800
|
if x != nil {
|
|
5707
5801
|
return x.OffsetId
|
|
5708
5802
|
}
|
|
5709
5803
|
return ""
|
|
5710
5804
|
}
|
|
5711
5805
|
|
|
5712
|
-
func (x *
|
|
5806
|
+
func (x *GetSitesPageInfo) GetLimit() int32 {
|
|
5713
5807
|
if x != nil {
|
|
5714
5808
|
return x.Limit
|
|
5715
5809
|
}
|
|
5716
5810
|
return 0
|
|
5717
5811
|
}
|
|
5718
5812
|
|
|
5719
|
-
func (x *
|
|
5813
|
+
func (x *GetSitesPageInfo) GetHasNextPage() bool {
|
|
5720
5814
|
if x != nil {
|
|
5721
5815
|
return x.HasNextPage
|
|
5722
5816
|
}
|
|
5723
5817
|
return false
|
|
5724
5818
|
}
|
|
5725
5819
|
|
|
5726
|
-
type
|
|
5820
|
+
type GetSitesResponse struct {
|
|
5727
5821
|
state protoimpl.MessageState
|
|
5728
5822
|
sizeCache protoimpl.SizeCache
|
|
5729
5823
|
unknownFields protoimpl.UnknownFields
|
|
5730
5824
|
|
|
5731
|
-
Count int32
|
|
5732
|
-
Items []*
|
|
5733
|
-
PageInfo *
|
|
5825
|
+
Count int32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
|
|
5826
|
+
Items []*SiteItem `protobuf:"bytes,2,rep,name=items,proto3" json:"items,omitempty"`
|
|
5827
|
+
PageInfo *GetSitesPageInfo `protobuf:"bytes,3,opt,name=page_info,json=pageInfo,proto3" json:"page_info,omitempty"`
|
|
5734
5828
|
}
|
|
5735
5829
|
|
|
5736
|
-
func (x *
|
|
5737
|
-
*x =
|
|
5830
|
+
func (x *GetSitesResponse) Reset() {
|
|
5831
|
+
*x = GetSitesResponse{}
|
|
5738
5832
|
if protoimpl.UnsafeEnabled {
|
|
5739
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5833
|
+
mi := &file_multitenant_proto_msgTypes[96]
|
|
5740
5834
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5741
5835
|
ms.StoreMessageInfo(mi)
|
|
5742
5836
|
}
|
|
5743
5837
|
}
|
|
5744
5838
|
|
|
5745
|
-
func (x *
|
|
5839
|
+
func (x *GetSitesResponse) String() string {
|
|
5746
5840
|
return protoimpl.X.MessageStringOf(x)
|
|
5747
5841
|
}
|
|
5748
5842
|
|
|
5749
|
-
func (*
|
|
5843
|
+
func (*GetSitesResponse) ProtoMessage() {}
|
|
5750
5844
|
|
|
5751
|
-
func (x *
|
|
5752
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5845
|
+
func (x *GetSitesResponse) ProtoReflect() protoreflect.Message {
|
|
5846
|
+
mi := &file_multitenant_proto_msgTypes[96]
|
|
5753
5847
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5754
5848
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5755
5849
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5760,26 +5854,26 @@ func (x *GetSitesIdsWithFederationResponse) ProtoReflect() protoreflect.Message
|
|
|
5760
5854
|
return mi.MessageOf(x)
|
|
5761
5855
|
}
|
|
5762
5856
|
|
|
5763
|
-
// Deprecated: Use
|
|
5764
|
-
func (*
|
|
5765
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5857
|
+
// Deprecated: Use GetSitesResponse.ProtoReflect.Descriptor instead.
|
|
5858
|
+
func (*GetSitesResponse) Descriptor() ([]byte, []int) {
|
|
5859
|
+
return file_multitenant_proto_rawDescGZIP(), []int{96}
|
|
5766
5860
|
}
|
|
5767
5861
|
|
|
5768
|
-
func (x *
|
|
5862
|
+
func (x *GetSitesResponse) GetCount() int32 {
|
|
5769
5863
|
if x != nil {
|
|
5770
5864
|
return x.Count
|
|
5771
5865
|
}
|
|
5772
5866
|
return 0
|
|
5773
5867
|
}
|
|
5774
5868
|
|
|
5775
|
-
func (x *
|
|
5869
|
+
func (x *GetSitesResponse) GetItems() []*SiteItem {
|
|
5776
5870
|
if x != nil {
|
|
5777
5871
|
return x.Items
|
|
5778
5872
|
}
|
|
5779
5873
|
return nil
|
|
5780
5874
|
}
|
|
5781
5875
|
|
|
5782
|
-
func (x *
|
|
5876
|
+
func (x *GetSitesResponse) GetPageInfo() *GetSitesPageInfo {
|
|
5783
5877
|
if x != nil {
|
|
5784
5878
|
return x.PageInfo
|
|
5785
5879
|
}
|
|
@@ -5798,7 +5892,7 @@ type MsmpPagination struct {
|
|
|
5798
5892
|
func (x *MsmpPagination) Reset() {
|
|
5799
5893
|
*x = MsmpPagination{}
|
|
5800
5894
|
if protoimpl.UnsafeEnabled {
|
|
5801
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5895
|
+
mi := &file_multitenant_proto_msgTypes[97]
|
|
5802
5896
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5803
5897
|
ms.StoreMessageInfo(mi)
|
|
5804
5898
|
}
|
|
@@ -5811,7 +5905,7 @@ func (x *MsmpPagination) String() string {
|
|
|
5811
5905
|
func (*MsmpPagination) ProtoMessage() {}
|
|
5812
5906
|
|
|
5813
5907
|
func (x *MsmpPagination) ProtoReflect() protoreflect.Message {
|
|
5814
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5908
|
+
mi := &file_multitenant_proto_msgTypes[97]
|
|
5815
5909
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5816
5910
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5817
5911
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5824,7 +5918,7 @@ func (x *MsmpPagination) ProtoReflect() protoreflect.Message {
|
|
|
5824
5918
|
|
|
5825
5919
|
// Deprecated: Use MsmpPagination.ProtoReflect.Descriptor instead.
|
|
5826
5920
|
func (*MsmpPagination) Descriptor() ([]byte, []int) {
|
|
5827
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5921
|
+
return file_multitenant_proto_rawDescGZIP(), []int{97}
|
|
5828
5922
|
}
|
|
5829
5923
|
|
|
5830
5924
|
func (x *MsmpPagination) GetOffset() int32 {
|
|
@@ -5855,7 +5949,7 @@ type MsmpPaginationInfo struct {
|
|
|
5855
5949
|
func (x *MsmpPaginationInfo) Reset() {
|
|
5856
5950
|
*x = MsmpPaginationInfo{}
|
|
5857
5951
|
if protoimpl.UnsafeEnabled {
|
|
5858
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5952
|
+
mi := &file_multitenant_proto_msgTypes[98]
|
|
5859
5953
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5860
5954
|
ms.StoreMessageInfo(mi)
|
|
5861
5955
|
}
|
|
@@ -5868,7 +5962,7 @@ func (x *MsmpPaginationInfo) String() string {
|
|
|
5868
5962
|
func (*MsmpPaginationInfo) ProtoMessage() {}
|
|
5869
5963
|
|
|
5870
5964
|
func (x *MsmpPaginationInfo) ProtoReflect() protoreflect.Message {
|
|
5871
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5965
|
+
mi := &file_multitenant_proto_msgTypes[98]
|
|
5872
5966
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5873
5967
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5874
5968
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5881,7 +5975,7 @@ func (x *MsmpPaginationInfo) ProtoReflect() protoreflect.Message {
|
|
|
5881
5975
|
|
|
5882
5976
|
// Deprecated: Use MsmpPaginationInfo.ProtoReflect.Descriptor instead.
|
|
5883
5977
|
func (*MsmpPaginationInfo) Descriptor() ([]byte, []int) {
|
|
5884
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5978
|
+
return file_multitenant_proto_rawDescGZIP(), []int{98}
|
|
5885
5979
|
}
|
|
5886
5980
|
|
|
5887
5981
|
func (x *MsmpPaginationInfo) GetTotal() int32 {
|
|
@@ -5925,7 +6019,7 @@ type GetMsmpOrganizationListRequest struct {
|
|
|
5925
6019
|
func (x *GetMsmpOrganizationListRequest) Reset() {
|
|
5926
6020
|
*x = GetMsmpOrganizationListRequest{}
|
|
5927
6021
|
if protoimpl.UnsafeEnabled {
|
|
5928
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6022
|
+
mi := &file_multitenant_proto_msgTypes[99]
|
|
5929
6023
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5930
6024
|
ms.StoreMessageInfo(mi)
|
|
5931
6025
|
}
|
|
@@ -5938,7 +6032,7 @@ func (x *GetMsmpOrganizationListRequest) String() string {
|
|
|
5938
6032
|
func (*GetMsmpOrganizationListRequest) ProtoMessage() {}
|
|
5939
6033
|
|
|
5940
6034
|
func (x *GetMsmpOrganizationListRequest) ProtoReflect() protoreflect.Message {
|
|
5941
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6035
|
+
mi := &file_multitenant_proto_msgTypes[99]
|
|
5942
6036
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5943
6037
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5944
6038
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5951,7 +6045,7 @@ func (x *GetMsmpOrganizationListRequest) ProtoReflect() protoreflect.Message {
|
|
|
5951
6045
|
|
|
5952
6046
|
// Deprecated: Use GetMsmpOrganizationListRequest.ProtoReflect.Descriptor instead.
|
|
5953
6047
|
func (*GetMsmpOrganizationListRequest) Descriptor() ([]byte, []int) {
|
|
5954
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6048
|
+
return file_multitenant_proto_rawDescGZIP(), []int{99}
|
|
5955
6049
|
}
|
|
5956
6050
|
|
|
5957
6051
|
func (x *GetMsmpOrganizationListRequest) GetUserId() string {
|
|
@@ -5987,7 +6081,7 @@ type GetMsmpOrganizationListResponse struct {
|
|
|
5987
6081
|
func (x *GetMsmpOrganizationListResponse) Reset() {
|
|
5988
6082
|
*x = GetMsmpOrganizationListResponse{}
|
|
5989
6083
|
if protoimpl.UnsafeEnabled {
|
|
5990
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6084
|
+
mi := &file_multitenant_proto_msgTypes[100]
|
|
5991
6085
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5992
6086
|
ms.StoreMessageInfo(mi)
|
|
5993
6087
|
}
|
|
@@ -6000,7 +6094,7 @@ func (x *GetMsmpOrganizationListResponse) String() string {
|
|
|
6000
6094
|
func (*GetMsmpOrganizationListResponse) ProtoMessage() {}
|
|
6001
6095
|
|
|
6002
6096
|
func (x *GetMsmpOrganizationListResponse) ProtoReflect() protoreflect.Message {
|
|
6003
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6097
|
+
mi := &file_multitenant_proto_msgTypes[100]
|
|
6004
6098
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6005
6099
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6006
6100
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6013,7 +6107,7 @@ func (x *GetMsmpOrganizationListResponse) ProtoReflect() protoreflect.Message {
|
|
|
6013
6107
|
|
|
6014
6108
|
// Deprecated: Use GetMsmpOrganizationListResponse.ProtoReflect.Descriptor instead.
|
|
6015
6109
|
func (*GetMsmpOrganizationListResponse) Descriptor() ([]byte, []int) {
|
|
6016
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6110
|
+
return file_multitenant_proto_rawDescGZIP(), []int{100}
|
|
6017
6111
|
}
|
|
6018
6112
|
|
|
6019
6113
|
func (x *GetMsmpOrganizationListResponse) GetOrganizations() []*GetMsmpOrganizationListResponse_MsmpOrganization {
|
|
@@ -6043,7 +6137,7 @@ type GetMsmpOrganizationAccountRequest struct {
|
|
|
6043
6137
|
func (x *GetMsmpOrganizationAccountRequest) Reset() {
|
|
6044
6138
|
*x = GetMsmpOrganizationAccountRequest{}
|
|
6045
6139
|
if protoimpl.UnsafeEnabled {
|
|
6046
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6140
|
+
mi := &file_multitenant_proto_msgTypes[101]
|
|
6047
6141
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6048
6142
|
ms.StoreMessageInfo(mi)
|
|
6049
6143
|
}
|
|
@@ -6056,7 +6150,7 @@ func (x *GetMsmpOrganizationAccountRequest) String() string {
|
|
|
6056
6150
|
func (*GetMsmpOrganizationAccountRequest) ProtoMessage() {}
|
|
6057
6151
|
|
|
6058
6152
|
func (x *GetMsmpOrganizationAccountRequest) ProtoReflect() protoreflect.Message {
|
|
6059
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6153
|
+
mi := &file_multitenant_proto_msgTypes[101]
|
|
6060
6154
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6061
6155
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6062
6156
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6069,7 +6163,7 @@ func (x *GetMsmpOrganizationAccountRequest) ProtoReflect() protoreflect.Message
|
|
|
6069
6163
|
|
|
6070
6164
|
// Deprecated: Use GetMsmpOrganizationAccountRequest.ProtoReflect.Descriptor instead.
|
|
6071
6165
|
func (*GetMsmpOrganizationAccountRequest) Descriptor() ([]byte, []int) {
|
|
6072
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6166
|
+
return file_multitenant_proto_rawDescGZIP(), []int{101}
|
|
6073
6167
|
}
|
|
6074
6168
|
|
|
6075
6169
|
func (x *GetMsmpOrganizationAccountRequest) GetUserId() string {
|
|
@@ -6107,7 +6201,7 @@ type GetMsmpOrganizationAccountResponse struct {
|
|
|
6107
6201
|
func (x *GetMsmpOrganizationAccountResponse) Reset() {
|
|
6108
6202
|
*x = GetMsmpOrganizationAccountResponse{}
|
|
6109
6203
|
if protoimpl.UnsafeEnabled {
|
|
6110
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6204
|
+
mi := &file_multitenant_proto_msgTypes[102]
|
|
6111
6205
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6112
6206
|
ms.StoreMessageInfo(mi)
|
|
6113
6207
|
}
|
|
@@ -6120,7 +6214,7 @@ func (x *GetMsmpOrganizationAccountResponse) String() string {
|
|
|
6120
6214
|
func (*GetMsmpOrganizationAccountResponse) ProtoMessage() {}
|
|
6121
6215
|
|
|
6122
6216
|
func (x *GetMsmpOrganizationAccountResponse) ProtoReflect() protoreflect.Message {
|
|
6123
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6217
|
+
mi := &file_multitenant_proto_msgTypes[102]
|
|
6124
6218
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6125
6219
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6126
6220
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6133,7 +6227,7 @@ func (x *GetMsmpOrganizationAccountResponse) ProtoReflect() protoreflect.Message
|
|
|
6133
6227
|
|
|
6134
6228
|
// Deprecated: Use GetMsmpOrganizationAccountResponse.ProtoReflect.Descriptor instead.
|
|
6135
6229
|
func (*GetMsmpOrganizationAccountResponse) Descriptor() ([]byte, []int) {
|
|
6136
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6230
|
+
return file_multitenant_proto_rawDescGZIP(), []int{102}
|
|
6137
6231
|
}
|
|
6138
6232
|
|
|
6139
6233
|
func (x *GetMsmpOrganizationAccountResponse) GetId() string {
|
|
@@ -6178,7 +6272,7 @@ type GetSitesByMsmpOrganizationIdRequest struct {
|
|
|
6178
6272
|
func (x *GetSitesByMsmpOrganizationIdRequest) Reset() {
|
|
6179
6273
|
*x = GetSitesByMsmpOrganizationIdRequest{}
|
|
6180
6274
|
if protoimpl.UnsafeEnabled {
|
|
6181
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6275
|
+
mi := &file_multitenant_proto_msgTypes[103]
|
|
6182
6276
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6183
6277
|
ms.StoreMessageInfo(mi)
|
|
6184
6278
|
}
|
|
@@ -6191,7 +6285,7 @@ func (x *GetSitesByMsmpOrganizationIdRequest) String() string {
|
|
|
6191
6285
|
func (*GetSitesByMsmpOrganizationIdRequest) ProtoMessage() {}
|
|
6192
6286
|
|
|
6193
6287
|
func (x *GetSitesByMsmpOrganizationIdRequest) ProtoReflect() protoreflect.Message {
|
|
6194
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6288
|
+
mi := &file_multitenant_proto_msgTypes[103]
|
|
6195
6289
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6196
6290
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6197
6291
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6204,7 +6298,7 @@ func (x *GetSitesByMsmpOrganizationIdRequest) ProtoReflect() protoreflect.Messag
|
|
|
6204
6298
|
|
|
6205
6299
|
// Deprecated: Use GetSitesByMsmpOrganizationIdRequest.ProtoReflect.Descriptor instead.
|
|
6206
6300
|
func (*GetSitesByMsmpOrganizationIdRequest) Descriptor() ([]byte, []int) {
|
|
6207
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6301
|
+
return file_multitenant_proto_rawDescGZIP(), []int{103}
|
|
6208
6302
|
}
|
|
6209
6303
|
|
|
6210
6304
|
func (x *GetSitesByMsmpOrganizationIdRequest) GetUserId() string {
|
|
@@ -6247,7 +6341,7 @@ type GetSitesByMsmpOrganizationIdResponse struct {
|
|
|
6247
6341
|
func (x *GetSitesByMsmpOrganizationIdResponse) Reset() {
|
|
6248
6342
|
*x = GetSitesByMsmpOrganizationIdResponse{}
|
|
6249
6343
|
if protoimpl.UnsafeEnabled {
|
|
6250
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6344
|
+
mi := &file_multitenant_proto_msgTypes[104]
|
|
6251
6345
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6252
6346
|
ms.StoreMessageInfo(mi)
|
|
6253
6347
|
}
|
|
@@ -6260,7 +6354,7 @@ func (x *GetSitesByMsmpOrganizationIdResponse) String() string {
|
|
|
6260
6354
|
func (*GetSitesByMsmpOrganizationIdResponse) ProtoMessage() {}
|
|
6261
6355
|
|
|
6262
6356
|
func (x *GetSitesByMsmpOrganizationIdResponse) ProtoReflect() protoreflect.Message {
|
|
6263
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6357
|
+
mi := &file_multitenant_proto_msgTypes[104]
|
|
6264
6358
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6265
6359
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6266
6360
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6273,7 +6367,7 @@ func (x *GetSitesByMsmpOrganizationIdResponse) ProtoReflect() protoreflect.Messa
|
|
|
6273
6367
|
|
|
6274
6368
|
// Deprecated: Use GetSitesByMsmpOrganizationIdResponse.ProtoReflect.Descriptor instead.
|
|
6275
6369
|
func (*GetSitesByMsmpOrganizationIdResponse) Descriptor() ([]byte, []int) {
|
|
6276
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6370
|
+
return file_multitenant_proto_rawDescGZIP(), []int{104}
|
|
6277
6371
|
}
|
|
6278
6372
|
|
|
6279
6373
|
func (x *GetSitesByMsmpOrganizationIdResponse) GetSites() []*PreviewSite {
|
|
@@ -6302,7 +6396,7 @@ type SetEnabledCustomFieldsFederationRequest struct {
|
|
|
6302
6396
|
func (x *SetEnabledCustomFieldsFederationRequest) Reset() {
|
|
6303
6397
|
*x = SetEnabledCustomFieldsFederationRequest{}
|
|
6304
6398
|
if protoimpl.UnsafeEnabled {
|
|
6305
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6399
|
+
mi := &file_multitenant_proto_msgTypes[105]
|
|
6306
6400
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6307
6401
|
ms.StoreMessageInfo(mi)
|
|
6308
6402
|
}
|
|
@@ -6315,7 +6409,7 @@ func (x *SetEnabledCustomFieldsFederationRequest) String() string {
|
|
|
6315
6409
|
func (*SetEnabledCustomFieldsFederationRequest) ProtoMessage() {}
|
|
6316
6410
|
|
|
6317
6411
|
func (x *SetEnabledCustomFieldsFederationRequest) ProtoReflect() protoreflect.Message {
|
|
6318
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6412
|
+
mi := &file_multitenant_proto_msgTypes[105]
|
|
6319
6413
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6320
6414
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6321
6415
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6328,7 +6422,7 @@ func (x *SetEnabledCustomFieldsFederationRequest) ProtoReflect() protoreflect.Me
|
|
|
6328
6422
|
|
|
6329
6423
|
// Deprecated: Use SetEnabledCustomFieldsFederationRequest.ProtoReflect.Descriptor instead.
|
|
6330
6424
|
func (*SetEnabledCustomFieldsFederationRequest) Descriptor() ([]byte, []int) {
|
|
6331
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6425
|
+
return file_multitenant_proto_rawDescGZIP(), []int{105}
|
|
6332
6426
|
}
|
|
6333
6427
|
|
|
6334
6428
|
func (x *SetEnabledCustomFieldsFederationRequest) GetSiteId() string {
|
|
@@ -6356,7 +6450,7 @@ type IsCustomFieldsFederationEnabledRequest struct {
|
|
|
6356
6450
|
func (x *IsCustomFieldsFederationEnabledRequest) Reset() {
|
|
6357
6451
|
*x = IsCustomFieldsFederationEnabledRequest{}
|
|
6358
6452
|
if protoimpl.UnsafeEnabled {
|
|
6359
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6453
|
+
mi := &file_multitenant_proto_msgTypes[106]
|
|
6360
6454
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6361
6455
|
ms.StoreMessageInfo(mi)
|
|
6362
6456
|
}
|
|
@@ -6369,7 +6463,7 @@ func (x *IsCustomFieldsFederationEnabledRequest) String() string {
|
|
|
6369
6463
|
func (*IsCustomFieldsFederationEnabledRequest) ProtoMessage() {}
|
|
6370
6464
|
|
|
6371
6465
|
func (x *IsCustomFieldsFederationEnabledRequest) ProtoReflect() protoreflect.Message {
|
|
6372
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6466
|
+
mi := &file_multitenant_proto_msgTypes[106]
|
|
6373
6467
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6374
6468
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6375
6469
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6382,7 +6476,7 @@ func (x *IsCustomFieldsFederationEnabledRequest) ProtoReflect() protoreflect.Mes
|
|
|
6382
6476
|
|
|
6383
6477
|
// Deprecated: Use IsCustomFieldsFederationEnabledRequest.ProtoReflect.Descriptor instead.
|
|
6384
6478
|
func (*IsCustomFieldsFederationEnabledRequest) Descriptor() ([]byte, []int) {
|
|
6385
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6479
|
+
return file_multitenant_proto_rawDescGZIP(), []int{106}
|
|
6386
6480
|
}
|
|
6387
6481
|
|
|
6388
6482
|
func (x *IsCustomFieldsFederationEnabledRequest) GetSiteId() string {
|
|
@@ -6403,7 +6497,7 @@ type IsMetadataFieldsFederationEnabledRequest struct {
|
|
|
6403
6497
|
func (x *IsMetadataFieldsFederationEnabledRequest) Reset() {
|
|
6404
6498
|
*x = IsMetadataFieldsFederationEnabledRequest{}
|
|
6405
6499
|
if protoimpl.UnsafeEnabled {
|
|
6406
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6500
|
+
mi := &file_multitenant_proto_msgTypes[107]
|
|
6407
6501
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6408
6502
|
ms.StoreMessageInfo(mi)
|
|
6409
6503
|
}
|
|
@@ -6416,7 +6510,7 @@ func (x *IsMetadataFieldsFederationEnabledRequest) String() string {
|
|
|
6416
6510
|
func (*IsMetadataFieldsFederationEnabledRequest) ProtoMessage() {}
|
|
6417
6511
|
|
|
6418
6512
|
func (x *IsMetadataFieldsFederationEnabledRequest) ProtoReflect() protoreflect.Message {
|
|
6419
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6513
|
+
mi := &file_multitenant_proto_msgTypes[107]
|
|
6420
6514
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6421
6515
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6422
6516
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6429,7 +6523,7 @@ func (x *IsMetadataFieldsFederationEnabledRequest) ProtoReflect() protoreflect.M
|
|
|
6429
6523
|
|
|
6430
6524
|
// Deprecated: Use IsMetadataFieldsFederationEnabledRequest.ProtoReflect.Descriptor instead.
|
|
6431
6525
|
func (*IsMetadataFieldsFederationEnabledRequest) Descriptor() ([]byte, []int) {
|
|
6432
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6526
|
+
return file_multitenant_proto_rawDescGZIP(), []int{107}
|
|
6433
6527
|
}
|
|
6434
6528
|
|
|
6435
6529
|
func (x *IsMetadataFieldsFederationEnabledRequest) GetSiteId() string {
|
|
@@ -6450,7 +6544,7 @@ type IsCustomFieldsFederationEnabledResponse struct {
|
|
|
6450
6544
|
func (x *IsCustomFieldsFederationEnabledResponse) Reset() {
|
|
6451
6545
|
*x = IsCustomFieldsFederationEnabledResponse{}
|
|
6452
6546
|
if protoimpl.UnsafeEnabled {
|
|
6453
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6547
|
+
mi := &file_multitenant_proto_msgTypes[108]
|
|
6454
6548
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6455
6549
|
ms.StoreMessageInfo(mi)
|
|
6456
6550
|
}
|
|
@@ -6463,7 +6557,7 @@ func (x *IsCustomFieldsFederationEnabledResponse) String() string {
|
|
|
6463
6557
|
func (*IsCustomFieldsFederationEnabledResponse) ProtoMessage() {}
|
|
6464
6558
|
|
|
6465
6559
|
func (x *IsCustomFieldsFederationEnabledResponse) ProtoReflect() protoreflect.Message {
|
|
6466
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6560
|
+
mi := &file_multitenant_proto_msgTypes[108]
|
|
6467
6561
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6468
6562
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6469
6563
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6476,7 +6570,7 @@ func (x *IsCustomFieldsFederationEnabledResponse) ProtoReflect() protoreflect.Me
|
|
|
6476
6570
|
|
|
6477
6571
|
// Deprecated: Use IsCustomFieldsFederationEnabledResponse.ProtoReflect.Descriptor instead.
|
|
6478
6572
|
func (*IsCustomFieldsFederationEnabledResponse) Descriptor() ([]byte, []int) {
|
|
6479
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6573
|
+
return file_multitenant_proto_rawDescGZIP(), []int{108}
|
|
6480
6574
|
}
|
|
6481
6575
|
|
|
6482
6576
|
func (x *IsCustomFieldsFederationEnabledResponse) GetIsEnabled() bool {
|
|
@@ -6497,7 +6591,7 @@ type IsMetadataFieldsFederationEnabledResponse struct {
|
|
|
6497
6591
|
func (x *IsMetadataFieldsFederationEnabledResponse) Reset() {
|
|
6498
6592
|
*x = IsMetadataFieldsFederationEnabledResponse{}
|
|
6499
6593
|
if protoimpl.UnsafeEnabled {
|
|
6500
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6594
|
+
mi := &file_multitenant_proto_msgTypes[109]
|
|
6501
6595
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6502
6596
|
ms.StoreMessageInfo(mi)
|
|
6503
6597
|
}
|
|
@@ -6510,7 +6604,7 @@ func (x *IsMetadataFieldsFederationEnabledResponse) String() string {
|
|
|
6510
6604
|
func (*IsMetadataFieldsFederationEnabledResponse) ProtoMessage() {}
|
|
6511
6605
|
|
|
6512
6606
|
func (x *IsMetadataFieldsFederationEnabledResponse) ProtoReflect() protoreflect.Message {
|
|
6513
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6607
|
+
mi := &file_multitenant_proto_msgTypes[109]
|
|
6514
6608
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6515
6609
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6516
6610
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6523,7 +6617,7 @@ func (x *IsMetadataFieldsFederationEnabledResponse) ProtoReflect() protoreflect.
|
|
|
6523
6617
|
|
|
6524
6618
|
// Deprecated: Use IsMetadataFieldsFederationEnabledResponse.ProtoReflect.Descriptor instead.
|
|
6525
6619
|
func (*IsMetadataFieldsFederationEnabledResponse) Descriptor() ([]byte, []int) {
|
|
6526
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6620
|
+
return file_multitenant_proto_rawDescGZIP(), []int{109}
|
|
6527
6621
|
}
|
|
6528
6622
|
|
|
6529
6623
|
func (x *IsMetadataFieldsFederationEnabledResponse) GetIsEnabled() bool {
|
|
@@ -6544,7 +6638,7 @@ type GetSitePreviewRequest struct {
|
|
|
6544
6638
|
func (x *GetSitePreviewRequest) Reset() {
|
|
6545
6639
|
*x = GetSitePreviewRequest{}
|
|
6546
6640
|
if protoimpl.UnsafeEnabled {
|
|
6547
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6641
|
+
mi := &file_multitenant_proto_msgTypes[110]
|
|
6548
6642
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6549
6643
|
ms.StoreMessageInfo(mi)
|
|
6550
6644
|
}
|
|
@@ -6557,7 +6651,7 @@ func (x *GetSitePreviewRequest) String() string {
|
|
|
6557
6651
|
func (*GetSitePreviewRequest) ProtoMessage() {}
|
|
6558
6652
|
|
|
6559
6653
|
func (x *GetSitePreviewRequest) ProtoReflect() protoreflect.Message {
|
|
6560
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6654
|
+
mi := &file_multitenant_proto_msgTypes[110]
|
|
6561
6655
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6562
6656
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6563
6657
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6570,7 +6664,7 @@ func (x *GetSitePreviewRequest) ProtoReflect() protoreflect.Message {
|
|
|
6570
6664
|
|
|
6571
6665
|
// Deprecated: Use GetSitePreviewRequest.ProtoReflect.Descriptor instead.
|
|
6572
6666
|
func (*GetSitePreviewRequest) Descriptor() ([]byte, []int) {
|
|
6573
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6667
|
+
return file_multitenant_proto_rawDescGZIP(), []int{110}
|
|
6574
6668
|
}
|
|
6575
6669
|
|
|
6576
6670
|
func (x *GetSitePreviewRequest) GetSiteId() string {
|
|
@@ -6591,7 +6685,7 @@ type GetSitePreviewResponse struct {
|
|
|
6591
6685
|
func (x *GetSitePreviewResponse) Reset() {
|
|
6592
6686
|
*x = GetSitePreviewResponse{}
|
|
6593
6687
|
if protoimpl.UnsafeEnabled {
|
|
6594
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6688
|
+
mi := &file_multitenant_proto_msgTypes[111]
|
|
6595
6689
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6596
6690
|
ms.StoreMessageInfo(mi)
|
|
6597
6691
|
}
|
|
@@ -6604,7 +6698,7 @@ func (x *GetSitePreviewResponse) String() string {
|
|
|
6604
6698
|
func (*GetSitePreviewResponse) ProtoMessage() {}
|
|
6605
6699
|
|
|
6606
6700
|
func (x *GetSitePreviewResponse) ProtoReflect() protoreflect.Message {
|
|
6607
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6701
|
+
mi := &file_multitenant_proto_msgTypes[111]
|
|
6608
6702
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6609
6703
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6610
6704
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6617,7 +6711,7 @@ func (x *GetSitePreviewResponse) ProtoReflect() protoreflect.Message {
|
|
|
6617
6711
|
|
|
6618
6712
|
// Deprecated: Use GetSitePreviewResponse.ProtoReflect.Descriptor instead.
|
|
6619
6713
|
func (*GetSitePreviewResponse) Descriptor() ([]byte, []int) {
|
|
6620
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6714
|
+
return file_multitenant_proto_rawDescGZIP(), []int{111}
|
|
6621
6715
|
}
|
|
6622
6716
|
|
|
6623
6717
|
func (x *GetSitePreviewResponse) GetSite() *PreviewSite {
|
|
@@ -6641,7 +6735,7 @@ type CreateOwnerPersonalAccessTokenRequest struct {
|
|
|
6641
6735
|
func (x *CreateOwnerPersonalAccessTokenRequest) Reset() {
|
|
6642
6736
|
*x = CreateOwnerPersonalAccessTokenRequest{}
|
|
6643
6737
|
if protoimpl.UnsafeEnabled {
|
|
6644
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6738
|
+
mi := &file_multitenant_proto_msgTypes[112]
|
|
6645
6739
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6646
6740
|
ms.StoreMessageInfo(mi)
|
|
6647
6741
|
}
|
|
@@ -6654,7 +6748,7 @@ func (x *CreateOwnerPersonalAccessTokenRequest) String() string {
|
|
|
6654
6748
|
func (*CreateOwnerPersonalAccessTokenRequest) ProtoMessage() {}
|
|
6655
6749
|
|
|
6656
6750
|
func (x *CreateOwnerPersonalAccessTokenRequest) ProtoReflect() protoreflect.Message {
|
|
6657
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6751
|
+
mi := &file_multitenant_proto_msgTypes[112]
|
|
6658
6752
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6659
6753
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6660
6754
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6667,7 +6761,7 @@ func (x *CreateOwnerPersonalAccessTokenRequest) ProtoReflect() protoreflect.Mess
|
|
|
6667
6761
|
|
|
6668
6762
|
// Deprecated: Use CreateOwnerPersonalAccessTokenRequest.ProtoReflect.Descriptor instead.
|
|
6669
6763
|
func (*CreateOwnerPersonalAccessTokenRequest) Descriptor() ([]byte, []int) {
|
|
6670
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6764
|
+
return file_multitenant_proto_rawDescGZIP(), []int{112}
|
|
6671
6765
|
}
|
|
6672
6766
|
|
|
6673
6767
|
func (x *CreateOwnerPersonalAccessTokenRequest) GetName() string {
|
|
@@ -6709,7 +6803,7 @@ type CreateOwnerPersonalAccessTokenResponse struct {
|
|
|
6709
6803
|
func (x *CreateOwnerPersonalAccessTokenResponse) Reset() {
|
|
6710
6804
|
*x = CreateOwnerPersonalAccessTokenResponse{}
|
|
6711
6805
|
if protoimpl.UnsafeEnabled {
|
|
6712
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6806
|
+
mi := &file_multitenant_proto_msgTypes[113]
|
|
6713
6807
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6714
6808
|
ms.StoreMessageInfo(mi)
|
|
6715
6809
|
}
|
|
@@ -6722,7 +6816,7 @@ func (x *CreateOwnerPersonalAccessTokenResponse) String() string {
|
|
|
6722
6816
|
func (*CreateOwnerPersonalAccessTokenResponse) ProtoMessage() {}
|
|
6723
6817
|
|
|
6724
6818
|
func (x *CreateOwnerPersonalAccessTokenResponse) ProtoReflect() protoreflect.Message {
|
|
6725
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6819
|
+
mi := &file_multitenant_proto_msgTypes[113]
|
|
6726
6820
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6727
6821
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6728
6822
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6735,7 +6829,7 @@ func (x *CreateOwnerPersonalAccessTokenResponse) ProtoReflect() protoreflect.Mes
|
|
|
6735
6829
|
|
|
6736
6830
|
// Deprecated: Use CreateOwnerPersonalAccessTokenResponse.ProtoReflect.Descriptor instead.
|
|
6737
6831
|
func (*CreateOwnerPersonalAccessTokenResponse) Descriptor() ([]byte, []int) {
|
|
6738
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6832
|
+
return file_multitenant_proto_rawDescGZIP(), []int{113}
|
|
6739
6833
|
}
|
|
6740
6834
|
|
|
6741
6835
|
func (x *CreateOwnerPersonalAccessTokenResponse) GetToken() string {
|
|
@@ -6757,7 +6851,7 @@ type GetInstallationSettingsRequest struct {
|
|
|
6757
6851
|
func (x *GetInstallationSettingsRequest) Reset() {
|
|
6758
6852
|
*x = GetInstallationSettingsRequest{}
|
|
6759
6853
|
if protoimpl.UnsafeEnabled {
|
|
6760
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6854
|
+
mi := &file_multitenant_proto_msgTypes[114]
|
|
6761
6855
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6762
6856
|
ms.StoreMessageInfo(mi)
|
|
6763
6857
|
}
|
|
@@ -6770,7 +6864,7 @@ func (x *GetInstallationSettingsRequest) String() string {
|
|
|
6770
6864
|
func (*GetInstallationSettingsRequest) ProtoMessage() {}
|
|
6771
6865
|
|
|
6772
6866
|
func (x *GetInstallationSettingsRequest) ProtoReflect() protoreflect.Message {
|
|
6773
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6867
|
+
mi := &file_multitenant_proto_msgTypes[114]
|
|
6774
6868
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6775
6869
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6776
6870
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6783,7 +6877,7 @@ func (x *GetInstallationSettingsRequest) ProtoReflect() protoreflect.Message {
|
|
|
6783
6877
|
|
|
6784
6878
|
// Deprecated: Use GetInstallationSettingsRequest.ProtoReflect.Descriptor instead.
|
|
6785
6879
|
func (*GetInstallationSettingsRequest) Descriptor() ([]byte, []int) {
|
|
6786
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6880
|
+
return file_multitenant_proto_rawDescGZIP(), []int{114}
|
|
6787
6881
|
}
|
|
6788
6882
|
|
|
6789
6883
|
func (x *GetInstallationSettingsRequest) GetSiteId() string {
|
|
@@ -6811,7 +6905,7 @@ type GetInstallationSettingsResponse struct {
|
|
|
6811
6905
|
func (x *GetInstallationSettingsResponse) Reset() {
|
|
6812
6906
|
*x = GetInstallationSettingsResponse{}
|
|
6813
6907
|
if protoimpl.UnsafeEnabled {
|
|
6814
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6908
|
+
mi := &file_multitenant_proto_msgTypes[115]
|
|
6815
6909
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6816
6910
|
ms.StoreMessageInfo(mi)
|
|
6817
6911
|
}
|
|
@@ -6824,7 +6918,7 @@ func (x *GetInstallationSettingsResponse) String() string {
|
|
|
6824
6918
|
func (*GetInstallationSettingsResponse) ProtoMessage() {}
|
|
6825
6919
|
|
|
6826
6920
|
func (x *GetInstallationSettingsResponse) ProtoReflect() protoreflect.Message {
|
|
6827
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6921
|
+
mi := &file_multitenant_proto_msgTypes[115]
|
|
6828
6922
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6829
6923
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6830
6924
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6837,7 +6931,7 @@ func (x *GetInstallationSettingsResponse) ProtoReflect() protoreflect.Message {
|
|
|
6837
6931
|
|
|
6838
6932
|
// Deprecated: Use GetInstallationSettingsResponse.ProtoReflect.Descriptor instead.
|
|
6839
6933
|
func (*GetInstallationSettingsResponse) Descriptor() ([]byte, []int) {
|
|
6840
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6934
|
+
return file_multitenant_proto_rawDescGZIP(), []int{115}
|
|
6841
6935
|
}
|
|
6842
6936
|
|
|
6843
6937
|
func (x *GetInstallationSettingsResponse) GetDigitalLicenseToken() string {
|
|
@@ -6859,7 +6953,7 @@ type CheckAccessToSiteByAccountIdRequest_UserInfo struct {
|
|
|
6859
6953
|
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) Reset() {
|
|
6860
6954
|
*x = CheckAccessToSiteByAccountIdRequest_UserInfo{}
|
|
6861
6955
|
if protoimpl.UnsafeEnabled {
|
|
6862
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6956
|
+
mi := &file_multitenant_proto_msgTypes[116]
|
|
6863
6957
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6864
6958
|
ms.StoreMessageInfo(mi)
|
|
6865
6959
|
}
|
|
@@ -6872,7 +6966,7 @@ func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) String() string {
|
|
|
6872
6966
|
func (*CheckAccessToSiteByAccountIdRequest_UserInfo) ProtoMessage() {}
|
|
6873
6967
|
|
|
6874
6968
|
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) ProtoReflect() protoreflect.Message {
|
|
6875
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6969
|
+
mi := &file_multitenant_proto_msgTypes[116]
|
|
6876
6970
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6877
6971
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6878
6972
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6913,7 +7007,7 @@ type Install_InstallState struct {
|
|
|
6913
7007
|
func (x *Install_InstallState) Reset() {
|
|
6914
7008
|
*x = Install_InstallState{}
|
|
6915
7009
|
if protoimpl.UnsafeEnabled {
|
|
6916
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7010
|
+
mi := &file_multitenant_proto_msgTypes[117]
|
|
6917
7011
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6918
7012
|
ms.StoreMessageInfo(mi)
|
|
6919
7013
|
}
|
|
@@ -6926,7 +7020,7 @@ func (x *Install_InstallState) String() string {
|
|
|
6926
7020
|
func (*Install_InstallState) ProtoMessage() {}
|
|
6927
7021
|
|
|
6928
7022
|
func (x *Install_InstallState) ProtoReflect() protoreflect.Message {
|
|
6929
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7023
|
+
mi := &file_multitenant_proto_msgTypes[117]
|
|
6930
7024
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6931
7025
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6932
7026
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6963,7 +7057,7 @@ type GetInstallsBySiteRequest_Filter struct {
|
|
|
6963
7057
|
func (x *GetInstallsBySiteRequest_Filter) Reset() {
|
|
6964
7058
|
*x = GetInstallsBySiteRequest_Filter{}
|
|
6965
7059
|
if protoimpl.UnsafeEnabled {
|
|
6966
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7060
|
+
mi := &file_multitenant_proto_msgTypes[118]
|
|
6967
7061
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6968
7062
|
ms.StoreMessageInfo(mi)
|
|
6969
7063
|
}
|
|
@@ -6976,7 +7070,7 @@ func (x *GetInstallsBySiteRequest_Filter) String() string {
|
|
|
6976
7070
|
func (*GetInstallsBySiteRequest_Filter) ProtoMessage() {}
|
|
6977
7071
|
|
|
6978
7072
|
func (x *GetInstallsBySiteRequest_Filter) ProtoReflect() protoreflect.Message {
|
|
6979
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7073
|
+
mi := &file_multitenant_proto_msgTypes[118]
|
|
6980
7074
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6981
7075
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6982
7076
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7028,7 +7122,7 @@ type UpdateInstallByClientIdRequest_SyncerSettings struct {
|
|
|
7028
7122
|
func (x *UpdateInstallByClientIdRequest_SyncerSettings) Reset() {
|
|
7029
7123
|
*x = UpdateInstallByClientIdRequest_SyncerSettings{}
|
|
7030
7124
|
if protoimpl.UnsafeEnabled {
|
|
7031
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7125
|
+
mi := &file_multitenant_proto_msgTypes[119]
|
|
7032
7126
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7033
7127
|
ms.StoreMessageInfo(mi)
|
|
7034
7128
|
}
|
|
@@ -7041,7 +7135,7 @@ func (x *UpdateInstallByClientIdRequest_SyncerSettings) String() string {
|
|
|
7041
7135
|
func (*UpdateInstallByClientIdRequest_SyncerSettings) ProtoMessage() {}
|
|
7042
7136
|
|
|
7043
7137
|
func (x *UpdateInstallByClientIdRequest_SyncerSettings) ProtoReflect() protoreflect.Message {
|
|
7044
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7138
|
+
mi := &file_multitenant_proto_msgTypes[119]
|
|
7045
7139
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7046
7140
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7047
7141
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7097,7 +7191,7 @@ type RemoveInstallDataBySiteIdResponse_Result struct {
|
|
|
7097
7191
|
func (x *RemoveInstallDataBySiteIdResponse_Result) Reset() {
|
|
7098
7192
|
*x = RemoveInstallDataBySiteIdResponse_Result{}
|
|
7099
7193
|
if protoimpl.UnsafeEnabled {
|
|
7100
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7194
|
+
mi := &file_multitenant_proto_msgTypes[120]
|
|
7101
7195
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7102
7196
|
ms.StoreMessageInfo(mi)
|
|
7103
7197
|
}
|
|
@@ -7110,7 +7204,7 @@ func (x *RemoveInstallDataBySiteIdResponse_Result) String() string {
|
|
|
7110
7204
|
func (*RemoveInstallDataBySiteIdResponse_Result) ProtoMessage() {}
|
|
7111
7205
|
|
|
7112
7206
|
func (x *RemoveInstallDataBySiteIdResponse_Result) ProtoReflect() protoreflect.Message {
|
|
7113
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7207
|
+
mi := &file_multitenant_proto_msgTypes[120]
|
|
7114
7208
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7115
7209
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7116
7210
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7152,7 +7246,7 @@ type GetUserPermissionsResponse_AuthorizationAction struct {
|
|
|
7152
7246
|
func (x *GetUserPermissionsResponse_AuthorizationAction) Reset() {
|
|
7153
7247
|
*x = GetUserPermissionsResponse_AuthorizationAction{}
|
|
7154
7248
|
if protoimpl.UnsafeEnabled {
|
|
7155
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7249
|
+
mi := &file_multitenant_proto_msgTypes[121]
|
|
7156
7250
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7157
7251
|
ms.StoreMessageInfo(mi)
|
|
7158
7252
|
}
|
|
@@ -7165,7 +7259,7 @@ func (x *GetUserPermissionsResponse_AuthorizationAction) String() string {
|
|
|
7165
7259
|
func (*GetUserPermissionsResponse_AuthorizationAction) ProtoMessage() {}
|
|
7166
7260
|
|
|
7167
7261
|
func (x *GetUserPermissionsResponse_AuthorizationAction) ProtoReflect() protoreflect.Message {
|
|
7168
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7262
|
+
mi := &file_multitenant_proto_msgTypes[121]
|
|
7169
7263
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7170
7264
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7171
7265
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7206,7 +7300,7 @@ type GetUserPermissionsResponse_Scope struct {
|
|
|
7206
7300
|
func (x *GetUserPermissionsResponse_Scope) Reset() {
|
|
7207
7301
|
*x = GetUserPermissionsResponse_Scope{}
|
|
7208
7302
|
if protoimpl.UnsafeEnabled {
|
|
7209
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7303
|
+
mi := &file_multitenant_proto_msgTypes[122]
|
|
7210
7304
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7211
7305
|
ms.StoreMessageInfo(mi)
|
|
7212
7306
|
}
|
|
@@ -7219,7 +7313,7 @@ func (x *GetUserPermissionsResponse_Scope) String() string {
|
|
|
7219
7313
|
func (*GetUserPermissionsResponse_Scope) ProtoMessage() {}
|
|
7220
7314
|
|
|
7221
7315
|
func (x *GetUserPermissionsResponse_Scope) ProtoReflect() protoreflect.Message {
|
|
7222
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7316
|
+
mi := &file_multitenant_proto_msgTypes[122]
|
|
7223
7317
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7224
7318
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7225
7319
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7256,7 +7350,7 @@ type GetUserPermissionsResponse_Role struct {
|
|
|
7256
7350
|
func (x *GetUserPermissionsResponse_Role) Reset() {
|
|
7257
7351
|
*x = GetUserPermissionsResponse_Role{}
|
|
7258
7352
|
if protoimpl.UnsafeEnabled {
|
|
7259
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7353
|
+
mi := &file_multitenant_proto_msgTypes[123]
|
|
7260
7354
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7261
7355
|
ms.StoreMessageInfo(mi)
|
|
7262
7356
|
}
|
|
@@ -7269,7 +7363,7 @@ func (x *GetUserPermissionsResponse_Role) String() string {
|
|
|
7269
7363
|
func (*GetUserPermissionsResponse_Role) ProtoMessage() {}
|
|
7270
7364
|
|
|
7271
7365
|
func (x *GetUserPermissionsResponse_Role) ProtoReflect() protoreflect.Message {
|
|
7272
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7366
|
+
mi := &file_multitenant_proto_msgTypes[123]
|
|
7273
7367
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7274
7368
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7275
7369
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7328,7 +7422,7 @@ type DisableWebhookEmailRequest_WebhookError struct {
|
|
|
7328
7422
|
func (x *DisableWebhookEmailRequest_WebhookError) Reset() {
|
|
7329
7423
|
*x = DisableWebhookEmailRequest_WebhookError{}
|
|
7330
7424
|
if protoimpl.UnsafeEnabled {
|
|
7331
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7425
|
+
mi := &file_multitenant_proto_msgTypes[124]
|
|
7332
7426
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7333
7427
|
ms.StoreMessageInfo(mi)
|
|
7334
7428
|
}
|
|
@@ -7341,7 +7435,7 @@ func (x *DisableWebhookEmailRequest_WebhookError) String() string {
|
|
|
7341
7435
|
func (*DisableWebhookEmailRequest_WebhookError) ProtoMessage() {}
|
|
7342
7436
|
|
|
7343
7437
|
func (x *DisableWebhookEmailRequest_WebhookError) ProtoReflect() protoreflect.Message {
|
|
7344
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7438
|
+
mi := &file_multitenant_proto_msgTypes[124]
|
|
7345
7439
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7346
7440
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7347
7441
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7398,7 +7492,7 @@ type GetMsmpOrganizationListRequest_MsmpPaginationRequest struct {
|
|
|
7398
7492
|
func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) Reset() {
|
|
7399
7493
|
*x = GetMsmpOrganizationListRequest_MsmpPaginationRequest{}
|
|
7400
7494
|
if protoimpl.UnsafeEnabled {
|
|
7401
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7495
|
+
mi := &file_multitenant_proto_msgTypes[126]
|
|
7402
7496
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7403
7497
|
ms.StoreMessageInfo(mi)
|
|
7404
7498
|
}
|
|
@@ -7411,7 +7505,7 @@ func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) String() string {
|
|
|
7411
7505
|
func (*GetMsmpOrganizationListRequest_MsmpPaginationRequest) ProtoMessage() {}
|
|
7412
7506
|
|
|
7413
7507
|
func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) ProtoReflect() protoreflect.Message {
|
|
7414
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7508
|
+
mi := &file_multitenant_proto_msgTypes[126]
|
|
7415
7509
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7416
7510
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7417
7511
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7424,7 +7518,7 @@ func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) ProtoReflect() pr
|
|
|
7424
7518
|
|
|
7425
7519
|
// Deprecated: Use GetMsmpOrganizationListRequest_MsmpPaginationRequest.ProtoReflect.Descriptor instead.
|
|
7426
7520
|
func (*GetMsmpOrganizationListRequest_MsmpPaginationRequest) Descriptor() ([]byte, []int) {
|
|
7427
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
7521
|
+
return file_multitenant_proto_rawDescGZIP(), []int{99, 0}
|
|
7428
7522
|
}
|
|
7429
7523
|
|
|
7430
7524
|
func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) GetOffset() int32 {
|
|
@@ -7453,7 +7547,7 @@ type GetMsmpOrganizationListResponse_MsmpOrganization struct {
|
|
|
7453
7547
|
func (x *GetMsmpOrganizationListResponse_MsmpOrganization) Reset() {
|
|
7454
7548
|
*x = GetMsmpOrganizationListResponse_MsmpOrganization{}
|
|
7455
7549
|
if protoimpl.UnsafeEnabled {
|
|
7456
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7550
|
+
mi := &file_multitenant_proto_msgTypes[127]
|
|
7457
7551
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7458
7552
|
ms.StoreMessageInfo(mi)
|
|
7459
7553
|
}
|
|
@@ -7466,7 +7560,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpOrganization) String() string {
|
|
|
7466
7560
|
func (*GetMsmpOrganizationListResponse_MsmpOrganization) ProtoMessage() {}
|
|
7467
7561
|
|
|
7468
7562
|
func (x *GetMsmpOrganizationListResponse_MsmpOrganization) ProtoReflect() protoreflect.Message {
|
|
7469
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7563
|
+
mi := &file_multitenant_proto_msgTypes[127]
|
|
7470
7564
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7471
7565
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7472
7566
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7479,7 +7573,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpOrganization) ProtoReflect() protor
|
|
|
7479
7573
|
|
|
7480
7574
|
// Deprecated: Use GetMsmpOrganizationListResponse_MsmpOrganization.ProtoReflect.Descriptor instead.
|
|
7481
7575
|
func (*GetMsmpOrganizationListResponse_MsmpOrganization) Descriptor() ([]byte, []int) {
|
|
7482
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
7576
|
+
return file_multitenant_proto_rawDescGZIP(), []int{100, 0}
|
|
7483
7577
|
}
|
|
7484
7578
|
|
|
7485
7579
|
func (x *GetMsmpOrganizationListResponse_MsmpOrganization) GetId() string {
|
|
@@ -7510,7 +7604,7 @@ type GetMsmpOrganizationListResponse_MsmpPageInfo struct {
|
|
|
7510
7604
|
func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) Reset() {
|
|
7511
7605
|
*x = GetMsmpOrganizationListResponse_MsmpPageInfo{}
|
|
7512
7606
|
if protoimpl.UnsafeEnabled {
|
|
7513
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7607
|
+
mi := &file_multitenant_proto_msgTypes[128]
|
|
7514
7608
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7515
7609
|
ms.StoreMessageInfo(mi)
|
|
7516
7610
|
}
|
|
@@ -7523,7 +7617,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) String() string {
|
|
|
7523
7617
|
func (*GetMsmpOrganizationListResponse_MsmpPageInfo) ProtoMessage() {}
|
|
7524
7618
|
|
|
7525
7619
|
func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) ProtoReflect() protoreflect.Message {
|
|
7526
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7620
|
+
mi := &file_multitenant_proto_msgTypes[128]
|
|
7527
7621
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7528
7622
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7529
7623
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7536,7 +7630,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) ProtoReflect() protorefle
|
|
|
7536
7630
|
|
|
7537
7631
|
// Deprecated: Use GetMsmpOrganizationListResponse_MsmpPageInfo.ProtoReflect.Descriptor instead.
|
|
7538
7632
|
func (*GetMsmpOrganizationListResponse_MsmpPageInfo) Descriptor() ([]byte, []int) {
|
|
7539
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
7633
|
+
return file_multitenant_proto_rawDescGZIP(), []int{100, 1}
|
|
7540
7634
|
}
|
|
7541
7635
|
|
|
7542
7636
|
func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) GetTotal() int32 {
|
|
@@ -8352,702 +8446,706 @@ var file_multitenant_proto_rawDesc = []byte{
|
|
|
8352
8446
|
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53,
|
|
8353
8447
|
0x69, 0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x50,
|
|
8354
8448
|
0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66,
|
|
8355
|
-
0x6f, 0x22,
|
|
8356
|
-
|
|
8357
|
-
|
|
8358
|
-
|
|
8359
|
-
|
|
8360
|
-
|
|
8361
|
-
|
|
8362
|
-
|
|
8363
|
-
|
|
8364
|
-
0x61,
|
|
8365
|
-
0x65,
|
|
8366
|
-
|
|
8449
|
+
0x6f, 0x22, 0x66, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x4f, 0x70, 0x74,
|
|
8450
|
+
0x69, 0x6f, 0x6e, 0x73, 0x12, 0x20, 0x0a, 0x09, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x5f, 0x69,
|
|
8451
|
+
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x6f, 0x66, 0x66, 0x73, 0x65,
|
|
8452
|
+
0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18,
|
|
8453
|
+
0x02, 0x20, 0x01, 0x28, 0x05, 0x48, 0x01, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x88, 0x01,
|
|
8454
|
+
0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x42,
|
|
8455
|
+
0x08, 0x0a, 0x06, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0x68, 0x0a, 0x0f, 0x47, 0x65, 0x74,
|
|
8456
|
+
0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x49, 0x0a, 0x07,
|
|
8457
|
+
0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e,
|
|
8458
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8459
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74,
|
|
8460
|
+
0x65, 0x73, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x48, 0x00, 0x52, 0x07, 0x6f, 0x70, 0x74,
|
|
8461
|
+
0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6f, 0x70, 0x74, 0x69,
|
|
8462
|
+
0x6f, 0x6e, 0x73, 0x22, 0xa8, 0x01, 0x0a, 0x10, 0x53, 0x69, 0x74, 0x65, 0x49, 0x74, 0x65, 0x6d,
|
|
8463
|
+
0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x4b, 0x0a, 0x22, 0x65, 0x6e, 0x61, 0x62,
|
|
8464
|
+
0x6c, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x66, 0x69, 0x65,
|
|
8465
|
+
0x6c, 0x64, 0x73, 0x5f, 0x66, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01,
|
|
8466
|
+
0x20, 0x01, 0x28, 0x08, 0x52, 0x1f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4d, 0x65, 0x74,
|
|
8367
8467
|
0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72,
|
|
8368
|
-
0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
8369
|
-
|
|
8370
|
-
|
|
8371
|
-
0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69,
|
|
8372
|
-
0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
8373
|
-
|
|
8374
|
-
|
|
8375
|
-
|
|
8376
|
-
|
|
8377
|
-
|
|
8378
|
-
|
|
8379
|
-
|
|
8380
|
-
|
|
8381
|
-
|
|
8382
|
-
|
|
8383
|
-
|
|
8384
|
-
|
|
8385
|
-
|
|
8386
|
-
|
|
8387
|
-
|
|
8388
|
-
0x70,
|
|
8389
|
-
|
|
8390
|
-
|
|
8391
|
-
|
|
8392
|
-
|
|
8393
|
-
|
|
8394
|
-
|
|
8395
|
-
|
|
8396
|
-
|
|
8397
|
-
|
|
8398
|
-
|
|
8399
|
-
0x6f,
|
|
8400
|
-
|
|
8401
|
-
|
|
8402
|
-
|
|
8403
|
-
|
|
8404
|
-
|
|
8405
|
-
|
|
8406
|
-
|
|
8407
|
-
|
|
8408
|
-
|
|
8409
|
-
|
|
8410
|
-
|
|
8411
|
-
|
|
8412
|
-
|
|
8413
|
-
|
|
8414
|
-
|
|
8415
|
-
|
|
8416
|
-
|
|
8417
|
-
|
|
8418
|
-
|
|
8419
|
-
0x52, 0x0e, 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
8420
|
-
0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01,
|
|
8421
|
-
0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x64, 0x1a, 0x45, 0x0a, 0x15, 0x4d,
|
|
8468
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x47, 0x0a, 0x20, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
|
|
8469
|
+
0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x5f, 0x66,
|
|
8470
|
+
0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
|
|
8471
|
+
0x1d, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69,
|
|
8472
|
+
0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x75,
|
|
8473
|
+
0x0a, 0x08, 0x53, 0x69, 0x74, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
|
|
8474
|
+
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x4c, 0x0a, 0x08, 0x6d, 0x65,
|
|
8475
|
+
0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x6c,
|
|
8476
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8477
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x49, 0x74, 0x65,
|
|
8478
|
+
0x6d, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x08, 0x6d, 0x65, 0x74,
|
|
8479
|
+
0x61, 0x64, 0x61, 0x74, 0x61, 0x88, 0x01, 0x01, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6d, 0x65, 0x74,
|
|
8480
|
+
0x61, 0x64, 0x61, 0x74, 0x61, 0x22, 0x69, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65,
|
|
8481
|
+
0x73, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1b, 0x0a, 0x09, 0x6f, 0x66, 0x66,
|
|
8482
|
+
0x73, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x66,
|
|
8483
|
+
0x66, 0x73, 0x65, 0x74, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18,
|
|
8484
|
+
0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x22, 0x0a, 0x0d,
|
|
8485
|
+
0x68, 0x61, 0x73, 0x5f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20,
|
|
8486
|
+
0x01, 0x28, 0x08, 0x52, 0x0b, 0x68, 0x61, 0x73, 0x4e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65,
|
|
8487
|
+
0x22, 0xad, 0x01, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73,
|
|
8488
|
+
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01,
|
|
8489
|
+
0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x39, 0x0a, 0x05, 0x69,
|
|
8490
|
+
0x74, 0x65, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8491
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8492
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x52,
|
|
8493
|
+
0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x48, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x69,
|
|
8494
|
+
0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8495
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8496
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x50, 0x61,
|
|
8497
|
+
0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f,
|
|
8498
|
+
0x22, 0x3e, 0x0a, 0x0e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69,
|
|
8499
|
+
0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01,
|
|
8500
|
+
0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69,
|
|
8501
|
+
0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,
|
|
8502
|
+
0x22, 0x7c, 0x0a, 0x12, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69,
|
|
8503
|
+
0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18,
|
|
8504
|
+
0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x16, 0x0a, 0x06,
|
|
8505
|
+
0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66,
|
|
8506
|
+
0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20,
|
|
8507
|
+
0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x68, 0x61,
|
|
8508
|
+
0x73, 0x5f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
|
|
8509
|
+
0x08, 0x52, 0x0b, 0x68, 0x61, 0x73, 0x4e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x22, 0x95,
|
|
8510
|
+
0x02, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
|
|
8511
|
+
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
8512
|
+
0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
|
8513
|
+
0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x78, 0x0a, 0x0f, 0x6d, 0x73,
|
|
8514
|
+
0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,
|
|
8515
|
+
0x01, 0x28, 0x0b, 0x32, 0x4f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8516
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8517
|
+
0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74,
|
|
8518
|
+
0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4d,
|
|
8422
8519
|
0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71,
|
|
8423
|
-
0x75, 0x65, 0x73, 0x74,
|
|
8424
|
-
|
|
8425
|
-
|
|
8426
|
-
|
|
8427
|
-
|
|
8428
|
-
|
|
8429
|
-
|
|
8430
|
-
|
|
8431
|
-
|
|
8432
|
-
|
|
8433
|
-
|
|
8434
|
-
|
|
8435
|
-
0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x6d, 0x0a, 0x0e, 0x6d, 0x73, 0x6d,
|
|
8436
|
-
0x70, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
8437
|
-
0x0b, 0x32, 0x47, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8520
|
+
0x75, 0x65, 0x73, 0x74, 0x52, 0x0e, 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61,
|
|
8521
|
+
0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64,
|
|
8522
|
+
0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x64, 0x1a,
|
|
8523
|
+
0x45, 0x0a, 0x15, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
|
|
8524
|
+
0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73,
|
|
8525
|
+
0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
|
|
8526
|
+
0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
|
|
8527
|
+
0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0xb3, 0x03, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4d, 0x73,
|
|
8528
|
+
0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69,
|
|
8529
|
+
0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x71, 0x0a, 0x0d, 0x6f, 0x72,
|
|
8530
|
+
0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
|
|
8531
|
+
0x0b, 0x32, 0x4b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8438
8532
|
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
|
|
8439
8533
|
0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
|
|
8440
8534
|
0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x73,
|
|
8441
|
-
0x6d, 0x70,
|
|
8442
|
-
|
|
8443
|
-
|
|
8444
|
-
|
|
8445
|
-
|
|
8446
|
-
|
|
8447
|
-
|
|
8448
|
-
|
|
8449
|
-
|
|
8450
|
-
0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c,
|
|
8451
|
-
0x69, 0x6d, 0x69, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x6e, 0x65, 0x78, 0x74,
|
|
8452
|
-
0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x68, 0x61, 0x73,
|
|
8453
|
-
0x4e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x22, 0x89, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74,
|
|
8535
|
+
0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0d,
|
|
8536
|
+
0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x6d, 0x0a,
|
|
8537
|
+
0x0e, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18,
|
|
8538
|
+
0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x47, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8539
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8540
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
|
|
8541
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
8542
|
+
0x65, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0c,
|
|
8543
|
+
0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x1a, 0x36, 0x0a, 0x10,
|
|
8454
8544
|
0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
8455
|
-
|
|
8456
|
-
|
|
8457
|
-
|
|
8458
|
-
|
|
8459
|
-
|
|
8460
|
-
|
|
8461
|
-
|
|
8462
|
-
|
|
8463
|
-
|
|
8464
|
-
|
|
8465
|
-
|
|
8466
|
-
|
|
8467
|
-
|
|
8468
|
-
0x01, 0x28,
|
|
8469
|
-
|
|
8470
|
-
|
|
8471
|
-
|
|
8472
|
-
0x08,
|
|
8473
|
-
|
|
8474
|
-
|
|
8475
|
-
|
|
8476
|
-
|
|
8477
|
-
|
|
8478
|
-
|
|
8479
|
-
|
|
8480
|
-
|
|
8481
|
-
|
|
8482
|
-
|
|
8483
|
-
|
|
8484
|
-
|
|
8485
|
-
|
|
8486
|
-
|
|
8487
|
-
|
|
8488
|
-
|
|
8489
|
-
|
|
8490
|
-
|
|
8491
|
-
|
|
8492
|
-
|
|
8493
|
-
|
|
8494
|
-
|
|
8495
|
-
|
|
8496
|
-
|
|
8497
|
-
|
|
8498
|
-
|
|
8499
|
-
|
|
8545
|
+
0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
|
|
8546
|
+
0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
|
|
8547
|
+
0x6e, 0x61, 0x6d, 0x65, 0x1a, 0x76, 0x0a, 0x0c, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x65,
|
|
8548
|
+
0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20,
|
|
8549
|
+
0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66,
|
|
8550
|
+
0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73,
|
|
8551
|
+
0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
8552
|
+
0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f,
|
|
8553
|
+
0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52,
|
|
8554
|
+
0x0b, 0x68, 0x61, 0x73, 0x4e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x22, 0x89, 0x01, 0x0a,
|
|
8555
|
+
0x21, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,
|
|
8556
|
+
0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
8557
|
+
0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
|
|
8558
|
+
0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x30, 0x0a, 0x14, 0x6d,
|
|
8559
|
+
0x73, 0x6d, 0x70, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
8560
|
+
0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x6d, 0x73, 0x6d, 0x70, 0x4f,
|
|
8561
|
+
0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x19, 0x0a,
|
|
8562
|
+
0x08, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
8563
|
+
0x07, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x64, 0x22, 0xc0, 0x01, 0x0a, 0x22, 0x47, 0x65, 0x74,
|
|
8564
|
+
0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
8565
|
+
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
|
8566
|
+
0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
|
|
8567
|
+
0x12, 0x0a, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x72,
|
|
8568
|
+
0x6f, 0x6c, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e,
|
|
8569
|
+
0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x50, 0x65, 0x6e, 0x64, 0x69,
|
|
8570
|
+
0x6e, 0x67, 0x12, 0x57, 0x0a, 0x29, 0x68, 0x61, 0x73, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73,
|
|
8571
|
+
0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x6d, 0x61,
|
|
8572
|
+
0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x61, 0x6c, 0x18,
|
|
8573
|
+
0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x24, 0x68, 0x61, 0x73, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,
|
|
8574
|
+
0x65, 0x64, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x61, 0x6e, 0x61, 0x67,
|
|
8575
|
+
0x65, 0x6d, 0x65, 0x6e, 0x74, 0x50, 0x6f, 0x72, 0x74, 0x61, 0x6c, 0x22, 0xdf, 0x01, 0x0a, 0x23,
|
|
8576
|
+
0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72,
|
|
8577
|
+
0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
8578
|
+
0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01,
|
|
8579
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x30, 0x0a, 0x14,
|
|
8580
|
+
0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
|
|
8581
|
+
0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x6d, 0x73, 0x6d, 0x70,
|
|
8582
|
+
0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x52,
|
|
8583
|
+
0x0a, 0x0f, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
|
|
8584
|
+
0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8585
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8586
|
+
0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69,
|
|
8587
|
+
0x6f, 0x6e, 0x52, 0x0e, 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69,
|
|
8588
|
+
0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04,
|
|
8589
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x64, 0x22, 0xc5, 0x01,
|
|
8590
|
+
0x0a, 0x24, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70,
|
|
8591
|
+
0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65,
|
|
8592
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x05, 0x73, 0x69, 0x74, 0x65, 0x73, 0x18,
|
|
8593
|
+
0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8594
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8595
|
+
0x31, 0x2e, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x69, 0x74, 0x65, 0x52, 0x05, 0x73,
|
|
8596
|
+
0x69, 0x74, 0x65, 0x73, 0x12, 0x5f, 0x0a, 0x14, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67,
|
|
8597
|
+
0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01,
|
|
8598
|
+
0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
8599
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4d,
|
|
8500
8600
|
0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66,
|
|
8501
|
-
0x6f,
|
|
8502
|
-
|
|
8503
|
-
|
|
8504
|
-
|
|
8505
|
-
|
|
8506
|
-
|
|
8507
|
-
|
|
8508
|
-
|
|
8509
|
-
|
|
8510
|
-
|
|
8511
|
-
|
|
8512
|
-
|
|
8513
|
-
|
|
8514
|
-
|
|
8515
|
-
|
|
8516
|
-
|
|
8601
|
+
0x6f, 0x52, 0x12, 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
|
|
8602
|
+
0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x5c, 0x0a, 0x27, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62,
|
|
8603
|
+
0x6c, 0x65, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46,
|
|
8604
|
+
0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
8605
|
+
0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
8606
|
+
0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61,
|
|
8607
|
+
0x62, 0x6c, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62,
|
|
8608
|
+
0x6c, 0x65, 0x64, 0x22, 0x41, 0x0a, 0x26, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46,
|
|
8609
|
+
0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
|
|
8610
|
+
0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a,
|
|
8611
|
+
0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
|
|
8612
|
+
0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x43, 0x0a, 0x28, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61,
|
|
8613
|
+
0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61,
|
|
8614
|
+
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
8615
|
+
0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
|
|
8616
|
+
0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x48, 0x0a, 0x27, 0x49,
|
|
8617
|
+
0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64,
|
|
8618
|
+
0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65,
|
|
8619
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x65, 0x6e, 0x61,
|
|
8620
|
+
0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x45, 0x6e,
|
|
8621
|
+
0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x4a, 0x0a, 0x29, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64,
|
|
8622
|
+
0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74,
|
|
8517
8623
|
0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
8518
8624
|
0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
|
|
8519
8625
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
8520
|
-
0x64, 0x22,
|
|
8521
|
-
0x69, 0x65,
|
|
8522
|
-
|
|
8523
|
-
|
|
8524
|
-
|
|
8525
|
-
|
|
8526
|
-
|
|
8527
|
-
|
|
8528
|
-
|
|
8529
|
-
|
|
8530
|
-
|
|
8531
|
-
0x65,
|
|
8532
|
-
|
|
8533
|
-
|
|
8534
|
-
|
|
8535
|
-
|
|
8536
|
-
|
|
8537
|
-
|
|
8538
|
-
|
|
8539
|
-
|
|
8540
|
-
|
|
8541
|
-
|
|
8542
|
-
|
|
8543
|
-
|
|
8544
|
-
|
|
8545
|
-
|
|
8546
|
-
|
|
8547
|
-
|
|
8548
|
-
|
|
8549
|
-
|
|
8550
|
-
|
|
8551
|
-
|
|
8552
|
-
|
|
8553
|
-
|
|
8554
|
-
|
|
8555
|
-
0x61, 0x6c,
|
|
8556
|
-
|
|
8557
|
-
|
|
8558
|
-
|
|
8559
|
-
|
|
8560
|
-
|
|
8561
|
-
|
|
8562
|
-
|
|
8563
|
-
|
|
8564
|
-
|
|
8565
|
-
|
|
8566
|
-
|
|
8567
|
-
|
|
8626
|
+
0x64, 0x22, 0x30, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76,
|
|
8627
|
+
0x69, 0x65, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69,
|
|
8628
|
+
0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74,
|
|
8629
|
+
0x65, 0x49, 0x64, 0x22, 0x54, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72,
|
|
8630
|
+
0x65, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3a, 0x0a,
|
|
8631
|
+
0x04, 0x73, 0x69, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x6c, 0x61,
|
|
8632
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8633
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53,
|
|
8634
|
+
0x69, 0x74, 0x65, 0x52, 0x04, 0x73, 0x69, 0x74, 0x65, 0x22, 0xc3, 0x01, 0x0a, 0x25, 0x43, 0x72,
|
|
8635
|
+
0x65, 0x61, 0x74, 0x65, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61,
|
|
8636
|
+
0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75,
|
|
8637
|
+
0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
8638
|
+
0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x34, 0x0a, 0x16, 0x70, 0x61, 0x72, 0x74, 0x6e,
|
|
8639
|
+
0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69,
|
|
8640
|
+
0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
|
|
8641
|
+
0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x19, 0x0a,
|
|
8642
|
+
0x08, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52,
|
|
8643
|
+
0x07, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x12, 0x25, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63,
|
|
8644
|
+
0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52,
|
|
8645
|
+
0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x42,
|
|
8646
|
+
0x0e, 0x0a, 0x0c, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22,
|
|
8647
|
+
0x3e, 0x0a, 0x26, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x50, 0x65,
|
|
8648
|
+
0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65,
|
|
8649
|
+
0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b,
|
|
8650
|
+
0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x22,
|
|
8651
|
+
0x58, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69,
|
|
8652
|
+
0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
8653
|
+
0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
|
8654
|
+
0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x6e,
|
|
8655
|
+
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
|
|
8656
|
+
0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x49, 0x64, 0x22, 0x53, 0x0a, 0x1f, 0x47, 0x65, 0x74,
|
|
8657
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74,
|
|
8658
|
+
0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x30, 0x0a, 0x13,
|
|
8659
|
+
0x64, 0x69, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54, 0x6f,
|
|
8660
|
+
0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x13, 0x64, 0x69, 0x67, 0x69, 0x74,
|
|
8661
|
+
0x61, 0x6c, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x2a, 0x4e,
|
|
8662
|
+
0x0a, 0x08, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x0c, 0x55, 0x4e,
|
|
8663
|
+
0x45, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x10, 0x0a, 0x0c,
|
|
8664
|
+
0x43, 0x4c, 0x4f, 0x55, 0x44, 0x5f, 0x4e, 0x41, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x08,
|
|
8665
|
+
0x0a, 0x04, 0x44, 0x45, 0x4d, 0x4f, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x48, 0x59, 0x42, 0x52,
|
|
8666
|
+
0x49, 0x44, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x55, 0x41, 0x4c, 0x10, 0x04, 0x2a, 0x77,
|
|
8667
|
+
0x0a, 0x11, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x65, 0x56, 0x61,
|
|
8668
|
+
0x6c, 0x75, 0x65, 0x12, 0x24, 0x0a, 0x20, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53,
|
|
8669
|
+
0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x45, 0x53, 0x50,
|
|
8670
|
+
0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1c, 0x0a, 0x18, 0x49, 0x4e, 0x53,
|
|
8671
|
+
0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45,
|
|
8672
|
+
0x5f, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x01, 0x12, 0x1e, 0x0a, 0x1a, 0x49, 0x4e, 0x53, 0x54, 0x41,
|
|
8673
|
+
0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55,
|
|
8674
|
+
0x4e, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x02, 0x2a, 0x4d, 0x0a, 0x0b, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
8675
|
+
0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x06, 0x0a, 0x02, 0x49, 0x54, 0x10, 0x00, 0x12, 0x06,
|
|
8676
|
+
0x0a, 0x02, 0x4f, 0x54, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x49, 0x54, 0x5f, 0x41, 0x47, 0x45,
|
|
8677
|
+
0x4e, 0x54, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x43, 0x4c, 0x4f, 0x55, 0x44, 0x10, 0x03, 0x12,
|
|
8678
|
+
0x15, 0x0a, 0x11, 0x4e, 0x45, 0x54, 0x57, 0x4f, 0x52, 0x4b, 0x5f, 0x44, 0x49, 0x53, 0x43, 0x4f,
|
|
8679
|
+
0x56, 0x45, 0x52, 0x59, 0x10, 0x04, 0x2a, 0xf3, 0x01, 0x0a, 0x10, 0x53, 0x75, 0x62, 0x73, 0x63,
|
|
8680
|
+
0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x28, 0x0a, 0x24, 0x53,
|
|
8681
|
+
0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45,
|
|
8568
8682
|
0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x45, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46,
|
|
8569
|
-
0x49, 0x45, 0x44, 0x10, 0x00, 0x12,
|
|
8570
|
-
|
|
8571
|
-
|
|
8572
|
-
|
|
8573
|
-
|
|
8574
|
-
|
|
8575
|
-
|
|
8576
|
-
|
|
8577
|
-
|
|
8578
|
-
0x10, 0x04,
|
|
8579
|
-
0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x28, 0x0a, 0x24, 0x53, 0x55, 0x42, 0x53, 0x43,
|
|
8580
|
-
0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c,
|
|
8581
|
-
0x55, 0x45, 0x5f, 0x55, 0x4e, 0x45, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
|
|
8582
|
-
0x00, 0x12, 0x21, 0x0a, 0x1d, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f,
|
|
8583
|
-
0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x54, 0x52, 0x49,
|
|
8584
|
-
0x41, 0x4c, 0x10, 0x01, 0x12, 0x24, 0x0a, 0x20, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50,
|
|
8683
|
+
0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x21, 0x0a, 0x1d, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49,
|
|
8684
|
+
0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45,
|
|
8685
|
+
0x5f, 0x54, 0x52, 0x49, 0x41, 0x4c, 0x10, 0x01, 0x12, 0x24, 0x0a, 0x20, 0x53, 0x55, 0x42, 0x53,
|
|
8686
|
+
0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41,
|
|
8687
|
+
0x4c, 0x55, 0x45, 0x5f, 0x46, 0x52, 0x45, 0x45, 0x57, 0x41, 0x52, 0x45, 0x10, 0x02, 0x12, 0x23,
|
|
8688
|
+
0x0a, 0x1f, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54,
|
|
8689
|
+
0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54, 0x45,
|
|
8690
|
+
0x52, 0x10, 0x03, 0x12, 0x1f, 0x0a, 0x1b, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54,
|
|
8691
|
+
0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x50,
|
|
8692
|
+
0x52, 0x4f, 0x10, 0x04, 0x12, 0x26, 0x0a, 0x22, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50,
|
|
8585
8693
|
0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f,
|
|
8586
|
-
|
|
8587
|
-
|
|
8588
|
-
|
|
8589
|
-
|
|
8590
|
-
|
|
8591
|
-
|
|
8592
|
-
|
|
8593
|
-
|
|
8594
|
-
|
|
8694
|
+
0x45, 0x4e, 0x54, 0x45, 0x52, 0x50, 0x52, 0x49, 0x53, 0x45, 0x10, 0x05, 0x32, 0xa6, 0x3b, 0x0a,
|
|
8695
|
+
0x0b, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0xa1, 0x01, 0x0a,
|
|
8696
|
+
0x1c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69,
|
|
8697
|
+
0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x3e, 0x2e,
|
|
8698
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8699
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41,
|
|
8700
|
+
0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63,
|
|
8701
|
+
0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e,
|
|
8702
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8703
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41,
|
|
8704
|
+
0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63,
|
|
8705
|
+
0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
8706
|
+
0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,
|
|
8707
|
+
0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
|
|
8708
|
+
0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8709
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65,
|
|
8595
8710
|
0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79,
|
|
8596
|
-
|
|
8597
|
-
|
|
8598
|
-
|
|
8599
|
-
|
|
8600
|
-
|
|
8601
|
-
|
|
8602
|
-
|
|
8603
|
-
0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
8604
|
-
0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9e, 0x01, 0x0a,
|
|
8605
|
-
0x1b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69,
|
|
8606
|
-
0x74, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x3d, 0x2e, 0x6c,
|
|
8607
|
-
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8608
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63,
|
|
8609
|
-
0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
8610
|
-
0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x6c, 0x61,
|
|
8611
|
-
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8612
|
-
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63,
|
|
8613
|
-
0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
|
|
8614
|
-
0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8c, 0x01,
|
|
8615
|
-
0x0a, 0x15, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f,
|
|
8616
|
-
0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8617
|
-
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8618
|
-
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63,
|
|
8619
|
-
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
8620
|
-
0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8621
|
-
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
8622
|
-
0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79,
|
|
8623
|
-
0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa7, 0x01, 0x0a,
|
|
8624
|
-
0x1e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63,
|
|
8625
|
-
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x12,
|
|
8626
|
-
0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8627
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72,
|
|
8628
|
-
0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
8629
|
-
0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
8630
|
-
0x74, 0x1a, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8631
|
-
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65,
|
|
8632
|
-
0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
|
8633
|
-
0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70,
|
|
8634
|
-
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa7, 0x01, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x50, 0x72,
|
|
8635
|
-
0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x41,
|
|
8636
|
-
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x12, 0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8637
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8638
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77,
|
|
8639
|
-
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
8640
|
-
0x74, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x41, 0x2e, 0x6c, 0x61,
|
|
8711
|
+
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
8712
|
+
0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8713
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63,
|
|
8714
|
+
0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x43,
|
|
8715
|
+
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
8716
|
+
0x00, 0x12, 0x8c, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77,
|
|
8717
|
+
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c, 0x61,
|
|
8641
8718
|
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8642
8719
|
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69,
|
|
8643
|
-
0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
8644
|
-
0x75,
|
|
8645
|
-
0x12, 0x92, 0x01, 0x0a, 0x17, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
|
|
8646
|
-
0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c,
|
|
8647
|
-
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8648
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f,
|
|
8649
|
-
0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
|
|
8650
|
-
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8651
|
-
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8652
|
-
0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73,
|
|
8653
|
-
0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
8654
|
-
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75,
|
|
8655
|
-
0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66,
|
|
8656
|
-
0x69, 0x6c, 0x65, 0x73, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8720
|
+
0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x71,
|
|
8721
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8657
8722
|
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8658
|
-
0x2e,
|
|
8659
|
-
|
|
8660
|
-
|
|
8661
|
-
|
|
8662
|
-
|
|
8663
|
-
|
|
8664
|
-
|
|
8665
|
-
|
|
8666
|
-
|
|
8667
|
-
0x2e, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x52, 0x65,
|
|
8668
|
-
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8723
|
+
0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
|
8724
|
+
0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
8725
|
+
0x12, 0xa7, 0x01, 0x0a, 0x1e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69,
|
|
8726
|
+
0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65,
|
|
8727
|
+
0x49, 0x64, 0x73, 0x12, 0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8728
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8729
|
+
0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63,
|
|
8730
|
+
0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x52, 0x65,
|
|
8731
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8669
8732
|
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8670
|
-
0x31, 0x2e,
|
|
8671
|
-
|
|
8672
|
-
|
|
8673
|
-
|
|
8674
|
-
|
|
8675
|
-
|
|
8733
|
+
0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41,
|
|
8734
|
+
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73,
|
|
8735
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa7, 0x01, 0x0a, 0x1e, 0x47,
|
|
8736
|
+
0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
8737
|
+
0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x12, 0x40, 0x2e,
|
|
8738
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8739
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65,
|
|
8740
|
+
0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x41, 0x63,
|
|
8741
|
+
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
8742
|
+
0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8743
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50,
|
|
8744
|
+
0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79,
|
|
8745
|
+
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
8746
|
+
0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f,
|
|
8747
|
+
0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
|
|
8748
|
+
0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8749
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73,
|
|
8750
|
+
0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
|
8751
|
+
0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61,
|
|
8676
8752
|
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8677
|
-
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8678
|
-
|
|
8679
|
-
|
|
8680
|
-
|
|
8753
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x66,
|
|
8754
|
+
0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52,
|
|
8755
|
+
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x4c, 0x69,
|
|
8756
|
+
0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b,
|
|
8757
|
+
0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8681
8758
|
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8682
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8683
|
-
|
|
8684
|
-
|
|
8685
|
-
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65,
|
|
8686
|
-
0x61, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
8687
|
-
0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x11,
|
|
8688
|
-
0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74,
|
|
8689
|
-
0x65, 0x12, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8690
|
-
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
|
|
8691
|
-
0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52,
|
|
8692
|
-
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8759
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69,
|
|
8760
|
+
0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x52,
|
|
8761
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8693
8762
|
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8694
|
-
0x76, 0x31, 0x2e,
|
|
8695
|
-
|
|
8696
|
-
|
|
8697
|
-
|
|
8763
|
+
0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65,
|
|
8764
|
+
0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73,
|
|
8765
|
+
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x50, 0x61, 0x74, 0x63, 0x68,
|
|
8766
|
+
0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8767
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8768
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f,
|
|
8769
|
+
0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8770
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8771
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d,
|
|
8772
|
+
0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a,
|
|
8773
|
+
0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x2f,
|
|
8698
8774
|
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8699
|
-
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8700
|
-
0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
8701
|
-
|
|
8702
|
-
|
|
8703
|
-
0x74, 0x65,
|
|
8704
|
-
|
|
8705
|
-
|
|
8706
|
-
|
|
8707
|
-
|
|
8708
|
-
|
|
8709
|
-
|
|
8710
|
-
|
|
8775
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
|
|
8776
|
+
0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
8777
|
+
0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8778
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61,
|
|
8779
|
+
0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
8780
|
+
0x65, 0x22, 0x00, 0x12, 0x89, 0x01, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6e,
|
|
8781
|
+
0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x36, 0x2e, 0x6c,
|
|
8782
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8783
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41,
|
|
8784
|
+
0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71,
|
|
8785
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8786
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8787
|
+
0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e,
|
|
8788
|
+
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
8789
|
+
0x80, 0x01, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42,
|
|
8790
|
+
0x79, 0x53, 0x69, 0x74, 0x65, 0x12, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8711
8791
|
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8712
|
-
0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79,
|
|
8713
|
-
|
|
8714
|
-
|
|
8715
|
-
|
|
8792
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53,
|
|
8793
|
+
0x69, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8794
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8795
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
8796
|
+
0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
8797
|
+
0x22, 0x00, 0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
8798
|
+
0x6c, 0x73, 0x66, 0x6f, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74,
|
|
8799
|
+
0x65, 0x73, 0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
8800
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47,
|
|
8801
|
+
0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46, 0x6f, 0x72, 0x4d, 0x75, 0x6c,
|
|
8802
|
+
0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
8803
|
+
0x74, 0x1a, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8804
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
|
|
8805
|
+
0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46, 0x6f, 0x72, 0x4d, 0x75, 0x6c, 0x74,
|
|
8806
|
+
0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
8807
|
+
0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
8808
|
+
0x6c, 0x73, 0x42, 0x79, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8716
8809
|
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8717
|
-
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73,
|
|
8718
|
-
|
|
8719
|
-
|
|
8720
|
-
|
|
8721
|
-
|
|
8722
|
-
|
|
8723
|
-
|
|
8724
|
-
0x12, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8725
|
-
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
8726
|
-
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
|
|
8727
|
-
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8728
|
-
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8729
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62,
|
|
8730
|
-
0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
8731
|
-
0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e,
|
|
8732
|
-
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12,
|
|
8733
|
-
0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8734
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61,
|
|
8735
|
-
0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
|
|
8736
|
-
0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8810
|
+
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79,
|
|
8811
|
+
0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8812
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8813
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
8814
|
+
0x73, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
8815
|
+
0x89, 0x01, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43,
|
|
8816
|
+
0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8737
8817
|
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8738
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8739
|
-
|
|
8740
|
-
|
|
8741
|
-
0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
8742
|
-
0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8818
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
8819
|
+
0x6c, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x71,
|
|
8820
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8743
8821
|
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8744
|
-
0x2e,
|
|
8745
|
-
|
|
8746
|
-
|
|
8747
|
-
|
|
8748
|
-
|
|
8749
|
-
|
|
8750
|
-
|
|
8751
|
-
0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x3c, 0x2e, 0x6c,
|
|
8822
|
+
0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43, 0x6f, 0x75, 0x6e,
|
|
8823
|
+
0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x89, 0x01, 0x0a, 0x14,
|
|
8824
|
+
0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
8825
|
+
0x6e, 0x74, 0x49, 0x64, 0x12, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8826
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8827
|
+
0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69,
|
|
8828
|
+
0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x6c,
|
|
8752
8829
|
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8753
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8754
|
-
0x61, 0x6c,
|
|
8755
|
-
|
|
8756
|
-
|
|
8757
|
-
|
|
8758
|
-
|
|
8759
|
-
|
|
8760
|
-
|
|
8761
|
-
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8762
|
-
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8763
|
-
0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
8764
|
-
0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
8765
|
-
0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
8766
|
-
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55,
|
|
8767
|
-
0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c,
|
|
8768
|
-
0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
8769
|
-
0x12, 0x98, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
8770
|
-
0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x3b,
|
|
8830
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74,
|
|
8831
|
+
0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73,
|
|
8832
|
+
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61,
|
|
8833
|
+
0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
|
|
8834
|
+
0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8835
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8836
|
+
0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43,
|
|
8837
|
+
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a,
|
|
8771
8838
|
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8772
|
-
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8773
|
-
0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
8774
|
-
|
|
8839
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74,
|
|
8840
|
+
0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
|
|
8841
|
+
0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a,
|
|
8842
|
+
0x17, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79,
|
|
8843
|
+
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8844
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8845
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
8846
|
+
0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
8847
|
+
0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8848
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8849
|
+
0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43,
|
|
8850
|
+
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
8851
|
+
0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x49,
|
|
8852
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
|
|
8853
|
+
0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8854
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x6e,
|
|
8855
|
+
0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43,
|
|
8856
|
+
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d,
|
|
8857
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8858
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x54,
|
|
8859
|
+
0x72, 0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69,
|
|
8860
|
+
0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
8861
|
+
0x92, 0x01, 0x0a, 0x17, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
8862
|
+
0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61,
|
|
8775
8863
|
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8776
|
-
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8777
|
-
0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
8778
|
-
|
|
8864
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e,
|
|
8865
|
+
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52,
|
|
8866
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8867
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8868
|
+
0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
8869
|
+
0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
8870
|
+
0x73, 0x65, 0x22, 0x00, 0x12, 0x98, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49,
|
|
8871
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65,
|
|
8872
|
+
0x49, 0x64, 0x12, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
8873
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52,
|
|
8874
|
+
0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61,
|
|
8875
|
+
0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
8876
|
+
0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8877
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f,
|
|
8878
|
+
0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53,
|
|
8879
|
+
0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
8880
|
+
0xaa, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65,
|
|
8881
|
+
0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61,
|
|
8882
|
+
0x6c, 0x49, 0x64, 0x12, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8883
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8779
8884
|
0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73,
|
|
8780
|
-
0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64,
|
|
8781
|
-
|
|
8782
|
-
|
|
8783
|
-
|
|
8784
|
-
|
|
8785
|
-
|
|
8786
|
-
|
|
8787
|
-
|
|
8788
|
-
0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x52, 0x65,
|
|
8789
|
-
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x83, 0x01, 0x0a, 0x12, 0x47, 0x65, 0x74,
|
|
8790
|
-
0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12,
|
|
8791
|
-
0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8792
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55,
|
|
8793
|
-
0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65,
|
|
8794
|
-
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8795
|
-
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8796
|
-
0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73,
|
|
8797
|
-
0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xbf,
|
|
8798
|
-
0x01, 0x0a, 0x26, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69,
|
|
8799
|
-
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63,
|
|
8800
|
-
0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x48, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8801
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8802
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70,
|
|
8803
|
-
0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61,
|
|
8804
|
-
0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75,
|
|
8805
|
-
0x65, 0x73, 0x74, 0x1a, 0x49, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8885
|
+
0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x52,
|
|
8886
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8887
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8888
|
+
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64,
|
|
8889
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c,
|
|
8890
|
+
0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x83, 0x01, 0x0a,
|
|
8891
|
+
0x12, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69,
|
|
8892
|
+
0x6f, 0x6e, 0x73, 0x12, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8806
8893
|
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8807
|
-
|
|
8808
|
-
|
|
8809
|
-
|
|
8810
|
-
|
|
8811
|
-
|
|
8894
|
+
0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f,
|
|
8895
|
+
0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8896
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8897
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72,
|
|
8898
|
+
0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
8899
|
+
0x22, 0x00, 0x12, 0xbf, 0x01, 0x0a, 0x26, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41,
|
|
8900
|
+
0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
|
|
8901
|
+
0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x48, 0x2e,
|
|
8812
8902
|
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8813
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8814
|
-
|
|
8815
|
-
|
|
8816
|
-
|
|
8817
|
-
0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45,
|
|
8818
|
-
0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8c,
|
|
8819
|
-
0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64,
|
|
8820
|
-
0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
|
|
8821
|
-
0x6f, 0x6e, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8822
|
-
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8823
|
-
0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73,
|
|
8824
|
-
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8825
|
-
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8826
|
-
0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69,
|
|
8827
|
-
0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8c, 0x01,
|
|
8828
|
-
0x0a, 0x15, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42,
|
|
8829
|
-
0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8830
|
-
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8831
|
-
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
|
|
8832
|
-
0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
8833
|
-
0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8834
|
-
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
8835
|
-
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65,
|
|
8836
|
-
0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x98, 0x01, 0x0a,
|
|
8837
|
-
0x19, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41,
|
|
8838
|
-
0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8839
|
-
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8840
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61,
|
|
8841
|
-
0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
8842
|
-
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8903
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61,
|
|
8904
|
+
0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72,
|
|
8905
|
+
0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e,
|
|
8906
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x49, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8843
8907
|
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8844
|
-
0x2e, 0x76, 0x31, 0x2e,
|
|
8845
|
-
|
|
8846
|
-
|
|
8847
|
-
|
|
8848
|
-
|
|
8849
|
-
|
|
8850
|
-
|
|
8851
|
-
|
|
8852
|
-
|
|
8853
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
|
|
8854
|
-
0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52,
|
|
8855
|
-
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x43, 0x72,
|
|
8856
|
-
0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64,
|
|
8857
|
-
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8858
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8859
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61,
|
|
8860
|
-
0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65,
|
|
8861
|
-
0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8908
|
+
0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c,
|
|
8909
|
+
0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41,
|
|
8910
|
+
0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
8911
|
+
0x73, 0x65, 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64, 0x44, 0x69, 0x73,
|
|
8912
|
+
0x61, 0x62, 0x6c, 0x65, 0x64, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69,
|
|
8913
|
+
0x6c, 0x12, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8914
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x69,
|
|
8915
|
+
0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69,
|
|
8916
|
+
0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8862
8917
|
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8863
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8864
|
-
|
|
8865
|
-
|
|
8866
|
-
|
|
8867
|
-
0x63,
|
|
8868
|
-
|
|
8869
|
-
0x74,
|
|
8870
|
-
|
|
8871
|
-
|
|
8872
|
-
|
|
8918
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68,
|
|
8919
|
+
0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
8920
|
+
0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72,
|
|
8921
|
+
0x69, 0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x69,
|
|
8922
|
+
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8923
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8924
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x53,
|
|
8925
|
+
0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x6c, 0x61,
|
|
8926
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8927
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a,
|
|
8928
|
+
0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
8929
|
+
0x00, 0x12, 0x8c, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
8930
|
+
0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c, 0x61,
|
|
8931
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8932
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
|
8933
|
+
0x6e, 0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71,
|
|
8934
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8935
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8936
|
+
0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42, 0x79,
|
|
8937
|
+
0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
8938
|
+
0x12, 0x98, 0x01, 0x0a, 0x19, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
|
|
8939
|
+
0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b,
|
|
8940
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8941
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
|
|
8942
|
+
0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
|
|
8943
|
+
0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e, 0x6c, 0x61,
|
|
8944
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8945
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e,
|
|
8946
|
+
0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
|
|
8947
|
+
0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8f, 0x01, 0x0a, 0x16,
|
|
8948
|
+
0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
|
|
8949
|
+
0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8950
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8951
|
+
0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62,
|
|
8952
|
+
0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
8953
|
+
0x1a, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8954
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64,
|
|
8955
|
+
0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
|
|
8956
|
+
0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9e, 0x01,
|
|
8957
|
+
0x0a, 0x1b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74,
|
|
8958
|
+
0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x12, 0x3d, 0x2e,
|
|
8959
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8960
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
|
|
8961
|
+
0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74,
|
|
8962
|
+
0x61, 0x6c, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x6c,
|
|
8963
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8964
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54,
|
|
8965
|
+
0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
8966
|
+
0x6c, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xad,
|
|
8967
|
+
0x01, 0x0a, 0x20, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69,
|
|
8968
|
+
0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
|
|
8969
|
+
0x74, 0x49, 0x64, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8873
8970
|
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8874
8971
|
0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c,
|
|
8875
8972
|
0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
|
|
8876
|
-
0x52, 0x65,
|
|
8877
|
-
|
|
8878
|
-
0x2e,
|
|
8879
|
-
0x69,
|
|
8880
|
-
|
|
8881
|
-
|
|
8973
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8974
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8975
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74,
|
|
8976
|
+
0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
8977
|
+
0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d,
|
|
8978
|
+
0x0a, 0x10, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78, 0x69,
|
|
8979
|
+
0x73, 0x74, 0x12, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
8882
8980
|
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41,
|
|
8883
8981
|
0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78, 0x69, 0x73, 0x74, 0x52,
|
|
8884
|
-
0x65,
|
|
8885
|
-
0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73, 0x65,
|
|
8886
|
-
0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8982
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8887
8983
|
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8888
|
-
0x76, 0x31, 0x2e,
|
|
8889
|
-
|
|
8890
|
-
|
|
8891
|
-
|
|
8892
|
-
|
|
8893
|
-
|
|
8894
|
-
|
|
8895
|
-
|
|
8984
|
+
0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78,
|
|
8985
|
+
0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95, 0x01,
|
|
8986
|
+
0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61,
|
|
8987
|
+
0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8988
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8989
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74,
|
|
8990
|
+
0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x52,
|
|
8991
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8896
8992
|
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8897
|
-
0x76, 0x31, 0x2e,
|
|
8898
|
-
|
|
8993
|
+
0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63,
|
|
8994
|
+
0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
8995
|
+
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x10, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f,
|
|
8996
|
+
0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x12, 0x32, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8899
8997
|
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8900
8998
|
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c,
|
|
8901
|
-
0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65,
|
|
8902
|
-
|
|
8903
|
-
0x69,
|
|
8904
|
-
|
|
8905
|
-
|
|
8906
|
-
|
|
8907
|
-
|
|
8908
|
-
|
|
8909
|
-
|
|
8910
|
-
|
|
8911
|
-
|
|
8912
|
-
|
|
8913
|
-
|
|
8914
|
-
|
|
8915
|
-
0x65,
|
|
8916
|
-
|
|
8917
|
-
|
|
8918
|
-
|
|
8919
|
-
|
|
8920
|
-
|
|
8921
|
-
0x6e,
|
|
8922
|
-
|
|
8923
|
-
|
|
8924
|
-
|
|
8925
|
-
|
|
8926
|
-
0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x43, 0x2e, 0x6c,
|
|
8999
|
+
0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33,
|
|
9000
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
9001
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72,
|
|
9002
|
+
0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
9003
|
+
0x6e, 0x73, 0x65, 0x22, 0x03, 0x88, 0x02, 0x01, 0x12, 0x80, 0x01, 0x0a, 0x11, 0x43, 0x72, 0x65,
|
|
9004
|
+
0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x33,
|
|
9005
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
9006
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
|
|
9007
|
+
0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75,
|
|
9008
|
+
0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
9009
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
9010
|
+
0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64,
|
|
9011
|
+
0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x99, 0x01, 0x0a, 0x21,
|
|
9012
|
+
0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e,
|
|
9013
|
+
0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49,
|
|
9014
|
+
0x64, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
9015
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
|
|
9016
|
+
0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65,
|
|
9017
|
+
0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x38, 0x2e, 0x6c, 0x61,
|
|
9018
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
9019
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x49,
|
|
9020
|
+
0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f,
|
|
9021
|
+
0x6e, 0x44, 0x61, 0x74, 0x61, 0x22, 0x00, 0x12, 0xad, 0x01, 0x0a, 0x20, 0x43, 0x68, 0x65, 0x63,
|
|
9022
|
+
0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66,
|
|
9023
|
+
0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x42, 0x2e, 0x6c,
|
|
8927
9024
|
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8928
9025
|
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74,
|
|
8929
9026
|
0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61,
|
|
8930
|
-
0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65,
|
|
8931
|
-
|
|
8932
|
-
0x74,
|
|
8933
|
-
|
|
8934
|
-
|
|
8935
|
-
|
|
8936
|
-
|
|
8937
|
-
|
|
8938
|
-
|
|
8939
|
-
0x65,
|
|
8940
|
-
|
|
9027
|
+
0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
9028
|
+
0x1a, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
9029
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65,
|
|
9030
|
+
0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f,
|
|
9031
|
+
0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73,
|
|
9032
|
+
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x83, 0x01, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61,
|
|
9033
|
+
0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x34,
|
|
9034
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
9035
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74,
|
|
9036
|
+
0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71,
|
|
9037
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
9038
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
9039
|
+
0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64,
|
|
9040
|
+
0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a,
|
|
9041
|
+
0x0d, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x12, 0x2f,
|
|
9042
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
9043
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69,
|
|
9044
|
+
0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
9045
|
+
0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
9046
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53,
|
|
9047
|
+
0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
9048
|
+
0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f,
|
|
9049
|
+
0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12,
|
|
9050
|
+
0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
9051
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d,
|
|
9052
|
+
0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c,
|
|
9053
|
+
0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8941
9054
|
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8942
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
8943
|
-
|
|
8944
|
-
|
|
8945
|
-
|
|
8946
|
-
|
|
8947
|
-
|
|
8948
|
-
|
|
8949
|
-
|
|
8950
|
-
|
|
8951
|
-
|
|
8952
|
-
|
|
8953
|
-
|
|
8954
|
-
|
|
8955
|
-
|
|
8956
|
-
|
|
8957
|
-
|
|
8958
|
-
|
|
8959
|
-
|
|
8960
|
-
|
|
8961
|
-
|
|
8962
|
-
|
|
8963
|
-
|
|
8964
|
-
|
|
8965
|
-
|
|
8966
|
-
|
|
8967
|
-
|
|
8968
|
-
|
|
8969
|
-
|
|
8970
|
-
|
|
8971
|
-
0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
8972
|
-
0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8973
|
-
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8974
|
-
0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72,
|
|
8975
|
-
0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70,
|
|
8976
|
-
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95, 0x01, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x49, 0x6e,
|
|
8977
|
-
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
|
|
8978
|
-
0x49, 0x64, 0x73, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
9055
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72,
|
|
9056
|
+
0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
|
|
9057
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x47, 0x65, 0x74,
|
|
9058
|
+
0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
9059
|
+
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
9060
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
9061
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e,
|
|
9062
|
+
0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
|
|
9063
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
9064
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
9065
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
|
|
9066
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70,
|
|
9067
|
+
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa1, 0x01, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x53, 0x69,
|
|
9068
|
+
0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
|
|
9069
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
9070
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
9071
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73,
|
|
9072
|
+
0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64,
|
|
9073
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
9074
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
9075
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73,
|
|
9076
|
+
0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64,
|
|
9077
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95, 0x01, 0x0a, 0x18, 0x47,
|
|
9078
|
+
0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45, 0x78, 0x74, 0x65,
|
|
9079
|
+
0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
9080
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
9081
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42,
|
|
9082
|
+
0x79, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75,
|
|
9083
|
+
0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8979
9084
|
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8980
9085
|
0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45, 0x78, 0x74,
|
|
8981
|
-
0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65,
|
|
8982
|
-
|
|
8983
|
-
|
|
8984
|
-
|
|
8985
|
-
|
|
8986
|
-
|
|
8987
|
-
0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61,
|
|
8988
|
-
0x69, 0x6f, 0x6e,
|
|
8989
|
-
|
|
8990
|
-
|
|
8991
|
-
0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69,
|
|
8992
|
-
|
|
8993
|
-
|
|
8994
|
-
|
|
9086
|
+
0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
9087
|
+
0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x20, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
9088
|
+
0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64,
|
|
9089
|
+
0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
9090
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
9091
|
+
0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43, 0x75,
|
|
9092
|
+
0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61,
|
|
9093
|
+
0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
|
|
9094
|
+
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
|
|
9095
|
+
0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0xaa, 0x01, 0x0a, 0x1f, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74,
|
|
9096
|
+
0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69,
|
|
9097
|
+
0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
9098
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
9099
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69,
|
|
8995
9100
|
0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e,
|
|
8996
|
-
0x61, 0x62, 0x6c, 0x65, 0x64,
|
|
8997
|
-
|
|
8998
|
-
|
|
8999
|
-
|
|
9000
|
-
|
|
9101
|
+
0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x6c,
|
|
9102
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
9103
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f,
|
|
9104
|
+
0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
|
|
9105
|
+
0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
9106
|
+
0x22, 0x00, 0x12, 0xb0, 0x01, 0x0a, 0x21, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74,
|
|
9107
|
+
0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
|
|
9108
|
+
0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
9001
9109
|
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
9002
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73,
|
|
9003
|
-
0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
|
|
9004
|
-
0x62, 0x6c, 0x65, 0x64, 0x52, 0x65,
|
|
9005
|
-
|
|
9006
|
-
|
|
9007
|
-
|
|
9008
|
-
|
|
9009
|
-
|
|
9010
|
-
|
|
9011
|
-
0x65,
|
|
9110
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46,
|
|
9111
|
+
0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
|
|
9112
|
+
0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x44, 0x2e,
|
|
9113
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
9114
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61,
|
|
9115
|
+
0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61,
|
|
9116
|
+
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
9117
|
+
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65,
|
|
9118
|
+
0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x12, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
9119
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
9120
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69,
|
|
9121
|
+
0x65, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
9012
9122
|
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
9013
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
9014
|
-
|
|
9015
|
-
|
|
9016
|
-
|
|
9017
|
-
|
|
9018
|
-
|
|
9019
|
-
|
|
9020
|
-
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
9021
|
-
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
9022
|
-
0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77,
|
|
9023
|
-
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95, 0x01, 0x0a, 0x18, 0x55,
|
|
9024
|
-
0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x6b, 0x69, 0x70, 0x44, 0x61, 0x74,
|
|
9025
|
-
0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
9123
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65,
|
|
9124
|
+
0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95,
|
|
9125
|
+
0x01, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x6b, 0x69,
|
|
9126
|
+
0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x3a, 0x2e, 0x6c, 0x61,
|
|
9127
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
9128
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69,
|
|
9129
|
+
0x74, 0x65, 0x53, 0x6b, 0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74,
|
|
9130
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
9026
9131
|
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
9027
9132
|
0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x6b,
|
|
9028
|
-
0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65,
|
|
9029
|
-
|
|
9030
|
-
|
|
9031
|
-
|
|
9032
|
-
|
|
9033
|
-
|
|
9034
|
-
|
|
9035
|
-
|
|
9036
|
-
|
|
9037
|
-
|
|
9038
|
-
|
|
9039
|
-
|
|
9040
|
-
|
|
9041
|
-
|
|
9042
|
-
|
|
9043
|
-
|
|
9044
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
9045
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x49, 0x64,
|
|
9046
|
-
0x73, 0x57, 0x69, 0x74, 0x68, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
|
|
9047
|
-
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
9048
|
-
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
9049
|
-
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x49, 0x64, 0x73, 0x57, 0x69,
|
|
9050
|
-
0x74, 0x68, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70,
|
|
9133
|
+
0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70,
|
|
9134
|
+
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x86, 0x01, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x69,
|
|
9135
|
+
0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x12, 0x35,
|
|
9136
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
9137
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69,
|
|
9138
|
+
0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x52, 0x65,
|
|
9139
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
9140
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
9141
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63,
|
|
9142
|
+
0x68, 0x79, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
9143
|
+
0x65, 0x0a, 0x08, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x12, 0x2a, 0x2e, 0x6c, 0x61,
|
|
9144
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
9145
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73,
|
|
9146
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
9147
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
9148
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70,
|
|
9051
9149
|
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa7, 0x01, 0x0a, 0x1e, 0x43, 0x72, 0x65, 0x61, 0x74,
|
|
9052
9150
|
0x65, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63,
|
|
9053
9151
|
0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
@@ -9085,7 +9183,7 @@ func file_multitenant_proto_rawDescGZIP() []byte {
|
|
|
9085
9183
|
}
|
|
9086
9184
|
|
|
9087
9185
|
var file_multitenant_proto_enumTypes = make([]protoimpl.EnumInfo, 5)
|
|
9088
|
-
var file_multitenant_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
9186
|
+
var file_multitenant_proto_msgTypes = make([]protoimpl.MessageInfo, 129)
|
|
9089
9187
|
var file_multitenant_proto_goTypes = []any{
|
|
9090
9188
|
(SiteMode)(0), // 0: lansweeper.multitenant.v1.SiteMode
|
|
9091
9189
|
(InstallStateValue)(0), // 1: lansweeper.multitenant.v1.InstallStateValue
|
|
@@ -9183,44 +9281,46 @@ var file_multitenant_proto_goTypes = []any{
|
|
|
9183
9281
|
(*SiteHierarchyIdsItem)(nil), // 93: lansweeper.multitenant.v1.SiteHierarchyIdsItem
|
|
9184
9282
|
(*SiteHierarchyIdsPageInfo)(nil), // 94: lansweeper.multitenant.v1.SiteHierarchyIdsPageInfo
|
|
9185
9283
|
(*GetSiteHierarchyIdsResponse)(nil), // 95: lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse
|
|
9186
|
-
(*
|
|
9187
|
-
(*
|
|
9188
|
-
(*
|
|
9189
|
-
(*
|
|
9190
|
-
(*
|
|
9191
|
-
(*
|
|
9192
|
-
(*
|
|
9193
|
-
(*
|
|
9194
|
-
(*
|
|
9195
|
-
(*
|
|
9196
|
-
(*
|
|
9197
|
-
(*
|
|
9198
|
-
(*
|
|
9199
|
-
(*
|
|
9200
|
-
(*
|
|
9201
|
-
(*
|
|
9202
|
-
(*
|
|
9203
|
-
(*
|
|
9204
|
-
(*
|
|
9205
|
-
(*
|
|
9206
|
-
(*
|
|
9207
|
-
(*
|
|
9208
|
-
(*
|
|
9209
|
-
(*
|
|
9210
|
-
(*
|
|
9211
|
-
(*
|
|
9212
|
-
(*
|
|
9213
|
-
(*
|
|
9214
|
-
(*
|
|
9215
|
-
(*
|
|
9216
|
-
(*
|
|
9217
|
-
(*
|
|
9218
|
-
nil,
|
|
9219
|
-
(*
|
|
9220
|
-
|
|
9221
|
-
(*
|
|
9222
|
-
(*
|
|
9223
|
-
(*
|
|
9284
|
+
(*GetSitesOptions)(nil), // 96: lansweeper.multitenant.v1.GetSitesOptions
|
|
9285
|
+
(*GetSitesRequest)(nil), // 97: lansweeper.multitenant.v1.GetSitesRequest
|
|
9286
|
+
(*SiteItemMetadata)(nil), // 98: lansweeper.multitenant.v1.SiteItemMetadata
|
|
9287
|
+
(*SiteItem)(nil), // 99: lansweeper.multitenant.v1.SiteItem
|
|
9288
|
+
(*GetSitesPageInfo)(nil), // 100: lansweeper.multitenant.v1.GetSitesPageInfo
|
|
9289
|
+
(*GetSitesResponse)(nil), // 101: lansweeper.multitenant.v1.GetSitesResponse
|
|
9290
|
+
(*MsmpPagination)(nil), // 102: lansweeper.multitenant.v1.MsmpPagination
|
|
9291
|
+
(*MsmpPaginationInfo)(nil), // 103: lansweeper.multitenant.v1.MsmpPaginationInfo
|
|
9292
|
+
(*GetMsmpOrganizationListRequest)(nil), // 104: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest
|
|
9293
|
+
(*GetMsmpOrganizationListResponse)(nil), // 105: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse
|
|
9294
|
+
(*GetMsmpOrganizationAccountRequest)(nil), // 106: lansweeper.multitenant.v1.GetMsmpOrganizationAccountRequest
|
|
9295
|
+
(*GetMsmpOrganizationAccountResponse)(nil), // 107: lansweeper.multitenant.v1.GetMsmpOrganizationAccountResponse
|
|
9296
|
+
(*GetSitesByMsmpOrganizationIdRequest)(nil), // 108: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest
|
|
9297
|
+
(*GetSitesByMsmpOrganizationIdResponse)(nil), // 109: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse
|
|
9298
|
+
(*SetEnabledCustomFieldsFederationRequest)(nil), // 110: lansweeper.multitenant.v1.SetEnabledCustomFieldsFederationRequest
|
|
9299
|
+
(*IsCustomFieldsFederationEnabledRequest)(nil), // 111: lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledRequest
|
|
9300
|
+
(*IsMetadataFieldsFederationEnabledRequest)(nil), // 112: lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledRequest
|
|
9301
|
+
(*IsCustomFieldsFederationEnabledResponse)(nil), // 113: lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledResponse
|
|
9302
|
+
(*IsMetadataFieldsFederationEnabledResponse)(nil), // 114: lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledResponse
|
|
9303
|
+
(*GetSitePreviewRequest)(nil), // 115: lansweeper.multitenant.v1.GetSitePreviewRequest
|
|
9304
|
+
(*GetSitePreviewResponse)(nil), // 116: lansweeper.multitenant.v1.GetSitePreviewResponse
|
|
9305
|
+
(*CreateOwnerPersonalAccessTokenRequest)(nil), // 117: lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenRequest
|
|
9306
|
+
(*CreateOwnerPersonalAccessTokenResponse)(nil), // 118: lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenResponse
|
|
9307
|
+
(*GetInstallationSettingsRequest)(nil), // 119: lansweeper.multitenant.v1.GetInstallationSettingsRequest
|
|
9308
|
+
(*GetInstallationSettingsResponse)(nil), // 120: lansweeper.multitenant.v1.GetInstallationSettingsResponse
|
|
9309
|
+
(*CheckAccessToSiteByAccountIdRequest_UserInfo)(nil), // 121: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
|
|
9310
|
+
(*Install_InstallState)(nil), // 122: lansweeper.multitenant.v1.Install.InstallState
|
|
9311
|
+
(*GetInstallsBySiteRequest_Filter)(nil), // 123: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
|
|
9312
|
+
(*UpdateInstallByClientIdRequest_SyncerSettings)(nil), // 124: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
|
|
9313
|
+
(*RemoveInstallDataBySiteIdResponse_Result)(nil), // 125: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
|
|
9314
|
+
(*GetUserPermissionsResponse_AuthorizationAction)(nil), // 126: lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
|
|
9315
|
+
(*GetUserPermissionsResponse_Scope)(nil), // 127: lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
|
|
9316
|
+
(*GetUserPermissionsResponse_Role)(nil), // 128: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
|
|
9317
|
+
(*DisableWebhookEmailRequest_WebhookError)(nil), // 129: lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
|
|
9318
|
+
nil, // 130: lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry
|
|
9319
|
+
(*GetMsmpOrganizationListRequest_MsmpPaginationRequest)(nil), // 131: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest
|
|
9320
|
+
(*GetMsmpOrganizationListResponse_MsmpOrganization)(nil), // 132: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization
|
|
9321
|
+
(*GetMsmpOrganizationListResponse_MsmpPageInfo)(nil), // 133: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo
|
|
9322
|
+
(*generated_go.SiteLimits)(nil), // 134: lansweeper.shared.limits.v1.SiteLimits
|
|
9323
|
+
(*emptypb.Empty)(nil), // 135: google.protobuf.Empty
|
|
9224
9324
|
}
|
|
9225
9325
|
var file_multitenant_proto_depIdxs = []int32{
|
|
9226
9326
|
5, // 0: lansweeper.multitenant.v1.GetPreviewAccountByIdResponse.account:type_name -> lansweeper.multitenant.v1.PreviewAccount
|
|
@@ -9232,13 +9332,13 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
9232
9332
|
12, // 6: lansweeper.multitenant.v1.Profile.site:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
9233
9333
|
15, // 7: lansweeper.multitenant.v1.ListProfilesByAccountIdResponse.profile:type_name -> lansweeper.multitenant.v1.Profile
|
|
9234
9334
|
15, // 8: lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse.profile:type_name -> lansweeper.multitenant.v1.Profile
|
|
9235
|
-
|
|
9236
|
-
|
|
9335
|
+
121, // 9: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.user_info:type_name -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
|
|
9336
|
+
122, // 10: lansweeper.multitenant.v1.Install.state:type_name -> lansweeper.multitenant.v1.Install.InstallState
|
|
9237
9337
|
2, // 11: lansweeper.multitenant.v1.Install.install_type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
9238
9338
|
24, // 12: lansweeper.multitenant.v1.GetInstallsByIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
9239
9339
|
24, // 13: lansweeper.multitenant.v1.GetInstallsByExternalIdsResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
9240
9340
|
2, // 14: lansweeper.multitenant.v1.NullableInstallType.data:type_name -> lansweeper.multitenant.v1.InstallType
|
|
9241
|
-
|
|
9341
|
+
123, // 15: lansweeper.multitenant.v1.GetInstallsBySiteRequest.filter:type_name -> lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
|
|
9242
9342
|
24, // 16: lansweeper.multitenant.v1.GetInstallsBySiteResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
9243
9343
|
24, // 17: lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse.installs:type_name -> lansweeper.multitenant.v1.Install
|
|
9244
9344
|
24, // 18: lansweeper.multitenant.v1.GetInstallbyClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
@@ -9248,150 +9348,152 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
9248
9348
|
2, // 22: lansweeper.multitenant.v1.CreateAndLinkInstallRequest.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
9249
9349
|
24, // 23: lansweeper.multitenant.v1.CreateAndLinkInstallResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
9250
9350
|
25, // 24: lansweeper.multitenant.v1.CreateAndLinkInstallResponse.credentials:type_name -> lansweeper.multitenant.v1.InstallCredentials
|
|
9251
|
-
|
|
9351
|
+
124, // 25: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.syncer_settings:type_name -> lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
|
|
9252
9352
|
24, // 26: lansweeper.multitenant.v1.UpdateInstallByClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
9253
9353
|
2, // 27: lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
9254
9354
|
24, // 28: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
9255
9355
|
25, // 29: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.credentials:type_name -> lansweeper.multitenant.v1.InstallCredentials
|
|
9256
9356
|
12, // 30: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.site:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
9257
|
-
|
|
9357
|
+
125, // 31: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.result:type_name -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
|
|
9258
9358
|
24, // 32: lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
9259
|
-
|
|
9260
|
-
|
|
9359
|
+
128, // 33: lansweeper.multitenant.v1.GetUserPermissionsResponse.roles:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
|
|
9360
|
+
129, // 34: lansweeper.multitenant.v1.DisableWebhookEmailRequest.errors:type_name -> lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
|
|
9261
9361
|
61, // 35: lansweeper.multitenant.v1.AuthorizedSitesResponse.site:type_name -> lansweeper.multitenant.v1.Site
|
|
9262
9362
|
3, // 36: lansweeper.multitenant.v1.Subscription.type:type_name -> lansweeper.multitenant.v1.SubscriptionType
|
|
9263
9363
|
3, // 37: lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest.type:type_name -> lansweeper.multitenant.v1.SubscriptionType
|
|
9264
9364
|
68, // 38: lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse.subscription:type_name -> lansweeper.multitenant.v1.Subscription
|
|
9265
9365
|
15, // 39: lansweeper.multitenant.v1.AllProfilesExistResponse.profiles:type_name -> lansweeper.multitenant.v1.Profile
|
|
9266
9366
|
5, // 40: lansweeper.multitenant.v1.AllProfilesExistResponse.createdBy:type_name -> lansweeper.multitenant.v1.PreviewAccount
|
|
9267
|
-
|
|
9367
|
+
130, // 41: lansweeper.multitenant.v1.GetSiteLimitsResponse.site_limits:type_name -> lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry
|
|
9268
9368
|
4, // 42: lansweeper.multitenant.v1.SiteHierarchyIdsItem.parent_type:type_name -> lansweeper.multitenant.v1.SiteHierarchyIdsItem.ParentType
|
|
9269
9369
|
93, // 43: lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse.items:type_name -> lansweeper.multitenant.v1.SiteHierarchyIdsItem
|
|
9270
9370
|
94, // 44: lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse.page_info:type_name -> lansweeper.multitenant.v1.SiteHierarchyIdsPageInfo
|
|
9271
|
-
|
|
9272
|
-
98, // 46: lansweeper.multitenant.v1.
|
|
9273
|
-
|
|
9274
|
-
|
|
9275
|
-
131, // 49: lansweeper.multitenant.v1.
|
|
9276
|
-
|
|
9277
|
-
|
|
9278
|
-
|
|
9279
|
-
12, // 53: lansweeper.multitenant.v1.
|
|
9280
|
-
|
|
9281
|
-
|
|
9282
|
-
|
|
9283
|
-
|
|
9284
|
-
|
|
9285
|
-
|
|
9286
|
-
|
|
9287
|
-
|
|
9288
|
-
|
|
9289
|
-
|
|
9290
|
-
|
|
9291
|
-
|
|
9292
|
-
|
|
9293
|
-
|
|
9294
|
-
|
|
9295
|
-
|
|
9296
|
-
|
|
9297
|
-
|
|
9298
|
-
|
|
9299
|
-
|
|
9300
|
-
|
|
9301
|
-
|
|
9302
|
-
|
|
9303
|
-
|
|
9304
|
-
|
|
9305
|
-
|
|
9306
|
-
|
|
9307
|
-
|
|
9308
|
-
|
|
9309
|
-
|
|
9310
|
-
|
|
9311
|
-
|
|
9312
|
-
|
|
9313
|
-
|
|
9314
|
-
|
|
9315
|
-
|
|
9316
|
-
|
|
9317
|
-
|
|
9318
|
-
|
|
9319
|
-
|
|
9320
|
-
|
|
9321
|
-
|
|
9322
|
-
|
|
9323
|
-
|
|
9324
|
-
|
|
9325
|
-
|
|
9326
|
-
|
|
9327
|
-
|
|
9328
|
-
|
|
9329
|
-
|
|
9330
|
-
108, // 104: lansweeper.multitenant.v1.Multitenant.
|
|
9331
|
-
|
|
9332
|
-
110, // 106: lansweeper.multitenant.v1.Multitenant.
|
|
9333
|
-
|
|
9334
|
-
|
|
9335
|
-
|
|
9336
|
-
|
|
9337
|
-
|
|
9338
|
-
|
|
9339
|
-
|
|
9340
|
-
|
|
9341
|
-
|
|
9342
|
-
|
|
9343
|
-
|
|
9344
|
-
|
|
9345
|
-
|
|
9346
|
-
|
|
9347
|
-
|
|
9348
|
-
|
|
9349
|
-
|
|
9350
|
-
|
|
9351
|
-
|
|
9352
|
-
|
|
9353
|
-
|
|
9354
|
-
|
|
9355
|
-
|
|
9356
|
-
|
|
9357
|
-
|
|
9358
|
-
|
|
9359
|
-
|
|
9360
|
-
|
|
9361
|
-
|
|
9362
|
-
|
|
9363
|
-
|
|
9364
|
-
|
|
9365
|
-
|
|
9366
|
-
|
|
9367
|
-
|
|
9368
|
-
|
|
9369
|
-
|
|
9370
|
-
|
|
9371
|
-
|
|
9372
|
-
|
|
9373
|
-
|
|
9374
|
-
|
|
9375
|
-
|
|
9376
|
-
|
|
9377
|
-
|
|
9378
|
-
|
|
9379
|
-
|
|
9380
|
-
|
|
9381
|
-
|
|
9382
|
-
|
|
9383
|
-
|
|
9384
|
-
|
|
9385
|
-
|
|
9386
|
-
|
|
9387
|
-
|
|
9388
|
-
|
|
9389
|
-
|
|
9390
|
-
|
|
9391
|
-
|
|
9392
|
-
|
|
9393
|
-
|
|
9394
|
-
|
|
9371
|
+
96, // 45: lansweeper.multitenant.v1.GetSitesRequest.options:type_name -> lansweeper.multitenant.v1.GetSitesOptions
|
|
9372
|
+
98, // 46: lansweeper.multitenant.v1.SiteItem.metadata:type_name -> lansweeper.multitenant.v1.SiteItemMetadata
|
|
9373
|
+
99, // 47: lansweeper.multitenant.v1.GetSitesResponse.items:type_name -> lansweeper.multitenant.v1.SiteItem
|
|
9374
|
+
100, // 48: lansweeper.multitenant.v1.GetSitesResponse.page_info:type_name -> lansweeper.multitenant.v1.GetSitesPageInfo
|
|
9375
|
+
131, // 49: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.msmp_pagination:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest
|
|
9376
|
+
132, // 50: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.organizations:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization
|
|
9377
|
+
133, // 51: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.msmp_page_info:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo
|
|
9378
|
+
102, // 52: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest.msmp_pagination:type_name -> lansweeper.multitenant.v1.MsmpPagination
|
|
9379
|
+
12, // 53: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse.sites:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
9380
|
+
103, // 54: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse.msmp_pagination_info:type_name -> lansweeper.multitenant.v1.MsmpPaginationInfo
|
|
9381
|
+
12, // 55: lansweeper.multitenant.v1.GetSitePreviewResponse.site:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
9382
|
+
1, // 56: lansweeper.multitenant.v1.Install.InstallState.value:type_name -> lansweeper.multitenant.v1.InstallStateValue
|
|
9383
|
+
1, // 57: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.state:type_name -> lansweeper.multitenant.v1.InstallStateValue
|
|
9384
|
+
2, // 58: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
9385
|
+
32, // 59: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.install_type:type_name -> lansweeper.multitenant.v1.NullableInstallType
|
|
9386
|
+
126, // 60: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.actions:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
|
|
9387
|
+
24, // 61: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.installations:type_name -> lansweeper.multitenant.v1.Install
|
|
9388
|
+
127, // 62: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.scopes:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
|
|
9389
|
+
134, // 63: lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry.value:type_name -> lansweeper.shared.limits.v1.SiteLimits
|
|
9390
|
+
20, // 64: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest
|
|
9391
|
+
22, // 65: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByClientId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByClientIdRequest
|
|
9392
|
+
6, // 66: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:input_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdRequest
|
|
9393
|
+
8, // 67: lansweeper.multitenant.v1.Multitenant.SearchPreviewAccountsBySiteIds:input_type -> lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsRequest
|
|
9394
|
+
10, // 68: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountsByAccountIds:input_type -> lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsRequest
|
|
9395
|
+
16, // 69: lansweeper.multitenant.v1.Multitenant.ListProfilesByAccountId:input_type -> lansweeper.multitenant.v1.ListProfilesByAccountIdRequest
|
|
9396
|
+
18, // 70: lansweeper.multitenant.v1.Multitenant.ListAuthorizedLinkProfiles:input_type -> lansweeper.multitenant.v1.ListAuthorizedLinkProfilesRequest
|
|
9397
|
+
13, // 71: lansweeper.multitenant.v1.Multitenant.PatchSiteMode:input_type -> lansweeper.multitenant.v1.PatchSiteModeRequest
|
|
9398
|
+
39, // 72: lansweeper.multitenant.v1.Multitenant.CreateInstall:input_type -> lansweeper.multitenant.v1.CreateInstallRequest
|
|
9399
|
+
41, // 73: lansweeper.multitenant.v1.Multitenant.CreateAndLinkInstall:input_type -> lansweeper.multitenant.v1.CreateAndLinkInstallRequest
|
|
9400
|
+
33, // 74: lansweeper.multitenant.v1.Multitenant.GetInstallsBySite:input_type -> lansweeper.multitenant.v1.GetInstallsBySiteRequest
|
|
9401
|
+
35, // 75: lansweeper.multitenant.v1.Multitenant.GetInstallsforMultipleSites:input_type -> lansweeper.multitenant.v1.GetInstallsForMultipleSitesRequest
|
|
9402
|
+
28, // 76: lansweeper.multitenant.v1.Multitenant.GetInstallsById:input_type -> lansweeper.multitenant.v1.GetInstallsByIdRequest
|
|
9403
|
+
26, // 77: lansweeper.multitenant.v1.Multitenant.GetInstallsCountBySite:input_type -> lansweeper.multitenant.v1.GetInstallsCountBySiteRequest
|
|
9404
|
+
37, // 78: lansweeper.multitenant.v1.Multitenant.GetInstallbyClientId:input_type -> lansweeper.multitenant.v1.GetInstallbyClientIdRequest
|
|
9405
|
+
43, // 79: lansweeper.multitenant.v1.Multitenant.UpdateInstallByClientId:input_type -> lansweeper.multitenant.v1.UpdateInstallByClientIdRequest
|
|
9406
|
+
45, // 80: lansweeper.multitenant.v1.Multitenant.RotateInstallByClientId:input_type -> lansweeper.multitenant.v1.RotateInstallByClientIdRequest
|
|
9407
|
+
49, // 81: lansweeper.multitenant.v1.Multitenant.LinkTrialInstallByClientId:input_type -> lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest
|
|
9408
|
+
47, // 82: lansweeper.multitenant.v1.Multitenant.UnlinkInstallByClientId:input_type -> lansweeper.multitenant.v1.UnlinkInstallByClientIdRequest
|
|
9409
|
+
51, // 83: lansweeper.multitenant.v1.Multitenant.RemoveInstallDataBySiteId:input_type -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdRequest
|
|
9410
|
+
53, // 84: lansweeper.multitenant.v1.Multitenant.GetDuplicatedInstallsByGlobalId:input_type -> lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdRequest
|
|
9411
|
+
55, // 85: lansweeper.multitenant.v1.Multitenant.GetUserPermissions:input_type -> lansweeper.multitenant.v1.GetUserPermissionsRequest
|
|
9412
|
+
57, // 86: lansweeper.multitenant.v1.Multitenant.ValidateApplicationPersonalAccessToken:input_type -> lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest
|
|
9413
|
+
59, // 87: lansweeper.multitenant.v1.Multitenant.SendDisabledWebhookEmail:input_type -> lansweeper.multitenant.v1.DisableWebhookEmailRequest
|
|
9414
|
+
62, // 88: lansweeper.multitenant.v1.Multitenant.GetAuthorizedSitesByApplicationId:input_type -> lansweeper.multitenant.v1.AuthorizedSitesRequest
|
|
9415
|
+
64, // 89: lansweeper.multitenant.v1.Multitenant.GetAccountIdsBySiteId:input_type -> lansweeper.multitenant.v1.GetAccountIdsBySiteIdRequest
|
|
9416
|
+
66, // 90: lansweeper.multitenant.v1.Multitenant.CheckManagerInApplication:input_type -> lansweeper.multitenant.v1.CheckManagerInApplicationRequest
|
|
9417
|
+
69, // 91: lansweeper.multitenant.v1.Multitenant.UpdateSiteSubscription:input_type -> lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest
|
|
9418
|
+
71, // 92: lansweeper.multitenant.v1.Multitenant.CreateTrialSiteAndInstaller:input_type -> lansweeper.multitenant.v1.CreateTrialSiteAndInstallerRequest
|
|
9419
|
+
73, // 93: lansweeper.multitenant.v1.Multitenant.GetInstallationLicenseByClientId:input_type -> lansweeper.multitenant.v1.GetInstallationLicenseByClientIdRequest
|
|
9420
|
+
77, // 94: lansweeper.multitenant.v1.Multitenant.AllProfilesExist:input_type -> lansweeper.multitenant.v1.AllProfilesExistRequest
|
|
9421
|
+
79, // 95: lansweeper.multitenant.v1.Multitenant.SendInviteLocalUsersMail:input_type -> lansweeper.multitenant.v1.SendInviteLocalUsersMailRequest
|
|
9422
|
+
75, // 96: lansweeper.multitenant.v1.Multitenant.AllProfileExists:input_type -> lansweeper.multitenant.v1.AllProfileExistsRequest
|
|
9423
|
+
81, // 97: lansweeper.multitenant.v1.Multitenant.CreateLinkingCode:input_type -> lansweeper.multitenant.v1.CreateLinkingCodeRequest
|
|
9424
|
+
83, // 98: lansweeper.multitenant.v1.Multitenant.GetSiteIdsWithIntegrationBySiteId:input_type -> lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData
|
|
9425
|
+
84, // 99: lansweeper.multitenant.v1.Multitenant.CheckStandardizedSoftwareEnabled:input_type -> lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledRequest
|
|
9426
|
+
86, // 100: lansweeper.multitenant.v1.Multitenant.UpdateSiteMetadata:input_type -> lansweeper.multitenant.v1.UpdateSiteMetadataRequest
|
|
9427
|
+
90, // 101: lansweeper.multitenant.v1.Multitenant.GetSiteLimits:input_type -> lansweeper.multitenant.v1.GetSiteLimitsRequest
|
|
9428
|
+
104, // 102: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationList:input_type -> lansweeper.multitenant.v1.GetMsmpOrganizationListRequest
|
|
9429
|
+
106, // 103: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationAccount:input_type -> lansweeper.multitenant.v1.GetMsmpOrganizationAccountRequest
|
|
9430
|
+
108, // 104: lansweeper.multitenant.v1.Multitenant.GetSitesByMsmpOrganizationId:input_type -> lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest
|
|
9431
|
+
30, // 105: lansweeper.multitenant.v1.Multitenant.GetInstallsByExternalIds:input_type -> lansweeper.multitenant.v1.GetInstallsByExternalIdsRequest
|
|
9432
|
+
110, // 106: lansweeper.multitenant.v1.Multitenant.SetEnabledCustomFieldsFederation:input_type -> lansweeper.multitenant.v1.SetEnabledCustomFieldsFederationRequest
|
|
9433
|
+
111, // 107: lansweeper.multitenant.v1.Multitenant.IsCustomFieldsFederationEnabled:input_type -> lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledRequest
|
|
9434
|
+
112, // 108: lansweeper.multitenant.v1.Multitenant.IsMetadataFieldsFederationEnabled:input_type -> lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledRequest
|
|
9435
|
+
115, // 109: lansweeper.multitenant.v1.Multitenant.GetSitePreview:input_type -> lansweeper.multitenant.v1.GetSitePreviewRequest
|
|
9436
|
+
88, // 110: lansweeper.multitenant.v1.Multitenant.UpdateSiteSkipDataExport:input_type -> lansweeper.multitenant.v1.UpdateSiteSkipDataExportRequest
|
|
9437
|
+
92, // 111: lansweeper.multitenant.v1.Multitenant.GetSiteHierarchyIds:input_type -> lansweeper.multitenant.v1.GetSiteHierarchyIdsRequest
|
|
9438
|
+
97, // 112: lansweeper.multitenant.v1.Multitenant.GetSites:input_type -> lansweeper.multitenant.v1.GetSitesRequest
|
|
9439
|
+
117, // 113: lansweeper.multitenant.v1.Multitenant.CreateOwnerPersonalAccessToken:input_type -> lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenRequest
|
|
9440
|
+
119, // 114: lansweeper.multitenant.v1.Multitenant.GetInstallationSettings:input_type -> lansweeper.multitenant.v1.GetInstallationSettingsRequest
|
|
9441
|
+
21, // 115: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdResponse
|
|
9442
|
+
23, // 116: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByClientId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByClientIdResponse
|
|
9443
|
+
7, // 117: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:output_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdResponse
|
|
9444
|
+
9, // 118: lansweeper.multitenant.v1.Multitenant.SearchPreviewAccountsBySiteIds:output_type -> lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsResponse
|
|
9445
|
+
11, // 119: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountsByAccountIds:output_type -> lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsResponse
|
|
9446
|
+
17, // 120: lansweeper.multitenant.v1.Multitenant.ListProfilesByAccountId:output_type -> lansweeper.multitenant.v1.ListProfilesByAccountIdResponse
|
|
9447
|
+
19, // 121: lansweeper.multitenant.v1.Multitenant.ListAuthorizedLinkProfiles:output_type -> lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse
|
|
9448
|
+
14, // 122: lansweeper.multitenant.v1.Multitenant.PatchSiteMode:output_type -> lansweeper.multitenant.v1.PatchSiteModeResponse
|
|
9449
|
+
40, // 123: lansweeper.multitenant.v1.Multitenant.CreateInstall:output_type -> lansweeper.multitenant.v1.CreateInstallResponse
|
|
9450
|
+
42, // 124: lansweeper.multitenant.v1.Multitenant.CreateAndLinkInstall:output_type -> lansweeper.multitenant.v1.CreateAndLinkInstallResponse
|
|
9451
|
+
34, // 125: lansweeper.multitenant.v1.Multitenant.GetInstallsBySite:output_type -> lansweeper.multitenant.v1.GetInstallsBySiteResponse
|
|
9452
|
+
36, // 126: lansweeper.multitenant.v1.Multitenant.GetInstallsforMultipleSites:output_type -> lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse
|
|
9453
|
+
29, // 127: lansweeper.multitenant.v1.Multitenant.GetInstallsById:output_type -> lansweeper.multitenant.v1.GetInstallsByIdResponse
|
|
9454
|
+
27, // 128: lansweeper.multitenant.v1.Multitenant.GetInstallsCountBySite:output_type -> lansweeper.multitenant.v1.GetInstallsCountResponse
|
|
9455
|
+
38, // 129: lansweeper.multitenant.v1.Multitenant.GetInstallbyClientId:output_type -> lansweeper.multitenant.v1.GetInstallbyClientIdResponse
|
|
9456
|
+
44, // 130: lansweeper.multitenant.v1.Multitenant.UpdateInstallByClientId:output_type -> lansweeper.multitenant.v1.UpdateInstallByClientIdResponse
|
|
9457
|
+
46, // 131: lansweeper.multitenant.v1.Multitenant.RotateInstallByClientId:output_type -> lansweeper.multitenant.v1.RotateInstallByClientIdResponse
|
|
9458
|
+
50, // 132: lansweeper.multitenant.v1.Multitenant.LinkTrialInstallByClientId:output_type -> lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse
|
|
9459
|
+
48, // 133: lansweeper.multitenant.v1.Multitenant.UnlinkInstallByClientId:output_type -> lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse
|
|
9460
|
+
52, // 134: lansweeper.multitenant.v1.Multitenant.RemoveInstallDataBySiteId:output_type -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse
|
|
9461
|
+
54, // 135: lansweeper.multitenant.v1.Multitenant.GetDuplicatedInstallsByGlobalId:output_type -> lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse
|
|
9462
|
+
56, // 136: lansweeper.multitenant.v1.Multitenant.GetUserPermissions:output_type -> lansweeper.multitenant.v1.GetUserPermissionsResponse
|
|
9463
|
+
58, // 137: lansweeper.multitenant.v1.Multitenant.ValidateApplicationPersonalAccessToken:output_type -> lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse
|
|
9464
|
+
60, // 138: lansweeper.multitenant.v1.Multitenant.SendDisabledWebhookEmail:output_type -> lansweeper.multitenant.v1.DisableWebhookEmailResponse
|
|
9465
|
+
63, // 139: lansweeper.multitenant.v1.Multitenant.GetAuthorizedSitesByApplicationId:output_type -> lansweeper.multitenant.v1.AuthorizedSitesResponse
|
|
9466
|
+
65, // 140: lansweeper.multitenant.v1.Multitenant.GetAccountIdsBySiteId:output_type -> lansweeper.multitenant.v1.GetAccountIdsBySiteIdResponse
|
|
9467
|
+
67, // 141: lansweeper.multitenant.v1.Multitenant.CheckManagerInApplication:output_type -> lansweeper.multitenant.v1.CheckManagerInApplicationResponse
|
|
9468
|
+
70, // 142: lansweeper.multitenant.v1.Multitenant.UpdateSiteSubscription:output_type -> lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse
|
|
9469
|
+
72, // 143: lansweeper.multitenant.v1.Multitenant.CreateTrialSiteAndInstaller:output_type -> lansweeper.multitenant.v1.CreateTrialSiteAndInstallerResponse
|
|
9470
|
+
74, // 144: lansweeper.multitenant.v1.Multitenant.GetInstallationLicenseByClientId:output_type -> lansweeper.multitenant.v1.GetInstallationLicenseByClientIdResponse
|
|
9471
|
+
78, // 145: lansweeper.multitenant.v1.Multitenant.AllProfilesExist:output_type -> lansweeper.multitenant.v1.AllProfilesExistResponse
|
|
9472
|
+
80, // 146: lansweeper.multitenant.v1.Multitenant.SendInviteLocalUsersMail:output_type -> lansweeper.multitenant.v1.SendInviteLocalUsersMailResponse
|
|
9473
|
+
76, // 147: lansweeper.multitenant.v1.Multitenant.AllProfileExists:output_type -> lansweeper.multitenant.v1.AllProfileExistsResponse
|
|
9474
|
+
82, // 148: lansweeper.multitenant.v1.Multitenant.CreateLinkingCode:output_type -> lansweeper.multitenant.v1.CreateLinkingCodeResponse
|
|
9475
|
+
83, // 149: lansweeper.multitenant.v1.Multitenant.GetSiteIdsWithIntegrationBySiteId:output_type -> lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData
|
|
9476
|
+
85, // 150: lansweeper.multitenant.v1.Multitenant.CheckStandardizedSoftwareEnabled:output_type -> lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledResponse
|
|
9477
|
+
87, // 151: lansweeper.multitenant.v1.Multitenant.UpdateSiteMetadata:output_type -> lansweeper.multitenant.v1.UpdateSiteMetadataResponse
|
|
9478
|
+
91, // 152: lansweeper.multitenant.v1.Multitenant.GetSiteLimits:output_type -> lansweeper.multitenant.v1.GetSiteLimitsResponse
|
|
9479
|
+
105, // 153: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationList:output_type -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse
|
|
9480
|
+
107, // 154: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationAccount:output_type -> lansweeper.multitenant.v1.GetMsmpOrganizationAccountResponse
|
|
9481
|
+
109, // 155: lansweeper.multitenant.v1.Multitenant.GetSitesByMsmpOrganizationId:output_type -> lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse
|
|
9482
|
+
31, // 156: lansweeper.multitenant.v1.Multitenant.GetInstallsByExternalIds:output_type -> lansweeper.multitenant.v1.GetInstallsByExternalIdsResponse
|
|
9483
|
+
135, // 157: lansweeper.multitenant.v1.Multitenant.SetEnabledCustomFieldsFederation:output_type -> google.protobuf.Empty
|
|
9484
|
+
113, // 158: lansweeper.multitenant.v1.Multitenant.IsCustomFieldsFederationEnabled:output_type -> lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledResponse
|
|
9485
|
+
114, // 159: lansweeper.multitenant.v1.Multitenant.IsMetadataFieldsFederationEnabled:output_type -> lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledResponse
|
|
9486
|
+
116, // 160: lansweeper.multitenant.v1.Multitenant.GetSitePreview:output_type -> lansweeper.multitenant.v1.GetSitePreviewResponse
|
|
9487
|
+
89, // 161: lansweeper.multitenant.v1.Multitenant.UpdateSiteSkipDataExport:output_type -> lansweeper.multitenant.v1.UpdateSiteSkipDataExportResponse
|
|
9488
|
+
95, // 162: lansweeper.multitenant.v1.Multitenant.GetSiteHierarchyIds:output_type -> lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse
|
|
9489
|
+
101, // 163: lansweeper.multitenant.v1.Multitenant.GetSites:output_type -> lansweeper.multitenant.v1.GetSitesResponse
|
|
9490
|
+
118, // 164: lansweeper.multitenant.v1.Multitenant.CreateOwnerPersonalAccessToken:output_type -> lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenResponse
|
|
9491
|
+
120, // 165: lansweeper.multitenant.v1.Multitenant.GetInstallationSettings:output_type -> lansweeper.multitenant.v1.GetInstallationSettingsResponse
|
|
9492
|
+
115, // [115:166] is the sub-list for method output_type
|
|
9493
|
+
64, // [64:115] is the sub-list for method input_type
|
|
9494
|
+
64, // [64:64] is the sub-list for extension type_name
|
|
9495
|
+
64, // [64:64] is the sub-list for extension extendee
|
|
9496
|
+
0, // [0:64] is the sub-list for field type_name
|
|
9395
9497
|
}
|
|
9396
9498
|
|
|
9397
9499
|
func init() { file_multitenant_proto_init() }
|
|
@@ -10493,7 +10595,7 @@ func file_multitenant_proto_init() {
|
|
|
10493
10595
|
}
|
|
10494
10596
|
}
|
|
10495
10597
|
file_multitenant_proto_msgTypes[91].Exporter = func(v any, i int) any {
|
|
10496
|
-
switch v := v.(*
|
|
10598
|
+
switch v := v.(*GetSitesOptions); i {
|
|
10497
10599
|
case 0:
|
|
10498
10600
|
return &v.state
|
|
10499
10601
|
case 1:
|
|
@@ -10505,7 +10607,7 @@ func file_multitenant_proto_init() {
|
|
|
10505
10607
|
}
|
|
10506
10608
|
}
|
|
10507
10609
|
file_multitenant_proto_msgTypes[92].Exporter = func(v any, i int) any {
|
|
10508
|
-
switch v := v.(*
|
|
10610
|
+
switch v := v.(*GetSitesRequest); i {
|
|
10509
10611
|
case 0:
|
|
10510
10612
|
return &v.state
|
|
10511
10613
|
case 1:
|
|
@@ -10517,7 +10619,7 @@ func file_multitenant_proto_init() {
|
|
|
10517
10619
|
}
|
|
10518
10620
|
}
|
|
10519
10621
|
file_multitenant_proto_msgTypes[93].Exporter = func(v any, i int) any {
|
|
10520
|
-
switch v := v.(*
|
|
10622
|
+
switch v := v.(*SiteItemMetadata); i {
|
|
10521
10623
|
case 0:
|
|
10522
10624
|
return &v.state
|
|
10523
10625
|
case 1:
|
|
@@ -10529,7 +10631,7 @@ func file_multitenant_proto_init() {
|
|
|
10529
10631
|
}
|
|
10530
10632
|
}
|
|
10531
10633
|
file_multitenant_proto_msgTypes[94].Exporter = func(v any, i int) any {
|
|
10532
|
-
switch v := v.(*
|
|
10634
|
+
switch v := v.(*SiteItem); i {
|
|
10533
10635
|
case 0:
|
|
10534
10636
|
return &v.state
|
|
10535
10637
|
case 1:
|
|
@@ -10541,7 +10643,7 @@ func file_multitenant_proto_init() {
|
|
|
10541
10643
|
}
|
|
10542
10644
|
}
|
|
10543
10645
|
file_multitenant_proto_msgTypes[95].Exporter = func(v any, i int) any {
|
|
10544
|
-
switch v := v.(*
|
|
10646
|
+
switch v := v.(*GetSitesPageInfo); i {
|
|
10545
10647
|
case 0:
|
|
10546
10648
|
return &v.state
|
|
10547
10649
|
case 1:
|
|
@@ -10553,7 +10655,7 @@ func file_multitenant_proto_init() {
|
|
|
10553
10655
|
}
|
|
10554
10656
|
}
|
|
10555
10657
|
file_multitenant_proto_msgTypes[96].Exporter = func(v any, i int) any {
|
|
10556
|
-
switch v := v.(*
|
|
10658
|
+
switch v := v.(*GetSitesResponse); i {
|
|
10557
10659
|
case 0:
|
|
10558
10660
|
return &v.state
|
|
10559
10661
|
case 1:
|
|
@@ -10565,7 +10667,7 @@ func file_multitenant_proto_init() {
|
|
|
10565
10667
|
}
|
|
10566
10668
|
}
|
|
10567
10669
|
file_multitenant_proto_msgTypes[97].Exporter = func(v any, i int) any {
|
|
10568
|
-
switch v := v.(*
|
|
10670
|
+
switch v := v.(*MsmpPagination); i {
|
|
10569
10671
|
case 0:
|
|
10570
10672
|
return &v.state
|
|
10571
10673
|
case 1:
|
|
@@ -10577,7 +10679,7 @@ func file_multitenant_proto_init() {
|
|
|
10577
10679
|
}
|
|
10578
10680
|
}
|
|
10579
10681
|
file_multitenant_proto_msgTypes[98].Exporter = func(v any, i int) any {
|
|
10580
|
-
switch v := v.(*
|
|
10682
|
+
switch v := v.(*MsmpPaginationInfo); i {
|
|
10581
10683
|
case 0:
|
|
10582
10684
|
return &v.state
|
|
10583
10685
|
case 1:
|
|
@@ -10589,7 +10691,7 @@ func file_multitenant_proto_init() {
|
|
|
10589
10691
|
}
|
|
10590
10692
|
}
|
|
10591
10693
|
file_multitenant_proto_msgTypes[99].Exporter = func(v any, i int) any {
|
|
10592
|
-
switch v := v.(*
|
|
10694
|
+
switch v := v.(*GetMsmpOrganizationListRequest); i {
|
|
10593
10695
|
case 0:
|
|
10594
10696
|
return &v.state
|
|
10595
10697
|
case 1:
|
|
@@ -10601,7 +10703,7 @@ func file_multitenant_proto_init() {
|
|
|
10601
10703
|
}
|
|
10602
10704
|
}
|
|
10603
10705
|
file_multitenant_proto_msgTypes[100].Exporter = func(v any, i int) any {
|
|
10604
|
-
switch v := v.(*
|
|
10706
|
+
switch v := v.(*GetMsmpOrganizationListResponse); i {
|
|
10605
10707
|
case 0:
|
|
10606
10708
|
return &v.state
|
|
10607
10709
|
case 1:
|
|
@@ -10613,7 +10715,7 @@ func file_multitenant_proto_init() {
|
|
|
10613
10715
|
}
|
|
10614
10716
|
}
|
|
10615
10717
|
file_multitenant_proto_msgTypes[101].Exporter = func(v any, i int) any {
|
|
10616
|
-
switch v := v.(*
|
|
10718
|
+
switch v := v.(*GetMsmpOrganizationAccountRequest); i {
|
|
10617
10719
|
case 0:
|
|
10618
10720
|
return &v.state
|
|
10619
10721
|
case 1:
|
|
@@ -10625,7 +10727,7 @@ func file_multitenant_proto_init() {
|
|
|
10625
10727
|
}
|
|
10626
10728
|
}
|
|
10627
10729
|
file_multitenant_proto_msgTypes[102].Exporter = func(v any, i int) any {
|
|
10628
|
-
switch v := v.(*
|
|
10730
|
+
switch v := v.(*GetMsmpOrganizationAccountResponse); i {
|
|
10629
10731
|
case 0:
|
|
10630
10732
|
return &v.state
|
|
10631
10733
|
case 1:
|
|
@@ -10637,7 +10739,7 @@ func file_multitenant_proto_init() {
|
|
|
10637
10739
|
}
|
|
10638
10740
|
}
|
|
10639
10741
|
file_multitenant_proto_msgTypes[103].Exporter = func(v any, i int) any {
|
|
10640
|
-
switch v := v.(*
|
|
10742
|
+
switch v := v.(*GetSitesByMsmpOrganizationIdRequest); i {
|
|
10641
10743
|
case 0:
|
|
10642
10744
|
return &v.state
|
|
10643
10745
|
case 1:
|
|
@@ -10649,7 +10751,7 @@ func file_multitenant_proto_init() {
|
|
|
10649
10751
|
}
|
|
10650
10752
|
}
|
|
10651
10753
|
file_multitenant_proto_msgTypes[104].Exporter = func(v any, i int) any {
|
|
10652
|
-
switch v := v.(*
|
|
10754
|
+
switch v := v.(*GetSitesByMsmpOrganizationIdResponse); i {
|
|
10653
10755
|
case 0:
|
|
10654
10756
|
return &v.state
|
|
10655
10757
|
case 1:
|
|
@@ -10661,7 +10763,7 @@ func file_multitenant_proto_init() {
|
|
|
10661
10763
|
}
|
|
10662
10764
|
}
|
|
10663
10765
|
file_multitenant_proto_msgTypes[105].Exporter = func(v any, i int) any {
|
|
10664
|
-
switch v := v.(*
|
|
10766
|
+
switch v := v.(*SetEnabledCustomFieldsFederationRequest); i {
|
|
10665
10767
|
case 0:
|
|
10666
10768
|
return &v.state
|
|
10667
10769
|
case 1:
|
|
@@ -10673,7 +10775,7 @@ func file_multitenant_proto_init() {
|
|
|
10673
10775
|
}
|
|
10674
10776
|
}
|
|
10675
10777
|
file_multitenant_proto_msgTypes[106].Exporter = func(v any, i int) any {
|
|
10676
|
-
switch v := v.(*
|
|
10778
|
+
switch v := v.(*IsCustomFieldsFederationEnabledRequest); i {
|
|
10677
10779
|
case 0:
|
|
10678
10780
|
return &v.state
|
|
10679
10781
|
case 1:
|
|
@@ -10685,7 +10787,7 @@ func file_multitenant_proto_init() {
|
|
|
10685
10787
|
}
|
|
10686
10788
|
}
|
|
10687
10789
|
file_multitenant_proto_msgTypes[107].Exporter = func(v any, i int) any {
|
|
10688
|
-
switch v := v.(*
|
|
10790
|
+
switch v := v.(*IsMetadataFieldsFederationEnabledRequest); i {
|
|
10689
10791
|
case 0:
|
|
10690
10792
|
return &v.state
|
|
10691
10793
|
case 1:
|
|
@@ -10697,7 +10799,7 @@ func file_multitenant_proto_init() {
|
|
|
10697
10799
|
}
|
|
10698
10800
|
}
|
|
10699
10801
|
file_multitenant_proto_msgTypes[108].Exporter = func(v any, i int) any {
|
|
10700
|
-
switch v := v.(*
|
|
10802
|
+
switch v := v.(*IsCustomFieldsFederationEnabledResponse); i {
|
|
10701
10803
|
case 0:
|
|
10702
10804
|
return &v.state
|
|
10703
10805
|
case 1:
|
|
@@ -10709,7 +10811,7 @@ func file_multitenant_proto_init() {
|
|
|
10709
10811
|
}
|
|
10710
10812
|
}
|
|
10711
10813
|
file_multitenant_proto_msgTypes[109].Exporter = func(v any, i int) any {
|
|
10712
|
-
switch v := v.(*
|
|
10814
|
+
switch v := v.(*IsMetadataFieldsFederationEnabledResponse); i {
|
|
10713
10815
|
case 0:
|
|
10714
10816
|
return &v.state
|
|
10715
10817
|
case 1:
|
|
@@ -10721,7 +10823,7 @@ func file_multitenant_proto_init() {
|
|
|
10721
10823
|
}
|
|
10722
10824
|
}
|
|
10723
10825
|
file_multitenant_proto_msgTypes[110].Exporter = func(v any, i int) any {
|
|
10724
|
-
switch v := v.(*
|
|
10826
|
+
switch v := v.(*GetSitePreviewRequest); i {
|
|
10725
10827
|
case 0:
|
|
10726
10828
|
return &v.state
|
|
10727
10829
|
case 1:
|
|
@@ -10733,7 +10835,7 @@ func file_multitenant_proto_init() {
|
|
|
10733
10835
|
}
|
|
10734
10836
|
}
|
|
10735
10837
|
file_multitenant_proto_msgTypes[111].Exporter = func(v any, i int) any {
|
|
10736
|
-
switch v := v.(*
|
|
10838
|
+
switch v := v.(*GetSitePreviewResponse); i {
|
|
10737
10839
|
case 0:
|
|
10738
10840
|
return &v.state
|
|
10739
10841
|
case 1:
|
|
@@ -10745,7 +10847,7 @@ func file_multitenant_proto_init() {
|
|
|
10745
10847
|
}
|
|
10746
10848
|
}
|
|
10747
10849
|
file_multitenant_proto_msgTypes[112].Exporter = func(v any, i int) any {
|
|
10748
|
-
switch v := v.(*
|
|
10850
|
+
switch v := v.(*CreateOwnerPersonalAccessTokenRequest); i {
|
|
10749
10851
|
case 0:
|
|
10750
10852
|
return &v.state
|
|
10751
10853
|
case 1:
|
|
@@ -10757,7 +10859,7 @@ func file_multitenant_proto_init() {
|
|
|
10757
10859
|
}
|
|
10758
10860
|
}
|
|
10759
10861
|
file_multitenant_proto_msgTypes[113].Exporter = func(v any, i int) any {
|
|
10760
|
-
switch v := v.(*
|
|
10862
|
+
switch v := v.(*CreateOwnerPersonalAccessTokenResponse); i {
|
|
10761
10863
|
case 0:
|
|
10762
10864
|
return &v.state
|
|
10763
10865
|
case 1:
|
|
@@ -10769,7 +10871,7 @@ func file_multitenant_proto_init() {
|
|
|
10769
10871
|
}
|
|
10770
10872
|
}
|
|
10771
10873
|
file_multitenant_proto_msgTypes[114].Exporter = func(v any, i int) any {
|
|
10772
|
-
switch v := v.(*
|
|
10874
|
+
switch v := v.(*GetInstallationSettingsRequest); i {
|
|
10773
10875
|
case 0:
|
|
10774
10876
|
return &v.state
|
|
10775
10877
|
case 1:
|
|
@@ -10781,7 +10883,7 @@ func file_multitenant_proto_init() {
|
|
|
10781
10883
|
}
|
|
10782
10884
|
}
|
|
10783
10885
|
file_multitenant_proto_msgTypes[115].Exporter = func(v any, i int) any {
|
|
10784
|
-
switch v := v.(*
|
|
10886
|
+
switch v := v.(*GetInstallationSettingsResponse); i {
|
|
10785
10887
|
case 0:
|
|
10786
10888
|
return &v.state
|
|
10787
10889
|
case 1:
|
|
@@ -10793,7 +10895,7 @@ func file_multitenant_proto_init() {
|
|
|
10793
10895
|
}
|
|
10794
10896
|
}
|
|
10795
10897
|
file_multitenant_proto_msgTypes[116].Exporter = func(v any, i int) any {
|
|
10796
|
-
switch v := v.(*
|
|
10898
|
+
switch v := v.(*CheckAccessToSiteByAccountIdRequest_UserInfo); i {
|
|
10797
10899
|
case 0:
|
|
10798
10900
|
return &v.state
|
|
10799
10901
|
case 1:
|
|
@@ -10805,7 +10907,7 @@ func file_multitenant_proto_init() {
|
|
|
10805
10907
|
}
|
|
10806
10908
|
}
|
|
10807
10909
|
file_multitenant_proto_msgTypes[117].Exporter = func(v any, i int) any {
|
|
10808
|
-
switch v := v.(*
|
|
10910
|
+
switch v := v.(*Install_InstallState); i {
|
|
10809
10911
|
case 0:
|
|
10810
10912
|
return &v.state
|
|
10811
10913
|
case 1:
|
|
@@ -10817,7 +10919,7 @@ func file_multitenant_proto_init() {
|
|
|
10817
10919
|
}
|
|
10818
10920
|
}
|
|
10819
10921
|
file_multitenant_proto_msgTypes[118].Exporter = func(v any, i int) any {
|
|
10820
|
-
switch v := v.(*
|
|
10922
|
+
switch v := v.(*GetInstallsBySiteRequest_Filter); i {
|
|
10821
10923
|
case 0:
|
|
10822
10924
|
return &v.state
|
|
10823
10925
|
case 1:
|
|
@@ -10829,7 +10931,7 @@ func file_multitenant_proto_init() {
|
|
|
10829
10931
|
}
|
|
10830
10932
|
}
|
|
10831
10933
|
file_multitenant_proto_msgTypes[119].Exporter = func(v any, i int) any {
|
|
10832
|
-
switch v := v.(*
|
|
10934
|
+
switch v := v.(*UpdateInstallByClientIdRequest_SyncerSettings); i {
|
|
10833
10935
|
case 0:
|
|
10834
10936
|
return &v.state
|
|
10835
10937
|
case 1:
|
|
@@ -10841,7 +10943,7 @@ func file_multitenant_proto_init() {
|
|
|
10841
10943
|
}
|
|
10842
10944
|
}
|
|
10843
10945
|
file_multitenant_proto_msgTypes[120].Exporter = func(v any, i int) any {
|
|
10844
|
-
switch v := v.(*
|
|
10946
|
+
switch v := v.(*RemoveInstallDataBySiteIdResponse_Result); i {
|
|
10845
10947
|
case 0:
|
|
10846
10948
|
return &v.state
|
|
10847
10949
|
case 1:
|
|
@@ -10853,7 +10955,7 @@ func file_multitenant_proto_init() {
|
|
|
10853
10955
|
}
|
|
10854
10956
|
}
|
|
10855
10957
|
file_multitenant_proto_msgTypes[121].Exporter = func(v any, i int) any {
|
|
10856
|
-
switch v := v.(*
|
|
10958
|
+
switch v := v.(*GetUserPermissionsResponse_AuthorizationAction); i {
|
|
10857
10959
|
case 0:
|
|
10858
10960
|
return &v.state
|
|
10859
10961
|
case 1:
|
|
@@ -10865,7 +10967,19 @@ func file_multitenant_proto_init() {
|
|
|
10865
10967
|
}
|
|
10866
10968
|
}
|
|
10867
10969
|
file_multitenant_proto_msgTypes[122].Exporter = func(v any, i int) any {
|
|
10868
|
-
switch v := v.(*
|
|
10970
|
+
switch v := v.(*GetUserPermissionsResponse_Scope); i {
|
|
10971
|
+
case 0:
|
|
10972
|
+
return &v.state
|
|
10973
|
+
case 1:
|
|
10974
|
+
return &v.sizeCache
|
|
10975
|
+
case 2:
|
|
10976
|
+
return &v.unknownFields
|
|
10977
|
+
default:
|
|
10978
|
+
return nil
|
|
10979
|
+
}
|
|
10980
|
+
}
|
|
10981
|
+
file_multitenant_proto_msgTypes[123].Exporter = func(v any, i int) any {
|
|
10982
|
+
switch v := v.(*GetUserPermissionsResponse_Role); i {
|
|
10869
10983
|
case 0:
|
|
10870
10984
|
return &v.state
|
|
10871
10985
|
case 1:
|
|
@@ -10877,6 +10991,18 @@ func file_multitenant_proto_init() {
|
|
|
10877
10991
|
}
|
|
10878
10992
|
}
|
|
10879
10993
|
file_multitenant_proto_msgTypes[124].Exporter = func(v any, i int) any {
|
|
10994
|
+
switch v := v.(*DisableWebhookEmailRequest_WebhookError); i {
|
|
10995
|
+
case 0:
|
|
10996
|
+
return &v.state
|
|
10997
|
+
case 1:
|
|
10998
|
+
return &v.sizeCache
|
|
10999
|
+
case 2:
|
|
11000
|
+
return &v.unknownFields
|
|
11001
|
+
default:
|
|
11002
|
+
return nil
|
|
11003
|
+
}
|
|
11004
|
+
}
|
|
11005
|
+
file_multitenant_proto_msgTypes[126].Exporter = func(v any, i int) any {
|
|
10880
11006
|
switch v := v.(*GetMsmpOrganizationListRequest_MsmpPaginationRequest); i {
|
|
10881
11007
|
case 0:
|
|
10882
11008
|
return &v.state
|
|
@@ -10888,7 +11014,7 @@ func file_multitenant_proto_init() {
|
|
|
10888
11014
|
return nil
|
|
10889
11015
|
}
|
|
10890
11016
|
}
|
|
10891
|
-
file_multitenant_proto_msgTypes[
|
|
11017
|
+
file_multitenant_proto_msgTypes[127].Exporter = func(v any, i int) any {
|
|
10892
11018
|
switch v := v.(*GetMsmpOrganizationListResponse_MsmpOrganization); i {
|
|
10893
11019
|
case 0:
|
|
10894
11020
|
return &v.state
|
|
@@ -10900,7 +11026,7 @@ func file_multitenant_proto_init() {
|
|
|
10900
11026
|
return nil
|
|
10901
11027
|
}
|
|
10902
11028
|
}
|
|
10903
|
-
file_multitenant_proto_msgTypes[
|
|
11029
|
+
file_multitenant_proto_msgTypes[128].Exporter = func(v any, i int) any {
|
|
10904
11030
|
switch v := v.(*GetMsmpOrganizationListResponse_MsmpPageInfo); i {
|
|
10905
11031
|
case 0:
|
|
10906
11032
|
return &v.state
|
|
@@ -10918,14 +11044,16 @@ func file_multitenant_proto_init() {
|
|
|
10918
11044
|
}
|
|
10919
11045
|
file_multitenant_proto_msgTypes[87].OneofWrappers = []any{}
|
|
10920
11046
|
file_multitenant_proto_msgTypes[91].OneofWrappers = []any{}
|
|
10921
|
-
file_multitenant_proto_msgTypes[
|
|
11047
|
+
file_multitenant_proto_msgTypes[92].OneofWrappers = []any{}
|
|
11048
|
+
file_multitenant_proto_msgTypes[94].OneofWrappers = []any{}
|
|
11049
|
+
file_multitenant_proto_msgTypes[112].OneofWrappers = []any{}
|
|
10922
11050
|
type x struct{}
|
|
10923
11051
|
out := protoimpl.TypeBuilder{
|
|
10924
11052
|
File: protoimpl.DescBuilder{
|
|
10925
11053
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
10926
11054
|
RawDescriptor: file_multitenant_proto_rawDesc,
|
|
10927
11055
|
NumEnums: 5,
|
|
10928
|
-
NumMessages:
|
|
11056
|
+
NumMessages: 129,
|
|
10929
11057
|
NumExtensions: 0,
|
|
10930
11058
|
NumServices: 1,
|
|
10931
11059
|
},
|