@lansweeper/multitenant-api-grpc 0.4.42 → 0.4.43
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 +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/multitenant_grpc_pb.d.ts +17 -0
- package/gen-proto/multitenant_grpc_pb.js +33 -0
- package/gen-proto/multitenant_pb.d.ts +44 -0
- package/gen-proto/multitenant_pb.js +360 -0
- package/generated-go/multitenant.pb.go +1363 -1219
- package/generated-go/multitenant_grpc.pb.go +37 -0
- package/package.json +2 -2
- package/proto/multitenant.proto +7 -0
|
@@ -1658,6 +1658,100 @@ func (x *GetInstallsBySiteResponse) GetInstall() []*Install {
|
|
|
1658
1658
|
return nil
|
|
1659
1659
|
}
|
|
1660
1660
|
|
|
1661
|
+
type GetInstallsForMultipleSitesRequest struct {
|
|
1662
|
+
state protoimpl.MessageState
|
|
1663
|
+
sizeCache protoimpl.SizeCache
|
|
1664
|
+
unknownFields protoimpl.UnknownFields
|
|
1665
|
+
|
|
1666
|
+
SiteIds []string `protobuf:"bytes,1,rep,name=site_ids,json=siteIds,proto3" json:"site_ids,omitempty"`
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
func (x *GetInstallsForMultipleSitesRequest) Reset() {
|
|
1670
|
+
*x = GetInstallsForMultipleSitesRequest{}
|
|
1671
|
+
if protoimpl.UnsafeEnabled {
|
|
1672
|
+
mi := &file_multitenant_proto_msgTypes[24]
|
|
1673
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1674
|
+
ms.StoreMessageInfo(mi)
|
|
1675
|
+
}
|
|
1676
|
+
}
|
|
1677
|
+
|
|
1678
|
+
func (x *GetInstallsForMultipleSitesRequest) String() string {
|
|
1679
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
func (*GetInstallsForMultipleSitesRequest) ProtoMessage() {}
|
|
1683
|
+
|
|
1684
|
+
func (x *GetInstallsForMultipleSitesRequest) ProtoReflect() protoreflect.Message {
|
|
1685
|
+
mi := &file_multitenant_proto_msgTypes[24]
|
|
1686
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1687
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1688
|
+
if ms.LoadMessageInfo() == nil {
|
|
1689
|
+
ms.StoreMessageInfo(mi)
|
|
1690
|
+
}
|
|
1691
|
+
return ms
|
|
1692
|
+
}
|
|
1693
|
+
return mi.MessageOf(x)
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
// Deprecated: Use GetInstallsForMultipleSitesRequest.ProtoReflect.Descriptor instead.
|
|
1697
|
+
func (*GetInstallsForMultipleSitesRequest) Descriptor() ([]byte, []int) {
|
|
1698
|
+
return file_multitenant_proto_rawDescGZIP(), []int{24}
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
func (x *GetInstallsForMultipleSitesRequest) GetSiteIds() []string {
|
|
1702
|
+
if x != nil {
|
|
1703
|
+
return x.SiteIds
|
|
1704
|
+
}
|
|
1705
|
+
return nil
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
type GetInstallsForMultipleSitesResponse struct {
|
|
1709
|
+
state protoimpl.MessageState
|
|
1710
|
+
sizeCache protoimpl.SizeCache
|
|
1711
|
+
unknownFields protoimpl.UnknownFields
|
|
1712
|
+
|
|
1713
|
+
Installs []*Install `protobuf:"bytes,1,rep,name=installs,proto3" json:"installs,omitempty"`
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1716
|
+
func (x *GetInstallsForMultipleSitesResponse) Reset() {
|
|
1717
|
+
*x = GetInstallsForMultipleSitesResponse{}
|
|
1718
|
+
if protoimpl.UnsafeEnabled {
|
|
1719
|
+
mi := &file_multitenant_proto_msgTypes[25]
|
|
1720
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1721
|
+
ms.StoreMessageInfo(mi)
|
|
1722
|
+
}
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1725
|
+
func (x *GetInstallsForMultipleSitesResponse) String() string {
|
|
1726
|
+
return protoimpl.X.MessageStringOf(x)
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
func (*GetInstallsForMultipleSitesResponse) ProtoMessage() {}
|
|
1730
|
+
|
|
1731
|
+
func (x *GetInstallsForMultipleSitesResponse) ProtoReflect() protoreflect.Message {
|
|
1732
|
+
mi := &file_multitenant_proto_msgTypes[25]
|
|
1733
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
1734
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1735
|
+
if ms.LoadMessageInfo() == nil {
|
|
1736
|
+
ms.StoreMessageInfo(mi)
|
|
1737
|
+
}
|
|
1738
|
+
return ms
|
|
1739
|
+
}
|
|
1740
|
+
return mi.MessageOf(x)
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1743
|
+
// Deprecated: Use GetInstallsForMultipleSitesResponse.ProtoReflect.Descriptor instead.
|
|
1744
|
+
func (*GetInstallsForMultipleSitesResponse) Descriptor() ([]byte, []int) {
|
|
1745
|
+
return file_multitenant_proto_rawDescGZIP(), []int{25}
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1748
|
+
func (x *GetInstallsForMultipleSitesResponse) GetInstalls() []*Install {
|
|
1749
|
+
if x != nil {
|
|
1750
|
+
return x.Installs
|
|
1751
|
+
}
|
|
1752
|
+
return nil
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1661
1755
|
type GetInstallbyClientIdRequest struct {
|
|
1662
1756
|
state protoimpl.MessageState
|
|
1663
1757
|
sizeCache protoimpl.SizeCache
|
|
@@ -1669,7 +1763,7 @@ type GetInstallbyClientIdRequest struct {
|
|
|
1669
1763
|
func (x *GetInstallbyClientIdRequest) Reset() {
|
|
1670
1764
|
*x = GetInstallbyClientIdRequest{}
|
|
1671
1765
|
if protoimpl.UnsafeEnabled {
|
|
1672
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
1766
|
+
mi := &file_multitenant_proto_msgTypes[26]
|
|
1673
1767
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1674
1768
|
ms.StoreMessageInfo(mi)
|
|
1675
1769
|
}
|
|
@@ -1682,7 +1776,7 @@ func (x *GetInstallbyClientIdRequest) String() string {
|
|
|
1682
1776
|
func (*GetInstallbyClientIdRequest) ProtoMessage() {}
|
|
1683
1777
|
|
|
1684
1778
|
func (x *GetInstallbyClientIdRequest) ProtoReflect() protoreflect.Message {
|
|
1685
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
1779
|
+
mi := &file_multitenant_proto_msgTypes[26]
|
|
1686
1780
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1687
1781
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1688
1782
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1695,7 +1789,7 @@ func (x *GetInstallbyClientIdRequest) ProtoReflect() protoreflect.Message {
|
|
|
1695
1789
|
|
|
1696
1790
|
// Deprecated: Use GetInstallbyClientIdRequest.ProtoReflect.Descriptor instead.
|
|
1697
1791
|
func (*GetInstallbyClientIdRequest) Descriptor() ([]byte, []int) {
|
|
1698
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
1792
|
+
return file_multitenant_proto_rawDescGZIP(), []int{26}
|
|
1699
1793
|
}
|
|
1700
1794
|
|
|
1701
1795
|
func (x *GetInstallbyClientIdRequest) GetClientId() string {
|
|
@@ -1716,7 +1810,7 @@ type GetInstallbyClientIdResponse struct {
|
|
|
1716
1810
|
func (x *GetInstallbyClientIdResponse) Reset() {
|
|
1717
1811
|
*x = GetInstallbyClientIdResponse{}
|
|
1718
1812
|
if protoimpl.UnsafeEnabled {
|
|
1719
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
1813
|
+
mi := &file_multitenant_proto_msgTypes[27]
|
|
1720
1814
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1721
1815
|
ms.StoreMessageInfo(mi)
|
|
1722
1816
|
}
|
|
@@ -1729,7 +1823,7 @@ func (x *GetInstallbyClientIdResponse) String() string {
|
|
|
1729
1823
|
func (*GetInstallbyClientIdResponse) ProtoMessage() {}
|
|
1730
1824
|
|
|
1731
1825
|
func (x *GetInstallbyClientIdResponse) ProtoReflect() protoreflect.Message {
|
|
1732
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
1826
|
+
mi := &file_multitenant_proto_msgTypes[27]
|
|
1733
1827
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1734
1828
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1735
1829
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1742,7 +1836,7 @@ func (x *GetInstallbyClientIdResponse) ProtoReflect() protoreflect.Message {
|
|
|
1742
1836
|
|
|
1743
1837
|
// Deprecated: Use GetInstallbyClientIdResponse.ProtoReflect.Descriptor instead.
|
|
1744
1838
|
func (*GetInstallbyClientIdResponse) Descriptor() ([]byte, []int) {
|
|
1745
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
1839
|
+
return file_multitenant_proto_rawDescGZIP(), []int{27}
|
|
1746
1840
|
}
|
|
1747
1841
|
|
|
1748
1842
|
func (x *GetInstallbyClientIdResponse) GetInstall() *Install {
|
|
@@ -1772,7 +1866,7 @@ type CreateInstallRequest struct {
|
|
|
1772
1866
|
func (x *CreateInstallRequest) Reset() {
|
|
1773
1867
|
*x = CreateInstallRequest{}
|
|
1774
1868
|
if protoimpl.UnsafeEnabled {
|
|
1775
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
1869
|
+
mi := &file_multitenant_proto_msgTypes[28]
|
|
1776
1870
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1777
1871
|
ms.StoreMessageInfo(mi)
|
|
1778
1872
|
}
|
|
@@ -1785,7 +1879,7 @@ func (x *CreateInstallRequest) String() string {
|
|
|
1785
1879
|
func (*CreateInstallRequest) ProtoMessage() {}
|
|
1786
1880
|
|
|
1787
1881
|
func (x *CreateInstallRequest) ProtoReflect() protoreflect.Message {
|
|
1788
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
1882
|
+
mi := &file_multitenant_proto_msgTypes[28]
|
|
1789
1883
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1790
1884
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1791
1885
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1798,7 +1892,7 @@ func (x *CreateInstallRequest) ProtoReflect() protoreflect.Message {
|
|
|
1798
1892
|
|
|
1799
1893
|
// Deprecated: Use CreateInstallRequest.ProtoReflect.Descriptor instead.
|
|
1800
1894
|
func (*CreateInstallRequest) Descriptor() ([]byte, []int) {
|
|
1801
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
1895
|
+
return file_multitenant_proto_rawDescGZIP(), []int{28}
|
|
1802
1896
|
}
|
|
1803
1897
|
|
|
1804
1898
|
func (x *CreateInstallRequest) GetSiteId() string {
|
|
@@ -1883,7 +1977,7 @@ type CreateInstallResponse struct {
|
|
|
1883
1977
|
func (x *CreateInstallResponse) Reset() {
|
|
1884
1978
|
*x = CreateInstallResponse{}
|
|
1885
1979
|
if protoimpl.UnsafeEnabled {
|
|
1886
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
1980
|
+
mi := &file_multitenant_proto_msgTypes[29]
|
|
1887
1981
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1888
1982
|
ms.StoreMessageInfo(mi)
|
|
1889
1983
|
}
|
|
@@ -1896,7 +1990,7 @@ func (x *CreateInstallResponse) String() string {
|
|
|
1896
1990
|
func (*CreateInstallResponse) ProtoMessage() {}
|
|
1897
1991
|
|
|
1898
1992
|
func (x *CreateInstallResponse) ProtoReflect() protoreflect.Message {
|
|
1899
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
1993
|
+
mi := &file_multitenant_proto_msgTypes[29]
|
|
1900
1994
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1901
1995
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1902
1996
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1909,7 +2003,7 @@ func (x *CreateInstallResponse) ProtoReflect() protoreflect.Message {
|
|
|
1909
2003
|
|
|
1910
2004
|
// Deprecated: Use CreateInstallResponse.ProtoReflect.Descriptor instead.
|
|
1911
2005
|
func (*CreateInstallResponse) Descriptor() ([]byte, []int) {
|
|
1912
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
2006
|
+
return file_multitenant_proto_rawDescGZIP(), []int{29}
|
|
1913
2007
|
}
|
|
1914
2008
|
|
|
1915
2009
|
func (x *CreateInstallResponse) GetInstall() *Install {
|
|
@@ -1944,7 +2038,7 @@ type CreateAndLinkInstallRequest struct {
|
|
|
1944
2038
|
func (x *CreateAndLinkInstallRequest) Reset() {
|
|
1945
2039
|
*x = CreateAndLinkInstallRequest{}
|
|
1946
2040
|
if protoimpl.UnsafeEnabled {
|
|
1947
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2041
|
+
mi := &file_multitenant_proto_msgTypes[30]
|
|
1948
2042
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1949
2043
|
ms.StoreMessageInfo(mi)
|
|
1950
2044
|
}
|
|
@@ -1957,7 +2051,7 @@ func (x *CreateAndLinkInstallRequest) String() string {
|
|
|
1957
2051
|
func (*CreateAndLinkInstallRequest) ProtoMessage() {}
|
|
1958
2052
|
|
|
1959
2053
|
func (x *CreateAndLinkInstallRequest) ProtoReflect() protoreflect.Message {
|
|
1960
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2054
|
+
mi := &file_multitenant_proto_msgTypes[30]
|
|
1961
2055
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1962
2056
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1963
2057
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1970,7 +2064,7 @@ func (x *CreateAndLinkInstallRequest) ProtoReflect() protoreflect.Message {
|
|
|
1970
2064
|
|
|
1971
2065
|
// Deprecated: Use CreateAndLinkInstallRequest.ProtoReflect.Descriptor instead.
|
|
1972
2066
|
func (*CreateAndLinkInstallRequest) Descriptor() ([]byte, []int) {
|
|
1973
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
2067
|
+
return file_multitenant_proto_rawDescGZIP(), []int{30}
|
|
1974
2068
|
}
|
|
1975
2069
|
|
|
1976
2070
|
func (x *CreateAndLinkInstallRequest) GetSiteId() string {
|
|
@@ -2042,7 +2136,7 @@ type CreateAndLinkInstallResponse struct {
|
|
|
2042
2136
|
func (x *CreateAndLinkInstallResponse) Reset() {
|
|
2043
2137
|
*x = CreateAndLinkInstallResponse{}
|
|
2044
2138
|
if protoimpl.UnsafeEnabled {
|
|
2045
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2139
|
+
mi := &file_multitenant_proto_msgTypes[31]
|
|
2046
2140
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2047
2141
|
ms.StoreMessageInfo(mi)
|
|
2048
2142
|
}
|
|
@@ -2055,7 +2149,7 @@ func (x *CreateAndLinkInstallResponse) String() string {
|
|
|
2055
2149
|
func (*CreateAndLinkInstallResponse) ProtoMessage() {}
|
|
2056
2150
|
|
|
2057
2151
|
func (x *CreateAndLinkInstallResponse) ProtoReflect() protoreflect.Message {
|
|
2058
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2152
|
+
mi := &file_multitenant_proto_msgTypes[31]
|
|
2059
2153
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2060
2154
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2061
2155
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2068,7 +2162,7 @@ func (x *CreateAndLinkInstallResponse) ProtoReflect() protoreflect.Message {
|
|
|
2068
2162
|
|
|
2069
2163
|
// Deprecated: Use CreateAndLinkInstallResponse.ProtoReflect.Descriptor instead.
|
|
2070
2164
|
func (*CreateAndLinkInstallResponse) Descriptor() ([]byte, []int) {
|
|
2071
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
2165
|
+
return file_multitenant_proto_rawDescGZIP(), []int{31}
|
|
2072
2166
|
}
|
|
2073
2167
|
|
|
2074
2168
|
func (x *CreateAndLinkInstallResponse) GetInstall() *Install {
|
|
@@ -2108,7 +2202,7 @@ type UpdateInstallByClientIdRequest struct {
|
|
|
2108
2202
|
func (x *UpdateInstallByClientIdRequest) Reset() {
|
|
2109
2203
|
*x = UpdateInstallByClientIdRequest{}
|
|
2110
2204
|
if protoimpl.UnsafeEnabled {
|
|
2111
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2205
|
+
mi := &file_multitenant_proto_msgTypes[32]
|
|
2112
2206
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2113
2207
|
ms.StoreMessageInfo(mi)
|
|
2114
2208
|
}
|
|
@@ -2121,7 +2215,7 @@ func (x *UpdateInstallByClientIdRequest) String() string {
|
|
|
2121
2215
|
func (*UpdateInstallByClientIdRequest) ProtoMessage() {}
|
|
2122
2216
|
|
|
2123
2217
|
func (x *UpdateInstallByClientIdRequest) ProtoReflect() protoreflect.Message {
|
|
2124
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2218
|
+
mi := &file_multitenant_proto_msgTypes[32]
|
|
2125
2219
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2126
2220
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2127
2221
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2134,7 +2228,7 @@ func (x *UpdateInstallByClientIdRequest) ProtoReflect() protoreflect.Message {
|
|
|
2134
2228
|
|
|
2135
2229
|
// Deprecated: Use UpdateInstallByClientIdRequest.ProtoReflect.Descriptor instead.
|
|
2136
2230
|
func (*UpdateInstallByClientIdRequest) Descriptor() ([]byte, []int) {
|
|
2137
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
2231
|
+
return file_multitenant_proto_rawDescGZIP(), []int{32}
|
|
2138
2232
|
}
|
|
2139
2233
|
|
|
2140
2234
|
func (x *UpdateInstallByClientIdRequest) GetClientId() string {
|
|
@@ -2190,7 +2284,7 @@ type UpdateInstallByClientIdResponse struct {
|
|
|
2190
2284
|
func (x *UpdateInstallByClientIdResponse) Reset() {
|
|
2191
2285
|
*x = UpdateInstallByClientIdResponse{}
|
|
2192
2286
|
if protoimpl.UnsafeEnabled {
|
|
2193
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2287
|
+
mi := &file_multitenant_proto_msgTypes[33]
|
|
2194
2288
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2195
2289
|
ms.StoreMessageInfo(mi)
|
|
2196
2290
|
}
|
|
@@ -2203,7 +2297,7 @@ func (x *UpdateInstallByClientIdResponse) String() string {
|
|
|
2203
2297
|
func (*UpdateInstallByClientIdResponse) ProtoMessage() {}
|
|
2204
2298
|
|
|
2205
2299
|
func (x *UpdateInstallByClientIdResponse) ProtoReflect() protoreflect.Message {
|
|
2206
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2300
|
+
mi := &file_multitenant_proto_msgTypes[33]
|
|
2207
2301
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2208
2302
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2209
2303
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2216,7 +2310,7 @@ func (x *UpdateInstallByClientIdResponse) ProtoReflect() protoreflect.Message {
|
|
|
2216
2310
|
|
|
2217
2311
|
// Deprecated: Use UpdateInstallByClientIdResponse.ProtoReflect.Descriptor instead.
|
|
2218
2312
|
func (*UpdateInstallByClientIdResponse) Descriptor() ([]byte, []int) {
|
|
2219
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
2313
|
+
return file_multitenant_proto_rawDescGZIP(), []int{33}
|
|
2220
2314
|
}
|
|
2221
2315
|
|
|
2222
2316
|
func (x *UpdateInstallByClientIdResponse) GetInstall() *Install {
|
|
@@ -2238,7 +2332,7 @@ type RotateInstallByClientIdRequest struct {
|
|
|
2238
2332
|
func (x *RotateInstallByClientIdRequest) Reset() {
|
|
2239
2333
|
*x = RotateInstallByClientIdRequest{}
|
|
2240
2334
|
if protoimpl.UnsafeEnabled {
|
|
2241
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2335
|
+
mi := &file_multitenant_proto_msgTypes[34]
|
|
2242
2336
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2243
2337
|
ms.StoreMessageInfo(mi)
|
|
2244
2338
|
}
|
|
@@ -2251,7 +2345,7 @@ func (x *RotateInstallByClientIdRequest) String() string {
|
|
|
2251
2345
|
func (*RotateInstallByClientIdRequest) ProtoMessage() {}
|
|
2252
2346
|
|
|
2253
2347
|
func (x *RotateInstallByClientIdRequest) ProtoReflect() protoreflect.Message {
|
|
2254
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2348
|
+
mi := &file_multitenant_proto_msgTypes[34]
|
|
2255
2349
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2256
2350
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2257
2351
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2264,7 +2358,7 @@ func (x *RotateInstallByClientIdRequest) ProtoReflect() protoreflect.Message {
|
|
|
2264
2358
|
|
|
2265
2359
|
// Deprecated: Use RotateInstallByClientIdRequest.ProtoReflect.Descriptor instead.
|
|
2266
2360
|
func (*RotateInstallByClientIdRequest) Descriptor() ([]byte, []int) {
|
|
2267
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
2361
|
+
return file_multitenant_proto_rawDescGZIP(), []int{34}
|
|
2268
2362
|
}
|
|
2269
2363
|
|
|
2270
2364
|
func (x *RotateInstallByClientIdRequest) GetClientId() string {
|
|
@@ -2295,7 +2389,7 @@ type RotateInstallByClientIdResponse struct {
|
|
|
2295
2389
|
func (x *RotateInstallByClientIdResponse) Reset() {
|
|
2296
2390
|
*x = RotateInstallByClientIdResponse{}
|
|
2297
2391
|
if protoimpl.UnsafeEnabled {
|
|
2298
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2392
|
+
mi := &file_multitenant_proto_msgTypes[35]
|
|
2299
2393
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2300
2394
|
ms.StoreMessageInfo(mi)
|
|
2301
2395
|
}
|
|
@@ -2308,7 +2402,7 @@ func (x *RotateInstallByClientIdResponse) String() string {
|
|
|
2308
2402
|
func (*RotateInstallByClientIdResponse) ProtoMessage() {}
|
|
2309
2403
|
|
|
2310
2404
|
func (x *RotateInstallByClientIdResponse) ProtoReflect() protoreflect.Message {
|
|
2311
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2405
|
+
mi := &file_multitenant_proto_msgTypes[35]
|
|
2312
2406
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2313
2407
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2314
2408
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2321,7 +2415,7 @@ func (x *RotateInstallByClientIdResponse) ProtoReflect() protoreflect.Message {
|
|
|
2321
2415
|
|
|
2322
2416
|
// Deprecated: Use RotateInstallByClientIdResponse.ProtoReflect.Descriptor instead.
|
|
2323
2417
|
func (*RotateInstallByClientIdResponse) Descriptor() ([]byte, []int) {
|
|
2324
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
2418
|
+
return file_multitenant_proto_rawDescGZIP(), []int{35}
|
|
2325
2419
|
}
|
|
2326
2420
|
|
|
2327
2421
|
func (x *RotateInstallByClientIdResponse) GetSuccess() bool {
|
|
@@ -2366,7 +2460,7 @@ type UnlinkInstallByClientIdRequest struct {
|
|
|
2366
2460
|
func (x *UnlinkInstallByClientIdRequest) Reset() {
|
|
2367
2461
|
*x = UnlinkInstallByClientIdRequest{}
|
|
2368
2462
|
if protoimpl.UnsafeEnabled {
|
|
2369
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2463
|
+
mi := &file_multitenant_proto_msgTypes[36]
|
|
2370
2464
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2371
2465
|
ms.StoreMessageInfo(mi)
|
|
2372
2466
|
}
|
|
@@ -2379,7 +2473,7 @@ func (x *UnlinkInstallByClientIdRequest) String() string {
|
|
|
2379
2473
|
func (*UnlinkInstallByClientIdRequest) ProtoMessage() {}
|
|
2380
2474
|
|
|
2381
2475
|
func (x *UnlinkInstallByClientIdRequest) ProtoReflect() protoreflect.Message {
|
|
2382
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2476
|
+
mi := &file_multitenant_proto_msgTypes[36]
|
|
2383
2477
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2384
2478
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2385
2479
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2392,7 +2486,7 @@ func (x *UnlinkInstallByClientIdRequest) ProtoReflect() protoreflect.Message {
|
|
|
2392
2486
|
|
|
2393
2487
|
// Deprecated: Use UnlinkInstallByClientIdRequest.ProtoReflect.Descriptor instead.
|
|
2394
2488
|
func (*UnlinkInstallByClientIdRequest) Descriptor() ([]byte, []int) {
|
|
2395
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
2489
|
+
return file_multitenant_proto_rawDescGZIP(), []int{36}
|
|
2396
2490
|
}
|
|
2397
2491
|
|
|
2398
2492
|
func (x *UnlinkInstallByClientIdRequest) GetClientId() string {
|
|
@@ -2434,7 +2528,7 @@ type UnlinkInstallByClientIdResponse struct {
|
|
|
2434
2528
|
func (x *UnlinkInstallByClientIdResponse) Reset() {
|
|
2435
2529
|
*x = UnlinkInstallByClientIdResponse{}
|
|
2436
2530
|
if protoimpl.UnsafeEnabled {
|
|
2437
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2531
|
+
mi := &file_multitenant_proto_msgTypes[37]
|
|
2438
2532
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2439
2533
|
ms.StoreMessageInfo(mi)
|
|
2440
2534
|
}
|
|
@@ -2447,7 +2541,7 @@ func (x *UnlinkInstallByClientIdResponse) String() string {
|
|
|
2447
2541
|
func (*UnlinkInstallByClientIdResponse) ProtoMessage() {}
|
|
2448
2542
|
|
|
2449
2543
|
func (x *UnlinkInstallByClientIdResponse) ProtoReflect() protoreflect.Message {
|
|
2450
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2544
|
+
mi := &file_multitenant_proto_msgTypes[37]
|
|
2451
2545
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2452
2546
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2453
2547
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2460,7 +2554,7 @@ func (x *UnlinkInstallByClientIdResponse) ProtoReflect() protoreflect.Message {
|
|
|
2460
2554
|
|
|
2461
2555
|
// Deprecated: Use UnlinkInstallByClientIdResponse.ProtoReflect.Descriptor instead.
|
|
2462
2556
|
func (*UnlinkInstallByClientIdResponse) Descriptor() ([]byte, []int) {
|
|
2463
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
2557
|
+
return file_multitenant_proto_rawDescGZIP(), []int{37}
|
|
2464
2558
|
}
|
|
2465
2559
|
|
|
2466
2560
|
func (x *UnlinkInstallByClientIdResponse) GetSuccess() bool {
|
|
@@ -2485,7 +2579,7 @@ type LinkTrialInstallByClientIdRequest struct {
|
|
|
2485
2579
|
func (x *LinkTrialInstallByClientIdRequest) Reset() {
|
|
2486
2580
|
*x = LinkTrialInstallByClientIdRequest{}
|
|
2487
2581
|
if protoimpl.UnsafeEnabled {
|
|
2488
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2582
|
+
mi := &file_multitenant_proto_msgTypes[38]
|
|
2489
2583
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2490
2584
|
ms.StoreMessageInfo(mi)
|
|
2491
2585
|
}
|
|
@@ -2498,7 +2592,7 @@ func (x *LinkTrialInstallByClientIdRequest) String() string {
|
|
|
2498
2592
|
func (*LinkTrialInstallByClientIdRequest) ProtoMessage() {}
|
|
2499
2593
|
|
|
2500
2594
|
func (x *LinkTrialInstallByClientIdRequest) ProtoReflect() protoreflect.Message {
|
|
2501
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2595
|
+
mi := &file_multitenant_proto_msgTypes[38]
|
|
2502
2596
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2503
2597
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2504
2598
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2511,7 +2605,7 @@ func (x *LinkTrialInstallByClientIdRequest) ProtoReflect() protoreflect.Message
|
|
|
2511
2605
|
|
|
2512
2606
|
// Deprecated: Use LinkTrialInstallByClientIdRequest.ProtoReflect.Descriptor instead.
|
|
2513
2607
|
func (*LinkTrialInstallByClientIdRequest) Descriptor() ([]byte, []int) {
|
|
2514
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
2608
|
+
return file_multitenant_proto_rawDescGZIP(), []int{38}
|
|
2515
2609
|
}
|
|
2516
2610
|
|
|
2517
2611
|
func (x *LinkTrialInstallByClientIdRequest) GetClientId() string {
|
|
@@ -2563,7 +2657,7 @@ type LinkTrialInstallByClientIdResponse struct {
|
|
|
2563
2657
|
func (x *LinkTrialInstallByClientIdResponse) Reset() {
|
|
2564
2658
|
*x = LinkTrialInstallByClientIdResponse{}
|
|
2565
2659
|
if protoimpl.UnsafeEnabled {
|
|
2566
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2660
|
+
mi := &file_multitenant_proto_msgTypes[39]
|
|
2567
2661
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2568
2662
|
ms.StoreMessageInfo(mi)
|
|
2569
2663
|
}
|
|
@@ -2576,7 +2670,7 @@ func (x *LinkTrialInstallByClientIdResponse) String() string {
|
|
|
2576
2670
|
func (*LinkTrialInstallByClientIdResponse) ProtoMessage() {}
|
|
2577
2671
|
|
|
2578
2672
|
func (x *LinkTrialInstallByClientIdResponse) ProtoReflect() protoreflect.Message {
|
|
2579
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2673
|
+
mi := &file_multitenant_proto_msgTypes[39]
|
|
2580
2674
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2581
2675
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2582
2676
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2589,7 +2683,7 @@ func (x *LinkTrialInstallByClientIdResponse) ProtoReflect() protoreflect.Message
|
|
|
2589
2683
|
|
|
2590
2684
|
// Deprecated: Use LinkTrialInstallByClientIdResponse.ProtoReflect.Descriptor instead.
|
|
2591
2685
|
func (*LinkTrialInstallByClientIdResponse) Descriptor() ([]byte, []int) {
|
|
2592
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
2686
|
+
return file_multitenant_proto_rawDescGZIP(), []int{39}
|
|
2593
2687
|
}
|
|
2594
2688
|
|
|
2595
2689
|
func (x *LinkTrialInstallByClientIdResponse) GetInstall() *Install {
|
|
@@ -2633,7 +2727,7 @@ type RemoveInstallDataBySiteIdRequest struct {
|
|
|
2633
2727
|
func (x *RemoveInstallDataBySiteIdRequest) Reset() {
|
|
2634
2728
|
*x = RemoveInstallDataBySiteIdRequest{}
|
|
2635
2729
|
if protoimpl.UnsafeEnabled {
|
|
2636
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2730
|
+
mi := &file_multitenant_proto_msgTypes[40]
|
|
2637
2731
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2638
2732
|
ms.StoreMessageInfo(mi)
|
|
2639
2733
|
}
|
|
@@ -2646,7 +2740,7 @@ func (x *RemoveInstallDataBySiteIdRequest) String() string {
|
|
|
2646
2740
|
func (*RemoveInstallDataBySiteIdRequest) ProtoMessage() {}
|
|
2647
2741
|
|
|
2648
2742
|
func (x *RemoveInstallDataBySiteIdRequest) ProtoReflect() protoreflect.Message {
|
|
2649
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2743
|
+
mi := &file_multitenant_proto_msgTypes[40]
|
|
2650
2744
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2651
2745
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2652
2746
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2659,7 +2753,7 @@ func (x *RemoveInstallDataBySiteIdRequest) ProtoReflect() protoreflect.Message {
|
|
|
2659
2753
|
|
|
2660
2754
|
// Deprecated: Use RemoveInstallDataBySiteIdRequest.ProtoReflect.Descriptor instead.
|
|
2661
2755
|
func (*RemoveInstallDataBySiteIdRequest) Descriptor() ([]byte, []int) {
|
|
2662
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
2756
|
+
return file_multitenant_proto_rawDescGZIP(), []int{40}
|
|
2663
2757
|
}
|
|
2664
2758
|
|
|
2665
2759
|
func (x *RemoveInstallDataBySiteIdRequest) GetSiteId() string {
|
|
@@ -2694,7 +2788,7 @@ type RemoveInstallDataBySiteIdResponse struct {
|
|
|
2694
2788
|
func (x *RemoveInstallDataBySiteIdResponse) Reset() {
|
|
2695
2789
|
*x = RemoveInstallDataBySiteIdResponse{}
|
|
2696
2790
|
if protoimpl.UnsafeEnabled {
|
|
2697
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2791
|
+
mi := &file_multitenant_proto_msgTypes[41]
|
|
2698
2792
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2699
2793
|
ms.StoreMessageInfo(mi)
|
|
2700
2794
|
}
|
|
@@ -2707,7 +2801,7 @@ func (x *RemoveInstallDataBySiteIdResponse) String() string {
|
|
|
2707
2801
|
func (*RemoveInstallDataBySiteIdResponse) ProtoMessage() {}
|
|
2708
2802
|
|
|
2709
2803
|
func (x *RemoveInstallDataBySiteIdResponse) ProtoReflect() protoreflect.Message {
|
|
2710
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2804
|
+
mi := &file_multitenant_proto_msgTypes[41]
|
|
2711
2805
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2712
2806
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2713
2807
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2720,7 +2814,7 @@ func (x *RemoveInstallDataBySiteIdResponse) ProtoReflect() protoreflect.Message
|
|
|
2720
2814
|
|
|
2721
2815
|
// Deprecated: Use RemoveInstallDataBySiteIdResponse.ProtoReflect.Descriptor instead.
|
|
2722
2816
|
func (*RemoveInstallDataBySiteIdResponse) Descriptor() ([]byte, []int) {
|
|
2723
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
2817
|
+
return file_multitenant_proto_rawDescGZIP(), []int{41}
|
|
2724
2818
|
}
|
|
2725
2819
|
|
|
2726
2820
|
func (x *RemoveInstallDataBySiteIdResponse) GetResult() []*RemoveInstallDataBySiteIdResponse_Result {
|
|
@@ -2742,7 +2836,7 @@ type GetDuplicatedInstallsByGlobalIdRequest struct {
|
|
|
2742
2836
|
func (x *GetDuplicatedInstallsByGlobalIdRequest) Reset() {
|
|
2743
2837
|
*x = GetDuplicatedInstallsByGlobalIdRequest{}
|
|
2744
2838
|
if protoimpl.UnsafeEnabled {
|
|
2745
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2839
|
+
mi := &file_multitenant_proto_msgTypes[42]
|
|
2746
2840
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2747
2841
|
ms.StoreMessageInfo(mi)
|
|
2748
2842
|
}
|
|
@@ -2755,7 +2849,7 @@ func (x *GetDuplicatedInstallsByGlobalIdRequest) String() string {
|
|
|
2755
2849
|
func (*GetDuplicatedInstallsByGlobalIdRequest) ProtoMessage() {}
|
|
2756
2850
|
|
|
2757
2851
|
func (x *GetDuplicatedInstallsByGlobalIdRequest) ProtoReflect() protoreflect.Message {
|
|
2758
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2852
|
+
mi := &file_multitenant_proto_msgTypes[42]
|
|
2759
2853
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2760
2854
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2761
2855
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2768,7 +2862,7 @@ func (x *GetDuplicatedInstallsByGlobalIdRequest) ProtoReflect() protoreflect.Mes
|
|
|
2768
2862
|
|
|
2769
2863
|
// Deprecated: Use GetDuplicatedInstallsByGlobalIdRequest.ProtoReflect.Descriptor instead.
|
|
2770
2864
|
func (*GetDuplicatedInstallsByGlobalIdRequest) Descriptor() ([]byte, []int) {
|
|
2771
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
2865
|
+
return file_multitenant_proto_rawDescGZIP(), []int{42}
|
|
2772
2866
|
}
|
|
2773
2867
|
|
|
2774
2868
|
func (x *GetDuplicatedInstallsByGlobalIdRequest) GetSiteId() string {
|
|
@@ -2796,7 +2890,7 @@ type GetDuplicatedInstallsByGlobalIdResponse struct {
|
|
|
2796
2890
|
func (x *GetDuplicatedInstallsByGlobalIdResponse) Reset() {
|
|
2797
2891
|
*x = GetDuplicatedInstallsByGlobalIdResponse{}
|
|
2798
2892
|
if protoimpl.UnsafeEnabled {
|
|
2799
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2893
|
+
mi := &file_multitenant_proto_msgTypes[43]
|
|
2800
2894
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2801
2895
|
ms.StoreMessageInfo(mi)
|
|
2802
2896
|
}
|
|
@@ -2809,7 +2903,7 @@ func (x *GetDuplicatedInstallsByGlobalIdResponse) String() string {
|
|
|
2809
2903
|
func (*GetDuplicatedInstallsByGlobalIdResponse) ProtoMessage() {}
|
|
2810
2904
|
|
|
2811
2905
|
func (x *GetDuplicatedInstallsByGlobalIdResponse) ProtoReflect() protoreflect.Message {
|
|
2812
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2906
|
+
mi := &file_multitenant_proto_msgTypes[43]
|
|
2813
2907
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2814
2908
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2815
2909
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2822,7 +2916,7 @@ func (x *GetDuplicatedInstallsByGlobalIdResponse) ProtoReflect() protoreflect.Me
|
|
|
2822
2916
|
|
|
2823
2917
|
// Deprecated: Use GetDuplicatedInstallsByGlobalIdResponse.ProtoReflect.Descriptor instead.
|
|
2824
2918
|
func (*GetDuplicatedInstallsByGlobalIdResponse) Descriptor() ([]byte, []int) {
|
|
2825
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
2919
|
+
return file_multitenant_proto_rawDescGZIP(), []int{43}
|
|
2826
2920
|
}
|
|
2827
2921
|
|
|
2828
2922
|
func (x *GetDuplicatedInstallsByGlobalIdResponse) GetInstall() []*Install {
|
|
@@ -2844,7 +2938,7 @@ type GetUserPermissionsRequest struct {
|
|
|
2844
2938
|
func (x *GetUserPermissionsRequest) Reset() {
|
|
2845
2939
|
*x = GetUserPermissionsRequest{}
|
|
2846
2940
|
if protoimpl.UnsafeEnabled {
|
|
2847
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2941
|
+
mi := &file_multitenant_proto_msgTypes[44]
|
|
2848
2942
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2849
2943
|
ms.StoreMessageInfo(mi)
|
|
2850
2944
|
}
|
|
@@ -2857,7 +2951,7 @@ func (x *GetUserPermissionsRequest) String() string {
|
|
|
2857
2951
|
func (*GetUserPermissionsRequest) ProtoMessage() {}
|
|
2858
2952
|
|
|
2859
2953
|
func (x *GetUserPermissionsRequest) ProtoReflect() protoreflect.Message {
|
|
2860
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2954
|
+
mi := &file_multitenant_proto_msgTypes[44]
|
|
2861
2955
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2862
2956
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2863
2957
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2870,7 +2964,7 @@ func (x *GetUserPermissionsRequest) ProtoReflect() protoreflect.Message {
|
|
|
2870
2964
|
|
|
2871
2965
|
// Deprecated: Use GetUserPermissionsRequest.ProtoReflect.Descriptor instead.
|
|
2872
2966
|
func (*GetUserPermissionsRequest) Descriptor() ([]byte, []int) {
|
|
2873
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
2967
|
+
return file_multitenant_proto_rawDescGZIP(), []int{44}
|
|
2874
2968
|
}
|
|
2875
2969
|
|
|
2876
2970
|
func (x *GetUserPermissionsRequest) GetSiteId() string {
|
|
@@ -2898,7 +2992,7 @@ type GetUserPermissionsResponse struct {
|
|
|
2898
2992
|
func (x *GetUserPermissionsResponse) Reset() {
|
|
2899
2993
|
*x = GetUserPermissionsResponse{}
|
|
2900
2994
|
if protoimpl.UnsafeEnabled {
|
|
2901
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
2995
|
+
mi := &file_multitenant_proto_msgTypes[45]
|
|
2902
2996
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2903
2997
|
ms.StoreMessageInfo(mi)
|
|
2904
2998
|
}
|
|
@@ -2911,7 +3005,7 @@ func (x *GetUserPermissionsResponse) String() string {
|
|
|
2911
3005
|
func (*GetUserPermissionsResponse) ProtoMessage() {}
|
|
2912
3006
|
|
|
2913
3007
|
func (x *GetUserPermissionsResponse) ProtoReflect() protoreflect.Message {
|
|
2914
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3008
|
+
mi := &file_multitenant_proto_msgTypes[45]
|
|
2915
3009
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2916
3010
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2917
3011
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2924,7 +3018,7 @@ func (x *GetUserPermissionsResponse) ProtoReflect() protoreflect.Message {
|
|
|
2924
3018
|
|
|
2925
3019
|
// Deprecated: Use GetUserPermissionsResponse.ProtoReflect.Descriptor instead.
|
|
2926
3020
|
func (*GetUserPermissionsResponse) Descriptor() ([]byte, []int) {
|
|
2927
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3021
|
+
return file_multitenant_proto_rawDescGZIP(), []int{45}
|
|
2928
3022
|
}
|
|
2929
3023
|
|
|
2930
3024
|
func (x *GetUserPermissionsResponse) GetRoles() []*GetUserPermissionsResponse_Role {
|
|
@@ -2945,7 +3039,7 @@ type ValidateApplicationPersonalAccessTokenRequest struct {
|
|
|
2945
3039
|
func (x *ValidateApplicationPersonalAccessTokenRequest) Reset() {
|
|
2946
3040
|
*x = ValidateApplicationPersonalAccessTokenRequest{}
|
|
2947
3041
|
if protoimpl.UnsafeEnabled {
|
|
2948
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3042
|
+
mi := &file_multitenant_proto_msgTypes[46]
|
|
2949
3043
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2950
3044
|
ms.StoreMessageInfo(mi)
|
|
2951
3045
|
}
|
|
@@ -2958,7 +3052,7 @@ func (x *ValidateApplicationPersonalAccessTokenRequest) String() string {
|
|
|
2958
3052
|
func (*ValidateApplicationPersonalAccessTokenRequest) ProtoMessage() {}
|
|
2959
3053
|
|
|
2960
3054
|
func (x *ValidateApplicationPersonalAccessTokenRequest) ProtoReflect() protoreflect.Message {
|
|
2961
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3055
|
+
mi := &file_multitenant_proto_msgTypes[46]
|
|
2962
3056
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2963
3057
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2964
3058
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2971,7 +3065,7 @@ func (x *ValidateApplicationPersonalAccessTokenRequest) ProtoReflect() protorefl
|
|
|
2971
3065
|
|
|
2972
3066
|
// Deprecated: Use ValidateApplicationPersonalAccessTokenRequest.ProtoReflect.Descriptor instead.
|
|
2973
3067
|
func (*ValidateApplicationPersonalAccessTokenRequest) Descriptor() ([]byte, []int) {
|
|
2974
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3068
|
+
return file_multitenant_proto_rawDescGZIP(), []int{46}
|
|
2975
3069
|
}
|
|
2976
3070
|
|
|
2977
3071
|
func (x *ValidateApplicationPersonalAccessTokenRequest) GetPersonalAccessToken() string {
|
|
@@ -2993,7 +3087,7 @@ type ValidateApplicationPersonalAccessTokenResponse struct {
|
|
|
2993
3087
|
func (x *ValidateApplicationPersonalAccessTokenResponse) Reset() {
|
|
2994
3088
|
*x = ValidateApplicationPersonalAccessTokenResponse{}
|
|
2995
3089
|
if protoimpl.UnsafeEnabled {
|
|
2996
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3090
|
+
mi := &file_multitenant_proto_msgTypes[47]
|
|
2997
3091
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2998
3092
|
ms.StoreMessageInfo(mi)
|
|
2999
3093
|
}
|
|
@@ -3006,7 +3100,7 @@ func (x *ValidateApplicationPersonalAccessTokenResponse) String() string {
|
|
|
3006
3100
|
func (*ValidateApplicationPersonalAccessTokenResponse) ProtoMessage() {}
|
|
3007
3101
|
|
|
3008
3102
|
func (x *ValidateApplicationPersonalAccessTokenResponse) ProtoReflect() protoreflect.Message {
|
|
3009
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3103
|
+
mi := &file_multitenant_proto_msgTypes[47]
|
|
3010
3104
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3011
3105
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3012
3106
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3019,7 +3113,7 @@ func (x *ValidateApplicationPersonalAccessTokenResponse) ProtoReflect() protoref
|
|
|
3019
3113
|
|
|
3020
3114
|
// Deprecated: Use ValidateApplicationPersonalAccessTokenResponse.ProtoReflect.Descriptor instead.
|
|
3021
3115
|
func (*ValidateApplicationPersonalAccessTokenResponse) Descriptor() ([]byte, []int) {
|
|
3022
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3116
|
+
return file_multitenant_proto_rawDescGZIP(), []int{47}
|
|
3023
3117
|
}
|
|
3024
3118
|
|
|
3025
3119
|
func (x *ValidateApplicationPersonalAccessTokenResponse) GetUserId() string {
|
|
@@ -3056,7 +3150,7 @@ type DisableWebhookEmailRequest struct {
|
|
|
3056
3150
|
func (x *DisableWebhookEmailRequest) Reset() {
|
|
3057
3151
|
*x = DisableWebhookEmailRequest{}
|
|
3058
3152
|
if protoimpl.UnsafeEnabled {
|
|
3059
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3153
|
+
mi := &file_multitenant_proto_msgTypes[48]
|
|
3060
3154
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3061
3155
|
ms.StoreMessageInfo(mi)
|
|
3062
3156
|
}
|
|
@@ -3069,7 +3163,7 @@ func (x *DisableWebhookEmailRequest) String() string {
|
|
|
3069
3163
|
func (*DisableWebhookEmailRequest) ProtoMessage() {}
|
|
3070
3164
|
|
|
3071
3165
|
func (x *DisableWebhookEmailRequest) ProtoReflect() protoreflect.Message {
|
|
3072
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3166
|
+
mi := &file_multitenant_proto_msgTypes[48]
|
|
3073
3167
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3074
3168
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3075
3169
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3082,7 +3176,7 @@ func (x *DisableWebhookEmailRequest) ProtoReflect() protoreflect.Message {
|
|
|
3082
3176
|
|
|
3083
3177
|
// Deprecated: Use DisableWebhookEmailRequest.ProtoReflect.Descriptor instead.
|
|
3084
3178
|
func (*DisableWebhookEmailRequest) Descriptor() ([]byte, []int) {
|
|
3085
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3179
|
+
return file_multitenant_proto_rawDescGZIP(), []int{48}
|
|
3086
3180
|
}
|
|
3087
3181
|
|
|
3088
3182
|
func (x *DisableWebhookEmailRequest) GetApplicationName() string {
|
|
@@ -3154,7 +3248,7 @@ type DisableWebhookEmailResponse struct {
|
|
|
3154
3248
|
func (x *DisableWebhookEmailResponse) Reset() {
|
|
3155
3249
|
*x = DisableWebhookEmailResponse{}
|
|
3156
3250
|
if protoimpl.UnsafeEnabled {
|
|
3157
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3251
|
+
mi := &file_multitenant_proto_msgTypes[49]
|
|
3158
3252
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3159
3253
|
ms.StoreMessageInfo(mi)
|
|
3160
3254
|
}
|
|
@@ -3167,7 +3261,7 @@ func (x *DisableWebhookEmailResponse) String() string {
|
|
|
3167
3261
|
func (*DisableWebhookEmailResponse) ProtoMessage() {}
|
|
3168
3262
|
|
|
3169
3263
|
func (x *DisableWebhookEmailResponse) ProtoReflect() protoreflect.Message {
|
|
3170
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3264
|
+
mi := &file_multitenant_proto_msgTypes[49]
|
|
3171
3265
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3172
3266
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3173
3267
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3180,7 +3274,7 @@ func (x *DisableWebhookEmailResponse) ProtoReflect() protoreflect.Message {
|
|
|
3180
3274
|
|
|
3181
3275
|
// Deprecated: Use DisableWebhookEmailResponse.ProtoReflect.Descriptor instead.
|
|
3182
3276
|
func (*DisableWebhookEmailResponse) Descriptor() ([]byte, []int) {
|
|
3183
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3277
|
+
return file_multitenant_proto_rawDescGZIP(), []int{49}
|
|
3184
3278
|
}
|
|
3185
3279
|
|
|
3186
3280
|
func (x *DisableWebhookEmailResponse) GetMailSent() bool {
|
|
@@ -3201,7 +3295,7 @@ type Site struct {
|
|
|
3201
3295
|
func (x *Site) Reset() {
|
|
3202
3296
|
*x = Site{}
|
|
3203
3297
|
if protoimpl.UnsafeEnabled {
|
|
3204
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3298
|
+
mi := &file_multitenant_proto_msgTypes[50]
|
|
3205
3299
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3206
3300
|
ms.StoreMessageInfo(mi)
|
|
3207
3301
|
}
|
|
@@ -3214,7 +3308,7 @@ func (x *Site) String() string {
|
|
|
3214
3308
|
func (*Site) ProtoMessage() {}
|
|
3215
3309
|
|
|
3216
3310
|
func (x *Site) ProtoReflect() protoreflect.Message {
|
|
3217
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3311
|
+
mi := &file_multitenant_proto_msgTypes[50]
|
|
3218
3312
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3219
3313
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3220
3314
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3227,7 +3321,7 @@ func (x *Site) ProtoReflect() protoreflect.Message {
|
|
|
3227
3321
|
|
|
3228
3322
|
// Deprecated: Use Site.ProtoReflect.Descriptor instead.
|
|
3229
3323
|
func (*Site) Descriptor() ([]byte, []int) {
|
|
3230
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3324
|
+
return file_multitenant_proto_rawDescGZIP(), []int{50}
|
|
3231
3325
|
}
|
|
3232
3326
|
|
|
3233
3327
|
func (x *Site) GetId() string {
|
|
@@ -3249,7 +3343,7 @@ type AuthorizedSitesRequest struct {
|
|
|
3249
3343
|
func (x *AuthorizedSitesRequest) Reset() {
|
|
3250
3344
|
*x = AuthorizedSitesRequest{}
|
|
3251
3345
|
if protoimpl.UnsafeEnabled {
|
|
3252
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3346
|
+
mi := &file_multitenant_proto_msgTypes[51]
|
|
3253
3347
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3254
3348
|
ms.StoreMessageInfo(mi)
|
|
3255
3349
|
}
|
|
@@ -3262,7 +3356,7 @@ func (x *AuthorizedSitesRequest) String() string {
|
|
|
3262
3356
|
func (*AuthorizedSitesRequest) ProtoMessage() {}
|
|
3263
3357
|
|
|
3264
3358
|
func (x *AuthorizedSitesRequest) ProtoReflect() protoreflect.Message {
|
|
3265
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3359
|
+
mi := &file_multitenant_proto_msgTypes[51]
|
|
3266
3360
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3267
3361
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3268
3362
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3275,7 +3369,7 @@ func (x *AuthorizedSitesRequest) ProtoReflect() protoreflect.Message {
|
|
|
3275
3369
|
|
|
3276
3370
|
// Deprecated: Use AuthorizedSitesRequest.ProtoReflect.Descriptor instead.
|
|
3277
3371
|
func (*AuthorizedSitesRequest) Descriptor() ([]byte, []int) {
|
|
3278
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3372
|
+
return file_multitenant_proto_rawDescGZIP(), []int{51}
|
|
3279
3373
|
}
|
|
3280
3374
|
|
|
3281
3375
|
func (x *AuthorizedSitesRequest) GetApplicationId() string {
|
|
@@ -3303,7 +3397,7 @@ type AuthorizedSitesResponse struct {
|
|
|
3303
3397
|
func (x *AuthorizedSitesResponse) Reset() {
|
|
3304
3398
|
*x = AuthorizedSitesResponse{}
|
|
3305
3399
|
if protoimpl.UnsafeEnabled {
|
|
3306
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3400
|
+
mi := &file_multitenant_proto_msgTypes[52]
|
|
3307
3401
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3308
3402
|
ms.StoreMessageInfo(mi)
|
|
3309
3403
|
}
|
|
@@ -3316,7 +3410,7 @@ func (x *AuthorizedSitesResponse) String() string {
|
|
|
3316
3410
|
func (*AuthorizedSitesResponse) ProtoMessage() {}
|
|
3317
3411
|
|
|
3318
3412
|
func (x *AuthorizedSitesResponse) ProtoReflect() protoreflect.Message {
|
|
3319
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3413
|
+
mi := &file_multitenant_proto_msgTypes[52]
|
|
3320
3414
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3321
3415
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3322
3416
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3329,7 +3423,7 @@ func (x *AuthorizedSitesResponse) ProtoReflect() protoreflect.Message {
|
|
|
3329
3423
|
|
|
3330
3424
|
// Deprecated: Use AuthorizedSitesResponse.ProtoReflect.Descriptor instead.
|
|
3331
3425
|
func (*AuthorizedSitesResponse) Descriptor() ([]byte, []int) {
|
|
3332
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3426
|
+
return file_multitenant_proto_rawDescGZIP(), []int{52}
|
|
3333
3427
|
}
|
|
3334
3428
|
|
|
3335
3429
|
func (x *AuthorizedSitesResponse) GetSite() []*Site {
|
|
@@ -3350,7 +3444,7 @@ type GetAccountIdsBySiteIdRequest struct {
|
|
|
3350
3444
|
func (x *GetAccountIdsBySiteIdRequest) Reset() {
|
|
3351
3445
|
*x = GetAccountIdsBySiteIdRequest{}
|
|
3352
3446
|
if protoimpl.UnsafeEnabled {
|
|
3353
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3447
|
+
mi := &file_multitenant_proto_msgTypes[53]
|
|
3354
3448
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3355
3449
|
ms.StoreMessageInfo(mi)
|
|
3356
3450
|
}
|
|
@@ -3363,7 +3457,7 @@ func (x *GetAccountIdsBySiteIdRequest) String() string {
|
|
|
3363
3457
|
func (*GetAccountIdsBySiteIdRequest) ProtoMessage() {}
|
|
3364
3458
|
|
|
3365
3459
|
func (x *GetAccountIdsBySiteIdRequest) ProtoReflect() protoreflect.Message {
|
|
3366
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3460
|
+
mi := &file_multitenant_proto_msgTypes[53]
|
|
3367
3461
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3368
3462
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3369
3463
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3376,7 +3470,7 @@ func (x *GetAccountIdsBySiteIdRequest) ProtoReflect() protoreflect.Message {
|
|
|
3376
3470
|
|
|
3377
3471
|
// Deprecated: Use GetAccountIdsBySiteIdRequest.ProtoReflect.Descriptor instead.
|
|
3378
3472
|
func (*GetAccountIdsBySiteIdRequest) Descriptor() ([]byte, []int) {
|
|
3379
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3473
|
+
return file_multitenant_proto_rawDescGZIP(), []int{53}
|
|
3380
3474
|
}
|
|
3381
3475
|
|
|
3382
3476
|
func (x *GetAccountIdsBySiteIdRequest) GetSiteId() string {
|
|
@@ -3397,7 +3491,7 @@ type GetAccountIdsBySiteIdResponse struct {
|
|
|
3397
3491
|
func (x *GetAccountIdsBySiteIdResponse) Reset() {
|
|
3398
3492
|
*x = GetAccountIdsBySiteIdResponse{}
|
|
3399
3493
|
if protoimpl.UnsafeEnabled {
|
|
3400
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3494
|
+
mi := &file_multitenant_proto_msgTypes[54]
|
|
3401
3495
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3402
3496
|
ms.StoreMessageInfo(mi)
|
|
3403
3497
|
}
|
|
@@ -3410,7 +3504,7 @@ func (x *GetAccountIdsBySiteIdResponse) String() string {
|
|
|
3410
3504
|
func (*GetAccountIdsBySiteIdResponse) ProtoMessage() {}
|
|
3411
3505
|
|
|
3412
3506
|
func (x *GetAccountIdsBySiteIdResponse) ProtoReflect() protoreflect.Message {
|
|
3413
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3507
|
+
mi := &file_multitenant_proto_msgTypes[54]
|
|
3414
3508
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3415
3509
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3416
3510
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3423,7 +3517,7 @@ func (x *GetAccountIdsBySiteIdResponse) ProtoReflect() protoreflect.Message {
|
|
|
3423
3517
|
|
|
3424
3518
|
// Deprecated: Use GetAccountIdsBySiteIdResponse.ProtoReflect.Descriptor instead.
|
|
3425
3519
|
func (*GetAccountIdsBySiteIdResponse) Descriptor() ([]byte, []int) {
|
|
3426
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3520
|
+
return file_multitenant_proto_rawDescGZIP(), []int{54}
|
|
3427
3521
|
}
|
|
3428
3522
|
|
|
3429
3523
|
func (x *GetAccountIdsBySiteIdResponse) GetAccountIds() []string {
|
|
@@ -3445,7 +3539,7 @@ type CheckManagerInApplicationRequest struct {
|
|
|
3445
3539
|
func (x *CheckManagerInApplicationRequest) Reset() {
|
|
3446
3540
|
*x = CheckManagerInApplicationRequest{}
|
|
3447
3541
|
if protoimpl.UnsafeEnabled {
|
|
3448
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3542
|
+
mi := &file_multitenant_proto_msgTypes[55]
|
|
3449
3543
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3450
3544
|
ms.StoreMessageInfo(mi)
|
|
3451
3545
|
}
|
|
@@ -3458,7 +3552,7 @@ func (x *CheckManagerInApplicationRequest) String() string {
|
|
|
3458
3552
|
func (*CheckManagerInApplicationRequest) ProtoMessage() {}
|
|
3459
3553
|
|
|
3460
3554
|
func (x *CheckManagerInApplicationRequest) ProtoReflect() protoreflect.Message {
|
|
3461
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3555
|
+
mi := &file_multitenant_proto_msgTypes[55]
|
|
3462
3556
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3463
3557
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3464
3558
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3471,7 +3565,7 @@ func (x *CheckManagerInApplicationRequest) ProtoReflect() protoreflect.Message {
|
|
|
3471
3565
|
|
|
3472
3566
|
// Deprecated: Use CheckManagerInApplicationRequest.ProtoReflect.Descriptor instead.
|
|
3473
3567
|
func (*CheckManagerInApplicationRequest) Descriptor() ([]byte, []int) {
|
|
3474
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3568
|
+
return file_multitenant_proto_rawDescGZIP(), []int{55}
|
|
3475
3569
|
}
|
|
3476
3570
|
|
|
3477
3571
|
func (x *CheckManagerInApplicationRequest) GetApplicationId() string {
|
|
@@ -3499,7 +3593,7 @@ type CheckManagerInApplicationResponse struct {
|
|
|
3499
3593
|
func (x *CheckManagerInApplicationResponse) Reset() {
|
|
3500
3594
|
*x = CheckManagerInApplicationResponse{}
|
|
3501
3595
|
if protoimpl.UnsafeEnabled {
|
|
3502
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3596
|
+
mi := &file_multitenant_proto_msgTypes[56]
|
|
3503
3597
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3504
3598
|
ms.StoreMessageInfo(mi)
|
|
3505
3599
|
}
|
|
@@ -3512,7 +3606,7 @@ func (x *CheckManagerInApplicationResponse) String() string {
|
|
|
3512
3606
|
func (*CheckManagerInApplicationResponse) ProtoMessage() {}
|
|
3513
3607
|
|
|
3514
3608
|
func (x *CheckManagerInApplicationResponse) ProtoReflect() protoreflect.Message {
|
|
3515
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3609
|
+
mi := &file_multitenant_proto_msgTypes[56]
|
|
3516
3610
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3517
3611
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3518
3612
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3525,7 +3619,7 @@ func (x *CheckManagerInApplicationResponse) ProtoReflect() protoreflect.Message
|
|
|
3525
3619
|
|
|
3526
3620
|
// Deprecated: Use CheckManagerInApplicationResponse.ProtoReflect.Descriptor instead.
|
|
3527
3621
|
func (*CheckManagerInApplicationResponse) Descriptor() ([]byte, []int) {
|
|
3528
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3622
|
+
return file_multitenant_proto_rawDescGZIP(), []int{56}
|
|
3529
3623
|
}
|
|
3530
3624
|
|
|
3531
3625
|
func (x *CheckManagerInApplicationResponse) GetIsManager() bool {
|
|
@@ -3552,7 +3646,7 @@ type Subscription struct {
|
|
|
3552
3646
|
func (x *Subscription) Reset() {
|
|
3553
3647
|
*x = Subscription{}
|
|
3554
3648
|
if protoimpl.UnsafeEnabled {
|
|
3555
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3649
|
+
mi := &file_multitenant_proto_msgTypes[57]
|
|
3556
3650
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3557
3651
|
ms.StoreMessageInfo(mi)
|
|
3558
3652
|
}
|
|
@@ -3565,7 +3659,7 @@ func (x *Subscription) String() string {
|
|
|
3565
3659
|
func (*Subscription) ProtoMessage() {}
|
|
3566
3660
|
|
|
3567
3661
|
func (x *Subscription) ProtoReflect() protoreflect.Message {
|
|
3568
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3662
|
+
mi := &file_multitenant_proto_msgTypes[57]
|
|
3569
3663
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3570
3664
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3571
3665
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3578,7 +3672,7 @@ func (x *Subscription) ProtoReflect() protoreflect.Message {
|
|
|
3578
3672
|
|
|
3579
3673
|
// Deprecated: Use Subscription.ProtoReflect.Descriptor instead.
|
|
3580
3674
|
func (*Subscription) Descriptor() ([]byte, []int) {
|
|
3581
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3675
|
+
return file_multitenant_proto_rawDescGZIP(), []int{57}
|
|
3582
3676
|
}
|
|
3583
3677
|
|
|
3584
3678
|
func (x *Subscription) GetId() string {
|
|
@@ -3645,7 +3739,7 @@ type UpdateSiteSubscriptionRequest struct {
|
|
|
3645
3739
|
func (x *UpdateSiteSubscriptionRequest) Reset() {
|
|
3646
3740
|
*x = UpdateSiteSubscriptionRequest{}
|
|
3647
3741
|
if protoimpl.UnsafeEnabled {
|
|
3648
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3742
|
+
mi := &file_multitenant_proto_msgTypes[58]
|
|
3649
3743
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3650
3744
|
ms.StoreMessageInfo(mi)
|
|
3651
3745
|
}
|
|
@@ -3658,7 +3752,7 @@ func (x *UpdateSiteSubscriptionRequest) String() string {
|
|
|
3658
3752
|
func (*UpdateSiteSubscriptionRequest) ProtoMessage() {}
|
|
3659
3753
|
|
|
3660
3754
|
func (x *UpdateSiteSubscriptionRequest) ProtoReflect() protoreflect.Message {
|
|
3661
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3755
|
+
mi := &file_multitenant_proto_msgTypes[58]
|
|
3662
3756
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3663
3757
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3664
3758
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3671,7 +3765,7 @@ func (x *UpdateSiteSubscriptionRequest) ProtoReflect() protoreflect.Message {
|
|
|
3671
3765
|
|
|
3672
3766
|
// Deprecated: Use UpdateSiteSubscriptionRequest.ProtoReflect.Descriptor instead.
|
|
3673
3767
|
func (*UpdateSiteSubscriptionRequest) Descriptor() ([]byte, []int) {
|
|
3674
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3768
|
+
return file_multitenant_proto_rawDescGZIP(), []int{58}
|
|
3675
3769
|
}
|
|
3676
3770
|
|
|
3677
3771
|
func (x *UpdateSiteSubscriptionRequest) GetSiteId() string {
|
|
@@ -3720,7 +3814,7 @@ type UpdateSiteSubscriptionResponse struct {
|
|
|
3720
3814
|
func (x *UpdateSiteSubscriptionResponse) Reset() {
|
|
3721
3815
|
*x = UpdateSiteSubscriptionResponse{}
|
|
3722
3816
|
if protoimpl.UnsafeEnabled {
|
|
3723
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3817
|
+
mi := &file_multitenant_proto_msgTypes[59]
|
|
3724
3818
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3725
3819
|
ms.StoreMessageInfo(mi)
|
|
3726
3820
|
}
|
|
@@ -3733,7 +3827,7 @@ func (x *UpdateSiteSubscriptionResponse) String() string {
|
|
|
3733
3827
|
func (*UpdateSiteSubscriptionResponse) ProtoMessage() {}
|
|
3734
3828
|
|
|
3735
3829
|
func (x *UpdateSiteSubscriptionResponse) ProtoReflect() protoreflect.Message {
|
|
3736
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3830
|
+
mi := &file_multitenant_proto_msgTypes[59]
|
|
3737
3831
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3738
3832
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3739
3833
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3746,7 +3840,7 @@ func (x *UpdateSiteSubscriptionResponse) ProtoReflect() protoreflect.Message {
|
|
|
3746
3840
|
|
|
3747
3841
|
// Deprecated: Use UpdateSiteSubscriptionResponse.ProtoReflect.Descriptor instead.
|
|
3748
3842
|
func (*UpdateSiteSubscriptionResponse) Descriptor() ([]byte, []int) {
|
|
3749
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3843
|
+
return file_multitenant_proto_rawDescGZIP(), []int{59}
|
|
3750
3844
|
}
|
|
3751
3845
|
|
|
3752
3846
|
func (x *UpdateSiteSubscriptionResponse) GetSubscription() *Subscription {
|
|
@@ -3767,7 +3861,7 @@ type CreateTrialSiteAndInstallerRequest struct {
|
|
|
3767
3861
|
func (x *CreateTrialSiteAndInstallerRequest) Reset() {
|
|
3768
3862
|
*x = CreateTrialSiteAndInstallerRequest{}
|
|
3769
3863
|
if protoimpl.UnsafeEnabled {
|
|
3770
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3864
|
+
mi := &file_multitenant_proto_msgTypes[60]
|
|
3771
3865
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3772
3866
|
ms.StoreMessageInfo(mi)
|
|
3773
3867
|
}
|
|
@@ -3780,7 +3874,7 @@ func (x *CreateTrialSiteAndInstallerRequest) String() string {
|
|
|
3780
3874
|
func (*CreateTrialSiteAndInstallerRequest) ProtoMessage() {}
|
|
3781
3875
|
|
|
3782
3876
|
func (x *CreateTrialSiteAndInstallerRequest) ProtoReflect() protoreflect.Message {
|
|
3783
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3877
|
+
mi := &file_multitenant_proto_msgTypes[60]
|
|
3784
3878
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3785
3879
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3786
3880
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3793,7 +3887,7 @@ func (x *CreateTrialSiteAndInstallerRequest) ProtoReflect() protoreflect.Message
|
|
|
3793
3887
|
|
|
3794
3888
|
// Deprecated: Use CreateTrialSiteAndInstallerRequest.ProtoReflect.Descriptor instead.
|
|
3795
3889
|
func (*CreateTrialSiteAndInstallerRequest) Descriptor() ([]byte, []int) {
|
|
3796
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3890
|
+
return file_multitenant_proto_rawDescGZIP(), []int{60}
|
|
3797
3891
|
}
|
|
3798
3892
|
|
|
3799
3893
|
func (x *CreateTrialSiteAndInstallerRequest) GetUserId() string {
|
|
@@ -3814,7 +3908,7 @@ type CreateTrialSiteAndInstallerResponse struct {
|
|
|
3814
3908
|
func (x *CreateTrialSiteAndInstallerResponse) Reset() {
|
|
3815
3909
|
*x = CreateTrialSiteAndInstallerResponse{}
|
|
3816
3910
|
if protoimpl.UnsafeEnabled {
|
|
3817
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3911
|
+
mi := &file_multitenant_proto_msgTypes[61]
|
|
3818
3912
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3819
3913
|
ms.StoreMessageInfo(mi)
|
|
3820
3914
|
}
|
|
@@ -3827,7 +3921,7 @@ func (x *CreateTrialSiteAndInstallerResponse) String() string {
|
|
|
3827
3921
|
func (*CreateTrialSiteAndInstallerResponse) ProtoMessage() {}
|
|
3828
3922
|
|
|
3829
3923
|
func (x *CreateTrialSiteAndInstallerResponse) ProtoReflect() protoreflect.Message {
|
|
3830
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3924
|
+
mi := &file_multitenant_proto_msgTypes[61]
|
|
3831
3925
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3832
3926
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3833
3927
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3840,7 +3934,7 @@ func (x *CreateTrialSiteAndInstallerResponse) ProtoReflect() protoreflect.Messag
|
|
|
3840
3934
|
|
|
3841
3935
|
// Deprecated: Use CreateTrialSiteAndInstallerResponse.ProtoReflect.Descriptor instead.
|
|
3842
3936
|
func (*CreateTrialSiteAndInstallerResponse) Descriptor() ([]byte, []int) {
|
|
3843
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3937
|
+
return file_multitenant_proto_rawDescGZIP(), []int{61}
|
|
3844
3938
|
}
|
|
3845
3939
|
|
|
3846
3940
|
func (x *CreateTrialSiteAndInstallerResponse) GetInstallerCredentials() string {
|
|
@@ -3861,7 +3955,7 @@ type GetInstallationLicenseByClientIdRequest struct {
|
|
|
3861
3955
|
func (x *GetInstallationLicenseByClientIdRequest) Reset() {
|
|
3862
3956
|
*x = GetInstallationLicenseByClientIdRequest{}
|
|
3863
3957
|
if protoimpl.UnsafeEnabled {
|
|
3864
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3958
|
+
mi := &file_multitenant_proto_msgTypes[62]
|
|
3865
3959
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3866
3960
|
ms.StoreMessageInfo(mi)
|
|
3867
3961
|
}
|
|
@@ -3874,7 +3968,7 @@ func (x *GetInstallationLicenseByClientIdRequest) String() string {
|
|
|
3874
3968
|
func (*GetInstallationLicenseByClientIdRequest) ProtoMessage() {}
|
|
3875
3969
|
|
|
3876
3970
|
func (x *GetInstallationLicenseByClientIdRequest) ProtoReflect() protoreflect.Message {
|
|
3877
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
3971
|
+
mi := &file_multitenant_proto_msgTypes[62]
|
|
3878
3972
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3879
3973
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3880
3974
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3887,7 +3981,7 @@ func (x *GetInstallationLicenseByClientIdRequest) ProtoReflect() protoreflect.Me
|
|
|
3887
3981
|
|
|
3888
3982
|
// Deprecated: Use GetInstallationLicenseByClientIdRequest.ProtoReflect.Descriptor instead.
|
|
3889
3983
|
func (*GetInstallationLicenseByClientIdRequest) Descriptor() ([]byte, []int) {
|
|
3890
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
3984
|
+
return file_multitenant_proto_rawDescGZIP(), []int{62}
|
|
3891
3985
|
}
|
|
3892
3986
|
|
|
3893
3987
|
func (x *GetInstallationLicenseByClientIdRequest) GetClientId() string {
|
|
@@ -3908,7 +4002,7 @@ type GetInstallationLicenseByClientIdResponse struct {
|
|
|
3908
4002
|
func (x *GetInstallationLicenseByClientIdResponse) Reset() {
|
|
3909
4003
|
*x = GetInstallationLicenseByClientIdResponse{}
|
|
3910
4004
|
if protoimpl.UnsafeEnabled {
|
|
3911
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4005
|
+
mi := &file_multitenant_proto_msgTypes[63]
|
|
3912
4006
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3913
4007
|
ms.StoreMessageInfo(mi)
|
|
3914
4008
|
}
|
|
@@ -3921,7 +4015,7 @@ func (x *GetInstallationLicenseByClientIdResponse) String() string {
|
|
|
3921
4015
|
func (*GetInstallationLicenseByClientIdResponse) ProtoMessage() {}
|
|
3922
4016
|
|
|
3923
4017
|
func (x *GetInstallationLicenseByClientIdResponse) ProtoReflect() protoreflect.Message {
|
|
3924
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4018
|
+
mi := &file_multitenant_proto_msgTypes[63]
|
|
3925
4019
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3926
4020
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3927
4021
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3934,7 +4028,7 @@ func (x *GetInstallationLicenseByClientIdResponse) ProtoReflect() protoreflect.M
|
|
|
3934
4028
|
|
|
3935
4029
|
// Deprecated: Use GetInstallationLicenseByClientIdResponse.ProtoReflect.Descriptor instead.
|
|
3936
4030
|
func (*GetInstallationLicenseByClientIdResponse) Descriptor() ([]byte, []int) {
|
|
3937
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4031
|
+
return file_multitenant_proto_rawDescGZIP(), []int{63}
|
|
3938
4032
|
}
|
|
3939
4033
|
|
|
3940
4034
|
func (x *GetInstallationLicenseByClientIdResponse) GetLicense() string {
|
|
@@ -3957,7 +4051,7 @@ type AllProfileExistsRequest struct {
|
|
|
3957
4051
|
func (x *AllProfileExistsRequest) Reset() {
|
|
3958
4052
|
*x = AllProfileExistsRequest{}
|
|
3959
4053
|
if protoimpl.UnsafeEnabled {
|
|
3960
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4054
|
+
mi := &file_multitenant_proto_msgTypes[64]
|
|
3961
4055
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3962
4056
|
ms.StoreMessageInfo(mi)
|
|
3963
4057
|
}
|
|
@@ -3970,7 +4064,7 @@ func (x *AllProfileExistsRequest) String() string {
|
|
|
3970
4064
|
func (*AllProfileExistsRequest) ProtoMessage() {}
|
|
3971
4065
|
|
|
3972
4066
|
func (x *AllProfileExistsRequest) ProtoReflect() protoreflect.Message {
|
|
3973
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4067
|
+
mi := &file_multitenant_proto_msgTypes[64]
|
|
3974
4068
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
3975
4069
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
3976
4070
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -3983,7 +4077,7 @@ func (x *AllProfileExistsRequest) ProtoReflect() protoreflect.Message {
|
|
|
3983
4077
|
|
|
3984
4078
|
// Deprecated: Use AllProfileExistsRequest.ProtoReflect.Descriptor instead.
|
|
3985
4079
|
func (*AllProfileExistsRequest) Descriptor() ([]byte, []int) {
|
|
3986
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4080
|
+
return file_multitenant_proto_rawDescGZIP(), []int{64}
|
|
3987
4081
|
}
|
|
3988
4082
|
|
|
3989
4083
|
func (x *AllProfileExistsRequest) GetSiteId() string {
|
|
@@ -4012,7 +4106,7 @@ type AllProfileExistsResponse struct {
|
|
|
4012
4106
|
func (x *AllProfileExistsResponse) Reset() {
|
|
4013
4107
|
*x = AllProfileExistsResponse{}
|
|
4014
4108
|
if protoimpl.UnsafeEnabled {
|
|
4015
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4109
|
+
mi := &file_multitenant_proto_msgTypes[65]
|
|
4016
4110
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4017
4111
|
ms.StoreMessageInfo(mi)
|
|
4018
4112
|
}
|
|
@@ -4025,7 +4119,7 @@ func (x *AllProfileExistsResponse) String() string {
|
|
|
4025
4119
|
func (*AllProfileExistsResponse) ProtoMessage() {}
|
|
4026
4120
|
|
|
4027
4121
|
func (x *AllProfileExistsResponse) ProtoReflect() protoreflect.Message {
|
|
4028
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4122
|
+
mi := &file_multitenant_proto_msgTypes[65]
|
|
4029
4123
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4030
4124
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4031
4125
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4038,7 +4132,7 @@ func (x *AllProfileExistsResponse) ProtoReflect() protoreflect.Message {
|
|
|
4038
4132
|
|
|
4039
4133
|
// Deprecated: Use AllProfileExistsResponse.ProtoReflect.Descriptor instead.
|
|
4040
4134
|
func (*AllProfileExistsResponse) Descriptor() ([]byte, []int) {
|
|
4041
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4135
|
+
return file_multitenant_proto_rawDescGZIP(), []int{65}
|
|
4042
4136
|
}
|
|
4043
4137
|
|
|
4044
4138
|
func (x *AllProfileExistsResponse) GetAll() bool {
|
|
@@ -4060,7 +4154,7 @@ type AllProfilesExistRequest struct {
|
|
|
4060
4154
|
func (x *AllProfilesExistRequest) Reset() {
|
|
4061
4155
|
*x = AllProfilesExistRequest{}
|
|
4062
4156
|
if protoimpl.UnsafeEnabled {
|
|
4063
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4157
|
+
mi := &file_multitenant_proto_msgTypes[66]
|
|
4064
4158
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4065
4159
|
ms.StoreMessageInfo(mi)
|
|
4066
4160
|
}
|
|
@@ -4073,7 +4167,7 @@ func (x *AllProfilesExistRequest) String() string {
|
|
|
4073
4167
|
func (*AllProfilesExistRequest) ProtoMessage() {}
|
|
4074
4168
|
|
|
4075
4169
|
func (x *AllProfilesExistRequest) ProtoReflect() protoreflect.Message {
|
|
4076
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4170
|
+
mi := &file_multitenant_proto_msgTypes[66]
|
|
4077
4171
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4078
4172
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4079
4173
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4086,7 +4180,7 @@ func (x *AllProfilesExistRequest) ProtoReflect() protoreflect.Message {
|
|
|
4086
4180
|
|
|
4087
4181
|
// Deprecated: Use AllProfilesExistRequest.ProtoReflect.Descriptor instead.
|
|
4088
4182
|
func (*AllProfilesExistRequest) Descriptor() ([]byte, []int) {
|
|
4089
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4183
|
+
return file_multitenant_proto_rawDescGZIP(), []int{66}
|
|
4090
4184
|
}
|
|
4091
4185
|
|
|
4092
4186
|
func (x *AllProfilesExistRequest) GetSiteId() string {
|
|
@@ -4116,7 +4210,7 @@ type AllProfilesExistResponse struct {
|
|
|
4116
4210
|
func (x *AllProfilesExistResponse) Reset() {
|
|
4117
4211
|
*x = AllProfilesExistResponse{}
|
|
4118
4212
|
if protoimpl.UnsafeEnabled {
|
|
4119
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4213
|
+
mi := &file_multitenant_proto_msgTypes[67]
|
|
4120
4214
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4121
4215
|
ms.StoreMessageInfo(mi)
|
|
4122
4216
|
}
|
|
@@ -4129,7 +4223,7 @@ func (x *AllProfilesExistResponse) String() string {
|
|
|
4129
4223
|
func (*AllProfilesExistResponse) ProtoMessage() {}
|
|
4130
4224
|
|
|
4131
4225
|
func (x *AllProfilesExistResponse) ProtoReflect() protoreflect.Message {
|
|
4132
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4226
|
+
mi := &file_multitenant_proto_msgTypes[67]
|
|
4133
4227
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4134
4228
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4135
4229
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4142,7 +4236,7 @@ func (x *AllProfilesExistResponse) ProtoReflect() protoreflect.Message {
|
|
|
4142
4236
|
|
|
4143
4237
|
// Deprecated: Use AllProfilesExistResponse.ProtoReflect.Descriptor instead.
|
|
4144
4238
|
func (*AllProfilesExistResponse) Descriptor() ([]byte, []int) {
|
|
4145
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4239
|
+
return file_multitenant_proto_rawDescGZIP(), []int{67}
|
|
4146
4240
|
}
|
|
4147
4241
|
|
|
4148
4242
|
func (x *AllProfilesExistResponse) GetAll() bool {
|
|
@@ -4177,7 +4271,7 @@ type SendInviteLocalUsersMailRequest struct {
|
|
|
4177
4271
|
func (x *SendInviteLocalUsersMailRequest) Reset() {
|
|
4178
4272
|
*x = SendInviteLocalUsersMailRequest{}
|
|
4179
4273
|
if protoimpl.UnsafeEnabled {
|
|
4180
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4274
|
+
mi := &file_multitenant_proto_msgTypes[68]
|
|
4181
4275
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4182
4276
|
ms.StoreMessageInfo(mi)
|
|
4183
4277
|
}
|
|
@@ -4190,7 +4284,7 @@ func (x *SendInviteLocalUsersMailRequest) String() string {
|
|
|
4190
4284
|
func (*SendInviteLocalUsersMailRequest) ProtoMessage() {}
|
|
4191
4285
|
|
|
4192
4286
|
func (x *SendInviteLocalUsersMailRequest) ProtoReflect() protoreflect.Message {
|
|
4193
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4287
|
+
mi := &file_multitenant_proto_msgTypes[68]
|
|
4194
4288
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4195
4289
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4196
4290
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4203,7 +4297,7 @@ func (x *SendInviteLocalUsersMailRequest) ProtoReflect() protoreflect.Message {
|
|
|
4203
4297
|
|
|
4204
4298
|
// Deprecated: Use SendInviteLocalUsersMailRequest.ProtoReflect.Descriptor instead.
|
|
4205
4299
|
func (*SendInviteLocalUsersMailRequest) Descriptor() ([]byte, []int) {
|
|
4206
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4300
|
+
return file_multitenant_proto_rawDescGZIP(), []int{68}
|
|
4207
4301
|
}
|
|
4208
4302
|
|
|
4209
4303
|
func (x *SendInviteLocalUsersMailRequest) GetSiteId() string {
|
|
@@ -4224,7 +4318,7 @@ type SendInviteLocalUsersMailResponse struct {
|
|
|
4224
4318
|
func (x *SendInviteLocalUsersMailResponse) Reset() {
|
|
4225
4319
|
*x = SendInviteLocalUsersMailResponse{}
|
|
4226
4320
|
if protoimpl.UnsafeEnabled {
|
|
4227
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4321
|
+
mi := &file_multitenant_proto_msgTypes[69]
|
|
4228
4322
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4229
4323
|
ms.StoreMessageInfo(mi)
|
|
4230
4324
|
}
|
|
@@ -4237,7 +4331,7 @@ func (x *SendInviteLocalUsersMailResponse) String() string {
|
|
|
4237
4331
|
func (*SendInviteLocalUsersMailResponse) ProtoMessage() {}
|
|
4238
4332
|
|
|
4239
4333
|
func (x *SendInviteLocalUsersMailResponse) ProtoReflect() protoreflect.Message {
|
|
4240
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4334
|
+
mi := &file_multitenant_proto_msgTypes[69]
|
|
4241
4335
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4242
4336
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4243
4337
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4250,7 +4344,7 @@ func (x *SendInviteLocalUsersMailResponse) ProtoReflect() protoreflect.Message {
|
|
|
4250
4344
|
|
|
4251
4345
|
// Deprecated: Use SendInviteLocalUsersMailResponse.ProtoReflect.Descriptor instead.
|
|
4252
4346
|
func (*SendInviteLocalUsersMailResponse) Descriptor() ([]byte, []int) {
|
|
4253
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4347
|
+
return file_multitenant_proto_rawDescGZIP(), []int{69}
|
|
4254
4348
|
}
|
|
4255
4349
|
|
|
4256
4350
|
func (x *SendInviteLocalUsersMailResponse) GetSent() bool {
|
|
@@ -4271,7 +4365,7 @@ type GetSiteSubscriptionRequest struct {
|
|
|
4271
4365
|
func (x *GetSiteSubscriptionRequest) Reset() {
|
|
4272
4366
|
*x = GetSiteSubscriptionRequest{}
|
|
4273
4367
|
if protoimpl.UnsafeEnabled {
|
|
4274
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4368
|
+
mi := &file_multitenant_proto_msgTypes[70]
|
|
4275
4369
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4276
4370
|
ms.StoreMessageInfo(mi)
|
|
4277
4371
|
}
|
|
@@ -4284,7 +4378,7 @@ func (x *GetSiteSubscriptionRequest) String() string {
|
|
|
4284
4378
|
func (*GetSiteSubscriptionRequest) ProtoMessage() {}
|
|
4285
4379
|
|
|
4286
4380
|
func (x *GetSiteSubscriptionRequest) ProtoReflect() protoreflect.Message {
|
|
4287
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4381
|
+
mi := &file_multitenant_proto_msgTypes[70]
|
|
4288
4382
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4289
4383
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4290
4384
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4297,7 +4391,7 @@ func (x *GetSiteSubscriptionRequest) ProtoReflect() protoreflect.Message {
|
|
|
4297
4391
|
|
|
4298
4392
|
// Deprecated: Use GetSiteSubscriptionRequest.ProtoReflect.Descriptor instead.
|
|
4299
4393
|
func (*GetSiteSubscriptionRequest) Descriptor() ([]byte, []int) {
|
|
4300
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4394
|
+
return file_multitenant_proto_rawDescGZIP(), []int{70}
|
|
4301
4395
|
}
|
|
4302
4396
|
|
|
4303
4397
|
func (x *GetSiteSubscriptionRequest) GetSiteId() string {
|
|
@@ -4318,7 +4412,7 @@ type GetSiteSubscriptionResponse struct {
|
|
|
4318
4412
|
func (x *GetSiteSubscriptionResponse) Reset() {
|
|
4319
4413
|
*x = GetSiteSubscriptionResponse{}
|
|
4320
4414
|
if protoimpl.UnsafeEnabled {
|
|
4321
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4415
|
+
mi := &file_multitenant_proto_msgTypes[71]
|
|
4322
4416
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4323
4417
|
ms.StoreMessageInfo(mi)
|
|
4324
4418
|
}
|
|
@@ -4331,7 +4425,7 @@ func (x *GetSiteSubscriptionResponse) String() string {
|
|
|
4331
4425
|
func (*GetSiteSubscriptionResponse) ProtoMessage() {}
|
|
4332
4426
|
|
|
4333
4427
|
func (x *GetSiteSubscriptionResponse) ProtoReflect() protoreflect.Message {
|
|
4334
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4428
|
+
mi := &file_multitenant_proto_msgTypes[71]
|
|
4335
4429
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4336
4430
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4337
4431
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4344,7 +4438,7 @@ func (x *GetSiteSubscriptionResponse) ProtoReflect() protoreflect.Message {
|
|
|
4344
4438
|
|
|
4345
4439
|
// Deprecated: Use GetSiteSubscriptionResponse.ProtoReflect.Descriptor instead.
|
|
4346
4440
|
func (*GetSiteSubscriptionResponse) Descriptor() ([]byte, []int) {
|
|
4347
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4441
|
+
return file_multitenant_proto_rawDescGZIP(), []int{71}
|
|
4348
4442
|
}
|
|
4349
4443
|
|
|
4350
4444
|
func (x *GetSiteSubscriptionResponse) GetType() SubscriptionType {
|
|
@@ -4366,7 +4460,7 @@ type CreateLinkingCodeRequest struct {
|
|
|
4366
4460
|
func (x *CreateLinkingCodeRequest) Reset() {
|
|
4367
4461
|
*x = CreateLinkingCodeRequest{}
|
|
4368
4462
|
if protoimpl.UnsafeEnabled {
|
|
4369
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4463
|
+
mi := &file_multitenant_proto_msgTypes[72]
|
|
4370
4464
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4371
4465
|
ms.StoreMessageInfo(mi)
|
|
4372
4466
|
}
|
|
@@ -4379,7 +4473,7 @@ func (x *CreateLinkingCodeRequest) String() string {
|
|
|
4379
4473
|
func (*CreateLinkingCodeRequest) ProtoMessage() {}
|
|
4380
4474
|
|
|
4381
4475
|
func (x *CreateLinkingCodeRequest) ProtoReflect() protoreflect.Message {
|
|
4382
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4476
|
+
mi := &file_multitenant_proto_msgTypes[72]
|
|
4383
4477
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4384
4478
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4385
4479
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4392,7 +4486,7 @@ func (x *CreateLinkingCodeRequest) ProtoReflect() protoreflect.Message {
|
|
|
4392
4486
|
|
|
4393
4487
|
// Deprecated: Use CreateLinkingCodeRequest.ProtoReflect.Descriptor instead.
|
|
4394
4488
|
func (*CreateLinkingCodeRequest) Descriptor() ([]byte, []int) {
|
|
4395
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4489
|
+
return file_multitenant_proto_rawDescGZIP(), []int{72}
|
|
4396
4490
|
}
|
|
4397
4491
|
|
|
4398
4492
|
func (x *CreateLinkingCodeRequest) GetSiteId() string {
|
|
@@ -4420,7 +4514,7 @@ type CreateLinkingCodeResponse struct {
|
|
|
4420
4514
|
func (x *CreateLinkingCodeResponse) Reset() {
|
|
4421
4515
|
*x = CreateLinkingCodeResponse{}
|
|
4422
4516
|
if protoimpl.UnsafeEnabled {
|
|
4423
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4517
|
+
mi := &file_multitenant_proto_msgTypes[73]
|
|
4424
4518
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4425
4519
|
ms.StoreMessageInfo(mi)
|
|
4426
4520
|
}
|
|
@@ -4433,7 +4527,7 @@ func (x *CreateLinkingCodeResponse) String() string {
|
|
|
4433
4527
|
func (*CreateLinkingCodeResponse) ProtoMessage() {}
|
|
4434
4528
|
|
|
4435
4529
|
func (x *CreateLinkingCodeResponse) ProtoReflect() protoreflect.Message {
|
|
4436
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4530
|
+
mi := &file_multitenant_proto_msgTypes[73]
|
|
4437
4531
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4438
4532
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4439
4533
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4446,7 +4540,7 @@ func (x *CreateLinkingCodeResponse) ProtoReflect() protoreflect.Message {
|
|
|
4446
4540
|
|
|
4447
4541
|
// Deprecated: Use CreateLinkingCodeResponse.ProtoReflect.Descriptor instead.
|
|
4448
4542
|
func (*CreateLinkingCodeResponse) Descriptor() ([]byte, []int) {
|
|
4449
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4543
|
+
return file_multitenant_proto_rawDescGZIP(), []int{73}
|
|
4450
4544
|
}
|
|
4451
4545
|
|
|
4452
4546
|
func (x *CreateLinkingCodeResponse) GetCode() string {
|
|
@@ -4467,7 +4561,7 @@ type GetSiteIdsWithIntegrationData struct {
|
|
|
4467
4561
|
func (x *GetSiteIdsWithIntegrationData) Reset() {
|
|
4468
4562
|
*x = GetSiteIdsWithIntegrationData{}
|
|
4469
4563
|
if protoimpl.UnsafeEnabled {
|
|
4470
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4564
|
+
mi := &file_multitenant_proto_msgTypes[74]
|
|
4471
4565
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4472
4566
|
ms.StoreMessageInfo(mi)
|
|
4473
4567
|
}
|
|
@@ -4480,7 +4574,7 @@ func (x *GetSiteIdsWithIntegrationData) String() string {
|
|
|
4480
4574
|
func (*GetSiteIdsWithIntegrationData) ProtoMessage() {}
|
|
4481
4575
|
|
|
4482
4576
|
func (x *GetSiteIdsWithIntegrationData) ProtoReflect() protoreflect.Message {
|
|
4483
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4577
|
+
mi := &file_multitenant_proto_msgTypes[74]
|
|
4484
4578
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4485
4579
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4486
4580
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4493,7 +4587,7 @@ func (x *GetSiteIdsWithIntegrationData) ProtoReflect() protoreflect.Message {
|
|
|
4493
4587
|
|
|
4494
4588
|
// Deprecated: Use GetSiteIdsWithIntegrationData.ProtoReflect.Descriptor instead.
|
|
4495
4589
|
func (*GetSiteIdsWithIntegrationData) Descriptor() ([]byte, []int) {
|
|
4496
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4590
|
+
return file_multitenant_proto_rawDescGZIP(), []int{74}
|
|
4497
4591
|
}
|
|
4498
4592
|
|
|
4499
4593
|
func (x *GetSiteIdsWithIntegrationData) GetSiteIds() []string {
|
|
@@ -4514,7 +4608,7 @@ type CheckStandardizedSoftwareEnabledRequest struct {
|
|
|
4514
4608
|
func (x *CheckStandardizedSoftwareEnabledRequest) Reset() {
|
|
4515
4609
|
*x = CheckStandardizedSoftwareEnabledRequest{}
|
|
4516
4610
|
if protoimpl.UnsafeEnabled {
|
|
4517
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4611
|
+
mi := &file_multitenant_proto_msgTypes[75]
|
|
4518
4612
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4519
4613
|
ms.StoreMessageInfo(mi)
|
|
4520
4614
|
}
|
|
@@ -4527,7 +4621,7 @@ func (x *CheckStandardizedSoftwareEnabledRequest) String() string {
|
|
|
4527
4621
|
func (*CheckStandardizedSoftwareEnabledRequest) ProtoMessage() {}
|
|
4528
4622
|
|
|
4529
4623
|
func (x *CheckStandardizedSoftwareEnabledRequest) ProtoReflect() protoreflect.Message {
|
|
4530
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4624
|
+
mi := &file_multitenant_proto_msgTypes[75]
|
|
4531
4625
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4532
4626
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4533
4627
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4540,7 +4634,7 @@ func (x *CheckStandardizedSoftwareEnabledRequest) ProtoReflect() protoreflect.Me
|
|
|
4540
4634
|
|
|
4541
4635
|
// Deprecated: Use CheckStandardizedSoftwareEnabledRequest.ProtoReflect.Descriptor instead.
|
|
4542
4636
|
func (*CheckStandardizedSoftwareEnabledRequest) Descriptor() ([]byte, []int) {
|
|
4543
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4637
|
+
return file_multitenant_proto_rawDescGZIP(), []int{75}
|
|
4544
4638
|
}
|
|
4545
4639
|
|
|
4546
4640
|
func (x *CheckStandardizedSoftwareEnabledRequest) GetSiteId() string {
|
|
@@ -4561,7 +4655,7 @@ type CheckStandardizedSoftwareEnabledResponse struct {
|
|
|
4561
4655
|
func (x *CheckStandardizedSoftwareEnabledResponse) Reset() {
|
|
4562
4656
|
*x = CheckStandardizedSoftwareEnabledResponse{}
|
|
4563
4657
|
if protoimpl.UnsafeEnabled {
|
|
4564
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4658
|
+
mi := &file_multitenant_proto_msgTypes[76]
|
|
4565
4659
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4566
4660
|
ms.StoreMessageInfo(mi)
|
|
4567
4661
|
}
|
|
@@ -4574,7 +4668,7 @@ func (x *CheckStandardizedSoftwareEnabledResponse) String() string {
|
|
|
4574
4668
|
func (*CheckStandardizedSoftwareEnabledResponse) ProtoMessage() {}
|
|
4575
4669
|
|
|
4576
4670
|
func (x *CheckStandardizedSoftwareEnabledResponse) ProtoReflect() protoreflect.Message {
|
|
4577
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4671
|
+
mi := &file_multitenant_proto_msgTypes[76]
|
|
4578
4672
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4579
4673
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4580
4674
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4587,7 +4681,7 @@ func (x *CheckStandardizedSoftwareEnabledResponse) ProtoReflect() protoreflect.M
|
|
|
4587
4681
|
|
|
4588
4682
|
// Deprecated: Use CheckStandardizedSoftwareEnabledResponse.ProtoReflect.Descriptor instead.
|
|
4589
4683
|
func (*CheckStandardizedSoftwareEnabledResponse) Descriptor() ([]byte, []int) {
|
|
4590
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4684
|
+
return file_multitenant_proto_rawDescGZIP(), []int{76}
|
|
4591
4685
|
}
|
|
4592
4686
|
|
|
4593
4687
|
func (x *CheckStandardizedSoftwareEnabledResponse) GetIsEnabled() bool {
|
|
@@ -4610,7 +4704,7 @@ type UpdateSiteMetadataRequest struct {
|
|
|
4610
4704
|
func (x *UpdateSiteMetadataRequest) Reset() {
|
|
4611
4705
|
*x = UpdateSiteMetadataRequest{}
|
|
4612
4706
|
if protoimpl.UnsafeEnabled {
|
|
4613
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4707
|
+
mi := &file_multitenant_proto_msgTypes[77]
|
|
4614
4708
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4615
4709
|
ms.StoreMessageInfo(mi)
|
|
4616
4710
|
}
|
|
@@ -4623,7 +4717,7 @@ func (x *UpdateSiteMetadataRequest) String() string {
|
|
|
4623
4717
|
func (*UpdateSiteMetadataRequest) ProtoMessage() {}
|
|
4624
4718
|
|
|
4625
4719
|
func (x *UpdateSiteMetadataRequest) ProtoReflect() protoreflect.Message {
|
|
4626
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4720
|
+
mi := &file_multitenant_proto_msgTypes[77]
|
|
4627
4721
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4628
4722
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4629
4723
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4636,7 +4730,7 @@ func (x *UpdateSiteMetadataRequest) ProtoReflect() protoreflect.Message {
|
|
|
4636
4730
|
|
|
4637
4731
|
// Deprecated: Use UpdateSiteMetadataRequest.ProtoReflect.Descriptor instead.
|
|
4638
4732
|
func (*UpdateSiteMetadataRequest) Descriptor() ([]byte, []int) {
|
|
4639
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4733
|
+
return file_multitenant_proto_rawDescGZIP(), []int{77}
|
|
4640
4734
|
}
|
|
4641
4735
|
|
|
4642
4736
|
func (x *UpdateSiteMetadataRequest) GetSiteId() string {
|
|
@@ -4671,7 +4765,7 @@ type UpdateSiteMetadataResponse struct {
|
|
|
4671
4765
|
func (x *UpdateSiteMetadataResponse) Reset() {
|
|
4672
4766
|
*x = UpdateSiteMetadataResponse{}
|
|
4673
4767
|
if protoimpl.UnsafeEnabled {
|
|
4674
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4768
|
+
mi := &file_multitenant_proto_msgTypes[78]
|
|
4675
4769
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4676
4770
|
ms.StoreMessageInfo(mi)
|
|
4677
4771
|
}
|
|
@@ -4684,7 +4778,7 @@ func (x *UpdateSiteMetadataResponse) String() string {
|
|
|
4684
4778
|
func (*UpdateSiteMetadataResponse) ProtoMessage() {}
|
|
4685
4779
|
|
|
4686
4780
|
func (x *UpdateSiteMetadataResponse) ProtoReflect() protoreflect.Message {
|
|
4687
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4781
|
+
mi := &file_multitenant_proto_msgTypes[78]
|
|
4688
4782
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4689
4783
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4690
4784
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4697,7 +4791,7 @@ func (x *UpdateSiteMetadataResponse) ProtoReflect() protoreflect.Message {
|
|
|
4697
4791
|
|
|
4698
4792
|
// Deprecated: Use UpdateSiteMetadataResponse.ProtoReflect.Descriptor instead.
|
|
4699
4793
|
func (*UpdateSiteMetadataResponse) Descriptor() ([]byte, []int) {
|
|
4700
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4794
|
+
return file_multitenant_proto_rawDescGZIP(), []int{78}
|
|
4701
4795
|
}
|
|
4702
4796
|
|
|
4703
4797
|
func (x *UpdateSiteMetadataResponse) GetSuccess() bool {
|
|
@@ -4718,7 +4812,7 @@ type GetSiteLimitsRequest struct {
|
|
|
4718
4812
|
func (x *GetSiteLimitsRequest) Reset() {
|
|
4719
4813
|
*x = GetSiteLimitsRequest{}
|
|
4720
4814
|
if protoimpl.UnsafeEnabled {
|
|
4721
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4815
|
+
mi := &file_multitenant_proto_msgTypes[79]
|
|
4722
4816
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4723
4817
|
ms.StoreMessageInfo(mi)
|
|
4724
4818
|
}
|
|
@@ -4731,7 +4825,7 @@ func (x *GetSiteLimitsRequest) String() string {
|
|
|
4731
4825
|
func (*GetSiteLimitsRequest) ProtoMessage() {}
|
|
4732
4826
|
|
|
4733
4827
|
func (x *GetSiteLimitsRequest) ProtoReflect() protoreflect.Message {
|
|
4734
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4828
|
+
mi := &file_multitenant_proto_msgTypes[79]
|
|
4735
4829
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4736
4830
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4737
4831
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4744,7 +4838,7 @@ func (x *GetSiteLimitsRequest) ProtoReflect() protoreflect.Message {
|
|
|
4744
4838
|
|
|
4745
4839
|
// Deprecated: Use GetSiteLimitsRequest.ProtoReflect.Descriptor instead.
|
|
4746
4840
|
func (*GetSiteLimitsRequest) Descriptor() ([]byte, []int) {
|
|
4747
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4841
|
+
return file_multitenant_proto_rawDescGZIP(), []int{79}
|
|
4748
4842
|
}
|
|
4749
4843
|
|
|
4750
4844
|
func (x *GetSiteLimitsRequest) GetSiteIds() []string {
|
|
@@ -4765,7 +4859,7 @@ type GetSiteLimitsResponse struct {
|
|
|
4765
4859
|
func (x *GetSiteLimitsResponse) Reset() {
|
|
4766
4860
|
*x = GetSiteLimitsResponse{}
|
|
4767
4861
|
if protoimpl.UnsafeEnabled {
|
|
4768
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4862
|
+
mi := &file_multitenant_proto_msgTypes[80]
|
|
4769
4863
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4770
4864
|
ms.StoreMessageInfo(mi)
|
|
4771
4865
|
}
|
|
@@ -4778,7 +4872,7 @@ func (x *GetSiteLimitsResponse) String() string {
|
|
|
4778
4872
|
func (*GetSiteLimitsResponse) ProtoMessage() {}
|
|
4779
4873
|
|
|
4780
4874
|
func (x *GetSiteLimitsResponse) ProtoReflect() protoreflect.Message {
|
|
4781
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4875
|
+
mi := &file_multitenant_proto_msgTypes[80]
|
|
4782
4876
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4783
4877
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4784
4878
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4791,7 +4885,7 @@ func (x *GetSiteLimitsResponse) ProtoReflect() protoreflect.Message {
|
|
|
4791
4885
|
|
|
4792
4886
|
// Deprecated: Use GetSiteLimitsResponse.ProtoReflect.Descriptor instead.
|
|
4793
4887
|
func (*GetSiteLimitsResponse) Descriptor() ([]byte, []int) {
|
|
4794
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
4888
|
+
return file_multitenant_proto_rawDescGZIP(), []int{80}
|
|
4795
4889
|
}
|
|
4796
4890
|
|
|
4797
4891
|
func (x *GetSiteLimitsResponse) GetSiteLimits() map[string]*generated_go.SiteLimits {
|
|
@@ -4813,7 +4907,7 @@ type CheckAccessToSiteByAccountIdRequest_UserInfo struct {
|
|
|
4813
4907
|
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) Reset() {
|
|
4814
4908
|
*x = CheckAccessToSiteByAccountIdRequest_UserInfo{}
|
|
4815
4909
|
if protoimpl.UnsafeEnabled {
|
|
4816
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4910
|
+
mi := &file_multitenant_proto_msgTypes[81]
|
|
4817
4911
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4818
4912
|
ms.StoreMessageInfo(mi)
|
|
4819
4913
|
}
|
|
@@ -4826,7 +4920,7 @@ func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) String() string {
|
|
|
4826
4920
|
func (*CheckAccessToSiteByAccountIdRequest_UserInfo) ProtoMessage() {}
|
|
4827
4921
|
|
|
4828
4922
|
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) ProtoReflect() protoreflect.Message {
|
|
4829
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4923
|
+
mi := &file_multitenant_proto_msgTypes[81]
|
|
4830
4924
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4831
4925
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4832
4926
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4867,7 +4961,7 @@ type Install_InstallState struct {
|
|
|
4867
4961
|
func (x *Install_InstallState) Reset() {
|
|
4868
4962
|
*x = Install_InstallState{}
|
|
4869
4963
|
if protoimpl.UnsafeEnabled {
|
|
4870
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4964
|
+
mi := &file_multitenant_proto_msgTypes[82]
|
|
4871
4965
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4872
4966
|
ms.StoreMessageInfo(mi)
|
|
4873
4967
|
}
|
|
@@ -4880,7 +4974,7 @@ func (x *Install_InstallState) String() string {
|
|
|
4880
4974
|
func (*Install_InstallState) ProtoMessage() {}
|
|
4881
4975
|
|
|
4882
4976
|
func (x *Install_InstallState) ProtoReflect() protoreflect.Message {
|
|
4883
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
4977
|
+
mi := &file_multitenant_proto_msgTypes[82]
|
|
4884
4978
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4885
4979
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4886
4980
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4917,7 +5011,7 @@ type GetInstallsBySiteRequest_Filter struct {
|
|
|
4917
5011
|
func (x *GetInstallsBySiteRequest_Filter) Reset() {
|
|
4918
5012
|
*x = GetInstallsBySiteRequest_Filter{}
|
|
4919
5013
|
if protoimpl.UnsafeEnabled {
|
|
4920
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5014
|
+
mi := &file_multitenant_proto_msgTypes[83]
|
|
4921
5015
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4922
5016
|
ms.StoreMessageInfo(mi)
|
|
4923
5017
|
}
|
|
@@ -4930,7 +5024,7 @@ func (x *GetInstallsBySiteRequest_Filter) String() string {
|
|
|
4930
5024
|
func (*GetInstallsBySiteRequest_Filter) ProtoMessage() {}
|
|
4931
5025
|
|
|
4932
5026
|
func (x *GetInstallsBySiteRequest_Filter) ProtoReflect() protoreflect.Message {
|
|
4933
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5027
|
+
mi := &file_multitenant_proto_msgTypes[83]
|
|
4934
5028
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
4935
5029
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4936
5030
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -4982,7 +5076,7 @@ type UpdateInstallByClientIdRequest_SyncerSettings struct {
|
|
|
4982
5076
|
func (x *UpdateInstallByClientIdRequest_SyncerSettings) Reset() {
|
|
4983
5077
|
*x = UpdateInstallByClientIdRequest_SyncerSettings{}
|
|
4984
5078
|
if protoimpl.UnsafeEnabled {
|
|
4985
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5079
|
+
mi := &file_multitenant_proto_msgTypes[84]
|
|
4986
5080
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
4987
5081
|
ms.StoreMessageInfo(mi)
|
|
4988
5082
|
}
|
|
@@ -4995,7 +5089,7 @@ func (x *UpdateInstallByClientIdRequest_SyncerSettings) String() string {
|
|
|
4995
5089
|
func (*UpdateInstallByClientIdRequest_SyncerSettings) ProtoMessage() {}
|
|
4996
5090
|
|
|
4997
5091
|
func (x *UpdateInstallByClientIdRequest_SyncerSettings) ProtoReflect() protoreflect.Message {
|
|
4998
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5092
|
+
mi := &file_multitenant_proto_msgTypes[84]
|
|
4999
5093
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5000
5094
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5001
5095
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5008,7 +5102,7 @@ func (x *UpdateInstallByClientIdRequest_SyncerSettings) ProtoReflect() protorefl
|
|
|
5008
5102
|
|
|
5009
5103
|
// Deprecated: Use UpdateInstallByClientIdRequest_SyncerSettings.ProtoReflect.Descriptor instead.
|
|
5010
5104
|
func (*UpdateInstallByClientIdRequest_SyncerSettings) Descriptor() ([]byte, []int) {
|
|
5011
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5105
|
+
return file_multitenant_proto_rawDescGZIP(), []int{32, 0}
|
|
5012
5106
|
}
|
|
5013
5107
|
|
|
5014
5108
|
func (x *UpdateInstallByClientIdRequest_SyncerSettings) GetSendChangedDataTimeout() string {
|
|
@@ -5051,7 +5145,7 @@ type RemoveInstallDataBySiteIdResponse_Result struct {
|
|
|
5051
5145
|
func (x *RemoveInstallDataBySiteIdResponse_Result) Reset() {
|
|
5052
5146
|
*x = RemoveInstallDataBySiteIdResponse_Result{}
|
|
5053
5147
|
if protoimpl.UnsafeEnabled {
|
|
5054
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5148
|
+
mi := &file_multitenant_proto_msgTypes[85]
|
|
5055
5149
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5056
5150
|
ms.StoreMessageInfo(mi)
|
|
5057
5151
|
}
|
|
@@ -5064,7 +5158,7 @@ func (x *RemoveInstallDataBySiteIdResponse_Result) String() string {
|
|
|
5064
5158
|
func (*RemoveInstallDataBySiteIdResponse_Result) ProtoMessage() {}
|
|
5065
5159
|
|
|
5066
5160
|
func (x *RemoveInstallDataBySiteIdResponse_Result) ProtoReflect() protoreflect.Message {
|
|
5067
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5161
|
+
mi := &file_multitenant_proto_msgTypes[85]
|
|
5068
5162
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5069
5163
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5070
5164
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5077,7 +5171,7 @@ func (x *RemoveInstallDataBySiteIdResponse_Result) ProtoReflect() protoreflect.M
|
|
|
5077
5171
|
|
|
5078
5172
|
// Deprecated: Use RemoveInstallDataBySiteIdResponse_Result.ProtoReflect.Descriptor instead.
|
|
5079
5173
|
func (*RemoveInstallDataBySiteIdResponse_Result) Descriptor() ([]byte, []int) {
|
|
5080
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5174
|
+
return file_multitenant_proto_rawDescGZIP(), []int{41, 0}
|
|
5081
5175
|
}
|
|
5082
5176
|
|
|
5083
5177
|
func (x *RemoveInstallDataBySiteIdResponse_Result) GetInstallId() string {
|
|
@@ -5106,7 +5200,7 @@ type GetUserPermissionsResponse_AuthorizationAction struct {
|
|
|
5106
5200
|
func (x *GetUserPermissionsResponse_AuthorizationAction) Reset() {
|
|
5107
5201
|
*x = GetUserPermissionsResponse_AuthorizationAction{}
|
|
5108
5202
|
if protoimpl.UnsafeEnabled {
|
|
5109
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5203
|
+
mi := &file_multitenant_proto_msgTypes[86]
|
|
5110
5204
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5111
5205
|
ms.StoreMessageInfo(mi)
|
|
5112
5206
|
}
|
|
@@ -5119,7 +5213,7 @@ func (x *GetUserPermissionsResponse_AuthorizationAction) String() string {
|
|
|
5119
5213
|
func (*GetUserPermissionsResponse_AuthorizationAction) ProtoMessage() {}
|
|
5120
5214
|
|
|
5121
5215
|
func (x *GetUserPermissionsResponse_AuthorizationAction) ProtoReflect() protoreflect.Message {
|
|
5122
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5216
|
+
mi := &file_multitenant_proto_msgTypes[86]
|
|
5123
5217
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5124
5218
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5125
5219
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5132,7 +5226,7 @@ func (x *GetUserPermissionsResponse_AuthorizationAction) ProtoReflect() protoref
|
|
|
5132
5226
|
|
|
5133
5227
|
// Deprecated: Use GetUserPermissionsResponse_AuthorizationAction.ProtoReflect.Descriptor instead.
|
|
5134
5228
|
func (*GetUserPermissionsResponse_AuthorizationAction) Descriptor() ([]byte, []int) {
|
|
5135
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5229
|
+
return file_multitenant_proto_rawDescGZIP(), []int{45, 0}
|
|
5136
5230
|
}
|
|
5137
5231
|
|
|
5138
5232
|
func (x *GetUserPermissionsResponse_AuthorizationAction) GetKey() string {
|
|
@@ -5160,7 +5254,7 @@ type GetUserPermissionsResponse_Scope struct {
|
|
|
5160
5254
|
func (x *GetUserPermissionsResponse_Scope) Reset() {
|
|
5161
5255
|
*x = GetUserPermissionsResponse_Scope{}
|
|
5162
5256
|
if protoimpl.UnsafeEnabled {
|
|
5163
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5257
|
+
mi := &file_multitenant_proto_msgTypes[87]
|
|
5164
5258
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5165
5259
|
ms.StoreMessageInfo(mi)
|
|
5166
5260
|
}
|
|
@@ -5173,7 +5267,7 @@ func (x *GetUserPermissionsResponse_Scope) String() string {
|
|
|
5173
5267
|
func (*GetUserPermissionsResponse_Scope) ProtoMessage() {}
|
|
5174
5268
|
|
|
5175
5269
|
func (x *GetUserPermissionsResponse_Scope) ProtoReflect() protoreflect.Message {
|
|
5176
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5270
|
+
mi := &file_multitenant_proto_msgTypes[87]
|
|
5177
5271
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5178
5272
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5179
5273
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5186,7 +5280,7 @@ func (x *GetUserPermissionsResponse_Scope) ProtoReflect() protoreflect.Message {
|
|
|
5186
5280
|
|
|
5187
5281
|
// Deprecated: Use GetUserPermissionsResponse_Scope.ProtoReflect.Descriptor instead.
|
|
5188
5282
|
func (*GetUserPermissionsResponse_Scope) Descriptor() ([]byte, []int) {
|
|
5189
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5283
|
+
return file_multitenant_proto_rawDescGZIP(), []int{45, 1}
|
|
5190
5284
|
}
|
|
5191
5285
|
|
|
5192
5286
|
func (x *GetUserPermissionsResponse_Scope) GetId() string {
|
|
@@ -5210,7 +5304,7 @@ type GetUserPermissionsResponse_Role struct {
|
|
|
5210
5304
|
func (x *GetUserPermissionsResponse_Role) Reset() {
|
|
5211
5305
|
*x = GetUserPermissionsResponse_Role{}
|
|
5212
5306
|
if protoimpl.UnsafeEnabled {
|
|
5213
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5307
|
+
mi := &file_multitenant_proto_msgTypes[88]
|
|
5214
5308
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5215
5309
|
ms.StoreMessageInfo(mi)
|
|
5216
5310
|
}
|
|
@@ -5223,7 +5317,7 @@ func (x *GetUserPermissionsResponse_Role) String() string {
|
|
|
5223
5317
|
func (*GetUserPermissionsResponse_Role) ProtoMessage() {}
|
|
5224
5318
|
|
|
5225
5319
|
func (x *GetUserPermissionsResponse_Role) ProtoReflect() protoreflect.Message {
|
|
5226
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5320
|
+
mi := &file_multitenant_proto_msgTypes[88]
|
|
5227
5321
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5228
5322
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5229
5323
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5236,7 +5330,7 @@ func (x *GetUserPermissionsResponse_Role) ProtoReflect() protoreflect.Message {
|
|
|
5236
5330
|
|
|
5237
5331
|
// Deprecated: Use GetUserPermissionsResponse_Role.ProtoReflect.Descriptor instead.
|
|
5238
5332
|
func (*GetUserPermissionsResponse_Role) Descriptor() ([]byte, []int) {
|
|
5239
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5333
|
+
return file_multitenant_proto_rawDescGZIP(), []int{45, 2}
|
|
5240
5334
|
}
|
|
5241
5335
|
|
|
5242
5336
|
func (x *GetUserPermissionsResponse_Role) GetId() string {
|
|
@@ -5282,7 +5376,7 @@ type DisableWebhookEmailRequest_WebhookError struct {
|
|
|
5282
5376
|
func (x *DisableWebhookEmailRequest_WebhookError) Reset() {
|
|
5283
5377
|
*x = DisableWebhookEmailRequest_WebhookError{}
|
|
5284
5378
|
if protoimpl.UnsafeEnabled {
|
|
5285
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5379
|
+
mi := &file_multitenant_proto_msgTypes[89]
|
|
5286
5380
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5287
5381
|
ms.StoreMessageInfo(mi)
|
|
5288
5382
|
}
|
|
@@ -5295,7 +5389,7 @@ func (x *DisableWebhookEmailRequest_WebhookError) String() string {
|
|
|
5295
5389
|
func (*DisableWebhookEmailRequest_WebhookError) ProtoMessage() {}
|
|
5296
5390
|
|
|
5297
5391
|
func (x *DisableWebhookEmailRequest_WebhookError) ProtoReflect() protoreflect.Message {
|
|
5298
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5392
|
+
mi := &file_multitenant_proto_msgTypes[89]
|
|
5299
5393
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5300
5394
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5301
5395
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5308,7 +5402,7 @@ func (x *DisableWebhookEmailRequest_WebhookError) ProtoReflect() protoreflect.Me
|
|
|
5308
5402
|
|
|
5309
5403
|
// Deprecated: Use DisableWebhookEmailRequest_WebhookError.ProtoReflect.Descriptor instead.
|
|
5310
5404
|
func (*DisableWebhookEmailRequest_WebhookError) Descriptor() ([]byte, []int) {
|
|
5311
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5405
|
+
return file_multitenant_proto_rawDescGZIP(), []int{48, 0}
|
|
5312
5406
|
}
|
|
5313
5407
|
|
|
5314
5408
|
func (x *DisableWebhookEmailRequest_WebhookError) GetCode() string {
|
|
@@ -5547,54 +5641,168 @@ var file_multitenant_proto_rawDesc = []byte{
|
|
|
5547
5641
|
0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22,
|
|
5548
5642
|
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
5549
5643
|
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
5550
|
-
0x6c, 0x6c, 0x52, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x22,
|
|
5551
|
-
0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
5552
|
-
0x74,
|
|
5553
|
-
|
|
5554
|
-
|
|
5555
|
-
|
|
5556
|
-
|
|
5557
|
-
|
|
5558
|
-
|
|
5559
|
-
|
|
5560
|
-
|
|
5561
|
-
|
|
5562
|
-
|
|
5563
|
-
|
|
5564
|
-
|
|
5565
|
-
|
|
5566
|
-
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
|
|
5570
|
-
|
|
5571
|
-
|
|
5572
|
-
|
|
5573
|
-
|
|
5574
|
-
|
|
5575
|
-
|
|
5576
|
-
|
|
5577
|
-
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
5581
|
-
|
|
5582
|
-
|
|
5583
|
-
|
|
5584
|
-
|
|
5644
|
+
0x6c, 0x6c, 0x52, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x22, 0x3f, 0x0a, 0x22, 0x47,
|
|
5645
|
+
0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46, 0x6f, 0x72, 0x4d, 0x75, 0x6c,
|
|
5646
|
+
0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
5647
|
+
0x74, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20,
|
|
5648
|
+
0x03, 0x28, 0x09, 0x52, 0x07, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x22, 0x65, 0x0a, 0x23,
|
|
5649
|
+
0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46, 0x6f, 0x72, 0x4d, 0x75,
|
|
5650
|
+
0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
5651
|
+
0x6e, 0x73, 0x65, 0x12, 0x3e, 0x0a, 0x08, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x18,
|
|
5652
|
+
0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
5653
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
5654
|
+
0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x08, 0x69, 0x6e, 0x73, 0x74, 0x61,
|
|
5655
|
+
0x6c, 0x6c, 0x73, 0x22, 0x3a, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
5656
|
+
0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
5657
|
+
0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18,
|
|
5658
|
+
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22,
|
|
5659
|
+
0x5c, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43,
|
|
5660
|
+
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
|
5661
|
+
0x3c, 0x0a, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
|
|
5662
|
+
0x32, 0x22, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
5663
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73,
|
|
5664
|
+
0x74, 0x61, 0x6c, 0x6c, 0x52, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x22, 0xea, 0x02,
|
|
5665
|
+
0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52,
|
|
5666
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69,
|
|
5667
|
+
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12,
|
|
5668
|
+
0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
|
5669
|
+
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61,
|
|
5670
|
+
0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
|
|
5671
|
+
0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
|
|
5672
|
+
0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05,
|
|
5673
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x12, 0x0a, 0x04,
|
|
5674
|
+
0x66, 0x71, 0x64, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x66, 0x71, 0x64, 0x6e,
|
|
5675
|
+
0x12, 0x22, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f, 0x69,
|
|
5676
|
+
0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64,
|
|
5677
|
+
0x42, 0x79, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x73,
|
|
5678
|
+
0x71, 0x73, 0x5f, 0x71, 0x75, 0x65, 0x75, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e,
|
|
5679
|
+
0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x71, 0x73, 0x51, 0x75, 0x65, 0x75, 0x65, 0x12, 0x1b,
|
|
5680
|
+
0x0a, 0x09, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28,
|
|
5681
|
+
0x09, 0x52, 0x08, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x12, 0x3a, 0x0a, 0x04, 0x74,
|
|
5682
|
+
0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
5683
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
5684
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x54, 0x79, 0x70,
|
|
5685
|
+
0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e,
|
|
5686
|
+
0x74, 0x5f, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65,
|
|
5687
|
+
0x6e, 0x74, 0x49, 0x64, 0x4a, 0x04, 0x08, 0x02, 0x10, 0x03, 0x22, 0xa6, 0x01, 0x0a, 0x15, 0x43,
|
|
5688
|
+
0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70,
|
|
5689
|
+
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x18,
|
|
5690
|
+
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
5691
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
5692
|
+
0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61,
|
|
5693
|
+
0x6c, 0x6c, 0x12, 0x4f, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c,
|
|
5694
|
+
0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
5695
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
5696
|
+
0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x43, 0x72, 0x65, 0x64, 0x65,
|
|
5697
|
+
0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x52, 0x0b, 0x63, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69,
|
|
5698
|
+
0x61, 0x6c, 0x73, 0x22, 0xb6, 0x02, 0x0a, 0x1b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6e,
|
|
5699
|
+
0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75,
|
|
5700
|
+
0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
|
|
5701
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c,
|
|
5702
|
+
0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
|
|
5703
|
+
0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12,
|
|
5704
|
+
0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03,
|
|
5705
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
|
|
5706
|
+
0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x04,
|
|
5707
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x12, 0x3a,
|
|
5708
|
+
0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x6c,
|
|
5709
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
5710
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
5711
|
+
0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x72,
|
|
5712
|
+
0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28,
|
|
5713
|
+
0x09, 0x52, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x79, 0x49, 0x64, 0x12, 0x1b,
|
|
5714
|
+
0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28,
|
|
5715
|
+
0x09, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x65,
|
|
5716
|
+
0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09,
|
|
5717
|
+
0x52, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x22, 0xc7, 0x01, 0x0a,
|
|
5718
|
+
0x1c, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e,
|
|
5719
|
+
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a,
|
|
5720
|
+
0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22,
|
|
5721
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
5722
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
5723
|
+
0x6c, 0x6c, 0x52, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x4f, 0x0a, 0x0b, 0x63,
|
|
5724
|
+
0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
|
|
5725
|
+
0x32, 0x2d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
5726
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73,
|
|
5727
|
+
0x74, 0x61, 0x6c, 0x6c, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x52,
|
|
5728
|
+
0x0b, 0x63, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x12, 0x18, 0x0a, 0x07,
|
|
5729
|
+
0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6c,
|
|
5730
|
+
0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x22, 0xb0, 0x04, 0x0a, 0x1e, 0x55, 0x70, 0x64, 0x61, 0x74,
|
|
5731
|
+
0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
|
|
5732
|
+
0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x6c, 0x69,
|
|
5733
|
+
0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6c,
|
|
5734
|
+
0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
|
|
5735
|
+
0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69,
|
|
5736
|
+
0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73,
|
|
5737
|
+
0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
|
|
5738
|
+
0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73,
|
|
5739
|
+
0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61,
|
|
5740
|
+
0x74, 0x75, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x71, 0x64, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28,
|
|
5741
|
+
0x09, 0x52, 0x04, 0x66, 0x71, 0x64, 0x6e, 0x12, 0x71, 0x0a, 0x0f, 0x73, 0x79, 0x6e, 0x63, 0x65,
|
|
5742
|
+
0x72, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b,
|
|
5743
|
+
0x32, 0x48, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
5744
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64,
|
|
5745
|
+
0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
5746
|
+
0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x53, 0x79, 0x6e, 0x63,
|
|
5747
|
+
0x65, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0e, 0x73, 0x79, 0x6e, 0x63,
|
|
5748
|
+
0x65, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x1a, 0x8c, 0x02, 0x0a, 0x0e, 0x53,
|
|
5749
|
+
0x79, 0x6e, 0x63, 0x65, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x39, 0x0a,
|
|
5750
|
+
0x19, 0x73, 0x65, 0x6e, 0x64, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x5f, 0x64, 0x61,
|
|
5751
|
+
0x74, 0x61, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
5752
|
+
0x52, 0x16, 0x73, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x44, 0x61, 0x74,
|
|
5753
|
+
0x61, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x44, 0x0a, 0x1f, 0x73, 0x65, 0x6e, 0x64,
|
|
5754
|
+
0x5f, 0x66, 0x61, 0x73, 0x74, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x64,
|
|
5755
|
+
0x61, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
5756
|
+
0x09, 0x52, 0x1b, 0x73, 0x65, 0x6e, 0x64, 0x46, 0x61, 0x73, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x67,
|
|
5757
|
+
0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x40,
|
|
5758
|
+
0x0a, 0x1d, 0x73, 0x65, 0x6e, 0x64, 0x5f, 0x6e, 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67,
|
|
5759
|
+
0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18,
|
|
5760
|
+
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x19, 0x73, 0x65, 0x6e, 0x64, 0x4e, 0x6f, 0x6e, 0x43, 0x68,
|
|
5761
|
+
0x61, 0x6e, 0x67, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74,
|
|
5762
|
+
0x12, 0x37, 0x0a, 0x18, 0x73, 0x79, 0x6e, 0x63, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61,
|
|
5763
|
+
0x6c, 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x04, 0x20, 0x01,
|
|
5764
|
+
0x28, 0x09, 0x52, 0x15, 0x73, 0x79, 0x6e, 0x63, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c,
|
|
5765
|
+
0x49, 0x6e, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x22, 0x5f, 0x0a, 0x1f, 0x55, 0x70, 0x64,
|
|
5766
|
+
0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
5767
|
+
0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x07,
|
|
5585
5768
|
0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e,
|
|
5586
5769
|
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
5587
5770
|
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
5588
|
-
0x6c, 0x52, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
5589
|
-
|
|
5590
|
-
|
|
5591
|
-
|
|
5592
|
-
|
|
5593
|
-
0x63,
|
|
5594
|
-
|
|
5595
|
-
0x74, 0x61, 0x6c, 0x6c,
|
|
5596
|
-
|
|
5597
|
-
|
|
5771
|
+
0x6c, 0x52, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x22, 0x58, 0x0a, 0x1e, 0x52, 0x6f,
|
|
5772
|
+
0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69,
|
|
5773
|
+
0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
|
|
5774
|
+
0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
5775
|
+
0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61,
|
|
5776
|
+
0x63, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61,
|
|
5777
|
+
0x63, 0x6b, 0x49, 0x64, 0x22, 0xa0, 0x01, 0x0a, 0x1f, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49,
|
|
5778
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
|
|
5779
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63,
|
|
5780
|
+
0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65,
|
|
5781
|
+
0x73, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
|
|
5782
|
+
0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x6f,
|
|
5783
|
+
0x6c, 0x64, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20,
|
|
5784
|
+
0x01, 0x28, 0x09, 0x52, 0x0c, 0x6f, 0x6c, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x49,
|
|
5785
|
+
0x64, 0x12, 0x24, 0x0a, 0x0e, 0x6e, 0x65, 0x77, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
5786
|
+
0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6e, 0x65, 0x77, 0x49, 0x6e,
|
|
5787
|
+
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x49, 0x64, 0x22, 0x9a, 0x01, 0x0a, 0x1e, 0x55, 0x6e, 0x6c, 0x69,
|
|
5788
|
+
0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
|
|
5789
|
+
0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x6c,
|
|
5790
|
+
0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63,
|
|
5791
|
+
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x6b,
|
|
5792
|
+
0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x6b,
|
|
5793
|
+
0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x64, 0x61, 0x74,
|
|
5794
|
+
0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x44,
|
|
5795
|
+
0x61, 0x74, 0x61, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6f, 0x6e, 0x70, 0x72,
|
|
5796
|
+
0x65, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x66, 0x72, 0x6f, 0x6d, 0x4f, 0x6e,
|
|
5797
|
+
0x70, 0x72, 0x65, 0x6d, 0x22, 0x3b, 0x0a, 0x1f, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e,
|
|
5798
|
+
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52,
|
|
5799
|
+
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65,
|
|
5800
|
+
0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73,
|
|
5801
|
+
0x73, 0x22, 0xde, 0x01, 0x0a, 0x21, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x49,
|
|
5802
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
|
|
5803
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e,
|
|
5804
|
+
0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65,
|
|
5805
|
+
0x6e, 0x74, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f,
|
|
5598
5806
|
0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70,
|
|
5599
5807
|
0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72,
|
|
5600
5808
|
0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65,
|
|
@@ -5604,784 +5812,691 @@ var file_multitenant_proto_rawDesc = []byte{
|
|
|
5604
5812
|
0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
5605
5813
|
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
5606
5814
|
0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79,
|
|
5607
|
-
0x70, 0x65,
|
|
5608
|
-
|
|
5609
|
-
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
|
|
5613
|
-
|
|
5614
|
-
0x6e,
|
|
5615
|
-
|
|
5616
|
-
|
|
5815
|
+
0x70, 0x65, 0x22, 0x89, 0x02, 0x0a, 0x22, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c,
|
|
5816
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
|
|
5817
|
+
0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x07, 0x69, 0x6e, 0x73,
|
|
5818
|
+
0x74, 0x61, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6c, 0x61, 0x6e,
|
|
5819
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
5820
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x07,
|
|
5821
|
+
0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x4f, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x64, 0x65,
|
|
5822
|
+
0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x6c,
|
|
5823
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
5824
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
5825
|
+
0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x52, 0x0b, 0x63, 0x72, 0x65,
|
|
5826
|
+
0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x12, 0x3a, 0x0a, 0x04, 0x73, 0x69, 0x74, 0x65,
|
|
5827
|
+
0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
5617
5828
|
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
5618
|
-
0x76, 0x31, 0x2e,
|
|
5619
|
-
|
|
5620
|
-
|
|
5621
|
-
|
|
5622
|
-
0x74,
|
|
5623
|
-
|
|
5624
|
-
|
|
5625
|
-
|
|
5626
|
-
|
|
5627
|
-
|
|
5628
|
-
|
|
5629
|
-
|
|
5630
|
-
|
|
5631
|
-
|
|
5632
|
-
|
|
5633
|
-
|
|
5634
|
-
|
|
5635
|
-
|
|
5636
|
-
|
|
5637
|
-
|
|
5638
|
-
|
|
5639
|
-
|
|
5640
|
-
|
|
5641
|
-
|
|
5642
|
-
|
|
5643
|
-
|
|
5644
|
-
|
|
5645
|
-
|
|
5646
|
-
|
|
5647
|
-
|
|
5648
|
-
|
|
5649
|
-
0x12, 0x44, 0x0a, 0x1f, 0x73, 0x65, 0x6e, 0x64, 0x5f, 0x66, 0x61, 0x73, 0x74, 0x5f, 0x63, 0x68,
|
|
5650
|
-
0x61, 0x6e, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6d, 0x65,
|
|
5651
|
-
0x6f, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x1b, 0x73, 0x65, 0x6e, 0x64, 0x46,
|
|
5652
|
-
0x61, 0x73, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x54,
|
|
5653
|
-
0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x40, 0x0a, 0x1d, 0x73, 0x65, 0x6e, 0x64, 0x5f, 0x6e,
|
|
5654
|
-
0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f,
|
|
5655
|
-
0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x19, 0x73,
|
|
5656
|
-
0x65, 0x6e, 0x64, 0x4e, 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x44, 0x61, 0x74,
|
|
5657
|
-
0x61, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x37, 0x0a, 0x18, 0x73, 0x79, 0x6e, 0x63,
|
|
5658
|
-
0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x65, 0x63,
|
|
5659
|
-
0x6f, 0x6e, 0x64, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x73, 0x79, 0x6e, 0x63,
|
|
5660
|
-
0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x49, 0x6e, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64,
|
|
5661
|
-
0x73, 0x22, 0x5f, 0x0a, 0x1f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
5662
|
-
0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70,
|
|
5829
|
+
0x76, 0x31, 0x2e, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x69, 0x74, 0x65, 0x52, 0x04,
|
|
5830
|
+
0x73, 0x69, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x18,
|
|
5831
|
+
0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x22, 0x75,
|
|
5832
|
+
0x0a, 0x20, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44,
|
|
5833
|
+
0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
5834
|
+
0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
|
|
5835
|
+
0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x69,
|
|
5836
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09,
|
|
5837
|
+
0x52, 0x0a, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x49, 0x64, 0x73, 0x12, 0x17, 0x0a, 0x07,
|
|
5838
|
+
0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
|
|
5839
|
+
0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0xc1, 0x01, 0x0a, 0x21, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65,
|
|
5840
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74,
|
|
5841
|
+
0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5b, 0x0a, 0x06, 0x72,
|
|
5842
|
+
0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x43, 0x2e, 0x6c, 0x61,
|
|
5843
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
5844
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e,
|
|
5845
|
+
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49,
|
|
5846
|
+
0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74,
|
|
5847
|
+
0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x1a, 0x3f, 0x0a, 0x06, 0x52, 0x65, 0x73, 0x75,
|
|
5848
|
+
0x6c, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x69, 0x64,
|
|
5849
|
+
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x49,
|
|
5850
|
+
0x64, 0x12, 0x16, 0x0a, 0x06, 0x71, 0x75, 0x65, 0x75, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
5851
|
+
0x08, 0x52, 0x06, 0x71, 0x75, 0x65, 0x75, 0x65, 0x64, 0x22, 0x5e, 0x0a, 0x26, 0x47, 0x65, 0x74,
|
|
5852
|
+
0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
5853
|
+
0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
5854
|
+
0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
|
|
5855
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09,
|
|
5856
|
+
0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
5857
|
+
0x08, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x22, 0x67, 0x0a, 0x27, 0x47, 0x65, 0x74,
|
|
5858
|
+
0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
5859
|
+
0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70,
|
|
5663
5860
|
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x18,
|
|
5664
|
-
0x01, 0x20,
|
|
5861
|
+
0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
5665
5862
|
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
5666
5863
|
0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61,
|
|
5667
|
-
0x6c, 0x6c, 0x22,
|
|
5668
|
-
|
|
5864
|
+
0x6c, 0x6c, 0x22, 0x53, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72,
|
|
5865
|
+
0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
|
|
5866
|
+
0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
5867
|
+
0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x63, 0x63, 0x6f,
|
|
5868
|
+
0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x63,
|
|
5869
|
+
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x22, 0xfe, 0x03, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x55,
|
|
5870
|
+
0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65,
|
|
5871
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x50, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18,
|
|
5872
|
+
0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
5873
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
5874
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73,
|
|
5875
|
+
0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x6f, 0x6c,
|
|
5876
|
+
0x65, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x1a, 0x58, 0x0a, 0x13, 0x41, 0x75, 0x74, 0x68,
|
|
5877
|
+
0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12,
|
|
5878
|
+
0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,
|
|
5879
|
+
0x79, 0x12, 0x2f, 0x0a, 0x13, 0x64, 0x65, 0x72, 0x69, 0x76, 0x65, 0x64, 0x5f, 0x70, 0x65, 0x72,
|
|
5880
|
+
0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x12,
|
|
5881
|
+
0x64, 0x65, 0x72, 0x69, 0x76, 0x65, 0x64, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f,
|
|
5882
|
+
0x6e, 0x73, 0x1a, 0x17, 0x0a, 0x05, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69,
|
|
5883
|
+
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x1a, 0x9a, 0x02, 0x0a, 0x04,
|
|
5884
|
+
0x52, 0x6f, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
5885
|
+
0x52, 0x02, 0x69, 0x64, 0x12, 0x63, 0x0a, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18,
|
|
5886
|
+
0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x49, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
5887
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
5888
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73,
|
|
5889
|
+
0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x41, 0x75, 0x74,
|
|
5890
|
+
0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e,
|
|
5891
|
+
0x52, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x48, 0x0a, 0x0d, 0x69, 0x6e, 0x73,
|
|
5892
|
+
0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
|
|
5893
|
+
0x32, 0x22, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
5894
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73,
|
|
5895
|
+
0x74, 0x61, 0x6c, 0x6c, 0x52, 0x0d, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69,
|
|
5896
|
+
0x6f, 0x6e, 0x73, 0x12, 0x53, 0x0a, 0x06, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x18, 0x04, 0x20,
|
|
5897
|
+
0x03, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
5898
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
5899
|
+
0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f,
|
|
5900
|
+
0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x63, 0x6f, 0x70, 0x65,
|
|
5901
|
+
0x52, 0x06, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x22, 0x63, 0x0a, 0x2d, 0x56, 0x61, 0x6c, 0x69,
|
|
5902
|
+
0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50,
|
|
5903
|
+
0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b,
|
|
5904
|
+
0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x32, 0x0a, 0x15, 0x70, 0x65, 0x72,
|
|
5905
|
+
0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x74, 0x6f, 0x6b,
|
|
5906
|
+
0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x13, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
|
|
5907
|
+
0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x70, 0x0a,
|
|
5908
|
+
0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
|
|
5909
|
+
0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65,
|
|
5910
|
+
0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
|
5911
|
+
0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
5912
|
+
0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x70, 0x70, 0x6c,
|
|
5913
|
+
0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
|
|
5914
|
+
0x52, 0x0d, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22,
|
|
5915
|
+
0xe8, 0x03, 0x0a, 0x1a, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f,
|
|
5916
|
+
0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x29,
|
|
5917
|
+
0x0a, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61,
|
|
5918
|
+
0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63,
|
|
5919
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x05, 0x65, 0x6d, 0x61,
|
|
5920
|
+
0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x02, 0x18, 0x01, 0x52, 0x05, 0x65, 0x6d,
|
|
5921
|
+
0x61, 0x69, 0x6c, 0x12, 0x5a, 0x0a, 0x06, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x18, 0x03, 0x20,
|
|
5922
|
+
0x03, 0x28, 0x0b, 0x32, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
5923
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
5924
|
+
0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d,
|
|
5925
|
+
0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x57, 0x65, 0x62, 0x68, 0x6f,
|
|
5926
|
+
0x6f, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x06, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x12,
|
|
5927
|
+
0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x04,
|
|
5928
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x55, 0x72, 0x6c,
|
|
5929
|
+
0x12, 0x21, 0x0a, 0x0c, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
|
|
5930
|
+
0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x4e,
|
|
5931
|
+
0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0b, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x5f, 0x75,
|
|
5932
|
+
0x72, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x42, 0x02, 0x18, 0x01, 0x52, 0x0a, 0x77, 0x65,
|
|
5933
|
+
0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x55, 0x72, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x77, 0x65, 0x62, 0x68,
|
|
5934
|
+
0x6f, 0x6f, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x77, 0x65,
|
|
5935
|
+
0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x70, 0x70, 0x6c, 0x69,
|
|
5936
|
+
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
5937
|
+
0x0d, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x1a, 0x7a,
|
|
5938
|
+
0x0a, 0x0c, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x12,
|
|
5939
|
+
0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f,
|
|
5940
|
+
0x64, 0x65, 0x12, 0x1e, 0x0a, 0x08, 0x6d, 0x65, 0x73, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02,
|
|
5941
|
+
0x20, 0x01, 0x28, 0x09, 0x42, 0x02, 0x18, 0x01, 0x52, 0x08, 0x6d, 0x65, 0x73, 0x73, 0x73, 0x61,
|
|
5942
|
+
0x67, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18,
|
|
5943
|
+
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
|
|
5944
|
+
0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
|
|
5945
|
+
0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3a, 0x0a, 0x1b, 0x44, 0x69,
|
|
5946
|
+
0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69,
|
|
5947
|
+
0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6d, 0x61, 0x69,
|
|
5948
|
+
0x6c, 0x5f, 0x73, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x6d, 0x61,
|
|
5949
|
+
0x69, 0x6c, 0x53, 0x65, 0x6e, 0x74, 0x22, 0x16, 0x0a, 0x04, 0x53, 0x69, 0x74, 0x65, 0x12, 0x0e,
|
|
5950
|
+
0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x5a,
|
|
5951
|
+
0x0a, 0x16, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65,
|
|
5952
|
+
0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x70, 0x70, 0x6c,
|
|
5953
|
+
0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
5954
|
+
0x52, 0x0d, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12,
|
|
5955
|
+
0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
5956
|
+
0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x64, 0x22, 0x4e, 0x0a, 0x17, 0x41, 0x75,
|
|
5957
|
+
0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73,
|
|
5958
|
+
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, 0x0a, 0x04, 0x73, 0x69, 0x74, 0x65, 0x18, 0x01, 0x20,
|
|
5959
|
+
0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
5960
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
5961
|
+
0x53, 0x69, 0x74, 0x65, 0x52, 0x04, 0x73, 0x69, 0x74, 0x65, 0x22, 0x37, 0x0a, 0x1c, 0x47, 0x65,
|
|
5962
|
+
0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74,
|
|
5963
|
+
0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69,
|
|
5964
|
+
0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74,
|
|
5965
|
+
0x65, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x1d, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
5966
|
+
0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70,
|
|
5967
|
+
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f,
|
|
5968
|
+
0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75,
|
|
5969
|
+
0x6e, 0x74, 0x49, 0x64, 0x73, 0x22, 0x68, 0x0a, 0x20, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61,
|
|
5970
|
+
0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
|
|
5971
|
+
0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x70, 0x70,
|
|
5972
|
+
0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
5973
|
+
0x09, 0x52, 0x0d, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64,
|
|
5974
|
+
0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02,
|
|
5975
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x64, 0x22,
|
|
5976
|
+
0x42, 0x0a, 0x21, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49,
|
|
5977
|
+
0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70,
|
|
5978
|
+
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67,
|
|
5979
|
+
0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x4d, 0x61, 0x6e, 0x61,
|
|
5980
|
+
0x67, 0x65, 0x72, 0x22, 0x82, 0x02, 0x0a, 0x0c, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
|
|
5981
|
+
0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
5982
|
+
0x52, 0x02, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18,
|
|
5983
|
+
0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x3f, 0x0a,
|
|
5984
|
+
0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x6c, 0x61,
|
|
5985
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
5986
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
|
|
5987
|
+
0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x21,
|
|
5988
|
+
0x0a, 0x0c, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x04,
|
|
5989
|
+
0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x4c, 0x69, 0x6d, 0x69,
|
|
5990
|
+
0x74, 0x12, 0x27, 0x0a, 0x0f, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
|
|
5991
|
+
0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x69,
|
|
5992
|
+
0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72,
|
|
5993
|
+
0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
|
|
5994
|
+
0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65,
|
|
5995
|
+
0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63,
|
|
5996
|
+
0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x79, 0x22, 0xe4, 0x01, 0x0a, 0x1d, 0x55, 0x70, 0x64,
|
|
5997
|
+
0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
|
|
5998
|
+
0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69,
|
|
5999
|
+
0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74,
|
|
6000
|
+
0x65, 0x49, 0x64, 0x12, 0x3f, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
6001
|
+
0x0e, 0x32, 0x2b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
6002
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x75,
|
|
6003
|
+
0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04,
|
|
6004
|
+
0x74, 0x79, 0x70, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x5f, 0x6c,
|
|
6005
|
+
0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x61, 0x73, 0x73, 0x65,
|
|
6006
|
+
0x74, 0x73, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x65, 0x78, 0x70, 0x69, 0x72,
|
|
6007
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
|
|
6008
|
+
0x52, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65,
|
|
6009
|
+
0x12, 0x1d, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x18, 0x05,
|
|
6010
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x42, 0x79, 0x22,
|
|
6011
|
+
0x6d, 0x0a, 0x1e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62,
|
|
6012
|
+
0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
6013
|
+
0x65, 0x12, 0x4b, 0x0a, 0x0c, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
|
|
6014
|
+
0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
6015
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
6016
|
+
0x2e, 0x76, 0x31, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
|
|
6017
|
+
0x52, 0x0c, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3d,
|
|
6018
|
+
0x0a, 0x22, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74,
|
|
6019
|
+
0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x71,
|
|
6020
|
+
0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18,
|
|
6021
|
+
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x5a, 0x0a,
|
|
6022
|
+
0x23, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65,
|
|
6023
|
+
0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70,
|
|
6024
|
+
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, 0x0a, 0x15, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65,
|
|
6025
|
+
0x72, 0x5f, 0x63, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x18, 0x01, 0x20,
|
|
6026
|
+
0x01, 0x28, 0x09, 0x52, 0x14, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x43, 0x72,
|
|
6027
|
+
0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x22, 0x46, 0x0a, 0x27, 0x47, 0x65, 0x74,
|
|
6028
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65,
|
|
6029
|
+
0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71,
|
|
5669
6030
|
0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69,
|
|
5670
6031
|
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
|
|
5671
|
-
0x64,
|
|
5672
|
-
|
|
5673
|
-
|
|
6032
|
+
0x64, 0x22, 0x44, 0x0a, 0x28, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61,
|
|
6033
|
+
0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69,
|
|
6034
|
+
0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a,
|
|
6035
|
+
0x07, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
|
|
6036
|
+
0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x22, 0x4e, 0x0a, 0x17, 0x41, 0x6c, 0x6c, 0x50, 0x72,
|
|
6037
|
+
0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
6038
|
+
0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
|
|
6039
|
+
0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x65,
|
|
6040
|
+
0x6d, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x65, 0x6d, 0x61,
|
|
6041
|
+
0x69, 0x6c, 0x73, 0x3a, 0x02, 0x18, 0x01, 0x22, 0x30, 0x0a, 0x18, 0x41, 0x6c, 0x6c, 0x50, 0x72,
|
|
6042
|
+
0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
6043
|
+
0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
|
|
6044
|
+
0x52, 0x03, 0x61, 0x6c, 0x6c, 0x3a, 0x02, 0x18, 0x01, 0x22, 0x4a, 0x0a, 0x17, 0x41, 0x6c, 0x6c,
|
|
6045
|
+
0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
|
|
6046
|
+
0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18,
|
|
6047
|
+
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a,
|
|
6048
|
+
0x06, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x65,
|
|
6049
|
+
0x6d, 0x61, 0x69, 0x6c, 0x73, 0x22, 0xb5, 0x01, 0x0a, 0x18, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f,
|
|
6050
|
+
0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
6051
|
+
0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52,
|
|
6052
|
+
0x03, 0x61, 0x6c, 0x6c, 0x12, 0x3e, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73,
|
|
6053
|
+
0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
6054
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
6055
|
+
0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x66,
|
|
6056
|
+
0x69, 0x6c, 0x65, 0x73, 0x12, 0x47, 0x0a, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42,
|
|
6057
|
+
0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
6058
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
6059
|
+
0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
|
6060
|
+
0x6e, 0x74, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x79, 0x22, 0x3a, 0x0a,
|
|
6061
|
+
0x1f, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c,
|
|
6062
|
+
0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
6063
|
+
0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
6064
|
+
0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x36, 0x0a, 0x20, 0x53, 0x65, 0x6e,
|
|
6065
|
+
0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72,
|
|
6066
|
+
0x73, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a,
|
|
6067
|
+
0x04, 0x73, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x73, 0x65, 0x6e,
|
|
6068
|
+
0x74, 0x22, 0x35, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73,
|
|
6069
|
+
0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
|
|
6070
|
+
0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
6071
|
+
0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x5e, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x53,
|
|
6072
|
+
0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52,
|
|
6073
|
+
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3f, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18,
|
|
6074
|
+
0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
6075
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
6076
|
+
0x31, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79,
|
|
6077
|
+
0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x52, 0x0a, 0x18, 0x43, 0x72, 0x65, 0x61,
|
|
6078
|
+
0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71,
|
|
6079
|
+
0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18,
|
|
6080
|
+
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a,
|
|
6081
|
+
0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
6082
|
+
0x09, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x2f, 0x0a, 0x19,
|
|
6083
|
+
0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64,
|
|
6084
|
+
0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64,
|
|
6085
|
+
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x22, 0x3a, 0x0a,
|
|
6086
|
+
0x1d, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49,
|
|
6087
|
+
0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x12, 0x19,
|
|
6088
|
+
0x0a, 0x08, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
|
|
6089
|
+
0x52, 0x07, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x22, 0x42, 0x0a, 0x27, 0x43, 0x68, 0x65,
|
|
6090
|
+
0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f,
|
|
6091
|
+
0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71,
|
|
6092
|
+
0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18,
|
|
6093
|
+
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x49, 0x0a,
|
|
6094
|
+
0x28, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a,
|
|
6095
|
+
0x65, 0x64, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
6096
|
+
0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f,
|
|
6097
|
+
0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69,
|
|
6098
|
+
0x73, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x5c, 0x0a, 0x19, 0x55, 0x70, 0x64, 0x61,
|
|
6099
|
+
0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65,
|
|
6100
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64,
|
|
6101
|
+
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x10,
|
|
6102
|
+
0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
|
|
6103
|
+
0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
6104
|
+
0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x36, 0x0a, 0x1a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
|
|
6105
|
+
0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70,
|
|
6106
|
+
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18,
|
|
6107
|
+
0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x31,
|
|
6108
|
+
0x0a, 0x14, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52,
|
|
6109
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69,
|
|
6110
|
+
0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64,
|
|
6111
|
+
0x73, 0x22, 0xe2, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d,
|
|
6112
|
+
0x69, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x61, 0x0a, 0x0b, 0x73,
|
|
6113
|
+
0x69, 0x74, 0x65, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
|
|
6114
|
+
0x32, 0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
6115
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
6116
|
+
0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
6117
|
+
0x73, 0x65, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x45, 0x6e, 0x74,
|
|
6118
|
+
0x72, 0x79, 0x52, 0x0a, 0x73, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x1a, 0x66,
|
|
6119
|
+
0x0a, 0x0f, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x45, 0x6e, 0x74, 0x72,
|
|
6120
|
+
0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
|
|
6121
|
+
0x6b, 0x65, 0x79, 0x12, 0x3d, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
|
|
6122
|
+
0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
6123
|
+
0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x2e, 0x76, 0x31,
|
|
6124
|
+
0x2e, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x05, 0x76, 0x61, 0x6c,
|
|
6125
|
+
0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x2a, 0x4e, 0x0a, 0x08, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f,
|
|
6126
|
+
0x64, 0x65, 0x12, 0x10, 0x0a, 0x0c, 0x55, 0x4e, 0x45, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
|
|
6127
|
+
0x45, 0x44, 0x10, 0x00, 0x12, 0x10, 0x0a, 0x0c, 0x43, 0x4c, 0x4f, 0x55, 0x44, 0x5f, 0x4e, 0x41,
|
|
6128
|
+
0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x45, 0x4d, 0x4f, 0x10, 0x02,
|
|
6129
|
+
0x12, 0x0a, 0x0a, 0x06, 0x48, 0x59, 0x42, 0x52, 0x49, 0x44, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04,
|
|
6130
|
+
0x44, 0x55, 0x41, 0x4c, 0x10, 0x04, 0x2a, 0x77, 0x0a, 0x11, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
6131
|
+
0x6c, 0x53, 0x74, 0x61, 0x74, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x24, 0x0a, 0x20, 0x49,
|
|
6132
|
+
0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c,
|
|
6133
|
+
0x55, 0x45, 0x5f, 0x55, 0x4e, 0x45, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
|
|
6134
|
+
0x00, 0x12, 0x1c, 0x0a, 0x18, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41,
|
|
6135
|
+
0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x01, 0x12,
|
|
6136
|
+
0x1e, 0x0a, 0x1a, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45,
|
|
6137
|
+
0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x02, 0x2a,
|
|
6138
|
+
0x36, 0x0a, 0x0b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x06,
|
|
6139
|
+
0x0a, 0x02, 0x49, 0x54, 0x10, 0x00, 0x12, 0x06, 0x0a, 0x02, 0x4f, 0x54, 0x10, 0x01, 0x12, 0x0c,
|
|
6140
|
+
0x0a, 0x08, 0x49, 0x54, 0x5f, 0x41, 0x47, 0x45, 0x4e, 0x54, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05,
|
|
6141
|
+
0x43, 0x4c, 0x4f, 0x55, 0x44, 0x10, 0x03, 0x2a, 0xf3, 0x01, 0x0a, 0x10, 0x53, 0x75, 0x62, 0x73,
|
|
6142
|
+
0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x28, 0x0a, 0x24,
|
|
6143
|
+
0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50,
|
|
6144
|
+
0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x45, 0x53, 0x50, 0x45, 0x43, 0x49,
|
|
6145
|
+
0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x21, 0x0a, 0x1d, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52,
|
|
6146
|
+
0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55,
|
|
6147
|
+
0x45, 0x5f, 0x54, 0x52, 0x49, 0x41, 0x4c, 0x10, 0x01, 0x12, 0x24, 0x0a, 0x20, 0x53, 0x55, 0x42,
|
|
6148
|
+
0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56,
|
|
6149
|
+
0x41, 0x4c, 0x55, 0x45, 0x5f, 0x46, 0x52, 0x45, 0x45, 0x57, 0x41, 0x52, 0x45, 0x10, 0x02, 0x12,
|
|
6150
|
+
0x23, 0x0a, 0x1f, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f,
|
|
6151
|
+
0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54,
|
|
6152
|
+
0x45, 0x52, 0x10, 0x03, 0x12, 0x1f, 0x0a, 0x1b, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50,
|
|
6153
|
+
0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f,
|
|
6154
|
+
0x50, 0x52, 0x4f, 0x10, 0x04, 0x12, 0x26, 0x0a, 0x22, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49,
|
|
6155
|
+
0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45,
|
|
6156
|
+
0x5f, 0x45, 0x4e, 0x54, 0x45, 0x52, 0x50, 0x52, 0x49, 0x53, 0x45, 0x10, 0x05, 0x32, 0xc9, 0x2a,
|
|
6157
|
+
0x0a, 0x0b, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0xa1, 0x01,
|
|
6158
|
+
0x0a, 0x1c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53,
|
|
6159
|
+
0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x3e,
|
|
6160
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
6161
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
|
|
6162
|
+
0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63,
|
|
6163
|
+
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f,
|
|
6164
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
6165
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
|
|
6166
|
+
0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63,
|
|
6167
|
+
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
6168
|
+
0x00, 0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73,
|
|
6169
|
+
0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
|
|
6170
|
+
0x64, 0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
6171
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68,
|
|
6172
|
+
0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42,
|
|
6173
|
+
0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
6174
|
+
0x1a, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
6175
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65,
|
|
6176
|
+
0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79,
|
|
5674
6177
|
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
5675
|
-
|
|
5676
|
-
|
|
5677
|
-
0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74,
|
|
5678
|
-
0x65, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x6f, 0x6c, 0x64, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61,
|
|
5679
|
-
0x6c, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6f, 0x6c, 0x64,
|
|
5680
|
-
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x6e, 0x65, 0x77,
|
|
5681
|
-
0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
|
|
5682
|
-
0x09, 0x52, 0x0c, 0x6e, 0x65, 0x77, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x49, 0x64, 0x22,
|
|
5683
|
-
0x9a, 0x01, 0x0a, 0x1e, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
5684
|
-
0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
5685
|
-
0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18,
|
|
5686
|
-
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12,
|
|
5687
|
-
0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
5688
|
-
0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x72, 0x65,
|
|
5689
|
-
0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52,
|
|
5690
|
-
0x0a, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1f, 0x0a, 0x0b, 0x66,
|
|
5691
|
-
0x72, 0x6f, 0x6d, 0x5f, 0x6f, 0x6e, 0x70, 0x72, 0x65, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08,
|
|
5692
|
-
0x52, 0x0a, 0x66, 0x72, 0x6f, 0x6d, 0x4f, 0x6e, 0x70, 0x72, 0x65, 0x6d, 0x22, 0x3b, 0x0a, 0x1f,
|
|
5693
|
-
0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43,
|
|
5694
|
-
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
|
5695
|
-
0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
|
|
5696
|
-
0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0xde, 0x01, 0x0a, 0x21, 0x4c, 0x69,
|
|
5697
|
-
0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79,
|
|
5698
|
-
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
|
|
5699
|
-
0x1b, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
|
5700
|
-
0x28, 0x09, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c,
|
|
5701
|
-
0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
|
|
5702
|
-
0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12,
|
|
5703
|
-
0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03,
|
|
5704
|
-
0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
|
|
5705
|
-
0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x04,
|
|
5706
|
-
0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x12, 0x3a,
|
|
5707
|
-
0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x6c,
|
|
6178
|
+
0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65,
|
|
6179
|
+
0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c,
|
|
5708
6180
|
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
5709
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
5710
|
-
|
|
5711
|
-
|
|
5712
|
-
|
|
5713
|
-
|
|
5714
|
-
|
|
5715
|
-
|
|
5716
|
-
|
|
5717
|
-
0x4f, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x18, 0x02,
|
|
5718
|
-
0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
5719
|
-
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
5720
|
-
0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69,
|
|
5721
|
-
0x61, 0x6c, 0x73, 0x52, 0x0b, 0x63, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73,
|
|
5722
|
-
0x12, 0x3a, 0x0a, 0x04, 0x73, 0x69, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26,
|
|
5723
|
-
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
5724
|
-
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x65, 0x76, 0x69,
|
|
5725
|
-
0x65, 0x77, 0x53, 0x69, 0x74, 0x65, 0x52, 0x04, 0x73, 0x69, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x07,
|
|
5726
|
-
0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6c,
|
|
5727
|
-
0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x22, 0x75, 0x0a, 0x20, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65,
|
|
5728
|
-
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74,
|
|
5729
|
-
0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69,
|
|
5730
|
-
0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74,
|
|
5731
|
-
0x65, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x69,
|
|
5732
|
-
0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
5733
|
-
0x6c, 0x49, 0x64, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18,
|
|
5734
|
-
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0xc1, 0x01,
|
|
5735
|
-
0x0a, 0x21, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44,
|
|
5736
|
-
0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
5737
|
-
0x6e, 0x73, 0x65, 0x12, 0x5b, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20,
|
|
5738
|
-
0x03, 0x28, 0x0b, 0x32, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
5739
|
-
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
5740
|
-
0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74,
|
|
5741
|
-
0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
5742
|
-
0x65, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
|
|
5743
|
-
0x1a, 0x3f, 0x0a, 0x06, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x6e,
|
|
5744
|
-
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
|
|
5745
|
-
0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x71, 0x75, 0x65,
|
|
5746
|
-
0x75, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x71, 0x75, 0x65, 0x75, 0x65,
|
|
5747
|
-
0x64, 0x22, 0x5e, 0x0a, 0x26, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
|
|
5748
|
-
0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62,
|
|
5749
|
-
0x61, 0x6c, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73,
|
|
5750
|
-
0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69,
|
|
5751
|
-
0x74, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x5f, 0x69,
|
|
5752
|
-
0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49,
|
|
5753
|
-
0x64, 0x22, 0x67, 0x0a, 0x27, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
|
|
5754
|
-
0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62,
|
|
5755
|
-
0x61, 0x6c, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x07,
|
|
5756
|
-
0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e,
|
|
5757
|
-
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
5758
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
5759
|
-
0x6c, 0x52, 0x07, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x22, 0x53, 0x0a, 0x19, 0x47, 0x65,
|
|
5760
|
-
0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73,
|
|
5761
|
-
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f,
|
|
5762
|
-
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64,
|
|
5763
|
-
0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02,
|
|
5764
|
-
0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x22,
|
|
5765
|
-
0xfe, 0x03, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69,
|
|
5766
|
-
0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x50,
|
|
5767
|
-
0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3a, 0x2e,
|
|
5768
|
-
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
5769
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
|
|
5770
|
-
0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70,
|
|
5771
|
-
0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73,
|
|
5772
|
-
0x1a, 0x58, 0x0a, 0x13, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
|
|
5773
|
-
0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
|
|
5774
|
-
0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2f, 0x0a, 0x13, 0x64, 0x65, 0x72,
|
|
5775
|
-
0x69, 0x76, 0x65, 0x64, 0x5f, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73,
|
|
5776
|
-
0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x12, 0x64, 0x65, 0x72, 0x69, 0x76, 0x65, 0x64, 0x50,
|
|
5777
|
-
0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x17, 0x0a, 0x05, 0x53, 0x63,
|
|
5778
|
-
0x6f, 0x70, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
5779
|
-
0x02, 0x69, 0x64, 0x1a, 0x9a, 0x02, 0x0a, 0x04, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02,
|
|
5780
|
-
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x63, 0x0a, 0x07,
|
|
5781
|
-
0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x49, 0x2e,
|
|
6181
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76,
|
|
6182
|
+
0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65,
|
|
6183
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
6184
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
6185
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f,
|
|
6186
|
+
0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
6187
|
+
0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c,
|
|
6188
|
+
0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e,
|
|
5782
6189
|
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
5783
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
5784
|
-
|
|
5785
|
-
|
|
5786
|
-
0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
|
|
5787
|
-
0x73, 0x12, 0x48, 0x0a, 0x0d, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f,
|
|
5788
|
-
0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
6190
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72,
|
|
6191
|
+
0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
|
|
6192
|
+
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
5789
6193
|
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
5790
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
5791
|
-
0x73,
|
|
5792
|
-
|
|
5793
|
-
|
|
5794
|
-
|
|
5795
|
-
0x65, 0x72, 0x6d,
|
|
5796
|
-
|
|
5797
|
-
|
|
5798
|
-
|
|
5799
|
-
0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
5800
|
-
0x74, 0x12, 0x32, 0x0a, 0x15, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x61, 0x63,
|
|
5801
|
-
0x63, 0x65, 0x73, 0x73, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
5802
|
-
0x52, 0x13, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,
|
|
5803
|
-
0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x70, 0x0a, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74,
|
|
5804
|
-
0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73,
|
|
5805
|
-
0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52,
|
|
5806
|
-
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f,
|
|
5807
|
-
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
|
|
5808
|
-
0x12, 0x25, 0x0a, 0x0e, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
|
|
5809
|
-
0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63,
|
|
5810
|
-
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0xe8, 0x03, 0x0a, 0x1a, 0x44, 0x69, 0x73, 0x61,
|
|
5811
|
-
0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52,
|
|
5812
|
-
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63,
|
|
5813
|
-
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
5814
|
-
0x52, 0x0f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d,
|
|
5815
|
-
0x65, 0x12, 0x18, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
|
|
5816
|
-
0x42, 0x02, 0x18, 0x01, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x5a, 0x0a, 0x06, 0x65,
|
|
5817
|
-
0x72, 0x72, 0x6f, 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x42, 0x2e, 0x6c, 0x61,
|
|
5818
|
-
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
5819
|
-
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57,
|
|
5820
|
-
0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
5821
|
-
0x73, 0x74, 0x2e, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52,
|
|
5822
|
-
0x06, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x79, 0x6c, 0x6f,
|
|
5823
|
-
0x61, 0x64, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x61,
|
|
5824
|
-
0x79, 0x6c, 0x6f, 0x61, 0x64, 0x55, 0x72, 0x6c, 0x12, 0x21, 0x0a, 0x0c, 0x77, 0x65, 0x62, 0x68,
|
|
5825
|
-
0x6f, 0x6f, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
|
|
5826
|
-
0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0b, 0x77,
|
|
5827
|
-
0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
|
|
5828
|
-
0x42, 0x02, 0x18, 0x01, 0x52, 0x0a, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x55, 0x72, 0x6c,
|
|
5829
|
-
0x12, 0x1d, 0x0a, 0x0a, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x07,
|
|
5830
|
-
0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x49, 0x64, 0x12,
|
|
5831
|
-
0x25, 0x0a, 0x0e, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69,
|
|
5832
|
-
0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
|
|
5833
|
-
0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x1a, 0x7a, 0x0a, 0x0c, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f,
|
|
5834
|
-
0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
|
|
5835
|
-
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x08, 0x6d, 0x65,
|
|
5836
|
-
0x73, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x02, 0x18, 0x01,
|
|
5837
|
-
0x52, 0x08, 0x6d, 0x65, 0x73, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x69,
|
|
5838
|
-
0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x74,
|
|
5839
|
-
0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73,
|
|
5840
|
-
0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61,
|
|
5841
|
-
0x67, 0x65, 0x22, 0x3a, 0x0a, 0x1b, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62,
|
|
5842
|
-
0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
5843
|
-
0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x73, 0x65, 0x6e, 0x74, 0x18, 0x01,
|
|
5844
|
-
0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x6d, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x74, 0x22, 0x16,
|
|
5845
|
-
0x0a, 0x04, 0x53, 0x69, 0x74, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
|
5846
|
-
0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x5a, 0x0a, 0x16, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72,
|
|
5847
|
-
0x69, 0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
5848
|
-
0x12, 0x25, 0x0a, 0x0e, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
|
|
5849
|
-
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63,
|
|
5850
|
-
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x65,
|
|
5851
|
-
0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x65,
|
|
5852
|
-
0x49, 0x64, 0x22, 0x4e, 0x0a, 0x17, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64,
|
|
5853
|
-
0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, 0x0a,
|
|
5854
|
-
0x04, 0x73, 0x69, 0x74, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x6c, 0x61,
|
|
5855
|
-
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
5856
|
-
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x52, 0x04, 0x73, 0x69,
|
|
5857
|
-
0x74, 0x65, 0x22, 0x37, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
5858
|
-
0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
5859
|
-
0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
|
|
5860
|
-
0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x1d, 0x47,
|
|
5861
|
-
0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69,
|
|
5862
|
-
0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1f, 0x0a, 0x0b,
|
|
5863
|
-
0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
|
|
5864
|
-
0x09, 0x52, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x22, 0x68, 0x0a,
|
|
5865
|
-
0x20, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41,
|
|
5866
|
-
0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
5867
|
-
0x74, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
5868
|
-
0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x70, 0x70, 0x6c, 0x69,
|
|
5869
|
-
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x61, 0x6e, 0x61,
|
|
5870
|
-
0x67, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6d, 0x61,
|
|
5871
|
-
0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x64, 0x22, 0x42, 0x0a, 0x21, 0x43, 0x68, 0x65, 0x63, 0x6b,
|
|
5872
|
-
0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
|
|
5873
|
-
0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a,
|
|
5874
|
-
0x69, 0x73, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
|
|
5875
|
-
0x52, 0x09, 0x69, 0x73, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x22, 0x82, 0x02, 0x0a, 0x0c,
|
|
5876
|
-
0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02,
|
|
5877
|
-
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x07,
|
|
5878
|
-
0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73,
|
|
5879
|
-
0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x3f, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20,
|
|
5880
|
-
0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
6194
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
|
|
6195
|
+
0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70,
|
|
6196
|
+
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x41,
|
|
6197
|
+
0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f,
|
|
6198
|
+
0x66, 0x69, 0x6c, 0x65, 0x73, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
6199
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
6200
|
+
0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64,
|
|
6201
|
+
0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75,
|
|
6202
|
+
0x65, 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
5881
6203
|
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
5882
|
-
|
|
5883
|
-
|
|
5884
|
-
|
|
5885
|
-
|
|
5886
|
-
|
|
5887
|
-
|
|
5888
|
-
|
|
5889
|
-
|
|
5890
|
-
|
|
5891
|
-
|
|
5892
|
-
|
|
5893
|
-
|
|
5894
|
-
|
|
5895
|
-
|
|
5896
|
-
|
|
6204
|
+
0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69,
|
|
6205
|
+
0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
6206
|
+
0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74,
|
|
6207
|
+
0x65, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
6208
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
6209
|
+
0x31, 0x2e, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x52,
|
|
6210
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
6211
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
6212
|
+
0x76, 0x31, 0x2e, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65,
|
|
6213
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x43, 0x72,
|
|
6214
|
+
0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x2f, 0x2e, 0x6c, 0x61,
|
|
6215
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
6216
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e,
|
|
6217
|
+
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c,
|
|
6218
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
6219
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49,
|
|
6220
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
6221
|
+
0x12, 0x89, 0x01, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x69,
|
|
6222
|
+
0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
5897
6223
|
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
5898
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
5899
|
-
|
|
5900
|
-
|
|
5901
|
-
|
|
5902
|
-
|
|
5903
|
-
|
|
5904
|
-
|
|
5905
|
-
0x74, 0x65,
|
|
5906
|
-
|
|
5907
|
-
0x65,
|
|
5908
|
-
|
|
5909
|
-
|
|
5910
|
-
|
|
5911
|
-
|
|
5912
|
-
|
|
5913
|
-
|
|
5914
|
-
|
|
5915
|
-
|
|
5916
|
-
|
|
5917
|
-
|
|
5918
|
-
0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
5919
|
-
0x6c, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, 0x0a, 0x15,
|
|
5920
|
-
0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x63, 0x72, 0x65, 0x64, 0x65, 0x6e,
|
|
5921
|
-
0x74, 0x69, 0x61, 0x6c, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x69, 0x6e, 0x73,
|
|
5922
|
-
0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c,
|
|
5923
|
-
0x73, 0x22, 0x46, 0x0a, 0x27, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61,
|
|
5924
|
-
0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69,
|
|
5925
|
-
0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
|
|
5926
|
-
0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
5927
|
-
0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x44, 0x0a, 0x28, 0x47, 0x65, 0x74,
|
|
5928
|
-
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65,
|
|
5929
|
-
0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73,
|
|
5930
|
-
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65,
|
|
5931
|
-
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x22,
|
|
5932
|
-
0x4e, 0x0a, 0x17, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69,
|
|
5933
|
-
0x73, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69,
|
|
5934
|
-
0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74,
|
|
5935
|
-
0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x02, 0x20,
|
|
5936
|
-
0x03, 0x28, 0x09, 0x52, 0x06, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x73, 0x3a, 0x02, 0x18, 0x01, 0x22,
|
|
5937
|
-
0x30, 0x0a, 0x18, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69,
|
|
5938
|
-
0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61,
|
|
5939
|
-
0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x3a, 0x02, 0x18,
|
|
5940
|
-
0x01, 0x22, 0x4a, 0x0a, 0x17, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73,
|
|
5941
|
-
0x45, 0x78, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07,
|
|
5942
|
-
0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73,
|
|
5943
|
-
0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x73, 0x18,
|
|
5944
|
-
0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x73, 0x22, 0xb5, 0x01,
|
|
5945
|
-
0x0a, 0x18, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78, 0x69,
|
|
5946
|
-
0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c,
|
|
5947
|
-
0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x3e, 0x0a, 0x08,
|
|
5948
|
-
0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22,
|
|
6224
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x4c,
|
|
6225
|
+
0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
6226
|
+
0x74, 0x1a, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
6227
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72,
|
|
6228
|
+
0x65, 0x61, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
6229
|
+
0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a,
|
|
6230
|
+
0x11, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69,
|
|
6231
|
+
0x74, 0x65, 0x12, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
6232
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47,
|
|
6233
|
+
0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65,
|
|
6234
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
6235
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
6236
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42,
|
|
6237
|
+
0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
6238
|
+
0x9e, 0x01, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x66,
|
|
6239
|
+
0x6f, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x12,
|
|
6240
|
+
0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
6241
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49,
|
|
6242
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46, 0x6f, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70,
|
|
6243
|
+
0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e,
|
|
5949
6244
|
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
5950
|
-
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
5951
|
-
|
|
5952
|
-
|
|
5953
|
-
|
|
5954
|
-
|
|
5955
|
-
|
|
5956
|
-
|
|
5957
|
-
|
|
5958
|
-
0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65,
|
|
5959
|
-
0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49,
|
|
5960
|
-
0x64, 0x22, 0x36, 0x0a, 0x20, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c,
|
|
5961
|
-
0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73,
|
|
5962
|
-
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20,
|
|
5963
|
-
0x01, 0x28, 0x08, 0x52, 0x04, 0x73, 0x65, 0x6e, 0x74, 0x22, 0x35, 0x0a, 0x1a, 0x47, 0x65, 0x74,
|
|
5964
|
-
0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
|
|
5965
|
-
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f,
|
|
5966
|
-
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64,
|
|
5967
|
-
0x22, 0x5e, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63,
|
|
5968
|
-
0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
|
5969
|
-
0x3f, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e,
|
|
5970
|
-
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
5971
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
|
|
5972
|
-
0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,
|
|
5973
|
-
0x22, 0x52, 0x0a, 0x18, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e,
|
|
5974
|
-
0x67, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07,
|
|
5975
|
-
0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73,
|
|
5976
|
-
0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
5977
|
-
0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75,
|
|
5978
|
-
0x6e, 0x74, 0x49, 0x64, 0x22, 0x2f, 0x0a, 0x19, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69,
|
|
5979
|
-
0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
5980
|
-
0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
5981
|
-
0x04, 0x63, 0x6f, 0x64, 0x65, 0x22, 0x3a, 0x0a, 0x1d, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65,
|
|
5982
|
-
0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69,
|
|
5983
|
-
0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69,
|
|
5984
|
-
0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64,
|
|
5985
|
-
0x73, 0x22, 0x42, 0x0a, 0x27, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
|
|
5986
|
-
0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e,
|
|
5987
|
-
0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07,
|
|
5988
|
-
0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73,
|
|
5989
|
-
0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x49, 0x0a, 0x28, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74,
|
|
5990
|
-
0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61,
|
|
5991
|
-
0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
5992
|
-
0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18,
|
|
5993
|
-
0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
|
|
5994
|
-
0x22, 0x5c, 0x0a, 0x19, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65,
|
|
5995
|
-
0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a,
|
|
5996
|
-
0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
|
|
5997
|
-
0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20,
|
|
5998
|
-
0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
|
|
5999
|
-
0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x36,
|
|
6000
|
-
0x0a, 0x1a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61,
|
|
6001
|
-
0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07,
|
|
6002
|
-
0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x73,
|
|
6003
|
-
0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x31, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74,
|
|
6004
|
-
0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19,
|
|
6005
|
-
0x0a, 0x08, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
|
|
6006
|
-
0x52, 0x07, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x22, 0xe2, 0x01, 0x0a, 0x15, 0x47, 0x65,
|
|
6007
|
-
0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
6008
|
-
0x6e, 0x73, 0x65, 0x12, 0x61, 0x0a, 0x0b, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x6c, 0x69, 0x6d, 0x69,
|
|
6009
|
-
0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
6010
|
-
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
6011
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69,
|
|
6012
|
-
0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x4c,
|
|
6013
|
-
0x69, 0x6d, 0x69, 0x74, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x73, 0x69, 0x74, 0x65,
|
|
6014
|
-
0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x1a, 0x66, 0x0a, 0x0f, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69,
|
|
6015
|
-
0x6d, 0x69, 0x74, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
|
|
6016
|
-
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x3d, 0x0a, 0x05, 0x76,
|
|
6017
|
-
0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6c, 0x61, 0x6e,
|
|
6018
|
-
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x6c,
|
|
6019
|
-
0x69, 0x6d, 0x69, 0x74, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d,
|
|
6020
|
-
0x69, 0x74, 0x73, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x2a, 0x4e,
|
|
6021
|
-
0x0a, 0x08, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x0c, 0x55, 0x4e,
|
|
6022
|
-
0x45, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x10, 0x0a, 0x0c,
|
|
6023
|
-
0x43, 0x4c, 0x4f, 0x55, 0x44, 0x5f, 0x4e, 0x41, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x08,
|
|
6024
|
-
0x0a, 0x04, 0x44, 0x45, 0x4d, 0x4f, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x48, 0x59, 0x42, 0x52,
|
|
6025
|
-
0x49, 0x44, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x55, 0x41, 0x4c, 0x10, 0x04, 0x2a, 0x77,
|
|
6026
|
-
0x0a, 0x11, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x65, 0x56, 0x61,
|
|
6027
|
-
0x6c, 0x75, 0x65, 0x12, 0x24, 0x0a, 0x20, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53,
|
|
6028
|
-
0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x45, 0x53, 0x50,
|
|
6029
|
-
0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1c, 0x0a, 0x18, 0x49, 0x4e, 0x53,
|
|
6030
|
-
0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45,
|
|
6031
|
-
0x5f, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x01, 0x12, 0x1e, 0x0a, 0x1a, 0x49, 0x4e, 0x53, 0x54, 0x41,
|
|
6032
|
-
0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55,
|
|
6033
|
-
0x4e, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x02, 0x2a, 0x36, 0x0a, 0x0b, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
6034
|
-
0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x06, 0x0a, 0x02, 0x49, 0x54, 0x10, 0x00, 0x12, 0x06,
|
|
6035
|
-
0x0a, 0x02, 0x4f, 0x54, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x49, 0x54, 0x5f, 0x41, 0x47, 0x45,
|
|
6036
|
-
0x4e, 0x54, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x43, 0x4c, 0x4f, 0x55, 0x44, 0x10, 0x03, 0x2a,
|
|
6037
|
-
0xf3, 0x01, 0x0a, 0x10, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
|
|
6038
|
-
0x54, 0x79, 0x70, 0x65, 0x12, 0x28, 0x0a, 0x24, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50,
|
|
6039
|
-
0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f,
|
|
6040
|
-
0x55, 0x4e, 0x45, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x21,
|
|
6041
|
-
0x0a, 0x1d, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54,
|
|
6042
|
-
0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x54, 0x52, 0x49, 0x41, 0x4c, 0x10,
|
|
6043
|
-
0x01, 0x12, 0x24, 0x0a, 0x20, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f,
|
|
6044
|
-
0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x46, 0x52, 0x45,
|
|
6045
|
-
0x45, 0x57, 0x41, 0x52, 0x45, 0x10, 0x02, 0x12, 0x23, 0x0a, 0x1f, 0x53, 0x55, 0x42, 0x53, 0x43,
|
|
6046
|
-
0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c,
|
|
6047
|
-
0x55, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54, 0x45, 0x52, 0x10, 0x03, 0x12, 0x1f, 0x0a, 0x1b,
|
|
6048
|
-
0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50,
|
|
6049
|
-
0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x50, 0x52, 0x4f, 0x10, 0x04, 0x12, 0x26, 0x0a,
|
|
6050
|
-
0x22, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59,
|
|
6051
|
-
0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x45, 0x4e, 0x54, 0x45, 0x52, 0x50, 0x52,
|
|
6052
|
-
0x49, 0x53, 0x45, 0x10, 0x05, 0x32, 0xa8, 0x29, 0x0a, 0x0b, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
6053
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0xa1, 0x01, 0x0a, 0x1c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41,
|
|
6054
|
-
0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63,
|
|
6055
|
-
0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
6056
|
-
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
6057
|
-
0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f,
|
|
6058
|
-
0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52,
|
|
6059
|
-
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
6245
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e,
|
|
6246
|
+
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46, 0x6f, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c,
|
|
6247
|
+
0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
6248
|
+
0x12, 0x7a, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42,
|
|
6249
|
+
0x79, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
6250
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
6251
|
+
0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x49, 0x64, 0x52,
|
|
6252
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
6060
6253
|
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
6061
|
-
0x76, 0x31, 0x2e,
|
|
6062
|
-
|
|
6063
|
-
|
|
6064
|
-
|
|
6065
|
-
|
|
6254
|
+
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79,
|
|
6255
|
+
0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x89, 0x01, 0x0a,
|
|
6256
|
+
0x16, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43, 0x6f, 0x75, 0x6e,
|
|
6257
|
+
0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
6258
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
6259
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43,
|
|
6260
|
+
0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
6261
|
+
0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
6262
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
|
|
6263
|
+
0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
|
|
6264
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x89, 0x01, 0x0a, 0x14, 0x47, 0x65, 0x74,
|
|
6265
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
|
|
6266
|
+
0x64, 0x12, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
6267
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
|
|
6268
|
+
0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
|
|
6269
|
+
0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
6066
6270
|
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
6067
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
6068
|
-
|
|
6069
|
-
|
|
6070
|
-
|
|
6071
|
-
|
|
6072
|
-
|
|
6073
|
-
|
|
6074
|
-
|
|
6075
|
-
|
|
6076
|
-
|
|
6077
|
-
|
|
6078
|
-
|
|
6079
|
-
|
|
6080
|
-
|
|
6081
|
-
0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52,
|
|
6082
|
-
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x4c, 0x69,
|
|
6083
|
-
0x73, 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f,
|
|
6084
|
-
0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
6271
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
6272
|
+
0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
6273
|
+
0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49,
|
|
6274
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
|
|
6275
|
+
0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
6276
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64,
|
|
6277
|
+
0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
6278
|
+
0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61,
|
|
6279
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
6280
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e,
|
|
6281
|
+
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52,
|
|
6282
|
+
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x52, 0x6f,
|
|
6283
|
+
0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69,
|
|
6284
|
+
0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
6085
6285
|
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
6086
|
-
0x31, 0x2e,
|
|
6087
|
-
|
|
6286
|
+
0x31, 0x2e, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42,
|
|
6287
|
+
0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
6088
6288
|
0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
6089
|
-
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
6090
|
-
0x74,
|
|
6289
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x74,
|
|
6290
|
+
0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
6091
6291
|
0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b,
|
|
6092
|
-
0x01, 0x0a, 0x1a, 0x4c, 0x69,
|
|
6093
|
-
|
|
6292
|
+
0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74,
|
|
6293
|
+
0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x3c, 0x2e,
|
|
6094
6294
|
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
6095
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69,
|
|
6096
|
-
|
|
6097
|
-
|
|
6295
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x72,
|
|
6296
|
+
0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
6297
|
+
0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61,
|
|
6098
6298
|
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
6099
|
-
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69,
|
|
6100
|
-
|
|
6101
|
-
|
|
6102
|
-
|
|
6103
|
-
|
|
6104
|
-
|
|
6105
|
-
|
|
6106
|
-
|
|
6107
|
-
|
|
6108
|
-
0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
6109
|
-
0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74,
|
|
6110
|
-
0x61, 0x6c, 0x6c, 0x12, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
6299
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61,
|
|
6300
|
+
0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
|
|
6301
|
+
0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a,
|
|
6302
|
+
0x17, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79,
|
|
6303
|
+
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
6304
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
6305
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
6306
|
+
0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
6307
|
+
0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
6111
6308
|
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
6112
|
-
|
|
6113
|
-
|
|
6114
|
-
|
|
6115
|
-
|
|
6116
|
-
|
|
6117
|
-
|
|
6118
|
-
|
|
6119
|
-
|
|
6120
|
-
|
|
6121
|
-
|
|
6122
|
-
|
|
6123
|
-
|
|
6124
|
-
|
|
6125
|
-
0x73,
|
|
6126
|
-
|
|
6127
|
-
|
|
6128
|
-
|
|
6129
|
-
0x6c, 0x73, 0x42, 0x79,
|
|
6130
|
-
|
|
6131
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
6132
|
-
|
|
6133
|
-
|
|
6134
|
-
|
|
6309
|
+
0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43,
|
|
6310
|
+
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
6311
|
+
0x00, 0x12, 0x98, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74,
|
|
6312
|
+
0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12,
|
|
6313
|
+
0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
6314
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f,
|
|
6315
|
+
0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53,
|
|
6316
|
+
0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e, 0x6c,
|
|
6317
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
6318
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49,
|
|
6319
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65,
|
|
6320
|
+
0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xaa, 0x01, 0x0a,
|
|
6321
|
+
0x1f, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e,
|
|
6322
|
+
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64,
|
|
6323
|
+
0x12, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
6324
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
6325
|
+
0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
6326
|
+
0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
6327
|
+
0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
6328
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
6329
|
+
0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73,
|
|
6330
|
+
0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x52,
|
|
6331
|
+
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x83, 0x01, 0x0a, 0x12, 0x47, 0x65,
|
|
6332
|
+
0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73,
|
|
6333
|
+
0x12, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
6334
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
6335
|
+
0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52,
|
|
6336
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
6337
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
6338
|
+
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73,
|
|
6339
|
+
0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
6340
|
+
0xbf, 0x01, 0x0a, 0x26, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c,
|
|
6341
|
+
0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41,
|
|
6342
|
+
0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x48, 0x2e, 0x6c, 0x61, 0x6e,
|
|
6135
6343
|
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
6136
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
6137
|
-
|
|
6138
|
-
|
|
6139
|
-
|
|
6140
|
-
|
|
6141
|
-
|
|
6142
|
-
|
|
6344
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41,
|
|
6345
|
+
0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
|
|
6346
|
+
0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71,
|
|
6347
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x49, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
6348
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
6349
|
+
0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
|
|
6350
|
+
0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65,
|
|
6351
|
+
0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
6352
|
+
0x00, 0x12, 0x8b, 0x01, 0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c,
|
|
6353
|
+
0x65, 0x64, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x35,
|
|
6143
6354
|
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
6144
|
-
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
6145
|
-
|
|
6146
|
-
|
|
6355
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62,
|
|
6356
|
+
0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65,
|
|
6357
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
6358
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
6359
|
+
0x31, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b,
|
|
6360
|
+
0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
6361
|
+
0x8c, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65,
|
|
6362
|
+
0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
|
|
6363
|
+
0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
6364
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
6365
|
+
0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65,
|
|
6366
|
+
0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
6147
6367
|
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
6148
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
6149
|
-
|
|
6150
|
-
|
|
6151
|
-
|
|
6368
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x53,
|
|
6369
|
+
0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8c,
|
|
6370
|
+
0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73,
|
|
6371
|
+
0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
6152
6372
|
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
6153
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
6154
|
-
|
|
6155
|
-
0x1a,
|
|
6373
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
|
|
6374
|
+
0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
6375
|
+
0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
6376
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
|
|
6377
|
+
0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74,
|
|
6378
|
+
0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x98, 0x01,
|
|
6379
|
+
0x0a, 0x19, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e,
|
|
6380
|
+
0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b, 0x2e, 0x6c, 0x61,
|
|
6381
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
6382
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e,
|
|
6383
|
+
0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
|
|
6384
|
+
0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
6385
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
6386
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
|
|
6387
|
+
0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
|
|
6388
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8f, 0x01, 0x0a, 0x16, 0x55, 0x70, 0x64,
|
|
6389
|
+
0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
|
|
6390
|
+
0x69, 0x6f, 0x6e, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
6391
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
6392
|
+
0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
|
|
6393
|
+
0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e,
|
|
6394
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
6395
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
|
|
6396
|
+
0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
|
|
6397
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x43,
|
|
6398
|
+
0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e,
|
|
6399
|
+
0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e,
|
|
6400
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
6401
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69,
|
|
6402
|
+
0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
6403
|
+
0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
6404
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
6405
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61,
|
|
6406
|
+
0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65,
|
|
6407
|
+
0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xad, 0x01, 0x0a, 0x20,
|
|
6408
|
+
0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c,
|
|
6409
|
+
0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
|
|
6410
|
+
0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
6156
6411
|
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
6157
|
-
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
6158
|
-
|
|
6159
|
-
|
|
6160
|
-
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
6161
|
-
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
6162
|
-
0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
6163
|
-
0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
6164
|
-
0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
6165
|
-
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55,
|
|
6166
|
-
0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c,
|
|
6167
|
-
0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
6168
|
-
0x12, 0x92, 0x01, 0x0a, 0x17, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
6169
|
-
0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c,
|
|
6170
|
-
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
6171
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49,
|
|
6172
|
-
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
|
|
6173
|
-
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
6174
|
-
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
6175
|
-
0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
6176
|
-
0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
6177
|
-
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x72,
|
|
6178
|
-
0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
6179
|
-
0x6e, 0x74, 0x49, 0x64, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
6412
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65,
|
|
6413
|
+
0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71,
|
|
6414
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
6180
6415
|
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
6181
|
-
0x2e,
|
|
6182
|
-
|
|
6183
|
-
|
|
6184
|
-
|
|
6185
|
-
|
|
6186
|
-
|
|
6187
|
-
|
|
6188
|
-
0x73, 0x74,
|
|
6189
|
-
0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
6190
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6c, 0x69,
|
|
6191
|
-
0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
|
|
6192
|
-
0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e,
|
|
6193
|
-
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
6194
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73,
|
|
6195
|
-
0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65,
|
|
6196
|
-
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x98, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x6d,
|
|
6197
|
-
0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79,
|
|
6198
|
-
0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
6199
|
-
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
6200
|
-
0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
6201
|
-
0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
6202
|
-
0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
6416
|
+
0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
6417
|
+
0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
|
|
6418
|
+
0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x10, 0x41,
|
|
6419
|
+
0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78, 0x69, 0x73, 0x74, 0x12,
|
|
6420
|
+
0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
6421
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50,
|
|
6422
|
+
0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
|
|
6423
|
+
0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
6203
6424
|
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
6204
|
-
|
|
6205
|
-
|
|
6206
|
-
0x65,
|
|
6207
|
-
|
|
6208
|
-
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x12, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
6425
|
+
0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78, 0x69, 0x73, 0x74,
|
|
6426
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95, 0x01, 0x0a, 0x18, 0x53,
|
|
6427
|
+
0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73,
|
|
6428
|
+
0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
6209
6429
|
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
6210
|
-
0x2e, 0x76, 0x31, 0x2e,
|
|
6211
|
-
|
|
6212
|
-
|
|
6213
|
-
|
|
6214
|
-
|
|
6215
|
-
|
|
6216
|
-
|
|
6217
|
-
|
|
6218
|
-
0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
6430
|
+
0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f,
|
|
6431
|
+
0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75,
|
|
6432
|
+
0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
6433
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
6434
|
+
0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55,
|
|
6435
|
+
0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
6436
|
+
0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x10, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c,
|
|
6437
|
+
0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x12, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
6219
6438
|
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
6220
|
-
0x2e, 0x76, 0x31, 0x2e,
|
|
6221
|
-
|
|
6222
|
-
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
6223
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
|
|
6224
|
-
0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70,
|
|
6225
|
-
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xbf, 0x01, 0x0a, 0x26, 0x56, 0x61, 0x6c, 0x69, 0x64,
|
|
6226
|
-
0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65,
|
|
6227
|
-
0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65,
|
|
6228
|
-
0x6e, 0x12, 0x48, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
6229
|
-
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61,
|
|
6230
|
-
0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
|
|
6231
|
-
0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54,
|
|
6232
|
-
0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x49, 0x2e, 0x6c, 0x61,
|
|
6439
|
+
0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78,
|
|
6440
|
+
0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61,
|
|
6233
6441
|
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
6234
|
-
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
6235
|
-
|
|
6236
|
-
|
|
6237
|
-
|
|
6238
|
-
|
|
6239
|
-
|
|
6240
|
-
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
6241
|
-
0x31, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b,
|
|
6242
|
-
0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x6c,
|
|
6243
|
-
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
6244
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65,
|
|
6245
|
-
0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70,
|
|
6246
|
-
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x41, 0x75,
|
|
6247
|
-
0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x41,
|
|
6248
|
-
0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c,
|
|
6249
|
-
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
6250
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69,
|
|
6251
|
-
0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
6252
|
-
0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
6253
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68,
|
|
6254
|
-
0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
6255
|
-
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63,
|
|
6256
|
-
0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12,
|
|
6257
|
-
0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
6258
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x41,
|
|
6259
|
-
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49,
|
|
6260
|
-
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
6261
|
-
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
6262
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
|
|
6263
|
-
0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
6264
|
-
0x73, 0x65, 0x22, 0x00, 0x12, 0x98, 0x01, 0x0a, 0x19, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61,
|
|
6265
|
-
0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
|
|
6266
|
-
0x6f, 0x6e, 0x12, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
6267
|
-
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43,
|
|
6268
|
-
0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70,
|
|
6269
|
-
0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
6270
|
-
0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
6271
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63,
|
|
6272
|
-
0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63,
|
|
6273
|
-
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
6274
|
-
0x8f, 0x01, 0x0a, 0x16, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75,
|
|
6275
|
-
0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e,
|
|
6276
|
-
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
6277
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74,
|
|
6442
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69,
|
|
6443
|
+
0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
6444
|
+
0x22, 0x03, 0x88, 0x02, 0x01, 0x12, 0x86, 0x01, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74,
|
|
6445
|
+
0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x35, 0x2e,
|
|
6446
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
6447
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74,
|
|
6278
6448
|
0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71,
|
|
6279
|
-
0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
6449
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
6280
6450
|
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
6281
|
-
0x2e,
|
|
6282
|
-
|
|
6283
|
-
|
|
6284
|
-
|
|
6285
|
-
0x72,
|
|
6286
|
-
|
|
6287
|
-
|
|
6288
|
-
|
|
6289
|
-
|
|
6290
|
-
|
|
6291
|
-
|
|
6292
|
-
|
|
6293
|
-
|
|
6294
|
-
0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43,
|
|
6295
|
-
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
6451
|
+
0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
|
|
6452
|
+
0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x80,
|
|
6453
|
+
0x01, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67,
|
|
6454
|
+
0x43, 0x6f, 0x64, 0x65, 0x12, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
6455
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
6456
|
+
0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f,
|
|
6457
|
+
0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
6458
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
6459
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b,
|
|
6460
|
+
0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
6461
|
+
0x00, 0x12, 0x99, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73,
|
|
6462
|
+
0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42,
|
|
6463
|
+
0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
6296
6464
|
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
6297
|
-
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
6298
|
-
|
|
6299
|
-
|
|
6300
|
-
|
|
6301
|
-
|
|
6302
|
-
|
|
6303
|
-
|
|
6304
|
-
|
|
6305
|
-
|
|
6465
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69,
|
|
6466
|
+
0x74, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74,
|
|
6467
|
+
0x61, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
6468
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
|
|
6469
|
+
0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65,
|
|
6470
|
+
0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x22, 0x00, 0x12, 0xad, 0x01,
|
|
6471
|
+
0x0a, 0x20, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69,
|
|
6472
|
+
0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c,
|
|
6473
|
+
0x65, 0x64, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
6474
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43,
|
|
6475
|
+
0x68, 0x65, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64,
|
|
6476
|
+
0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52,
|
|
6477
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
6306
6478
|
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
6307
|
-
0x76, 0x31, 0x2e,
|
|
6308
|
-
0x69,
|
|
6309
|
-
|
|
6310
|
-
|
|
6311
|
-
|
|
6312
|
-
|
|
6313
|
-
|
|
6314
|
-
|
|
6315
|
-
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x49,
|
|
6316
|
-
0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d,
|
|
6317
|
-
0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e,
|
|
6479
|
+
0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
|
|
6480
|
+
0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62,
|
|
6481
|
+
0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x83, 0x01,
|
|
6482
|
+
0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61,
|
|
6483
|
+
0x64, 0x61, 0x74, 0x61, 0x12, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
6484
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
6485
|
+
0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64,
|
|
6486
|
+
0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e,
|
|
6318
6487
|
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
6319
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
6320
|
-
0x65,
|
|
6321
|
-
0x65,
|
|
6322
|
-
|
|
6323
|
-
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
6324
|
-
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72,
|
|
6325
|
-
0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
6326
|
-
0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
6327
|
-
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41,
|
|
6328
|
-
0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52,
|
|
6329
|
-
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x03, 0x88, 0x02, 0x01, 0x12, 0x86, 0x01, 0x0a,
|
|
6330
|
-
0x13, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
|
|
6331
|
-
0x74, 0x69, 0x6f, 0x6e, 0x12, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
6488
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74,
|
|
6489
|
+
0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
6490
|
+
0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69,
|
|
6491
|
+
0x6d, 0x69, 0x74, 0x73, 0x12, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
6332
6492
|
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
6333
|
-
0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65,
|
|
6334
|
-
|
|
6335
|
-
|
|
6336
|
-
|
|
6337
|
-
|
|
6338
|
-
|
|
6339
|
-
|
|
6340
|
-
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
6341
|
-
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69,
|
|
6342
|
-
0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
6343
|
-
0x1a, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
6344
|
-
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65,
|
|
6345
|
-
0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65,
|
|
6346
|
-
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x99, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74,
|
|
6347
|
-
0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67,
|
|
6348
|
-
0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x38,
|
|
6349
|
-
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
6350
|
-
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69,
|
|
6351
|
-
0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61,
|
|
6352
|
-
0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
6353
|
-
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
6354
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57,
|
|
6355
|
-
0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61,
|
|
6356
|
-
0x74, 0x61, 0x22, 0x00, 0x12, 0xad, 0x01, 0x0a, 0x20, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74,
|
|
6357
|
-
0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61,
|
|
6358
|
-
0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
6359
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
6360
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64,
|
|
6361
|
-
0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45,
|
|
6362
|
-
0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x43, 0x2e,
|
|
6363
|
-
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
6364
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53,
|
|
6365
|
-
0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66, 0x74, 0x77,
|
|
6366
|
-
0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
6367
|
-
0x73, 0x65, 0x22, 0x00, 0x12, 0x83, 0x01, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
|
|
6368
|
-
0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x34, 0x2e, 0x6c, 0x61,
|
|
6369
|
-
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
6370
|
-
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69,
|
|
6371
|
-
0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
6372
|
-
0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
6373
|
-
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70,
|
|
6374
|
-
0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,
|
|
6375
|
-
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x47, 0x65,
|
|
6376
|
-
0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x12, 0x2f, 0x2e, 0x6c, 0x61,
|
|
6377
|
-
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
6378
|
-
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c,
|
|
6379
|
-
0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c,
|
|
6380
|
-
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
6381
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65,
|
|
6382
|
-
0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
6383
|
-
0x42, 0x10, 0x5a, 0x0e, 0x2e, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2d,
|
|
6384
|
-
0x67, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
6493
|
+
0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65,
|
|
6494
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
6495
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
6496
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52,
|
|
6497
|
+
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x10, 0x5a, 0x0e, 0x2e, 0x2f, 0x67,
|
|
6498
|
+
0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2d, 0x67, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f,
|
|
6499
|
+
0x74, 0x6f, 0x33,
|
|
6385
6500
|
}
|
|
6386
6501
|
|
|
6387
6502
|
var (
|
|
@@ -6397,7 +6512,7 @@ func file_multitenant_proto_rawDescGZIP() []byte {
|
|
|
6397
6512
|
}
|
|
6398
6513
|
|
|
6399
6514
|
var file_multitenant_proto_enumTypes = make([]protoimpl.EnumInfo, 4)
|
|
6400
|
-
var file_multitenant_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
6515
|
+
var file_multitenant_proto_msgTypes = make([]protoimpl.MessageInfo, 91)
|
|
6401
6516
|
var file_multitenant_proto_goTypes = []interface{}{
|
|
6402
6517
|
(SiteMode)(0), // 0: lansweeper.multitenant.v1.SiteMode
|
|
6403
6518
|
(InstallStateValue)(0), // 1: lansweeper.multitenant.v1.InstallStateValue
|
|
@@ -6427,72 +6542,74 @@ var file_multitenant_proto_goTypes = []interface{}{
|
|
|
6427
6542
|
(*NullableInstallType)(nil), // 25: lansweeper.multitenant.v1.NullableInstallType
|
|
6428
6543
|
(*GetInstallsBySiteRequest)(nil), // 26: lansweeper.multitenant.v1.GetInstallsBySiteRequest
|
|
6429
6544
|
(*GetInstallsBySiteResponse)(nil), // 27: lansweeper.multitenant.v1.GetInstallsBySiteResponse
|
|
6430
|
-
(*
|
|
6431
|
-
(*
|
|
6432
|
-
(*
|
|
6433
|
-
(*
|
|
6434
|
-
(*
|
|
6435
|
-
(*
|
|
6436
|
-
(*
|
|
6437
|
-
(*
|
|
6438
|
-
(*
|
|
6439
|
-
(*
|
|
6440
|
-
(*
|
|
6441
|
-
(*
|
|
6442
|
-
(*
|
|
6443
|
-
(*
|
|
6444
|
-
(*
|
|
6445
|
-
(*
|
|
6446
|
-
(*
|
|
6447
|
-
(*
|
|
6448
|
-
(*
|
|
6449
|
-
(*
|
|
6450
|
-
(*
|
|
6451
|
-
(*
|
|
6452
|
-
(*
|
|
6453
|
-
(*
|
|
6454
|
-
(*
|
|
6455
|
-
(*
|
|
6456
|
-
(*
|
|
6457
|
-
(*
|
|
6458
|
-
(*
|
|
6459
|
-
(*
|
|
6460
|
-
(*
|
|
6461
|
-
(*
|
|
6462
|
-
(*
|
|
6463
|
-
(*
|
|
6464
|
-
(*
|
|
6465
|
-
(*
|
|
6466
|
-
(*
|
|
6467
|
-
(*
|
|
6468
|
-
(*
|
|
6469
|
-
(*
|
|
6470
|
-
(*
|
|
6471
|
-
(*
|
|
6472
|
-
(*
|
|
6473
|
-
(*
|
|
6474
|
-
(*
|
|
6475
|
-
(*
|
|
6476
|
-
(*
|
|
6477
|
-
(*
|
|
6478
|
-
(*
|
|
6479
|
-
(*
|
|
6480
|
-
(*
|
|
6481
|
-
(*
|
|
6482
|
-
(*
|
|
6483
|
-
(*
|
|
6484
|
-
(*
|
|
6485
|
-
(*
|
|
6486
|
-
(*
|
|
6487
|
-
(*
|
|
6488
|
-
(*
|
|
6489
|
-
(*
|
|
6490
|
-
(*
|
|
6491
|
-
(*
|
|
6492
|
-
(*
|
|
6493
|
-
(*
|
|
6494
|
-
nil,
|
|
6495
|
-
(*
|
|
6545
|
+
(*GetInstallsForMultipleSitesRequest)(nil), // 28: lansweeper.multitenant.v1.GetInstallsForMultipleSitesRequest
|
|
6546
|
+
(*GetInstallsForMultipleSitesResponse)(nil), // 29: lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse
|
|
6547
|
+
(*GetInstallbyClientIdRequest)(nil), // 30: lansweeper.multitenant.v1.GetInstallbyClientIdRequest
|
|
6548
|
+
(*GetInstallbyClientIdResponse)(nil), // 31: lansweeper.multitenant.v1.GetInstallbyClientIdResponse
|
|
6549
|
+
(*CreateInstallRequest)(nil), // 32: lansweeper.multitenant.v1.CreateInstallRequest
|
|
6550
|
+
(*CreateInstallResponse)(nil), // 33: lansweeper.multitenant.v1.CreateInstallResponse
|
|
6551
|
+
(*CreateAndLinkInstallRequest)(nil), // 34: lansweeper.multitenant.v1.CreateAndLinkInstallRequest
|
|
6552
|
+
(*CreateAndLinkInstallResponse)(nil), // 35: lansweeper.multitenant.v1.CreateAndLinkInstallResponse
|
|
6553
|
+
(*UpdateInstallByClientIdRequest)(nil), // 36: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest
|
|
6554
|
+
(*UpdateInstallByClientIdResponse)(nil), // 37: lansweeper.multitenant.v1.UpdateInstallByClientIdResponse
|
|
6555
|
+
(*RotateInstallByClientIdRequest)(nil), // 38: lansweeper.multitenant.v1.RotateInstallByClientIdRequest
|
|
6556
|
+
(*RotateInstallByClientIdResponse)(nil), // 39: lansweeper.multitenant.v1.RotateInstallByClientIdResponse
|
|
6557
|
+
(*UnlinkInstallByClientIdRequest)(nil), // 40: lansweeper.multitenant.v1.UnlinkInstallByClientIdRequest
|
|
6558
|
+
(*UnlinkInstallByClientIdResponse)(nil), // 41: lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse
|
|
6559
|
+
(*LinkTrialInstallByClientIdRequest)(nil), // 42: lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest
|
|
6560
|
+
(*LinkTrialInstallByClientIdResponse)(nil), // 43: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse
|
|
6561
|
+
(*RemoveInstallDataBySiteIdRequest)(nil), // 44: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdRequest
|
|
6562
|
+
(*RemoveInstallDataBySiteIdResponse)(nil), // 45: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse
|
|
6563
|
+
(*GetDuplicatedInstallsByGlobalIdRequest)(nil), // 46: lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdRequest
|
|
6564
|
+
(*GetDuplicatedInstallsByGlobalIdResponse)(nil), // 47: lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse
|
|
6565
|
+
(*GetUserPermissionsRequest)(nil), // 48: lansweeper.multitenant.v1.GetUserPermissionsRequest
|
|
6566
|
+
(*GetUserPermissionsResponse)(nil), // 49: lansweeper.multitenant.v1.GetUserPermissionsResponse
|
|
6567
|
+
(*ValidateApplicationPersonalAccessTokenRequest)(nil), // 50: lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest
|
|
6568
|
+
(*ValidateApplicationPersonalAccessTokenResponse)(nil), // 51: lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse
|
|
6569
|
+
(*DisableWebhookEmailRequest)(nil), // 52: lansweeper.multitenant.v1.DisableWebhookEmailRequest
|
|
6570
|
+
(*DisableWebhookEmailResponse)(nil), // 53: lansweeper.multitenant.v1.DisableWebhookEmailResponse
|
|
6571
|
+
(*Site)(nil), // 54: lansweeper.multitenant.v1.Site
|
|
6572
|
+
(*AuthorizedSitesRequest)(nil), // 55: lansweeper.multitenant.v1.AuthorizedSitesRequest
|
|
6573
|
+
(*AuthorizedSitesResponse)(nil), // 56: lansweeper.multitenant.v1.AuthorizedSitesResponse
|
|
6574
|
+
(*GetAccountIdsBySiteIdRequest)(nil), // 57: lansweeper.multitenant.v1.GetAccountIdsBySiteIdRequest
|
|
6575
|
+
(*GetAccountIdsBySiteIdResponse)(nil), // 58: lansweeper.multitenant.v1.GetAccountIdsBySiteIdResponse
|
|
6576
|
+
(*CheckManagerInApplicationRequest)(nil), // 59: lansweeper.multitenant.v1.CheckManagerInApplicationRequest
|
|
6577
|
+
(*CheckManagerInApplicationResponse)(nil), // 60: lansweeper.multitenant.v1.CheckManagerInApplicationResponse
|
|
6578
|
+
(*Subscription)(nil), // 61: lansweeper.multitenant.v1.Subscription
|
|
6579
|
+
(*UpdateSiteSubscriptionRequest)(nil), // 62: lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest
|
|
6580
|
+
(*UpdateSiteSubscriptionResponse)(nil), // 63: lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse
|
|
6581
|
+
(*CreateTrialSiteAndInstallerRequest)(nil), // 64: lansweeper.multitenant.v1.CreateTrialSiteAndInstallerRequest
|
|
6582
|
+
(*CreateTrialSiteAndInstallerResponse)(nil), // 65: lansweeper.multitenant.v1.CreateTrialSiteAndInstallerResponse
|
|
6583
|
+
(*GetInstallationLicenseByClientIdRequest)(nil), // 66: lansweeper.multitenant.v1.GetInstallationLicenseByClientIdRequest
|
|
6584
|
+
(*GetInstallationLicenseByClientIdResponse)(nil), // 67: lansweeper.multitenant.v1.GetInstallationLicenseByClientIdResponse
|
|
6585
|
+
(*AllProfileExistsRequest)(nil), // 68: lansweeper.multitenant.v1.AllProfileExistsRequest
|
|
6586
|
+
(*AllProfileExistsResponse)(nil), // 69: lansweeper.multitenant.v1.AllProfileExistsResponse
|
|
6587
|
+
(*AllProfilesExistRequest)(nil), // 70: lansweeper.multitenant.v1.AllProfilesExistRequest
|
|
6588
|
+
(*AllProfilesExistResponse)(nil), // 71: lansweeper.multitenant.v1.AllProfilesExistResponse
|
|
6589
|
+
(*SendInviteLocalUsersMailRequest)(nil), // 72: lansweeper.multitenant.v1.SendInviteLocalUsersMailRequest
|
|
6590
|
+
(*SendInviteLocalUsersMailResponse)(nil), // 73: lansweeper.multitenant.v1.SendInviteLocalUsersMailResponse
|
|
6591
|
+
(*GetSiteSubscriptionRequest)(nil), // 74: lansweeper.multitenant.v1.GetSiteSubscriptionRequest
|
|
6592
|
+
(*GetSiteSubscriptionResponse)(nil), // 75: lansweeper.multitenant.v1.GetSiteSubscriptionResponse
|
|
6593
|
+
(*CreateLinkingCodeRequest)(nil), // 76: lansweeper.multitenant.v1.CreateLinkingCodeRequest
|
|
6594
|
+
(*CreateLinkingCodeResponse)(nil), // 77: lansweeper.multitenant.v1.CreateLinkingCodeResponse
|
|
6595
|
+
(*GetSiteIdsWithIntegrationData)(nil), // 78: lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData
|
|
6596
|
+
(*CheckStandardizedSoftwareEnabledRequest)(nil), // 79: lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledRequest
|
|
6597
|
+
(*CheckStandardizedSoftwareEnabledResponse)(nil), // 80: lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledResponse
|
|
6598
|
+
(*UpdateSiteMetadataRequest)(nil), // 81: lansweeper.multitenant.v1.UpdateSiteMetadataRequest
|
|
6599
|
+
(*UpdateSiteMetadataResponse)(nil), // 82: lansweeper.multitenant.v1.UpdateSiteMetadataResponse
|
|
6600
|
+
(*GetSiteLimitsRequest)(nil), // 83: lansweeper.multitenant.v1.GetSiteLimitsRequest
|
|
6601
|
+
(*GetSiteLimitsResponse)(nil), // 84: lansweeper.multitenant.v1.GetSiteLimitsResponse
|
|
6602
|
+
(*CheckAccessToSiteByAccountIdRequest_UserInfo)(nil), // 85: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
|
|
6603
|
+
(*Install_InstallState)(nil), // 86: lansweeper.multitenant.v1.Install.InstallState
|
|
6604
|
+
(*GetInstallsBySiteRequest_Filter)(nil), // 87: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
|
|
6605
|
+
(*UpdateInstallByClientIdRequest_SyncerSettings)(nil), // 88: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
|
|
6606
|
+
(*RemoveInstallDataBySiteIdResponse_Result)(nil), // 89: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
|
|
6607
|
+
(*GetUserPermissionsResponse_AuthorizationAction)(nil), // 90: lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
|
|
6608
|
+
(*GetUserPermissionsResponse_Scope)(nil), // 91: lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
|
|
6609
|
+
(*GetUserPermissionsResponse_Role)(nil), // 92: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
|
|
6610
|
+
(*DisableWebhookEmailRequest_WebhookError)(nil), // 93: lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
|
|
6611
|
+
nil, // 94: lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry
|
|
6612
|
+
(*generated_go.SiteLimits)(nil), // 95: lansweeper.shared.limits.v1.SiteLimits
|
|
6496
6613
|
}
|
|
6497
6614
|
var file_multitenant_proto_depIdxs = []int32{
|
|
6498
6615
|
4, // 0: lansweeper.multitenant.v1.GetPreviewAccountByIdResponse.account:type_name -> lansweeper.multitenant.v1.PreviewAccount
|
|
@@ -6502,123 +6619,126 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
6502
6619
|
7, // 4: lansweeper.multitenant.v1.Profile.site:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
6503
6620
|
10, // 5: lansweeper.multitenant.v1.ListProfilesByAccountIdResponse.profile:type_name -> lansweeper.multitenant.v1.Profile
|
|
6504
6621
|
10, // 6: lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse.profile:type_name -> lansweeper.multitenant.v1.Profile
|
|
6505
|
-
|
|
6506
|
-
|
|
6622
|
+
85, // 7: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.user_info:type_name -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
|
|
6623
|
+
86, // 8: lansweeper.multitenant.v1.Install.state:type_name -> lansweeper.multitenant.v1.Install.InstallState
|
|
6507
6624
|
2, // 9: lansweeper.multitenant.v1.Install.install_type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
6508
6625
|
19, // 10: lansweeper.multitenant.v1.GetInstallsByIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
6509
6626
|
2, // 11: lansweeper.multitenant.v1.NullableInstallType.data:type_name -> lansweeper.multitenant.v1.InstallType
|
|
6510
|
-
|
|
6627
|
+
87, // 12: lansweeper.multitenant.v1.GetInstallsBySiteRequest.filter:type_name -> lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
|
|
6511
6628
|
19, // 13: lansweeper.multitenant.v1.GetInstallsBySiteResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
6512
|
-
19, // 14: lansweeper.multitenant.v1.
|
|
6513
|
-
|
|
6514
|
-
|
|
6515
|
-
|
|
6516
|
-
|
|
6517
|
-
|
|
6518
|
-
|
|
6519
|
-
|
|
6520
|
-
|
|
6521
|
-
|
|
6522
|
-
|
|
6523
|
-
|
|
6524
|
-
|
|
6525
|
-
|
|
6526
|
-
|
|
6527
|
-
|
|
6528
|
-
|
|
6529
|
-
|
|
6530
|
-
|
|
6531
|
-
3, // 33: lansweeper.multitenant.v1.
|
|
6532
|
-
|
|
6533
|
-
|
|
6534
|
-
|
|
6535
|
-
|
|
6536
|
-
|
|
6537
|
-
|
|
6538
|
-
1, // 40: lansweeper.multitenant.v1.
|
|
6539
|
-
|
|
6540
|
-
|
|
6541
|
-
|
|
6542
|
-
|
|
6543
|
-
|
|
6544
|
-
|
|
6545
|
-
|
|
6546
|
-
|
|
6547
|
-
|
|
6548
|
-
|
|
6549
|
-
|
|
6550
|
-
|
|
6551
|
-
|
|
6552
|
-
32, // 54: lansweeper.multitenant.v1.Multitenant.
|
|
6553
|
-
|
|
6554
|
-
|
|
6555
|
-
|
|
6556
|
-
|
|
6557
|
-
|
|
6558
|
-
|
|
6559
|
-
|
|
6560
|
-
38, // 62: lansweeper.multitenant.v1.Multitenant.
|
|
6561
|
-
42, // 63: lansweeper.multitenant.v1.Multitenant.
|
|
6562
|
-
|
|
6563
|
-
|
|
6564
|
-
|
|
6565
|
-
|
|
6566
|
-
|
|
6567
|
-
|
|
6568
|
-
|
|
6569
|
-
|
|
6570
|
-
|
|
6571
|
-
|
|
6572
|
-
|
|
6573
|
-
|
|
6574
|
-
|
|
6575
|
-
72, // 77: lansweeper.multitenant.v1.Multitenant.
|
|
6576
|
-
|
|
6577
|
-
|
|
6578
|
-
|
|
6579
|
-
|
|
6580
|
-
|
|
6581
|
-
|
|
6582
|
-
|
|
6583
|
-
|
|
6584
|
-
|
|
6585
|
-
|
|
6586
|
-
|
|
6587
|
-
|
|
6588
|
-
|
|
6589
|
-
|
|
6590
|
-
|
|
6591
|
-
|
|
6592
|
-
29, // 94: lansweeper.multitenant.v1.Multitenant.
|
|
6593
|
-
|
|
6594
|
-
|
|
6595
|
-
|
|
6596
|
-
|
|
6597
|
-
|
|
6598
|
-
|
|
6599
|
-
|
|
6600
|
-
|
|
6601
|
-
|
|
6602
|
-
|
|
6603
|
-
|
|
6604
|
-
|
|
6605
|
-
|
|
6606
|
-
|
|
6607
|
-
|
|
6608
|
-
|
|
6609
|
-
|
|
6610
|
-
67, // 112: lansweeper.multitenant.v1.Multitenant.
|
|
6611
|
-
|
|
6612
|
-
|
|
6613
|
-
|
|
6614
|
-
|
|
6615
|
-
|
|
6616
|
-
|
|
6617
|
-
|
|
6618
|
-
|
|
6619
|
-
|
|
6620
|
-
|
|
6621
|
-
|
|
6629
|
+
19, // 14: lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse.installs:type_name -> lansweeper.multitenant.v1.Install
|
|
6630
|
+
19, // 15: lansweeper.multitenant.v1.GetInstallbyClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
6631
|
+
2, // 16: lansweeper.multitenant.v1.CreateInstallRequest.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
6632
|
+
19, // 17: lansweeper.multitenant.v1.CreateInstallResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
6633
|
+
20, // 18: lansweeper.multitenant.v1.CreateInstallResponse.credentials:type_name -> lansweeper.multitenant.v1.InstallCredentials
|
|
6634
|
+
2, // 19: lansweeper.multitenant.v1.CreateAndLinkInstallRequest.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
6635
|
+
19, // 20: lansweeper.multitenant.v1.CreateAndLinkInstallResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
6636
|
+
20, // 21: lansweeper.multitenant.v1.CreateAndLinkInstallResponse.credentials:type_name -> lansweeper.multitenant.v1.InstallCredentials
|
|
6637
|
+
88, // 22: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.syncer_settings:type_name -> lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
|
|
6638
|
+
19, // 23: lansweeper.multitenant.v1.UpdateInstallByClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
6639
|
+
2, // 24: lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
6640
|
+
19, // 25: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
6641
|
+
20, // 26: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.credentials:type_name -> lansweeper.multitenant.v1.InstallCredentials
|
|
6642
|
+
7, // 27: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.site:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
6643
|
+
89, // 28: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.result:type_name -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
|
|
6644
|
+
19, // 29: lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
6645
|
+
92, // 30: lansweeper.multitenant.v1.GetUserPermissionsResponse.roles:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
|
|
6646
|
+
93, // 31: lansweeper.multitenant.v1.DisableWebhookEmailRequest.errors:type_name -> lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
|
|
6647
|
+
54, // 32: lansweeper.multitenant.v1.AuthorizedSitesResponse.site:type_name -> lansweeper.multitenant.v1.Site
|
|
6648
|
+
3, // 33: lansweeper.multitenant.v1.Subscription.type:type_name -> lansweeper.multitenant.v1.SubscriptionType
|
|
6649
|
+
3, // 34: lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest.type:type_name -> lansweeper.multitenant.v1.SubscriptionType
|
|
6650
|
+
61, // 35: lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse.subscription:type_name -> lansweeper.multitenant.v1.Subscription
|
|
6651
|
+
10, // 36: lansweeper.multitenant.v1.AllProfilesExistResponse.profiles:type_name -> lansweeper.multitenant.v1.Profile
|
|
6652
|
+
4, // 37: lansweeper.multitenant.v1.AllProfilesExistResponse.createdBy:type_name -> lansweeper.multitenant.v1.PreviewAccount
|
|
6653
|
+
3, // 38: lansweeper.multitenant.v1.GetSiteSubscriptionResponse.type:type_name -> lansweeper.multitenant.v1.SubscriptionType
|
|
6654
|
+
94, // 39: lansweeper.multitenant.v1.GetSiteLimitsResponse.site_limits:type_name -> lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry
|
|
6655
|
+
1, // 40: lansweeper.multitenant.v1.Install.InstallState.value:type_name -> lansweeper.multitenant.v1.InstallStateValue
|
|
6656
|
+
1, // 41: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.state:type_name -> lansweeper.multitenant.v1.InstallStateValue
|
|
6657
|
+
2, // 42: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
6658
|
+
25, // 43: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.install_type:type_name -> lansweeper.multitenant.v1.NullableInstallType
|
|
6659
|
+
90, // 44: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.actions:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
|
|
6660
|
+
19, // 45: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.installations:type_name -> lansweeper.multitenant.v1.Install
|
|
6661
|
+
91, // 46: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.scopes:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
|
|
6662
|
+
95, // 47: lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry.value:type_name -> lansweeper.shared.limits.v1.SiteLimits
|
|
6663
|
+
15, // 48: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest
|
|
6664
|
+
17, // 49: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByClientId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByClientIdRequest
|
|
6665
|
+
5, // 50: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:input_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdRequest
|
|
6666
|
+
11, // 51: lansweeper.multitenant.v1.Multitenant.ListProfilesByAccountId:input_type -> lansweeper.multitenant.v1.ListProfilesByAccountIdRequest
|
|
6667
|
+
13, // 52: lansweeper.multitenant.v1.Multitenant.ListAuthorizedLinkProfiles:input_type -> lansweeper.multitenant.v1.ListAuthorizedLinkProfilesRequest
|
|
6668
|
+
8, // 53: lansweeper.multitenant.v1.Multitenant.PatchSiteMode:input_type -> lansweeper.multitenant.v1.PatchSiteModeRequest
|
|
6669
|
+
32, // 54: lansweeper.multitenant.v1.Multitenant.CreateInstall:input_type -> lansweeper.multitenant.v1.CreateInstallRequest
|
|
6670
|
+
34, // 55: lansweeper.multitenant.v1.Multitenant.CreateAndLinkInstall:input_type -> lansweeper.multitenant.v1.CreateAndLinkInstallRequest
|
|
6671
|
+
26, // 56: lansweeper.multitenant.v1.Multitenant.GetInstallsBySite:input_type -> lansweeper.multitenant.v1.GetInstallsBySiteRequest
|
|
6672
|
+
28, // 57: lansweeper.multitenant.v1.Multitenant.GetInstallsforMultipleSites:input_type -> lansweeper.multitenant.v1.GetInstallsForMultipleSitesRequest
|
|
6673
|
+
23, // 58: lansweeper.multitenant.v1.Multitenant.GetInstallsById:input_type -> lansweeper.multitenant.v1.GetInstallsByIdRequest
|
|
6674
|
+
21, // 59: lansweeper.multitenant.v1.Multitenant.GetInstallsCountBySite:input_type -> lansweeper.multitenant.v1.GetInstallsCountBySiteRequest
|
|
6675
|
+
30, // 60: lansweeper.multitenant.v1.Multitenant.GetInstallbyClientId:input_type -> lansweeper.multitenant.v1.GetInstallbyClientIdRequest
|
|
6676
|
+
36, // 61: lansweeper.multitenant.v1.Multitenant.UpdateInstallByClientId:input_type -> lansweeper.multitenant.v1.UpdateInstallByClientIdRequest
|
|
6677
|
+
38, // 62: lansweeper.multitenant.v1.Multitenant.RotateInstallByClientId:input_type -> lansweeper.multitenant.v1.RotateInstallByClientIdRequest
|
|
6678
|
+
42, // 63: lansweeper.multitenant.v1.Multitenant.LinkTrialInstallByClientId:input_type -> lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest
|
|
6679
|
+
40, // 64: lansweeper.multitenant.v1.Multitenant.UnlinkInstallByClientId:input_type -> lansweeper.multitenant.v1.UnlinkInstallByClientIdRequest
|
|
6680
|
+
44, // 65: lansweeper.multitenant.v1.Multitenant.RemoveInstallDataBySiteId:input_type -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdRequest
|
|
6681
|
+
46, // 66: lansweeper.multitenant.v1.Multitenant.GetDuplicatedInstallsByGlobalId:input_type -> lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdRequest
|
|
6682
|
+
48, // 67: lansweeper.multitenant.v1.Multitenant.GetUserPermissions:input_type -> lansweeper.multitenant.v1.GetUserPermissionsRequest
|
|
6683
|
+
50, // 68: lansweeper.multitenant.v1.Multitenant.ValidateApplicationPersonalAccessToken:input_type -> lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest
|
|
6684
|
+
52, // 69: lansweeper.multitenant.v1.Multitenant.SendDisabledWebhookEmail:input_type -> lansweeper.multitenant.v1.DisableWebhookEmailRequest
|
|
6685
|
+
55, // 70: lansweeper.multitenant.v1.Multitenant.GetAuthorizedSitesByApplicationId:input_type -> lansweeper.multitenant.v1.AuthorizedSitesRequest
|
|
6686
|
+
57, // 71: lansweeper.multitenant.v1.Multitenant.GetAccountIdsBySiteId:input_type -> lansweeper.multitenant.v1.GetAccountIdsBySiteIdRequest
|
|
6687
|
+
59, // 72: lansweeper.multitenant.v1.Multitenant.CheckManagerInApplication:input_type -> lansweeper.multitenant.v1.CheckManagerInApplicationRequest
|
|
6688
|
+
62, // 73: lansweeper.multitenant.v1.Multitenant.UpdateSiteSubscription:input_type -> lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest
|
|
6689
|
+
64, // 74: lansweeper.multitenant.v1.Multitenant.CreateTrialSiteAndInstaller:input_type -> lansweeper.multitenant.v1.CreateTrialSiteAndInstallerRequest
|
|
6690
|
+
66, // 75: lansweeper.multitenant.v1.Multitenant.GetInstallationLicenseByClientId:input_type -> lansweeper.multitenant.v1.GetInstallationLicenseByClientIdRequest
|
|
6691
|
+
70, // 76: lansweeper.multitenant.v1.Multitenant.AllProfilesExist:input_type -> lansweeper.multitenant.v1.AllProfilesExistRequest
|
|
6692
|
+
72, // 77: lansweeper.multitenant.v1.Multitenant.SendInviteLocalUsersMail:input_type -> lansweeper.multitenant.v1.SendInviteLocalUsersMailRequest
|
|
6693
|
+
68, // 78: lansweeper.multitenant.v1.Multitenant.AllProfileExists:input_type -> lansweeper.multitenant.v1.AllProfileExistsRequest
|
|
6694
|
+
74, // 79: lansweeper.multitenant.v1.Multitenant.GetSiteSubscription:input_type -> lansweeper.multitenant.v1.GetSiteSubscriptionRequest
|
|
6695
|
+
76, // 80: lansweeper.multitenant.v1.Multitenant.CreateLinkingCode:input_type -> lansweeper.multitenant.v1.CreateLinkingCodeRequest
|
|
6696
|
+
78, // 81: lansweeper.multitenant.v1.Multitenant.GetSiteIdsWithIntegrationBySiteId:input_type -> lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData
|
|
6697
|
+
79, // 82: lansweeper.multitenant.v1.Multitenant.CheckStandardizedSoftwareEnabled:input_type -> lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledRequest
|
|
6698
|
+
81, // 83: lansweeper.multitenant.v1.Multitenant.UpdateSiteMetadata:input_type -> lansweeper.multitenant.v1.UpdateSiteMetadataRequest
|
|
6699
|
+
83, // 84: lansweeper.multitenant.v1.Multitenant.GetSiteLimits:input_type -> lansweeper.multitenant.v1.GetSiteLimitsRequest
|
|
6700
|
+
16, // 85: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdResponse
|
|
6701
|
+
18, // 86: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByClientId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByClientIdResponse
|
|
6702
|
+
6, // 87: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:output_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdResponse
|
|
6703
|
+
12, // 88: lansweeper.multitenant.v1.Multitenant.ListProfilesByAccountId:output_type -> lansweeper.multitenant.v1.ListProfilesByAccountIdResponse
|
|
6704
|
+
14, // 89: lansweeper.multitenant.v1.Multitenant.ListAuthorizedLinkProfiles:output_type -> lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse
|
|
6705
|
+
9, // 90: lansweeper.multitenant.v1.Multitenant.PatchSiteMode:output_type -> lansweeper.multitenant.v1.PatchSiteModeResponse
|
|
6706
|
+
33, // 91: lansweeper.multitenant.v1.Multitenant.CreateInstall:output_type -> lansweeper.multitenant.v1.CreateInstallResponse
|
|
6707
|
+
35, // 92: lansweeper.multitenant.v1.Multitenant.CreateAndLinkInstall:output_type -> lansweeper.multitenant.v1.CreateAndLinkInstallResponse
|
|
6708
|
+
27, // 93: lansweeper.multitenant.v1.Multitenant.GetInstallsBySite:output_type -> lansweeper.multitenant.v1.GetInstallsBySiteResponse
|
|
6709
|
+
29, // 94: lansweeper.multitenant.v1.Multitenant.GetInstallsforMultipleSites:output_type -> lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse
|
|
6710
|
+
24, // 95: lansweeper.multitenant.v1.Multitenant.GetInstallsById:output_type -> lansweeper.multitenant.v1.GetInstallsByIdResponse
|
|
6711
|
+
22, // 96: lansweeper.multitenant.v1.Multitenant.GetInstallsCountBySite:output_type -> lansweeper.multitenant.v1.GetInstallsCountResponse
|
|
6712
|
+
31, // 97: lansweeper.multitenant.v1.Multitenant.GetInstallbyClientId:output_type -> lansweeper.multitenant.v1.GetInstallbyClientIdResponse
|
|
6713
|
+
37, // 98: lansweeper.multitenant.v1.Multitenant.UpdateInstallByClientId:output_type -> lansweeper.multitenant.v1.UpdateInstallByClientIdResponse
|
|
6714
|
+
39, // 99: lansweeper.multitenant.v1.Multitenant.RotateInstallByClientId:output_type -> lansweeper.multitenant.v1.RotateInstallByClientIdResponse
|
|
6715
|
+
43, // 100: lansweeper.multitenant.v1.Multitenant.LinkTrialInstallByClientId:output_type -> lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse
|
|
6716
|
+
41, // 101: lansweeper.multitenant.v1.Multitenant.UnlinkInstallByClientId:output_type -> lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse
|
|
6717
|
+
45, // 102: lansweeper.multitenant.v1.Multitenant.RemoveInstallDataBySiteId:output_type -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse
|
|
6718
|
+
47, // 103: lansweeper.multitenant.v1.Multitenant.GetDuplicatedInstallsByGlobalId:output_type -> lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse
|
|
6719
|
+
49, // 104: lansweeper.multitenant.v1.Multitenant.GetUserPermissions:output_type -> lansweeper.multitenant.v1.GetUserPermissionsResponse
|
|
6720
|
+
51, // 105: lansweeper.multitenant.v1.Multitenant.ValidateApplicationPersonalAccessToken:output_type -> lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse
|
|
6721
|
+
53, // 106: lansweeper.multitenant.v1.Multitenant.SendDisabledWebhookEmail:output_type -> lansweeper.multitenant.v1.DisableWebhookEmailResponse
|
|
6722
|
+
56, // 107: lansweeper.multitenant.v1.Multitenant.GetAuthorizedSitesByApplicationId:output_type -> lansweeper.multitenant.v1.AuthorizedSitesResponse
|
|
6723
|
+
58, // 108: lansweeper.multitenant.v1.Multitenant.GetAccountIdsBySiteId:output_type -> lansweeper.multitenant.v1.GetAccountIdsBySiteIdResponse
|
|
6724
|
+
60, // 109: lansweeper.multitenant.v1.Multitenant.CheckManagerInApplication:output_type -> lansweeper.multitenant.v1.CheckManagerInApplicationResponse
|
|
6725
|
+
63, // 110: lansweeper.multitenant.v1.Multitenant.UpdateSiteSubscription:output_type -> lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse
|
|
6726
|
+
65, // 111: lansweeper.multitenant.v1.Multitenant.CreateTrialSiteAndInstaller:output_type -> lansweeper.multitenant.v1.CreateTrialSiteAndInstallerResponse
|
|
6727
|
+
67, // 112: lansweeper.multitenant.v1.Multitenant.GetInstallationLicenseByClientId:output_type -> lansweeper.multitenant.v1.GetInstallationLicenseByClientIdResponse
|
|
6728
|
+
71, // 113: lansweeper.multitenant.v1.Multitenant.AllProfilesExist:output_type -> lansweeper.multitenant.v1.AllProfilesExistResponse
|
|
6729
|
+
73, // 114: lansweeper.multitenant.v1.Multitenant.SendInviteLocalUsersMail:output_type -> lansweeper.multitenant.v1.SendInviteLocalUsersMailResponse
|
|
6730
|
+
69, // 115: lansweeper.multitenant.v1.Multitenant.AllProfileExists:output_type -> lansweeper.multitenant.v1.AllProfileExistsResponse
|
|
6731
|
+
75, // 116: lansweeper.multitenant.v1.Multitenant.GetSiteSubscription:output_type -> lansweeper.multitenant.v1.GetSiteSubscriptionResponse
|
|
6732
|
+
77, // 117: lansweeper.multitenant.v1.Multitenant.CreateLinkingCode:output_type -> lansweeper.multitenant.v1.CreateLinkingCodeResponse
|
|
6733
|
+
78, // 118: lansweeper.multitenant.v1.Multitenant.GetSiteIdsWithIntegrationBySiteId:output_type -> lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData
|
|
6734
|
+
80, // 119: lansweeper.multitenant.v1.Multitenant.CheckStandardizedSoftwareEnabled:output_type -> lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledResponse
|
|
6735
|
+
82, // 120: lansweeper.multitenant.v1.Multitenant.UpdateSiteMetadata:output_type -> lansweeper.multitenant.v1.UpdateSiteMetadataResponse
|
|
6736
|
+
84, // 121: lansweeper.multitenant.v1.Multitenant.GetSiteLimits:output_type -> lansweeper.multitenant.v1.GetSiteLimitsResponse
|
|
6737
|
+
85, // [85:122] is the sub-list for method output_type
|
|
6738
|
+
48, // [48:85] is the sub-list for method input_type
|
|
6739
|
+
48, // [48:48] is the sub-list for extension type_name
|
|
6740
|
+
48, // [48:48] is the sub-list for extension extendee
|
|
6741
|
+
0, // [0:48] is the sub-list for field type_name
|
|
6622
6742
|
}
|
|
6623
6743
|
|
|
6624
6744
|
func init() { file_multitenant_proto_init() }
|
|
@@ -6916,7 +7036,7 @@ func file_multitenant_proto_init() {
|
|
|
6916
7036
|
}
|
|
6917
7037
|
}
|
|
6918
7038
|
file_multitenant_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
|
|
6919
|
-
switch v := v.(*
|
|
7039
|
+
switch v := v.(*GetInstallsForMultipleSitesRequest); i {
|
|
6920
7040
|
case 0:
|
|
6921
7041
|
return &v.state
|
|
6922
7042
|
case 1:
|
|
@@ -6928,7 +7048,7 @@ func file_multitenant_proto_init() {
|
|
|
6928
7048
|
}
|
|
6929
7049
|
}
|
|
6930
7050
|
file_multitenant_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
|
|
6931
|
-
switch v := v.(*
|
|
7051
|
+
switch v := v.(*GetInstallsForMultipleSitesResponse); i {
|
|
6932
7052
|
case 0:
|
|
6933
7053
|
return &v.state
|
|
6934
7054
|
case 1:
|
|
@@ -6940,7 +7060,7 @@ func file_multitenant_proto_init() {
|
|
|
6940
7060
|
}
|
|
6941
7061
|
}
|
|
6942
7062
|
file_multitenant_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
|
|
6943
|
-
switch v := v.(*
|
|
7063
|
+
switch v := v.(*GetInstallbyClientIdRequest); i {
|
|
6944
7064
|
case 0:
|
|
6945
7065
|
return &v.state
|
|
6946
7066
|
case 1:
|
|
@@ -6952,7 +7072,7 @@ func file_multitenant_proto_init() {
|
|
|
6952
7072
|
}
|
|
6953
7073
|
}
|
|
6954
7074
|
file_multitenant_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
|
|
6955
|
-
switch v := v.(*
|
|
7075
|
+
switch v := v.(*GetInstallbyClientIdResponse); i {
|
|
6956
7076
|
case 0:
|
|
6957
7077
|
return &v.state
|
|
6958
7078
|
case 1:
|
|
@@ -6964,7 +7084,7 @@ func file_multitenant_proto_init() {
|
|
|
6964
7084
|
}
|
|
6965
7085
|
}
|
|
6966
7086
|
file_multitenant_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
|
|
6967
|
-
switch v := v.(*
|
|
7087
|
+
switch v := v.(*CreateInstallRequest); i {
|
|
6968
7088
|
case 0:
|
|
6969
7089
|
return &v.state
|
|
6970
7090
|
case 1:
|
|
@@ -6976,7 +7096,7 @@ func file_multitenant_proto_init() {
|
|
|
6976
7096
|
}
|
|
6977
7097
|
}
|
|
6978
7098
|
file_multitenant_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
|
|
6979
|
-
switch v := v.(*
|
|
7099
|
+
switch v := v.(*CreateInstallResponse); i {
|
|
6980
7100
|
case 0:
|
|
6981
7101
|
return &v.state
|
|
6982
7102
|
case 1:
|
|
@@ -6988,7 +7108,7 @@ func file_multitenant_proto_init() {
|
|
|
6988
7108
|
}
|
|
6989
7109
|
}
|
|
6990
7110
|
file_multitenant_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
|
|
6991
|
-
switch v := v.(*
|
|
7111
|
+
switch v := v.(*CreateAndLinkInstallRequest); i {
|
|
6992
7112
|
case 0:
|
|
6993
7113
|
return &v.state
|
|
6994
7114
|
case 1:
|
|
@@ -7000,7 +7120,7 @@ func file_multitenant_proto_init() {
|
|
|
7000
7120
|
}
|
|
7001
7121
|
}
|
|
7002
7122
|
file_multitenant_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
|
|
7003
|
-
switch v := v.(*
|
|
7123
|
+
switch v := v.(*CreateAndLinkInstallResponse); i {
|
|
7004
7124
|
case 0:
|
|
7005
7125
|
return &v.state
|
|
7006
7126
|
case 1:
|
|
@@ -7012,7 +7132,7 @@ func file_multitenant_proto_init() {
|
|
|
7012
7132
|
}
|
|
7013
7133
|
}
|
|
7014
7134
|
file_multitenant_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
|
|
7015
|
-
switch v := v.(*
|
|
7135
|
+
switch v := v.(*UpdateInstallByClientIdRequest); i {
|
|
7016
7136
|
case 0:
|
|
7017
7137
|
return &v.state
|
|
7018
7138
|
case 1:
|
|
@@ -7024,7 +7144,7 @@ func file_multitenant_proto_init() {
|
|
|
7024
7144
|
}
|
|
7025
7145
|
}
|
|
7026
7146
|
file_multitenant_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
|
|
7027
|
-
switch v := v.(*
|
|
7147
|
+
switch v := v.(*UpdateInstallByClientIdResponse); i {
|
|
7028
7148
|
case 0:
|
|
7029
7149
|
return &v.state
|
|
7030
7150
|
case 1:
|
|
@@ -7036,7 +7156,7 @@ func file_multitenant_proto_init() {
|
|
|
7036
7156
|
}
|
|
7037
7157
|
}
|
|
7038
7158
|
file_multitenant_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
|
|
7039
|
-
switch v := v.(*
|
|
7159
|
+
switch v := v.(*RotateInstallByClientIdRequest); i {
|
|
7040
7160
|
case 0:
|
|
7041
7161
|
return &v.state
|
|
7042
7162
|
case 1:
|
|
@@ -7048,7 +7168,7 @@ func file_multitenant_proto_init() {
|
|
|
7048
7168
|
}
|
|
7049
7169
|
}
|
|
7050
7170
|
file_multitenant_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
|
|
7051
|
-
switch v := v.(*
|
|
7171
|
+
switch v := v.(*RotateInstallByClientIdResponse); i {
|
|
7052
7172
|
case 0:
|
|
7053
7173
|
return &v.state
|
|
7054
7174
|
case 1:
|
|
@@ -7060,7 +7180,7 @@ func file_multitenant_proto_init() {
|
|
|
7060
7180
|
}
|
|
7061
7181
|
}
|
|
7062
7182
|
file_multitenant_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
|
|
7063
|
-
switch v := v.(*
|
|
7183
|
+
switch v := v.(*UnlinkInstallByClientIdRequest); i {
|
|
7064
7184
|
case 0:
|
|
7065
7185
|
return &v.state
|
|
7066
7186
|
case 1:
|
|
@@ -7072,7 +7192,7 @@ func file_multitenant_proto_init() {
|
|
|
7072
7192
|
}
|
|
7073
7193
|
}
|
|
7074
7194
|
file_multitenant_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
|
|
7075
|
-
switch v := v.(*
|
|
7195
|
+
switch v := v.(*UnlinkInstallByClientIdResponse); i {
|
|
7076
7196
|
case 0:
|
|
7077
7197
|
return &v.state
|
|
7078
7198
|
case 1:
|
|
@@ -7084,7 +7204,7 @@ func file_multitenant_proto_init() {
|
|
|
7084
7204
|
}
|
|
7085
7205
|
}
|
|
7086
7206
|
file_multitenant_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
|
|
7087
|
-
switch v := v.(*
|
|
7207
|
+
switch v := v.(*LinkTrialInstallByClientIdRequest); i {
|
|
7088
7208
|
case 0:
|
|
7089
7209
|
return &v.state
|
|
7090
7210
|
case 1:
|
|
@@ -7096,7 +7216,7 @@ func file_multitenant_proto_init() {
|
|
|
7096
7216
|
}
|
|
7097
7217
|
}
|
|
7098
7218
|
file_multitenant_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
|
|
7099
|
-
switch v := v.(*
|
|
7219
|
+
switch v := v.(*LinkTrialInstallByClientIdResponse); i {
|
|
7100
7220
|
case 0:
|
|
7101
7221
|
return &v.state
|
|
7102
7222
|
case 1:
|
|
@@ -7108,7 +7228,7 @@ func file_multitenant_proto_init() {
|
|
|
7108
7228
|
}
|
|
7109
7229
|
}
|
|
7110
7230
|
file_multitenant_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
|
|
7111
|
-
switch v := v.(*
|
|
7231
|
+
switch v := v.(*RemoveInstallDataBySiteIdRequest); i {
|
|
7112
7232
|
case 0:
|
|
7113
7233
|
return &v.state
|
|
7114
7234
|
case 1:
|
|
@@ -7120,7 +7240,7 @@ func file_multitenant_proto_init() {
|
|
|
7120
7240
|
}
|
|
7121
7241
|
}
|
|
7122
7242
|
file_multitenant_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
|
|
7123
|
-
switch v := v.(*
|
|
7243
|
+
switch v := v.(*RemoveInstallDataBySiteIdResponse); i {
|
|
7124
7244
|
case 0:
|
|
7125
7245
|
return &v.state
|
|
7126
7246
|
case 1:
|
|
@@ -7132,7 +7252,7 @@ func file_multitenant_proto_init() {
|
|
|
7132
7252
|
}
|
|
7133
7253
|
}
|
|
7134
7254
|
file_multitenant_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
|
|
7135
|
-
switch v := v.(*
|
|
7255
|
+
switch v := v.(*GetDuplicatedInstallsByGlobalIdRequest); i {
|
|
7136
7256
|
case 0:
|
|
7137
7257
|
return &v.state
|
|
7138
7258
|
case 1:
|
|
@@ -7144,7 +7264,7 @@ func file_multitenant_proto_init() {
|
|
|
7144
7264
|
}
|
|
7145
7265
|
}
|
|
7146
7266
|
file_multitenant_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
|
|
7147
|
-
switch v := v.(*
|
|
7267
|
+
switch v := v.(*GetDuplicatedInstallsByGlobalIdResponse); i {
|
|
7148
7268
|
case 0:
|
|
7149
7269
|
return &v.state
|
|
7150
7270
|
case 1:
|
|
@@ -7156,7 +7276,7 @@ func file_multitenant_proto_init() {
|
|
|
7156
7276
|
}
|
|
7157
7277
|
}
|
|
7158
7278
|
file_multitenant_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
|
|
7159
|
-
switch v := v.(*
|
|
7279
|
+
switch v := v.(*GetUserPermissionsRequest); i {
|
|
7160
7280
|
case 0:
|
|
7161
7281
|
return &v.state
|
|
7162
7282
|
case 1:
|
|
@@ -7168,7 +7288,7 @@ func file_multitenant_proto_init() {
|
|
|
7168
7288
|
}
|
|
7169
7289
|
}
|
|
7170
7290
|
file_multitenant_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
|
|
7171
|
-
switch v := v.(*
|
|
7291
|
+
switch v := v.(*GetUserPermissionsResponse); i {
|
|
7172
7292
|
case 0:
|
|
7173
7293
|
return &v.state
|
|
7174
7294
|
case 1:
|
|
@@ -7180,7 +7300,7 @@ func file_multitenant_proto_init() {
|
|
|
7180
7300
|
}
|
|
7181
7301
|
}
|
|
7182
7302
|
file_multitenant_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
|
|
7183
|
-
switch v := v.(*
|
|
7303
|
+
switch v := v.(*ValidateApplicationPersonalAccessTokenRequest); i {
|
|
7184
7304
|
case 0:
|
|
7185
7305
|
return &v.state
|
|
7186
7306
|
case 1:
|
|
@@ -7192,7 +7312,7 @@ func file_multitenant_proto_init() {
|
|
|
7192
7312
|
}
|
|
7193
7313
|
}
|
|
7194
7314
|
file_multitenant_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
|
|
7195
|
-
switch v := v.(*
|
|
7315
|
+
switch v := v.(*ValidateApplicationPersonalAccessTokenResponse); i {
|
|
7196
7316
|
case 0:
|
|
7197
7317
|
return &v.state
|
|
7198
7318
|
case 1:
|
|
@@ -7204,7 +7324,7 @@ func file_multitenant_proto_init() {
|
|
|
7204
7324
|
}
|
|
7205
7325
|
}
|
|
7206
7326
|
file_multitenant_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
|
|
7207
|
-
switch v := v.(*
|
|
7327
|
+
switch v := v.(*DisableWebhookEmailRequest); i {
|
|
7208
7328
|
case 0:
|
|
7209
7329
|
return &v.state
|
|
7210
7330
|
case 1:
|
|
@@ -7216,7 +7336,7 @@ func file_multitenant_proto_init() {
|
|
|
7216
7336
|
}
|
|
7217
7337
|
}
|
|
7218
7338
|
file_multitenant_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
|
|
7219
|
-
switch v := v.(*
|
|
7339
|
+
switch v := v.(*DisableWebhookEmailResponse); i {
|
|
7220
7340
|
case 0:
|
|
7221
7341
|
return &v.state
|
|
7222
7342
|
case 1:
|
|
@@ -7228,7 +7348,7 @@ func file_multitenant_proto_init() {
|
|
|
7228
7348
|
}
|
|
7229
7349
|
}
|
|
7230
7350
|
file_multitenant_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
|
|
7231
|
-
switch v := v.(*
|
|
7351
|
+
switch v := v.(*Site); i {
|
|
7232
7352
|
case 0:
|
|
7233
7353
|
return &v.state
|
|
7234
7354
|
case 1:
|
|
@@ -7240,7 +7360,7 @@ func file_multitenant_proto_init() {
|
|
|
7240
7360
|
}
|
|
7241
7361
|
}
|
|
7242
7362
|
file_multitenant_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
|
|
7243
|
-
switch v := v.(*
|
|
7363
|
+
switch v := v.(*AuthorizedSitesRequest); i {
|
|
7244
7364
|
case 0:
|
|
7245
7365
|
return &v.state
|
|
7246
7366
|
case 1:
|
|
@@ -7252,7 +7372,7 @@ func file_multitenant_proto_init() {
|
|
|
7252
7372
|
}
|
|
7253
7373
|
}
|
|
7254
7374
|
file_multitenant_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
|
|
7255
|
-
switch v := v.(*
|
|
7375
|
+
switch v := v.(*AuthorizedSitesResponse); i {
|
|
7256
7376
|
case 0:
|
|
7257
7377
|
return &v.state
|
|
7258
7378
|
case 1:
|
|
@@ -7264,7 +7384,7 @@ func file_multitenant_proto_init() {
|
|
|
7264
7384
|
}
|
|
7265
7385
|
}
|
|
7266
7386
|
file_multitenant_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
|
|
7267
|
-
switch v := v.(*
|
|
7387
|
+
switch v := v.(*GetAccountIdsBySiteIdRequest); i {
|
|
7268
7388
|
case 0:
|
|
7269
7389
|
return &v.state
|
|
7270
7390
|
case 1:
|
|
@@ -7276,7 +7396,7 @@ func file_multitenant_proto_init() {
|
|
|
7276
7396
|
}
|
|
7277
7397
|
}
|
|
7278
7398
|
file_multitenant_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
|
|
7279
|
-
switch v := v.(*
|
|
7399
|
+
switch v := v.(*GetAccountIdsBySiteIdResponse); i {
|
|
7280
7400
|
case 0:
|
|
7281
7401
|
return &v.state
|
|
7282
7402
|
case 1:
|
|
@@ -7288,7 +7408,7 @@ func file_multitenant_proto_init() {
|
|
|
7288
7408
|
}
|
|
7289
7409
|
}
|
|
7290
7410
|
file_multitenant_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
|
|
7291
|
-
switch v := v.(*
|
|
7411
|
+
switch v := v.(*CheckManagerInApplicationRequest); i {
|
|
7292
7412
|
case 0:
|
|
7293
7413
|
return &v.state
|
|
7294
7414
|
case 1:
|
|
@@ -7300,7 +7420,7 @@ func file_multitenant_proto_init() {
|
|
|
7300
7420
|
}
|
|
7301
7421
|
}
|
|
7302
7422
|
file_multitenant_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
|
|
7303
|
-
switch v := v.(*
|
|
7423
|
+
switch v := v.(*CheckManagerInApplicationResponse); i {
|
|
7304
7424
|
case 0:
|
|
7305
7425
|
return &v.state
|
|
7306
7426
|
case 1:
|
|
@@ -7312,7 +7432,7 @@ func file_multitenant_proto_init() {
|
|
|
7312
7432
|
}
|
|
7313
7433
|
}
|
|
7314
7434
|
file_multitenant_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
|
|
7315
|
-
switch v := v.(*
|
|
7435
|
+
switch v := v.(*Subscription); i {
|
|
7316
7436
|
case 0:
|
|
7317
7437
|
return &v.state
|
|
7318
7438
|
case 1:
|
|
@@ -7324,7 +7444,7 @@ func file_multitenant_proto_init() {
|
|
|
7324
7444
|
}
|
|
7325
7445
|
}
|
|
7326
7446
|
file_multitenant_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
|
|
7327
|
-
switch v := v.(*
|
|
7447
|
+
switch v := v.(*UpdateSiteSubscriptionRequest); i {
|
|
7328
7448
|
case 0:
|
|
7329
7449
|
return &v.state
|
|
7330
7450
|
case 1:
|
|
@@ -7336,7 +7456,7 @@ func file_multitenant_proto_init() {
|
|
|
7336
7456
|
}
|
|
7337
7457
|
}
|
|
7338
7458
|
file_multitenant_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
|
|
7339
|
-
switch v := v.(*
|
|
7459
|
+
switch v := v.(*UpdateSiteSubscriptionResponse); i {
|
|
7340
7460
|
case 0:
|
|
7341
7461
|
return &v.state
|
|
7342
7462
|
case 1:
|
|
@@ -7348,7 +7468,7 @@ func file_multitenant_proto_init() {
|
|
|
7348
7468
|
}
|
|
7349
7469
|
}
|
|
7350
7470
|
file_multitenant_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
|
|
7351
|
-
switch v := v.(*
|
|
7471
|
+
switch v := v.(*CreateTrialSiteAndInstallerRequest); i {
|
|
7352
7472
|
case 0:
|
|
7353
7473
|
return &v.state
|
|
7354
7474
|
case 1:
|
|
@@ -7360,7 +7480,7 @@ func file_multitenant_proto_init() {
|
|
|
7360
7480
|
}
|
|
7361
7481
|
}
|
|
7362
7482
|
file_multitenant_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
|
|
7363
|
-
switch v := v.(*
|
|
7483
|
+
switch v := v.(*CreateTrialSiteAndInstallerResponse); i {
|
|
7364
7484
|
case 0:
|
|
7365
7485
|
return &v.state
|
|
7366
7486
|
case 1:
|
|
@@ -7372,7 +7492,7 @@ func file_multitenant_proto_init() {
|
|
|
7372
7492
|
}
|
|
7373
7493
|
}
|
|
7374
7494
|
file_multitenant_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
|
|
7375
|
-
switch v := v.(*
|
|
7495
|
+
switch v := v.(*GetInstallationLicenseByClientIdRequest); i {
|
|
7376
7496
|
case 0:
|
|
7377
7497
|
return &v.state
|
|
7378
7498
|
case 1:
|
|
@@ -7384,7 +7504,7 @@ func file_multitenant_proto_init() {
|
|
|
7384
7504
|
}
|
|
7385
7505
|
}
|
|
7386
7506
|
file_multitenant_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
|
|
7387
|
-
switch v := v.(*
|
|
7507
|
+
switch v := v.(*GetInstallationLicenseByClientIdResponse); i {
|
|
7388
7508
|
case 0:
|
|
7389
7509
|
return &v.state
|
|
7390
7510
|
case 1:
|
|
@@ -7396,7 +7516,7 @@ func file_multitenant_proto_init() {
|
|
|
7396
7516
|
}
|
|
7397
7517
|
}
|
|
7398
7518
|
file_multitenant_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
|
|
7399
|
-
switch v := v.(*
|
|
7519
|
+
switch v := v.(*AllProfileExistsRequest); i {
|
|
7400
7520
|
case 0:
|
|
7401
7521
|
return &v.state
|
|
7402
7522
|
case 1:
|
|
@@ -7408,7 +7528,7 @@ func file_multitenant_proto_init() {
|
|
|
7408
7528
|
}
|
|
7409
7529
|
}
|
|
7410
7530
|
file_multitenant_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
|
|
7411
|
-
switch v := v.(*
|
|
7531
|
+
switch v := v.(*AllProfileExistsResponse); i {
|
|
7412
7532
|
case 0:
|
|
7413
7533
|
return &v.state
|
|
7414
7534
|
case 1:
|
|
@@ -7420,7 +7540,7 @@ func file_multitenant_proto_init() {
|
|
|
7420
7540
|
}
|
|
7421
7541
|
}
|
|
7422
7542
|
file_multitenant_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
|
|
7423
|
-
switch v := v.(*
|
|
7543
|
+
switch v := v.(*AllProfilesExistRequest); i {
|
|
7424
7544
|
case 0:
|
|
7425
7545
|
return &v.state
|
|
7426
7546
|
case 1:
|
|
@@ -7432,7 +7552,7 @@ func file_multitenant_proto_init() {
|
|
|
7432
7552
|
}
|
|
7433
7553
|
}
|
|
7434
7554
|
file_multitenant_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} {
|
|
7435
|
-
switch v := v.(*
|
|
7555
|
+
switch v := v.(*AllProfilesExistResponse); i {
|
|
7436
7556
|
case 0:
|
|
7437
7557
|
return &v.state
|
|
7438
7558
|
case 1:
|
|
@@ -7444,7 +7564,7 @@ func file_multitenant_proto_init() {
|
|
|
7444
7564
|
}
|
|
7445
7565
|
}
|
|
7446
7566
|
file_multitenant_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} {
|
|
7447
|
-
switch v := v.(*
|
|
7567
|
+
switch v := v.(*SendInviteLocalUsersMailRequest); i {
|
|
7448
7568
|
case 0:
|
|
7449
7569
|
return &v.state
|
|
7450
7570
|
case 1:
|
|
@@ -7456,7 +7576,7 @@ func file_multitenant_proto_init() {
|
|
|
7456
7576
|
}
|
|
7457
7577
|
}
|
|
7458
7578
|
file_multitenant_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} {
|
|
7459
|
-
switch v := v.(*
|
|
7579
|
+
switch v := v.(*SendInviteLocalUsersMailResponse); i {
|
|
7460
7580
|
case 0:
|
|
7461
7581
|
return &v.state
|
|
7462
7582
|
case 1:
|
|
@@ -7468,7 +7588,7 @@ func file_multitenant_proto_init() {
|
|
|
7468
7588
|
}
|
|
7469
7589
|
}
|
|
7470
7590
|
file_multitenant_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} {
|
|
7471
|
-
switch v := v.(*
|
|
7591
|
+
switch v := v.(*GetSiteSubscriptionRequest); i {
|
|
7472
7592
|
case 0:
|
|
7473
7593
|
return &v.state
|
|
7474
7594
|
case 1:
|
|
@@ -7480,7 +7600,7 @@ func file_multitenant_proto_init() {
|
|
|
7480
7600
|
}
|
|
7481
7601
|
}
|
|
7482
7602
|
file_multitenant_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} {
|
|
7483
|
-
switch v := v.(*
|
|
7603
|
+
switch v := v.(*GetSiteSubscriptionResponse); i {
|
|
7484
7604
|
case 0:
|
|
7485
7605
|
return &v.state
|
|
7486
7606
|
case 1:
|
|
@@ -7492,7 +7612,7 @@ func file_multitenant_proto_init() {
|
|
|
7492
7612
|
}
|
|
7493
7613
|
}
|
|
7494
7614
|
file_multitenant_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} {
|
|
7495
|
-
switch v := v.(*
|
|
7615
|
+
switch v := v.(*CreateLinkingCodeRequest); i {
|
|
7496
7616
|
case 0:
|
|
7497
7617
|
return &v.state
|
|
7498
7618
|
case 1:
|
|
@@ -7504,7 +7624,7 @@ func file_multitenant_proto_init() {
|
|
|
7504
7624
|
}
|
|
7505
7625
|
}
|
|
7506
7626
|
file_multitenant_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} {
|
|
7507
|
-
switch v := v.(*
|
|
7627
|
+
switch v := v.(*CreateLinkingCodeResponse); i {
|
|
7508
7628
|
case 0:
|
|
7509
7629
|
return &v.state
|
|
7510
7630
|
case 1:
|
|
@@ -7516,7 +7636,7 @@ func file_multitenant_proto_init() {
|
|
|
7516
7636
|
}
|
|
7517
7637
|
}
|
|
7518
7638
|
file_multitenant_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} {
|
|
7519
|
-
switch v := v.(*
|
|
7639
|
+
switch v := v.(*GetSiteIdsWithIntegrationData); i {
|
|
7520
7640
|
case 0:
|
|
7521
7641
|
return &v.state
|
|
7522
7642
|
case 1:
|
|
@@ -7528,7 +7648,7 @@ func file_multitenant_proto_init() {
|
|
|
7528
7648
|
}
|
|
7529
7649
|
}
|
|
7530
7650
|
file_multitenant_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} {
|
|
7531
|
-
switch v := v.(*
|
|
7651
|
+
switch v := v.(*CheckStandardizedSoftwareEnabledRequest); i {
|
|
7532
7652
|
case 0:
|
|
7533
7653
|
return &v.state
|
|
7534
7654
|
case 1:
|
|
@@ -7540,7 +7660,7 @@ func file_multitenant_proto_init() {
|
|
|
7540
7660
|
}
|
|
7541
7661
|
}
|
|
7542
7662
|
file_multitenant_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} {
|
|
7543
|
-
switch v := v.(*
|
|
7663
|
+
switch v := v.(*CheckStandardizedSoftwareEnabledResponse); i {
|
|
7544
7664
|
case 0:
|
|
7545
7665
|
return &v.state
|
|
7546
7666
|
case 1:
|
|
@@ -7552,7 +7672,7 @@ func file_multitenant_proto_init() {
|
|
|
7552
7672
|
}
|
|
7553
7673
|
}
|
|
7554
7674
|
file_multitenant_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} {
|
|
7555
|
-
switch v := v.(*
|
|
7675
|
+
switch v := v.(*UpdateSiteMetadataRequest); i {
|
|
7556
7676
|
case 0:
|
|
7557
7677
|
return &v.state
|
|
7558
7678
|
case 1:
|
|
@@ -7564,7 +7684,7 @@ func file_multitenant_proto_init() {
|
|
|
7564
7684
|
}
|
|
7565
7685
|
}
|
|
7566
7686
|
file_multitenant_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} {
|
|
7567
|
-
switch v := v.(*
|
|
7687
|
+
switch v := v.(*UpdateSiteMetadataResponse); i {
|
|
7568
7688
|
case 0:
|
|
7569
7689
|
return &v.state
|
|
7570
7690
|
case 1:
|
|
@@ -7576,7 +7696,7 @@ func file_multitenant_proto_init() {
|
|
|
7576
7696
|
}
|
|
7577
7697
|
}
|
|
7578
7698
|
file_multitenant_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} {
|
|
7579
|
-
switch v := v.(*
|
|
7699
|
+
switch v := v.(*GetSiteLimitsRequest); i {
|
|
7580
7700
|
case 0:
|
|
7581
7701
|
return &v.state
|
|
7582
7702
|
case 1:
|
|
@@ -7588,7 +7708,7 @@ func file_multitenant_proto_init() {
|
|
|
7588
7708
|
}
|
|
7589
7709
|
}
|
|
7590
7710
|
file_multitenant_proto_msgTypes[80].Exporter = func(v interface{}, i int) interface{} {
|
|
7591
|
-
switch v := v.(*
|
|
7711
|
+
switch v := v.(*GetSiteLimitsResponse); i {
|
|
7592
7712
|
case 0:
|
|
7593
7713
|
return &v.state
|
|
7594
7714
|
case 1:
|
|
@@ -7600,7 +7720,7 @@ func file_multitenant_proto_init() {
|
|
|
7600
7720
|
}
|
|
7601
7721
|
}
|
|
7602
7722
|
file_multitenant_proto_msgTypes[81].Exporter = func(v interface{}, i int) interface{} {
|
|
7603
|
-
switch v := v.(*
|
|
7723
|
+
switch v := v.(*CheckAccessToSiteByAccountIdRequest_UserInfo); i {
|
|
7604
7724
|
case 0:
|
|
7605
7725
|
return &v.state
|
|
7606
7726
|
case 1:
|
|
@@ -7612,7 +7732,7 @@ func file_multitenant_proto_init() {
|
|
|
7612
7732
|
}
|
|
7613
7733
|
}
|
|
7614
7734
|
file_multitenant_proto_msgTypes[82].Exporter = func(v interface{}, i int) interface{} {
|
|
7615
|
-
switch v := v.(*
|
|
7735
|
+
switch v := v.(*Install_InstallState); i {
|
|
7616
7736
|
case 0:
|
|
7617
7737
|
return &v.state
|
|
7618
7738
|
case 1:
|
|
@@ -7624,7 +7744,7 @@ func file_multitenant_proto_init() {
|
|
|
7624
7744
|
}
|
|
7625
7745
|
}
|
|
7626
7746
|
file_multitenant_proto_msgTypes[83].Exporter = func(v interface{}, i int) interface{} {
|
|
7627
|
-
switch v := v.(*
|
|
7747
|
+
switch v := v.(*GetInstallsBySiteRequest_Filter); i {
|
|
7628
7748
|
case 0:
|
|
7629
7749
|
return &v.state
|
|
7630
7750
|
case 1:
|
|
@@ -7636,7 +7756,7 @@ func file_multitenant_proto_init() {
|
|
|
7636
7756
|
}
|
|
7637
7757
|
}
|
|
7638
7758
|
file_multitenant_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} {
|
|
7639
|
-
switch v := v.(*
|
|
7759
|
+
switch v := v.(*UpdateInstallByClientIdRequest_SyncerSettings); i {
|
|
7640
7760
|
case 0:
|
|
7641
7761
|
return &v.state
|
|
7642
7762
|
case 1:
|
|
@@ -7648,7 +7768,7 @@ func file_multitenant_proto_init() {
|
|
|
7648
7768
|
}
|
|
7649
7769
|
}
|
|
7650
7770
|
file_multitenant_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} {
|
|
7651
|
-
switch v := v.(*
|
|
7771
|
+
switch v := v.(*RemoveInstallDataBySiteIdResponse_Result); i {
|
|
7652
7772
|
case 0:
|
|
7653
7773
|
return &v.state
|
|
7654
7774
|
case 1:
|
|
@@ -7660,7 +7780,7 @@ func file_multitenant_proto_init() {
|
|
|
7660
7780
|
}
|
|
7661
7781
|
}
|
|
7662
7782
|
file_multitenant_proto_msgTypes[86].Exporter = func(v interface{}, i int) interface{} {
|
|
7663
|
-
switch v := v.(*
|
|
7783
|
+
switch v := v.(*GetUserPermissionsResponse_AuthorizationAction); i {
|
|
7664
7784
|
case 0:
|
|
7665
7785
|
return &v.state
|
|
7666
7786
|
case 1:
|
|
@@ -7672,6 +7792,30 @@ func file_multitenant_proto_init() {
|
|
|
7672
7792
|
}
|
|
7673
7793
|
}
|
|
7674
7794
|
file_multitenant_proto_msgTypes[87].Exporter = func(v interface{}, i int) interface{} {
|
|
7795
|
+
switch v := v.(*GetUserPermissionsResponse_Scope); i {
|
|
7796
|
+
case 0:
|
|
7797
|
+
return &v.state
|
|
7798
|
+
case 1:
|
|
7799
|
+
return &v.sizeCache
|
|
7800
|
+
case 2:
|
|
7801
|
+
return &v.unknownFields
|
|
7802
|
+
default:
|
|
7803
|
+
return nil
|
|
7804
|
+
}
|
|
7805
|
+
}
|
|
7806
|
+
file_multitenant_proto_msgTypes[88].Exporter = func(v interface{}, i int) interface{} {
|
|
7807
|
+
switch v := v.(*GetUserPermissionsResponse_Role); i {
|
|
7808
|
+
case 0:
|
|
7809
|
+
return &v.state
|
|
7810
|
+
case 1:
|
|
7811
|
+
return &v.sizeCache
|
|
7812
|
+
case 2:
|
|
7813
|
+
return &v.unknownFields
|
|
7814
|
+
default:
|
|
7815
|
+
return nil
|
|
7816
|
+
}
|
|
7817
|
+
}
|
|
7818
|
+
file_multitenant_proto_msgTypes[89].Exporter = func(v interface{}, i int) interface{} {
|
|
7675
7819
|
switch v := v.(*DisableWebhookEmailRequest_WebhookError); i {
|
|
7676
7820
|
case 0:
|
|
7677
7821
|
return &v.state
|
|
@@ -7693,7 +7837,7 @@ func file_multitenant_proto_init() {
|
|
|
7693
7837
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
7694
7838
|
RawDescriptor: file_multitenant_proto_rawDesc,
|
|
7695
7839
|
NumEnums: 4,
|
|
7696
|
-
NumMessages:
|
|
7840
|
+
NumMessages: 91,
|
|
7697
7841
|
NumExtensions: 0,
|
|
7698
7842
|
NumServices: 1,
|
|
7699
7843
|
},
|