diff --git a/internal/login/static/templates/select_user.html b/internal/login/static/templates/select_user.html
index 1dc69726af..ea439da96f 100644
--- a/internal/login/static/templates/select_user.html
+++ b/internal/login/static/templates/select_user.html
@@ -6,17 +6,32 @@
diff --git a/internal/qrcode/qr_svg.go b/internal/qrcode/qr_svg.go
new file mode 100644
index 0000000000..4479e9b45d
--- /dev/null
+++ b/internal/qrcode/qr_svg.go
@@ -0,0 +1,73 @@
+package qrcode
+
+import (
+ "errors"
+ "image/color"
+
+ "github.com/ajstarks/svgo"
+ "github.com/boombuler/barcode"
+)
+
+// QrSVG holds the data related to the size, location,
+// and block size of the QR Code. Holds unexported fields.
+type QrSVG struct {
+ qr barcode.Barcode
+ qrWidth int
+ blockSize int
+ startingX int
+ startingY int
+}
+
+// NewQrSVG contructs a QrSVG struct. It takes a QR Code in the form
+// of barcode.Barcode and sets the "pixel" or block size of QR Code in
+// the SVG file.
+func NewQrSVG(qr barcode.Barcode, blockSize int) QrSVG {
+ return QrSVG{
+ qr: qr,
+ qrWidth: qr.Bounds().Max.X,
+ blockSize: blockSize,
+ startingX: 0,
+ startingY: 0,
+ }
+}
+
+// WriteQrSVG writes the QR Code to SVG.
+func (qs *QrSVG) WriteQrSVG(s *svg.SVG) error {
+ if qs.qr.Metadata().CodeKind == "QR Code" {
+ currY := qs.startingY
+
+ for x := 0; x < qs.qrWidth; x++ {
+ currX := qs.startingX
+ for y := 0; y < qs.qrWidth; y++ {
+ if qs.qr.At(x, y) == color.Black {
+ s.Rect(currX, currY, qs.blockSize, qs.blockSize, "class=\"color\"")
+ } else if qs.qr.At(x, y) == color.White {
+ s.Rect(currX, currY, qs.blockSize, qs.blockSize, "class=\"bg-color\"")
+ }
+ currX += qs.blockSize
+ }
+ currY += qs.blockSize
+ }
+ return nil
+ }
+ return errors.New("can not write to SVG: Not a QR code")
+}
+
+// SetStartPoint sets the top left start point of QR Code.
+// This takes an X and Y value and then adds four white "blocks"
+// to create the "quiet zone" around the QR Code.
+func (qs *QrSVG) SetStartPoint(x, y int) {
+ qs.startingX = x + (qs.blockSize * 4)
+ qs.startingY = y + (qs.blockSize * 4)
+}
+
+// StartQrSVG creates a start for writing an SVG file that
+// only contains a barcode. This is similar to the svg.Start() method.
+// This fucntion should only be used if you only want to write a QR code
+// to the SVG. Otherwise use the regular svg.Start() method to start your
+// SVG file.
+func (qs *QrSVG) StartQrSVG(s *svg.SVG) {
+ width := (qs.qrWidth * qs.blockSize) + (qs.blockSize * 8)
+ qs.SetStartPoint(0, 0)
+ s.Start(width, width)
+}
diff --git a/internal/qrcode/qr_svg_test.go b/internal/qrcode/qr_svg_test.go
new file mode 100644
index 0000000000..d6dc1fbd29
--- /dev/null
+++ b/internal/qrcode/qr_svg_test.go
@@ -0,0 +1,493 @@
+package qrcode
+
+import (
+ "bytes"
+ "os"
+ "testing"
+
+ "github.com/ajstarks/svgo"
+ "github.com/boombuler/barcode/qr"
+)
+
+func Test_goqrsvg(t *testing.T) {
+ buf := bytes.NewBufferString("")
+ s := svg.New(buf)
+
+ // Create the barcode
+ qrCode, _ := qr.Encode("Hello World", qr.M, qr.Auto)
+
+ // Write QR code to SVG
+ qs := NewQrSVG(qrCode, 5)
+ qs.StartQrSVG(s)
+ qs.WriteQrSVG(s)
+
+ s.End()
+
+ // Check if output the same as correctOutput
+ if buf.String() != correctOutput {
+ t.Error("Something is not right... The SVG created is not the same as correctOutput.")
+ }
+}
+
+func ExampleNewQrSVG() {
+ s := svg.New(os.Stdout)
+
+ // Create the barcode
+ qrCode, _ := qr.Encode("Hello World", qr.M, qr.Auto)
+
+ // Write QR code to SVG
+ qs := NewQrSVG(qrCode, 5)
+ qs.StartQrSVG(s)
+ qs.WriteQrSVG(s)
+
+ s.End()
+}
+
+const correctOutput = `
+
+
+`
diff --git a/internal/qrcode/readme.md b/internal/qrcode/readme.md
new file mode 100644
index 0000000000..375eba31a8
--- /dev/null
+++ b/internal/qrcode/readme.md
@@ -0,0 +1,14 @@
+# QR Code to SVG
+
+This package is a copy of https://github.com/aaronarduino/goqrsvg with the difference of creating the svg with `class` attribute instead of inline `style`:
+
+```go
+s.Rect(currX, currY, qs.blockSize, qs.blockSize, "class=\"color\"")
+```
+
+and not
+```go
+s.Rect(currX, currY, qs.blockSize, qs.blockSize, "fill:black;stroke:none")
+```
+
+This allows the svg to be styled by css more easily and does not compromise Content Security Policy (CSP).
\ No newline at end of file
diff --git a/internal/user/model/user.go b/internal/user/model/user.go
index a69dd6d9ea..af8cecfb48 100644
--- a/internal/user/model/user.go
+++ b/internal/user/model/user.go
@@ -81,6 +81,12 @@ func (u *User) CheckOrgIamPolicy(policy *org_model.OrgIamPolicy) error {
return nil
}
+func (u *User) SetNamesAsDisplayname() {
+ if u.Profile != nil && u.DisplayName == "" && u.FirstName != "" && u.LastName != "" {
+ u.DisplayName = u.FirstName + " " + u.LastName
+ }
+}
+
func (u *User) IsValid() bool {
return u.Profile != nil && u.FirstName != "" && u.LastName != "" && u.UserName != "" && u.Email != nil && u.Email.IsValid() && u.Phone == nil || (u.Phone != nil && u.Phone.IsValid())
}
diff --git a/internal/user/model/user_session_view.go b/internal/user/model/user_session_view.go
index c918cac751..188a3e05f9 100644
--- a/internal/user/model/user_session_view.go
+++ b/internal/user/model/user_session_view.go
@@ -15,6 +15,8 @@ type UserSessionView struct {
UserAgentID string
UserID string
UserName string
+ LoginName string
+ DisplayName string
PasswordVerification time.Time
MfaSoftwareVerification time.Time
MfaSoftwareVerificationType req_model.MfaType
diff --git a/internal/user/repository/eventsourcing/eventstore.go b/internal/user/repository/eventsourcing/eventstore.go
index 6b6939eff2..54b789941c 100644
--- a/internal/user/repository/eventsourcing/eventstore.go
+++ b/internal/user/repository/eventsourcing/eventstore.go
@@ -109,6 +109,7 @@ func (es *UserEventstore) PrepareCreateUser(ctx context.Context, user *usr_model
if err != nil {
return nil, nil, err
}
+ user.SetNamesAsDisplayname()
if !user.IsValid() {
return nil, nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-9dk45", "User is invalid")
}
@@ -161,6 +162,7 @@ func (es *UserEventstore) PrepareRegisterUser(ctx context.Context, user *usr_mod
if err != nil {
return nil, nil, err
}
+ user.SetNamesAsDisplayname()
if !user.IsValid() || user.Password == nil || user.SecretString == "" {
return nil, nil, caos_errs.ThrowPreconditionFailed(nil, "EVENT-9dk45", "Errors.User.InvalidData")
}
diff --git a/internal/user/repository/view/model/user_session.go b/internal/user/repository/view/model/user_session.go
index d5c0a7ff48..d9fbcfe678 100644
--- a/internal/user/repository/view/model/user_session.go
+++ b/internal/user/repository/view/model/user_session.go
@@ -27,7 +27,9 @@ type UserSessionView struct {
State int32 `json:"-" gorm:"column:state"`
UserAgentID string `json:"userAgentID" gorm:"column:user_agent_id;primary_key"`
UserID string `json:"userID" gorm:"column:user_id;primary_key"`
- UserName string `json:"userName" gorm:"column:user_name"`
+ UserName string `json:"-" gorm:"column:user_name"`
+ LoginName string `json:"-" gorm:"column:login_name"`
+ DisplayName string `json:"-" gorm:"column:user_display_name"`
PasswordVerification time.Time `json:"-" gorm:"column:password_verification"`
MfaSoftwareVerification time.Time `json:"-" gorm:"column:mfa_software_verification"`
MfaSoftwareVerificationType int32 `json:"-" gorm:"column:mfa_software_verification_type"`
@@ -54,6 +56,8 @@ func UserSessionToModel(userSession *UserSessionView) *model.UserSessionView {
UserAgentID: userSession.UserAgentID,
UserID: userSession.UserID,
UserName: userSession.UserName,
+ LoginName: userSession.LoginName,
+ DisplayName: userSession.DisplayName,
PasswordVerification: userSession.PasswordVerification,
MfaSoftwareVerification: userSession.MfaSoftwareVerification,
MfaSoftwareVerificationType: req_model.MfaType(userSession.MfaSoftwareVerificationType),
diff --git a/migrations/cockroach/V1.19__usersession_names.sql b/migrations/cockroach/V1.19__usersession_names.sql
new file mode 100644
index 0000000000..e89ee9ba34
--- /dev/null
+++ b/migrations/cockroach/V1.19__usersession_names.sql
@@ -0,0 +1,6 @@
+BEGIN;
+
+ALTER TABLE auth.user_sessions ADD COLUMN user_display_name TEXT;
+ALTER TABLE auth.user_sessions ADD COLUMN login_name TEXT;
+
+COMMIT;
\ No newline at end of file
diff --git a/pkg/admin/api/grpc/admin.pb.go b/pkg/admin/api/grpc/admin.pb.go
index 87c04e10a8..ca637a3851 100644
--- a/pkg/admin/api/grpc/admin.pb.go
+++ b/pkg/admin/api/grpc/admin.pb.go
@@ -1,13 +1,11 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
-// versions:
-// protoc-gen-go v1.20.1
-// protoc v3.11.3
// source: admin.proto
package grpc
import (
context "context"
+ fmt "fmt"
_ "github.com/caos/zitadel/internal/protoc/protoc-gen-authoption/authoption"
_ "github.com/envoyproxy/protoc-gen-validate/validate"
proto "github.com/golang/protobuf/proto"
@@ -19,22 +17,19 @@ import (
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
- protoreflect "google.golang.org/protobuf/reflect/protoreflect"
- protoimpl "google.golang.org/protobuf/runtime/protoimpl"
- reflect "reflect"
- sync "sync"
+ math "math"
)
-const (
- // Verify that this generated code is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
- // Verify that runtime/protoimpl is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
-)
+// Reference imports to suppress errors if they are not otherwise used.
+var _ = proto.Marshal
+var _ = fmt.Errorf
+var _ = math.Inf
-// This is a compile-time assertion that a sufficiently up-to-date version
-// of the legacy proto package is being used.
-const _ = proto.ProtoPackageIsVersion4
+// This is a compile-time assertion to ensure that this generated file
+// is compatible with the proto package it is being compiled against.
+// A compilation error at this line likely means your copy of the
+// proto package needs to be updated.
+const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
type OrgState int32
@@ -44,45 +39,24 @@ const (
OrgState_ORGSTATE_INACTIVE OrgState = 2
)
-// Enum value maps for OrgState.
-var (
- OrgState_name = map[int32]string{
- 0: "ORGSTATE_UNSPECIFIED",
- 1: "ORGSTATE_ACTIVE",
- 2: "ORGSTATE_INACTIVE",
- }
- OrgState_value = map[string]int32{
- "ORGSTATE_UNSPECIFIED": 0,
- "ORGSTATE_ACTIVE": 1,
- "ORGSTATE_INACTIVE": 2,
- }
-)
+var OrgState_name = map[int32]string{
+ 0: "ORGSTATE_UNSPECIFIED",
+ 1: "ORGSTATE_ACTIVE",
+ 2: "ORGSTATE_INACTIVE",
+}
-func (x OrgState) Enum() *OrgState {
- p := new(OrgState)
- *p = x
- return p
+var OrgState_value = map[string]int32{
+ "ORGSTATE_UNSPECIFIED": 0,
+ "ORGSTATE_ACTIVE": 1,
+ "ORGSTATE_INACTIVE": 2,
}
func (x OrgState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OrgState_name, int32(x))
}
-func (OrgState) Descriptor() protoreflect.EnumDescriptor {
- return file_admin_proto_enumTypes[0].Descriptor()
-}
-
-func (OrgState) Type() protoreflect.EnumType {
- return &file_admin_proto_enumTypes[0]
-}
-
-func (x OrgState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OrgState.Descriptor instead.
func (OrgState) EnumDescriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{0}
+ return fileDescriptor_73a7fc70dcc2027c, []int{0}
}
type OrgSearchKey int32
@@ -94,47 +68,26 @@ const (
OrgSearchKey_ORGSEARCHKEY_STATE OrgSearchKey = 3
)
-// Enum value maps for OrgSearchKey.
-var (
- OrgSearchKey_name = map[int32]string{
- 0: "ORGSEARCHKEY_UNSPECIFIED",
- 1: "ORGSEARCHKEY_ORG_NAME",
- 2: "ORGSEARCHKEY_DOMAIN",
- 3: "ORGSEARCHKEY_STATE",
- }
- OrgSearchKey_value = map[string]int32{
- "ORGSEARCHKEY_UNSPECIFIED": 0,
- "ORGSEARCHKEY_ORG_NAME": 1,
- "ORGSEARCHKEY_DOMAIN": 2,
- "ORGSEARCHKEY_STATE": 3,
- }
-)
+var OrgSearchKey_name = map[int32]string{
+ 0: "ORGSEARCHKEY_UNSPECIFIED",
+ 1: "ORGSEARCHKEY_ORG_NAME",
+ 2: "ORGSEARCHKEY_DOMAIN",
+ 3: "ORGSEARCHKEY_STATE",
+}
-func (x OrgSearchKey) Enum() *OrgSearchKey {
- p := new(OrgSearchKey)
- *p = x
- return p
+var OrgSearchKey_value = map[string]int32{
+ "ORGSEARCHKEY_UNSPECIFIED": 0,
+ "ORGSEARCHKEY_ORG_NAME": 1,
+ "ORGSEARCHKEY_DOMAIN": 2,
+ "ORGSEARCHKEY_STATE": 3,
}
func (x OrgSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OrgSearchKey_name, int32(x))
}
-func (OrgSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_admin_proto_enumTypes[1].Descriptor()
-}
-
-func (OrgSearchKey) Type() protoreflect.EnumType {
- return &file_admin_proto_enumTypes[1]
-}
-
-func (x OrgSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OrgSearchKey.Descriptor instead.
func (OrgSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{1}
+ return fileDescriptor_73a7fc70dcc2027c, []int{1}
}
type OrgSearchMethod int32
@@ -145,45 +98,24 @@ const (
OrgSearchMethod_ORGSEARCHMETHOD_CONTAINS OrgSearchMethod = 2
)
-// Enum value maps for OrgSearchMethod.
-var (
- OrgSearchMethod_name = map[int32]string{
- 0: "ORGSEARCHMETHOD_EQUALS",
- 1: "ORGSEARCHMETHOD_STARTS_WITH",
- 2: "ORGSEARCHMETHOD_CONTAINS",
- }
- OrgSearchMethod_value = map[string]int32{
- "ORGSEARCHMETHOD_EQUALS": 0,
- "ORGSEARCHMETHOD_STARTS_WITH": 1,
- "ORGSEARCHMETHOD_CONTAINS": 2,
- }
-)
+var OrgSearchMethod_name = map[int32]string{
+ 0: "ORGSEARCHMETHOD_EQUALS",
+ 1: "ORGSEARCHMETHOD_STARTS_WITH",
+ 2: "ORGSEARCHMETHOD_CONTAINS",
+}
-func (x OrgSearchMethod) Enum() *OrgSearchMethod {
- p := new(OrgSearchMethod)
- *p = x
- return p
+var OrgSearchMethod_value = map[string]int32{
+ "ORGSEARCHMETHOD_EQUALS": 0,
+ "ORGSEARCHMETHOD_STARTS_WITH": 1,
+ "ORGSEARCHMETHOD_CONTAINS": 2,
}
func (x OrgSearchMethod) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OrgSearchMethod_name, int32(x))
}
-func (OrgSearchMethod) Descriptor() protoreflect.EnumDescriptor {
- return file_admin_proto_enumTypes[2].Descriptor()
-}
-
-func (OrgSearchMethod) Type() protoreflect.EnumType {
- return &file_admin_proto_enumTypes[2]
-}
-
-func (x OrgSearchMethod) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OrgSearchMethod.Descriptor instead.
func (OrgSearchMethod) EnumDescriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{2}
+ return fileDescriptor_73a7fc70dcc2027c, []int{2}
}
type UserState int32
@@ -198,53 +130,32 @@ const (
UserState_USERSTATE_INITIAL UserState = 6
)
-// Enum value maps for UserState.
-var (
- UserState_name = map[int32]string{
- 0: "USERSTATE_UNSPECIFIED",
- 1: "USERSTATE_ACTIVE",
- 2: "USERSTATE_INACTIVE",
- 3: "USERSTATE_DELETED",
- 4: "USERSTATE_LOCKED",
- 5: "USERSTATE_SUSPEND",
- 6: "USERSTATE_INITIAL",
- }
- UserState_value = map[string]int32{
- "USERSTATE_UNSPECIFIED": 0,
- "USERSTATE_ACTIVE": 1,
- "USERSTATE_INACTIVE": 2,
- "USERSTATE_DELETED": 3,
- "USERSTATE_LOCKED": 4,
- "USERSTATE_SUSPEND": 5,
- "USERSTATE_INITIAL": 6,
- }
-)
+var UserState_name = map[int32]string{
+ 0: "USERSTATE_UNSPECIFIED",
+ 1: "USERSTATE_ACTIVE",
+ 2: "USERSTATE_INACTIVE",
+ 3: "USERSTATE_DELETED",
+ 4: "USERSTATE_LOCKED",
+ 5: "USERSTATE_SUSPEND",
+ 6: "USERSTATE_INITIAL",
+}
-func (x UserState) Enum() *UserState {
- p := new(UserState)
- *p = x
- return p
+var UserState_value = map[string]int32{
+ "USERSTATE_UNSPECIFIED": 0,
+ "USERSTATE_ACTIVE": 1,
+ "USERSTATE_INACTIVE": 2,
+ "USERSTATE_DELETED": 3,
+ "USERSTATE_LOCKED": 4,
+ "USERSTATE_SUSPEND": 5,
+ "USERSTATE_INITIAL": 6,
}
func (x UserState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(UserState_name, int32(x))
}
-func (UserState) Descriptor() protoreflect.EnumDescriptor {
- return file_admin_proto_enumTypes[3].Descriptor()
-}
-
-func (UserState) Type() protoreflect.EnumType {
- return &file_admin_proto_enumTypes[3]
-}
-
-func (x UserState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use UserState.Descriptor instead.
func (UserState) EnumDescriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{3}
+ return fileDescriptor_73a7fc70dcc2027c, []int{3}
}
type Gender int32
@@ -256,1050 +167,921 @@ const (
Gender_GENDER_DIVERSE Gender = 3
)
-// Enum value maps for Gender.
-var (
- Gender_name = map[int32]string{
- 0: "GENDER_UNSPECIFIED",
- 1: "GENDER_FEMALE",
- 2: "GENDER_MALE",
- 3: "GENDER_DIVERSE",
- }
- Gender_value = map[string]int32{
- "GENDER_UNSPECIFIED": 0,
- "GENDER_FEMALE": 1,
- "GENDER_MALE": 2,
- "GENDER_DIVERSE": 3,
- }
-)
+var Gender_name = map[int32]string{
+ 0: "GENDER_UNSPECIFIED",
+ 1: "GENDER_FEMALE",
+ 2: "GENDER_MALE",
+ 3: "GENDER_DIVERSE",
+}
-func (x Gender) Enum() *Gender {
- p := new(Gender)
- *p = x
- return p
+var Gender_value = map[string]int32{
+ "GENDER_UNSPECIFIED": 0,
+ "GENDER_FEMALE": 1,
+ "GENDER_MALE": 2,
+ "GENDER_DIVERSE": 3,
}
func (x Gender) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(Gender_name, int32(x))
}
-func (Gender) Descriptor() protoreflect.EnumDescriptor {
- return file_admin_proto_enumTypes[4].Descriptor()
-}
-
-func (Gender) Type() protoreflect.EnumType {
- return &file_admin_proto_enumTypes[4]
-}
-
-func (x Gender) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use Gender.Descriptor instead.
func (Gender) EnumDescriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{4}
+ return fileDescriptor_73a7fc70dcc2027c, []int{4}
}
type OrgID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgID) Reset() {
- *x = OrgID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_admin_proto_msgTypes[0]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgID) ProtoMessage() {}
-
-func (x *OrgID) ProtoReflect() protoreflect.Message {
- mi := &file_admin_proto_msgTypes[0]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgID.ProtoReflect.Descriptor instead.
+func (m *OrgID) Reset() { *m = OrgID{} }
+func (m *OrgID) String() string { return proto.CompactTextString(m) }
+func (*OrgID) ProtoMessage() {}
func (*OrgID) Descriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{0}
+ return fileDescriptor_73a7fc70dcc2027c, []int{0}
}
-func (x *OrgID) GetId() string {
- if x != nil {
- return x.Id
+func (m *OrgID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgID.Unmarshal(m, b)
+}
+func (m *OrgID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgID.Marshal(b, m, deterministic)
+}
+func (m *OrgID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgID.Merge(m, src)
+}
+func (m *OrgID) XXX_Size() int {
+ return xxx_messageInfo_OrgID.Size(m)
+}
+func (m *OrgID) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgID proto.InternalMessageInfo
+
+func (m *OrgID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type UniqueOrgRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- Domain string `protobuf:"bytes,2,opt,name=domain,proto3" json:"domain,omitempty"`
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ Domain string `protobuf:"bytes,2,opt,name=domain,proto3" json:"domain,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UniqueOrgRequest) Reset() {
- *x = UniqueOrgRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_admin_proto_msgTypes[1]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UniqueOrgRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UniqueOrgRequest) ProtoMessage() {}
-
-func (x *UniqueOrgRequest) ProtoReflect() protoreflect.Message {
- mi := &file_admin_proto_msgTypes[1]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UniqueOrgRequest.ProtoReflect.Descriptor instead.
+func (m *UniqueOrgRequest) Reset() { *m = UniqueOrgRequest{} }
+func (m *UniqueOrgRequest) String() string { return proto.CompactTextString(m) }
+func (*UniqueOrgRequest) ProtoMessage() {}
func (*UniqueOrgRequest) Descriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{1}
+ return fileDescriptor_73a7fc70dcc2027c, []int{1}
}
-func (x *UniqueOrgRequest) GetName() string {
- if x != nil {
- return x.Name
+func (m *UniqueOrgRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UniqueOrgRequest.Unmarshal(m, b)
+}
+func (m *UniqueOrgRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UniqueOrgRequest.Marshal(b, m, deterministic)
+}
+func (m *UniqueOrgRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UniqueOrgRequest.Merge(m, src)
+}
+func (m *UniqueOrgRequest) XXX_Size() int {
+ return xxx_messageInfo_UniqueOrgRequest.Size(m)
+}
+func (m *UniqueOrgRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UniqueOrgRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UniqueOrgRequest proto.InternalMessageInfo
+
+func (m *UniqueOrgRequest) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *UniqueOrgRequest) GetDomain() string {
- if x != nil {
- return x.Domain
+func (m *UniqueOrgRequest) GetDomain() string {
+ if m != nil {
+ return m.Domain
}
return ""
}
type UniqueOrgResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- IsUnique bool `protobuf:"varint,1,opt,name=is_unique,json=isUnique,proto3" json:"is_unique,omitempty"`
+ IsUnique bool `protobuf:"varint,1,opt,name=is_unique,json=isUnique,proto3" json:"is_unique,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UniqueOrgResponse) Reset() {
- *x = UniqueOrgResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_admin_proto_msgTypes[2]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UniqueOrgResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UniqueOrgResponse) ProtoMessage() {}
-
-func (x *UniqueOrgResponse) ProtoReflect() protoreflect.Message {
- mi := &file_admin_proto_msgTypes[2]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UniqueOrgResponse.ProtoReflect.Descriptor instead.
+func (m *UniqueOrgResponse) Reset() { *m = UniqueOrgResponse{} }
+func (m *UniqueOrgResponse) String() string { return proto.CompactTextString(m) }
+func (*UniqueOrgResponse) ProtoMessage() {}
func (*UniqueOrgResponse) Descriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{2}
+ return fileDescriptor_73a7fc70dcc2027c, []int{2}
}
-func (x *UniqueOrgResponse) GetIsUnique() bool {
- if x != nil {
- return x.IsUnique
+func (m *UniqueOrgResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UniqueOrgResponse.Unmarshal(m, b)
+}
+func (m *UniqueOrgResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UniqueOrgResponse.Marshal(b, m, deterministic)
+}
+func (m *UniqueOrgResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UniqueOrgResponse.Merge(m, src)
+}
+func (m *UniqueOrgResponse) XXX_Size() int {
+ return xxx_messageInfo_UniqueOrgResponse.Size(m)
+}
+func (m *UniqueOrgResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_UniqueOrgResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UniqueOrgResponse proto.InternalMessageInfo
+
+func (m *UniqueOrgResponse) GetIsUnique() bool {
+ if m != nil {
+ return m.IsUnique
}
return false
}
type Org struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- State OrgState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.admin.api.v1.OrgState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
- Domain string `protobuf:"bytes,6,opt,name=domain,proto3" json:"domain,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ State OrgState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.admin.api.v1.OrgState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
+ Domain string `protobuf:"bytes,6,opt,name=domain,proto3" json:"domain,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Org) Reset() {
- *x = Org{}
- if protoimpl.UnsafeEnabled {
- mi := &file_admin_proto_msgTypes[3]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Org) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Org) ProtoMessage() {}
-
-func (x *Org) ProtoReflect() protoreflect.Message {
- mi := &file_admin_proto_msgTypes[3]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use Org.ProtoReflect.Descriptor instead.
+func (m *Org) Reset() { *m = Org{} }
+func (m *Org) String() string { return proto.CompactTextString(m) }
+func (*Org) ProtoMessage() {}
func (*Org) Descriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{3}
+ return fileDescriptor_73a7fc70dcc2027c, []int{3}
}
-func (x *Org) GetId() string {
- if x != nil {
- return x.Id
+func (m *Org) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Org.Unmarshal(m, b)
+}
+func (m *Org) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Org.Marshal(b, m, deterministic)
+}
+func (m *Org) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Org.Merge(m, src)
+}
+func (m *Org) XXX_Size() int {
+ return xxx_messageInfo_Org.Size(m)
+}
+func (m *Org) XXX_DiscardUnknown() {
+ xxx_messageInfo_Org.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Org proto.InternalMessageInfo
+
+func (m *Org) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *Org) GetState() OrgState {
- if x != nil {
- return x.State
+func (m *Org) GetState() OrgState {
+ if m != nil {
+ return m.State
}
return OrgState_ORGSTATE_UNSPECIFIED
}
-func (x *Org) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *Org) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *Org) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *Org) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *Org) GetName() string {
- if x != nil {
- return x.Name
+func (m *Org) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *Org) GetDomain() string {
- if x != nil {
- return x.Domain
+func (m *Org) GetDomain() string {
+ if m != nil {
+ return m.Domain
}
return ""
}
type OrgSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- SortingColumn OrgSearchKey `protobuf:"varint,3,opt,name=sorting_column,json=sortingColumn,proto3,enum=caos.zitadel.admin.api.v1.OrgSearchKey" json:"sorting_column,omitempty"`
- Asc bool `protobuf:"varint,4,opt,name=asc,proto3" json:"asc,omitempty"`
- Queries []*OrgSearchQuery `protobuf:"bytes,5,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ SortingColumn OrgSearchKey `protobuf:"varint,3,opt,name=sorting_column,json=sortingColumn,proto3,enum=caos.zitadel.admin.api.v1.OrgSearchKey" json:"sorting_column,omitempty"`
+ Asc bool `protobuf:"varint,4,opt,name=asc,proto3" json:"asc,omitempty"`
+ Queries []*OrgSearchQuery `protobuf:"bytes,5,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgSearchRequest) Reset() {
- *x = OrgSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_admin_proto_msgTypes[4]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgSearchRequest) ProtoMessage() {}
-
-func (x *OrgSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_admin_proto_msgTypes[4]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgSearchRequest.ProtoReflect.Descriptor instead.
+func (m *OrgSearchRequest) Reset() { *m = OrgSearchRequest{} }
+func (m *OrgSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*OrgSearchRequest) ProtoMessage() {}
func (*OrgSearchRequest) Descriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{4}
+ return fileDescriptor_73a7fc70dcc2027c, []int{4}
}
-func (x *OrgSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *OrgSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgSearchRequest.Unmarshal(m, b)
+}
+func (m *OrgSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *OrgSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgSearchRequest.Merge(m, src)
+}
+func (m *OrgSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_OrgSearchRequest.Size(m)
+}
+func (m *OrgSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgSearchRequest proto.InternalMessageInfo
+
+func (m *OrgSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *OrgSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *OrgSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *OrgSearchRequest) GetSortingColumn() OrgSearchKey {
- if x != nil {
- return x.SortingColumn
+func (m *OrgSearchRequest) GetSortingColumn() OrgSearchKey {
+ if m != nil {
+ return m.SortingColumn
}
return OrgSearchKey_ORGSEARCHKEY_UNSPECIFIED
}
-func (x *OrgSearchRequest) GetAsc() bool {
- if x != nil {
- return x.Asc
+func (m *OrgSearchRequest) GetAsc() bool {
+ if m != nil {
+ return m.Asc
}
return false
}
-func (x *OrgSearchRequest) GetQueries() []*OrgSearchQuery {
- if x != nil {
- return x.Queries
+func (m *OrgSearchRequest) GetQueries() []*OrgSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type OrgSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key OrgSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.admin.api.v1.OrgSearchKey" json:"key,omitempty"`
- Method OrgSearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.admin.api.v1.OrgSearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key OrgSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.admin.api.v1.OrgSearchKey" json:"key,omitempty"`
+ Method OrgSearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.admin.api.v1.OrgSearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgSearchQuery) Reset() {
- *x = OrgSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_admin_proto_msgTypes[5]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgSearchQuery) ProtoMessage() {}
-
-func (x *OrgSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_admin_proto_msgTypes[5]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgSearchQuery.ProtoReflect.Descriptor instead.
+func (m *OrgSearchQuery) Reset() { *m = OrgSearchQuery{} }
+func (m *OrgSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*OrgSearchQuery) ProtoMessage() {}
func (*OrgSearchQuery) Descriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{5}
+ return fileDescriptor_73a7fc70dcc2027c, []int{5}
}
-func (x *OrgSearchQuery) GetKey() OrgSearchKey {
- if x != nil {
- return x.Key
+func (m *OrgSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgSearchQuery.Unmarshal(m, b)
+}
+func (m *OrgSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *OrgSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgSearchQuery.Merge(m, src)
+}
+func (m *OrgSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_OrgSearchQuery.Size(m)
+}
+func (m *OrgSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgSearchQuery proto.InternalMessageInfo
+
+func (m *OrgSearchQuery) GetKey() OrgSearchKey {
+ if m != nil {
+ return m.Key
}
return OrgSearchKey_ORGSEARCHKEY_UNSPECIFIED
}
-func (x *OrgSearchQuery) GetMethod() OrgSearchMethod {
- if x != nil {
- return x.Method
+func (m *OrgSearchQuery) GetMethod() OrgSearchMethod {
+ if m != nil {
+ return m.Method
}
return OrgSearchMethod_ORGSEARCHMETHOD_EQUALS
}
-func (x *OrgSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *OrgSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type OrgSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*Org `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*Org `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgSearchResponse) Reset() {
- *x = OrgSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_admin_proto_msgTypes[6]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgSearchResponse) ProtoMessage() {}
-
-func (x *OrgSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_admin_proto_msgTypes[6]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgSearchResponse.ProtoReflect.Descriptor instead.
+func (m *OrgSearchResponse) Reset() { *m = OrgSearchResponse{} }
+func (m *OrgSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*OrgSearchResponse) ProtoMessage() {}
func (*OrgSearchResponse) Descriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{6}
+ return fileDescriptor_73a7fc70dcc2027c, []int{6}
}
-func (x *OrgSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *OrgSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgSearchResponse.Unmarshal(m, b)
+}
+func (m *OrgSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *OrgSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgSearchResponse.Merge(m, src)
+}
+func (m *OrgSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_OrgSearchResponse.Size(m)
+}
+func (m *OrgSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgSearchResponse proto.InternalMessageInfo
+
+func (m *OrgSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *OrgSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *OrgSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *OrgSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *OrgSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *OrgSearchResponse) GetResult() []*Org {
- if x != nil {
- return x.Result
+func (m *OrgSearchResponse) GetResult() []*Org {
+ if m != nil {
+ return m.Result
}
return nil
}
type OrgSetUpRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Org *CreateOrgRequest `protobuf:"bytes,1,opt,name=org,proto3" json:"org,omitempty"`
- User *CreateUserRequest `protobuf:"bytes,2,opt,name=user,proto3" json:"user,omitempty"`
+ Org *CreateOrgRequest `protobuf:"bytes,1,opt,name=org,proto3" json:"org,omitempty"`
+ User *CreateUserRequest `protobuf:"bytes,2,opt,name=user,proto3" json:"user,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgSetUpRequest) Reset() {
- *x = OrgSetUpRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_admin_proto_msgTypes[7]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgSetUpRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgSetUpRequest) ProtoMessage() {}
-
-func (x *OrgSetUpRequest) ProtoReflect() protoreflect.Message {
- mi := &file_admin_proto_msgTypes[7]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgSetUpRequest.ProtoReflect.Descriptor instead.
+func (m *OrgSetUpRequest) Reset() { *m = OrgSetUpRequest{} }
+func (m *OrgSetUpRequest) String() string { return proto.CompactTextString(m) }
+func (*OrgSetUpRequest) ProtoMessage() {}
func (*OrgSetUpRequest) Descriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{7}
+ return fileDescriptor_73a7fc70dcc2027c, []int{7}
}
-func (x *OrgSetUpRequest) GetOrg() *CreateOrgRequest {
- if x != nil {
- return x.Org
+func (m *OrgSetUpRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgSetUpRequest.Unmarshal(m, b)
+}
+func (m *OrgSetUpRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgSetUpRequest.Marshal(b, m, deterministic)
+}
+func (m *OrgSetUpRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgSetUpRequest.Merge(m, src)
+}
+func (m *OrgSetUpRequest) XXX_Size() int {
+ return xxx_messageInfo_OrgSetUpRequest.Size(m)
+}
+func (m *OrgSetUpRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgSetUpRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgSetUpRequest proto.InternalMessageInfo
+
+func (m *OrgSetUpRequest) GetOrg() *CreateOrgRequest {
+ if m != nil {
+ return m.Org
}
return nil
}
-func (x *OrgSetUpRequest) GetUser() *CreateUserRequest {
- if x != nil {
- return x.User
+func (m *OrgSetUpRequest) GetUser() *CreateUserRequest {
+ if m != nil {
+ return m.User
}
return nil
}
type OrgSetUpResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Org *Org `protobuf:"bytes,1,opt,name=org,proto3" json:"org,omitempty"`
- User *User `protobuf:"bytes,2,opt,name=user,proto3" json:"user,omitempty"`
+ Org *Org `protobuf:"bytes,1,opt,name=org,proto3" json:"org,omitempty"`
+ User *User `protobuf:"bytes,2,opt,name=user,proto3" json:"user,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgSetUpResponse) Reset() {
- *x = OrgSetUpResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_admin_proto_msgTypes[8]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgSetUpResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgSetUpResponse) ProtoMessage() {}
-
-func (x *OrgSetUpResponse) ProtoReflect() protoreflect.Message {
- mi := &file_admin_proto_msgTypes[8]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgSetUpResponse.ProtoReflect.Descriptor instead.
+func (m *OrgSetUpResponse) Reset() { *m = OrgSetUpResponse{} }
+func (m *OrgSetUpResponse) String() string { return proto.CompactTextString(m) }
+func (*OrgSetUpResponse) ProtoMessage() {}
func (*OrgSetUpResponse) Descriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{8}
+ return fileDescriptor_73a7fc70dcc2027c, []int{8}
}
-func (x *OrgSetUpResponse) GetOrg() *Org {
- if x != nil {
- return x.Org
+func (m *OrgSetUpResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgSetUpResponse.Unmarshal(m, b)
+}
+func (m *OrgSetUpResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgSetUpResponse.Marshal(b, m, deterministic)
+}
+func (m *OrgSetUpResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgSetUpResponse.Merge(m, src)
+}
+func (m *OrgSetUpResponse) XXX_Size() int {
+ return xxx_messageInfo_OrgSetUpResponse.Size(m)
+}
+func (m *OrgSetUpResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgSetUpResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgSetUpResponse proto.InternalMessageInfo
+
+func (m *OrgSetUpResponse) GetOrg() *Org {
+ if m != nil {
+ return m.Org
}
return nil
}
-func (x *OrgSetUpResponse) GetUser() *User {
- if x != nil {
- return x.User
+func (m *OrgSetUpResponse) GetUser() *User {
+ if m != nil {
+ return m.User
}
return nil
}
type CreateUserRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,6,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,7,opt,name=gender,proto3,enum=caos.zitadel.admin.api.v1.Gender" json:"gender,omitempty"`
- Email string `protobuf:"bytes,8,opt,name=email,proto3" json:"email,omitempty"`
- IsEmailVerified bool `protobuf:"varint,9,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
- Phone string `protobuf:"bytes,11,opt,name=phone,proto3" json:"phone,omitempty"`
- IsPhoneVerified bool `protobuf:"varint,12,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
- Country string `protobuf:"bytes,13,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,14,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,15,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,16,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,17,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
- Password string `protobuf:"bytes,18,opt,name=password,proto3" json:"password,omitempty"`
+ UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,5,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,6,opt,name=gender,proto3,enum=caos.zitadel.admin.api.v1.Gender" json:"gender,omitempty"`
+ Email string `protobuf:"bytes,7,opt,name=email,proto3" json:"email,omitempty"`
+ IsEmailVerified bool `protobuf:"varint,8,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
+ Phone string `protobuf:"bytes,9,opt,name=phone,proto3" json:"phone,omitempty"`
+ IsPhoneVerified bool `protobuf:"varint,10,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ Country string `protobuf:"bytes,11,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,12,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,13,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,14,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,15,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ Password string `protobuf:"bytes,16,opt,name=password,proto3" json:"password,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *CreateUserRequest) Reset() {
- *x = CreateUserRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_admin_proto_msgTypes[9]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *CreateUserRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*CreateUserRequest) ProtoMessage() {}
-
-func (x *CreateUserRequest) ProtoReflect() protoreflect.Message {
- mi := &file_admin_proto_msgTypes[9]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use CreateUserRequest.ProtoReflect.Descriptor instead.
+func (m *CreateUserRequest) Reset() { *m = CreateUserRequest{} }
+func (m *CreateUserRequest) String() string { return proto.CompactTextString(m) }
+func (*CreateUserRequest) ProtoMessage() {}
func (*CreateUserRequest) Descriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{9}
+ return fileDescriptor_73a7fc70dcc2027c, []int{9}
}
-func (x *CreateUserRequest) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *CreateUserRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_CreateUserRequest.Unmarshal(m, b)
+}
+func (m *CreateUserRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_CreateUserRequest.Marshal(b, m, deterministic)
+}
+func (m *CreateUserRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_CreateUserRequest.Merge(m, src)
+}
+func (m *CreateUserRequest) XXX_Size() int {
+ return xxx_messageInfo_CreateUserRequest.Size(m)
+}
+func (m *CreateUserRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_CreateUserRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_CreateUserRequest proto.InternalMessageInfo
+
+func (m *CreateUserRequest) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *CreateUserRequest) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *CreateUserRequest) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *CreateUserRequest) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *CreateUserRequest) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *CreateUserRequest) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *CreateUserRequest) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *CreateUserRequest) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *CreateUserRequest) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *CreateUserRequest) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
- }
- return ""
-}
-
-func (x *CreateUserRequest) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *CreateUserRequest) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
-func (x *CreateUserRequest) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *CreateUserRequest) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *CreateUserRequest) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
+func (m *CreateUserRequest) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
}
return false
}
-func (x *CreateUserRequest) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *CreateUserRequest) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
-func (x *CreateUserRequest) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
+func (m *CreateUserRequest) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
}
return false
}
-func (x *CreateUserRequest) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *CreateUserRequest) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *CreateUserRequest) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *CreateUserRequest) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *CreateUserRequest) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *CreateUserRequest) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *CreateUserRequest) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *CreateUserRequest) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *CreateUserRequest) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *CreateUserRequest) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
-func (x *CreateUserRequest) GetPassword() string {
- if x != nil {
- return x.Password
+func (m *CreateUserRequest) GetPassword() string {
+ if m != nil {
+ return m.Password
}
return ""
}
type User struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- State UserState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.admin.api.v1.UserState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- UserName string `protobuf:"bytes,5,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- FirstName string `protobuf:"bytes,6,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,7,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- NickName string `protobuf:"bytes,8,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- DisplayName string `protobuf:"bytes,9,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,10,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,11,opt,name=gender,proto3,enum=caos.zitadel.admin.api.v1.Gender" json:"gender,omitempty"`
- Email string `protobuf:"bytes,12,opt,name=email,proto3" json:"email,omitempty"`
- IsEmailVerified bool `protobuf:"varint,13,opt,name=isEmailVerified,proto3" json:"isEmailVerified,omitempty"`
- Phone string `protobuf:"bytes,14,opt,name=phone,proto3" json:"phone,omitempty"`
- IsPhoneVerified bool `protobuf:"varint,15,opt,name=isPhoneVerified,proto3" json:"isPhoneVerified,omitempty"`
- Country string `protobuf:"bytes,16,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,17,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,18,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,19,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,20,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
- Sequence uint64 `protobuf:"varint,21,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ State UserState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.admin.api.v1.UserState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ UserName string `protobuf:"bytes,5,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ FirstName string `protobuf:"bytes,6,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,7,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ NickName string `protobuf:"bytes,8,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ DisplayName string `protobuf:"bytes,9,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,10,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,11,opt,name=gender,proto3,enum=caos.zitadel.admin.api.v1.Gender" json:"gender,omitempty"`
+ Email string `protobuf:"bytes,12,opt,name=email,proto3" json:"email,omitempty"`
+ IsEmailVerified bool `protobuf:"varint,13,opt,name=isEmailVerified,proto3" json:"isEmailVerified,omitempty"`
+ Phone string `protobuf:"bytes,14,opt,name=phone,proto3" json:"phone,omitempty"`
+ IsPhoneVerified bool `protobuf:"varint,15,opt,name=isPhoneVerified,proto3" json:"isPhoneVerified,omitempty"`
+ Country string `protobuf:"bytes,16,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,17,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,18,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,19,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,20,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ Sequence uint64 `protobuf:"varint,21,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *User) Reset() {
- *x = User{}
- if protoimpl.UnsafeEnabled {
- mi := &file_admin_proto_msgTypes[10]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *User) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*User) ProtoMessage() {}
-
-func (x *User) ProtoReflect() protoreflect.Message {
- mi := &file_admin_proto_msgTypes[10]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use User.ProtoReflect.Descriptor instead.
+func (m *User) Reset() { *m = User{} }
+func (m *User) String() string { return proto.CompactTextString(m) }
+func (*User) ProtoMessage() {}
func (*User) Descriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{10}
+ return fileDescriptor_73a7fc70dcc2027c, []int{10}
}
-func (x *User) GetId() string {
- if x != nil {
- return x.Id
+func (m *User) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_User.Unmarshal(m, b)
+}
+func (m *User) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_User.Marshal(b, m, deterministic)
+}
+func (m *User) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_User.Merge(m, src)
+}
+func (m *User) XXX_Size() int {
+ return xxx_messageInfo_User.Size(m)
+}
+func (m *User) XXX_DiscardUnknown() {
+ xxx_messageInfo_User.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_User proto.InternalMessageInfo
+
+func (m *User) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *User) GetState() UserState {
- if x != nil {
- return x.State
+func (m *User) GetState() UserState {
+ if m != nil {
+ return m.State
}
return UserState_USERSTATE_UNSPECIFIED
}
-func (x *User) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *User) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *User) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *User) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *User) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *User) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *User) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *User) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *User) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *User) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *User) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *User) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *User) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *User) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *User) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
+func (m *User) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *User) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *User) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
-func (x *User) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *User) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *User) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
+func (m *User) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
}
return false
}
-func (x *User) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *User) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
-func (x *User) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
+func (m *User) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
}
return false
}
-func (x *User) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *User) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *User) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *User) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *User) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *User) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *User) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *User) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *User) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *User) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
-func (x *User) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *User) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type CreateOrgRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- Domain string `protobuf:"bytes,2,opt,name=domain,proto3" json:"domain,omitempty"`
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ Domain string `protobuf:"bytes,2,opt,name=domain,proto3" json:"domain,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *CreateOrgRequest) Reset() {
- *x = CreateOrgRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_admin_proto_msgTypes[11]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *CreateOrgRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*CreateOrgRequest) ProtoMessage() {}
-
-func (x *CreateOrgRequest) ProtoReflect() protoreflect.Message {
- mi := &file_admin_proto_msgTypes[11]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use CreateOrgRequest.ProtoReflect.Descriptor instead.
+func (m *CreateOrgRequest) Reset() { *m = CreateOrgRequest{} }
+func (m *CreateOrgRequest) String() string { return proto.CompactTextString(m) }
+func (*CreateOrgRequest) ProtoMessage() {}
func (*CreateOrgRequest) Descriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{11}
+ return fileDescriptor_73a7fc70dcc2027c, []int{11}
}
-func (x *CreateOrgRequest) GetName() string {
- if x != nil {
- return x.Name
+func (m *CreateOrgRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_CreateOrgRequest.Unmarshal(m, b)
+}
+func (m *CreateOrgRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_CreateOrgRequest.Marshal(b, m, deterministic)
+}
+func (m *CreateOrgRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_CreateOrgRequest.Merge(m, src)
+}
+func (m *CreateOrgRequest) XXX_Size() int {
+ return xxx_messageInfo_CreateOrgRequest.Size(m)
+}
+func (m *CreateOrgRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_CreateOrgRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_CreateOrgRequest proto.InternalMessageInfo
+
+func (m *CreateOrgRequest) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *CreateOrgRequest) GetDomain() string {
- if x != nil {
- return x.Domain
+func (m *CreateOrgRequest) GetDomain() string {
+ if m != nil {
+ return m.Domain
}
return ""
}
type OrgIamPolicy struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
UserLoginMustBeDomain bool `protobuf:"varint,3,opt,name=user_login_must_be_domain,json=userLoginMustBeDomain,proto3" json:"user_login_must_be_domain,omitempty"`
@@ -1307,863 +1089,334 @@ type OrgIamPolicy struct {
Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgIamPolicy) Reset() {
- *x = OrgIamPolicy{}
- if protoimpl.UnsafeEnabled {
- mi := &file_admin_proto_msgTypes[12]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgIamPolicy) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgIamPolicy) ProtoMessage() {}
-
-func (x *OrgIamPolicy) ProtoReflect() protoreflect.Message {
- mi := &file_admin_proto_msgTypes[12]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgIamPolicy.ProtoReflect.Descriptor instead.
+func (m *OrgIamPolicy) Reset() { *m = OrgIamPolicy{} }
+func (m *OrgIamPolicy) String() string { return proto.CompactTextString(m) }
+func (*OrgIamPolicy) ProtoMessage() {}
func (*OrgIamPolicy) Descriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{12}
+ return fileDescriptor_73a7fc70dcc2027c, []int{12}
}
-func (x *OrgIamPolicy) GetOrgId() string {
- if x != nil {
- return x.OrgId
+func (m *OrgIamPolicy) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgIamPolicy.Unmarshal(m, b)
+}
+func (m *OrgIamPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgIamPolicy.Marshal(b, m, deterministic)
+}
+func (m *OrgIamPolicy) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgIamPolicy.Merge(m, src)
+}
+func (m *OrgIamPolicy) XXX_Size() int {
+ return xxx_messageInfo_OrgIamPolicy.Size(m)
+}
+func (m *OrgIamPolicy) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgIamPolicy.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgIamPolicy proto.InternalMessageInfo
+
+func (m *OrgIamPolicy) GetOrgId() string {
+ if m != nil {
+ return m.OrgId
}
return ""
}
-func (x *OrgIamPolicy) GetDescription() string {
- if x != nil {
- return x.Description
+func (m *OrgIamPolicy) GetDescription() string {
+ if m != nil {
+ return m.Description
}
return ""
}
-func (x *OrgIamPolicy) GetUserLoginMustBeDomain() bool {
- if x != nil {
- return x.UserLoginMustBeDomain
+func (m *OrgIamPolicy) GetUserLoginMustBeDomain() bool {
+ if m != nil {
+ return m.UserLoginMustBeDomain
}
return false
}
-func (x *OrgIamPolicy) GetDefault() bool {
- if x != nil {
- return x.Default
+func (m *OrgIamPolicy) GetDefault() bool {
+ if m != nil {
+ return m.Default
}
return false
}
-func (x *OrgIamPolicy) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *OrgIamPolicy) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *OrgIamPolicy) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *OrgIamPolicy) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *OrgIamPolicy) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *OrgIamPolicy) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type OrgIamPolicyRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
- Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
- UserLoginMustBeDomain bool `protobuf:"varint,3,opt,name=user_login_must_be_domain,json=userLoginMustBeDomain,proto3" json:"user_login_must_be_domain,omitempty"`
+ OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
+ Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
+ UserLoginMustBeDomain bool `protobuf:"varint,3,opt,name=user_login_must_be_domain,json=userLoginMustBeDomain,proto3" json:"user_login_must_be_domain,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgIamPolicyRequest) Reset() {
- *x = OrgIamPolicyRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_admin_proto_msgTypes[13]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgIamPolicyRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgIamPolicyRequest) ProtoMessage() {}
-
-func (x *OrgIamPolicyRequest) ProtoReflect() protoreflect.Message {
- mi := &file_admin_proto_msgTypes[13]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgIamPolicyRequest.ProtoReflect.Descriptor instead.
+func (m *OrgIamPolicyRequest) Reset() { *m = OrgIamPolicyRequest{} }
+func (m *OrgIamPolicyRequest) String() string { return proto.CompactTextString(m) }
+func (*OrgIamPolicyRequest) ProtoMessage() {}
func (*OrgIamPolicyRequest) Descriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{13}
+ return fileDescriptor_73a7fc70dcc2027c, []int{13}
}
-func (x *OrgIamPolicyRequest) GetOrgId() string {
- if x != nil {
- return x.OrgId
+func (m *OrgIamPolicyRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgIamPolicyRequest.Unmarshal(m, b)
+}
+func (m *OrgIamPolicyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgIamPolicyRequest.Marshal(b, m, deterministic)
+}
+func (m *OrgIamPolicyRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgIamPolicyRequest.Merge(m, src)
+}
+func (m *OrgIamPolicyRequest) XXX_Size() int {
+ return xxx_messageInfo_OrgIamPolicyRequest.Size(m)
+}
+func (m *OrgIamPolicyRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgIamPolicyRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgIamPolicyRequest proto.InternalMessageInfo
+
+func (m *OrgIamPolicyRequest) GetOrgId() string {
+ if m != nil {
+ return m.OrgId
}
return ""
}
-func (x *OrgIamPolicyRequest) GetDescription() string {
- if x != nil {
- return x.Description
+func (m *OrgIamPolicyRequest) GetDescription() string {
+ if m != nil {
+ return m.Description
}
return ""
}
-func (x *OrgIamPolicyRequest) GetUserLoginMustBeDomain() bool {
- if x != nil {
- return x.UserLoginMustBeDomain
+func (m *OrgIamPolicyRequest) GetUserLoginMustBeDomain() bool {
+ if m != nil {
+ return m.UserLoginMustBeDomain
}
return false
}
type OrgIamPolicyID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
+ OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgIamPolicyID) Reset() {
- *x = OrgIamPolicyID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_admin_proto_msgTypes[14]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgIamPolicyID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgIamPolicyID) ProtoMessage() {}
-
-func (x *OrgIamPolicyID) ProtoReflect() protoreflect.Message {
- mi := &file_admin_proto_msgTypes[14]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgIamPolicyID.ProtoReflect.Descriptor instead.
+func (m *OrgIamPolicyID) Reset() { *m = OrgIamPolicyID{} }
+func (m *OrgIamPolicyID) String() string { return proto.CompactTextString(m) }
+func (*OrgIamPolicyID) ProtoMessage() {}
func (*OrgIamPolicyID) Descriptor() ([]byte, []int) {
- return file_admin_proto_rawDescGZIP(), []int{14}
+ return fileDescriptor_73a7fc70dcc2027c, []int{14}
}
-func (x *OrgIamPolicyID) GetOrgId() string {
- if x != nil {
- return x.OrgId
+func (m *OrgIamPolicyID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgIamPolicyID.Unmarshal(m, b)
+}
+func (m *OrgIamPolicyID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgIamPolicyID.Marshal(b, m, deterministic)
+}
+func (m *OrgIamPolicyID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgIamPolicyID.Merge(m, src)
+}
+func (m *OrgIamPolicyID) XXX_Size() int {
+ return xxx_messageInfo_OrgIamPolicyID.Size(m)
+}
+func (m *OrgIamPolicyID) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgIamPolicyID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgIamPolicyID proto.InternalMessageInfo
+
+func (m *OrgIamPolicyID) GetOrgId() string {
+ if m != nil {
+ return m.OrgId
}
return ""
}
-var File_admin_proto protoreflect.FileDescriptor
-
-var file_admin_proto_rawDesc = []byte{
- 0x0a, 0x0b, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x19, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69,
- 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x1a, 0x17, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x76, 0x61, 0x6c,
- 0x69, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2c, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x73, 0x77, 0x61, 0x67, 0x67, 0x65, 0x72, 0x2f,
- 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x18, 0x61, 0x75, 0x74, 0x68, 0x6f,
- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x22, 0x17, 0x0a, 0x05, 0x4f, 0x72, 0x67, 0x49, 0x44, 0x12, 0x0e, 0x0a, 0x02,
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x50, 0x0a, 0x10,
- 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x12, 0x1b, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07,
- 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a,
- 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa,
- 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x22, 0x30,
- 0x0a, 0x11, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65,
- 0x22, 0xfa, 0x01, 0x0a, 0x03, 0x4f, 0x72, 0x67, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x39, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74,
- 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
- 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d,
- 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64,
- 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65,
- 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74,
- 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18,
- 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x22, 0xf1, 0x01,
- 0x0a, 0x10, 0x4f, 0x72, 0x67, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69,
- 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,
- 0x12, 0x58, 0x0a, 0x0e, 0x73, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x6c, 0x75,
- 0x6d, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65,
- 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x0d, 0x73, 0x6f, 0x72,
- 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x73,
- 0x63, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x61, 0x73, 0x63, 0x12, 0x43, 0x0a, 0x07,
- 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x29, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d,
- 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x53, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65,
- 0x73, 0x22, 0xaf, 0x01, 0x0a, 0x0e, 0x4f, 0x72, 0x67, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51,
- 0x75, 0x65, 0x72, 0x79, 0x12, 0x43, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x0e, 0x32, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72,
- 0x67, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82,
- 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x42, 0x0a, 0x06, 0x6d, 0x65, 0x74,
- 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2a, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d,
- 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x14, 0x0a,
- 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x22, 0x9c, 0x01, 0x0a, 0x11, 0x4f, 0x72, 0x67, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66,
- 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
- 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04,
- 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c,
- 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74,
- 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x36, 0x0a, 0x06, 0x72, 0x65,
- 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75,
- 0x6c, 0x74, 0x22, 0x92, 0x01, 0x0a, 0x0f, 0x4f, 0x72, 0x67, 0x53, 0x65, 0x74, 0x55, 0x70, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3d, 0x0a, 0x03, 0x6f, 0x72, 0x67, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x52, 0x03, 0x6f, 0x72, 0x67, 0x12, 0x40, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x52, 0x04, 0x75, 0x73, 0x65, 0x72, 0x22, 0x79, 0x0a, 0x10, 0x4f, 0x72, 0x67, 0x53, 0x65,
- 0x74, 0x55, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x30, 0x0a, 0x03, 0x6f,
- 0x72, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x52, 0x03, 0x6f, 0x72, 0x67, 0x12, 0x33, 0x0a,
- 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x04, 0x75, 0x73,
- 0x65, 0x72, 0x22, 0xe0, 0x05, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
- 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x27, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07,
- 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d,
- 0x65, 0x12, 0x29, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8,
- 0x01, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x27, 0x0a, 0x09,
- 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42,
- 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x08, 0x6c, 0x61, 0x73,
- 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x09, 0x6e, 0x69, 0x63, 0x6b, 0x5f, 0x6e, 0x61,
- 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18,
- 0xc8, 0x01, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2b, 0x0a, 0x0c,
- 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01,
- 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x0b, 0x64, 0x69,
- 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x37, 0x0a, 0x12, 0x70, 0x72, 0x65,
- 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18,
- 0x06, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52,
- 0x11, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61,
- 0x67, 0x65, 0x12, 0x39, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47,
- 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x22, 0x0a,
- 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0c, 0xfa, 0x42,
- 0x09, 0x72, 0x07, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x60, 0x01, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69,
- 0x6c, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x76, 0x65,
- 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73,
- 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x1d, 0x0a,
- 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42,
- 0x04, 0x72, 0x02, 0x18, 0x14, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x2a, 0x0a, 0x11,
- 0x69, 0x73, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65,
- 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x50, 0x68, 0x6f, 0x6e, 0x65,
- 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x22, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e,
- 0x74, 0x72, 0x79, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03,
- 0x18, 0xc8, 0x01, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x24, 0x0a, 0x08,
- 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08,
- 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69,
- 0x74, 0x79, 0x12, 0x29, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64,
- 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8,
- 0x01, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a,
- 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa,
- 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12,
- 0x2f, 0x0a, 0x0e, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73,
- 0x73, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8,
- 0x01, 0x52, 0x0d, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
- 0x12, 0x23, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x12, 0x20, 0x01,
- 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x18, 0x48, 0x52, 0x08, 0x70, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x85, 0x06, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x0e,
- 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x3a,
- 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d,
- 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74,
- 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72,
- 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
- 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65,
- 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74,
- 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d,
- 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x69, 0x63, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21,
- 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d,
- 0x65, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c,
- 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70,
- 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65,
- 0x12, 0x39, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x21, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x6e,
- 0x64, 0x65, 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x65,
- 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69,
- 0x6c, 0x12, 0x28, 0x0a, 0x0f, 0x69, 0x73, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69,
- 0x66, 0x69, 0x65, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x45, 0x6d,
- 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70,
- 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e,
- 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x69, 0x73, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69,
- 0x66, 0x69, 0x65, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x50, 0x68,
- 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63,
- 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f,
- 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74,
- 0x79, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74,
- 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65,
- 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x43, 0x6f,
- 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x18, 0x13, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x73, 0x74,
- 0x72, 0x65, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x14, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0d, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73,
- 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x15, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22, 0x47, 0x0a,
- 0x10, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x1b, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42,
- 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16,
- 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
- 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x22, 0xb5, 0x02, 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x49, 0x61,
- 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x20,
- 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x12, 0x38, 0x0a, 0x19, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x6d,
- 0x75, 0x73, 0x74, 0x5f, 0x62, 0x65, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x08, 0x52, 0x15, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x4d, 0x75,
- 0x73, 0x74, 0x42, 0x65, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x64, 0x65,
- 0x66, 0x61, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x64, 0x65, 0x66,
- 0x61, 0x75, 0x6c, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65,
- 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65,
- 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74,
- 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
- 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74,
- 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65,
- 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
- 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0x88,
- 0x01, 0x0a, 0x13, 0x4f, 0x72, 0x67, 0x49, 0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x20, 0x0a,
- 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12,
- 0x38, 0x0a, 0x19, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x6d, 0x75,
- 0x73, 0x74, 0x5f, 0x62, 0x65, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x15, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x4d, 0x75, 0x73,
- 0x74, 0x42, 0x65, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x22, 0x27, 0x0a, 0x0e, 0x4f, 0x72, 0x67,
- 0x49, 0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x49, 0x44, 0x12, 0x15, 0x0a, 0x06, 0x6f,
- 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x67,
- 0x49, 0x64, 0x2a, 0x50, 0x0a, 0x08, 0x4f, 0x72, 0x67, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x18,
- 0x0a, 0x14, 0x4f, 0x52, 0x47, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45,
- 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x4f, 0x52, 0x47, 0x53,
- 0x54, 0x41, 0x54, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x15, 0x0a,
- 0x11, 0x4f, 0x52, 0x47, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49,
- 0x56, 0x45, 0x10, 0x02, 0x2a, 0x78, 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x4b, 0x65, 0x79, 0x12, 0x1c, 0x0a, 0x18, 0x4f, 0x52, 0x47, 0x53, 0x45, 0x41, 0x52, 0x43,
- 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44,
- 0x10, 0x00, 0x12, 0x19, 0x0a, 0x15, 0x4f, 0x52, 0x47, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b,
- 0x45, 0x59, 0x5f, 0x4f, 0x52, 0x47, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x01, 0x12, 0x17, 0x0a,
- 0x13, 0x4f, 0x52, 0x47, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x44, 0x4f,
- 0x4d, 0x41, 0x49, 0x4e, 0x10, 0x02, 0x12, 0x16, 0x0a, 0x12, 0x4f, 0x52, 0x47, 0x53, 0x45, 0x41,
- 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x10, 0x03, 0x2a, 0x6c,
- 0x0a, 0x0f, 0x4f, 0x72, 0x67, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f,
- 0x64, 0x12, 0x1a, 0x0a, 0x16, 0x4f, 0x52, 0x47, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45,
- 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x45, 0x51, 0x55, 0x41, 0x4c, 0x53, 0x10, 0x00, 0x12, 0x1f, 0x0a,
- 0x1b, 0x4f, 0x52, 0x47, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44,
- 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54, 0x53, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x10, 0x01, 0x12, 0x1c,
- 0x0a, 0x18, 0x4f, 0x52, 0x47, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f,
- 0x44, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x41, 0x49, 0x4e, 0x53, 0x10, 0x02, 0x2a, 0xaf, 0x01, 0x0a,
- 0x09, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x19, 0x0a, 0x15, 0x55, 0x53,
- 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46,
- 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x14, 0x0a, 0x10, 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41,
- 0x54, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x16, 0x0a, 0x12, 0x55,
- 0x53, 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56,
- 0x45, 0x10, 0x02, 0x12, 0x15, 0x0a, 0x11, 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45,
- 0x5f, 0x44, 0x45, 0x4c, 0x45, 0x54, 0x45, 0x44, 0x10, 0x03, 0x12, 0x14, 0x0a, 0x10, 0x55, 0x53,
- 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x45, 0x44, 0x10, 0x04,
- 0x12, 0x15, 0x0a, 0x11, 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x53, 0x55,
- 0x53, 0x50, 0x45, 0x4e, 0x44, 0x10, 0x05, 0x12, 0x15, 0x0a, 0x11, 0x55, 0x53, 0x45, 0x52, 0x53,
- 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x49, 0x54, 0x49, 0x41, 0x4c, 0x10, 0x06, 0x2a, 0x58,
- 0x0a, 0x06, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x12, 0x47, 0x45, 0x4e, 0x44,
- 0x45, 0x52, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00,
- 0x12, 0x11, 0x0a, 0x0d, 0x47, 0x45, 0x4e, 0x44, 0x45, 0x52, 0x5f, 0x46, 0x45, 0x4d, 0x41, 0x4c,
- 0x45, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x47, 0x45, 0x4e, 0x44, 0x45, 0x52, 0x5f, 0x4d, 0x41,
- 0x4c, 0x45, 0x10, 0x02, 0x12, 0x12, 0x0a, 0x0e, 0x47, 0x45, 0x4e, 0x44, 0x45, 0x52, 0x5f, 0x44,
- 0x49, 0x56, 0x45, 0x52, 0x53, 0x45, 0x10, 0x03, 0x32, 0xa0, 0x0b, 0x0a, 0x0c, 0x41, 0x64, 0x6d,
- 0x69, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x4b, 0x0a, 0x07, 0x48, 0x65, 0x61,
- 0x6c, 0x74, 0x68, 0x7a, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
- 0x6d, 0x70, 0x74, 0x79, 0x22, 0x10, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0a, 0x12, 0x08, 0x2f, 0x68,
- 0x65, 0x61, 0x6c, 0x74, 0x68, 0x7a, 0x12, 0x47, 0x0a, 0x05, 0x52, 0x65, 0x61, 0x64, 0x79, 0x12,
- 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
- 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
- 0x0e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x08, 0x12, 0x06, 0x2f, 0x72, 0x65, 0x61, 0x64, 0x79, 0x12,
- 0x4e, 0x0a, 0x08, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
- 0x70, 0x74, 0x79, 0x1a, 0x17, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x22, 0x11, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x0b, 0x12, 0x09, 0x2f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x12,
- 0x8f, 0x01, 0x0a, 0x0b, 0x49, 0x73, 0x4f, 0x72, 0x67, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x12,
- 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61,
- 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x69, 0x71,
- 0x75, 0x65, 0x4f, 0x72, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69,
- 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x4f,
- 0x72, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93,
- 0x02, 0x11, 0x12, 0x0f, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x5f, 0x69, 0x73, 0x75, 0x6e, 0x69,
- 0x71, 0x75, 0x65, 0x82, 0xb5, 0x18, 0x0a, 0x0a, 0x08, 0x69, 0x61, 0x6d, 0x2e, 0x72, 0x65, 0x61,
- 0x64, 0x12, 0x70, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x67, 0x42, 0x79, 0x49, 0x44, 0x12,
- 0x20, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61,
- 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x49,
- 0x44, 0x1a, 0x1e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72,
- 0x67, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0c, 0x12, 0x0a, 0x2f, 0x6f, 0x72, 0x67, 0x73,
- 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x0a, 0x0a, 0x08, 0x69, 0x61, 0x6d, 0x2e, 0x72,
- 0x65, 0x61, 0x64, 0x12, 0x8f, 0x01, 0x0a, 0x0a, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4f, 0x72,
- 0x67, 0x73, 0x12, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f,
- 0x72, 0x67, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61,
- 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x26, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x22, 0x0d, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x5f, 0x73, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0a, 0x0a, 0x08, 0x69, 0x61, 0x6d,
- 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x8b, 0x01, 0x0a, 0x08, 0x53, 0x65, 0x74, 0x55, 0x70, 0x4f,
- 0x72, 0x67, 0x12, 0x2a, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f,
- 0x72, 0x67, 0x53, 0x65, 0x74, 0x55, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x64,
- 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x53, 0x65,
- 0x74, 0x55, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x26, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x11, 0x22, 0x0c, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x74, 0x75,
- 0x70, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x69, 0x61, 0x6d, 0x2e, 0x77, 0x72,
- 0x69, 0x74, 0x65, 0x12, 0x9c, 0x01, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x67, 0x49, 0x61,
- 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x49, 0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
- 0x49, 0x44, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f,
- 0x72, 0x67, 0x49, 0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0x35, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x1a, 0x12, 0x18, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x7b, 0x6f, 0x72, 0x67, 0x5f,
- 0x69, 0x64, 0x7d, 0x2f, 0x69, 0x61, 0x6d, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x82, 0xb5, 0x18,
- 0x11, 0x0a, 0x0f, 0x69, 0x61, 0x6d, 0x2e, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x72, 0x65,
- 0x61, 0x64, 0x12, 0xa8, 0x01, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67,
- 0x49, 0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x49, 0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x49, 0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x22, 0x39, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x6f, 0x72, 0x67,
- 0x73, 0x2f, 0x7b, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x69, 0x61, 0x6d, 0x70, 0x6f,
- 0x6c, 0x69, 0x63, 0x79, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x12, 0x0a, 0x10, 0x69, 0x61, 0x6d,
- 0x2e, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xa8, 0x01,
- 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x49, 0x61, 0x6d, 0x50, 0x6f,
- 0x6c, 0x69, 0x63, 0x79, 0x12, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x4f, 0x72, 0x67, 0x49, 0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x4f, 0x72, 0x67, 0x49, 0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0x39, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x1a, 0x18, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x7b, 0x6f, 0x72,
- 0x67, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x69, 0x61, 0x6d, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x3a,
- 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x12, 0x0a, 0x10, 0x69, 0x61, 0x6d, 0x2e, 0x70, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x90, 0x01, 0x0a, 0x12, 0x44, 0x65, 0x6c,
- 0x65, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x49, 0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12,
- 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61,
- 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x49,
- 0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x49, 0x44, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
- 0x74, 0x79, 0x22, 0x37, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x2a, 0x18, 0x2f, 0x6f, 0x72, 0x67,
- 0x73, 0x2f, 0x7b, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x69, 0x61, 0x6d, 0x70, 0x6f,
- 0x6c, 0x69, 0x63, 0x79, 0x82, 0xb5, 0x18, 0x13, 0x0a, 0x11, 0x69, 0x61, 0x6d, 0x2e, 0x70, 0x6f,
- 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x42, 0xbe, 0x01, 0x5a, 0x2a,
- 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x61, 0x6f, 0x73, 0x2f,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x61, 0x64, 0x6d, 0x69,
- 0x6e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x92, 0x41, 0x8e, 0x01, 0x12, 0x41,
- 0x0a, 0x0d, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x22,
- 0x2b, 0x12, 0x29, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x67, 0x69, 0x74, 0x68, 0x75,
- 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x61, 0x6f, 0x73, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x32, 0x03, 0x30, 0x2e,
- 0x31, 0x2a, 0x01, 0x02, 0x32, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x2f, 0x6a, 0x73, 0x6f, 0x6e, 0x32, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x3a, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x6a, 0x73, 0x6f, 0x6e, 0x3a, 0x10, 0x61, 0x70, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x62, 0x06, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x33,
+func init() {
+ proto.RegisterEnum("caos.zitadel.admin.api.v1.OrgState", OrgState_name, OrgState_value)
+ proto.RegisterEnum("caos.zitadel.admin.api.v1.OrgSearchKey", OrgSearchKey_name, OrgSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.admin.api.v1.OrgSearchMethod", OrgSearchMethod_name, OrgSearchMethod_value)
+ proto.RegisterEnum("caos.zitadel.admin.api.v1.UserState", UserState_name, UserState_value)
+ proto.RegisterEnum("caos.zitadel.admin.api.v1.Gender", Gender_name, Gender_value)
+ proto.RegisterType((*OrgID)(nil), "caos.zitadel.admin.api.v1.OrgID")
+ proto.RegisterType((*UniqueOrgRequest)(nil), "caos.zitadel.admin.api.v1.UniqueOrgRequest")
+ proto.RegisterType((*UniqueOrgResponse)(nil), "caos.zitadel.admin.api.v1.UniqueOrgResponse")
+ proto.RegisterType((*Org)(nil), "caos.zitadel.admin.api.v1.Org")
+ proto.RegisterType((*OrgSearchRequest)(nil), "caos.zitadel.admin.api.v1.OrgSearchRequest")
+ proto.RegisterType((*OrgSearchQuery)(nil), "caos.zitadel.admin.api.v1.OrgSearchQuery")
+ proto.RegisterType((*OrgSearchResponse)(nil), "caos.zitadel.admin.api.v1.OrgSearchResponse")
+ proto.RegisterType((*OrgSetUpRequest)(nil), "caos.zitadel.admin.api.v1.OrgSetUpRequest")
+ proto.RegisterType((*OrgSetUpResponse)(nil), "caos.zitadel.admin.api.v1.OrgSetUpResponse")
+ proto.RegisterType((*CreateUserRequest)(nil), "caos.zitadel.admin.api.v1.CreateUserRequest")
+ proto.RegisterType((*User)(nil), "caos.zitadel.admin.api.v1.User")
+ proto.RegisterType((*CreateOrgRequest)(nil), "caos.zitadel.admin.api.v1.CreateOrgRequest")
+ proto.RegisterType((*OrgIamPolicy)(nil), "caos.zitadel.admin.api.v1.OrgIamPolicy")
+ proto.RegisterType((*OrgIamPolicyRequest)(nil), "caos.zitadel.admin.api.v1.OrgIamPolicyRequest")
+ proto.RegisterType((*OrgIamPolicyID)(nil), "caos.zitadel.admin.api.v1.OrgIamPolicyID")
}
-var (
- file_admin_proto_rawDescOnce sync.Once
- file_admin_proto_rawDescData = file_admin_proto_rawDesc
-)
+func init() { proto.RegisterFile("admin.proto", fileDescriptor_73a7fc70dcc2027c) }
-func file_admin_proto_rawDescGZIP() []byte {
- file_admin_proto_rawDescOnce.Do(func() {
- file_admin_proto_rawDescData = protoimpl.X.CompressGZIP(file_admin_proto_rawDescData)
- })
- return file_admin_proto_rawDescData
-}
-
-var file_admin_proto_enumTypes = make([]protoimpl.EnumInfo, 5)
-var file_admin_proto_msgTypes = make([]protoimpl.MessageInfo, 15)
-var file_admin_proto_goTypes = []interface{}{
- (OrgState)(0), // 0: caos.zitadel.admin.api.v1.OrgState
- (OrgSearchKey)(0), // 1: caos.zitadel.admin.api.v1.OrgSearchKey
- (OrgSearchMethod)(0), // 2: caos.zitadel.admin.api.v1.OrgSearchMethod
- (UserState)(0), // 3: caos.zitadel.admin.api.v1.UserState
- (Gender)(0), // 4: caos.zitadel.admin.api.v1.Gender
- (*OrgID)(nil), // 5: caos.zitadel.admin.api.v1.OrgID
- (*UniqueOrgRequest)(nil), // 6: caos.zitadel.admin.api.v1.UniqueOrgRequest
- (*UniqueOrgResponse)(nil), // 7: caos.zitadel.admin.api.v1.UniqueOrgResponse
- (*Org)(nil), // 8: caos.zitadel.admin.api.v1.Org
- (*OrgSearchRequest)(nil), // 9: caos.zitadel.admin.api.v1.OrgSearchRequest
- (*OrgSearchQuery)(nil), // 10: caos.zitadel.admin.api.v1.OrgSearchQuery
- (*OrgSearchResponse)(nil), // 11: caos.zitadel.admin.api.v1.OrgSearchResponse
- (*OrgSetUpRequest)(nil), // 12: caos.zitadel.admin.api.v1.OrgSetUpRequest
- (*OrgSetUpResponse)(nil), // 13: caos.zitadel.admin.api.v1.OrgSetUpResponse
- (*CreateUserRequest)(nil), // 14: caos.zitadel.admin.api.v1.CreateUserRequest
- (*User)(nil), // 15: caos.zitadel.admin.api.v1.User
- (*CreateOrgRequest)(nil), // 16: caos.zitadel.admin.api.v1.CreateOrgRequest
- (*OrgIamPolicy)(nil), // 17: caos.zitadel.admin.api.v1.OrgIamPolicy
- (*OrgIamPolicyRequest)(nil), // 18: caos.zitadel.admin.api.v1.OrgIamPolicyRequest
- (*OrgIamPolicyID)(nil), // 19: caos.zitadel.admin.api.v1.OrgIamPolicyID
- (*timestamp.Timestamp)(nil), // 20: google.protobuf.Timestamp
- (*empty.Empty)(nil), // 21: google.protobuf.Empty
- (*_struct.Struct)(nil), // 22: google.protobuf.Struct
-}
-var file_admin_proto_depIdxs = []int32{
- 0, // 0: caos.zitadel.admin.api.v1.Org.state:type_name -> caos.zitadel.admin.api.v1.OrgState
- 20, // 1: caos.zitadel.admin.api.v1.Org.creation_date:type_name -> google.protobuf.Timestamp
- 20, // 2: caos.zitadel.admin.api.v1.Org.change_date:type_name -> google.protobuf.Timestamp
- 1, // 3: caos.zitadel.admin.api.v1.OrgSearchRequest.sorting_column:type_name -> caos.zitadel.admin.api.v1.OrgSearchKey
- 10, // 4: caos.zitadel.admin.api.v1.OrgSearchRequest.queries:type_name -> caos.zitadel.admin.api.v1.OrgSearchQuery
- 1, // 5: caos.zitadel.admin.api.v1.OrgSearchQuery.key:type_name -> caos.zitadel.admin.api.v1.OrgSearchKey
- 2, // 6: caos.zitadel.admin.api.v1.OrgSearchQuery.method:type_name -> caos.zitadel.admin.api.v1.OrgSearchMethod
- 8, // 7: caos.zitadel.admin.api.v1.OrgSearchResponse.result:type_name -> caos.zitadel.admin.api.v1.Org
- 16, // 8: caos.zitadel.admin.api.v1.OrgSetUpRequest.org:type_name -> caos.zitadel.admin.api.v1.CreateOrgRequest
- 14, // 9: caos.zitadel.admin.api.v1.OrgSetUpRequest.user:type_name -> caos.zitadel.admin.api.v1.CreateUserRequest
- 8, // 10: caos.zitadel.admin.api.v1.OrgSetUpResponse.org:type_name -> caos.zitadel.admin.api.v1.Org
- 15, // 11: caos.zitadel.admin.api.v1.OrgSetUpResponse.user:type_name -> caos.zitadel.admin.api.v1.User
- 4, // 12: caos.zitadel.admin.api.v1.CreateUserRequest.gender:type_name -> caos.zitadel.admin.api.v1.Gender
- 3, // 13: caos.zitadel.admin.api.v1.User.state:type_name -> caos.zitadel.admin.api.v1.UserState
- 20, // 14: caos.zitadel.admin.api.v1.User.creation_date:type_name -> google.protobuf.Timestamp
- 20, // 15: caos.zitadel.admin.api.v1.User.change_date:type_name -> google.protobuf.Timestamp
- 4, // 16: caos.zitadel.admin.api.v1.User.gender:type_name -> caos.zitadel.admin.api.v1.Gender
- 20, // 17: caos.zitadel.admin.api.v1.OrgIamPolicy.creation_date:type_name -> google.protobuf.Timestamp
- 20, // 18: caos.zitadel.admin.api.v1.OrgIamPolicy.change_date:type_name -> google.protobuf.Timestamp
- 21, // 19: caos.zitadel.admin.api.v1.AdminService.Healthz:input_type -> google.protobuf.Empty
- 21, // 20: caos.zitadel.admin.api.v1.AdminService.Ready:input_type -> google.protobuf.Empty
- 21, // 21: caos.zitadel.admin.api.v1.AdminService.Validate:input_type -> google.protobuf.Empty
- 6, // 22: caos.zitadel.admin.api.v1.AdminService.IsOrgUnique:input_type -> caos.zitadel.admin.api.v1.UniqueOrgRequest
- 5, // 23: caos.zitadel.admin.api.v1.AdminService.GetOrgByID:input_type -> caos.zitadel.admin.api.v1.OrgID
- 9, // 24: caos.zitadel.admin.api.v1.AdminService.SearchOrgs:input_type -> caos.zitadel.admin.api.v1.OrgSearchRequest
- 12, // 25: caos.zitadel.admin.api.v1.AdminService.SetUpOrg:input_type -> caos.zitadel.admin.api.v1.OrgSetUpRequest
- 19, // 26: caos.zitadel.admin.api.v1.AdminService.GetOrgIamPolicy:input_type -> caos.zitadel.admin.api.v1.OrgIamPolicyID
- 18, // 27: caos.zitadel.admin.api.v1.AdminService.CreateOrgIamPolicy:input_type -> caos.zitadel.admin.api.v1.OrgIamPolicyRequest
- 18, // 28: caos.zitadel.admin.api.v1.AdminService.UpdateOrgIamPolicy:input_type -> caos.zitadel.admin.api.v1.OrgIamPolicyRequest
- 19, // 29: caos.zitadel.admin.api.v1.AdminService.DeleteOrgIamPolicy:input_type -> caos.zitadel.admin.api.v1.OrgIamPolicyID
- 21, // 30: caos.zitadel.admin.api.v1.AdminService.Healthz:output_type -> google.protobuf.Empty
- 21, // 31: caos.zitadel.admin.api.v1.AdminService.Ready:output_type -> google.protobuf.Empty
- 22, // 32: caos.zitadel.admin.api.v1.AdminService.Validate:output_type -> google.protobuf.Struct
- 7, // 33: caos.zitadel.admin.api.v1.AdminService.IsOrgUnique:output_type -> caos.zitadel.admin.api.v1.UniqueOrgResponse
- 8, // 34: caos.zitadel.admin.api.v1.AdminService.GetOrgByID:output_type -> caos.zitadel.admin.api.v1.Org
- 11, // 35: caos.zitadel.admin.api.v1.AdminService.SearchOrgs:output_type -> caos.zitadel.admin.api.v1.OrgSearchResponse
- 13, // 36: caos.zitadel.admin.api.v1.AdminService.SetUpOrg:output_type -> caos.zitadel.admin.api.v1.OrgSetUpResponse
- 17, // 37: caos.zitadel.admin.api.v1.AdminService.GetOrgIamPolicy:output_type -> caos.zitadel.admin.api.v1.OrgIamPolicy
- 17, // 38: caos.zitadel.admin.api.v1.AdminService.CreateOrgIamPolicy:output_type -> caos.zitadel.admin.api.v1.OrgIamPolicy
- 17, // 39: caos.zitadel.admin.api.v1.AdminService.UpdateOrgIamPolicy:output_type -> caos.zitadel.admin.api.v1.OrgIamPolicy
- 21, // 40: caos.zitadel.admin.api.v1.AdminService.DeleteOrgIamPolicy:output_type -> google.protobuf.Empty
- 30, // [30:41] is the sub-list for method output_type
- 19, // [19:30] is the sub-list for method input_type
- 19, // [19:19] is the sub-list for extension type_name
- 19, // [19:19] is the sub-list for extension extendee
- 0, // [0:19] is the sub-list for field type_name
-}
-
-func init() { file_admin_proto_init() }
-func file_admin_proto_init() {
- if File_admin_proto != nil {
- return
- }
- if !protoimpl.UnsafeEnabled {
- file_admin_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_admin_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UniqueOrgRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_admin_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UniqueOrgResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_admin_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Org); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_admin_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_admin_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_admin_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_admin_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgSetUpRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_admin_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgSetUpResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_admin_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*CreateUserRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_admin_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*User); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_admin_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*CreateOrgRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_admin_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgIamPolicy); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_admin_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgIamPolicyRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_admin_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgIamPolicyID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- }
- type x struct{}
- out := protoimpl.TypeBuilder{
- File: protoimpl.DescBuilder{
- GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_admin_proto_rawDesc,
- NumEnums: 5,
- NumMessages: 15,
- NumExtensions: 0,
- NumServices: 1,
- },
- GoTypes: file_admin_proto_goTypes,
- DependencyIndexes: file_admin_proto_depIdxs,
- EnumInfos: file_admin_proto_enumTypes,
- MessageInfos: file_admin_proto_msgTypes,
- }.Build()
- File_admin_proto = out.File
- file_admin_proto_rawDesc = nil
- file_admin_proto_goTypes = nil
- file_admin_proto_depIdxs = nil
+var fileDescriptor_73a7fc70dcc2027c = []byte{
+ // 2038 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcf, 0x6f, 0xdb, 0xc8,
+ 0x15, 0x0e, 0xf5, 0xcb, 0xd2, 0x93, 0x2d, 0x53, 0x13, 0xc7, 0x61, 0xe4, 0xa4, 0x71, 0xb8, 0x9b,
+ 0x26, 0x51, 0x12, 0x29, 0xeb, 0x45, 0xbb, 0x4d, 0x8a, 0xa2, 0x95, 0x2d, 0xae, 0x23, 0xc4, 0x96,
+ 0xbc, 0x94, 0x9c, 0x6e, 0x7b, 0x51, 0x19, 0x71, 0x4c, 0xb3, 0xa1, 0x48, 0x66, 0x86, 0x4a, 0xaa,
+ 0x2d, 0xf6, 0x62, 0xa0, 0x40, 0x81, 0x02, 0x6d, 0xb1, 0xbd, 0xee, 0xa1, 0xc7, 0xde, 0xf6, 0x50,
+ 0xe4, 0xda, 0x73, 0xef, 0xfd, 0x17, 0xfa, 0x0f, 0xf4, 0x9a, 0x53, 0x31, 0x33, 0x24, 0x45, 0x49,
+ 0xb6, 0xec, 0xb4, 0xc0, 0x62, 0x4f, 0x12, 0xdf, 0xfb, 0xe6, 0xcd, 0xc7, 0x6f, 0xe6, 0x9b, 0x1f,
+ 0x84, 0xa2, 0x61, 0x0e, 0x6d, 0xb7, 0xe6, 0x13, 0x2f, 0xf0, 0xd0, 0xb5, 0x81, 0xe1, 0xd1, 0xda,
+ 0x17, 0x76, 0x60, 0x98, 0xd8, 0xa9, 0x89, 0x8c, 0xe1, 0xdb, 0xb5, 0xd7, 0x1f, 0x55, 0xae, 0x5b,
+ 0x9e, 0x67, 0x39, 0xb8, 0x6e, 0xf8, 0x76, 0xdd, 0x70, 0x5d, 0x2f, 0x30, 0x02, 0xdb, 0x73, 0xa9,
+ 0x68, 0x58, 0xd9, 0x08, 0xb3, 0xfc, 0xe9, 0xc5, 0xe8, 0xa8, 0x8e, 0x87, 0x7e, 0x30, 0x0e, 0x93,
+ 0x37, 0x67, 0x93, 0x81, 0x3d, 0xc4, 0x34, 0x30, 0x86, 0x7e, 0x08, 0xb8, 0x3e, 0x0b, 0xa0, 0x01,
+ 0x19, 0x0d, 0x82, 0x30, 0x7b, 0xf5, 0xb5, 0xe1, 0xd8, 0xa6, 0x11, 0xe0, 0x7a, 0xf4, 0x27, 0x4c,
+ 0x3c, 0xe0, 0x3f, 0x83, 0x87, 0x16, 0x76, 0x1f, 0xd2, 0x37, 0x86, 0x65, 0x61, 0x52, 0xf7, 0x7c,
+ 0x4e, 0xeb, 0x14, 0x8a, 0x8a, 0x31, 0x0a, 0x8e, 0x45, 0x3a, 0x42, 0x89, 0x8c, 0x7a, 0x15, 0xb2,
+ 0x1d, 0x62, 0xb5, 0x9a, 0xa8, 0x04, 0x29, 0xdb, 0x54, 0xa4, 0x4d, 0xe9, 0x6e, 0x41, 0x4f, 0xd9,
+ 0xa6, 0x7a, 0x00, 0xf2, 0xa1, 0x6b, 0xbf, 0x1a, 0xe1, 0x0e, 0xb1, 0x74, 0xfc, 0x6a, 0x84, 0x69,
+ 0x80, 0x36, 0x20, 0xe3, 0x1a, 0x43, 0x2c, 0x50, 0xdb, 0x4b, 0xef, 0xb6, 0x33, 0x24, 0x25, 0x4b,
+ 0x3a, 0x0f, 0xa2, 0x9b, 0x90, 0x33, 0xbd, 0xa1, 0x61, 0xbb, 0x4a, 0x6a, 0x3a, 0x1d, 0x86, 0xd5,
+ 0x47, 0x50, 0x4e, 0x54, 0xa4, 0xbe, 0xe7, 0x52, 0x8c, 0x36, 0xa0, 0x60, 0xd3, 0xfe, 0x88, 0xc7,
+ 0x79, 0xdd, 0xbc, 0x9e, 0xb7, 0xa9, 0xc0, 0xa9, 0xef, 0x24, 0x48, 0x77, 0x88, 0x35, 0xcb, 0x0d,
+ 0x3d, 0x86, 0x2c, 0x0d, 0x8c, 0x00, 0xf3, 0x9e, 0x4a, 0x5b, 0x1f, 0xd4, 0xce, 0x1c, 0xba, 0x5a,
+ 0x87, 0x58, 0x5d, 0x06, 0xd5, 0x45, 0x0b, 0xf4, 0x53, 0x58, 0x19, 0x10, 0xcc, 0xc5, 0xe9, 0x33,
+ 0x39, 0x95, 0xf4, 0xa6, 0x74, 0xb7, 0xb8, 0x55, 0xa9, 0x89, 0x61, 0xa8, 0x45, 0xc3, 0x50, 0xeb,
+ 0x45, 0xe3, 0xa4, 0x2f, 0x47, 0x0d, 0x9a, 0xac, 0xc0, 0x8f, 0xa1, 0x38, 0x38, 0x36, 0x5c, 0x0b,
+ 0x8b, 0xe6, 0x99, 0x73, 0x9b, 0x83, 0x80, 0xf3, 0xc6, 0x28, 0x14, 0x30, 0xcb, 0x5f, 0x45, 0xe8,
+ 0xb6, 0x1e, 0xeb, 0x96, 0xe3, 0xd1, 0x48, 0xae, 0xff, 0x48, 0x20, 0x33, 0xf6, 0xd8, 0x20, 0x83,
+ 0xe3, 0x68, 0x04, 0xd6, 0x21, 0xe7, 0x1d, 0x1d, 0x51, 0x1c, 0x70, 0x35, 0x32, 0x7a, 0xf8, 0x84,
+ 0xd6, 0x20, 0xeb, 0xd8, 0x43, 0x3b, 0xe0, 0x8a, 0x64, 0x74, 0xf1, 0x80, 0x3e, 0x87, 0x12, 0xf5,
+ 0x48, 0x60, 0xbb, 0x56, 0x7f, 0xe0, 0x39, 0xa3, 0xa1, 0xcb, 0xdf, 0xb6, 0xb4, 0x75, 0xe7, 0x1c,
+ 0xc1, 0x78, 0x97, 0xcf, 0xf0, 0x78, 0x3b, 0xff, 0x6e, 0x3b, 0x7b, 0x22, 0xa5, 0x36, 0x2f, 0xe9,
+ 0x2b, 0x61, 0xa1, 0x1d, 0x5e, 0x07, 0xc9, 0x90, 0x36, 0xe8, 0x80, 0xbf, 0x7d, 0x5e, 0x67, 0x7f,
+ 0xd1, 0x0e, 0x2c, 0xbd, 0x1a, 0x61, 0x62, 0x63, 0xaa, 0x64, 0x37, 0xd3, 0x77, 0x8b, 0x5b, 0xf7,
+ 0x2e, 0xd2, 0xc9, 0x67, 0x23, 0x4c, 0xc6, 0x7a, 0xd4, 0x52, 0xfd, 0x46, 0x82, 0xd2, 0x74, 0x0e,
+ 0xed, 0x40, 0xfa, 0x25, 0x1e, 0xf3, 0xd7, 0xfd, 0x9f, 0x88, 0xb3, 0xd6, 0x68, 0x1b, 0x72, 0x43,
+ 0x1c, 0x1c, 0x7b, 0x66, 0x38, 0x63, 0xaa, 0x17, 0xa9, 0xb3, 0xcf, 0x5b, 0xe8, 0x61, 0x4b, 0x26,
+ 0xf1, 0x6b, 0xc3, 0x19, 0x89, 0x19, 0x53, 0xd0, 0xc5, 0x83, 0xfa, 0xb5, 0x04, 0xe5, 0xc4, 0x28,
+ 0x85, 0xb3, 0xfa, 0xfd, 0x86, 0xe9, 0x16, 0x2c, 0x07, 0x5e, 0x60, 0x38, 0x7d, 0x82, 0xe9, 0xc8,
+ 0x09, 0x78, 0x07, 0x19, 0xbd, 0xc8, 0x63, 0x3a, 0x0f, 0xa1, 0x1f, 0x42, 0x2e, 0x4c, 0x66, 0xb8,
+ 0xb8, 0xdf, 0x5b, 0xfc, 0x02, 0x7a, 0x88, 0x56, 0xbf, 0x92, 0x60, 0x95, 0xd3, 0x0b, 0x0e, 0xfd,
+ 0x68, 0x0e, 0xfd, 0x04, 0xd2, 0x1e, 0xb1, 0x38, 0xb3, 0xe2, 0xd6, 0xfd, 0x05, 0x85, 0x76, 0xd8,
+ 0xbc, 0x4f, 0xf8, 0x5f, 0x67, 0xed, 0xd0, 0xcf, 0x20, 0x33, 0xa2, 0x98, 0xf0, 0x57, 0x28, 0x6e,
+ 0x3d, 0x38, 0xb7, 0xfd, 0x21, 0xc5, 0x24, 0x2a, 0xc0, 0x5b, 0xaa, 0xe3, 0x70, 0x62, 0x73, 0x4e,
+ 0xa1, 0x62, 0x8f, 0x92, 0xa4, 0xce, 0x7b, 0x3b, 0xce, 0xe3, 0xe3, 0x29, 0x1e, 0x37, 0x17, 0x34,
+ 0xe1, 0x0c, 0x44, 0xd7, 0x7f, 0xcf, 0x42, 0x79, 0x8e, 0x16, 0xba, 0x03, 0x05, 0x96, 0xed, 0x27,
+ 0x16, 0x37, 0x78, 0xb7, 0xbd, 0x44, 0xb2, 0xb2, 0xa4, 0xfc, 0x53, 0xd2, 0xf3, 0x2c, 0xd9, 0x66,
+ 0x5e, 0xbd, 0x07, 0x70, 0x64, 0x13, 0x1a, 0x08, 0x64, 0x6a, 0x0e, 0x59, 0xe0, 0x59, 0x0e, 0xbd,
+ 0x03, 0x05, 0xc7, 0x88, 0x90, 0xe9, 0xf9, 0x9a, 0x2c, 0xc9, 0x81, 0xb7, 0xa1, 0xe0, 0xda, 0x83,
+ 0x97, 0x02, 0x98, 0xe1, 0x40, 0x36, 0x7b, 0x49, 0x9a, 0xc3, 0x58, 0x8a, 0xc3, 0x3e, 0x01, 0xe4,
+ 0x13, 0x7c, 0x84, 0x09, 0xc1, 0x66, 0xdf, 0x31, 0x5c, 0x6b, 0x64, 0x58, 0xe1, 0x42, 0x92, 0xc0,
+ 0x97, 0x63, 0xcc, 0x5e, 0x08, 0x41, 0x8f, 0x21, 0x67, 0x61, 0xd7, 0xc4, 0x84, 0xaf, 0x2f, 0xa5,
+ 0xad, 0x5b, 0x0b, 0x94, 0xda, 0xe5, 0x40, 0x3d, 0x6c, 0x80, 0x54, 0xc8, 0xe2, 0xa1, 0x61, 0x3b,
+ 0xca, 0x12, 0xef, 0x66, 0xf9, 0xdd, 0x76, 0x81, 0x2c, 0x71, 0xfe, 0xbf, 0x92, 0x74, 0x91, 0x42,
+ 0x55, 0x28, 0xdb, 0xb4, 0xcf, 0xff, 0xf7, 0x5f, 0x63, 0x62, 0x1f, 0xd9, 0xd8, 0x54, 0xf2, 0x7c,
+ 0x5d, 0x58, 0xb5, 0xa9, 0xc6, 0xe2, 0xcf, 0xc3, 0x30, 0xba, 0x01, 0x59, 0xff, 0xd8, 0x73, 0xb1,
+ 0x52, 0x48, 0xec, 0x10, 0xca, 0x9a, 0x2e, 0xa2, 0x61, 0x29, 0xfe, 0x7f, 0x52, 0x0a, 0xa2, 0x52,
+ 0x07, 0x2c, 0x1e, 0x97, 0x52, 0x61, 0x69, 0xe0, 0x8d, 0xdc, 0x80, 0x8c, 0x95, 0xe2, 0x8c, 0x06,
+ 0x51, 0x02, 0x7d, 0x08, 0x79, 0xc7, 0x1b, 0x18, 0x8e, 0x1d, 0x8c, 0x95, 0xe5, 0x59, 0x61, 0xa3,
+ 0x0c, 0xba, 0x07, 0x45, 0xdf, 0xa3, 0xcc, 0x7e, 0x03, 0xcf, 0xc4, 0xca, 0xca, 0x0c, 0x10, 0x44,
+ 0x72, 0xc7, 0x33, 0x31, 0xda, 0x64, 0x2e, 0xb4, 0x6c, 0xcf, 0x55, 0x4a, 0x33, 0xa8, 0x30, 0x8e,
+ 0xea, 0x50, 0xa2, 0x01, 0xc1, 0x38, 0xe8, 0x1b, 0xa6, 0x49, 0x30, 0xa5, 0xca, 0xea, 0x0c, 0x72,
+ 0x45, 0xe4, 0x1b, 0x22, 0x8d, 0x3e, 0x80, 0xbc, 0x6f, 0x50, 0xfa, 0xc6, 0x23, 0xa6, 0x22, 0x27,
+ 0x55, 0x79, 0xaa, 0xc7, 0x09, 0xf5, 0x77, 0x39, 0xc8, 0xb0, 0xf9, 0x3a, 0xb7, 0x11, 0x3e, 0x99,
+ 0xde, 0x08, 0x3f, 0x3c, 0xc7, 0x04, 0xdf, 0xa1, 0x9d, 0x70, 0x23, 0x69, 0x39, 0xb1, 0x1d, 0x4e,
+ 0x6c, 0x76, 0x63, 0xca, 0x66, 0x62, 0x5b, 0x4c, 0x58, 0x6b, 0x23, 0x69, 0xad, 0x25, 0xd1, 0x36,
+ 0xb6, 0xd3, 0x46, 0xd2, 0x4e, 0x79, 0x91, 0x8c, 0x4d, 0x74, 0x0b, 0x96, 0x4d, 0x9b, 0xfa, 0x8e,
+ 0x31, 0x16, 0x79, 0x3e, 0x0f, 0xf5, 0x62, 0x18, 0xe3, 0x90, 0x87, 0xa7, 0xfa, 0x0c, 0x38, 0x70,
+ 0xa1, 0xbb, 0x8a, 0xef, 0xeb, 0xae, 0xb5, 0xc8, 0x5d, 0xcb, 0x62, 0x43, 0x11, 0x7e, 0xba, 0x0b,
+ 0xb3, 0xb6, 0xe1, 0x53, 0xf2, 0x14, 0x37, 0xad, 0x45, 0x6e, 0x2a, 0x89, 0xf6, 0xc2, 0x44, 0xbc,
+ 0xfd, 0x94, 0x57, 0xf8, 0x14, 0x3c, 0xc5, 0x42, 0xca, 0xc4, 0x42, 0x7c, 0xe6, 0x4d, 0x8c, 0x53,
+ 0x49, 0x18, 0xa7, 0x1c, 0xea, 0x1b, 0xd9, 0xe5, 0xe6, 0xb4, 0x5d, 0x10, 0x4f, 0x27, 0x4d, 0xb2,
+ 0x1e, 0x9b, 0xe4, 0xb2, 0x38, 0xcf, 0x84, 0xd6, 0xb8, 0x3d, 0x67, 0x8d, 0x35, 0x9e, 0x9f, 0x31,
+ 0x44, 0x05, 0xf2, 0x94, 0x2d, 0xcb, 0xee, 0x00, 0x2b, 0x57, 0xf8, 0x46, 0x18, 0x3f, 0xab, 0xbb,
+ 0x20, 0xcf, 0xee, 0x49, 0x8b, 0xcf, 0xa4, 0xeb, 0xd3, 0x67, 0xd2, 0xf8, 0x6c, 0xf5, 0x36, 0x05,
+ 0xcb, 0xec, 0xd8, 0x6b, 0x0c, 0x0f, 0x3c, 0xc7, 0x1e, 0x8c, 0xd1, 0x15, 0xc8, 0x79, 0xc4, 0xea,
+ 0xc7, 0xe6, 0xca, 0x7a, 0xc4, 0x6a, 0x99, 0x68, 0x13, 0x8a, 0x26, 0xa6, 0x03, 0x62, 0xf3, 0x33,
+ 0x73, 0x58, 0x24, 0x19, 0x42, 0x3f, 0x82, 0x6b, 0x7c, 0x1e, 0x3b, 0x9e, 0x65, 0xbb, 0xfd, 0xe1,
+ 0x88, 0x06, 0xfd, 0x17, 0xb8, 0x1f, 0x76, 0x9a, 0xe6, 0xc2, 0x5f, 0x61, 0x80, 0x3d, 0x96, 0xdf,
+ 0x1f, 0xd1, 0x60, 0x1b, 0x37, 0x79, 0x92, 0xc9, 0x6f, 0xe2, 0x23, 0x43, 0xec, 0xe9, 0x0c, 0x17,
+ 0x3d, 0x4e, 0x49, 0x90, 0x9d, 0x96, 0x60, 0xde, 0xb5, 0xb9, 0xff, 0xcf, 0xb5, 0x4b, 0xef, 0xe3,
+ 0x5a, 0xf5, 0xf7, 0x12, 0x5c, 0x4e, 0xea, 0x16, 0x0d, 0xc2, 0xb7, 0x2f, 0x9f, 0x7a, 0x87, 0x9f,
+ 0x14, 0x63, 0x26, 0xad, 0xe6, 0x19, 0x24, 0xaa, 0x07, 0x90, 0x8f, 0x2e, 0x01, 0x48, 0x81, 0xb5,
+ 0x8e, 0xbe, 0xdb, 0xed, 0x35, 0x7a, 0x5a, 0xff, 0xb0, 0xdd, 0x3d, 0xd0, 0x76, 0x5a, 0x9f, 0xb6,
+ 0xb4, 0xa6, 0x7c, 0x09, 0x5d, 0x86, 0xd5, 0x38, 0xd3, 0xd8, 0xe9, 0xb5, 0x9e, 0x6b, 0xb2, 0x84,
+ 0xae, 0x40, 0x39, 0x0e, 0xb6, 0xda, 0x61, 0x38, 0x55, 0xfd, 0x0d, 0x9f, 0x3c, 0xf1, 0x61, 0x13,
+ 0x5d, 0x07, 0x85, 0xc1, 0xb4, 0x86, 0xbe, 0xf3, 0xf4, 0x99, 0xf6, 0x8b, 0x99, 0xca, 0xd7, 0xe0,
+ 0xca, 0x54, 0xb6, 0xa3, 0xef, 0xf6, 0xdb, 0x8d, 0x7d, 0x56, 0xff, 0x2a, 0x5c, 0x9e, 0x4a, 0x35,
+ 0x3b, 0xfb, 0x8d, 0x56, 0x5b, 0x4e, 0xa1, 0x75, 0x40, 0x53, 0x09, 0x4e, 0x41, 0x4e, 0x57, 0x9d,
+ 0xf0, 0x34, 0x37, 0x39, 0x9e, 0xa2, 0x0a, 0xac, 0xc7, 0xd0, 0x7d, 0xad, 0xf7, 0xb4, 0xd3, 0xec,
+ 0x6b, 0x9f, 0x1d, 0x36, 0xf6, 0xba, 0xf2, 0x25, 0x74, 0x13, 0x36, 0x66, 0x73, 0xdd, 0x5e, 0x43,
+ 0xef, 0x75, 0xfb, 0x3f, 0x6f, 0xf5, 0x9e, 0xca, 0xd2, 0x14, 0xf3, 0x10, 0xb0, 0xd3, 0x69, 0xf7,
+ 0x1a, 0xad, 0x76, 0x57, 0x4e, 0x55, 0xbf, 0x91, 0xa0, 0x10, 0x6f, 0x1b, 0xec, 0x3d, 0x0e, 0xbb,
+ 0x9a, 0x7e, 0x9a, 0x78, 0x6b, 0x20, 0x4f, 0x52, 0xb1, 0x7a, 0xeb, 0x80, 0x26, 0xd1, 0x89, 0x7c,
+ 0x4c, 0xd5, 0x49, 0xbc, 0xa9, 0xed, 0x69, 0x3d, 0xad, 0x29, 0xa7, 0xa7, 0x8b, 0xec, 0x75, 0x76,
+ 0x9e, 0x69, 0x4d, 0x39, 0x33, 0x0d, 0xee, 0x1e, 0x76, 0x0f, 0xb4, 0x76, 0x53, 0xce, 0x4e, 0x87,
+ 0x5b, 0xed, 0x56, 0xaf, 0xd5, 0xd8, 0x93, 0x73, 0xd5, 0xcf, 0x21, 0x27, 0x16, 0x59, 0xd6, 0xf9,
+ 0xae, 0xd6, 0x6e, 0x6a, 0xfa, 0x0c, 0xd5, 0x32, 0xac, 0x84, 0xf1, 0x4f, 0xb5, 0xfd, 0xc6, 0x1e,
+ 0xe3, 0xb9, 0x0a, 0xc5, 0x30, 0xc4, 0x03, 0x29, 0x84, 0xa0, 0x14, 0x06, 0x9a, 0xad, 0xe7, 0x9a,
+ 0xde, 0xd5, 0xe4, 0xf4, 0xd6, 0x5f, 0x8b, 0xb0, 0xdc, 0x60, 0x8b, 0x79, 0x17, 0x93, 0xd7, 0xf6,
+ 0x00, 0xa3, 0x67, 0xb0, 0xf4, 0x14, 0x1b, 0x4e, 0x70, 0xfc, 0x05, 0x5a, 0x9f, 0x73, 0x8f, 0x36,
+ 0xf4, 0x83, 0x71, 0xe5, 0x8c, 0xb8, 0x2a, 0x9f, 0xfc, 0xeb, 0xdf, 0x7f, 0x49, 0x01, 0xca, 0xd7,
+ 0x8f, 0xc3, 0x0a, 0xbb, 0x90, 0xd5, 0xb1, 0x61, 0x8e, 0xdf, 0xbb, 0x54, 0x89, 0x97, 0xca, 0xa3,
+ 0x5c, 0x9d, 0xf0, 0xf6, 0x6d, 0xc8, 0x3f, 0x0f, 0x3f, 0x14, 0x9c, 0x59, 0xeb, 0xea, 0x5c, 0xbc,
+ 0xcb, 0x3f, 0x39, 0xa8, 0x65, 0x5e, 0xac, 0x88, 0x0a, 0xf1, 0xc7, 0x06, 0xf4, 0x27, 0x09, 0x8a,
+ 0x2d, 0xda, 0x21, 0x96, 0xb8, 0x91, 0xa3, 0x45, 0xd7, 0x85, 0xd9, 0xcf, 0x05, 0x95, 0x07, 0x17,
+ 0x03, 0x8b, 0x1b, 0x80, 0x7a, 0xfb, 0xe4, 0xad, 0x02, 0x90, 0xb7, 0x8d, 0x61, 0x8d, 0xbd, 0x0b,
+ 0xe7, 0x52, 0x46, 0xab, 0x75, 0x8f, 0x58, 0xb4, 0xde, 0xb7, 0xa9, 0xf8, 0x46, 0x80, 0x7c, 0x80,
+ 0x5d, 0x1c, 0x74, 0x88, 0xb5, 0xcd, 0x3c, 0xbf, 0xb9, 0xf8, 0xa6, 0xd0, 0x6a, 0x56, 0xce, 0xb9,
+ 0x4b, 0xa8, 0x9b, 0xa7, 0x74, 0xbb, 0x8c, 0x40, 0x74, 0xfb, 0x5b, 0xdb, 0xfc, 0x92, 0x69, 0x00,
+ 0xc2, 0x72, 0x1d, 0x62, 0xd1, 0x85, 0x12, 0xcc, 0xde, 0xd7, 0x17, 0x4a, 0x30, 0x77, 0x6d, 0x54,
+ 0xbf, 0x7f, 0x0a, 0x17, 0xa4, 0xae, 0x84, 0x12, 0x50, 0x0e, 0x7e, 0x22, 0x55, 0xd1, 0x1f, 0x24,
+ 0xc8, 0xf3, 0xeb, 0x53, 0x87, 0x58, 0xe8, 0xdc, 0xbb, 0xec, 0xe4, 0xea, 0x57, 0xb9, 0x7f, 0x21,
+ 0x6c, 0x82, 0x4d, 0x11, 0x0a, 0x8c, 0xcd, 0x1b, 0x62, 0x07, 0x58, 0x8c, 0x88, 0xba, 0x1c, 0xd3,
+ 0x09, 0x46, 0x3e, 0x63, 0xf3, 0xb5, 0x04, 0xab, 0x62, 0x48, 0x26, 0xfb, 0xe9, 0x39, 0x97, 0xff,
+ 0xc4, 0xb2, 0x5d, 0xb9, 0x73, 0x41, 0xa8, 0xfa, 0x83, 0x93, 0xb7, 0x4a, 0x19, 0x56, 0x19, 0x1f,
+ 0x9f, 0x47, 0x26, 0x22, 0x55, 0x90, 0x12, 0x0e, 0x98, 0xd8, 0x01, 0xbe, 0xac, 0xdb, 0xc6, 0x50,
+ 0x80, 0xd0, 0xdf, 0x24, 0x40, 0xf1, 0xa9, 0x61, 0xc2, 0xb0, 0x76, 0xc1, 0x6e, 0x23, 0xe9, 0x2e,
+ 0x4c, 0xf3, 0xf1, 0xc9, 0x5b, 0x05, 0x81, 0x9c, 0xa0, 0x39, 0x51, 0xef, 0x86, 0x7a, 0x26, 0x4f,
+ 0xa6, 0x24, 0xa3, 0x7a, 0xe8, 0x9b, 0xdf, 0x0d, 0xaa, 0x95, 0x85, 0x54, 0xff, 0x2c, 0x01, 0x6a,
+ 0x62, 0x07, 0xcf, 0x50, 0x7d, 0x8f, 0x71, 0x3f, 0x6b, 0x49, 0xfb, 0xe4, 0xe4, 0xad, 0x72, 0x19,
+ 0xca, 0x09, 0x52, 0x26, 0xef, 0x47, 0x0c, 0x74, 0xf5, 0x4c, 0x56, 0xdb, 0xff, 0x90, 0xbe, 0x6a,
+ 0xfc, 0x51, 0x42, 0x0d, 0x58, 0xe1, 0xdd, 0x6e, 0x52, 0xb1, 0x52, 0xab, 0xf7, 0xd1, 0xbd, 0xe3,
+ 0x20, 0xf0, 0xe9, 0x93, 0x7a, 0xdd, 0xb2, 0x83, 0xe3, 0xd1, 0x8b, 0xda, 0xc0, 0x1b, 0xd6, 0x19,
+ 0xcf, 0x7a, 0xc8, 0xb3, 0xee, 0xbf, 0xb4, 0xea, 0xbc, 0xd1, 0x56, 0xfa, 0x51, 0xed, 0xa3, 0xaa,
+ 0x94, 0xda, 0x92, 0x0d, 0xdf, 0x77, 0xec, 0x01, 0x3f, 0x37, 0xd5, 0x7f, 0x4d, 0x3d, 0x77, 0x3a,
+ 0x62, 0x11, 0x7f, 0xf0, 0x64, 0x0e, 0xf3, 0x64, 0x0e, 0xf3, 0xcb, 0xea, 0xb9, 0x5d, 0xf2, 0xaf,
+ 0xca, 0x0c, 0xfb, 0x22, 0xc7, 0x95, 0xf8, 0xf8, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xeb, 0x9f,
+ 0x83, 0xf6, 0x97, 0x16, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -2325,37 +1578,37 @@ type AdminServiceServer interface {
type UnimplementedAdminServiceServer struct {
}
-func (*UnimplementedAdminServiceServer) Healthz(context.Context, *empty.Empty) (*empty.Empty, error) {
+func (*UnimplementedAdminServiceServer) Healthz(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method Healthz not implemented")
}
-func (*UnimplementedAdminServiceServer) Ready(context.Context, *empty.Empty) (*empty.Empty, error) {
+func (*UnimplementedAdminServiceServer) Ready(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method Ready not implemented")
}
-func (*UnimplementedAdminServiceServer) Validate(context.Context, *empty.Empty) (*_struct.Struct, error) {
+func (*UnimplementedAdminServiceServer) Validate(ctx context.Context, req *empty.Empty) (*_struct.Struct, error) {
return nil, status.Errorf(codes.Unimplemented, "method Validate not implemented")
}
-func (*UnimplementedAdminServiceServer) IsOrgUnique(context.Context, *UniqueOrgRequest) (*UniqueOrgResponse, error) {
+func (*UnimplementedAdminServiceServer) IsOrgUnique(ctx context.Context, req *UniqueOrgRequest) (*UniqueOrgResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method IsOrgUnique not implemented")
}
-func (*UnimplementedAdminServiceServer) GetOrgByID(context.Context, *OrgID) (*Org, error) {
+func (*UnimplementedAdminServiceServer) GetOrgByID(ctx context.Context, req *OrgID) (*Org, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetOrgByID not implemented")
}
-func (*UnimplementedAdminServiceServer) SearchOrgs(context.Context, *OrgSearchRequest) (*OrgSearchResponse, error) {
+func (*UnimplementedAdminServiceServer) SearchOrgs(ctx context.Context, req *OrgSearchRequest) (*OrgSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchOrgs not implemented")
}
-func (*UnimplementedAdminServiceServer) SetUpOrg(context.Context, *OrgSetUpRequest) (*OrgSetUpResponse, error) {
+func (*UnimplementedAdminServiceServer) SetUpOrg(ctx context.Context, req *OrgSetUpRequest) (*OrgSetUpResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SetUpOrg not implemented")
}
-func (*UnimplementedAdminServiceServer) GetOrgIamPolicy(context.Context, *OrgIamPolicyID) (*OrgIamPolicy, error) {
+func (*UnimplementedAdminServiceServer) GetOrgIamPolicy(ctx context.Context, req *OrgIamPolicyID) (*OrgIamPolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetOrgIamPolicy not implemented")
}
-func (*UnimplementedAdminServiceServer) CreateOrgIamPolicy(context.Context, *OrgIamPolicyRequest) (*OrgIamPolicy, error) {
+func (*UnimplementedAdminServiceServer) CreateOrgIamPolicy(ctx context.Context, req *OrgIamPolicyRequest) (*OrgIamPolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateOrgIamPolicy not implemented")
}
-func (*UnimplementedAdminServiceServer) UpdateOrgIamPolicy(context.Context, *OrgIamPolicyRequest) (*OrgIamPolicy, error) {
+func (*UnimplementedAdminServiceServer) UpdateOrgIamPolicy(ctx context.Context, req *OrgIamPolicyRequest) (*OrgIamPolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateOrgIamPolicy not implemented")
}
-func (*UnimplementedAdminServiceServer) DeleteOrgIamPolicy(context.Context, *OrgIamPolicyID) (*empty.Empty, error) {
+func (*UnimplementedAdminServiceServer) DeleteOrgIamPolicy(ctx context.Context, req *OrgIamPolicyID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteOrgIamPolicy not implemented")
}
diff --git a/pkg/admin/api/grpc/admin.pb.gw.go b/pkg/admin/api/grpc/admin.pb.gw.go
index e9531da88f..65b6206302 100644
--- a/pkg/admin/api/grpc/admin.pb.gw.go
+++ b/pkg/admin/api/grpc/admin.pb.gw.go
@@ -38,6 +38,15 @@ func request_AdminService_Healthz_0(ctx context.Context, marshaler runtime.Marsh
}
+func local_request_AdminService_Healthz_0(ctx context.Context, marshaler runtime.Marshaler, server AdminServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.Healthz(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AdminService_Ready_0(ctx context.Context, marshaler runtime.Marshaler, client AdminServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -47,6 +56,15 @@ func request_AdminService_Ready_0(ctx context.Context, marshaler runtime.Marshal
}
+func local_request_AdminService_Ready_0(ctx context.Context, marshaler runtime.Marshaler, server AdminServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.Ready(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AdminService_Validate_0(ctx context.Context, marshaler runtime.Marshaler, client AdminServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -56,6 +74,15 @@ func request_AdminService_Validate_0(ctx context.Context, marshaler runtime.Mars
}
+func local_request_AdminService_Validate_0(ctx context.Context, marshaler runtime.Marshaler, server AdminServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.Validate(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
var (
filter_AdminService_IsOrgUnique_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)}
)
@@ -64,7 +91,10 @@ func request_AdminService_IsOrgUnique_0(ctx context.Context, marshaler runtime.M
var protoReq UniqueOrgRequest
var metadata runtime.ServerMetadata
- if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_AdminService_IsOrgUnique_0); err != nil {
+ if err := req.ParseForm(); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+ if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_AdminService_IsOrgUnique_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
@@ -73,6 +103,19 @@ func request_AdminService_IsOrgUnique_0(ctx context.Context, marshaler runtime.M
}
+func local_request_AdminService_IsOrgUnique_0(ctx context.Context, marshaler runtime.Marshaler, server AdminServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UniqueOrgRequest
+ var metadata runtime.ServerMetadata
+
+ if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_AdminService_IsOrgUnique_0); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.IsOrgUnique(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AdminService_GetOrgByID_0(ctx context.Context, marshaler runtime.Marshaler, client AdminServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq OrgID
var metadata runtime.ServerMetadata
@@ -100,6 +143,33 @@ func request_AdminService_GetOrgByID_0(ctx context.Context, marshaler runtime.Ma
}
+func local_request_AdminService_GetOrgByID_0(ctx context.Context, marshaler runtime.Marshaler, server AdminServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq OrgID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.GetOrgByID(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AdminService_SearchOrgs_0(ctx context.Context, marshaler runtime.Marshaler, client AdminServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq OrgSearchRequest
var metadata runtime.ServerMetadata
@@ -117,6 +187,23 @@ func request_AdminService_SearchOrgs_0(ctx context.Context, marshaler runtime.Ma
}
+func local_request_AdminService_SearchOrgs_0(ctx context.Context, marshaler runtime.Marshaler, server AdminServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq OrgSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.SearchOrgs(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AdminService_SetUpOrg_0(ctx context.Context, marshaler runtime.Marshaler, client AdminServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq OrgSetUpRequest
var metadata runtime.ServerMetadata
@@ -134,6 +221,23 @@ func request_AdminService_SetUpOrg_0(ctx context.Context, marshaler runtime.Mars
}
+func local_request_AdminService_SetUpOrg_0(ctx context.Context, marshaler runtime.Marshaler, server AdminServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq OrgSetUpRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.SetUpOrg(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AdminService_GetOrgIamPolicy_0(ctx context.Context, marshaler runtime.Marshaler, client AdminServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq OrgIamPolicyID
var metadata runtime.ServerMetadata
@@ -161,6 +265,33 @@ func request_AdminService_GetOrgIamPolicy_0(ctx context.Context, marshaler runti
}
+func local_request_AdminService_GetOrgIamPolicy_0(ctx context.Context, marshaler runtime.Marshaler, server AdminServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq OrgIamPolicyID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["org_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "org_id")
+ }
+
+ protoReq.OrgId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "org_id", err)
+ }
+
+ msg, err := server.GetOrgIamPolicy(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AdminService_CreateOrgIamPolicy_0(ctx context.Context, marshaler runtime.Marshaler, client AdminServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq OrgIamPolicyRequest
var metadata runtime.ServerMetadata
@@ -196,6 +327,41 @@ func request_AdminService_CreateOrgIamPolicy_0(ctx context.Context, marshaler ru
}
+func local_request_AdminService_CreateOrgIamPolicy_0(ctx context.Context, marshaler runtime.Marshaler, server AdminServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq OrgIamPolicyRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["org_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "org_id")
+ }
+
+ protoReq.OrgId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "org_id", err)
+ }
+
+ msg, err := server.CreateOrgIamPolicy(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AdminService_UpdateOrgIamPolicy_0(ctx context.Context, marshaler runtime.Marshaler, client AdminServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq OrgIamPolicyRequest
var metadata runtime.ServerMetadata
@@ -231,6 +397,41 @@ func request_AdminService_UpdateOrgIamPolicy_0(ctx context.Context, marshaler ru
}
+func local_request_AdminService_UpdateOrgIamPolicy_0(ctx context.Context, marshaler runtime.Marshaler, server AdminServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq OrgIamPolicyRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["org_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "org_id")
+ }
+
+ protoReq.OrgId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "org_id", err)
+ }
+
+ msg, err := server.UpdateOrgIamPolicy(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AdminService_DeleteOrgIamPolicy_0(ctx context.Context, marshaler runtime.Marshaler, client AdminServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq OrgIamPolicyID
var metadata runtime.ServerMetadata
@@ -258,6 +459,261 @@ func request_AdminService_DeleteOrgIamPolicy_0(ctx context.Context, marshaler ru
}
+func local_request_AdminService_DeleteOrgIamPolicy_0(ctx context.Context, marshaler runtime.Marshaler, server AdminServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq OrgIamPolicyID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["org_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "org_id")
+ }
+
+ protoReq.OrgId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "org_id", err)
+ }
+
+ msg, err := server.DeleteOrgIamPolicy(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
+// RegisterAdminServiceHandlerServer registers the http handlers for service AdminService to "mux".
+// UnaryRPC :call AdminServiceServer directly.
+// StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.
+func RegisterAdminServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server AdminServiceServer, opts []grpc.DialOption) error {
+
+ mux.Handle("GET", pattern_AdminService_Healthz_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AdminService_Healthz_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AdminService_Healthz_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_AdminService_Ready_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AdminService_Ready_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AdminService_Ready_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_AdminService_Validate_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AdminService_Validate_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AdminService_Validate_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_AdminService_IsOrgUnique_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AdminService_IsOrgUnique_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AdminService_IsOrgUnique_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_AdminService_GetOrgByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AdminService_GetOrgByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AdminService_GetOrgByID_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_AdminService_SearchOrgs_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AdminService_SearchOrgs_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AdminService_SearchOrgs_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_AdminService_SetUpOrg_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AdminService_SetUpOrg_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AdminService_SetUpOrg_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_AdminService_GetOrgIamPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AdminService_GetOrgIamPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AdminService_GetOrgIamPolicy_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_AdminService_CreateOrgIamPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AdminService_CreateOrgIamPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AdminService_CreateOrgIamPolicy_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_AdminService_UpdateOrgIamPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AdminService_UpdateOrgIamPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AdminService_UpdateOrgIamPolicy_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("DELETE", pattern_AdminService_DeleteOrgIamPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AdminService_DeleteOrgIamPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AdminService_DeleteOrgIamPolicy_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ return nil
+}
+
// RegisterAdminServiceHandlerFromEndpoint is same as RegisterAdminServiceHandler but
// automatically dials to "endpoint" and closes the connection when "ctx" gets done.
func RegisterAdminServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error) {
@@ -520,27 +976,27 @@ func RegisterAdminServiceHandlerClient(ctx context.Context, mux *runtime.ServeMu
}
var (
- pattern_AdminService_Healthz_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"healthz"}, ""))
+ pattern_AdminService_Healthz_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"healthz"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AdminService_Ready_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"ready"}, ""))
+ pattern_AdminService_Ready_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"ready"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AdminService_Validate_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"validate"}, ""))
+ pattern_AdminService_Validate_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"validate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AdminService_IsOrgUnique_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"orgs", "_isunique"}, ""))
+ pattern_AdminService_IsOrgUnique_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"orgs", "_isunique"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AdminService_GetOrgByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1}, []string{"orgs", "id"}, ""))
+ pattern_AdminService_GetOrgByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1}, []string{"orgs", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AdminService_SearchOrgs_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"orgs", "_search"}, ""))
+ pattern_AdminService_SearchOrgs_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"orgs", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AdminService_SetUpOrg_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"orgs", "_setup"}, ""))
+ pattern_AdminService_SetUpOrg_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"orgs", "_setup"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AdminService_GetOrgIamPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"orgs", "org_id", "iampolicy"}, ""))
+ pattern_AdminService_GetOrgIamPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"orgs", "org_id", "iampolicy"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AdminService_CreateOrgIamPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"orgs", "org_id", "iampolicy"}, ""))
+ pattern_AdminService_CreateOrgIamPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"orgs", "org_id", "iampolicy"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AdminService_UpdateOrgIamPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"orgs", "org_id", "iampolicy"}, ""))
+ pattern_AdminService_UpdateOrgIamPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"orgs", "org_id", "iampolicy"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AdminService_DeleteOrgIamPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"orgs", "org_id", "iampolicy"}, ""))
+ pattern_AdminService_DeleteOrgIamPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"orgs", "org_id", "iampolicy"}, "", runtime.AssumeColonVerbOpt(true)))
)
var (
diff --git a/pkg/admin/api/grpc/admin.swagger.json b/pkg/admin/api/grpc/admin.swagger.json
index 519d4a9bf1..d3d14f1001 100644
--- a/pkg/admin/api/grpc/admin.swagger.json
+++ b/pkg/admin/api/grpc/admin.swagger.json
@@ -274,7 +274,7 @@
"200": {
"description": "A successful response.",
"schema": {
- "$ref": "#/definitions/protobufStruct"
+ "type": "object"
}
}
},
@@ -285,19 +285,6 @@
}
},
"definitions": {
- "protobufListValue": {
- "type": "object",
- "properties": {
- "values": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/protobufValue"
- },
- "description": "Repeated field of dynamically typed values."
- }
- },
- "description": "`ListValue` is a wrapper around a repeated field of values.\n\nThe JSON representation for `ListValue` is JSON array."
- },
"protobufNullValue": {
"type": "string",
"enum": [
@@ -306,51 +293,6 @@
"default": "NULL_VALUE",
"description": "`NullValue` is a singleton enumeration to represent the null value for the\n`Value` type union.\n\n The JSON representation for `NullValue` is JSON `null`.\n\n - NULL_VALUE: Null value."
},
- "protobufStruct": {
- "type": "object",
- "properties": {
- "fields": {
- "type": "object",
- "additionalProperties": {
- "$ref": "#/definitions/protobufValue"
- },
- "description": "Unordered map of dynamically typed values."
- }
- },
- "description": "`Struct` represents a structured data value, consisting of fields\nwhich map to dynamically typed values. In some languages, `Struct`\nmight be supported by a native representation. For example, in\nscripting languages like JS a struct is represented as an\nobject. The details of that representation are described together\nwith the proto support for the language.\n\nThe JSON representation for `Struct` is JSON object."
- },
- "protobufValue": {
- "type": "object",
- "properties": {
- "null_value": {
- "$ref": "#/definitions/protobufNullValue",
- "description": "Represents a null value."
- },
- "number_value": {
- "type": "number",
- "format": "double",
- "description": "Represents a double value."
- },
- "string_value": {
- "type": "string",
- "description": "Represents a string value."
- },
- "bool_value": {
- "type": "boolean",
- "format": "boolean",
- "description": "Represents a boolean value."
- },
- "struct_value": {
- "$ref": "#/definitions/protobufStruct",
- "description": "Represents a structured value."
- },
- "list_value": {
- "$ref": "#/definitions/protobufListValue",
- "description": "Represents a repeated `Value`."
- }
- },
- "description": "`Value` represents a dynamically typed value which can be either\nnull, a number, a string, a boolean, a recursive struct value, or a\nlist of values. A producer of value is expected to set one of that\nvariants, absence of any variant indicates an error.\n\nThe JSON representation for `Value` is JSON value."
- },
"v1CreateOrgRequest": {
"type": "object",
"properties": {
@@ -377,9 +319,6 @@
"nick_name": {
"type": "string"
},
- "display_name": {
- "type": "string"
- },
"preferred_language": {
"type": "string"
},
diff --git a/pkg/admin/api/grpc/org_converter.go b/pkg/admin/api/grpc/org_converter.go
index 35490b906b..92db7eb2be 100644
--- a/pkg/admin/api/grpc/org_converter.go
+++ b/pkg/admin/api/grpc/org_converter.go
@@ -32,7 +32,6 @@ func userCreateRequestToModel(user *CreateUserRequest) *usr_model.User {
return &usr_model.User{
Profile: &usr_model.Profile{
UserName: user.UserName,
- DisplayName: user.DisplayName,
FirstName: user.FirstName,
LastName: user.LastName,
NickName: user.NickName,
diff --git a/pkg/admin/api/proto/admin.proto b/pkg/admin/api/proto/admin.proto
index affdff7561..1bb794da72 100644
--- a/pkg/admin/api/proto/admin.proto
+++ b/pkg/admin/api/proto/admin.proto
@@ -220,19 +220,18 @@ message CreateUserRequest {
string first_name = 2 [(validate.rules).string = {min_len: 1, max_len: 200}];
string last_name = 3 [(validate.rules).string = {min_len: 1, max_len: 200}];
string nick_name = 4 [(validate.rules).string = {max_len: 200}];
- string display_name = 5 [(validate.rules).string = {max_len: 200}];
- string preferred_language = 6 [(validate.rules).string = {max_len: 200}];
- Gender gender = 7;
- string email = 8 [(validate.rules).string = {min_len: 1, max_len: 200, email: true}];
- bool is_email_verified = 9;
- string phone = 11 [(validate.rules).string = {max_len: 20}];
- bool is_phone_verified = 12;
- string country = 13 [(validate.rules).string = {max_len: 200}];
- string locality = 14 [(validate.rules).string = {max_len: 200}];
- string postal_code = 15 [(validate.rules).string = {max_len: 200}];
- string region = 16 [(validate.rules).string = {max_len: 200}];
- string street_address = 17 [(validate.rules).string = {max_len: 200}];
- string password = 18 [(validate.rules).string = {max_len: 72}];
+ string preferred_language = 5 [(validate.rules).string = {max_len: 200}];
+ Gender gender = 6;
+ string email = 7 [(validate.rules).string = {min_len: 1, max_len: 200, email: true}];
+ bool is_email_verified = 8;
+ string phone = 9 [(validate.rules).string = {max_len: 20}];
+ bool is_phone_verified = 10;
+ string country = 11 [(validate.rules).string = {max_len: 200}];
+ string locality = 12 [(validate.rules).string = {max_len: 200}];
+ string postal_code = 13 [(validate.rules).string = {max_len: 200}];
+ string region = 14 [(validate.rules).string = {max_len: 200}];
+ string street_address = 15 [(validate.rules).string = {max_len: 200}];
+ string password = 16 [(validate.rules).string = {max_len: 72}];
}
message User {
diff --git a/pkg/auth/api/grpc/auth.pb.go b/pkg/auth/api/grpc/auth.pb.go
index 7baf954e22..0906133335 100644
--- a/pkg/auth/api/grpc/auth.pb.go
+++ b/pkg/auth/api/grpc/auth.pb.go
@@ -1,13 +1,11 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
-// versions:
-// protoc-gen-go v1.20.1
-// protoc v3.11.3
// source: auth.proto
package grpc
import (
context "context"
+ fmt "fmt"
_ "github.com/caos/zitadel/internal/protoc/protoc-gen-authoption/authoption"
_ "github.com/envoyproxy/protoc-gen-validate/validate"
proto "github.com/golang/protobuf/proto"
@@ -19,22 +17,19 @@ import (
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
- protoreflect "google.golang.org/protobuf/reflect/protoreflect"
- protoimpl "google.golang.org/protobuf/runtime/protoimpl"
- reflect "reflect"
- sync "sync"
+ math "math"
)
-const (
- // Verify that this generated code is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
- // Verify that runtime/protoimpl is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
-)
+// Reference imports to suppress errors if they are not otherwise used.
+var _ = proto.Marshal
+var _ = fmt.Errorf
+var _ = math.Inf
-// This is a compile-time assertion that a sufficiently up-to-date version
-// of the legacy proto package is being used.
-const _ = proto.ProtoPackageIsVersion4
+// This is a compile-time assertion to ensure that this generated file
+// is compatible with the proto package it is being compiled against.
+// A compilation error at this line likely means your copy of the
+// proto package needs to be updated.
+const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
type UserSessionState int32
@@ -44,45 +39,24 @@ const (
UserSessionState_USERSESSIONSTATE_TERMINATED UserSessionState = 2
)
-// Enum value maps for UserSessionState.
-var (
- UserSessionState_name = map[int32]string{
- 0: "USERSESSIONSTATE_UNSPECIFIED",
- 1: "USERSESSIONSTATE_ACTIVE",
- 2: "USERSESSIONSTATE_TERMINATED",
- }
- UserSessionState_value = map[string]int32{
- "USERSESSIONSTATE_UNSPECIFIED": 0,
- "USERSESSIONSTATE_ACTIVE": 1,
- "USERSESSIONSTATE_TERMINATED": 2,
- }
-)
+var UserSessionState_name = map[int32]string{
+ 0: "USERSESSIONSTATE_UNSPECIFIED",
+ 1: "USERSESSIONSTATE_ACTIVE",
+ 2: "USERSESSIONSTATE_TERMINATED",
+}
-func (x UserSessionState) Enum() *UserSessionState {
- p := new(UserSessionState)
- *p = x
- return p
+var UserSessionState_value = map[string]int32{
+ "USERSESSIONSTATE_UNSPECIFIED": 0,
+ "USERSESSIONSTATE_ACTIVE": 1,
+ "USERSESSIONSTATE_TERMINATED": 2,
}
func (x UserSessionState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(UserSessionState_name, int32(x))
}
-func (UserSessionState) Descriptor() protoreflect.EnumDescriptor {
- return file_auth_proto_enumTypes[0].Descriptor()
-}
-
-func (UserSessionState) Type() protoreflect.EnumType {
- return &file_auth_proto_enumTypes[0]
-}
-
-func (x UserSessionState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use UserSessionState.Descriptor instead.
func (UserSessionState) EnumDescriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{0}
+ return fileDescriptor_8bbd6f3875b0e874, []int{0}
}
type OIDCResponseType int32
@@ -93,45 +67,24 @@ const (
OIDCResponseType_OIDCRESPONSETYPE_ID_TOKEN_TOKEN OIDCResponseType = 2
)
-// Enum value maps for OIDCResponseType.
-var (
- OIDCResponseType_name = map[int32]string{
- 0: "OIDCRESPONSETYPE_CODE",
- 1: "OIDCRESPONSETYPE_ID_TOKEN",
- 2: "OIDCRESPONSETYPE_ID_TOKEN_TOKEN",
- }
- OIDCResponseType_value = map[string]int32{
- "OIDCRESPONSETYPE_CODE": 0,
- "OIDCRESPONSETYPE_ID_TOKEN": 1,
- "OIDCRESPONSETYPE_ID_TOKEN_TOKEN": 2,
- }
-)
+var OIDCResponseType_name = map[int32]string{
+ 0: "OIDCRESPONSETYPE_CODE",
+ 1: "OIDCRESPONSETYPE_ID_TOKEN",
+ 2: "OIDCRESPONSETYPE_ID_TOKEN_TOKEN",
+}
-func (x OIDCResponseType) Enum() *OIDCResponseType {
- p := new(OIDCResponseType)
- *p = x
- return p
+var OIDCResponseType_value = map[string]int32{
+ "OIDCRESPONSETYPE_CODE": 0,
+ "OIDCRESPONSETYPE_ID_TOKEN": 1,
+ "OIDCRESPONSETYPE_ID_TOKEN_TOKEN": 2,
}
func (x OIDCResponseType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OIDCResponseType_name, int32(x))
}
-func (OIDCResponseType) Descriptor() protoreflect.EnumDescriptor {
- return file_auth_proto_enumTypes[1].Descriptor()
-}
-
-func (OIDCResponseType) Type() protoreflect.EnumType {
- return &file_auth_proto_enumTypes[1]
-}
-
-func (x OIDCResponseType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OIDCResponseType.Descriptor instead.
func (OIDCResponseType) EnumDescriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{1}
+ return fileDescriptor_8bbd6f3875b0e874, []int{1}
}
type UserState int32
@@ -146,53 +99,32 @@ const (
UserState_USERSTATE_INITIAL UserState = 6
)
-// Enum value maps for UserState.
-var (
- UserState_name = map[int32]string{
- 0: "USERSTATE_UNSPECIEFIED",
- 1: "USERSTATE_ACTIVE",
- 2: "USERSTATE_INACTIVE",
- 3: "USERSTATE_DELETED",
- 4: "USERSTATE_LOCKED",
- 5: "USERSTATE_SUSPEND",
- 6: "USERSTATE_INITIAL",
- }
- UserState_value = map[string]int32{
- "USERSTATE_UNSPECIEFIED": 0,
- "USERSTATE_ACTIVE": 1,
- "USERSTATE_INACTIVE": 2,
- "USERSTATE_DELETED": 3,
- "USERSTATE_LOCKED": 4,
- "USERSTATE_SUSPEND": 5,
- "USERSTATE_INITIAL": 6,
- }
-)
+var UserState_name = map[int32]string{
+ 0: "USERSTATE_UNSPECIEFIED",
+ 1: "USERSTATE_ACTIVE",
+ 2: "USERSTATE_INACTIVE",
+ 3: "USERSTATE_DELETED",
+ 4: "USERSTATE_LOCKED",
+ 5: "USERSTATE_SUSPEND",
+ 6: "USERSTATE_INITIAL",
+}
-func (x UserState) Enum() *UserState {
- p := new(UserState)
- *p = x
- return p
+var UserState_value = map[string]int32{
+ "USERSTATE_UNSPECIEFIED": 0,
+ "USERSTATE_ACTIVE": 1,
+ "USERSTATE_INACTIVE": 2,
+ "USERSTATE_DELETED": 3,
+ "USERSTATE_LOCKED": 4,
+ "USERSTATE_SUSPEND": 5,
+ "USERSTATE_INITIAL": 6,
}
func (x UserState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(UserState_name, int32(x))
}
-func (UserState) Descriptor() protoreflect.EnumDescriptor {
- return file_auth_proto_enumTypes[2].Descriptor()
-}
-
-func (UserState) Type() protoreflect.EnumType {
- return &file_auth_proto_enumTypes[2]
-}
-
-func (x UserState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use UserState.Descriptor instead.
func (UserState) EnumDescriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{2}
+ return fileDescriptor_8bbd6f3875b0e874, []int{2}
}
type Gender int32
@@ -204,47 +136,26 @@ const (
Gender_GENDER_DIVERSE Gender = 3
)
-// Enum value maps for Gender.
-var (
- Gender_name = map[int32]string{
- 0: "GENDER_UNSPECIFIED",
- 1: "GENDER_FEMALE",
- 2: "GENDER_MALE",
- 3: "GENDER_DIVERSE",
- }
- Gender_value = map[string]int32{
- "GENDER_UNSPECIFIED": 0,
- "GENDER_FEMALE": 1,
- "GENDER_MALE": 2,
- "GENDER_DIVERSE": 3,
- }
-)
+var Gender_name = map[int32]string{
+ 0: "GENDER_UNSPECIFIED",
+ 1: "GENDER_FEMALE",
+ 2: "GENDER_MALE",
+ 3: "GENDER_DIVERSE",
+}
-func (x Gender) Enum() *Gender {
- p := new(Gender)
- *p = x
- return p
+var Gender_value = map[string]int32{
+ "GENDER_UNSPECIFIED": 0,
+ "GENDER_FEMALE": 1,
+ "GENDER_MALE": 2,
+ "GENDER_DIVERSE": 3,
}
func (x Gender) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(Gender_name, int32(x))
}
-func (Gender) Descriptor() protoreflect.EnumDescriptor {
- return file_auth_proto_enumTypes[3].Descriptor()
-}
-
-func (Gender) Type() protoreflect.EnumType {
- return &file_auth_proto_enumTypes[3]
-}
-
-func (x Gender) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use Gender.Descriptor instead.
func (Gender) EnumDescriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{3}
+ return fileDescriptor_8bbd6f3875b0e874, []int{3}
}
type MfaType int32
@@ -255,45 +166,24 @@ const (
MfaType_MFATYPE_OTP MfaType = 2
)
-// Enum value maps for MfaType.
-var (
- MfaType_name = map[int32]string{
- 0: "MFATYPE_UNSPECIFIED",
- 1: "MFATYPE_SMS",
- 2: "MFATYPE_OTP",
- }
- MfaType_value = map[string]int32{
- "MFATYPE_UNSPECIFIED": 0,
- "MFATYPE_SMS": 1,
- "MFATYPE_OTP": 2,
- }
-)
+var MfaType_name = map[int32]string{
+ 0: "MFATYPE_UNSPECIFIED",
+ 1: "MFATYPE_SMS",
+ 2: "MFATYPE_OTP",
+}
-func (x MfaType) Enum() *MfaType {
- p := new(MfaType)
- *p = x
- return p
+var MfaType_value = map[string]int32{
+ "MFATYPE_UNSPECIFIED": 0,
+ "MFATYPE_SMS": 1,
+ "MFATYPE_OTP": 2,
}
func (x MfaType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(MfaType_name, int32(x))
}
-func (MfaType) Descriptor() protoreflect.EnumDescriptor {
- return file_auth_proto_enumTypes[4].Descriptor()
-}
-
-func (MfaType) Type() protoreflect.EnumType {
- return &file_auth_proto_enumTypes[4]
-}
-
-func (x MfaType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use MfaType.Descriptor instead.
func (MfaType) EnumDescriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{4}
+ return fileDescriptor_8bbd6f3875b0e874, []int{4}
}
type MFAState int32
@@ -305,47 +195,26 @@ const (
MFAState_MFASTATE_REMOVED MFAState = 3
)
-// Enum value maps for MFAState.
-var (
- MFAState_name = map[int32]string{
- 0: "MFASTATE_UNSPECIFIED",
- 1: "MFASTATE_NOT_READY",
- 2: "MFASTATE_READY",
- 3: "MFASTATE_REMOVED",
- }
- MFAState_value = map[string]int32{
- "MFASTATE_UNSPECIFIED": 0,
- "MFASTATE_NOT_READY": 1,
- "MFASTATE_READY": 2,
- "MFASTATE_REMOVED": 3,
- }
-)
+var MFAState_name = map[int32]string{
+ 0: "MFASTATE_UNSPECIFIED",
+ 1: "MFASTATE_NOT_READY",
+ 2: "MFASTATE_READY",
+ 3: "MFASTATE_REMOVED",
+}
-func (x MFAState) Enum() *MFAState {
- p := new(MFAState)
- *p = x
- return p
+var MFAState_value = map[string]int32{
+ "MFASTATE_UNSPECIFIED": 0,
+ "MFASTATE_NOT_READY": 1,
+ "MFASTATE_READY": 2,
+ "MFASTATE_REMOVED": 3,
}
func (x MFAState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(MFAState_name, int32(x))
}
-func (MFAState) Descriptor() protoreflect.EnumDescriptor {
- return file_auth_proto_enumTypes[5].Descriptor()
-}
-
-func (MFAState) Type() protoreflect.EnumType {
- return &file_auth_proto_enumTypes[5]
-}
-
-func (x MFAState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use MFAState.Descriptor instead.
func (MFAState) EnumDescriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{5}
+ return fileDescriptor_8bbd6f3875b0e874, []int{5}
}
type UserGrantSearchKey int32
@@ -356,45 +225,24 @@ const (
UserGrantSearchKey_UserGrantSearchKey_PROJECT_ID UserGrantSearchKey = 2
)
-// Enum value maps for UserGrantSearchKey.
-var (
- UserGrantSearchKey_name = map[int32]string{
- 0: "UserGrantSearchKey_UNKNOWN",
- 1: "UserGrantSearchKey_ORG_ID",
- 2: "UserGrantSearchKey_PROJECT_ID",
- }
- UserGrantSearchKey_value = map[string]int32{
- "UserGrantSearchKey_UNKNOWN": 0,
- "UserGrantSearchKey_ORG_ID": 1,
- "UserGrantSearchKey_PROJECT_ID": 2,
- }
-)
+var UserGrantSearchKey_name = map[int32]string{
+ 0: "UserGrantSearchKey_UNKNOWN",
+ 1: "UserGrantSearchKey_ORG_ID",
+ 2: "UserGrantSearchKey_PROJECT_ID",
+}
-func (x UserGrantSearchKey) Enum() *UserGrantSearchKey {
- p := new(UserGrantSearchKey)
- *p = x
- return p
+var UserGrantSearchKey_value = map[string]int32{
+ "UserGrantSearchKey_UNKNOWN": 0,
+ "UserGrantSearchKey_ORG_ID": 1,
+ "UserGrantSearchKey_PROJECT_ID": 2,
}
func (x UserGrantSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(UserGrantSearchKey_name, int32(x))
}
-func (UserGrantSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_auth_proto_enumTypes[6].Descriptor()
-}
-
-func (UserGrantSearchKey) Type() protoreflect.EnumType {
- return &file_auth_proto_enumTypes[6]
-}
-
-func (x UserGrantSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use UserGrantSearchKey.Descriptor instead.
func (UserGrantSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{6}
+ return fileDescriptor_8bbd6f3875b0e874, []int{6}
}
type MyProjectOrgSearchKey int32
@@ -404,43 +252,22 @@ const (
MyProjectOrgSearchKey_MYPROJECTORGSEARCHKEY_ORG_NAME MyProjectOrgSearchKey = 1
)
-// Enum value maps for MyProjectOrgSearchKey.
-var (
- MyProjectOrgSearchKey_name = map[int32]string{
- 0: "MYPROJECTORGSEARCHKEY_UNSPECIFIED",
- 1: "MYPROJECTORGSEARCHKEY_ORG_NAME",
- }
- MyProjectOrgSearchKey_value = map[string]int32{
- "MYPROJECTORGSEARCHKEY_UNSPECIFIED": 0,
- "MYPROJECTORGSEARCHKEY_ORG_NAME": 1,
- }
-)
+var MyProjectOrgSearchKey_name = map[int32]string{
+ 0: "MYPROJECTORGSEARCHKEY_UNSPECIFIED",
+ 1: "MYPROJECTORGSEARCHKEY_ORG_NAME",
+}
-func (x MyProjectOrgSearchKey) Enum() *MyProjectOrgSearchKey {
- p := new(MyProjectOrgSearchKey)
- *p = x
- return p
+var MyProjectOrgSearchKey_value = map[string]int32{
+ "MYPROJECTORGSEARCHKEY_UNSPECIFIED": 0,
+ "MYPROJECTORGSEARCHKEY_ORG_NAME": 1,
}
func (x MyProjectOrgSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(MyProjectOrgSearchKey_name, int32(x))
}
-func (MyProjectOrgSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_auth_proto_enumTypes[7].Descriptor()
-}
-
-func (MyProjectOrgSearchKey) Type() protoreflect.EnumType {
- return &file_auth_proto_enumTypes[7]
-}
-
-func (x MyProjectOrgSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use MyProjectOrgSearchKey.Descriptor instead.
func (MyProjectOrgSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{7}
+ return fileDescriptor_8bbd6f3875b0e874, []int{7}
}
type SearchMethod int32
@@ -454,192 +281,151 @@ const (
SearchMethod_SEARCHMETHOD_CONTAINS_IGNORE_CASE SearchMethod = 5
)
-// Enum value maps for SearchMethod.
-var (
- SearchMethod_name = map[int32]string{
- 0: "SEARCHMETHOD_EQUALS",
- 1: "SEARCHMETHOD_STARTS_WITH",
- 2: "SEARCHMETHOD_CONTAINS",
- 3: "SEARCHMETHOD_EQUALS_IGNORE_CASE",
- 4: "SEARCHMETHOD_STARTS_WITH_IGNORE_CASE",
- 5: "SEARCHMETHOD_CONTAINS_IGNORE_CASE",
- }
- SearchMethod_value = map[string]int32{
- "SEARCHMETHOD_EQUALS": 0,
- "SEARCHMETHOD_STARTS_WITH": 1,
- "SEARCHMETHOD_CONTAINS": 2,
- "SEARCHMETHOD_EQUALS_IGNORE_CASE": 3,
- "SEARCHMETHOD_STARTS_WITH_IGNORE_CASE": 4,
- "SEARCHMETHOD_CONTAINS_IGNORE_CASE": 5,
- }
-)
+var SearchMethod_name = map[int32]string{
+ 0: "SEARCHMETHOD_EQUALS",
+ 1: "SEARCHMETHOD_STARTS_WITH",
+ 2: "SEARCHMETHOD_CONTAINS",
+ 3: "SEARCHMETHOD_EQUALS_IGNORE_CASE",
+ 4: "SEARCHMETHOD_STARTS_WITH_IGNORE_CASE",
+ 5: "SEARCHMETHOD_CONTAINS_IGNORE_CASE",
+}
-func (x SearchMethod) Enum() *SearchMethod {
- p := new(SearchMethod)
- *p = x
- return p
+var SearchMethod_value = map[string]int32{
+ "SEARCHMETHOD_EQUALS": 0,
+ "SEARCHMETHOD_STARTS_WITH": 1,
+ "SEARCHMETHOD_CONTAINS": 2,
+ "SEARCHMETHOD_EQUALS_IGNORE_CASE": 3,
+ "SEARCHMETHOD_STARTS_WITH_IGNORE_CASE": 4,
+ "SEARCHMETHOD_CONTAINS_IGNORE_CASE": 5,
}
func (x SearchMethod) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(SearchMethod_name, int32(x))
}
-func (SearchMethod) Descriptor() protoreflect.EnumDescriptor {
- return file_auth_proto_enumTypes[8].Descriptor()
-}
-
-func (SearchMethod) Type() protoreflect.EnumType {
- return &file_auth_proto_enumTypes[8]
-}
-
-func (x SearchMethod) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use SearchMethod.Descriptor instead.
func (SearchMethod) EnumDescriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{8}
+ return fileDescriptor_8bbd6f3875b0e874, []int{8}
}
type UserSessionViews struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserSessions []*UserSessionView `protobuf:"bytes,1,rep,name=user_sessions,json=userSessions,proto3" json:"user_sessions,omitempty"`
+ UserSessions []*UserSessionView `protobuf:"bytes,1,rep,name=user_sessions,json=userSessions,proto3" json:"user_sessions,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserSessionViews) Reset() {
- *x = UserSessionViews{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[0]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserSessionViews) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserSessionViews) ProtoMessage() {}
-
-func (x *UserSessionViews) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[0]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserSessionViews.ProtoReflect.Descriptor instead.
+func (m *UserSessionViews) Reset() { *m = UserSessionViews{} }
+func (m *UserSessionViews) String() string { return proto.CompactTextString(m) }
+func (*UserSessionViews) ProtoMessage() {}
func (*UserSessionViews) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{0}
+ return fileDescriptor_8bbd6f3875b0e874, []int{0}
}
-func (x *UserSessionViews) GetUserSessions() []*UserSessionView {
- if x != nil {
- return x.UserSessions
+func (m *UserSessionViews) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserSessionViews.Unmarshal(m, b)
+}
+func (m *UserSessionViews) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserSessionViews.Marshal(b, m, deterministic)
+}
+func (m *UserSessionViews) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserSessionViews.Merge(m, src)
+}
+func (m *UserSessionViews) XXX_Size() int {
+ return xxx_messageInfo_UserSessionViews.Size(m)
+}
+func (m *UserSessionViews) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserSessionViews.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserSessionViews proto.InternalMessageInfo
+
+func (m *UserSessionViews) GetUserSessions() []*UserSessionView {
+ if m != nil {
+ return m.UserSessions
}
return nil
}
type UserSessionView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- AgentId string `protobuf:"bytes,2,opt,name=agent_id,json=agentId,proto3" json:"agent_id,omitempty"`
- AuthState UserSessionState `protobuf:"varint,3,opt,name=auth_state,json=authState,proto3,enum=caos.zitadel.auth.api.v1.UserSessionState" json:"auth_state,omitempty"`
- UserId string `protobuf:"bytes,4,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- UserName string `protobuf:"bytes,5,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- Sequence uint64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ AgentId string `protobuf:"bytes,2,opt,name=agent_id,json=agentId,proto3" json:"agent_id,omitempty"`
+ AuthState UserSessionState `protobuf:"varint,3,opt,name=auth_state,json=authState,proto3,enum=caos.zitadel.auth.api.v1.UserSessionState" json:"auth_state,omitempty"`
+ UserId string `protobuf:"bytes,4,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ UserName string `protobuf:"bytes,5,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ Sequence uint64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserSessionView) Reset() {
- *x = UserSessionView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[1]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserSessionView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserSessionView) ProtoMessage() {}
-
-func (x *UserSessionView) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[1]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserSessionView.ProtoReflect.Descriptor instead.
+func (m *UserSessionView) Reset() { *m = UserSessionView{} }
+func (m *UserSessionView) String() string { return proto.CompactTextString(m) }
+func (*UserSessionView) ProtoMessage() {}
func (*UserSessionView) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{1}
+ return fileDescriptor_8bbd6f3875b0e874, []int{1}
}
-func (x *UserSessionView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserSessionView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserSessionView.Unmarshal(m, b)
+}
+func (m *UserSessionView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserSessionView.Marshal(b, m, deterministic)
+}
+func (m *UserSessionView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserSessionView.Merge(m, src)
+}
+func (m *UserSessionView) XXX_Size() int {
+ return xxx_messageInfo_UserSessionView.Size(m)
+}
+func (m *UserSessionView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserSessionView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserSessionView proto.InternalMessageInfo
+
+func (m *UserSessionView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserSessionView) GetAgentId() string {
- if x != nil {
- return x.AgentId
+func (m *UserSessionView) GetAgentId() string {
+ if m != nil {
+ return m.AgentId
}
return ""
}
-func (x *UserSessionView) GetAuthState() UserSessionState {
- if x != nil {
- return x.AuthState
+func (m *UserSessionView) GetAuthState() UserSessionState {
+ if m != nil {
+ return m.AuthState
}
return UserSessionState_USERSESSIONSTATE_UNSPECIFIED
}
-func (x *UserSessionView) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *UserSessionView) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *UserSessionView) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *UserSessionView) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *UserSessionView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserSessionView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type User struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
State UserState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.auth.api.v1.UserState" json:"state,omitempty"`
CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
@@ -667,3854 +453,2479 @@ type User struct {
Sequence uint64 `protobuf:"varint,25,opt,name=sequence,proto3" json:"sequence,omitempty"`
LoginNames []string `protobuf:"bytes,26,rep,name=login_names,json=loginNames,proto3" json:"login_names,omitempty"`
PreferredLoginName string `protobuf:"bytes,27,opt,name=preferred_login_name,json=preferredLoginName,proto3" json:"preferred_login_name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *User) Reset() {
- *x = User{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[2]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *User) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*User) ProtoMessage() {}
-
-func (x *User) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[2]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use User.ProtoReflect.Descriptor instead.
+func (m *User) Reset() { *m = User{} }
+func (m *User) String() string { return proto.CompactTextString(m) }
+func (*User) ProtoMessage() {}
func (*User) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{2}
+ return fileDescriptor_8bbd6f3875b0e874, []int{2}
}
-func (x *User) GetId() string {
- if x != nil {
- return x.Id
+func (m *User) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_User.Unmarshal(m, b)
+}
+func (m *User) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_User.Marshal(b, m, deterministic)
+}
+func (m *User) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_User.Merge(m, src)
+}
+func (m *User) XXX_Size() int {
+ return xxx_messageInfo_User.Size(m)
+}
+func (m *User) XXX_DiscardUnknown() {
+ xxx_messageInfo_User.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_User proto.InternalMessageInfo
+
+func (m *User) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *User) GetState() UserState {
- if x != nil {
- return x.State
+func (m *User) GetState() UserState {
+ if m != nil {
+ return m.State
}
return UserState_USERSTATE_UNSPECIEFIED
}
-func (x *User) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *User) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *User) GetActivationDate() *timestamp.Timestamp {
- if x != nil {
- return x.ActivationDate
+func (m *User) GetActivationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ActivationDate
}
return nil
}
-func (x *User) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *User) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *User) GetLastLogin() *timestamp.Timestamp {
- if x != nil {
- return x.LastLogin
+func (m *User) GetLastLogin() *timestamp.Timestamp {
+ if m != nil {
+ return m.LastLogin
}
return nil
}
-func (x *User) GetPasswordChanged() *timestamp.Timestamp {
- if x != nil {
- return x.PasswordChanged
+func (m *User) GetPasswordChanged() *timestamp.Timestamp {
+ if m != nil {
+ return m.PasswordChanged
}
return nil
}
-func (x *User) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *User) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *User) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *User) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *User) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *User) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *User) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *User) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *User) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *User) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *User) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
+func (m *User) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *User) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *User) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
-func (x *User) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *User) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *User) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
+func (m *User) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
}
return false
}
-func (x *User) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *User) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
-func (x *User) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
+func (m *User) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
}
return false
}
-func (x *User) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *User) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *User) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *User) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *User) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *User) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *User) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *User) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *User) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *User) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
-func (x *User) GetPasswordChangeRequired() bool {
- if x != nil {
- return x.PasswordChangeRequired
+func (m *User) GetPasswordChangeRequired() bool {
+ if m != nil {
+ return m.PasswordChangeRequired
}
return false
}
-func (x *User) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *User) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *User) GetLoginNames() []string {
- if x != nil {
- return x.LoginNames
+func (m *User) GetLoginNames() []string {
+ if m != nil {
+ return m.LoginNames
}
return nil
}
-func (x *User) GetPreferredLoginName() string {
- if x != nil {
- return x.PreferredLoginName
+func (m *User) GetPreferredLoginName() string {
+ if m != nil {
+ return m.PreferredLoginName
}
return ""
}
type UserProfile struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- FirstName string `protobuf:"bytes,3,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,4,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- NickName string `protobuf:"bytes,5,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- DisplayName string `protobuf:"bytes,6,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,7,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,8,opt,name=gender,proto3,enum=caos.zitadel.auth.api.v1.Gender" json:"gender,omitempty"`
- Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,10,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,11,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ FirstName string `protobuf:"bytes,3,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,4,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ NickName string `protobuf:"bytes,5,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ DisplayName string `protobuf:"bytes,6,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,7,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,8,opt,name=gender,proto3,enum=caos.zitadel.auth.api.v1.Gender" json:"gender,omitempty"`
+ Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,10,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,11,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserProfile) Reset() {
- *x = UserProfile{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[3]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserProfile) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserProfile) ProtoMessage() {}
-
-func (x *UserProfile) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[3]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserProfile.ProtoReflect.Descriptor instead.
+func (m *UserProfile) Reset() { *m = UserProfile{} }
+func (m *UserProfile) String() string { return proto.CompactTextString(m) }
+func (*UserProfile) ProtoMessage() {}
func (*UserProfile) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{3}
+ return fileDescriptor_8bbd6f3875b0e874, []int{3}
}
-func (x *UserProfile) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserProfile) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserProfile.Unmarshal(m, b)
+}
+func (m *UserProfile) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserProfile.Marshal(b, m, deterministic)
+}
+func (m *UserProfile) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserProfile.Merge(m, src)
+}
+func (m *UserProfile) XXX_Size() int {
+ return xxx_messageInfo_UserProfile.Size(m)
+}
+func (m *UserProfile) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserProfile.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserProfile proto.InternalMessageInfo
+
+func (m *UserProfile) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserProfile) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *UserProfile) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *UserProfile) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *UserProfile) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *UserProfile) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *UserProfile) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *UserProfile) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *UserProfile) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *UserProfile) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *UserProfile) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *UserProfile) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
+func (m *UserProfile) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *UserProfile) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *UserProfile) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
-func (x *UserProfile) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserProfile) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserProfile) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserProfile) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserProfile) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserProfile) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UserProfileView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- FirstName string `protobuf:"bytes,3,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,4,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- NickName string `protobuf:"bytes,5,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- DisplayName string `protobuf:"bytes,6,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,7,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,8,opt,name=gender,proto3,enum=caos.zitadel.auth.api.v1.Gender" json:"gender,omitempty"`
- Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,10,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,11,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- LoginNames []string `protobuf:"bytes,12,rep,name=login_names,json=loginNames,proto3" json:"login_names,omitempty"`
- PreferredLoginName string `protobuf:"bytes,13,opt,name=preferred_login_name,json=preferredLoginName,proto3" json:"preferred_login_name,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ FirstName string `protobuf:"bytes,3,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,4,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ NickName string `protobuf:"bytes,5,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ DisplayName string `protobuf:"bytes,6,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,7,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,8,opt,name=gender,proto3,enum=caos.zitadel.auth.api.v1.Gender" json:"gender,omitempty"`
+ Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,10,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,11,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ LoginNames []string `protobuf:"bytes,12,rep,name=login_names,json=loginNames,proto3" json:"login_names,omitempty"`
+ PreferredLoginName string `protobuf:"bytes,13,opt,name=preferred_login_name,json=preferredLoginName,proto3" json:"preferred_login_name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserProfileView) Reset() {
- *x = UserProfileView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[4]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserProfileView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserProfileView) ProtoMessage() {}
-
-func (x *UserProfileView) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[4]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserProfileView.ProtoReflect.Descriptor instead.
+func (m *UserProfileView) Reset() { *m = UserProfileView{} }
+func (m *UserProfileView) String() string { return proto.CompactTextString(m) }
+func (*UserProfileView) ProtoMessage() {}
func (*UserProfileView) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{4}
+ return fileDescriptor_8bbd6f3875b0e874, []int{4}
}
-func (x *UserProfileView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserProfileView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserProfileView.Unmarshal(m, b)
+}
+func (m *UserProfileView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserProfileView.Marshal(b, m, deterministic)
+}
+func (m *UserProfileView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserProfileView.Merge(m, src)
+}
+func (m *UserProfileView) XXX_Size() int {
+ return xxx_messageInfo_UserProfileView.Size(m)
+}
+func (m *UserProfileView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserProfileView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserProfileView proto.InternalMessageInfo
+
+func (m *UserProfileView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserProfileView) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *UserProfileView) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *UserProfileView) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *UserProfileView) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *UserProfileView) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *UserProfileView) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *UserProfileView) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *UserProfileView) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *UserProfileView) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *UserProfileView) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *UserProfileView) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
+func (m *UserProfileView) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *UserProfileView) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *UserProfileView) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
-func (x *UserProfileView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserProfileView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserProfileView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserProfileView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserProfileView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserProfileView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *UserProfileView) GetLoginNames() []string {
- if x != nil {
- return x.LoginNames
+func (m *UserProfileView) GetLoginNames() []string {
+ if m != nil {
+ return m.LoginNames
}
return nil
}
-func (x *UserProfileView) GetPreferredLoginName() string {
- if x != nil {
- return x.PreferredLoginName
+func (m *UserProfileView) GetPreferredLoginName() string {
+ if m != nil {
+ return m.PreferredLoginName
}
return ""
}
type UpdateUserProfileRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- FirstName string `protobuf:"bytes,1,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,2,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- NickName string `protobuf:"bytes,3,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- DisplayName string `protobuf:"bytes,4,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,5,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,6,opt,name=gender,proto3,enum=caos.zitadel.auth.api.v1.Gender" json:"gender,omitempty"`
+ FirstName string `protobuf:"bytes,1,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,2,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ NickName string `protobuf:"bytes,3,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,4,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,5,opt,name=gender,proto3,enum=caos.zitadel.auth.api.v1.Gender" json:"gender,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UpdateUserProfileRequest) Reset() {
- *x = UpdateUserProfileRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[5]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UpdateUserProfileRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UpdateUserProfileRequest) ProtoMessage() {}
-
-func (x *UpdateUserProfileRequest) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[5]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UpdateUserProfileRequest.ProtoReflect.Descriptor instead.
+func (m *UpdateUserProfileRequest) Reset() { *m = UpdateUserProfileRequest{} }
+func (m *UpdateUserProfileRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateUserProfileRequest) ProtoMessage() {}
func (*UpdateUserProfileRequest) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{5}
+ return fileDescriptor_8bbd6f3875b0e874, []int{5}
}
-func (x *UpdateUserProfileRequest) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *UpdateUserProfileRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateUserProfileRequest.Unmarshal(m, b)
+}
+func (m *UpdateUserProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateUserProfileRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateUserProfileRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateUserProfileRequest.Merge(m, src)
+}
+func (m *UpdateUserProfileRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateUserProfileRequest.Size(m)
+}
+func (m *UpdateUserProfileRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateUserProfileRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateUserProfileRequest proto.InternalMessageInfo
+
+func (m *UpdateUserProfileRequest) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *UpdateUserProfileRequest) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *UpdateUserProfileRequest) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *UpdateUserProfileRequest) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *UpdateUserProfileRequest) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *UpdateUserProfileRequest) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *UpdateUserProfileRequest) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *UpdateUserProfileRequest) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
- }
- return ""
-}
-
-func (x *UpdateUserProfileRequest) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *UpdateUserProfileRequest) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
type UserEmail struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
- IsEmailVerified bool `protobuf:"varint,3,opt,name=isEmailVerified,proto3" json:"isEmailVerified,omitempty"`
- Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
+ IsEmailVerified bool `protobuf:"varint,3,opt,name=isEmailVerified,proto3" json:"isEmailVerified,omitempty"`
+ Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserEmail) Reset() {
- *x = UserEmail{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[6]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserEmail) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserEmail) ProtoMessage() {}
-
-func (x *UserEmail) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[6]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserEmail.ProtoReflect.Descriptor instead.
+func (m *UserEmail) Reset() { *m = UserEmail{} }
+func (m *UserEmail) String() string { return proto.CompactTextString(m) }
+func (*UserEmail) ProtoMessage() {}
func (*UserEmail) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{6}
+ return fileDescriptor_8bbd6f3875b0e874, []int{6}
}
-func (x *UserEmail) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserEmail) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserEmail.Unmarshal(m, b)
+}
+func (m *UserEmail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserEmail.Marshal(b, m, deterministic)
+}
+func (m *UserEmail) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserEmail.Merge(m, src)
+}
+func (m *UserEmail) XXX_Size() int {
+ return xxx_messageInfo_UserEmail.Size(m)
+}
+func (m *UserEmail) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserEmail.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserEmail proto.InternalMessageInfo
+
+func (m *UserEmail) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserEmail) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *UserEmail) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *UserEmail) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
+func (m *UserEmail) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
}
return false
}
-func (x *UserEmail) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserEmail) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserEmail) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserEmail) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserEmail) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserEmail) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UserEmailView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
- IsEmailVerified bool `protobuf:"varint,3,opt,name=isEmailVerified,proto3" json:"isEmailVerified,omitempty"`
- Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
+ IsEmailVerified bool `protobuf:"varint,3,opt,name=isEmailVerified,proto3" json:"isEmailVerified,omitempty"`
+ Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserEmailView) Reset() {
- *x = UserEmailView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[7]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserEmailView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserEmailView) ProtoMessage() {}
-
-func (x *UserEmailView) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[7]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserEmailView.ProtoReflect.Descriptor instead.
+func (m *UserEmailView) Reset() { *m = UserEmailView{} }
+func (m *UserEmailView) String() string { return proto.CompactTextString(m) }
+func (*UserEmailView) ProtoMessage() {}
func (*UserEmailView) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{7}
+ return fileDescriptor_8bbd6f3875b0e874, []int{7}
}
-func (x *UserEmailView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserEmailView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserEmailView.Unmarshal(m, b)
+}
+func (m *UserEmailView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserEmailView.Marshal(b, m, deterministic)
+}
+func (m *UserEmailView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserEmailView.Merge(m, src)
+}
+func (m *UserEmailView) XXX_Size() int {
+ return xxx_messageInfo_UserEmailView.Size(m)
+}
+func (m *UserEmailView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserEmailView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserEmailView proto.InternalMessageInfo
+
+func (m *UserEmailView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserEmailView) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *UserEmailView) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *UserEmailView) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
+func (m *UserEmailView) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
}
return false
}
-func (x *UserEmailView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserEmailView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserEmailView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserEmailView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserEmailView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserEmailView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type VerifyMyUserEmailRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
+ Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *VerifyMyUserEmailRequest) Reset() {
- *x = VerifyMyUserEmailRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[8]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *VerifyMyUserEmailRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*VerifyMyUserEmailRequest) ProtoMessage() {}
-
-func (x *VerifyMyUserEmailRequest) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[8]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use VerifyMyUserEmailRequest.ProtoReflect.Descriptor instead.
+func (m *VerifyMyUserEmailRequest) Reset() { *m = VerifyMyUserEmailRequest{} }
+func (m *VerifyMyUserEmailRequest) String() string { return proto.CompactTextString(m) }
+func (*VerifyMyUserEmailRequest) ProtoMessage() {}
func (*VerifyMyUserEmailRequest) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{8}
+ return fileDescriptor_8bbd6f3875b0e874, []int{8}
}
-func (x *VerifyMyUserEmailRequest) GetCode() string {
- if x != nil {
- return x.Code
+func (m *VerifyMyUserEmailRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_VerifyMyUserEmailRequest.Unmarshal(m, b)
+}
+func (m *VerifyMyUserEmailRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_VerifyMyUserEmailRequest.Marshal(b, m, deterministic)
+}
+func (m *VerifyMyUserEmailRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_VerifyMyUserEmailRequest.Merge(m, src)
+}
+func (m *VerifyMyUserEmailRequest) XXX_Size() int {
+ return xxx_messageInfo_VerifyMyUserEmailRequest.Size(m)
+}
+func (m *VerifyMyUserEmailRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_VerifyMyUserEmailRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_VerifyMyUserEmailRequest proto.InternalMessageInfo
+
+func (m *VerifyMyUserEmailRequest) GetCode() string {
+ if m != nil {
+ return m.Code
}
return ""
}
type VerifyUserEmailRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *VerifyUserEmailRequest) Reset() {
- *x = VerifyUserEmailRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[9]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *VerifyUserEmailRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*VerifyUserEmailRequest) ProtoMessage() {}
-
-func (x *VerifyUserEmailRequest) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[9]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use VerifyUserEmailRequest.ProtoReflect.Descriptor instead.
+func (m *VerifyUserEmailRequest) Reset() { *m = VerifyUserEmailRequest{} }
+func (m *VerifyUserEmailRequest) String() string { return proto.CompactTextString(m) }
+func (*VerifyUserEmailRequest) ProtoMessage() {}
func (*VerifyUserEmailRequest) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{9}
+ return fileDescriptor_8bbd6f3875b0e874, []int{9}
}
-func (x *VerifyUserEmailRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *VerifyUserEmailRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_VerifyUserEmailRequest.Unmarshal(m, b)
+}
+func (m *VerifyUserEmailRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_VerifyUserEmailRequest.Marshal(b, m, deterministic)
+}
+func (m *VerifyUserEmailRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_VerifyUserEmailRequest.Merge(m, src)
+}
+func (m *VerifyUserEmailRequest) XXX_Size() int {
+ return xxx_messageInfo_VerifyUserEmailRequest.Size(m)
+}
+func (m *VerifyUserEmailRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_VerifyUserEmailRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_VerifyUserEmailRequest proto.InternalMessageInfo
+
+func (m *VerifyUserEmailRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *VerifyUserEmailRequest) GetCode() string {
- if x != nil {
- return x.Code
+func (m *VerifyUserEmailRequest) GetCode() string {
+ if m != nil {
+ return m.Code
}
return ""
}
type UpdateUserEmailRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
+ Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UpdateUserEmailRequest) Reset() {
- *x = UpdateUserEmailRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[10]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UpdateUserEmailRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UpdateUserEmailRequest) ProtoMessage() {}
-
-func (x *UpdateUserEmailRequest) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[10]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UpdateUserEmailRequest.ProtoReflect.Descriptor instead.
+func (m *UpdateUserEmailRequest) Reset() { *m = UpdateUserEmailRequest{} }
+func (m *UpdateUserEmailRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateUserEmailRequest) ProtoMessage() {}
func (*UpdateUserEmailRequest) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{10}
+ return fileDescriptor_8bbd6f3875b0e874, []int{10}
}
-func (x *UpdateUserEmailRequest) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *UpdateUserEmailRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateUserEmailRequest.Unmarshal(m, b)
+}
+func (m *UpdateUserEmailRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateUserEmailRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateUserEmailRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateUserEmailRequest.Merge(m, src)
+}
+func (m *UpdateUserEmailRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateUserEmailRequest.Size(m)
+}
+func (m *UpdateUserEmailRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateUserEmailRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateUserEmailRequest proto.InternalMessageInfo
+
+func (m *UpdateUserEmailRequest) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
type UserPhone struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
- IsPhoneVerified bool `protobuf:"varint,3,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
- Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
+ IsPhoneVerified bool `protobuf:"varint,3,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserPhone) Reset() {
- *x = UserPhone{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[11]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserPhone) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserPhone) ProtoMessage() {}
-
-func (x *UserPhone) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[11]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserPhone.ProtoReflect.Descriptor instead.
+func (m *UserPhone) Reset() { *m = UserPhone{} }
+func (m *UserPhone) String() string { return proto.CompactTextString(m) }
+func (*UserPhone) ProtoMessage() {}
func (*UserPhone) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{11}
+ return fileDescriptor_8bbd6f3875b0e874, []int{11}
}
-func (x *UserPhone) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserPhone) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserPhone.Unmarshal(m, b)
+}
+func (m *UserPhone) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserPhone.Marshal(b, m, deterministic)
+}
+func (m *UserPhone) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserPhone.Merge(m, src)
+}
+func (m *UserPhone) XXX_Size() int {
+ return xxx_messageInfo_UserPhone.Size(m)
+}
+func (m *UserPhone) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserPhone.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserPhone proto.InternalMessageInfo
+
+func (m *UserPhone) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserPhone) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *UserPhone) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
-func (x *UserPhone) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
+func (m *UserPhone) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
}
return false
}
-func (x *UserPhone) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserPhone) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserPhone) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserPhone) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserPhone) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserPhone) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UserPhoneView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
- IsPhoneVerified bool `protobuf:"varint,3,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
- Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
+ IsPhoneVerified bool `protobuf:"varint,3,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserPhoneView) Reset() {
- *x = UserPhoneView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[12]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserPhoneView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserPhoneView) ProtoMessage() {}
-
-func (x *UserPhoneView) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[12]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserPhoneView.ProtoReflect.Descriptor instead.
+func (m *UserPhoneView) Reset() { *m = UserPhoneView{} }
+func (m *UserPhoneView) String() string { return proto.CompactTextString(m) }
+func (*UserPhoneView) ProtoMessage() {}
func (*UserPhoneView) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{12}
+ return fileDescriptor_8bbd6f3875b0e874, []int{12}
}
-func (x *UserPhoneView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserPhoneView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserPhoneView.Unmarshal(m, b)
+}
+func (m *UserPhoneView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserPhoneView.Marshal(b, m, deterministic)
+}
+func (m *UserPhoneView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserPhoneView.Merge(m, src)
+}
+func (m *UserPhoneView) XXX_Size() int {
+ return xxx_messageInfo_UserPhoneView.Size(m)
+}
+func (m *UserPhoneView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserPhoneView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserPhoneView proto.InternalMessageInfo
+
+func (m *UserPhoneView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserPhoneView) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *UserPhoneView) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
-func (x *UserPhoneView) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
+func (m *UserPhoneView) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
}
return false
}
-func (x *UserPhoneView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserPhoneView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserPhoneView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserPhoneView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserPhoneView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserPhoneView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UpdateUserPhoneRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone,omitempty"`
+ Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UpdateUserPhoneRequest) Reset() {
- *x = UpdateUserPhoneRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[13]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UpdateUserPhoneRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UpdateUserPhoneRequest) ProtoMessage() {}
-
-func (x *UpdateUserPhoneRequest) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[13]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UpdateUserPhoneRequest.ProtoReflect.Descriptor instead.
+func (m *UpdateUserPhoneRequest) Reset() { *m = UpdateUserPhoneRequest{} }
+func (m *UpdateUserPhoneRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateUserPhoneRequest) ProtoMessage() {}
func (*UpdateUserPhoneRequest) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{13}
+ return fileDescriptor_8bbd6f3875b0e874, []int{13}
}
-func (x *UpdateUserPhoneRequest) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *UpdateUserPhoneRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateUserPhoneRequest.Unmarshal(m, b)
+}
+func (m *UpdateUserPhoneRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateUserPhoneRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateUserPhoneRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateUserPhoneRequest.Merge(m, src)
+}
+func (m *UpdateUserPhoneRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateUserPhoneRequest.Size(m)
+}
+func (m *UpdateUserPhoneRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateUserPhoneRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateUserPhoneRequest proto.InternalMessageInfo
+
+func (m *UpdateUserPhoneRequest) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
type VerifyUserPhoneRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
+ Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *VerifyUserPhoneRequest) Reset() {
- *x = VerifyUserPhoneRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[14]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *VerifyUserPhoneRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*VerifyUserPhoneRequest) ProtoMessage() {}
-
-func (x *VerifyUserPhoneRequest) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[14]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use VerifyUserPhoneRequest.ProtoReflect.Descriptor instead.
+func (m *VerifyUserPhoneRequest) Reset() { *m = VerifyUserPhoneRequest{} }
+func (m *VerifyUserPhoneRequest) String() string { return proto.CompactTextString(m) }
+func (*VerifyUserPhoneRequest) ProtoMessage() {}
func (*VerifyUserPhoneRequest) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{14}
+ return fileDescriptor_8bbd6f3875b0e874, []int{14}
}
-func (x *VerifyUserPhoneRequest) GetCode() string {
- if x != nil {
- return x.Code
+func (m *VerifyUserPhoneRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_VerifyUserPhoneRequest.Unmarshal(m, b)
+}
+func (m *VerifyUserPhoneRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_VerifyUserPhoneRequest.Marshal(b, m, deterministic)
+}
+func (m *VerifyUserPhoneRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_VerifyUserPhoneRequest.Merge(m, src)
+}
+func (m *VerifyUserPhoneRequest) XXX_Size() int {
+ return xxx_messageInfo_VerifyUserPhoneRequest.Size(m)
+}
+func (m *VerifyUserPhoneRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_VerifyUserPhoneRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_VerifyUserPhoneRequest proto.InternalMessageInfo
+
+func (m *VerifyUserPhoneRequest) GetCode() string {
+ if m != nil {
+ return m.Code
}
return ""
}
type UserAddress struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Country string `protobuf:"bytes,2,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,4,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,6,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
- Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Country string `protobuf:"bytes,2,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,4,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,6,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserAddress) Reset() {
- *x = UserAddress{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[15]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserAddress) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserAddress) ProtoMessage() {}
-
-func (x *UserAddress) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[15]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserAddress.ProtoReflect.Descriptor instead.
+func (m *UserAddress) Reset() { *m = UserAddress{} }
+func (m *UserAddress) String() string { return proto.CompactTextString(m) }
+func (*UserAddress) ProtoMessage() {}
func (*UserAddress) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{15}
+ return fileDescriptor_8bbd6f3875b0e874, []int{15}
}
-func (x *UserAddress) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserAddress) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserAddress.Unmarshal(m, b)
+}
+func (m *UserAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserAddress.Marshal(b, m, deterministic)
+}
+func (m *UserAddress) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserAddress.Merge(m, src)
+}
+func (m *UserAddress) XXX_Size() int {
+ return xxx_messageInfo_UserAddress.Size(m)
+}
+func (m *UserAddress) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserAddress.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserAddress proto.InternalMessageInfo
+
+func (m *UserAddress) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserAddress) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *UserAddress) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *UserAddress) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *UserAddress) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *UserAddress) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *UserAddress) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *UserAddress) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *UserAddress) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *UserAddress) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *UserAddress) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
-func (x *UserAddress) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserAddress) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserAddress) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserAddress) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserAddress) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserAddress) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UserAddressView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Country string `protobuf:"bytes,2,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,4,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,6,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
- Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Country string `protobuf:"bytes,2,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,4,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,6,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserAddressView) Reset() {
- *x = UserAddressView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[16]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserAddressView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserAddressView) ProtoMessage() {}
-
-func (x *UserAddressView) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[16]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserAddressView.ProtoReflect.Descriptor instead.
+func (m *UserAddressView) Reset() { *m = UserAddressView{} }
+func (m *UserAddressView) String() string { return proto.CompactTextString(m) }
+func (*UserAddressView) ProtoMessage() {}
func (*UserAddressView) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{16}
+ return fileDescriptor_8bbd6f3875b0e874, []int{16}
}
-func (x *UserAddressView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserAddressView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserAddressView.Unmarshal(m, b)
+}
+func (m *UserAddressView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserAddressView.Marshal(b, m, deterministic)
+}
+func (m *UserAddressView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserAddressView.Merge(m, src)
+}
+func (m *UserAddressView) XXX_Size() int {
+ return xxx_messageInfo_UserAddressView.Size(m)
+}
+func (m *UserAddressView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserAddressView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserAddressView proto.InternalMessageInfo
+
+func (m *UserAddressView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserAddressView) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *UserAddressView) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *UserAddressView) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *UserAddressView) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *UserAddressView) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *UserAddressView) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *UserAddressView) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *UserAddressView) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *UserAddressView) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *UserAddressView) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
-func (x *UserAddressView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserAddressView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserAddressView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserAddressView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserAddressView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserAddressView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UpdateUserAddressRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Country string `protobuf:"bytes,1,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,2,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,3,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,4,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,5,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ Country string `protobuf:"bytes,1,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,2,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,3,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,4,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,5,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UpdateUserAddressRequest) Reset() {
- *x = UpdateUserAddressRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[17]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UpdateUserAddressRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UpdateUserAddressRequest) ProtoMessage() {}
-
-func (x *UpdateUserAddressRequest) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[17]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UpdateUserAddressRequest.ProtoReflect.Descriptor instead.
+func (m *UpdateUserAddressRequest) Reset() { *m = UpdateUserAddressRequest{} }
+func (m *UpdateUserAddressRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateUserAddressRequest) ProtoMessage() {}
func (*UpdateUserAddressRequest) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{17}
+ return fileDescriptor_8bbd6f3875b0e874, []int{17}
}
-func (x *UpdateUserAddressRequest) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *UpdateUserAddressRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateUserAddressRequest.Unmarshal(m, b)
+}
+func (m *UpdateUserAddressRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateUserAddressRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateUserAddressRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateUserAddressRequest.Merge(m, src)
+}
+func (m *UpdateUserAddressRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateUserAddressRequest.Size(m)
+}
+func (m *UpdateUserAddressRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateUserAddressRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateUserAddressRequest proto.InternalMessageInfo
+
+func (m *UpdateUserAddressRequest) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *UpdateUserAddressRequest) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *UpdateUserAddressRequest) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *UpdateUserAddressRequest) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *UpdateUserAddressRequest) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *UpdateUserAddressRequest) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *UpdateUserAddressRequest) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *UpdateUserAddressRequest) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *UpdateUserAddressRequest) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
type PasswordID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordID) Reset() {
- *x = PasswordID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[18]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordID) ProtoMessage() {}
-
-func (x *PasswordID) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[18]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordID.ProtoReflect.Descriptor instead.
+func (m *PasswordID) Reset() { *m = PasswordID{} }
+func (m *PasswordID) String() string { return proto.CompactTextString(m) }
+func (*PasswordID) ProtoMessage() {}
func (*PasswordID) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{18}
+ return fileDescriptor_8bbd6f3875b0e874, []int{18}
}
-func (x *PasswordID) GetId() string {
- if x != nil {
- return x.Id
+func (m *PasswordID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordID.Unmarshal(m, b)
+}
+func (m *PasswordID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordID.Marshal(b, m, deterministic)
+}
+func (m *PasswordID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordID.Merge(m, src)
+}
+func (m *PasswordID) XXX_Size() int {
+ return xxx_messageInfo_PasswordID.Size(m)
+}
+func (m *PasswordID) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordID proto.InternalMessageInfo
+
+func (m *PasswordID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type PasswordRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Password string `protobuf:"bytes,1,opt,name=password,proto3" json:"password,omitempty"`
+ Password string `protobuf:"bytes,1,opt,name=password,proto3" json:"password,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordRequest) Reset() {
- *x = PasswordRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[19]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordRequest) ProtoMessage() {}
-
-func (x *PasswordRequest) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[19]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordRequest.ProtoReflect.Descriptor instead.
+func (m *PasswordRequest) Reset() { *m = PasswordRequest{} }
+func (m *PasswordRequest) String() string { return proto.CompactTextString(m) }
+func (*PasswordRequest) ProtoMessage() {}
func (*PasswordRequest) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{19}
+ return fileDescriptor_8bbd6f3875b0e874, []int{19}
}
-func (x *PasswordRequest) GetPassword() string {
- if x != nil {
- return x.Password
+func (m *PasswordRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordRequest.Unmarshal(m, b)
+}
+func (m *PasswordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordRequest.Marshal(b, m, deterministic)
+}
+func (m *PasswordRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordRequest.Merge(m, src)
+}
+func (m *PasswordRequest) XXX_Size() int {
+ return xxx_messageInfo_PasswordRequest.Size(m)
+}
+func (m *PasswordRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordRequest proto.InternalMessageInfo
+
+func (m *PasswordRequest) GetPassword() string {
+ if m != nil {
+ return m.Password
}
return ""
}
type PasswordChange struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- OldPassword string `protobuf:"bytes,1,opt,name=old_password,json=oldPassword,proto3" json:"old_password,omitempty"`
- NewPassword string `protobuf:"bytes,2,opt,name=new_password,json=newPassword,proto3" json:"new_password,omitempty"`
+ OldPassword string `protobuf:"bytes,1,opt,name=old_password,json=oldPassword,proto3" json:"old_password,omitempty"`
+ NewPassword string `protobuf:"bytes,2,opt,name=new_password,json=newPassword,proto3" json:"new_password,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordChange) Reset() {
- *x = PasswordChange{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[20]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordChange) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordChange) ProtoMessage() {}
-
-func (x *PasswordChange) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[20]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordChange.ProtoReflect.Descriptor instead.
+func (m *PasswordChange) Reset() { *m = PasswordChange{} }
+func (m *PasswordChange) String() string { return proto.CompactTextString(m) }
+func (*PasswordChange) ProtoMessage() {}
func (*PasswordChange) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{20}
+ return fileDescriptor_8bbd6f3875b0e874, []int{20}
}
-func (x *PasswordChange) GetOldPassword() string {
- if x != nil {
- return x.OldPassword
+func (m *PasswordChange) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordChange.Unmarshal(m, b)
+}
+func (m *PasswordChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordChange.Marshal(b, m, deterministic)
+}
+func (m *PasswordChange) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordChange.Merge(m, src)
+}
+func (m *PasswordChange) XXX_Size() int {
+ return xxx_messageInfo_PasswordChange.Size(m)
+}
+func (m *PasswordChange) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordChange.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordChange proto.InternalMessageInfo
+
+func (m *PasswordChange) GetOldPassword() string {
+ if m != nil {
+ return m.OldPassword
}
return ""
}
-func (x *PasswordChange) GetNewPassword() string {
- if x != nil {
- return x.NewPassword
+func (m *PasswordChange) GetNewPassword() string {
+ if m != nil {
+ return m.NewPassword
}
return ""
}
type VerifyMfaOtp struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
+ Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *VerifyMfaOtp) Reset() {
- *x = VerifyMfaOtp{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[21]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *VerifyMfaOtp) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*VerifyMfaOtp) ProtoMessage() {}
-
-func (x *VerifyMfaOtp) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[21]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use VerifyMfaOtp.ProtoReflect.Descriptor instead.
+func (m *VerifyMfaOtp) Reset() { *m = VerifyMfaOtp{} }
+func (m *VerifyMfaOtp) String() string { return proto.CompactTextString(m) }
+func (*VerifyMfaOtp) ProtoMessage() {}
func (*VerifyMfaOtp) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{21}
+ return fileDescriptor_8bbd6f3875b0e874, []int{21}
}
-func (x *VerifyMfaOtp) GetCode() string {
- if x != nil {
- return x.Code
+func (m *VerifyMfaOtp) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_VerifyMfaOtp.Unmarshal(m, b)
+}
+func (m *VerifyMfaOtp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_VerifyMfaOtp.Marshal(b, m, deterministic)
+}
+func (m *VerifyMfaOtp) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_VerifyMfaOtp.Merge(m, src)
+}
+func (m *VerifyMfaOtp) XXX_Size() int {
+ return xxx_messageInfo_VerifyMfaOtp.Size(m)
+}
+func (m *VerifyMfaOtp) XXX_DiscardUnknown() {
+ xxx_messageInfo_VerifyMfaOtp.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_VerifyMfaOtp proto.InternalMessageInfo
+
+func (m *VerifyMfaOtp) GetCode() string {
+ if m != nil {
+ return m.Code
}
return ""
}
type MultiFactors struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Mfas []*MultiFactor `protobuf:"bytes,1,rep,name=mfas,proto3" json:"mfas,omitempty"`
+ Mfas []*MultiFactor `protobuf:"bytes,1,rep,name=mfas,proto3" json:"mfas,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MultiFactors) Reset() {
- *x = MultiFactors{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[22]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MultiFactors) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MultiFactors) ProtoMessage() {}
-
-func (x *MultiFactors) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[22]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use MultiFactors.ProtoReflect.Descriptor instead.
+func (m *MultiFactors) Reset() { *m = MultiFactors{} }
+func (m *MultiFactors) String() string { return proto.CompactTextString(m) }
+func (*MultiFactors) ProtoMessage() {}
func (*MultiFactors) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{22}
+ return fileDescriptor_8bbd6f3875b0e874, []int{22}
}
-func (x *MultiFactors) GetMfas() []*MultiFactor {
- if x != nil {
- return x.Mfas
+func (m *MultiFactors) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MultiFactors.Unmarshal(m, b)
+}
+func (m *MultiFactors) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MultiFactors.Marshal(b, m, deterministic)
+}
+func (m *MultiFactors) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MultiFactors.Merge(m, src)
+}
+func (m *MultiFactors) XXX_Size() int {
+ return xxx_messageInfo_MultiFactors.Size(m)
+}
+func (m *MultiFactors) XXX_DiscardUnknown() {
+ xxx_messageInfo_MultiFactors.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MultiFactors proto.InternalMessageInfo
+
+func (m *MultiFactors) GetMfas() []*MultiFactor {
+ if m != nil {
+ return m.Mfas
}
return nil
}
type MultiFactor struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Type MfaType `protobuf:"varint,1,opt,name=type,proto3,enum=caos.zitadel.auth.api.v1.MfaType" json:"type,omitempty"`
- State MFAState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.auth.api.v1.MFAState" json:"state,omitempty"`
+ Type MfaType `protobuf:"varint,1,opt,name=type,proto3,enum=caos.zitadel.auth.api.v1.MfaType" json:"type,omitempty"`
+ State MFAState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.auth.api.v1.MFAState" json:"state,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MultiFactor) Reset() {
- *x = MultiFactor{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[23]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MultiFactor) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MultiFactor) ProtoMessage() {}
-
-func (x *MultiFactor) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[23]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use MultiFactor.ProtoReflect.Descriptor instead.
+func (m *MultiFactor) Reset() { *m = MultiFactor{} }
+func (m *MultiFactor) String() string { return proto.CompactTextString(m) }
+func (*MultiFactor) ProtoMessage() {}
func (*MultiFactor) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{23}
+ return fileDescriptor_8bbd6f3875b0e874, []int{23}
}
-func (x *MultiFactor) GetType() MfaType {
- if x != nil {
- return x.Type
+func (m *MultiFactor) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MultiFactor.Unmarshal(m, b)
+}
+func (m *MultiFactor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MultiFactor.Marshal(b, m, deterministic)
+}
+func (m *MultiFactor) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MultiFactor.Merge(m, src)
+}
+func (m *MultiFactor) XXX_Size() int {
+ return xxx_messageInfo_MultiFactor.Size(m)
+}
+func (m *MultiFactor) XXX_DiscardUnknown() {
+ xxx_messageInfo_MultiFactor.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MultiFactor proto.InternalMessageInfo
+
+func (m *MultiFactor) GetType() MfaType {
+ if m != nil {
+ return m.Type
}
return MfaType_MFATYPE_UNSPECIFIED
}
-func (x *MultiFactor) GetState() MFAState {
- if x != nil {
- return x.State
+func (m *MultiFactor) GetState() MFAState {
+ if m != nil {
+ return m.State
}
return MFAState_MFASTATE_UNSPECIFIED
}
type MfaOtpResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
- Secret string `protobuf:"bytes,3,opt,name=secret,proto3" json:"secret,omitempty"`
- State MFAState `protobuf:"varint,4,opt,name=state,proto3,enum=caos.zitadel.auth.api.v1.MFAState" json:"state,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
+ Secret string `protobuf:"bytes,3,opt,name=secret,proto3" json:"secret,omitempty"`
+ State MFAState `protobuf:"varint,4,opt,name=state,proto3,enum=caos.zitadel.auth.api.v1.MFAState" json:"state,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MfaOtpResponse) Reset() {
- *x = MfaOtpResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[24]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MfaOtpResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MfaOtpResponse) ProtoMessage() {}
-
-func (x *MfaOtpResponse) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[24]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use MfaOtpResponse.ProtoReflect.Descriptor instead.
+func (m *MfaOtpResponse) Reset() { *m = MfaOtpResponse{} }
+func (m *MfaOtpResponse) String() string { return proto.CompactTextString(m) }
+func (*MfaOtpResponse) ProtoMessage() {}
func (*MfaOtpResponse) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{24}
+ return fileDescriptor_8bbd6f3875b0e874, []int{24}
}
-func (x *MfaOtpResponse) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *MfaOtpResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MfaOtpResponse.Unmarshal(m, b)
+}
+func (m *MfaOtpResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MfaOtpResponse.Marshal(b, m, deterministic)
+}
+func (m *MfaOtpResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MfaOtpResponse.Merge(m, src)
+}
+func (m *MfaOtpResponse) XXX_Size() int {
+ return xxx_messageInfo_MfaOtpResponse.Size(m)
+}
+func (m *MfaOtpResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_MfaOtpResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MfaOtpResponse proto.InternalMessageInfo
+
+func (m *MfaOtpResponse) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *MfaOtpResponse) GetUrl() string {
- if x != nil {
- return x.Url
+func (m *MfaOtpResponse) GetUrl() string {
+ if m != nil {
+ return m.Url
}
return ""
}
-func (x *MfaOtpResponse) GetSecret() string {
- if x != nil {
- return x.Secret
+func (m *MfaOtpResponse) GetSecret() string {
+ if m != nil {
+ return m.Secret
}
return ""
}
-func (x *MfaOtpResponse) GetState() MFAState {
- if x != nil {
- return x.State
+func (m *MfaOtpResponse) GetState() MFAState {
+ if m != nil {
+ return m.State
}
return MFAState_MFASTATE_UNSPECIFIED
}
type OIDCClientAuth struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
- ClientSecret string `protobuf:"bytes,2,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
+ ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
+ ClientSecret string `protobuf:"bytes,2,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OIDCClientAuth) Reset() {
- *x = OIDCClientAuth{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[25]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OIDCClientAuth) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OIDCClientAuth) ProtoMessage() {}
-
-func (x *OIDCClientAuth) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[25]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OIDCClientAuth.ProtoReflect.Descriptor instead.
+func (m *OIDCClientAuth) Reset() { *m = OIDCClientAuth{} }
+func (m *OIDCClientAuth) String() string { return proto.CompactTextString(m) }
+func (*OIDCClientAuth) ProtoMessage() {}
func (*OIDCClientAuth) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{25}
+ return fileDescriptor_8bbd6f3875b0e874, []int{25}
}
-func (x *OIDCClientAuth) GetClientId() string {
- if x != nil {
- return x.ClientId
+func (m *OIDCClientAuth) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OIDCClientAuth.Unmarshal(m, b)
+}
+func (m *OIDCClientAuth) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OIDCClientAuth.Marshal(b, m, deterministic)
+}
+func (m *OIDCClientAuth) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OIDCClientAuth.Merge(m, src)
+}
+func (m *OIDCClientAuth) XXX_Size() int {
+ return xxx_messageInfo_OIDCClientAuth.Size(m)
+}
+func (m *OIDCClientAuth) XXX_DiscardUnknown() {
+ xxx_messageInfo_OIDCClientAuth.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OIDCClientAuth proto.InternalMessageInfo
+
+func (m *OIDCClientAuth) GetClientId() string {
+ if m != nil {
+ return m.ClientId
}
return ""
}
-func (x *OIDCClientAuth) GetClientSecret() string {
- if x != nil {
- return x.ClientSecret
+func (m *OIDCClientAuth) GetClientSecret() string {
+ if m != nil {
+ return m.ClientSecret
}
return ""
}
type UserGrantSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- SortingColumn UserGrantSearchKey `protobuf:"varint,3,opt,name=sorting_column,json=sortingColumn,proto3,enum=caos.zitadel.auth.api.v1.UserGrantSearchKey" json:"sorting_column,omitempty"`
- Asc bool `protobuf:"varint,4,opt,name=asc,proto3" json:"asc,omitempty"`
- Queries []*UserGrantSearchQuery `protobuf:"bytes,5,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ SortingColumn UserGrantSearchKey `protobuf:"varint,3,opt,name=sorting_column,json=sortingColumn,proto3,enum=caos.zitadel.auth.api.v1.UserGrantSearchKey" json:"sorting_column,omitempty"`
+ Asc bool `protobuf:"varint,4,opt,name=asc,proto3" json:"asc,omitempty"`
+ Queries []*UserGrantSearchQuery `protobuf:"bytes,5,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantSearchRequest) Reset() {
- *x = UserGrantSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[26]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantSearchRequest) ProtoMessage() {}
-
-func (x *UserGrantSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[26]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserGrantSearchRequest.ProtoReflect.Descriptor instead.
+func (m *UserGrantSearchRequest) Reset() { *m = UserGrantSearchRequest{} }
+func (m *UserGrantSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*UserGrantSearchRequest) ProtoMessage() {}
func (*UserGrantSearchRequest) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{26}
+ return fileDescriptor_8bbd6f3875b0e874, []int{26}
}
-func (x *UserGrantSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *UserGrantSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantSearchRequest.Unmarshal(m, b)
+}
+func (m *UserGrantSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *UserGrantSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantSearchRequest.Merge(m, src)
+}
+func (m *UserGrantSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_UserGrantSearchRequest.Size(m)
+}
+func (m *UserGrantSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantSearchRequest proto.InternalMessageInfo
+
+func (m *UserGrantSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *UserGrantSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *UserGrantSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *UserGrantSearchRequest) GetSortingColumn() UserGrantSearchKey {
- if x != nil {
- return x.SortingColumn
+func (m *UserGrantSearchRequest) GetSortingColumn() UserGrantSearchKey {
+ if m != nil {
+ return m.SortingColumn
}
return UserGrantSearchKey_UserGrantSearchKey_UNKNOWN
}
-func (x *UserGrantSearchRequest) GetAsc() bool {
- if x != nil {
- return x.Asc
+func (m *UserGrantSearchRequest) GetAsc() bool {
+ if m != nil {
+ return m.Asc
}
return false
}
-func (x *UserGrantSearchRequest) GetQueries() []*UserGrantSearchQuery {
- if x != nil {
- return x.Queries
+func (m *UserGrantSearchRequest) GetQueries() []*UserGrantSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type UserGrantSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key UserGrantSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.auth.api.v1.UserGrantSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.auth.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key UserGrantSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.auth.api.v1.UserGrantSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.auth.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantSearchQuery) Reset() {
- *x = UserGrantSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[27]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantSearchQuery) ProtoMessage() {}
-
-func (x *UserGrantSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[27]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserGrantSearchQuery.ProtoReflect.Descriptor instead.
+func (m *UserGrantSearchQuery) Reset() { *m = UserGrantSearchQuery{} }
+func (m *UserGrantSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*UserGrantSearchQuery) ProtoMessage() {}
func (*UserGrantSearchQuery) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{27}
+ return fileDescriptor_8bbd6f3875b0e874, []int{27}
}
-func (x *UserGrantSearchQuery) GetKey() UserGrantSearchKey {
- if x != nil {
- return x.Key
+func (m *UserGrantSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantSearchQuery.Unmarshal(m, b)
+}
+func (m *UserGrantSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *UserGrantSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantSearchQuery.Merge(m, src)
+}
+func (m *UserGrantSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_UserGrantSearchQuery.Size(m)
+}
+func (m *UserGrantSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantSearchQuery proto.InternalMessageInfo
+
+func (m *UserGrantSearchQuery) GetKey() UserGrantSearchKey {
+ if m != nil {
+ return m.Key
}
return UserGrantSearchKey_UserGrantSearchKey_UNKNOWN
}
-func (x *UserGrantSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *UserGrantSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *UserGrantSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *UserGrantSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type UserGrantSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*UserGrantView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*UserGrantView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantSearchResponse) Reset() {
- *x = UserGrantSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[28]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantSearchResponse) ProtoMessage() {}
-
-func (x *UserGrantSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[28]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserGrantSearchResponse.ProtoReflect.Descriptor instead.
+func (m *UserGrantSearchResponse) Reset() { *m = UserGrantSearchResponse{} }
+func (m *UserGrantSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*UserGrantSearchResponse) ProtoMessage() {}
func (*UserGrantSearchResponse) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{28}
+ return fileDescriptor_8bbd6f3875b0e874, []int{28}
}
-func (x *UserGrantSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *UserGrantSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantSearchResponse.Unmarshal(m, b)
+}
+func (m *UserGrantSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *UserGrantSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantSearchResponse.Merge(m, src)
+}
+func (m *UserGrantSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_UserGrantSearchResponse.Size(m)
+}
+func (m *UserGrantSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantSearchResponse proto.InternalMessageInfo
+
+func (m *UserGrantSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *UserGrantSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *UserGrantSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *UserGrantSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *UserGrantSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *UserGrantSearchResponse) GetResult() []*UserGrantView {
- if x != nil {
- return x.Result
+func (m *UserGrantSearchResponse) GetResult() []*UserGrantView {
+ if m != nil {
+ return m.Result
}
return nil
}
type UserGrantView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- OrgId string `protobuf:"bytes,1,opt,name=OrgId,proto3" json:"OrgId,omitempty"`
- ProjectId string `protobuf:"bytes,2,opt,name=ProjectId,proto3" json:"ProjectId,omitempty"`
- UserId string `protobuf:"bytes,3,opt,name=UserId,proto3" json:"UserId,omitempty"`
- Roles []string `protobuf:"bytes,4,rep,name=Roles,proto3" json:"Roles,omitempty"`
- OrgName string `protobuf:"bytes,5,opt,name=OrgName,proto3" json:"OrgName,omitempty"`
+ OrgId string `protobuf:"bytes,1,opt,name=OrgId,proto3" json:"OrgId,omitempty"`
+ ProjectId string `protobuf:"bytes,2,opt,name=ProjectId,proto3" json:"ProjectId,omitempty"`
+ UserId string `protobuf:"bytes,3,opt,name=UserId,proto3" json:"UserId,omitempty"`
+ Roles []string `protobuf:"bytes,4,rep,name=Roles,proto3" json:"Roles,omitempty"`
+ OrgName string `protobuf:"bytes,5,opt,name=OrgName,proto3" json:"OrgName,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantView) Reset() {
- *x = UserGrantView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[29]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantView) ProtoMessage() {}
-
-func (x *UserGrantView) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[29]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserGrantView.ProtoReflect.Descriptor instead.
+func (m *UserGrantView) Reset() { *m = UserGrantView{} }
+func (m *UserGrantView) String() string { return proto.CompactTextString(m) }
+func (*UserGrantView) ProtoMessage() {}
func (*UserGrantView) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{29}
+ return fileDescriptor_8bbd6f3875b0e874, []int{29}
}
-func (x *UserGrantView) GetOrgId() string {
- if x != nil {
- return x.OrgId
+func (m *UserGrantView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantView.Unmarshal(m, b)
+}
+func (m *UserGrantView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantView.Marshal(b, m, deterministic)
+}
+func (m *UserGrantView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantView.Merge(m, src)
+}
+func (m *UserGrantView) XXX_Size() int {
+ return xxx_messageInfo_UserGrantView.Size(m)
+}
+func (m *UserGrantView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantView proto.InternalMessageInfo
+
+func (m *UserGrantView) GetOrgId() string {
+ if m != nil {
+ return m.OrgId
}
return ""
}
-func (x *UserGrantView) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *UserGrantView) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *UserGrantView) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *UserGrantView) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *UserGrantView) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *UserGrantView) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
-func (x *UserGrantView) GetOrgName() string {
- if x != nil {
- return x.OrgName
+func (m *UserGrantView) GetOrgName() string {
+ if m != nil {
+ return m.OrgName
}
return ""
}
type MyProjectOrgSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- Asc bool `protobuf:"varint,4,opt,name=asc,proto3" json:"asc,omitempty"`
- Queries []*MyProjectOrgSearchQuery `protobuf:"bytes,5,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ Asc bool `protobuf:"varint,4,opt,name=asc,proto3" json:"asc,omitempty"`
+ Queries []*MyProjectOrgSearchQuery `protobuf:"bytes,5,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MyProjectOrgSearchRequest) Reset() {
- *x = MyProjectOrgSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[30]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MyProjectOrgSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MyProjectOrgSearchRequest) ProtoMessage() {}
-
-func (x *MyProjectOrgSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[30]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use MyProjectOrgSearchRequest.ProtoReflect.Descriptor instead.
+func (m *MyProjectOrgSearchRequest) Reset() { *m = MyProjectOrgSearchRequest{} }
+func (m *MyProjectOrgSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*MyProjectOrgSearchRequest) ProtoMessage() {}
func (*MyProjectOrgSearchRequest) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{30}
+ return fileDescriptor_8bbd6f3875b0e874, []int{30}
}
-func (x *MyProjectOrgSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *MyProjectOrgSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MyProjectOrgSearchRequest.Unmarshal(m, b)
+}
+func (m *MyProjectOrgSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MyProjectOrgSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *MyProjectOrgSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MyProjectOrgSearchRequest.Merge(m, src)
+}
+func (m *MyProjectOrgSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_MyProjectOrgSearchRequest.Size(m)
+}
+func (m *MyProjectOrgSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_MyProjectOrgSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MyProjectOrgSearchRequest proto.InternalMessageInfo
+
+func (m *MyProjectOrgSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *MyProjectOrgSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *MyProjectOrgSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *MyProjectOrgSearchRequest) GetAsc() bool {
- if x != nil {
- return x.Asc
+func (m *MyProjectOrgSearchRequest) GetAsc() bool {
+ if m != nil {
+ return m.Asc
}
return false
}
-func (x *MyProjectOrgSearchRequest) GetQueries() []*MyProjectOrgSearchQuery {
- if x != nil {
- return x.Queries
+func (m *MyProjectOrgSearchRequest) GetQueries() []*MyProjectOrgSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type MyProjectOrgSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key MyProjectOrgSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.auth.api.v1.MyProjectOrgSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.auth.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key MyProjectOrgSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.auth.api.v1.MyProjectOrgSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.auth.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MyProjectOrgSearchQuery) Reset() {
- *x = MyProjectOrgSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[31]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MyProjectOrgSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MyProjectOrgSearchQuery) ProtoMessage() {}
-
-func (x *MyProjectOrgSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[31]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use MyProjectOrgSearchQuery.ProtoReflect.Descriptor instead.
+func (m *MyProjectOrgSearchQuery) Reset() { *m = MyProjectOrgSearchQuery{} }
+func (m *MyProjectOrgSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*MyProjectOrgSearchQuery) ProtoMessage() {}
func (*MyProjectOrgSearchQuery) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{31}
+ return fileDescriptor_8bbd6f3875b0e874, []int{31}
}
-func (x *MyProjectOrgSearchQuery) GetKey() MyProjectOrgSearchKey {
- if x != nil {
- return x.Key
+func (m *MyProjectOrgSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MyProjectOrgSearchQuery.Unmarshal(m, b)
+}
+func (m *MyProjectOrgSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MyProjectOrgSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *MyProjectOrgSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MyProjectOrgSearchQuery.Merge(m, src)
+}
+func (m *MyProjectOrgSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_MyProjectOrgSearchQuery.Size(m)
+}
+func (m *MyProjectOrgSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_MyProjectOrgSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MyProjectOrgSearchQuery proto.InternalMessageInfo
+
+func (m *MyProjectOrgSearchQuery) GetKey() MyProjectOrgSearchKey {
+ if m != nil {
+ return m.Key
}
return MyProjectOrgSearchKey_MYPROJECTORGSEARCHKEY_UNSPECIFIED
}
-func (x *MyProjectOrgSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *MyProjectOrgSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *MyProjectOrgSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *MyProjectOrgSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type MyProjectOrgSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*Org `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*Org `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MyProjectOrgSearchResponse) Reset() {
- *x = MyProjectOrgSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[32]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MyProjectOrgSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MyProjectOrgSearchResponse) ProtoMessage() {}
-
-func (x *MyProjectOrgSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[32]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use MyProjectOrgSearchResponse.ProtoReflect.Descriptor instead.
+func (m *MyProjectOrgSearchResponse) Reset() { *m = MyProjectOrgSearchResponse{} }
+func (m *MyProjectOrgSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*MyProjectOrgSearchResponse) ProtoMessage() {}
func (*MyProjectOrgSearchResponse) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{32}
+ return fileDescriptor_8bbd6f3875b0e874, []int{32}
}
-func (x *MyProjectOrgSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *MyProjectOrgSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MyProjectOrgSearchResponse.Unmarshal(m, b)
+}
+func (m *MyProjectOrgSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MyProjectOrgSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *MyProjectOrgSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MyProjectOrgSearchResponse.Merge(m, src)
+}
+func (m *MyProjectOrgSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_MyProjectOrgSearchResponse.Size(m)
+}
+func (m *MyProjectOrgSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_MyProjectOrgSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MyProjectOrgSearchResponse proto.InternalMessageInfo
+
+func (m *MyProjectOrgSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *MyProjectOrgSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *MyProjectOrgSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *MyProjectOrgSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *MyProjectOrgSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *MyProjectOrgSearchResponse) GetResult() []*Org {
- if x != nil {
- return x.Result
+func (m *MyProjectOrgSearchResponse) GetResult() []*Org {
+ if m != nil {
+ return m.Result
}
return nil
}
type Org struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Org) Reset() {
- *x = Org{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[33]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Org) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Org) ProtoMessage() {}
-
-func (x *Org) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[33]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use Org.ProtoReflect.Descriptor instead.
+func (m *Org) Reset() { *m = Org{} }
+func (m *Org) String() string { return proto.CompactTextString(m) }
+func (*Org) ProtoMessage() {}
func (*Org) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{33}
+ return fileDescriptor_8bbd6f3875b0e874, []int{33}
}
-func (x *Org) GetId() string {
- if x != nil {
- return x.Id
+func (m *Org) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Org.Unmarshal(m, b)
+}
+func (m *Org) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Org.Marshal(b, m, deterministic)
+}
+func (m *Org) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Org.Merge(m, src)
+}
+func (m *Org) XXX_Size() int {
+ return xxx_messageInfo_Org.Size(m)
+}
+func (m *Org) XXX_DiscardUnknown() {
+ xxx_messageInfo_Org.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Org proto.InternalMessageInfo
+
+func (m *Org) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *Org) GetName() string {
- if x != nil {
- return x.Name
+func (m *Org) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
type MyPermissions struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Permissions []string `protobuf:"bytes,1,rep,name=permissions,proto3" json:"permissions,omitempty"`
+ Permissions []string `protobuf:"bytes,1,rep,name=permissions,proto3" json:"permissions,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MyPermissions) Reset() {
- *x = MyPermissions{}
- if protoimpl.UnsafeEnabled {
- mi := &file_auth_proto_msgTypes[34]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MyPermissions) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MyPermissions) ProtoMessage() {}
-
-func (x *MyPermissions) ProtoReflect() protoreflect.Message {
- mi := &file_auth_proto_msgTypes[34]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use MyPermissions.ProtoReflect.Descriptor instead.
+func (m *MyPermissions) Reset() { *m = MyPermissions{} }
+func (m *MyPermissions) String() string { return proto.CompactTextString(m) }
+func (*MyPermissions) ProtoMessage() {}
func (*MyPermissions) Descriptor() ([]byte, []int) {
- return file_auth_proto_rawDescGZIP(), []int{34}
+ return fileDescriptor_8bbd6f3875b0e874, []int{34}
}
-func (x *MyPermissions) GetPermissions() []string {
- if x != nil {
- return x.Permissions
+func (m *MyPermissions) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MyPermissions.Unmarshal(m, b)
+}
+func (m *MyPermissions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MyPermissions.Marshal(b, m, deterministic)
+}
+func (m *MyPermissions) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MyPermissions.Merge(m, src)
+}
+func (m *MyPermissions) XXX_Size() int {
+ return xxx_messageInfo_MyPermissions.Size(m)
+}
+func (m *MyPermissions) XXX_DiscardUnknown() {
+ xxx_messageInfo_MyPermissions.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MyPermissions proto.InternalMessageInfo
+
+func (m *MyPermissions) GetPermissions() []string {
+ if m != nil {
+ return m.Permissions
}
return nil
}
-var File_auth_proto protoreflect.FileDescriptor
-
-var file_auth_proto_rawDesc = []byte{
- 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x18, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
- 0x75, 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
- 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
- 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x1a, 0x17, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x76, 0x61, 0x6c, 0x69, 0x64,
- 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2c, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x73, 0x77, 0x61, 0x67, 0x67, 0x65, 0x72, 0x2f, 0x6f, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x18, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x22, 0x62, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
- 0x56, 0x69, 0x65, 0x77, 0x73, 0x12, 0x4e, 0x0a, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x73, 0x65,
- 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73,
- 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73,
- 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xd9, 0x01, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65,
- 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x67, 0x65,
- 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x67, 0x65,
- 0x6e, 0x74, 0x49, 0x64, 0x12, 0x49, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x5f, 0x73, 0x74, 0x61,
- 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2a, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53,
- 0x74, 0x61, 0x74, 0x65, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12,
- 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65,
- 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63,
- 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63,
- 0x65, 0x22, 0xdb, 0x08, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x39, 0x0a, 0x05, 0x73, 0x74,
- 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,
- 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x43, 0x0a, 0x0f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
- 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0e, 0x61, 0x63, 0x74,
- 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
- 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x39, 0x0a, 0x0a, 0x6c, 0x61, 0x73, 0x74,
- 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,
- 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x4c, 0x6f,
- 0x67, 0x69, 0x6e, 0x12, 0x45, 0x0a, 0x10, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x5f,
- 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0f, 0x70, 0x61, 0x73, 0x73, 0x77,
- 0x6f, 0x72, 0x64, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73,
- 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75,
- 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x72,
- 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e,
- 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x69, 0x63, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65,
- 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e,
- 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64,
- 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x11, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61,
- 0x67, 0x65, 0x12, 0x38, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x0e, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x20, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
- 0x6e, 0x64, 0x65, 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05,
- 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61,
- 0x69, 0x6c, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x76,
- 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69,
- 0x73, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x14,
- 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70,
- 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65,
- 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x12, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x0f, 0x69, 0x73, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64,
- 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x13, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x6f,
- 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f,
- 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c,
- 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73,
- 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f,
- 0x6e, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12,
- 0x25, 0x0a, 0x0e, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73,
- 0x73, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x41,
- 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x38, 0x0a, 0x18, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72,
- 0x65, 0x64, 0x18, 0x18, 0x20, 0x01, 0x28, 0x08, 0x52, 0x16, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64,
- 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x19, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x1f, 0x0a, 0x0b,
- 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x1a, 0x20, 0x03, 0x28,
- 0x09, 0x52, 0x0a, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x30, 0x0a,
- 0x14, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x70, 0x72, 0x65,
- 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x22,
- 0xb9, 0x03, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12,
- 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
- 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a,
- 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c,
- 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
- 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x69, 0x63, 0x6b,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63,
- 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73,
- 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x65, 0x66,
- 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x07,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c,
- 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x38, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65,
- 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x20, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65,
- 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a,
- 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0a,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
- 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b,
- 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0b, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52,
- 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0x90, 0x04, 0x0a, 0x0f,
- 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12,
- 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
- 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a,
- 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c,
- 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
- 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x69, 0x63, 0x6b,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63,
- 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73,
- 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x65, 0x66,
- 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x07,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c,
- 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x38, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65,
- 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x20, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65,
- 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a,
- 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0a,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
- 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b,
- 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0b, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52,
- 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6c,
- 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x0a, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x30, 0x0a, 0x14,
- 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f,
- 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x70, 0x72, 0x65, 0x66,
- 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xbb,
- 0x02, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f,
- 0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x0a, 0x66,
- 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42,
- 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x09, 0x66, 0x69, 0x72,
- 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x27, 0x0a, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05,
- 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12,
- 0x27, 0x0a, 0x09, 0x6e, 0x69, 0x63, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x08,
- 0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70,
- 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a,
- 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70,
- 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x39, 0x0a, 0x12, 0x70, 0x72, 0x65, 0x66, 0x65,
- 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20,
- 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52,
- 0x11, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61,
- 0x67, 0x65, 0x12, 0x38, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x20, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
- 0x6e, 0x64, 0x65, 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x22, 0xf5, 0x01, 0x0a,
- 0x09, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d,
- 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c,
- 0x12, 0x28, 0x0a, 0x0f, 0x69, 0x73, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66,
- 0x69, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x45, 0x6d, 0x61,
- 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65,
- 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65,
- 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,
- 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65,
- 0x44, 0x61, 0x74, 0x65, 0x22, 0xf9, 0x01, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61,
- 0x69, 0x6c, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x28, 0x0a, 0x0f,
- 0x69, 0x73, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65,
- 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e,
- 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e,
- 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64,
- 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65,
- 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44,
- 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61,
- 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73,
- 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65,
- 0x22, 0x3a, 0x0a, 0x18, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x4d, 0x79, 0x55, 0x73, 0x65, 0x72,
- 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x04,
- 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72,
- 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x22, 0x48, 0x0a, 0x16,
- 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01,
- 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x22, 0x3a, 0x0a, 0x16, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x12, 0x20, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42,
- 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x05, 0x65, 0x6d, 0x61,
- 0x69, 0x6c, 0x22, 0xf7, 0x01, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65,
- 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
- 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x70, 0x68, 0x6f,
- 0x6e, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x0f, 0x69, 0x73, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69,
- 0x65, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x04,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f,
- 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18,
- 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
- 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12,
- 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
- 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0xfb, 0x01, 0x0a,
- 0x0d, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e,
- 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14,
- 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70,
- 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65,
- 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x0f, 0x69, 0x73, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64,
- 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52,
- 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a,
- 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a,
- 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0x39, 0x0a, 0x16, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x42, 0x09, 0xfa, 0x42, 0x06, 0x72, 0x04, 0x10, 0x01, 0x18, 0x14, 0x52, 0x05,
- 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x38, 0x0a, 0x16, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x55,
- 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x1e, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa,
- 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x22,
- 0xcd, 0x02, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12,
- 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
- 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x6f, 0x63,
- 0x61, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63,
- 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x5f,
- 0x63, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x74,
- 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e,
- 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12, 0x25,
- 0x0a, 0x0e, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
- 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x41, 0x64,
- 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63,
- 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63,
- 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61,
- 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73,
- 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61,
- 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74,
- 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
- 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22,
- 0xd1, 0x02, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x56,
- 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1a, 0x0a,
- 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73,
- 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
- 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65,
- 0x67, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x67, 0x69,
- 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64,
- 0x72, 0x65, 0x73, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x74, 0x72, 0x65,
- 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71,
- 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71,
- 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,
- 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65,
- 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69,
- 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44,
- 0x61, 0x74, 0x65, 0x22, 0xe2, 0x01, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73,
- 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x12, 0x22, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x07, 0x63, 0x6f, 0x75,
- 0x6e, 0x74, 0x72, 0x79, 0x12, 0x24, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01,
- 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x29, 0x0a, 0x0b, 0x70, 0x6f,
- 0x73, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42,
- 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x74, 0x61,
- 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x18,
- 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52,
- 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12, 0x2f, 0x0a, 0x0e, 0x73, 0x74, 0x72, 0x65, 0x65,
- 0x74, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42,
- 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x0d, 0x73, 0x74, 0x72, 0x65, 0x65,
- 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x22, 0x1c, 0x0a, 0x0a, 0x50, 0x61, 0x73, 0x73,
- 0x77, 0x6f, 0x72, 0x64, 0x49, 0x44, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x38, 0x0a, 0x0f, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x25, 0x0a, 0x08, 0x70, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x09, 0xfa, 0x42, 0x06,
- 0x72, 0x04, 0x10, 0x01, 0x18, 0x48, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64,
- 0x22, 0x6c, 0x0a, 0x0e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x68, 0x61, 0x6e,
- 0x67, 0x65, 0x12, 0x2c, 0x0a, 0x0c, 0x6f, 0x6c, 0x64, 0x5f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x09, 0xfa, 0x42, 0x06, 0x72, 0x04, 0x10,
- 0x01, 0x18, 0x48, 0x52, 0x0b, 0x6f, 0x6c, 0x64, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64,
- 0x12, 0x2c, 0x0a, 0x0c, 0x6e, 0x65, 0x77, 0x5f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x09, 0xfa, 0x42, 0x06, 0x72, 0x04, 0x10, 0x01, 0x18,
- 0x48, 0x52, 0x0b, 0x6e, 0x65, 0x77, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x22,
- 0x0a, 0x0c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x4d, 0x66, 0x61, 0x4f, 0x74, 0x70, 0x12, 0x12,
- 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f,
- 0x64, 0x65, 0x22, 0x49, 0x0a, 0x0c, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f,
- 0x72, 0x73, 0x12, 0x39, 0x0a, 0x04, 0x6d, 0x66, 0x61, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
- 0x32, 0x25, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x75, 0x6c, 0x74,
- 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x04, 0x6d, 0x66, 0x61, 0x73, 0x22, 0x7e, 0x0a,
- 0x0b, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x12, 0x35, 0x0a, 0x04,
- 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x66, 0x61, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74,
- 0x79, 0x70, 0x65, 0x12, 0x38, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x22, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x46,
- 0x41, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x8d, 0x01,
- 0x0a, 0x0e, 0x4d, 0x66, 0x61, 0x4f, 0x74, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x73,
- 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x65, 0x63,
- 0x72, 0x65, 0x74, 0x12, 0x38, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x22, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x46,
- 0x41, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x52, 0x0a,
- 0x0e, 0x4f, 0x49, 0x44, 0x43, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x12,
- 0x1b, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d,
- 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65,
- 0x74, 0x22, 0x81, 0x02, 0x0a, 0x16, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66,
- 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x5d, 0x0a, 0x0e, 0x73, 0x6f,
- 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73,
- 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79,
- 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x0d, 0x73, 0x6f, 0x72, 0x74,
- 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x73, 0x63,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x61, 0x73, 0x63, 0x12, 0x48, 0x0a, 0x07, 0x71,
- 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e,
- 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75,
- 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xb6, 0x01, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72,
- 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x48,
- 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01,
- 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x3e, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68,
- 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64,
- 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
- 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0xab,
- 0x01, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66,
- 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73,
- 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61,
- 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b,
- 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x3f, 0x0a, 0x06, 0x72,
- 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x8b, 0x01, 0x0a,
- 0x0d, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x12, 0x14,
- 0x0a, 0x05, 0x4f, 0x72, 0x67, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x4f,
- 0x72, 0x67, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
- 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x52, 0x6f,
- 0x6c, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x52, 0x6f, 0x6c, 0x65, 0x73,
- 0x12, 0x18, 0x0a, 0x07, 0x4f, 0x72, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x07, 0x4f, 0x72, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xa8, 0x01, 0x0a, 0x19, 0x4d,
- 0x79, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4f, 0x72, 0x67, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73,
- 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
- 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x73, 0x63, 0x18, 0x04, 0x20,
- 0x01, 0x28, 0x08, 0x52, 0x03, 0x61, 0x73, 0x63, 0x12, 0x4b, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72,
- 0x69, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x79, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4f, 0x72,
- 0x67, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75,
- 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xbc, 0x01, 0x0a, 0x17, 0x4d, 0x79, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x4f, 0x72, 0x67, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72,
- 0x79, 0x12, 0x4b, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2f,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75,
- 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x79, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x4f, 0x72, 0x67, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42,
- 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x3e,
- 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75,
- 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x14,
- 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x22, 0xa4, 0x01, 0x0a, 0x1a, 0x4d, 0x79, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x4f, 0x72, 0x67, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c,
- 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69,
- 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c,
- 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65,
- 0x73, 0x75, 0x6c, 0x74, 0x12, 0x35, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04,
- 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x4f, 0x72, 0x67, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x29, 0x0a, 0x03, 0x4f,
- 0x72, 0x67, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
- 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x31, 0x0a, 0x0d, 0x4d, 0x79, 0x50, 0x65, 0x72, 0x6d,
- 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x65, 0x72, 0x6d, 0x69,
- 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x65,
- 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2a, 0x72, 0x0a, 0x10, 0x55, 0x73, 0x65,
- 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a,
- 0x1c, 0x55, 0x53, 0x45, 0x52, 0x53, 0x45, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x53, 0x54, 0x41, 0x54,
- 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12,
- 0x1b, 0x0a, 0x17, 0x55, 0x53, 0x45, 0x52, 0x53, 0x45, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x53, 0x54,
- 0x41, 0x54, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x1f, 0x0a, 0x1b,
- 0x55, 0x53, 0x45, 0x52, 0x53, 0x45, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x53, 0x54, 0x41, 0x54, 0x45,
- 0x5f, 0x54, 0x45, 0x52, 0x4d, 0x49, 0x4e, 0x41, 0x54, 0x45, 0x44, 0x10, 0x02, 0x2a, 0x71, 0x0a,
- 0x10, 0x4f, 0x49, 0x44, 0x43, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70,
- 0x65, 0x12, 0x19, 0x0a, 0x15, 0x4f, 0x49, 0x44, 0x43, 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53,
- 0x45, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x43, 0x4f, 0x44, 0x45, 0x10, 0x00, 0x12, 0x1d, 0x0a, 0x19,
- 0x4f, 0x49, 0x44, 0x43, 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x45, 0x54, 0x59, 0x50, 0x45,
- 0x5f, 0x49, 0x44, 0x5f, 0x54, 0x4f, 0x4b, 0x45, 0x4e, 0x10, 0x01, 0x12, 0x23, 0x0a, 0x1f, 0x4f,
- 0x49, 0x44, 0x43, 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x45, 0x54, 0x59, 0x50, 0x45, 0x5f,
- 0x49, 0x44, 0x5f, 0x54, 0x4f, 0x4b, 0x45, 0x4e, 0x5f, 0x54, 0x4f, 0x4b, 0x45, 0x4e, 0x10, 0x02,
- 0x2a, 0xb0, 0x01, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1a,
- 0x0a, 0x16, 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50,
- 0x45, 0x43, 0x49, 0x45, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x14, 0x0a, 0x10, 0x55, 0x53,
- 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01,
- 0x12, 0x16, 0x0a, 0x12, 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e,
- 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x02, 0x12, 0x15, 0x0a, 0x11, 0x55, 0x53, 0x45, 0x52,
- 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x44, 0x45, 0x4c, 0x45, 0x54, 0x45, 0x44, 0x10, 0x03, 0x12,
- 0x14, 0x0a, 0x10, 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x4c, 0x4f, 0x43,
- 0x4b, 0x45, 0x44, 0x10, 0x04, 0x12, 0x15, 0x0a, 0x11, 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41,
- 0x54, 0x45, 0x5f, 0x53, 0x55, 0x53, 0x50, 0x45, 0x4e, 0x44, 0x10, 0x05, 0x12, 0x15, 0x0a, 0x11,
- 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x49, 0x54, 0x49, 0x41,
- 0x4c, 0x10, 0x06, 0x2a, 0x58, 0x0a, 0x06, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a,
- 0x12, 0x47, 0x45, 0x4e, 0x44, 0x45, 0x52, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46,
- 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x11, 0x0a, 0x0d, 0x47, 0x45, 0x4e, 0x44, 0x45, 0x52, 0x5f,
- 0x46, 0x45, 0x4d, 0x41, 0x4c, 0x45, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x47, 0x45, 0x4e, 0x44,
- 0x45, 0x52, 0x5f, 0x4d, 0x41, 0x4c, 0x45, 0x10, 0x02, 0x12, 0x12, 0x0a, 0x0e, 0x47, 0x45, 0x4e,
- 0x44, 0x45, 0x52, 0x5f, 0x44, 0x49, 0x56, 0x45, 0x52, 0x53, 0x45, 0x10, 0x03, 0x2a, 0x44, 0x0a,
- 0x07, 0x4d, 0x66, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a, 0x13, 0x4d, 0x46, 0x41, 0x54,
- 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
- 0x00, 0x12, 0x0f, 0x0a, 0x0b, 0x4d, 0x46, 0x41, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x53, 0x4d, 0x53,
- 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x4d, 0x46, 0x41, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4f, 0x54,
- 0x50, 0x10, 0x02, 0x2a, 0x66, 0x0a, 0x08, 0x4d, 0x46, 0x41, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12,
- 0x18, 0x0a, 0x14, 0x4d, 0x46, 0x41, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50,
- 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x16, 0x0a, 0x12, 0x4d, 0x46, 0x41,
- 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x52, 0x45, 0x41, 0x44, 0x59, 0x10,
- 0x01, 0x12, 0x12, 0x0a, 0x0e, 0x4d, 0x46, 0x41, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x52, 0x45,
- 0x41, 0x44, 0x59, 0x10, 0x02, 0x12, 0x14, 0x0a, 0x10, 0x4d, 0x46, 0x41, 0x53, 0x54, 0x41, 0x54,
- 0x45, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x2a, 0x76, 0x0a, 0x12, 0x55,
- 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65,
- 0x79, 0x12, 0x1e, 0x0a, 0x1a, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10,
- 0x00, 0x12, 0x1d, 0x0a, 0x19, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x5f, 0x4f, 0x52, 0x47, 0x5f, 0x49, 0x44, 0x10, 0x01,
- 0x12, 0x21, 0x0a, 0x1d, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x5f, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x5f, 0x49,
- 0x44, 0x10, 0x02, 0x2a, 0x62, 0x0a, 0x15, 0x4d, 0x79, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x4f, 0x72, 0x67, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x25, 0x0a, 0x21,
- 0x4d, 0x59, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x4f, 0x52, 0x47, 0x53, 0x45, 0x41, 0x52,
- 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45,
- 0x44, 0x10, 0x00, 0x12, 0x22, 0x0a, 0x1e, 0x4d, 0x59, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54,
- 0x4f, 0x52, 0x47, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x4f, 0x52, 0x47,
- 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x01, 0x2a, 0xd6, 0x01, 0x0a, 0x0c, 0x53, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x17, 0x0a, 0x13, 0x53, 0x45, 0x41, 0x52,
- 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x45, 0x51, 0x55, 0x41, 0x4c, 0x53, 0x10,
- 0x00, 0x12, 0x1c, 0x0a, 0x18, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f,
- 0x44, 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54, 0x53, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x10, 0x01, 0x12,
- 0x19, 0x0a, 0x15, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f,
- 0x43, 0x4f, 0x4e, 0x54, 0x41, 0x49, 0x4e, 0x53, 0x10, 0x02, 0x12, 0x23, 0x0a, 0x1f, 0x53, 0x45,
- 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x45, 0x51, 0x55, 0x41, 0x4c,
- 0x53, 0x5f, 0x49, 0x47, 0x4e, 0x4f, 0x52, 0x45, 0x5f, 0x43, 0x41, 0x53, 0x45, 0x10, 0x03, 0x12,
- 0x28, 0x0a, 0x24, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f,
- 0x53, 0x54, 0x41, 0x52, 0x54, 0x53, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x5f, 0x49, 0x47, 0x4e, 0x4f,
- 0x52, 0x45, 0x5f, 0x43, 0x41, 0x53, 0x45, 0x10, 0x04, 0x12, 0x25, 0x0a, 0x21, 0x53, 0x45, 0x41,
- 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x41, 0x49,
- 0x4e, 0x53, 0x5f, 0x49, 0x47, 0x4e, 0x4f, 0x52, 0x45, 0x5f, 0x43, 0x41, 0x53, 0x45, 0x10, 0x05,
- 0x32, 0xe0, 0x19, 0x0a, 0x0b, 0x41, 0x75, 0x74, 0x68, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
- 0x12, 0x4b, 0x0a, 0x07, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x7a, 0x12, 0x16, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
- 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x10, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x0a, 0x12, 0x08, 0x2f, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x7a, 0x12, 0x47, 0x0a,
- 0x05, 0x52, 0x65, 0x61, 0x64, 0x79, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
- 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x0e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x08, 0x12, 0x06,
- 0x2f, 0x72, 0x65, 0x61, 0x64, 0x79, 0x12, 0x4e, 0x0a, 0x08, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61,
- 0x74, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x17, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72,
- 0x75, 0x63, 0x74, 0x22, 0x11, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0b, 0x12, 0x09, 0x2f, 0x76, 0x61,
- 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x12, 0x84, 0x01, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x4d, 0x79,
- 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x16, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
- 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x2a, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x73,
- 0x22, 0x2b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x12, 0x10, 0x2f, 0x6d, 0x65, 0x2f, 0x75, 0x73,
- 0x65, 0x72, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d,
- 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0x83, 0x01,
- 0x0a, 0x10, 0x47, 0x65, 0x74, 0x4d, 0x79, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69,
- 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c,
- 0x65, 0x56, 0x69, 0x65, 0x77, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x12, 0x11, 0x2f,
- 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
- 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61,
- 0x74, 0x65, 0x64, 0x12, 0xa1, 0x01, 0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x79,
- 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x32, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
- 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x25, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61,
- 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50,
- 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x22, 0x2f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x1a, 0x11,
- 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c,
- 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e,
- 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0x7d, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x4d, 0x79,
- 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
- 0x79, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65,
- 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x69, 0x65, 0x77, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93,
- 0x02, 0x11, 0x12, 0x0f, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x65, 0x6d,
- 0x61, 0x69, 0x6c, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74,
- 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0x99, 0x01, 0x0a, 0x11, 0x43, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x4d, 0x79, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x30, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73,
- 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75,
- 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d,
- 0x61, 0x69, 0x6c, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x14, 0x1a, 0x0f, 0x2f, 0x75, 0x73,
- 0x65, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x3a, 0x01, 0x2a, 0x82,
- 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74,
- 0x65, 0x64, 0x12, 0x96, 0x01, 0x0a, 0x11, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x4d, 0x79, 0x55,
- 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x4d, 0x79, 0x55, 0x73, 0x65, 0x72,
- 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
- 0x6d, 0x70, 0x74, 0x79, 0x22, 0x35, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x75,
- 0x73, 0x65, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x2f, 0x5f, 0x76,
- 0x65, 0x72, 0x69, 0x66, 0x79, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75,
- 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0x92, 0x01, 0x0a, 0x1d,
- 0x52, 0x65, 0x73, 0x65, 0x6e, 0x64, 0x4d, 0x79, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72,
- 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x16, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x41, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x28, 0x22, 0x23, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x6d, 0x65,
- 0x2f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x2f, 0x5f, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x64, 0x76, 0x65,
- 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18,
- 0x0f, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64,
- 0x12, 0x7d, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x4d, 0x79, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f,
- 0x6e, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56,
- 0x69, 0x65, 0x77, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x11, 0x12, 0x0f, 0x2f, 0x75, 0x73,
- 0x65, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x82, 0xb5, 0x18, 0x0f,
- 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12,
- 0x99, 0x01, 0x0a, 0x11, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4d, 0x79, 0x55, 0x73, 0x65, 0x72,
- 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x2d, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x14, 0x1a, 0x0f, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x2f,
- 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75,
- 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0x94, 0x01, 0x0a, 0x11,
- 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x4d, 0x79, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e,
- 0x65, 0x12, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x65, 0x72,
- 0x69, 0x66, 0x79, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x35, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70,
- 0x68, 0x6f, 0x6e, 0x65, 0x2f, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x79, 0x3a, 0x01, 0x2a, 0x82,
- 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74,
- 0x65, 0x64, 0x12, 0x92, 0x01, 0x0a, 0x1d, 0x52, 0x65, 0x73, 0x65, 0x6e, 0x64, 0x4d, 0x79, 0x50,
- 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
- 0x6d, 0x70, 0x74, 0x79, 0x22, 0x41, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x28, 0x22, 0x23, 0x2f, 0x75,
- 0x73, 0x65, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x2f, 0x5f, 0x72,
- 0x65, 0x73, 0x65, 0x6e, 0x64, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e,
- 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0x83, 0x01, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x4d,
- 0x79, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x16, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
- 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x56, 0x69, 0x65, 0x77, 0x22,
- 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x12, 0x11, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f,
- 0x6d, 0x65, 0x2f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d,
- 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0xa1, 0x01,
- 0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x79, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64,
- 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65,
- 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
- 0x22, 0x2f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x1a, 0x11, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73,
- 0x2f, 0x6d, 0x65, 0x2f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5,
- 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65,
- 0x64, 0x12, 0x76, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x4d, 0x79, 0x4d, 0x66, 0x61, 0x73, 0x12, 0x16,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
- 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x22, 0x29,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x10, 0x12, 0x0e, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x6d,
- 0x65, 0x2f, 0x6d, 0x66, 0x61, 0x73, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68,
- 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0x8f, 0x01, 0x0a, 0x10, 0x43, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x4d, 0x79, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x28,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75,
- 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
- 0x22, 0x39, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x1a, 0x1b, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73,
- 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x2f, 0x5f, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75,
- 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0x7e, 0x0a, 0x09, 0x41,
- 0x64, 0x64, 0x4d, 0x66, 0x61, 0x4f, 0x54, 0x50, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
- 0x1a, 0x28, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x66, 0x61, 0x4f,
- 0x74, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2f, 0x82, 0xd3, 0xe4, 0x93,
- 0x02, 0x16, 0x22, 0x11, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x6d, 0x66,
- 0x61, 0x2f, 0x6f, 0x74, 0x70, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75,
- 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0x87, 0x01, 0x0a, 0x0c,
- 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x4d, 0x66, 0x61, 0x4f, 0x54, 0x50, 0x12, 0x26, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x4d, 0x66,
- 0x61, 0x4f, 0x74, 0x70, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x37, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x1e, 0x1a, 0x19, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x2f,
- 0x6d, 0x66, 0x61, 0x2f, 0x6f, 0x74, 0x70, 0x2f, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x79, 0x3a,
- 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69,
- 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0x6c, 0x0a, 0x0c, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4d,
- 0x66, 0x61, 0x4f, 0x54, 0x50, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x2a, 0x11, 0x2f,
- 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x6d, 0x66, 0x61, 0x2f, 0x6f, 0x74, 0x70,
- 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61,
- 0x74, 0x65, 0x64, 0x12, 0xae, 0x01, 0x0a, 0x11, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x79,
- 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x34,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x67, 0x72, 0x61,
- 0x6e, 0x74, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01,
- 0x2a, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63,
- 0x61, 0x74, 0x65, 0x64, 0x12, 0xbb, 0x01, 0x0a, 0x13, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d,
- 0x79, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4f, 0x72, 0x67, 0x73, 0x12, 0x33, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x79, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x4f, 0x72, 0x67, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x79, 0x50,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4f, 0x72, 0x67, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x39, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22,
- 0x1b, 0x2f, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82,
- 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74,
- 0x65, 0x64, 0x12, 0x8e, 0x01, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x4d, 0x79, 0x5a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x16,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
- 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x4d, 0x79, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x22,
- 0x32, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x12, 0x17, 0x2f, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73,
- 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2f, 0x6d, 0x65,
- 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61,
- 0x74, 0x65, 0x64, 0x42, 0xb7, 0x01, 0x5a, 0x29, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63,
- 0x6f, 0x6d, 0x2f, 0x63, 0x61, 0x6f, 0x73, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2f,
- 0x70, 0x6b, 0x67, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x67, 0x72, 0x70,
- 0x63, 0x92, 0x41, 0x88, 0x01, 0x12, 0x3b, 0x0a, 0x08, 0x41, 0x75, 0x74, 0x68, 0x20, 0x41, 0x50,
- 0x49, 0x22, 0x2a, 0x12, 0x28, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x67, 0x69, 0x74,
- 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x61, 0x6f, 0x73, 0x2f, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x32, 0x03, 0x30,
- 0x2e, 0x31, 0x2a, 0x01, 0x02, 0x32, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x2f, 0x6a, 0x73, 0x6f, 0x6e, 0x32, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x3a, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x6a, 0x73, 0x6f, 0x6e, 0x3a, 0x10, 0x61, 0x70, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x62, 0x06, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x33,
+func init() {
+ proto.RegisterEnum("caos.zitadel.auth.api.v1.UserSessionState", UserSessionState_name, UserSessionState_value)
+ proto.RegisterEnum("caos.zitadel.auth.api.v1.OIDCResponseType", OIDCResponseType_name, OIDCResponseType_value)
+ proto.RegisterEnum("caos.zitadel.auth.api.v1.UserState", UserState_name, UserState_value)
+ proto.RegisterEnum("caos.zitadel.auth.api.v1.Gender", Gender_name, Gender_value)
+ proto.RegisterEnum("caos.zitadel.auth.api.v1.MfaType", MfaType_name, MfaType_value)
+ proto.RegisterEnum("caos.zitadel.auth.api.v1.MFAState", MFAState_name, MFAState_value)
+ proto.RegisterEnum("caos.zitadel.auth.api.v1.UserGrantSearchKey", UserGrantSearchKey_name, UserGrantSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.auth.api.v1.MyProjectOrgSearchKey", MyProjectOrgSearchKey_name, MyProjectOrgSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.auth.api.v1.SearchMethod", SearchMethod_name, SearchMethod_value)
+ proto.RegisterType((*UserSessionViews)(nil), "caos.zitadel.auth.api.v1.UserSessionViews")
+ proto.RegisterType((*UserSessionView)(nil), "caos.zitadel.auth.api.v1.UserSessionView")
+ proto.RegisterType((*User)(nil), "caos.zitadel.auth.api.v1.User")
+ proto.RegisterType((*UserProfile)(nil), "caos.zitadel.auth.api.v1.UserProfile")
+ proto.RegisterType((*UserProfileView)(nil), "caos.zitadel.auth.api.v1.UserProfileView")
+ proto.RegisterType((*UpdateUserProfileRequest)(nil), "caos.zitadel.auth.api.v1.UpdateUserProfileRequest")
+ proto.RegisterType((*UserEmail)(nil), "caos.zitadel.auth.api.v1.UserEmail")
+ proto.RegisterType((*UserEmailView)(nil), "caos.zitadel.auth.api.v1.UserEmailView")
+ proto.RegisterType((*VerifyMyUserEmailRequest)(nil), "caos.zitadel.auth.api.v1.VerifyMyUserEmailRequest")
+ proto.RegisterType((*VerifyUserEmailRequest)(nil), "caos.zitadel.auth.api.v1.VerifyUserEmailRequest")
+ proto.RegisterType((*UpdateUserEmailRequest)(nil), "caos.zitadel.auth.api.v1.UpdateUserEmailRequest")
+ proto.RegisterType((*UserPhone)(nil), "caos.zitadel.auth.api.v1.UserPhone")
+ proto.RegisterType((*UserPhoneView)(nil), "caos.zitadel.auth.api.v1.UserPhoneView")
+ proto.RegisterType((*UpdateUserPhoneRequest)(nil), "caos.zitadel.auth.api.v1.UpdateUserPhoneRequest")
+ proto.RegisterType((*VerifyUserPhoneRequest)(nil), "caos.zitadel.auth.api.v1.VerifyUserPhoneRequest")
+ proto.RegisterType((*UserAddress)(nil), "caos.zitadel.auth.api.v1.UserAddress")
+ proto.RegisterType((*UserAddressView)(nil), "caos.zitadel.auth.api.v1.UserAddressView")
+ proto.RegisterType((*UpdateUserAddressRequest)(nil), "caos.zitadel.auth.api.v1.UpdateUserAddressRequest")
+ proto.RegisterType((*PasswordID)(nil), "caos.zitadel.auth.api.v1.PasswordID")
+ proto.RegisterType((*PasswordRequest)(nil), "caos.zitadel.auth.api.v1.PasswordRequest")
+ proto.RegisterType((*PasswordChange)(nil), "caos.zitadel.auth.api.v1.PasswordChange")
+ proto.RegisterType((*VerifyMfaOtp)(nil), "caos.zitadel.auth.api.v1.VerifyMfaOtp")
+ proto.RegisterType((*MultiFactors)(nil), "caos.zitadel.auth.api.v1.MultiFactors")
+ proto.RegisterType((*MultiFactor)(nil), "caos.zitadel.auth.api.v1.MultiFactor")
+ proto.RegisterType((*MfaOtpResponse)(nil), "caos.zitadel.auth.api.v1.MfaOtpResponse")
+ proto.RegisterType((*OIDCClientAuth)(nil), "caos.zitadel.auth.api.v1.OIDCClientAuth")
+ proto.RegisterType((*UserGrantSearchRequest)(nil), "caos.zitadel.auth.api.v1.UserGrantSearchRequest")
+ proto.RegisterType((*UserGrantSearchQuery)(nil), "caos.zitadel.auth.api.v1.UserGrantSearchQuery")
+ proto.RegisterType((*UserGrantSearchResponse)(nil), "caos.zitadel.auth.api.v1.UserGrantSearchResponse")
+ proto.RegisterType((*UserGrantView)(nil), "caos.zitadel.auth.api.v1.UserGrantView")
+ proto.RegisterType((*MyProjectOrgSearchRequest)(nil), "caos.zitadel.auth.api.v1.MyProjectOrgSearchRequest")
+ proto.RegisterType((*MyProjectOrgSearchQuery)(nil), "caos.zitadel.auth.api.v1.MyProjectOrgSearchQuery")
+ proto.RegisterType((*MyProjectOrgSearchResponse)(nil), "caos.zitadel.auth.api.v1.MyProjectOrgSearchResponse")
+ proto.RegisterType((*Org)(nil), "caos.zitadel.auth.api.v1.Org")
+ proto.RegisterType((*MyPermissions)(nil), "caos.zitadel.auth.api.v1.MyPermissions")
}
-var (
- file_auth_proto_rawDescOnce sync.Once
- file_auth_proto_rawDescData = file_auth_proto_rawDesc
-)
+func init() { proto.RegisterFile("auth.proto", fileDescriptor_8bbd6f3875b0e874) }
-func file_auth_proto_rawDescGZIP() []byte {
- file_auth_proto_rawDescOnce.Do(func() {
- file_auth_proto_rawDescData = protoimpl.X.CompressGZIP(file_auth_proto_rawDescData)
- })
- return file_auth_proto_rawDescData
-}
-
-var file_auth_proto_enumTypes = make([]protoimpl.EnumInfo, 9)
-var file_auth_proto_msgTypes = make([]protoimpl.MessageInfo, 35)
-var file_auth_proto_goTypes = []interface{}{
- (UserSessionState)(0), // 0: caos.zitadel.auth.api.v1.UserSessionState
- (OIDCResponseType)(0), // 1: caos.zitadel.auth.api.v1.OIDCResponseType
- (UserState)(0), // 2: caos.zitadel.auth.api.v1.UserState
- (Gender)(0), // 3: caos.zitadel.auth.api.v1.Gender
- (MfaType)(0), // 4: caos.zitadel.auth.api.v1.MfaType
- (MFAState)(0), // 5: caos.zitadel.auth.api.v1.MFAState
- (UserGrantSearchKey)(0), // 6: caos.zitadel.auth.api.v1.UserGrantSearchKey
- (MyProjectOrgSearchKey)(0), // 7: caos.zitadel.auth.api.v1.MyProjectOrgSearchKey
- (SearchMethod)(0), // 8: caos.zitadel.auth.api.v1.SearchMethod
- (*UserSessionViews)(nil), // 9: caos.zitadel.auth.api.v1.UserSessionViews
- (*UserSessionView)(nil), // 10: caos.zitadel.auth.api.v1.UserSessionView
- (*User)(nil), // 11: caos.zitadel.auth.api.v1.User
- (*UserProfile)(nil), // 12: caos.zitadel.auth.api.v1.UserProfile
- (*UserProfileView)(nil), // 13: caos.zitadel.auth.api.v1.UserProfileView
- (*UpdateUserProfileRequest)(nil), // 14: caos.zitadel.auth.api.v1.UpdateUserProfileRequest
- (*UserEmail)(nil), // 15: caos.zitadel.auth.api.v1.UserEmail
- (*UserEmailView)(nil), // 16: caos.zitadel.auth.api.v1.UserEmailView
- (*VerifyMyUserEmailRequest)(nil), // 17: caos.zitadel.auth.api.v1.VerifyMyUserEmailRequest
- (*VerifyUserEmailRequest)(nil), // 18: caos.zitadel.auth.api.v1.VerifyUserEmailRequest
- (*UpdateUserEmailRequest)(nil), // 19: caos.zitadel.auth.api.v1.UpdateUserEmailRequest
- (*UserPhone)(nil), // 20: caos.zitadel.auth.api.v1.UserPhone
- (*UserPhoneView)(nil), // 21: caos.zitadel.auth.api.v1.UserPhoneView
- (*UpdateUserPhoneRequest)(nil), // 22: caos.zitadel.auth.api.v1.UpdateUserPhoneRequest
- (*VerifyUserPhoneRequest)(nil), // 23: caos.zitadel.auth.api.v1.VerifyUserPhoneRequest
- (*UserAddress)(nil), // 24: caos.zitadel.auth.api.v1.UserAddress
- (*UserAddressView)(nil), // 25: caos.zitadel.auth.api.v1.UserAddressView
- (*UpdateUserAddressRequest)(nil), // 26: caos.zitadel.auth.api.v1.UpdateUserAddressRequest
- (*PasswordID)(nil), // 27: caos.zitadel.auth.api.v1.PasswordID
- (*PasswordRequest)(nil), // 28: caos.zitadel.auth.api.v1.PasswordRequest
- (*PasswordChange)(nil), // 29: caos.zitadel.auth.api.v1.PasswordChange
- (*VerifyMfaOtp)(nil), // 30: caos.zitadel.auth.api.v1.VerifyMfaOtp
- (*MultiFactors)(nil), // 31: caos.zitadel.auth.api.v1.MultiFactors
- (*MultiFactor)(nil), // 32: caos.zitadel.auth.api.v1.MultiFactor
- (*MfaOtpResponse)(nil), // 33: caos.zitadel.auth.api.v1.MfaOtpResponse
- (*OIDCClientAuth)(nil), // 34: caos.zitadel.auth.api.v1.OIDCClientAuth
- (*UserGrantSearchRequest)(nil), // 35: caos.zitadel.auth.api.v1.UserGrantSearchRequest
- (*UserGrantSearchQuery)(nil), // 36: caos.zitadel.auth.api.v1.UserGrantSearchQuery
- (*UserGrantSearchResponse)(nil), // 37: caos.zitadel.auth.api.v1.UserGrantSearchResponse
- (*UserGrantView)(nil), // 38: caos.zitadel.auth.api.v1.UserGrantView
- (*MyProjectOrgSearchRequest)(nil), // 39: caos.zitadel.auth.api.v1.MyProjectOrgSearchRequest
- (*MyProjectOrgSearchQuery)(nil), // 40: caos.zitadel.auth.api.v1.MyProjectOrgSearchQuery
- (*MyProjectOrgSearchResponse)(nil), // 41: caos.zitadel.auth.api.v1.MyProjectOrgSearchResponse
- (*Org)(nil), // 42: caos.zitadel.auth.api.v1.Org
- (*MyPermissions)(nil), // 43: caos.zitadel.auth.api.v1.MyPermissions
- (*timestamp.Timestamp)(nil), // 44: google.protobuf.Timestamp
- (*empty.Empty)(nil), // 45: google.protobuf.Empty
- (*_struct.Struct)(nil), // 46: google.protobuf.Struct
-}
-var file_auth_proto_depIdxs = []int32{
- 10, // 0: caos.zitadel.auth.api.v1.UserSessionViews.user_sessions:type_name -> caos.zitadel.auth.api.v1.UserSessionView
- 0, // 1: caos.zitadel.auth.api.v1.UserSessionView.auth_state:type_name -> caos.zitadel.auth.api.v1.UserSessionState
- 2, // 2: caos.zitadel.auth.api.v1.User.state:type_name -> caos.zitadel.auth.api.v1.UserState
- 44, // 3: caos.zitadel.auth.api.v1.User.creation_date:type_name -> google.protobuf.Timestamp
- 44, // 4: caos.zitadel.auth.api.v1.User.activation_date:type_name -> google.protobuf.Timestamp
- 44, // 5: caos.zitadel.auth.api.v1.User.change_date:type_name -> google.protobuf.Timestamp
- 44, // 6: caos.zitadel.auth.api.v1.User.last_login:type_name -> google.protobuf.Timestamp
- 44, // 7: caos.zitadel.auth.api.v1.User.password_changed:type_name -> google.protobuf.Timestamp
- 3, // 8: caos.zitadel.auth.api.v1.User.gender:type_name -> caos.zitadel.auth.api.v1.Gender
- 3, // 9: caos.zitadel.auth.api.v1.UserProfile.gender:type_name -> caos.zitadel.auth.api.v1.Gender
- 44, // 10: caos.zitadel.auth.api.v1.UserProfile.creation_date:type_name -> google.protobuf.Timestamp
- 44, // 11: caos.zitadel.auth.api.v1.UserProfile.change_date:type_name -> google.protobuf.Timestamp
- 3, // 12: caos.zitadel.auth.api.v1.UserProfileView.gender:type_name -> caos.zitadel.auth.api.v1.Gender
- 44, // 13: caos.zitadel.auth.api.v1.UserProfileView.creation_date:type_name -> google.protobuf.Timestamp
- 44, // 14: caos.zitadel.auth.api.v1.UserProfileView.change_date:type_name -> google.protobuf.Timestamp
- 3, // 15: caos.zitadel.auth.api.v1.UpdateUserProfileRequest.gender:type_name -> caos.zitadel.auth.api.v1.Gender
- 44, // 16: caos.zitadel.auth.api.v1.UserEmail.creation_date:type_name -> google.protobuf.Timestamp
- 44, // 17: caos.zitadel.auth.api.v1.UserEmail.change_date:type_name -> google.protobuf.Timestamp
- 44, // 18: caos.zitadel.auth.api.v1.UserEmailView.creation_date:type_name -> google.protobuf.Timestamp
- 44, // 19: caos.zitadel.auth.api.v1.UserEmailView.change_date:type_name -> google.protobuf.Timestamp
- 44, // 20: caos.zitadel.auth.api.v1.UserPhone.creation_date:type_name -> google.protobuf.Timestamp
- 44, // 21: caos.zitadel.auth.api.v1.UserPhone.change_date:type_name -> google.protobuf.Timestamp
- 44, // 22: caos.zitadel.auth.api.v1.UserPhoneView.creation_date:type_name -> google.protobuf.Timestamp
- 44, // 23: caos.zitadel.auth.api.v1.UserPhoneView.change_date:type_name -> google.protobuf.Timestamp
- 44, // 24: caos.zitadel.auth.api.v1.UserAddress.creation_date:type_name -> google.protobuf.Timestamp
- 44, // 25: caos.zitadel.auth.api.v1.UserAddress.change_date:type_name -> google.protobuf.Timestamp
- 44, // 26: caos.zitadel.auth.api.v1.UserAddressView.creation_date:type_name -> google.protobuf.Timestamp
- 44, // 27: caos.zitadel.auth.api.v1.UserAddressView.change_date:type_name -> google.protobuf.Timestamp
- 32, // 28: caos.zitadel.auth.api.v1.MultiFactors.mfas:type_name -> caos.zitadel.auth.api.v1.MultiFactor
- 4, // 29: caos.zitadel.auth.api.v1.MultiFactor.type:type_name -> caos.zitadel.auth.api.v1.MfaType
- 5, // 30: caos.zitadel.auth.api.v1.MultiFactor.state:type_name -> caos.zitadel.auth.api.v1.MFAState
- 5, // 31: caos.zitadel.auth.api.v1.MfaOtpResponse.state:type_name -> caos.zitadel.auth.api.v1.MFAState
- 6, // 32: caos.zitadel.auth.api.v1.UserGrantSearchRequest.sorting_column:type_name -> caos.zitadel.auth.api.v1.UserGrantSearchKey
- 36, // 33: caos.zitadel.auth.api.v1.UserGrantSearchRequest.queries:type_name -> caos.zitadel.auth.api.v1.UserGrantSearchQuery
- 6, // 34: caos.zitadel.auth.api.v1.UserGrantSearchQuery.key:type_name -> caos.zitadel.auth.api.v1.UserGrantSearchKey
- 8, // 35: caos.zitadel.auth.api.v1.UserGrantSearchQuery.method:type_name -> caos.zitadel.auth.api.v1.SearchMethod
- 38, // 36: caos.zitadel.auth.api.v1.UserGrantSearchResponse.result:type_name -> caos.zitadel.auth.api.v1.UserGrantView
- 40, // 37: caos.zitadel.auth.api.v1.MyProjectOrgSearchRequest.queries:type_name -> caos.zitadel.auth.api.v1.MyProjectOrgSearchQuery
- 7, // 38: caos.zitadel.auth.api.v1.MyProjectOrgSearchQuery.key:type_name -> caos.zitadel.auth.api.v1.MyProjectOrgSearchKey
- 8, // 39: caos.zitadel.auth.api.v1.MyProjectOrgSearchQuery.method:type_name -> caos.zitadel.auth.api.v1.SearchMethod
- 42, // 40: caos.zitadel.auth.api.v1.MyProjectOrgSearchResponse.result:type_name -> caos.zitadel.auth.api.v1.Org
- 45, // 41: caos.zitadel.auth.api.v1.AuthService.Healthz:input_type -> google.protobuf.Empty
- 45, // 42: caos.zitadel.auth.api.v1.AuthService.Ready:input_type -> google.protobuf.Empty
- 45, // 43: caos.zitadel.auth.api.v1.AuthService.Validate:input_type -> google.protobuf.Empty
- 45, // 44: caos.zitadel.auth.api.v1.AuthService.GetMyUserSessions:input_type -> google.protobuf.Empty
- 45, // 45: caos.zitadel.auth.api.v1.AuthService.GetMyUserProfile:input_type -> google.protobuf.Empty
- 14, // 46: caos.zitadel.auth.api.v1.AuthService.UpdateMyUserProfile:input_type -> caos.zitadel.auth.api.v1.UpdateUserProfileRequest
- 45, // 47: caos.zitadel.auth.api.v1.AuthService.GetMyUserEmail:input_type -> google.protobuf.Empty
- 19, // 48: caos.zitadel.auth.api.v1.AuthService.ChangeMyUserEmail:input_type -> caos.zitadel.auth.api.v1.UpdateUserEmailRequest
- 17, // 49: caos.zitadel.auth.api.v1.AuthService.VerifyMyUserEmail:input_type -> caos.zitadel.auth.api.v1.VerifyMyUserEmailRequest
- 45, // 50: caos.zitadel.auth.api.v1.AuthService.ResendMyEmailVerificationMail:input_type -> google.protobuf.Empty
- 45, // 51: caos.zitadel.auth.api.v1.AuthService.GetMyUserPhone:input_type -> google.protobuf.Empty
- 22, // 52: caos.zitadel.auth.api.v1.AuthService.ChangeMyUserPhone:input_type -> caos.zitadel.auth.api.v1.UpdateUserPhoneRequest
- 23, // 53: caos.zitadel.auth.api.v1.AuthService.VerifyMyUserPhone:input_type -> caos.zitadel.auth.api.v1.VerifyUserPhoneRequest
- 45, // 54: caos.zitadel.auth.api.v1.AuthService.ResendMyPhoneVerificationCode:input_type -> google.protobuf.Empty
- 45, // 55: caos.zitadel.auth.api.v1.AuthService.GetMyUserAddress:input_type -> google.protobuf.Empty
- 26, // 56: caos.zitadel.auth.api.v1.AuthService.UpdateMyUserAddress:input_type -> caos.zitadel.auth.api.v1.UpdateUserAddressRequest
- 45, // 57: caos.zitadel.auth.api.v1.AuthService.GetMyMfas:input_type -> google.protobuf.Empty
- 29, // 58: caos.zitadel.auth.api.v1.AuthService.ChangeMyPassword:input_type -> caos.zitadel.auth.api.v1.PasswordChange
- 45, // 59: caos.zitadel.auth.api.v1.AuthService.AddMfaOTP:input_type -> google.protobuf.Empty
- 30, // 60: caos.zitadel.auth.api.v1.AuthService.VerifyMfaOTP:input_type -> caos.zitadel.auth.api.v1.VerifyMfaOtp
- 45, // 61: caos.zitadel.auth.api.v1.AuthService.RemoveMfaOTP:input_type -> google.protobuf.Empty
- 35, // 62: caos.zitadel.auth.api.v1.AuthService.SearchMyUserGrant:input_type -> caos.zitadel.auth.api.v1.UserGrantSearchRequest
- 39, // 63: caos.zitadel.auth.api.v1.AuthService.SearchMyProjectOrgs:input_type -> caos.zitadel.auth.api.v1.MyProjectOrgSearchRequest
- 45, // 64: caos.zitadel.auth.api.v1.AuthService.GetMyZitadelPermissions:input_type -> google.protobuf.Empty
- 45, // 65: caos.zitadel.auth.api.v1.AuthService.Healthz:output_type -> google.protobuf.Empty
- 45, // 66: caos.zitadel.auth.api.v1.AuthService.Ready:output_type -> google.protobuf.Empty
- 46, // 67: caos.zitadel.auth.api.v1.AuthService.Validate:output_type -> google.protobuf.Struct
- 9, // 68: caos.zitadel.auth.api.v1.AuthService.GetMyUserSessions:output_type -> caos.zitadel.auth.api.v1.UserSessionViews
- 13, // 69: caos.zitadel.auth.api.v1.AuthService.GetMyUserProfile:output_type -> caos.zitadel.auth.api.v1.UserProfileView
- 12, // 70: caos.zitadel.auth.api.v1.AuthService.UpdateMyUserProfile:output_type -> caos.zitadel.auth.api.v1.UserProfile
- 16, // 71: caos.zitadel.auth.api.v1.AuthService.GetMyUserEmail:output_type -> caos.zitadel.auth.api.v1.UserEmailView
- 15, // 72: caos.zitadel.auth.api.v1.AuthService.ChangeMyUserEmail:output_type -> caos.zitadel.auth.api.v1.UserEmail
- 45, // 73: caos.zitadel.auth.api.v1.AuthService.VerifyMyUserEmail:output_type -> google.protobuf.Empty
- 45, // 74: caos.zitadel.auth.api.v1.AuthService.ResendMyEmailVerificationMail:output_type -> google.protobuf.Empty
- 21, // 75: caos.zitadel.auth.api.v1.AuthService.GetMyUserPhone:output_type -> caos.zitadel.auth.api.v1.UserPhoneView
- 20, // 76: caos.zitadel.auth.api.v1.AuthService.ChangeMyUserPhone:output_type -> caos.zitadel.auth.api.v1.UserPhone
- 45, // 77: caos.zitadel.auth.api.v1.AuthService.VerifyMyUserPhone:output_type -> google.protobuf.Empty
- 45, // 78: caos.zitadel.auth.api.v1.AuthService.ResendMyPhoneVerificationCode:output_type -> google.protobuf.Empty
- 25, // 79: caos.zitadel.auth.api.v1.AuthService.GetMyUserAddress:output_type -> caos.zitadel.auth.api.v1.UserAddressView
- 24, // 80: caos.zitadel.auth.api.v1.AuthService.UpdateMyUserAddress:output_type -> caos.zitadel.auth.api.v1.UserAddress
- 31, // 81: caos.zitadel.auth.api.v1.AuthService.GetMyMfas:output_type -> caos.zitadel.auth.api.v1.MultiFactors
- 45, // 82: caos.zitadel.auth.api.v1.AuthService.ChangeMyPassword:output_type -> google.protobuf.Empty
- 33, // 83: caos.zitadel.auth.api.v1.AuthService.AddMfaOTP:output_type -> caos.zitadel.auth.api.v1.MfaOtpResponse
- 45, // 84: caos.zitadel.auth.api.v1.AuthService.VerifyMfaOTP:output_type -> google.protobuf.Empty
- 45, // 85: caos.zitadel.auth.api.v1.AuthService.RemoveMfaOTP:output_type -> google.protobuf.Empty
- 37, // 86: caos.zitadel.auth.api.v1.AuthService.SearchMyUserGrant:output_type -> caos.zitadel.auth.api.v1.UserGrantSearchResponse
- 41, // 87: caos.zitadel.auth.api.v1.AuthService.SearchMyProjectOrgs:output_type -> caos.zitadel.auth.api.v1.MyProjectOrgSearchResponse
- 43, // 88: caos.zitadel.auth.api.v1.AuthService.GetMyZitadelPermissions:output_type -> caos.zitadel.auth.api.v1.MyPermissions
- 65, // [65:89] is the sub-list for method output_type
- 41, // [41:65] is the sub-list for method input_type
- 41, // [41:41] is the sub-list for extension type_name
- 41, // [41:41] is the sub-list for extension extendee
- 0, // [0:41] is the sub-list for field type_name
-}
-
-func init() { file_auth_proto_init() }
-func file_auth_proto_init() {
- if File_auth_proto != nil {
- return
- }
- if !protoimpl.UnsafeEnabled {
- file_auth_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserSessionViews); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserSessionView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*User); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserProfile); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserProfileView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UpdateUserProfileRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserEmail); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserEmailView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*VerifyMyUserEmailRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*VerifyUserEmailRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UpdateUserEmailRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserPhone); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserPhoneView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UpdateUserPhoneRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*VerifyUserPhoneRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserAddress); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserAddressView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UpdateUserAddressRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordChange); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*VerifyMfaOtp); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MultiFactors); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MultiFactor); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MfaOtpResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OIDCClientAuth); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MyProjectOrgSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MyProjectOrgSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MyProjectOrgSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Org); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_auth_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MyPermissions); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- }
- type x struct{}
- out := protoimpl.TypeBuilder{
- File: protoimpl.DescBuilder{
- GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_auth_proto_rawDesc,
- NumEnums: 9,
- NumMessages: 35,
- NumExtensions: 0,
- NumServices: 1,
- },
- GoTypes: file_auth_proto_goTypes,
- DependencyIndexes: file_auth_proto_depIdxs,
- EnumInfos: file_auth_proto_enumTypes,
- MessageInfos: file_auth_proto_msgTypes,
- }.Build()
- File_auth_proto = out.File
- file_auth_proto_rawDesc = nil
- file_auth_proto_goTypes = nil
- file_auth_proto_depIdxs = nil
+var fileDescriptor_8bbd6f3875b0e874 = []byte{
+ // 3106 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5a, 0xdd, 0x6f, 0x23, 0x57,
+ 0x15, 0xdf, 0xb1, 0x9d, 0xc4, 0x3e, 0xce, 0xc7, 0xe4, 0x6e, 0x36, 0x99, 0x38, 0xfb, 0x91, 0x9d,
+ 0xed, 0xb6, 0x59, 0xb3, 0x1b, 0x77, 0xd3, 0x56, 0xec, 0x6e, 0x25, 0x2a, 0x6f, 0x3c, 0x9b, 0x98,
+ 0xc4, 0x1f, 0x1d, 0x3b, 0x5b, 0xb6, 0x12, 0xb2, 0x66, 0x3d, 0x37, 0xce, 0xb4, 0xb6, 0xc7, 0x3b,
+ 0x33, 0xce, 0xca, 0x95, 0xa8, 0x44, 0x41, 0x02, 0x89, 0x4f, 0x15, 0x84, 0xc4, 0x23, 0x12, 0x0f,
+ 0x48, 0x48, 0x88, 0x17, 0x40, 0x08, 0xfe, 0x00, 0x5e, 0x78, 0x40, 0x48, 0x48, 0x88, 0x17, 0x84,
+ 0xf8, 0x17, 0x10, 0xa2, 0xbc, 0xa0, 0xfb, 0x31, 0xf6, 0x8c, 0xc7, 0x63, 0x3b, 0xbb, 0x2a, 0xaa,
+ 0xaa, 0x3e, 0x79, 0xee, 0x39, 0xe7, 0x9e, 0xfb, 0xbb, 0xe7, 0xfc, 0xee, 0xc7, 0x1c, 0x0f, 0x80,
+ 0xd6, 0x75, 0x4e, 0xb6, 0x3b, 0x96, 0xe9, 0x98, 0x48, 0xaa, 0x6b, 0xa6, 0xbd, 0xfd, 0x9e, 0xe1,
+ 0x68, 0x3a, 0x6e, 0x6e, 0x53, 0x85, 0xd6, 0x31, 0xb6, 0x4f, 0x6f, 0xa7, 0x2e, 0x36, 0x4c, 0xb3,
+ 0xd1, 0xc4, 0x19, 0xad, 0x63, 0x64, 0xb4, 0x76, 0xdb, 0x74, 0x34, 0xc7, 0x30, 0xdb, 0x36, 0xeb,
+ 0x97, 0xda, 0xe0, 0x5a, 0xda, 0x7a, 0xdc, 0x3d, 0xce, 0xe0, 0x56, 0xc7, 0xe9, 0x71, 0xe5, 0xc5,
+ 0x61, 0xa5, 0xed, 0x58, 0xdd, 0xba, 0xc3, 0xb5, 0x57, 0x86, 0xb5, 0x8e, 0xd1, 0xc2, 0xb6, 0xa3,
+ 0xb5, 0x3a, 0xdc, 0x60, 0xed, 0x54, 0x6b, 0x1a, 0xba, 0xe6, 0xe0, 0x8c, 0xfb, 0xc0, 0x15, 0x37,
+ 0xe9, 0x4f, 0xfd, 0x56, 0x03, 0xb7, 0x6f, 0xd9, 0x4f, 0xb5, 0x46, 0x03, 0x5b, 0x19, 0xb3, 0x43,
+ 0x61, 0x8d, 0x80, 0x28, 0x91, 0xd9, 0x30, 0xb5, 0x6b, 0xc5, 0x34, 0xf2, 0x63, 0x10, 0x8f, 0x6c,
+ 0x6c, 0x55, 0xb0, 0x6d, 0x1b, 0x66, 0xfb, 0xa1, 0x81, 0x9f, 0xda, 0xa8, 0x08, 0x0b, 0x5d, 0x1b,
+ 0x5b, 0x35, 0x9b, 0x09, 0x6d, 0x49, 0xd8, 0x8c, 0x6e, 0x25, 0x77, 0x6e, 0x6c, 0x87, 0x05, 0x68,
+ 0x7b, 0xc8, 0x85, 0x3a, 0xdf, 0x1d, 0x08, 0x6c, 0xf9, 0xaf, 0x02, 0x2c, 0x0d, 0x59, 0xa0, 0x45,
+ 0x88, 0x18, 0xba, 0x24, 0x6c, 0x0a, 0x5b, 0x09, 0x35, 0x62, 0xe8, 0x68, 0x1d, 0xe2, 0x5a, 0x03,
+ 0xb7, 0x9d, 0x9a, 0xa1, 0x4b, 0x11, 0x2a, 0x9d, 0xa3, 0xed, 0xbc, 0x8e, 0xf2, 0x2c, 0x4b, 0x35,
+ 0xdb, 0xd1, 0x1c, 0x2c, 0x45, 0x37, 0x85, 0xad, 0xc5, 0x9d, 0xf4, 0x54, 0x58, 0x2a, 0xa4, 0x87,
+ 0x9a, 0x20, 0x5a, 0xfa, 0x88, 0xd6, 0x60, 0x8e, 0xce, 0xcc, 0xd0, 0xa5, 0x18, 0x1d, 0x64, 0x96,
+ 0x34, 0xf3, 0x3a, 0xda, 0x80, 0x04, 0x55, 0xb4, 0xb5, 0x16, 0x96, 0x66, 0xa8, 0x2a, 0x4e, 0x04,
+ 0x45, 0xad, 0x85, 0x51, 0x0a, 0xe2, 0x36, 0x7e, 0xd2, 0xc5, 0xed, 0x3a, 0x96, 0x66, 0x37, 0x85,
+ 0xad, 0x98, 0xda, 0x6f, 0xcb, 0x7f, 0x8b, 0x43, 0x8c, 0x8c, 0x18, 0x98, 0xd0, 0x5d, 0x98, 0x61,
+ 0x80, 0x23, 0x14, 0xf0, 0xb5, 0x09, 0x80, 0x29, 0x52, 0xd6, 0x03, 0xbd, 0x01, 0x0b, 0x75, 0x0b,
+ 0xd3, 0x04, 0xd6, 0x74, 0x77, 0xce, 0xc9, 0x9d, 0xd4, 0x36, 0x63, 0xcb, 0xb6, 0xcb, 0x96, 0xed,
+ 0xaa, 0xcb, 0x16, 0x75, 0xde, 0xed, 0x90, 0x23, 0x0e, 0x76, 0x61, 0x49, 0xab, 0x3b, 0xc6, 0xa9,
+ 0xc7, 0x45, 0x6c, 0xa2, 0x8b, 0xc5, 0x41, 0x17, 0xea, 0xe4, 0x75, 0x48, 0xd6, 0x4f, 0xb4, 0x76,
+ 0x03, 0x33, 0x07, 0x33, 0x13, 0x1d, 0x00, 0x33, 0xa7, 0x9d, 0xef, 0x02, 0x34, 0x35, 0xdb, 0xa9,
+ 0x35, 0xcd, 0x86, 0xd1, 0xa6, 0x41, 0x1b, 0xdf, 0x37, 0x41, 0xac, 0x0f, 0x89, 0x31, 0x52, 0x40,
+ 0xec, 0x68, 0xb6, 0xfd, 0xd4, 0xb4, 0xf4, 0x1a, 0xf3, 0xa8, 0x4b, 0x73, 0x13, 0x1d, 0x2c, 0xb9,
+ 0x7d, 0x76, 0x59, 0x17, 0x7f, 0x46, 0xe3, 0x43, 0x19, 0xbd, 0x04, 0x70, 0x6c, 0x58, 0xb6, 0xc3,
+ 0xb4, 0x09, 0xaa, 0x4d, 0x50, 0x09, 0x55, 0x6f, 0x00, 0xc5, 0xc3, 0xb4, 0xc0, 0xfa, 0x12, 0x81,
+ 0xab, 0x6c, 0x1b, 0xf5, 0x77, 0x99, 0x32, 0xc9, 0x94, 0x44, 0x40, 0x95, 0x57, 0x61, 0x5e, 0x37,
+ 0xec, 0x4e, 0x53, 0xeb, 0x31, 0xfd, 0x3c, 0xd5, 0x27, 0xb9, 0x8c, 0x9a, 0xdc, 0x02, 0xd4, 0xb1,
+ 0xf0, 0x31, 0xb6, 0x2c, 0xac, 0xd7, 0x9a, 0x5a, 0xbb, 0xd1, 0xd5, 0x1a, 0x58, 0x5a, 0xa0, 0x86,
+ 0xcb, 0x7d, 0xcd, 0x21, 0x57, 0xa0, 0x3b, 0x30, 0xdb, 0xc0, 0x6d, 0x1d, 0x5b, 0xd2, 0x22, 0x25,
+ 0xd2, 0x66, 0x38, 0x91, 0xf6, 0xa8, 0x9d, 0xca, 0xed, 0xd1, 0x0a, 0xcc, 0xe0, 0x96, 0x66, 0x34,
+ 0xa5, 0x25, 0xea, 0x9b, 0x35, 0x50, 0x1a, 0x96, 0x0d, 0xbb, 0x46, 0x9f, 0x6b, 0xa7, 0xd8, 0x32,
+ 0x8e, 0x0d, 0xac, 0x4b, 0xe2, 0xa6, 0xb0, 0x15, 0x57, 0x97, 0x0c, 0x5b, 0x21, 0xf2, 0x87, 0x5c,
+ 0x4c, 0x3c, 0x74, 0x4e, 0xcc, 0x36, 0x96, 0x96, 0x99, 0x07, 0xda, 0xe0, 0x1e, 0xe8, 0xf3, 0xc0,
+ 0x03, 0x72, 0x3d, 0x94, 0x89, 0xbc, 0xef, 0x41, 0x82, 0xb9, 0xba, 0xd9, 0x6d, 0x3b, 0x56, 0x4f,
+ 0x3a, 0xcf, 0x56, 0x35, 0x6f, 0x92, 0x45, 0xd5, 0x34, 0xeb, 0x5a, 0xd3, 0x70, 0x7a, 0xd2, 0x0a,
+ 0x0f, 0x31, 0x6f, 0xa3, 0x2b, 0x90, 0xec, 0x98, 0xb6, 0xa3, 0x35, 0x6b, 0x75, 0x53, 0xc7, 0xd2,
+ 0x05, 0xaa, 0x06, 0x26, 0xda, 0x35, 0x75, 0x8c, 0x56, 0x61, 0xd6, 0xc2, 0x0d, 0xc3, 0x6c, 0x4b,
+ 0xab, 0x6c, 0x19, 0xb3, 0x16, 0xba, 0x0e, 0x8b, 0xb6, 0x63, 0x61, 0xec, 0xd4, 0x34, 0x5d, 0xb7,
+ 0xb0, 0x6d, 0x4b, 0x6b, 0x54, 0xbf, 0xc0, 0xa4, 0x59, 0x26, 0x44, 0x77, 0x40, 0x1a, 0xa2, 0x58,
+ 0xcd, 0xc2, 0x4f, 0xba, 0x86, 0x85, 0x75, 0x49, 0xa2, 0x13, 0x59, 0xf5, 0xd3, 0x49, 0xe5, 0x5a,
+ 0xdf, 0x56, 0xb0, 0xee, 0xdf, 0x0a, 0x08, 0x6a, 0x4a, 0x77, 0x9a, 0x79, 0x5b, 0x4a, 0x6d, 0x46,
+ 0x09, 0x6a, 0x2a, 0x22, 0x89, 0xb7, 0xd1, 0xcb, 0xb0, 0xe2, 0xc9, 0x7c, 0xdf, 0x54, 0xda, 0xa0,
+ 0x18, 0x07, 0xac, 0x38, 0x74, 0xbb, 0xc8, 0xbf, 0x8d, 0x42, 0x92, 0x6c, 0x0f, 0x65, 0xcb, 0x3c,
+ 0x36, 0x9a, 0x38, 0xb0, 0xc9, 0xf8, 0x48, 0x1e, 0x19, 0x4b, 0xf2, 0xe8, 0x58, 0x92, 0xc7, 0xc6,
+ 0x91, 0x7c, 0x66, 0x02, 0xc9, 0x67, 0xa7, 0x25, 0xf9, 0xdc, 0x64, 0x92, 0xc7, 0xcf, 0x48, 0x72,
+ 0x6f, 0x42, 0x12, 0x43, 0x09, 0x09, 0xec, 0xa3, 0x70, 0xc6, 0x7d, 0x74, 0x68, 0x0b, 0x4c, 0x9e,
+ 0x65, 0x0b, 0x94, 0xbf, 0x1f, 0x63, 0xa7, 0x1e, 0xcf, 0xdd, 0xc8, 0x53, 0xef, 0xb3, 0xfc, 0x7d,
+ 0x62, 0xf3, 0x37, 0xbc, 0x9c, 0xe7, 0xa7, 0x5e, 0xce, 0x0b, 0xa1, 0xcb, 0xf9, 0xdb, 0x11, 0x90,
+ 0x8e, 0x3a, 0x04, 0x8b, 0x87, 0x18, 0x64, 0x6f, 0xc1, 0xb6, 0x83, 0x6e, 0xf8, 0xd2, 0x4d, 0x39,
+ 0x72, 0x1f, 0x3e, 0xba, 0x3f, 0x67, 0xcd, 0x88, 0x82, 0xf4, 0x07, 0xc1, 0x9b, 0xfa, 0x97, 0xbc,
+ 0xa9, 0x8f, 0x04, 0x2c, 0x07, 0x34, 0x78, 0xc9, 0x4b, 0x83, 0x68, 0xd0, 0xb0, 0x4f, 0x89, 0xbb,
+ 0x23, 0xf3, 0x1d, 0x0b, 0xf4, 0x18, 0x9b, 0xfb, 0x99, 0xb3, 0xe5, 0x5e, 0xfe, 0x97, 0x00, 0x09,
+ 0x12, 0x08, 0x7a, 0xe8, 0x04, 0xd6, 0x46, 0xff, 0xf8, 0x8a, 0x78, 0x8f, 0xaf, 0x2d, 0x18, 0x3e,
+ 0xa5, 0xe8, 0xbc, 0x46, 0x1c, 0x5e, 0x5e, 0x66, 0xc5, 0x26, 0x31, 0x6b, 0xe6, 0xf9, 0x98, 0x35,
+ 0x7b, 0xa6, 0x9d, 0xe1, 0x3f, 0x02, 0x2c, 0xf4, 0xe7, 0x3d, 0x72, 0x5f, 0xf8, 0xf4, 0xce, 0xfd,
+ 0x1e, 0x48, 0x14, 0x65, 0xaf, 0xd0, 0xeb, 0x87, 0xc0, 0x5d, 0x01, 0x97, 0x21, 0x46, 0xcf, 0xfb,
+ 0x20, 0xf7, 0xa9, 0x5c, 0xde, 0x87, 0x55, 0xd6, 0x37, 0xd0, 0x73, 0x38, 0x7e, 0xae, 0xa7, 0x48,
+ 0x88, 0xa7, 0x7b, 0xb0, 0x3a, 0x58, 0x87, 0x3e, 0x4f, 0x9b, 0x6e, 0xe4, 0x83, 0x20, 0x98, 0x42,
+ 0xfe, 0x37, 0x67, 0x2d, 0xbd, 0xe8, 0x8c, 0xca, 0x1c, 0xbb, 0x32, 0x45, 0x26, 0x5e, 0x99, 0xa2,
+ 0xa3, 0xaf, 0x4c, 0x9f, 0xdc, 0xdc, 0xfd, 0x97, 0xf3, 0x96, 0xe1, 0x0d, 0xe1, 0xed, 0xa7, 0x76,
+ 0xf6, 0x77, 0xbd, 0x9c, 0xa1, 0xa0, 0x5d, 0xce, 0x5c, 0x71, 0x67, 0xcd, 0x38, 0x93, 0xf8, 0xe8,
+ 0xfe, 0xac, 0x15, 0x13, 0x05, 0x69, 0x85, 0x07, 0x40, 0xbe, 0xe3, 0x25, 0xae, 0xaf, 0xeb, 0x24,
+ 0xca, 0xff, 0x31, 0xc2, 0x2e, 0x80, 0xee, 0xcd, 0x75, 0x38, 0xe0, 0x9e, 0xfb, 0x75, 0x24, 0xfc,
+ 0x7e, 0x1d, 0x1d, 0x7f, 0xbf, 0x8e, 0x8d, 0xb9, 0x5f, 0xcf, 0x4c, 0xb8, 0x5f, 0xcf, 0x8e, 0xba,
+ 0x5f, 0x7b, 0x93, 0x38, 0x37, 0x29, 0x89, 0xf1, 0xe7, 0x4b, 0x62, 0xe2, 0x4c, 0x49, 0xfc, 0x53,
+ 0x84, 0x5d, 0xca, 0x38, 0xd2, 0x91, 0x24, 0xfe, 0x2c, 0xa6, 0x67, 0x8b, 0xe9, 0x3f, 0x04, 0xef,
+ 0xad, 0x86, 0xe3, 0x75, 0x09, 0x2e, 0x0f, 0x82, 0xc9, 0x38, 0x1e, 0xff, 0xe8, 0xfe, 0x8c, 0x15,
+ 0x25, 0x0c, 0xef, 0x87, 0xf5, 0x05, 0x4f, 0x58, 0x23, 0x43, 0x46, 0x83, 0x00, 0xdf, 0xf0, 0x07,
+ 0x38, 0x3a, 0x64, 0xe8, 0x0d, 0xf5, 0x66, 0x3f, 0xd4, 0xb1, 0x21, 0x2b, 0x37, 0xe8, 0x99, 0x40,
+ 0xd0, 0x67, 0x86, 0x2c, 0xfd, 0xe1, 0x97, 0x2f, 0x02, 0x94, 0xf9, 0x2b, 0x61, 0x3e, 0x37, 0x4c,
+ 0x19, 0xf9, 0x0e, 0x2c, 0xb9, 0x5a, 0x77, 0xe2, 0xd7, 0x21, 0xee, 0xbe, 0x43, 0x0e, 0xef, 0x0b,
+ 0xfb, 0x6a, 0x5f, 0x25, 0x37, 0x61, 0xb1, 0xec, 0x7b, 0xd5, 0x44, 0x37, 0x61, 0xde, 0x6c, 0xea,
+ 0xb5, 0xf0, 0xce, 0x49, 0xb3, 0xa9, 0xbb, 0x7d, 0x88, 0x75, 0x1b, 0x3f, 0x1d, 0x58, 0x47, 0x02,
+ 0xd6, 0x6d, 0xfc, 0xd4, 0xb5, 0x96, 0x65, 0x98, 0xe7, 0xa7, 0xef, 0xb1, 0x56, 0x72, 0x3a, 0x08,
+ 0x79, 0xb7, 0x1f, 0xbe, 0xe5, 0xe4, 0x61, 0xbe, 0xd0, 0x6d, 0x3a, 0xc6, 0x03, 0xad, 0xee, 0x98,
+ 0x96, 0x8d, 0xee, 0x42, 0xac, 0x75, 0xac, 0xb9, 0x45, 0xc0, 0xeb, 0xe1, 0xb7, 0x3b, 0x4f, 0x2f,
+ 0x95, 0x76, 0x91, 0xdf, 0x87, 0xa4, 0x47, 0x88, 0x5e, 0x83, 0x98, 0xd3, 0xeb, 0xb0, 0xd1, 0x16,
+ 0x77, 0xae, 0x8e, 0xf1, 0x74, 0xac, 0x55, 0x7b, 0x1d, 0xac, 0x52, 0x73, 0x74, 0xc7, 0x5f, 0x49,
+ 0x93, 0xc7, 0xf4, 0x7b, 0x90, 0xf5, 0x16, 0xd2, 0xe4, 0xef, 0x08, 0xb0, 0xc8, 0x66, 0xaa, 0x62,
+ 0xbb, 0x63, 0xb6, 0x6d, 0x5f, 0x05, 0x50, 0xf0, 0x55, 0x00, 0x45, 0x88, 0x76, 0x2d, 0xf7, 0xc2,
+ 0x45, 0x1e, 0xc9, 0x82, 0xb5, 0x71, 0xdd, 0xc2, 0x0e, 0x5f, 0xeb, 0xbc, 0x35, 0xc0, 0x13, 0x3b,
+ 0x2b, 0x1e, 0x15, 0x16, 0x4b, 0xf9, 0xdc, 0xee, 0x6e, 0xd3, 0xc0, 0x6d, 0x27, 0xdb, 0x75, 0x4e,
+ 0xc8, 0x7b, 0x5a, 0x9d, 0xb6, 0x06, 0x80, 0xe2, 0x4c, 0x90, 0xd7, 0xd1, 0x35, 0x58, 0xe0, 0x4a,
+ 0x8e, 0x83, 0x81, 0x9b, 0x67, 0xc2, 0x0a, 0x95, 0xc9, 0x5f, 0x8d, 0xc0, 0x2a, 0x59, 0x77, 0x7b,
+ 0x96, 0x46, 0x64, 0x9a, 0x55, 0x3f, 0x71, 0x29, 0xb8, 0x0a, 0xb3, 0xe6, 0xf1, 0xb1, 0x8d, 0x1d,
+ 0xea, 0x39, 0xa6, 0xf2, 0x16, 0x39, 0xa5, 0x9b, 0x46, 0xcb, 0x60, 0xfe, 0x62, 0x2a, 0x6b, 0xa0,
+ 0x2f, 0xc3, 0xa2, 0x6d, 0x5a, 0x8e, 0xd1, 0x6e, 0xd4, 0xea, 0x66, 0xb3, 0xdb, 0x6a, 0xf3, 0x52,
+ 0xeb, 0xcd, 0xf1, 0x95, 0x4b, 0xcf, 0xb8, 0x07, 0xb8, 0x47, 0x17, 0xd0, 0x07, 0x42, 0x64, 0xf3,
+ 0x9c, 0xba, 0xc0, 0xbd, 0xed, 0x52, 0x67, 0x24, 0xbe, 0x9a, 0x5d, 0xa7, 0x31, 0x8b, 0xab, 0xe4,
+ 0x11, 0xed, 0xc3, 0xdc, 0x93, 0x2e, 0xb6, 0x0c, 0x4c, 0x16, 0x1f, 0xe1, 0xd6, 0xf6, 0xd4, 0x23,
+ 0xbd, 0xd9, 0xc5, 0x56, 0x4f, 0x75, 0xbb, 0xcb, 0xbf, 0x16, 0x60, 0x65, 0x94, 0x05, 0xda, 0x87,
+ 0xe8, 0xbb, 0xb8, 0xc7, 0x09, 0xf7, 0xac, 0x13, 0x21, 0x2e, 0xd0, 0x17, 0x60, 0xb6, 0x85, 0x9d,
+ 0x13, 0x53, 0xe7, 0x2c, 0x7c, 0x31, 0xdc, 0x19, 0xf3, 0x51, 0xa0, 0xd6, 0x2a, 0xef, 0x45, 0x62,
+ 0x7e, 0xaa, 0x35, 0xbb, 0xee, 0x7b, 0x3c, 0x6b, 0xc8, 0x3f, 0x17, 0x60, 0x2d, 0x90, 0x3c, 0xce,
+ 0xd4, 0xb3, 0x65, 0xef, 0x2a, 0xcc, 0x3b, 0x26, 0xd9, 0x1c, 0x2d, 0x6c, 0x77, 0x9b, 0x8c, 0xb2,
+ 0x31, 0x35, 0x49, 0x65, 0x2a, 0x15, 0xa1, 0x37, 0xc8, 0xae, 0x48, 0x95, 0x31, 0x1a, 0xee, 0x97,
+ 0xa6, 0x88, 0x07, 0xad, 0xe6, 0xf3, 0x6e, 0xf2, 0xb7, 0xf8, 0xfd, 0xaf, 0xaf, 0x21, 0x58, 0x4a,
+ 0x56, 0x23, 0xef, 0x52, 0x97, 0x35, 0xd0, 0x45, 0x48, 0x94, 0x2d, 0xf3, 0x1d, 0x5c, 0x77, 0xf2,
+ 0x6e, 0x31, 0x7f, 0x20, 0x20, 0xf3, 0x3a, 0xa2, 0x4b, 0xce, 0x5d, 0x56, 0xac, 0x45, 0x7c, 0xa9,
+ 0x66, 0x13, 0xdb, 0x14, 0x5d, 0x42, 0x65, 0x0d, 0x72, 0x18, 0x97, 0xac, 0x46, 0x71, 0x50, 0xc6,
+ 0x70, 0x9b, 0xf2, 0xcf, 0x04, 0x58, 0x2f, 0xf4, 0xb8, 0xdf, 0x92, 0xd5, 0x78, 0x1e, 0xee, 0x07,
+ 0xc9, 0x79, 0x30, 0x4c, 0xce, 0xdb, 0x63, 0x96, 0x79, 0x00, 0xc5, 0x10, 0x3f, 0x7f, 0x2f, 0xc0,
+ 0x5a, 0x88, 0x11, 0x3a, 0xf0, 0x52, 0x34, 0x73, 0x96, 0x41, 0xfe, 0x6f, 0x2c, 0xfd, 0xa9, 0x00,
+ 0xa9, 0x51, 0x91, 0xfe, 0xb8, 0x88, 0xfa, 0xda, 0x10, 0x51, 0x2f, 0x85, 0xcf, 0xa2, 0x64, 0x35,
+ 0xfa, 0xf4, 0xbc, 0x01, 0xd1, 0x92, 0xd5, 0x08, 0x5c, 0xe7, 0x10, 0xc4, 0x3c, 0xe5, 0x35, 0xfa,
+ 0x2c, 0xdf, 0x86, 0x85, 0x42, 0xaf, 0x8c, 0xad, 0x96, 0xc1, 0xfe, 0xa2, 0x42, 0x9b, 0x90, 0xec,
+ 0x0c, 0x9a, 0xf4, 0xac, 0x4b, 0xa8, 0x5e, 0x51, 0xda, 0xf2, 0xfd, 0x51, 0xc6, 0xfe, 0x4e, 0xda,
+ 0x84, 0x8b, 0x47, 0x15, 0x45, 0xad, 0x28, 0x95, 0x4a, 0xbe, 0x54, 0xac, 0x54, 0xb3, 0x55, 0xa5,
+ 0x76, 0x54, 0xac, 0x94, 0x95, 0xdd, 0xfc, 0x83, 0xbc, 0x92, 0x13, 0xcf, 0xa1, 0x0d, 0x58, 0x0b,
+ 0x58, 0x64, 0x77, 0xab, 0xf9, 0x87, 0x8a, 0x28, 0xa0, 0x2b, 0xb0, 0x11, 0x50, 0x56, 0x15, 0xb5,
+ 0x90, 0x2f, 0x66, 0xab, 0x4a, 0x4e, 0x8c, 0xa4, 0x9f, 0x80, 0x48, 0xce, 0x0b, 0x37, 0xd2, 0xe4,
+ 0x4c, 0x44, 0xeb, 0x70, 0x81, 0xca, 0x94, 0x4a, 0xb9, 0x54, 0xac, 0x28, 0xd5, 0x47, 0x65, 0xa5,
+ 0xb6, 0x5b, 0xca, 0x29, 0xe2, 0x39, 0x74, 0x09, 0xd6, 0x03, 0xaa, 0x7c, 0xae, 0x56, 0x2d, 0x1d,
+ 0x28, 0x45, 0x51, 0x40, 0xd7, 0xe0, 0x4a, 0xa8, 0x9a, 0x1b, 0x45, 0xd2, 0xbf, 0xe4, 0x6f, 0xb7,
+ 0x6c, 0x82, 0x29, 0x58, 0xa5, 0x08, 0xbd, 0x33, 0x53, 0xf8, 0xd4, 0x56, 0x40, 0x1c, 0xe8, 0xfa,
+ 0x73, 0x5a, 0x05, 0x34, 0x90, 0xe6, 0x8b, 0x5c, 0x1e, 0x41, 0x17, 0x60, 0x79, 0x20, 0xcf, 0x29,
+ 0x87, 0x0a, 0x99, 0x61, 0xd4, 0xef, 0xe4, 0xb0, 0xb4, 0x7b, 0xa0, 0xe4, 0xc4, 0x98, 0xdf, 0xb8,
+ 0x72, 0x54, 0x29, 0x2b, 0xc5, 0x9c, 0x38, 0xe3, 0x17, 0xe7, 0x8b, 0xf9, 0x6a, 0x3e, 0x7b, 0x28,
+ 0xce, 0xa6, 0xbf, 0x04, 0xb3, 0xac, 0xb0, 0x44, 0x06, 0xdf, 0x53, 0x8a, 0x39, 0x45, 0x1d, 0xca,
+ 0xc2, 0x32, 0x2c, 0x70, 0xf9, 0x03, 0xa5, 0x90, 0x3d, 0x24, 0x38, 0x97, 0x20, 0xc9, 0x45, 0x54,
+ 0x10, 0x41, 0x08, 0x16, 0xb9, 0x20, 0x97, 0x7f, 0x48, 0x92, 0x22, 0x46, 0xd3, 0x39, 0x98, 0xe3,
+ 0x57, 0x11, 0xb4, 0x06, 0xe7, 0x0b, 0x0f, 0xb2, 0x34, 0x66, 0x7e, 0xdf, 0x4b, 0x90, 0x74, 0x15,
+ 0x95, 0x42, 0x85, 0x79, 0x76, 0x05, 0xa5, 0x6a, 0x59, 0x8c, 0xa4, 0x8f, 0x21, 0xee, 0x5e, 0x04,
+ 0x90, 0x04, 0x2b, 0xe4, 0x79, 0x04, 0x53, 0x56, 0x01, 0xf5, 0x35, 0xc5, 0x52, 0xb5, 0xa6, 0x2a,
+ 0xd9, 0xdc, 0x23, 0x51, 0x20, 0xb8, 0xfa, 0x72, 0x26, 0x8b, 0x90, 0xa8, 0x79, 0x64, 0x85, 0xd2,
+ 0x43, 0x12, 0xcb, 0xf4, 0x29, 0xa0, 0xe0, 0x39, 0x86, 0x2e, 0x43, 0x2a, 0x28, 0xad, 0x1d, 0x15,
+ 0x0f, 0x8a, 0xa5, 0xb7, 0x8a, 0x8c, 0x34, 0x23, 0xf4, 0x25, 0x75, 0xaf, 0x96, 0xcf, 0x89, 0x02,
+ 0xba, 0x0a, 0x97, 0x46, 0xa8, 0xcb, 0x6a, 0xe9, 0x8b, 0xca, 0x6e, 0x95, 0x98, 0x44, 0xd2, 0x8f,
+ 0xe1, 0xc2, 0xc8, 0xcd, 0x09, 0x5d, 0x87, 0xab, 0x85, 0x47, 0xdc, 0xb4, 0xa4, 0xee, 0x55, 0x94,
+ 0xac, 0xba, 0xbb, 0x7f, 0xa0, 0x3c, 0x1a, 0x9a, 0xb9, 0x0c, 0x97, 0x47, 0x9b, 0x11, 0x10, 0xc5,
+ 0x6c, 0x41, 0x11, 0x85, 0xf4, 0x5f, 0x04, 0x98, 0xf7, 0xee, 0x58, 0x24, 0x1f, 0xcc, 0xb0, 0xa0,
+ 0x54, 0xf7, 0x4b, 0xb9, 0x9a, 0xf2, 0xe6, 0x51, 0xf6, 0xb0, 0x22, 0x9e, 0x43, 0x17, 0x41, 0xf2,
+ 0x29, 0x2a, 0xd5, 0xac, 0x5a, 0xad, 0xd4, 0xde, 0xca, 0x57, 0xf7, 0x45, 0x81, 0xac, 0x1e, 0x9f,
+ 0x76, 0xb7, 0x54, 0xac, 0x66, 0xf3, 0xc5, 0x8a, 0x18, 0x21, 0xcb, 0x63, 0x84, 0xc7, 0x5a, 0x7e,
+ 0xaf, 0x58, 0x52, 0x95, 0xda, 0x6e, 0x96, 0x30, 0x02, 0x6d, 0xc1, 0x0b, 0x61, 0xde, 0x7d, 0x96,
+ 0x31, 0x32, 0xf9, 0x91, 0x23, 0xf9, 0xcc, 0x66, 0x76, 0xfe, 0xbe, 0x0e, 0x49, 0x72, 0x13, 0xac,
+ 0x60, 0xeb, 0xd4, 0xa8, 0x63, 0x72, 0xee, 0xec, 0x63, 0xad, 0xe9, 0x9c, 0xbc, 0x87, 0x56, 0x03,
+ 0xef, 0x5f, 0x4a, 0xab, 0xe3, 0xf4, 0x52, 0x21, 0x72, 0x59, 0xfc, 0xe0, 0xcf, 0xff, 0xfc, 0x41,
+ 0x04, 0x50, 0x3c, 0x73, 0xc2, 0x3d, 0xec, 0xc1, 0x8c, 0x8a, 0x35, 0xbd, 0x77, 0x66, 0x57, 0x8b,
+ 0xd4, 0x55, 0x1c, 0xcd, 0x66, 0x2c, 0xda, 0xbf, 0x08, 0xf1, 0x87, 0xfc, 0xfb, 0x83, 0x50, 0x5f,
+ 0x6b, 0x01, 0x79, 0x85, 0x7e, 0xea, 0x20, 0x2f, 0x53, 0x67, 0x49, 0x94, 0xe8, 0x7f, 0xc3, 0x80,
+ 0xbe, 0x2e, 0xc0, 0xf2, 0x1e, 0x76, 0x58, 0x0d, 0xd0, 0xfd, 0x4e, 0x20, 0xd4, 0x73, 0x7a, 0xea,
+ 0x0f, 0x0f, 0x6c, 0xf9, 0x73, 0x1f, 0xfc, 0x4a, 0x5a, 0x82, 0x05, 0x62, 0x83, 0xdb, 0x8e, 0x51,
+ 0xd7, 0x1c, 0xac, 0xd3, 0xf1, 0x11, 0x12, 0x33, 0x2d, 0x9c, 0x21, 0xb7, 0x7d, 0xf7, 0xbb, 0x06,
+ 0xf4, 0x35, 0x01, 0xc4, 0x3e, 0x0c, 0xf7, 0x3f, 0xb6, 0x30, 0x14, 0x13, 0x3e, 0x7f, 0xf0, 0xfc,
+ 0xcd, 0x23, 0xdf, 0x0c, 0x03, 0x71, 0x1e, 0x2d, 0x33, 0x04, 0x04, 0x4a, 0x87, 0x0f, 0xf8, 0x13,
+ 0x01, 0xce, 0xb3, 0xf7, 0x67, 0x3f, 0x90, 0x9d, 0x31, 0x03, 0x86, 0xfc, 0x89, 0x90, 0xba, 0x3e,
+ 0x15, 0x48, 0x39, 0x13, 0x06, 0x70, 0x35, 0x15, 0x04, 0x78, 0x4f, 0x48, 0xa3, 0xaf, 0xc0, 0x62,
+ 0x3f, 0x50, 0xac, 0x5c, 0x1f, 0x16, 0xa6, 0x09, 0xb7, 0xca, 0x7e, 0xcd, 0x5b, 0x4e, 0x87, 0x61,
+ 0x58, 0x46, 0x4b, 0x03, 0x0c, 0xac, 0xf2, 0xfd, 0x63, 0x01, 0x96, 0xd9, 0xeb, 0xb1, 0x17, 0xc2,
+ 0xcb, 0xd3, 0x04, 0xc8, 0x5b, 0xdd, 0x4d, 0x5d, 0x9b, 0x02, 0x9c, 0x7c, 0x2b, 0x0c, 0xd8, 0x4a,
+ 0x6a, 0x18, 0x18, 0x09, 0xcd, 0x8f, 0x04, 0x58, 0x0e, 0x94, 0xb4, 0xc7, 0x25, 0x2f, 0xac, 0xfe,
+ 0x1d, 0xba, 0x1a, 0x5f, 0x0b, 0x03, 0x74, 0x51, 0x5e, 0x1b, 0x02, 0x94, 0x61, 0x05, 0xd6, 0x1e,
+ 0x01, 0xf6, 0xa1, 0x00, 0x97, 0x54, 0x6c, 0xe3, 0xb6, 0x5e, 0xe8, 0x79, 0xfe, 0x1e, 0xa8, 0xd3,
+ 0xb2, 0x4f, 0x61, 0x5c, 0x0e, 0xc3, 0x80, 0x64, 0xc3, 0x80, 0x6c, 0xc9, 0xd7, 0x02, 0x40, 0x2c,
+ 0x3a, 0xf4, 0xa9, 0x67, 0xcc, 0x61, 0x22, 0xb1, 0x0a, 0xfa, 0x33, 0x12, 0xa9, 0x5f, 0x84, 0x9e,
+ 0x92, 0x48, 0xac, 0x14, 0x3d, 0x4c, 0x24, 0x06, 0x61, 0x2a, 0x22, 0x79, 0xeb, 0xb6, 0x93, 0x88,
+ 0x44, 0x6d, 0xa7, 0x24, 0x12, 0x05, 0x46, 0x42, 0xf3, 0xc3, 0x21, 0x22, 0x4d, 0xc4, 0x36, 0xba,
+ 0xa6, 0xfc, 0x9c, 0x34, 0xa2, 0x70, 0xc2, 0x68, 0xe4, 0xa9, 0xd5, 0xb3, 0x94, 0xb2, 0xca, 0xe6,
+ 0xc7, 0x42, 0x23, 0x0e, 0x64, 0x34, 0x8d, 0x7c, 0x3b, 0xb7, 0x5b, 0x22, 0x7d, 0xc6, 0x9d, 0xdb,
+ 0x53, 0x0b, 0x9e, 0x72, 0xe7, 0xe6, 0x35, 0xc3, 0xc0, 0xce, 0xed, 0x02, 0x99, 0x6a, 0xe7, 0xf6,
+ 0x17, 0x4a, 0x27, 0xed, 0xdc, 0x6e, 0x1d, 0x72, 0xba, 0x9d, 0x9b, 0x03, 0x24, 0x91, 0x3a, 0x85,
+ 0x04, 0x0d, 0x54, 0xe1, 0x58, 0x0b, 0x8f, 0xd0, 0x8b, 0x53, 0x55, 0xf5, 0x6c, 0xf9, 0x46, 0xd8,
+ 0xe8, 0x22, 0x5a, 0x1c, 0x8c, 0xde, 0x22, 0x43, 0x7d, 0x4f, 0x00, 0xd1, 0x5d, 0x69, 0xfd, 0x6a,
+ 0xe5, 0x56, 0xf8, 0x38, 0xfe, 0x2a, 0x68, 0x28, 0x77, 0xee, 0x86, 0x21, 0xd8, 0x4c, 0x6d, 0x78,
+ 0xb8, 0xc3, 0x9d, 0xd9, 0x19, 0xfe, 0x7d, 0x0f, 0x89, 0xc4, 0xfb, 0x90, 0xc8, 0xea, 0x7a, 0xe1,
+ 0x58, 0x2b, 0x55, 0xcb, 0xa1, 0x91, 0xd8, 0x1a, 0x5b, 0x95, 0xf4, 0x54, 0x12, 0xc7, 0x64, 0x42,
+ 0x5e, 0xf6, 0xc5, 0x22, 0x63, 0x3a, 0x1d, 0x32, 0xfe, 0x37, 0x04, 0x6f, 0xf5, 0xb5, 0x5a, 0x46,
+ 0x2f, 0x4e, 0x3c, 0x23, 0xe8, 0x88, 0xa1, 0xb1, 0xf8, 0x7c, 0x18, 0x82, 0xcb, 0xa9, 0xf5, 0x00,
+ 0x02, 0xef, 0x92, 0x6e, 0xc2, 0xbc, 0x8a, 0x5b, 0xe6, 0x29, 0x9e, 0x10, 0x8c, 0xb0, 0x81, 0xc3,
+ 0x57, 0x49, 0x3a, 0x38, 0x75, 0xf4, 0x0b, 0x01, 0x96, 0xf9, 0xdd, 0xbd, 0xd7, 0x7f, 0x97, 0x18,
+ 0xbb, 0xe7, 0x8e, 0x2c, 0x67, 0xa6, 0x6e, 0x9f, 0xa1, 0x07, 0xcf, 0xd1, 0xab, 0x61, 0x40, 0x37,
+ 0xe4, 0x55, 0x0a, 0xb4, 0x41, 0x3a, 0x51, 0xb4, 0x35, 0x9b, 0x76, 0x25, 0xe1, 0xf9, 0x9d, 0x00,
+ 0xe7, 0x5d, 0xc0, 0x83, 0xf7, 0x1a, 0x1b, 0xbd, 0x72, 0x96, 0xea, 0x8c, 0x8b, 0xfa, 0xd5, 0xb3,
+ 0x75, 0xe2, 0xc0, 0xc3, 0x69, 0x2e, 0x6f, 0x64, 0x1a, 0x4d, 0xf3, 0xb1, 0xd6, 0x24, 0xd7, 0x33,
+ 0xd2, 0xd9, 0xb4, 0x1a, 0xb6, 0x17, 0xfd, 0x77, 0x05, 0x58, 0xa3, 0x2b, 0xfe, 0x6d, 0x36, 0xa4,
+ 0xb7, 0xcc, 0xf1, 0x0c, 0x67, 0xad, 0xaf, 0x4e, 0x22, 0xef, 0x84, 0xe1, 0x5a, 0x47, 0x6b, 0x19,
+ 0x4f, 0xb9, 0x24, 0xc3, 0x5d, 0x65, 0x5a, 0xf8, 0xfe, 0x6f, 0x84, 0x0f, 0xb3, 0xdf, 0x14, 0xd0,
+ 0xeb, 0x10, 0x27, 0x2f, 0x3a, 0x9b, 0xd9, 0x72, 0x5e, 0x4e, 0xa3, 0xad, 0x13, 0xc7, 0xe9, 0xd8,
+ 0xf7, 0x32, 0x99, 0x86, 0xe1, 0x9c, 0x74, 0x1f, 0x6f, 0xd7, 0xcd, 0x56, 0x86, 0x60, 0xe8, 0x77,
+ 0xec, 0xbc, 0xdb, 0xc8, 0x90, 0x61, 0x76, 0xa2, 0x2f, 0x6f, 0xdf, 0x4e, 0x0b, 0x91, 0x1d, 0x51,
+ 0xeb, 0x74, 0x9a, 0xfc, 0x08, 0xc8, 0xbc, 0x63, 0x9b, 0x6d, 0xbf, 0xa4, 0x61, 0x75, 0xea, 0xf7,
+ 0x02, 0x36, 0xf7, 0x02, 0x36, 0x6f, 0xdf, 0x98, 0x34, 0x22, 0xfd, 0xcc, 0x9b, 0x98, 0x3e, 0x9e,
+ 0xa5, 0x61, 0x7a, 0xe5, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x5a, 0x72, 0xc9, 0xeb, 0x26, 0x2e,
+ 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -4823,76 +3234,76 @@ type AuthServiceServer interface {
type UnimplementedAuthServiceServer struct {
}
-func (*UnimplementedAuthServiceServer) Healthz(context.Context, *empty.Empty) (*empty.Empty, error) {
+func (*UnimplementedAuthServiceServer) Healthz(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method Healthz not implemented")
}
-func (*UnimplementedAuthServiceServer) Ready(context.Context, *empty.Empty) (*empty.Empty, error) {
+func (*UnimplementedAuthServiceServer) Ready(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method Ready not implemented")
}
-func (*UnimplementedAuthServiceServer) Validate(context.Context, *empty.Empty) (*_struct.Struct, error) {
+func (*UnimplementedAuthServiceServer) Validate(ctx context.Context, req *empty.Empty) (*_struct.Struct, error) {
return nil, status.Errorf(codes.Unimplemented, "method Validate not implemented")
}
-func (*UnimplementedAuthServiceServer) GetMyUserSessions(context.Context, *empty.Empty) (*UserSessionViews, error) {
+func (*UnimplementedAuthServiceServer) GetMyUserSessions(ctx context.Context, req *empty.Empty) (*UserSessionViews, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetMyUserSessions not implemented")
}
-func (*UnimplementedAuthServiceServer) GetMyUserProfile(context.Context, *empty.Empty) (*UserProfileView, error) {
+func (*UnimplementedAuthServiceServer) GetMyUserProfile(ctx context.Context, req *empty.Empty) (*UserProfileView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetMyUserProfile not implemented")
}
-func (*UnimplementedAuthServiceServer) UpdateMyUserProfile(context.Context, *UpdateUserProfileRequest) (*UserProfile, error) {
+func (*UnimplementedAuthServiceServer) UpdateMyUserProfile(ctx context.Context, req *UpdateUserProfileRequest) (*UserProfile, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateMyUserProfile not implemented")
}
-func (*UnimplementedAuthServiceServer) GetMyUserEmail(context.Context, *empty.Empty) (*UserEmailView, error) {
+func (*UnimplementedAuthServiceServer) GetMyUserEmail(ctx context.Context, req *empty.Empty) (*UserEmailView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetMyUserEmail not implemented")
}
-func (*UnimplementedAuthServiceServer) ChangeMyUserEmail(context.Context, *UpdateUserEmailRequest) (*UserEmail, error) {
+func (*UnimplementedAuthServiceServer) ChangeMyUserEmail(ctx context.Context, req *UpdateUserEmailRequest) (*UserEmail, error) {
return nil, status.Errorf(codes.Unimplemented, "method ChangeMyUserEmail not implemented")
}
-func (*UnimplementedAuthServiceServer) VerifyMyUserEmail(context.Context, *VerifyMyUserEmailRequest) (*empty.Empty, error) {
+func (*UnimplementedAuthServiceServer) VerifyMyUserEmail(ctx context.Context, req *VerifyMyUserEmailRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method VerifyMyUserEmail not implemented")
}
-func (*UnimplementedAuthServiceServer) ResendMyEmailVerificationMail(context.Context, *empty.Empty) (*empty.Empty, error) {
+func (*UnimplementedAuthServiceServer) ResendMyEmailVerificationMail(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method ResendMyEmailVerificationMail not implemented")
}
-func (*UnimplementedAuthServiceServer) GetMyUserPhone(context.Context, *empty.Empty) (*UserPhoneView, error) {
+func (*UnimplementedAuthServiceServer) GetMyUserPhone(ctx context.Context, req *empty.Empty) (*UserPhoneView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetMyUserPhone not implemented")
}
-func (*UnimplementedAuthServiceServer) ChangeMyUserPhone(context.Context, *UpdateUserPhoneRequest) (*UserPhone, error) {
+func (*UnimplementedAuthServiceServer) ChangeMyUserPhone(ctx context.Context, req *UpdateUserPhoneRequest) (*UserPhone, error) {
return nil, status.Errorf(codes.Unimplemented, "method ChangeMyUserPhone not implemented")
}
-func (*UnimplementedAuthServiceServer) VerifyMyUserPhone(context.Context, *VerifyUserPhoneRequest) (*empty.Empty, error) {
+func (*UnimplementedAuthServiceServer) VerifyMyUserPhone(ctx context.Context, req *VerifyUserPhoneRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method VerifyMyUserPhone not implemented")
}
-func (*UnimplementedAuthServiceServer) ResendMyPhoneVerificationCode(context.Context, *empty.Empty) (*empty.Empty, error) {
+func (*UnimplementedAuthServiceServer) ResendMyPhoneVerificationCode(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method ResendMyPhoneVerificationCode not implemented")
}
-func (*UnimplementedAuthServiceServer) GetMyUserAddress(context.Context, *empty.Empty) (*UserAddressView, error) {
+func (*UnimplementedAuthServiceServer) GetMyUserAddress(ctx context.Context, req *empty.Empty) (*UserAddressView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetMyUserAddress not implemented")
}
-func (*UnimplementedAuthServiceServer) UpdateMyUserAddress(context.Context, *UpdateUserAddressRequest) (*UserAddress, error) {
+func (*UnimplementedAuthServiceServer) UpdateMyUserAddress(ctx context.Context, req *UpdateUserAddressRequest) (*UserAddress, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateMyUserAddress not implemented")
}
-func (*UnimplementedAuthServiceServer) GetMyMfas(context.Context, *empty.Empty) (*MultiFactors, error) {
+func (*UnimplementedAuthServiceServer) GetMyMfas(ctx context.Context, req *empty.Empty) (*MultiFactors, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetMyMfas not implemented")
}
-func (*UnimplementedAuthServiceServer) ChangeMyPassword(context.Context, *PasswordChange) (*empty.Empty, error) {
+func (*UnimplementedAuthServiceServer) ChangeMyPassword(ctx context.Context, req *PasswordChange) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method ChangeMyPassword not implemented")
}
-func (*UnimplementedAuthServiceServer) AddMfaOTP(context.Context, *empty.Empty) (*MfaOtpResponse, error) {
+func (*UnimplementedAuthServiceServer) AddMfaOTP(ctx context.Context, req *empty.Empty) (*MfaOtpResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddMfaOTP not implemented")
}
-func (*UnimplementedAuthServiceServer) VerifyMfaOTP(context.Context, *VerifyMfaOtp) (*empty.Empty, error) {
+func (*UnimplementedAuthServiceServer) VerifyMfaOTP(ctx context.Context, req *VerifyMfaOtp) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method VerifyMfaOTP not implemented")
}
-func (*UnimplementedAuthServiceServer) RemoveMfaOTP(context.Context, *empty.Empty) (*empty.Empty, error) {
+func (*UnimplementedAuthServiceServer) RemoveMfaOTP(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveMfaOTP not implemented")
}
-func (*UnimplementedAuthServiceServer) SearchMyUserGrant(context.Context, *UserGrantSearchRequest) (*UserGrantSearchResponse, error) {
+func (*UnimplementedAuthServiceServer) SearchMyUserGrant(ctx context.Context, req *UserGrantSearchRequest) (*UserGrantSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchMyUserGrant not implemented")
}
-func (*UnimplementedAuthServiceServer) SearchMyProjectOrgs(context.Context, *MyProjectOrgSearchRequest) (*MyProjectOrgSearchResponse, error) {
+func (*UnimplementedAuthServiceServer) SearchMyProjectOrgs(ctx context.Context, req *MyProjectOrgSearchRequest) (*MyProjectOrgSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchMyProjectOrgs not implemented")
}
-func (*UnimplementedAuthServiceServer) GetMyZitadelPermissions(context.Context, *empty.Empty) (*MyPermissions, error) {
+func (*UnimplementedAuthServiceServer) GetMyZitadelPermissions(ctx context.Context, req *empty.Empty) (*MyPermissions, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetMyZitadelPermissions not implemented")
}
diff --git a/pkg/auth/api/grpc/auth.pb.gw.go b/pkg/auth/api/grpc/auth.pb.gw.go
index 76e3b6a304..1b8eebc3b9 100644
--- a/pkg/auth/api/grpc/auth.pb.gw.go
+++ b/pkg/auth/api/grpc/auth.pb.gw.go
@@ -38,6 +38,15 @@ func request_AuthService_Healthz_0(ctx context.Context, marshaler runtime.Marsha
}
+func local_request_AuthService_Healthz_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.Healthz(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_Ready_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -47,6 +56,15 @@ func request_AuthService_Ready_0(ctx context.Context, marshaler runtime.Marshale
}
+func local_request_AuthService_Ready_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.Ready(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_Validate_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -56,6 +74,15 @@ func request_AuthService_Validate_0(ctx context.Context, marshaler runtime.Marsh
}
+func local_request_AuthService_Validate_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.Validate(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_GetMyUserSessions_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -65,6 +92,15 @@ func request_AuthService_GetMyUserSessions_0(ctx context.Context, marshaler runt
}
+func local_request_AuthService_GetMyUserSessions_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.GetMyUserSessions(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_GetMyUserProfile_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -74,6 +110,15 @@ func request_AuthService_GetMyUserProfile_0(ctx context.Context, marshaler runti
}
+func local_request_AuthService_GetMyUserProfile_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.GetMyUserProfile(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_UpdateMyUserProfile_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UpdateUserProfileRequest
var metadata runtime.ServerMetadata
@@ -91,6 +136,23 @@ func request_AuthService_UpdateMyUserProfile_0(ctx context.Context, marshaler ru
}
+func local_request_AuthService_UpdateMyUserProfile_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UpdateUserProfileRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.UpdateMyUserProfile(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_GetMyUserEmail_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -100,6 +162,15 @@ func request_AuthService_GetMyUserEmail_0(ctx context.Context, marshaler runtime
}
+func local_request_AuthService_GetMyUserEmail_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.GetMyUserEmail(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_ChangeMyUserEmail_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UpdateUserEmailRequest
var metadata runtime.ServerMetadata
@@ -117,6 +188,23 @@ func request_AuthService_ChangeMyUserEmail_0(ctx context.Context, marshaler runt
}
+func local_request_AuthService_ChangeMyUserEmail_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UpdateUserEmailRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.ChangeMyUserEmail(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_VerifyMyUserEmail_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq VerifyMyUserEmailRequest
var metadata runtime.ServerMetadata
@@ -134,6 +222,23 @@ func request_AuthService_VerifyMyUserEmail_0(ctx context.Context, marshaler runt
}
+func local_request_AuthService_VerifyMyUserEmail_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq VerifyMyUserEmailRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.VerifyMyUserEmail(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_ResendMyEmailVerificationMail_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -151,6 +256,23 @@ func request_AuthService_ResendMyEmailVerificationMail_0(ctx context.Context, ma
}
+func local_request_AuthService_ResendMyEmailVerificationMail_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.ResendMyEmailVerificationMail(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_GetMyUserPhone_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -160,6 +282,15 @@ func request_AuthService_GetMyUserPhone_0(ctx context.Context, marshaler runtime
}
+func local_request_AuthService_GetMyUserPhone_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.GetMyUserPhone(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_ChangeMyUserPhone_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UpdateUserPhoneRequest
var metadata runtime.ServerMetadata
@@ -177,6 +308,23 @@ func request_AuthService_ChangeMyUserPhone_0(ctx context.Context, marshaler runt
}
+func local_request_AuthService_ChangeMyUserPhone_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UpdateUserPhoneRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.ChangeMyUserPhone(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_VerifyMyUserPhone_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq VerifyUserPhoneRequest
var metadata runtime.ServerMetadata
@@ -194,6 +342,23 @@ func request_AuthService_VerifyMyUserPhone_0(ctx context.Context, marshaler runt
}
+func local_request_AuthService_VerifyMyUserPhone_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq VerifyUserPhoneRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.VerifyMyUserPhone(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_ResendMyPhoneVerificationCode_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -211,6 +376,23 @@ func request_AuthService_ResendMyPhoneVerificationCode_0(ctx context.Context, ma
}
+func local_request_AuthService_ResendMyPhoneVerificationCode_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.ResendMyPhoneVerificationCode(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_GetMyUserAddress_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -220,6 +402,15 @@ func request_AuthService_GetMyUserAddress_0(ctx context.Context, marshaler runti
}
+func local_request_AuthService_GetMyUserAddress_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.GetMyUserAddress(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_UpdateMyUserAddress_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UpdateUserAddressRequest
var metadata runtime.ServerMetadata
@@ -237,6 +428,23 @@ func request_AuthService_UpdateMyUserAddress_0(ctx context.Context, marshaler ru
}
+func local_request_AuthService_UpdateMyUserAddress_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UpdateUserAddressRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.UpdateMyUserAddress(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_GetMyMfas_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -246,6 +454,15 @@ func request_AuthService_GetMyMfas_0(ctx context.Context, marshaler runtime.Mars
}
+func local_request_AuthService_GetMyMfas_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.GetMyMfas(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_ChangeMyPassword_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq PasswordChange
var metadata runtime.ServerMetadata
@@ -263,6 +480,23 @@ func request_AuthService_ChangeMyPassword_0(ctx context.Context, marshaler runti
}
+func local_request_AuthService_ChangeMyPassword_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq PasswordChange
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.ChangeMyPassword(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_AddMfaOTP_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -280,6 +514,23 @@ func request_AuthService_AddMfaOTP_0(ctx context.Context, marshaler runtime.Mars
}
+func local_request_AuthService_AddMfaOTP_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.AddMfaOTP(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_VerifyMfaOTP_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq VerifyMfaOtp
var metadata runtime.ServerMetadata
@@ -297,6 +548,23 @@ func request_AuthService_VerifyMfaOTP_0(ctx context.Context, marshaler runtime.M
}
+func local_request_AuthService_VerifyMfaOTP_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq VerifyMfaOtp
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.VerifyMfaOTP(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_RemoveMfaOTP_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -306,6 +574,15 @@ func request_AuthService_RemoveMfaOTP_0(ctx context.Context, marshaler runtime.M
}
+func local_request_AuthService_RemoveMfaOTP_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.RemoveMfaOTP(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_SearchMyUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserGrantSearchRequest
var metadata runtime.ServerMetadata
@@ -323,6 +600,23 @@ func request_AuthService_SearchMyUserGrant_0(ctx context.Context, marshaler runt
}
+func local_request_AuthService_SearchMyUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserGrantSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.SearchMyUserGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_SearchMyProjectOrgs_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq MyProjectOrgSearchRequest
var metadata runtime.ServerMetadata
@@ -340,6 +634,23 @@ func request_AuthService_SearchMyProjectOrgs_0(ctx context.Context, marshaler ru
}
+func local_request_AuthService_SearchMyProjectOrgs_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq MyProjectOrgSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.SearchMyProjectOrgs(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_AuthService_GetMyZitadelPermissions_0(ctx context.Context, marshaler runtime.Marshaler, client AuthServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -349,6 +660,503 @@ func request_AuthService_GetMyZitadelPermissions_0(ctx context.Context, marshale
}
+func local_request_AuthService_GetMyZitadelPermissions_0(ctx context.Context, marshaler runtime.Marshaler, server AuthServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.GetMyZitadelPermissions(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
+// RegisterAuthServiceHandlerServer registers the http handlers for service AuthService to "mux".
+// UnaryRPC :call AuthServiceServer directly.
+// StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.
+func RegisterAuthServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server AuthServiceServer, opts []grpc.DialOption) error {
+
+ mux.Handle("GET", pattern_AuthService_Healthz_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_Healthz_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_Healthz_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_AuthService_Ready_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_Ready_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_Ready_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_AuthService_Validate_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_Validate_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_Validate_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_AuthService_GetMyUserSessions_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_GetMyUserSessions_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_GetMyUserSessions_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_AuthService_GetMyUserProfile_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_GetMyUserProfile_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_GetMyUserProfile_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_AuthService_UpdateMyUserProfile_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_UpdateMyUserProfile_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_UpdateMyUserProfile_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_AuthService_GetMyUserEmail_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_GetMyUserEmail_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_GetMyUserEmail_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_AuthService_ChangeMyUserEmail_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_ChangeMyUserEmail_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_ChangeMyUserEmail_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_AuthService_VerifyMyUserEmail_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_VerifyMyUserEmail_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_VerifyMyUserEmail_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_AuthService_ResendMyEmailVerificationMail_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_ResendMyEmailVerificationMail_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_ResendMyEmailVerificationMail_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_AuthService_GetMyUserPhone_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_GetMyUserPhone_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_GetMyUserPhone_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_AuthService_ChangeMyUserPhone_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_ChangeMyUserPhone_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_ChangeMyUserPhone_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_AuthService_VerifyMyUserPhone_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_VerifyMyUserPhone_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_VerifyMyUserPhone_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_AuthService_ResendMyPhoneVerificationCode_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_ResendMyPhoneVerificationCode_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_ResendMyPhoneVerificationCode_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_AuthService_GetMyUserAddress_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_GetMyUserAddress_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_GetMyUserAddress_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_AuthService_UpdateMyUserAddress_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_UpdateMyUserAddress_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_UpdateMyUserAddress_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_AuthService_GetMyMfas_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_GetMyMfas_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_GetMyMfas_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_AuthService_ChangeMyPassword_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_ChangeMyPassword_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_ChangeMyPassword_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_AuthService_AddMfaOTP_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_AddMfaOTP_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_AddMfaOTP_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_AuthService_VerifyMfaOTP_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_VerifyMfaOTP_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_VerifyMfaOTP_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("DELETE", pattern_AuthService_RemoveMfaOTP_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_RemoveMfaOTP_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_RemoveMfaOTP_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_AuthService_SearchMyUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_SearchMyUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_SearchMyUserGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_AuthService_SearchMyProjectOrgs_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_SearchMyProjectOrgs_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_SearchMyProjectOrgs_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_AuthService_GetMyZitadelPermissions_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_AuthService_GetMyZitadelPermissions_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_AuthService_GetMyZitadelPermissions_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ return nil
+}
+
// RegisterAuthServiceHandlerFromEndpoint is same as RegisterAuthServiceHandler but
// automatically dials to "endpoint" and closes the connection when "ctx" gets done.
func RegisterAuthServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error) {
@@ -871,53 +1679,53 @@ func RegisterAuthServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux
}
var (
- pattern_AuthService_Healthz_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"healthz"}, ""))
+ pattern_AuthService_Healthz_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"healthz"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_Ready_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"ready"}, ""))
+ pattern_AuthService_Ready_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"ready"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_Validate_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"validate"}, ""))
+ pattern_AuthService_Validate_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"validate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_GetMyUserSessions_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"me", "usersessions"}, ""))
+ pattern_AuthService_GetMyUserSessions_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"me", "usersessions"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_GetMyUserProfile_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "profile"}, ""))
+ pattern_AuthService_GetMyUserProfile_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "profile"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_UpdateMyUserProfile_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "profile"}, ""))
+ pattern_AuthService_UpdateMyUserProfile_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "profile"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_GetMyUserEmail_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "email"}, ""))
+ pattern_AuthService_GetMyUserEmail_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "email"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_ChangeMyUserEmail_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "email"}, ""))
+ pattern_AuthService_ChangeMyUserEmail_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "email"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_VerifyMyUserEmail_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"users", "me", "email", "_verify"}, ""))
+ pattern_AuthService_VerifyMyUserEmail_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"users", "me", "email", "_verify"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_ResendMyEmailVerificationMail_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"users", "me", "email", "_resendverification"}, ""))
+ pattern_AuthService_ResendMyEmailVerificationMail_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"users", "me", "email", "_resendverification"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_GetMyUserPhone_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "phone"}, ""))
+ pattern_AuthService_GetMyUserPhone_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "phone"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_ChangeMyUserPhone_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "phone"}, ""))
+ pattern_AuthService_ChangeMyUserPhone_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "phone"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_VerifyMyUserPhone_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"users", "me", "phone", "_verify"}, ""))
+ pattern_AuthService_VerifyMyUserPhone_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"users", "me", "phone", "_verify"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_ResendMyPhoneVerificationCode_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"users", "me", "phone", "_resendverification"}, ""))
+ pattern_AuthService_ResendMyPhoneVerificationCode_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"users", "me", "phone", "_resendverification"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_GetMyUserAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "address"}, ""))
+ pattern_AuthService_GetMyUserAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "address"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_UpdateMyUserAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "address"}, ""))
+ pattern_AuthService_UpdateMyUserAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "address"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_GetMyMfas_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "mfas"}, ""))
+ pattern_AuthService_GetMyMfas_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "me", "mfas"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_ChangeMyPassword_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"users", "me", "passwords", "_change"}, ""))
+ pattern_AuthService_ChangeMyPassword_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"users", "me", "passwords", "_change"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_AddMfaOTP_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"users", "me", "mfa", "otp"}, ""))
+ pattern_AuthService_AddMfaOTP_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"users", "me", "mfa", "otp"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_VerifyMfaOTP_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"users", "me", "mfa", "otp", "_verify"}, ""))
+ pattern_AuthService_VerifyMfaOTP_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"users", "me", "mfa", "otp", "_verify"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_RemoveMfaOTP_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"users", "me", "mfa", "otp"}, ""))
+ pattern_AuthService_RemoveMfaOTP_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"users", "me", "mfa", "otp"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_SearchMyUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"usergrants", "me", "_search"}, ""))
+ pattern_AuthService_SearchMyUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"usergrants", "me", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_SearchMyProjectOrgs_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"global", "projectorgs", "_search"}, ""))
+ pattern_AuthService_SearchMyProjectOrgs_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"global", "projectorgs", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_AuthService_GetMyZitadelPermissions_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"permissions", "zitadel", "me"}, ""))
+ pattern_AuthService_GetMyZitadelPermissions_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"permissions", "zitadel", "me"}, "", runtime.AssumeColonVerbOpt(true)))
)
var (
diff --git a/pkg/auth/api/grpc/auth.swagger.json b/pkg/auth/api/grpc/auth.swagger.json
index 6ec4187ae7..bfb383bc2b 100644
--- a/pkg/auth/api/grpc/auth.swagger.json
+++ b/pkg/auth/api/grpc/auth.swagger.json
@@ -520,7 +520,7 @@
"200": {
"description": "A successful response.",
"schema": {
- "$ref": "#/definitions/protobufStruct"
+ "type": "object"
}
}
},
@@ -531,19 +531,6 @@
}
},
"definitions": {
- "protobufListValue": {
- "type": "object",
- "properties": {
- "values": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/protobufValue"
- },
- "description": "Repeated field of dynamically typed values."
- }
- },
- "description": "`ListValue` is a wrapper around a repeated field of values.\n\nThe JSON representation for `ListValue` is JSON array."
- },
"protobufNullValue": {
"type": "string",
"enum": [
@@ -552,51 +539,6 @@
"default": "NULL_VALUE",
"description": "`NullValue` is a singleton enumeration to represent the null value for the\n`Value` type union.\n\n The JSON representation for `NullValue` is JSON `null`.\n\n - NULL_VALUE: Null value."
},
- "protobufStruct": {
- "type": "object",
- "properties": {
- "fields": {
- "type": "object",
- "additionalProperties": {
- "$ref": "#/definitions/protobufValue"
- },
- "description": "Unordered map of dynamically typed values."
- }
- },
- "description": "`Struct` represents a structured data value, consisting of fields\nwhich map to dynamically typed values. In some languages, `Struct`\nmight be supported by a native representation. For example, in\nscripting languages like JS a struct is represented as an\nobject. The details of that representation are described together\nwith the proto support for the language.\n\nThe JSON representation for `Struct` is JSON object."
- },
- "protobufValue": {
- "type": "object",
- "properties": {
- "null_value": {
- "$ref": "#/definitions/protobufNullValue",
- "description": "Represents a null value."
- },
- "number_value": {
- "type": "number",
- "format": "double",
- "description": "Represents a double value."
- },
- "string_value": {
- "type": "string",
- "description": "Represents a string value."
- },
- "bool_value": {
- "type": "boolean",
- "format": "boolean",
- "description": "Represents a boolean value."
- },
- "struct_value": {
- "$ref": "#/definitions/protobufStruct",
- "description": "Represents a structured value."
- },
- "list_value": {
- "$ref": "#/definitions/protobufListValue",
- "description": "Represents a repeated `Value`."
- }
- },
- "description": "`Value` represents a dynamically typed value which can be either\nnull, a number, a string, a boolean, a recursive struct value, or a\nlist of values. A producer of value is expected to set one of that\nvariants, absence of any variant indicates an error.\n\nThe JSON representation for `Value` is JSON value."
- },
"v1Gender": {
"type": "string",
"enum": [
@@ -826,9 +768,6 @@
"nick_name": {
"type": "string"
},
- "display_name": {
- "type": "string"
- },
"preferred_language": {
"type": "string"
},
diff --git a/pkg/auth/api/grpc/mock/auth.proto.mock.go b/pkg/auth/api/grpc/mock/auth.proto.mock.go
index 73b8fbf42d..0f89934bec 100644
--- a/pkg/auth/api/grpc/mock/auth.proto.mock.go
+++ b/pkg/auth/api/grpc/mock/auth.proto.mock.go
@@ -138,14 +138,14 @@ func (mr *MockAuthServiceClientMockRecorder) GetMyMfas(arg0, arg1 interface{}, a
}
// GetMyUserAddress mocks base method
-func (m *MockAuthServiceClient) GetMyUserAddress(arg0 context.Context, arg1 *emptypb.Empty, arg2 ...grpc0.CallOption) (*grpc.UserAddress, error) {
+func (m *MockAuthServiceClient) GetMyUserAddress(arg0 context.Context, arg1 *emptypb.Empty, arg2 ...grpc0.CallOption) (*grpc.UserAddressView, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "GetMyUserAddress", varargs...)
- ret0, _ := ret[0].(*grpc.UserAddress)
+ ret0, _ := ret[0].(*grpc.UserAddressView)
ret1, _ := ret[1].(error)
return ret0, ret1
}
@@ -158,14 +158,14 @@ func (mr *MockAuthServiceClientMockRecorder) GetMyUserAddress(arg0, arg1 interfa
}
// GetMyUserEmail mocks base method
-func (m *MockAuthServiceClient) GetMyUserEmail(arg0 context.Context, arg1 *emptypb.Empty, arg2 ...grpc0.CallOption) (*grpc.UserEmail, error) {
+func (m *MockAuthServiceClient) GetMyUserEmail(arg0 context.Context, arg1 *emptypb.Empty, arg2 ...grpc0.CallOption) (*grpc.UserEmailView, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "GetMyUserEmail", varargs...)
- ret0, _ := ret[0].(*grpc.UserEmail)
+ ret0, _ := ret[0].(*grpc.UserEmailView)
ret1, _ := ret[1].(error)
return ret0, ret1
}
@@ -178,14 +178,14 @@ func (mr *MockAuthServiceClientMockRecorder) GetMyUserEmail(arg0, arg1 interface
}
// GetMyUserPhone mocks base method
-func (m *MockAuthServiceClient) GetMyUserPhone(arg0 context.Context, arg1 *emptypb.Empty, arg2 ...grpc0.CallOption) (*grpc.UserPhone, error) {
+func (m *MockAuthServiceClient) GetMyUserPhone(arg0 context.Context, arg1 *emptypb.Empty, arg2 ...grpc0.CallOption) (*grpc.UserPhoneView, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "GetMyUserPhone", varargs...)
- ret0, _ := ret[0].(*grpc.UserPhone)
+ ret0, _ := ret[0].(*grpc.UserPhoneView)
ret1, _ := ret[1].(error)
return ret0, ret1
}
@@ -198,14 +198,14 @@ func (mr *MockAuthServiceClientMockRecorder) GetMyUserPhone(arg0, arg1 interface
}
// GetMyUserProfile mocks base method
-func (m *MockAuthServiceClient) GetMyUserProfile(arg0 context.Context, arg1 *emptypb.Empty, arg2 ...grpc0.CallOption) (*grpc.UserProfile, error) {
+func (m *MockAuthServiceClient) GetMyUserProfile(arg0 context.Context, arg1 *emptypb.Empty, arg2 ...grpc0.CallOption) (*grpc.UserProfileView, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "GetMyUserProfile", varargs...)
- ret0, _ := ret[0].(*grpc.UserProfile)
+ ret0, _ := ret[0].(*grpc.UserProfileView)
ret1, _ := ret[1].(error)
return ret0, ret1
}
diff --git a/pkg/auth/api/grpc/user_converter.go b/pkg/auth/api/grpc/user_converter.go
index 0adf067d01..3b36abe6d5 100644
--- a/pkg/auth/api/grpc/user_converter.go
+++ b/pkg/auth/api/grpc/user_converter.go
@@ -66,7 +66,6 @@ func updateProfileToModel(ctx context.Context, u *UpdateUserProfileRequest) *usr
FirstName: u.FirstName,
LastName: u.LastName,
NickName: u.NickName,
- DisplayName: u.DisplayName,
PreferredLanguage: preferredLanguage,
Gender: genderToModel(u.Gender),
}
diff --git a/pkg/auth/api/oidc/client.go b/pkg/auth/api/oidc/client.go
index b17893c7aa..fc946055f8 100644
--- a/pkg/auth/api/oidc/client.go
+++ b/pkg/auth/api/oidc/client.go
@@ -55,7 +55,7 @@ func (o *OPStorage) GetUserinfoFromScopes(ctx context.Context, userID string, sc
userInfo.FamilyName = user.LastName
userInfo.GivenName = user.FirstName
userInfo.Nickname = user.NickName
- userInfo.PreferredUsername = user.UserName
+ userInfo.PreferredUsername = user.PreferredLoginName
userInfo.UpdatedAt = user.ChangeDate
userInfo.Gender = oidc.Gender(getGender(user.Gender))
case scopePhone:
diff --git a/pkg/auth/api/oidc/op.go b/pkg/auth/api/oidc/op.go
index 628247849b..b4f92f8dad 100644
--- a/pkg/auth/api/oidc/op.go
+++ b/pkg/auth/api/oidc/op.go
@@ -2,12 +2,14 @@ package oidc
import (
"context"
+ "net/http"
"time"
"github.com/caos/logging"
"github.com/caos/oidc/pkg/op"
http_utils "github.com/caos/zitadel/internal/api/http"
+ "github.com/caos/zitadel/internal/api/http/middleware"
"github.com/caos/zitadel/internal/auth/repository"
"github.com/caos/zitadel/internal/config/types"
"github.com/caos/zitadel/internal/id"
@@ -17,6 +19,7 @@ type OPHandlerConfig struct {
OPConfig *op.Config
StorageConfig StorageConfig
UserAgentCookieConfig *http_utils.UserAgentCookieConfig
+ Cache *middleware.CacheConfig
Endpoints *EndpointConfig
}
@@ -51,6 +54,12 @@ type OPStorage struct {
func NewProvider(ctx context.Context, config OPHandlerConfig, repo repository.Repository) op.OpenIDProvider {
cookieHandler, err := http_utils.NewUserAgentHandler(config.UserAgentCookieConfig, id.SonyFlakeGenerator)
logging.Log("OIDC-sd4fd").OnError(err).Panic("cannot user agent handler")
+ cache, err := middleware.DefaultCacheInterceptor(config.Endpoints.Keys.Path, config.Cache.MaxAge.Duration, config.Cache.SharedMaxAge.Duration)
+ nextHandler := func(handlerFunc http.HandlerFunc) http.HandlerFunc {
+ return func(w http.ResponseWriter, r *http.Request) {
+ cache(http_utils.CopyHeadersToContext(handlerFunc))
+ }
+ }
provider, err := op.NewDefaultOP(
ctx,
config.OPConfig,
@@ -58,7 +67,7 @@ func NewProvider(ctx context.Context, config OPHandlerConfig, repo repository.Re
op.WithHttpInterceptor(
UserAgentCookieHandler(
cookieHandler,
- http_utils.CopyHeadersToContext,
+ nextHandler,
),
),
op.WithCustomAuthEndpoint(op.NewEndpointWithURL(config.Endpoints.Auth.Path, config.Endpoints.Auth.URL)),
diff --git a/pkg/auth/api/proto/auth.proto b/pkg/auth/api/proto/auth.proto
index 9c4387d8f6..b39b091a67 100644
--- a/pkg/auth/api/proto/auth.proto
+++ b/pkg/auth/api/proto/auth.proto
@@ -381,9 +381,8 @@ message UpdateUserProfileRequest {
string first_name = 1 [(validate.rules).string = {min_len: 1, max_len: 200}];
string last_name = 2 [(validate.rules).string = {min_len: 1, max_len: 200}];
string nick_name = 3 [(validate.rules).string = {min_len: 1, max_len: 200}];
- string display_name = 4 [(validate.rules).string = {min_len: 1, max_len: 200}];
- string preferred_language = 5 [(validate.rules).string = {min_len: 1, max_len: 200}];
- Gender gender = 6;
+ string preferred_language = 4 [(validate.rules).string = {min_len: 1, max_len: 200}];
+ Gender gender = 5;
}
message UserEmail {
diff --git a/pkg/management/api/grpc/management.pb.go b/pkg/management/api/grpc/management.pb.go
index 1689564a49..68e1935928 100644
--- a/pkg/management/api/grpc/management.pb.go
+++ b/pkg/management/api/grpc/management.pb.go
@@ -1,13 +1,11 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
-// versions:
-// protoc-gen-go v1.20.1
-// protoc v3.11.3
// source: management.proto
package grpc
import (
context "context"
+ fmt "fmt"
_ "github.com/caos/zitadel/internal/protoc/protoc-gen-authoption/authoption"
_ "github.com/envoyproxy/protoc-gen-validate/validate"
proto "github.com/golang/protobuf/proto"
@@ -20,22 +18,19 @@ import (
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
- protoreflect "google.golang.org/protobuf/reflect/protoreflect"
- protoimpl "google.golang.org/protobuf/runtime/protoimpl"
- reflect "reflect"
- sync "sync"
+ math "math"
)
-const (
- // Verify that this generated code is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
- // Verify that runtime/protoimpl is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
-)
+// Reference imports to suppress errors if they are not otherwise used.
+var _ = proto.Marshal
+var _ = fmt.Errorf
+var _ = math.Inf
-// This is a compile-time assertion that a sufficiently up-to-date version
-// of the legacy proto package is being used.
-const _ = proto.ProtoPackageIsVersion4
+// This is a compile-time assertion to ensure that this generated file
+// is compatible with the proto package it is being compiled against.
+// A compilation error at this line likely means your copy of the
+// proto package needs to be updated.
+const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
type UserState int32
@@ -49,53 +44,32 @@ const (
UserState_USERSTATE_INITIAL UserState = 6
)
-// Enum value maps for UserState.
-var (
- UserState_name = map[int32]string{
- 0: "USERSTATE_UNSPECIFIED",
- 1: "USERSTATE_ACTIVE",
- 2: "USERSTATE_INACTIVE",
- 3: "USERSTATE_DELETED",
- 4: "USERSTATE_LOCKED",
- 5: "USERSTATE_SUSPEND",
- 6: "USERSTATE_INITIAL",
- }
- UserState_value = map[string]int32{
- "USERSTATE_UNSPECIFIED": 0,
- "USERSTATE_ACTIVE": 1,
- "USERSTATE_INACTIVE": 2,
- "USERSTATE_DELETED": 3,
- "USERSTATE_LOCKED": 4,
- "USERSTATE_SUSPEND": 5,
- "USERSTATE_INITIAL": 6,
- }
-)
+var UserState_name = map[int32]string{
+ 0: "USERSTATE_UNSPECIFIED",
+ 1: "USERSTATE_ACTIVE",
+ 2: "USERSTATE_INACTIVE",
+ 3: "USERSTATE_DELETED",
+ 4: "USERSTATE_LOCKED",
+ 5: "USERSTATE_SUSPEND",
+ 6: "USERSTATE_INITIAL",
+}
-func (x UserState) Enum() *UserState {
- p := new(UserState)
- *p = x
- return p
+var UserState_value = map[string]int32{
+ "USERSTATE_UNSPECIFIED": 0,
+ "USERSTATE_ACTIVE": 1,
+ "USERSTATE_INACTIVE": 2,
+ "USERSTATE_DELETED": 3,
+ "USERSTATE_LOCKED": 4,
+ "USERSTATE_SUSPEND": 5,
+ "USERSTATE_INITIAL": 6,
}
func (x UserState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(UserState_name, int32(x))
}
-func (UserState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[0].Descriptor()
-}
-
-func (UserState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[0]
-}
-
-func (x UserState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use UserState.Descriptor instead.
func (UserState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{0}
+ return fileDescriptor_edc174f991dc0a25, []int{0}
}
type Gender int32
@@ -107,47 +81,26 @@ const (
Gender_GENDER_DIVERSE Gender = 3
)
-// Enum value maps for Gender.
-var (
- Gender_name = map[int32]string{
- 0: "GENDER_UNSPECIFIED",
- 1: "GENDER_FEMALE",
- 2: "GENDER_MALE",
- 3: "GENDER_DIVERSE",
- }
- Gender_value = map[string]int32{
- "GENDER_UNSPECIFIED": 0,
- "GENDER_FEMALE": 1,
- "GENDER_MALE": 2,
- "GENDER_DIVERSE": 3,
- }
-)
+var Gender_name = map[int32]string{
+ 0: "GENDER_UNSPECIFIED",
+ 1: "GENDER_FEMALE",
+ 2: "GENDER_MALE",
+ 3: "GENDER_DIVERSE",
+}
-func (x Gender) Enum() *Gender {
- p := new(Gender)
- *p = x
- return p
+var Gender_value = map[string]int32{
+ "GENDER_UNSPECIFIED": 0,
+ "GENDER_FEMALE": 1,
+ "GENDER_MALE": 2,
+ "GENDER_DIVERSE": 3,
}
func (x Gender) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(Gender_name, int32(x))
}
-func (Gender) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[1].Descriptor()
-}
-
-func (Gender) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[1]
-}
-
-func (x Gender) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use Gender.Descriptor instead.
func (Gender) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{1}
+ return fileDescriptor_edc174f991dc0a25, []int{1}
}
type UserSearchKey int32
@@ -163,55 +116,34 @@ const (
UserSearchKey_USERSEARCHKEY_STATE UserSearchKey = 7
)
-// Enum value maps for UserSearchKey.
-var (
- UserSearchKey_name = map[int32]string{
- 0: "USERSEARCHKEY_UNSPECIFIED",
- 1: "USERSEARCHKEY_USER_NAME",
- 2: "USERSEARCHKEY_FIRST_NAME",
- 3: "USERSEARCHKEY_LAST_NAME",
- 4: "USERSEARCHKEY_NICK_NAME",
- 5: "USERSEARCHKEY_DISPLAY_NAME",
- 6: "USERSEARCHKEY_EMAIL",
- 7: "USERSEARCHKEY_STATE",
- }
- UserSearchKey_value = map[string]int32{
- "USERSEARCHKEY_UNSPECIFIED": 0,
- "USERSEARCHKEY_USER_NAME": 1,
- "USERSEARCHKEY_FIRST_NAME": 2,
- "USERSEARCHKEY_LAST_NAME": 3,
- "USERSEARCHKEY_NICK_NAME": 4,
- "USERSEARCHKEY_DISPLAY_NAME": 5,
- "USERSEARCHKEY_EMAIL": 6,
- "USERSEARCHKEY_STATE": 7,
- }
-)
+var UserSearchKey_name = map[int32]string{
+ 0: "USERSEARCHKEY_UNSPECIFIED",
+ 1: "USERSEARCHKEY_USER_NAME",
+ 2: "USERSEARCHKEY_FIRST_NAME",
+ 3: "USERSEARCHKEY_LAST_NAME",
+ 4: "USERSEARCHKEY_NICK_NAME",
+ 5: "USERSEARCHKEY_DISPLAY_NAME",
+ 6: "USERSEARCHKEY_EMAIL",
+ 7: "USERSEARCHKEY_STATE",
+}
-func (x UserSearchKey) Enum() *UserSearchKey {
- p := new(UserSearchKey)
- *p = x
- return p
+var UserSearchKey_value = map[string]int32{
+ "USERSEARCHKEY_UNSPECIFIED": 0,
+ "USERSEARCHKEY_USER_NAME": 1,
+ "USERSEARCHKEY_FIRST_NAME": 2,
+ "USERSEARCHKEY_LAST_NAME": 3,
+ "USERSEARCHKEY_NICK_NAME": 4,
+ "USERSEARCHKEY_DISPLAY_NAME": 5,
+ "USERSEARCHKEY_EMAIL": 6,
+ "USERSEARCHKEY_STATE": 7,
}
func (x UserSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(UserSearchKey_name, int32(x))
}
-func (UserSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[2].Descriptor()
-}
-
-func (UserSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[2]
-}
-
-func (x UserSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use UserSearchKey.Descriptor instead.
func (UserSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{2}
+ return fileDescriptor_edc174f991dc0a25, []int{2}
}
type SearchMethod int32
@@ -225,51 +157,30 @@ const (
SearchMethod_SEARCHMETHOD_CONTAINS_IGNORE_CASE SearchMethod = 5
)
-// Enum value maps for SearchMethod.
-var (
- SearchMethod_name = map[int32]string{
- 0: "SEARCHMETHOD_EQUALS",
- 1: "SEARCHMETHOD_STARTS_WITH",
- 2: "SEARCHMETHOD_CONTAINS",
- 3: "SEARCHMETHOD_EQUALS_IGNORE_CASE",
- 4: "SEARCHMETHOD_STARTS_WITH_IGNORE_CASE",
- 5: "SEARCHMETHOD_CONTAINS_IGNORE_CASE",
- }
- SearchMethod_value = map[string]int32{
- "SEARCHMETHOD_EQUALS": 0,
- "SEARCHMETHOD_STARTS_WITH": 1,
- "SEARCHMETHOD_CONTAINS": 2,
- "SEARCHMETHOD_EQUALS_IGNORE_CASE": 3,
- "SEARCHMETHOD_STARTS_WITH_IGNORE_CASE": 4,
- "SEARCHMETHOD_CONTAINS_IGNORE_CASE": 5,
- }
-)
+var SearchMethod_name = map[int32]string{
+ 0: "SEARCHMETHOD_EQUALS",
+ 1: "SEARCHMETHOD_STARTS_WITH",
+ 2: "SEARCHMETHOD_CONTAINS",
+ 3: "SEARCHMETHOD_EQUALS_IGNORE_CASE",
+ 4: "SEARCHMETHOD_STARTS_WITH_IGNORE_CASE",
+ 5: "SEARCHMETHOD_CONTAINS_IGNORE_CASE",
+}
-func (x SearchMethod) Enum() *SearchMethod {
- p := new(SearchMethod)
- *p = x
- return p
+var SearchMethod_value = map[string]int32{
+ "SEARCHMETHOD_EQUALS": 0,
+ "SEARCHMETHOD_STARTS_WITH": 1,
+ "SEARCHMETHOD_CONTAINS": 2,
+ "SEARCHMETHOD_EQUALS_IGNORE_CASE": 3,
+ "SEARCHMETHOD_STARTS_WITH_IGNORE_CASE": 4,
+ "SEARCHMETHOD_CONTAINS_IGNORE_CASE": 5,
}
func (x SearchMethod) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(SearchMethod_name, int32(x))
}
-func (SearchMethod) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[3].Descriptor()
-}
-
-func (SearchMethod) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[3]
-}
-
-func (x SearchMethod) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use SearchMethod.Descriptor instead.
func (SearchMethod) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{3}
+ return fileDescriptor_edc174f991dc0a25, []int{3}
}
type MfaType int32
@@ -280,45 +191,24 @@ const (
MfaType_MFATYPE_OTP MfaType = 2
)
-// Enum value maps for MfaType.
-var (
- MfaType_name = map[int32]string{
- 0: "MFATYPE_UNSPECIFIED",
- 1: "MFATYPE_SMS",
- 2: "MFATYPE_OTP",
- }
- MfaType_value = map[string]int32{
- "MFATYPE_UNSPECIFIED": 0,
- "MFATYPE_SMS": 1,
- "MFATYPE_OTP": 2,
- }
-)
+var MfaType_name = map[int32]string{
+ 0: "MFATYPE_UNSPECIFIED",
+ 1: "MFATYPE_SMS",
+ 2: "MFATYPE_OTP",
+}
-func (x MfaType) Enum() *MfaType {
- p := new(MfaType)
- *p = x
- return p
+var MfaType_value = map[string]int32{
+ "MFATYPE_UNSPECIFIED": 0,
+ "MFATYPE_SMS": 1,
+ "MFATYPE_OTP": 2,
}
func (x MfaType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(MfaType_name, int32(x))
}
-func (MfaType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[4].Descriptor()
-}
-
-func (MfaType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[4]
-}
-
-func (x MfaType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use MfaType.Descriptor instead.
func (MfaType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{4}
+ return fileDescriptor_edc174f991dc0a25, []int{4}
}
type MFAState int32
@@ -330,47 +220,26 @@ const (
MFAState_MFASTATE_REMOVED MFAState = 3
)
-// Enum value maps for MFAState.
-var (
- MFAState_name = map[int32]string{
- 0: "MFASTATE_UNSPECIFIED",
- 1: "MFASTATE_NOT_READY",
- 2: "MFASTATE_READY",
- 3: "MFASTATE_REMOVED",
- }
- MFAState_value = map[string]int32{
- "MFASTATE_UNSPECIFIED": 0,
- "MFASTATE_NOT_READY": 1,
- "MFASTATE_READY": 2,
- "MFASTATE_REMOVED": 3,
- }
-)
+var MFAState_name = map[int32]string{
+ 0: "MFASTATE_UNSPECIFIED",
+ 1: "MFASTATE_NOT_READY",
+ 2: "MFASTATE_READY",
+ 3: "MFASTATE_REMOVED",
+}
-func (x MFAState) Enum() *MFAState {
- p := new(MFAState)
- *p = x
- return p
+var MFAState_value = map[string]int32{
+ "MFASTATE_UNSPECIFIED": 0,
+ "MFASTATE_NOT_READY": 1,
+ "MFASTATE_READY": 2,
+ "MFASTATE_REMOVED": 3,
}
func (x MFAState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(MFAState_name, int32(x))
}
-func (MFAState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[5].Descriptor()
-}
-
-func (MFAState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[5]
-}
-
-func (x MFAState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use MFAState.Descriptor instead.
func (MFAState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{5}
+ return fileDescriptor_edc174f991dc0a25, []int{5}
}
type NotificationType int32
@@ -380,43 +249,22 @@ const (
NotificationType_NOTIFICATIONTYPE_SMS NotificationType = 1
)
-// Enum value maps for NotificationType.
-var (
- NotificationType_name = map[int32]string{
- 0: "NOTIFICATIONTYPE_EMAIL",
- 1: "NOTIFICATIONTYPE_SMS",
- }
- NotificationType_value = map[string]int32{
- "NOTIFICATIONTYPE_EMAIL": 0,
- "NOTIFICATIONTYPE_SMS": 1,
- }
-)
+var NotificationType_name = map[int32]string{
+ 0: "NOTIFICATIONTYPE_EMAIL",
+ 1: "NOTIFICATIONTYPE_SMS",
+}
-func (x NotificationType) Enum() *NotificationType {
- p := new(NotificationType)
- *p = x
- return p
+var NotificationType_value = map[string]int32{
+ "NOTIFICATIONTYPE_EMAIL": 0,
+ "NOTIFICATIONTYPE_SMS": 1,
}
func (x NotificationType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(NotificationType_name, int32(x))
}
-func (NotificationType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[6].Descriptor()
-}
-
-func (NotificationType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[6]
-}
-
-func (x NotificationType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use NotificationType.Descriptor instead.
func (NotificationType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{6}
+ return fileDescriptor_edc174f991dc0a25, []int{6}
}
type PolicyState int32
@@ -428,47 +276,26 @@ const (
PolicyState_POLICYSTATE_DELETED PolicyState = 3
)
-// Enum value maps for PolicyState.
-var (
- PolicyState_name = map[int32]string{
- 0: "POLICYSTATE_UNSPECIFIED",
- 1: "POLICYSTATE_ACTIVE",
- 2: "POLICYSTATE_INACTIVE",
- 3: "POLICYSTATE_DELETED",
- }
- PolicyState_value = map[string]int32{
- "POLICYSTATE_UNSPECIFIED": 0,
- "POLICYSTATE_ACTIVE": 1,
- "POLICYSTATE_INACTIVE": 2,
- "POLICYSTATE_DELETED": 3,
- }
-)
+var PolicyState_name = map[int32]string{
+ 0: "POLICYSTATE_UNSPECIFIED",
+ 1: "POLICYSTATE_ACTIVE",
+ 2: "POLICYSTATE_INACTIVE",
+ 3: "POLICYSTATE_DELETED",
+}
-func (x PolicyState) Enum() *PolicyState {
- p := new(PolicyState)
- *p = x
- return p
+var PolicyState_value = map[string]int32{
+ "POLICYSTATE_UNSPECIFIED": 0,
+ "POLICYSTATE_ACTIVE": 1,
+ "POLICYSTATE_INACTIVE": 2,
+ "POLICYSTATE_DELETED": 3,
}
func (x PolicyState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(PolicyState_name, int32(x))
}
-func (PolicyState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[7].Descriptor()
-}
-
-func (PolicyState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[7]
-}
-
-func (x PolicyState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use PolicyState.Descriptor instead.
func (PolicyState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{7}
+ return fileDescriptor_edc174f991dc0a25, []int{7}
}
type OrgState int32
@@ -479,45 +306,24 @@ const (
OrgState_ORGSTATE_INACTIVE OrgState = 2
)
-// Enum value maps for OrgState.
-var (
- OrgState_name = map[int32]string{
- 0: "ORGSTATE_UNSPECIFIED",
- 1: "ORGSTATE_ACTIVE",
- 2: "ORGSTATE_INACTIVE",
- }
- OrgState_value = map[string]int32{
- "ORGSTATE_UNSPECIFIED": 0,
- "ORGSTATE_ACTIVE": 1,
- "ORGSTATE_INACTIVE": 2,
- }
-)
+var OrgState_name = map[int32]string{
+ 0: "ORGSTATE_UNSPECIFIED",
+ 1: "ORGSTATE_ACTIVE",
+ 2: "ORGSTATE_INACTIVE",
+}
-func (x OrgState) Enum() *OrgState {
- p := new(OrgState)
- *p = x
- return p
+var OrgState_value = map[string]int32{
+ "ORGSTATE_UNSPECIFIED": 0,
+ "ORGSTATE_ACTIVE": 1,
+ "ORGSTATE_INACTIVE": 2,
}
func (x OrgState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OrgState_name, int32(x))
}
-func (OrgState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[8].Descriptor()
-}
-
-func (OrgState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[8]
-}
-
-func (x OrgState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OrgState.Descriptor instead.
func (OrgState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{8}
+ return fileDescriptor_edc174f991dc0a25, []int{8}
}
type OrgDomainSearchKey int32
@@ -527,43 +333,22 @@ const (
OrgDomainSearchKey_ORGDOMAINSEARCHKEY_DOMAIN OrgDomainSearchKey = 1
)
-// Enum value maps for OrgDomainSearchKey.
-var (
- OrgDomainSearchKey_name = map[int32]string{
- 0: "ORGDOMAINSEARCHKEY_UNSPECIFIED",
- 1: "ORGDOMAINSEARCHKEY_DOMAIN",
- }
- OrgDomainSearchKey_value = map[string]int32{
- "ORGDOMAINSEARCHKEY_UNSPECIFIED": 0,
- "ORGDOMAINSEARCHKEY_DOMAIN": 1,
- }
-)
+var OrgDomainSearchKey_name = map[int32]string{
+ 0: "ORGDOMAINSEARCHKEY_UNSPECIFIED",
+ 1: "ORGDOMAINSEARCHKEY_DOMAIN",
+}
-func (x OrgDomainSearchKey) Enum() *OrgDomainSearchKey {
- p := new(OrgDomainSearchKey)
- *p = x
- return p
+var OrgDomainSearchKey_value = map[string]int32{
+ "ORGDOMAINSEARCHKEY_UNSPECIFIED": 0,
+ "ORGDOMAINSEARCHKEY_DOMAIN": 1,
}
func (x OrgDomainSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OrgDomainSearchKey_name, int32(x))
}
-func (OrgDomainSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[9].Descriptor()
-}
-
-func (OrgDomainSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[9]
-}
-
-func (x OrgDomainSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OrgDomainSearchKey.Descriptor instead.
func (OrgDomainSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{9}
+ return fileDescriptor_edc174f991dc0a25, []int{9}
}
type OrgMemberSearchKey int32
@@ -576,49 +361,28 @@ const (
OrgMemberSearchKey_ORGMEMBERSEARCHKEY_USER_ID OrgMemberSearchKey = 4
)
-// Enum value maps for OrgMemberSearchKey.
-var (
- OrgMemberSearchKey_name = map[int32]string{
- 0: "ORGMEMBERSEARCHKEY_UNSPECIFIED",
- 1: "ORGMEMBERSEARCHKEY_FIRST_NAME",
- 2: "ORGMEMBERSEARCHKEY_LAST_NAME",
- 3: "ORGMEMBERSEARCHKEY_EMAIL",
- 4: "ORGMEMBERSEARCHKEY_USER_ID",
- }
- OrgMemberSearchKey_value = map[string]int32{
- "ORGMEMBERSEARCHKEY_UNSPECIFIED": 0,
- "ORGMEMBERSEARCHKEY_FIRST_NAME": 1,
- "ORGMEMBERSEARCHKEY_LAST_NAME": 2,
- "ORGMEMBERSEARCHKEY_EMAIL": 3,
- "ORGMEMBERSEARCHKEY_USER_ID": 4,
- }
-)
+var OrgMemberSearchKey_name = map[int32]string{
+ 0: "ORGMEMBERSEARCHKEY_UNSPECIFIED",
+ 1: "ORGMEMBERSEARCHKEY_FIRST_NAME",
+ 2: "ORGMEMBERSEARCHKEY_LAST_NAME",
+ 3: "ORGMEMBERSEARCHKEY_EMAIL",
+ 4: "ORGMEMBERSEARCHKEY_USER_ID",
+}
-func (x OrgMemberSearchKey) Enum() *OrgMemberSearchKey {
- p := new(OrgMemberSearchKey)
- *p = x
- return p
+var OrgMemberSearchKey_value = map[string]int32{
+ "ORGMEMBERSEARCHKEY_UNSPECIFIED": 0,
+ "ORGMEMBERSEARCHKEY_FIRST_NAME": 1,
+ "ORGMEMBERSEARCHKEY_LAST_NAME": 2,
+ "ORGMEMBERSEARCHKEY_EMAIL": 3,
+ "ORGMEMBERSEARCHKEY_USER_ID": 4,
}
func (x OrgMemberSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OrgMemberSearchKey_name, int32(x))
}
-func (OrgMemberSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[10].Descriptor()
-}
-
-func (OrgMemberSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[10]
-}
-
-func (x OrgMemberSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OrgMemberSearchKey.Descriptor instead.
func (OrgMemberSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{10}
+ return fileDescriptor_edc174f991dc0a25, []int{10}
}
type ProjectSearchKey int32
@@ -628,43 +392,22 @@ const (
ProjectSearchKey_PROJECTSEARCHKEY_PROJECT_NAME ProjectSearchKey = 1
)
-// Enum value maps for ProjectSearchKey.
-var (
- ProjectSearchKey_name = map[int32]string{
- 0: "PROJECTSEARCHKEY_UNSPECIFIED",
- 1: "PROJECTSEARCHKEY_PROJECT_NAME",
- }
- ProjectSearchKey_value = map[string]int32{
- "PROJECTSEARCHKEY_UNSPECIFIED": 0,
- "PROJECTSEARCHKEY_PROJECT_NAME": 1,
- }
-)
+var ProjectSearchKey_name = map[int32]string{
+ 0: "PROJECTSEARCHKEY_UNSPECIFIED",
+ 1: "PROJECTSEARCHKEY_PROJECT_NAME",
+}
-func (x ProjectSearchKey) Enum() *ProjectSearchKey {
- p := new(ProjectSearchKey)
- *p = x
- return p
+var ProjectSearchKey_value = map[string]int32{
+ "PROJECTSEARCHKEY_UNSPECIFIED": 0,
+ "PROJECTSEARCHKEY_PROJECT_NAME": 1,
}
func (x ProjectSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ProjectSearchKey_name, int32(x))
}
-func (ProjectSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[11].Descriptor()
-}
-
-func (ProjectSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[11]
-}
-
-func (x ProjectSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ProjectSearchKey.Descriptor instead.
func (ProjectSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{11}
+ return fileDescriptor_edc174f991dc0a25, []int{11}
}
type ProjectState int32
@@ -675,45 +418,24 @@ const (
ProjectState_PROJECTSTATE_INACTIVE ProjectState = 2
)
-// Enum value maps for ProjectState.
-var (
- ProjectState_name = map[int32]string{
- 0: "PROJECTSTATE_UNSPECIFIED",
- 1: "PROJECTSTATE_ACTIVE",
- 2: "PROJECTSTATE_INACTIVE",
- }
- ProjectState_value = map[string]int32{
- "PROJECTSTATE_UNSPECIFIED": 0,
- "PROJECTSTATE_ACTIVE": 1,
- "PROJECTSTATE_INACTIVE": 2,
- }
-)
+var ProjectState_name = map[int32]string{
+ 0: "PROJECTSTATE_UNSPECIFIED",
+ 1: "PROJECTSTATE_ACTIVE",
+ 2: "PROJECTSTATE_INACTIVE",
+}
-func (x ProjectState) Enum() *ProjectState {
- p := new(ProjectState)
- *p = x
- return p
+var ProjectState_value = map[string]int32{
+ "PROJECTSTATE_UNSPECIFIED": 0,
+ "PROJECTSTATE_ACTIVE": 1,
+ "PROJECTSTATE_INACTIVE": 2,
}
func (x ProjectState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ProjectState_name, int32(x))
}
-func (ProjectState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[12].Descriptor()
-}
-
-func (ProjectState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[12]
-}
-
-func (x ProjectState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ProjectState.Descriptor instead.
func (ProjectState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{12}
+ return fileDescriptor_edc174f991dc0a25, []int{12}
}
type ProjectType int32
@@ -724,45 +446,24 @@ const (
ProjectType_PROJECTTYPE_GRANTED ProjectType = 2
)
-// Enum value maps for ProjectType.
-var (
- ProjectType_name = map[int32]string{
- 0: "PROJECTTYPE_UNSPECIFIED",
- 1: "PROJECTTYPE_OWNED",
- 2: "PROJECTTYPE_GRANTED",
- }
- ProjectType_value = map[string]int32{
- "PROJECTTYPE_UNSPECIFIED": 0,
- "PROJECTTYPE_OWNED": 1,
- "PROJECTTYPE_GRANTED": 2,
- }
-)
+var ProjectType_name = map[int32]string{
+ 0: "PROJECTTYPE_UNSPECIFIED",
+ 1: "PROJECTTYPE_OWNED",
+ 2: "PROJECTTYPE_GRANTED",
+}
-func (x ProjectType) Enum() *ProjectType {
- p := new(ProjectType)
- *p = x
- return p
+var ProjectType_value = map[string]int32{
+ "PROJECTTYPE_UNSPECIFIED": 0,
+ "PROJECTTYPE_OWNED": 1,
+ "PROJECTTYPE_GRANTED": 2,
}
func (x ProjectType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ProjectType_name, int32(x))
}
-func (ProjectType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[13].Descriptor()
-}
-
-func (ProjectType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[13]
-}
-
-func (x ProjectType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ProjectType.Descriptor instead.
func (ProjectType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{13}
+ return fileDescriptor_edc174f991dc0a25, []int{13}
}
type ProjectRoleSearchKey int32
@@ -773,45 +474,24 @@ const (
ProjectRoleSearchKey_PROJECTROLESEARCHKEY_DISPLAY_NAME ProjectRoleSearchKey = 2
)
-// Enum value maps for ProjectRoleSearchKey.
-var (
- ProjectRoleSearchKey_name = map[int32]string{
- 0: "PROJECTROLESEARCHKEY_UNSPECIFIED",
- 1: "PROJECTROLESEARCHKEY_KEY",
- 2: "PROJECTROLESEARCHKEY_DISPLAY_NAME",
- }
- ProjectRoleSearchKey_value = map[string]int32{
- "PROJECTROLESEARCHKEY_UNSPECIFIED": 0,
- "PROJECTROLESEARCHKEY_KEY": 1,
- "PROJECTROLESEARCHKEY_DISPLAY_NAME": 2,
- }
-)
+var ProjectRoleSearchKey_name = map[int32]string{
+ 0: "PROJECTROLESEARCHKEY_UNSPECIFIED",
+ 1: "PROJECTROLESEARCHKEY_KEY",
+ 2: "PROJECTROLESEARCHKEY_DISPLAY_NAME",
+}
-func (x ProjectRoleSearchKey) Enum() *ProjectRoleSearchKey {
- p := new(ProjectRoleSearchKey)
- *p = x
- return p
+var ProjectRoleSearchKey_value = map[string]int32{
+ "PROJECTROLESEARCHKEY_UNSPECIFIED": 0,
+ "PROJECTROLESEARCHKEY_KEY": 1,
+ "PROJECTROLESEARCHKEY_DISPLAY_NAME": 2,
}
func (x ProjectRoleSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ProjectRoleSearchKey_name, int32(x))
}
-func (ProjectRoleSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[14].Descriptor()
-}
-
-func (ProjectRoleSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[14]
-}
-
-func (x ProjectRoleSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ProjectRoleSearchKey.Descriptor instead.
func (ProjectRoleSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{14}
+ return fileDescriptor_edc174f991dc0a25, []int{14}
}
type ProjectMemberSearchKey int32
@@ -825,51 +505,30 @@ const (
ProjectMemberSearchKey_PROJECTMEMBERSEARCHKEY_USER_NAME ProjectMemberSearchKey = 5
)
-// Enum value maps for ProjectMemberSearchKey.
-var (
- ProjectMemberSearchKey_name = map[int32]string{
- 0: "PROJECTMEMBERSEARCHKEY_UNSPECIFIED",
- 1: "PROJECTMEMBERSEARCHKEY_FIRST_NAME",
- 2: "PROJECTMEMBERSEARCHKEY_LAST_NAME",
- 3: "PROJECTMEMBERSEARCHKEY_EMAIL",
- 4: "PROJECTMEMBERSEARCHKEY_USER_ID",
- 5: "PROJECTMEMBERSEARCHKEY_USER_NAME",
- }
- ProjectMemberSearchKey_value = map[string]int32{
- "PROJECTMEMBERSEARCHKEY_UNSPECIFIED": 0,
- "PROJECTMEMBERSEARCHKEY_FIRST_NAME": 1,
- "PROJECTMEMBERSEARCHKEY_LAST_NAME": 2,
- "PROJECTMEMBERSEARCHKEY_EMAIL": 3,
- "PROJECTMEMBERSEARCHKEY_USER_ID": 4,
- "PROJECTMEMBERSEARCHKEY_USER_NAME": 5,
- }
-)
+var ProjectMemberSearchKey_name = map[int32]string{
+ 0: "PROJECTMEMBERSEARCHKEY_UNSPECIFIED",
+ 1: "PROJECTMEMBERSEARCHKEY_FIRST_NAME",
+ 2: "PROJECTMEMBERSEARCHKEY_LAST_NAME",
+ 3: "PROJECTMEMBERSEARCHKEY_EMAIL",
+ 4: "PROJECTMEMBERSEARCHKEY_USER_ID",
+ 5: "PROJECTMEMBERSEARCHKEY_USER_NAME",
+}
-func (x ProjectMemberSearchKey) Enum() *ProjectMemberSearchKey {
- p := new(ProjectMemberSearchKey)
- *p = x
- return p
+var ProjectMemberSearchKey_value = map[string]int32{
+ "PROJECTMEMBERSEARCHKEY_UNSPECIFIED": 0,
+ "PROJECTMEMBERSEARCHKEY_FIRST_NAME": 1,
+ "PROJECTMEMBERSEARCHKEY_LAST_NAME": 2,
+ "PROJECTMEMBERSEARCHKEY_EMAIL": 3,
+ "PROJECTMEMBERSEARCHKEY_USER_ID": 4,
+ "PROJECTMEMBERSEARCHKEY_USER_NAME": 5,
}
func (x ProjectMemberSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ProjectMemberSearchKey_name, int32(x))
}
-func (ProjectMemberSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[15].Descriptor()
-}
-
-func (ProjectMemberSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[15]
-}
-
-func (x ProjectMemberSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ProjectMemberSearchKey.Descriptor instead.
func (ProjectMemberSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{15}
+ return fileDescriptor_edc174f991dc0a25, []int{15}
}
type AppState int32
@@ -880,45 +539,24 @@ const (
AppState_APPSTATE_INACTIVE AppState = 2
)
-// Enum value maps for AppState.
-var (
- AppState_name = map[int32]string{
- 0: "APPSTATE_UNSPECIFIED",
- 1: "APPSTATE_ACTIVE",
- 2: "APPSTATE_INACTIVE",
- }
- AppState_value = map[string]int32{
- "APPSTATE_UNSPECIFIED": 0,
- "APPSTATE_ACTIVE": 1,
- "APPSTATE_INACTIVE": 2,
- }
-)
+var AppState_name = map[int32]string{
+ 0: "APPSTATE_UNSPECIFIED",
+ 1: "APPSTATE_ACTIVE",
+ 2: "APPSTATE_INACTIVE",
+}
-func (x AppState) Enum() *AppState {
- p := new(AppState)
- *p = x
- return p
+var AppState_value = map[string]int32{
+ "APPSTATE_UNSPECIFIED": 0,
+ "APPSTATE_ACTIVE": 1,
+ "APPSTATE_INACTIVE": 2,
}
func (x AppState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(AppState_name, int32(x))
}
-func (AppState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[16].Descriptor()
-}
-
-func (AppState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[16]
-}
-
-func (x AppState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use AppState.Descriptor instead.
func (AppState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{16}
+ return fileDescriptor_edc174f991dc0a25, []int{16}
}
type OIDCResponseType int32
@@ -929,45 +567,24 @@ const (
OIDCResponseType_OIDCRESPONSETYPE_TOKEN OIDCResponseType = 2
)
-// Enum value maps for OIDCResponseType.
-var (
- OIDCResponseType_name = map[int32]string{
- 0: "OIDCRESPONSETYPE_CODE",
- 1: "OIDCRESPONSETYPE_ID_TOKEN",
- 2: "OIDCRESPONSETYPE_TOKEN",
- }
- OIDCResponseType_value = map[string]int32{
- "OIDCRESPONSETYPE_CODE": 0,
- "OIDCRESPONSETYPE_ID_TOKEN": 1,
- "OIDCRESPONSETYPE_TOKEN": 2,
- }
-)
+var OIDCResponseType_name = map[int32]string{
+ 0: "OIDCRESPONSETYPE_CODE",
+ 1: "OIDCRESPONSETYPE_ID_TOKEN",
+ 2: "OIDCRESPONSETYPE_TOKEN",
+}
-func (x OIDCResponseType) Enum() *OIDCResponseType {
- p := new(OIDCResponseType)
- *p = x
- return p
+var OIDCResponseType_value = map[string]int32{
+ "OIDCRESPONSETYPE_CODE": 0,
+ "OIDCRESPONSETYPE_ID_TOKEN": 1,
+ "OIDCRESPONSETYPE_TOKEN": 2,
}
func (x OIDCResponseType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OIDCResponseType_name, int32(x))
}
-func (OIDCResponseType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[17].Descriptor()
-}
-
-func (OIDCResponseType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[17]
-}
-
-func (x OIDCResponseType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OIDCResponseType.Descriptor instead.
func (OIDCResponseType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{17}
+ return fileDescriptor_edc174f991dc0a25, []int{17}
}
type OIDCGrantType int32
@@ -978,45 +595,24 @@ const (
OIDCGrantType_OIDCGRANTTYPE_REFRESH_TOKEN OIDCGrantType = 2
)
-// Enum value maps for OIDCGrantType.
-var (
- OIDCGrantType_name = map[int32]string{
- 0: "OIDCGRANTTYPE_AUTHORIZATION_CODE",
- 1: "OIDCGRANTTYPE_IMPLICIT",
- 2: "OIDCGRANTTYPE_REFRESH_TOKEN",
- }
- OIDCGrantType_value = map[string]int32{
- "OIDCGRANTTYPE_AUTHORIZATION_CODE": 0,
- "OIDCGRANTTYPE_IMPLICIT": 1,
- "OIDCGRANTTYPE_REFRESH_TOKEN": 2,
- }
-)
+var OIDCGrantType_name = map[int32]string{
+ 0: "OIDCGRANTTYPE_AUTHORIZATION_CODE",
+ 1: "OIDCGRANTTYPE_IMPLICIT",
+ 2: "OIDCGRANTTYPE_REFRESH_TOKEN",
+}
-func (x OIDCGrantType) Enum() *OIDCGrantType {
- p := new(OIDCGrantType)
- *p = x
- return p
+var OIDCGrantType_value = map[string]int32{
+ "OIDCGRANTTYPE_AUTHORIZATION_CODE": 0,
+ "OIDCGRANTTYPE_IMPLICIT": 1,
+ "OIDCGRANTTYPE_REFRESH_TOKEN": 2,
}
func (x OIDCGrantType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OIDCGrantType_name, int32(x))
}
-func (OIDCGrantType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[18].Descriptor()
-}
-
-func (OIDCGrantType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[18]
-}
-
-func (x OIDCGrantType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OIDCGrantType.Descriptor instead.
func (OIDCGrantType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{18}
+ return fileDescriptor_edc174f991dc0a25, []int{18}
}
type OIDCApplicationType int32
@@ -1027,45 +623,24 @@ const (
OIDCApplicationType_OIDCAPPLICATIONTYPE_NATIVE OIDCApplicationType = 2
)
-// Enum value maps for OIDCApplicationType.
-var (
- OIDCApplicationType_name = map[int32]string{
- 0: "OIDCAPPLICATIONTYPE_WEB",
- 1: "OIDCAPPLICATIONTYPE_USER_AGENT",
- 2: "OIDCAPPLICATIONTYPE_NATIVE",
- }
- OIDCApplicationType_value = map[string]int32{
- "OIDCAPPLICATIONTYPE_WEB": 0,
- "OIDCAPPLICATIONTYPE_USER_AGENT": 1,
- "OIDCAPPLICATIONTYPE_NATIVE": 2,
- }
-)
+var OIDCApplicationType_name = map[int32]string{
+ 0: "OIDCAPPLICATIONTYPE_WEB",
+ 1: "OIDCAPPLICATIONTYPE_USER_AGENT",
+ 2: "OIDCAPPLICATIONTYPE_NATIVE",
+}
-func (x OIDCApplicationType) Enum() *OIDCApplicationType {
- p := new(OIDCApplicationType)
- *p = x
- return p
+var OIDCApplicationType_value = map[string]int32{
+ "OIDCAPPLICATIONTYPE_WEB": 0,
+ "OIDCAPPLICATIONTYPE_USER_AGENT": 1,
+ "OIDCAPPLICATIONTYPE_NATIVE": 2,
}
func (x OIDCApplicationType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OIDCApplicationType_name, int32(x))
}
-func (OIDCApplicationType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[19].Descriptor()
-}
-
-func (OIDCApplicationType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[19]
-}
-
-func (x OIDCApplicationType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OIDCApplicationType.Descriptor instead.
func (OIDCApplicationType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{19}
+ return fileDescriptor_edc174f991dc0a25, []int{19}
}
type OIDCAuthMethodType int32
@@ -1076,45 +651,24 @@ const (
OIDCAuthMethodType_OIDCAUTHMETHODTYPE_NONE OIDCAuthMethodType = 2
)
-// Enum value maps for OIDCAuthMethodType.
-var (
- OIDCAuthMethodType_name = map[int32]string{
- 0: "OIDCAUTHMETHODTYPE_BASIC",
- 1: "OIDCAUTHMETHODTYPE_POST",
- 2: "OIDCAUTHMETHODTYPE_NONE",
- }
- OIDCAuthMethodType_value = map[string]int32{
- "OIDCAUTHMETHODTYPE_BASIC": 0,
- "OIDCAUTHMETHODTYPE_POST": 1,
- "OIDCAUTHMETHODTYPE_NONE": 2,
- }
-)
+var OIDCAuthMethodType_name = map[int32]string{
+ 0: "OIDCAUTHMETHODTYPE_BASIC",
+ 1: "OIDCAUTHMETHODTYPE_POST",
+ 2: "OIDCAUTHMETHODTYPE_NONE",
+}
-func (x OIDCAuthMethodType) Enum() *OIDCAuthMethodType {
- p := new(OIDCAuthMethodType)
- *p = x
- return p
+var OIDCAuthMethodType_value = map[string]int32{
+ "OIDCAUTHMETHODTYPE_BASIC": 0,
+ "OIDCAUTHMETHODTYPE_POST": 1,
+ "OIDCAUTHMETHODTYPE_NONE": 2,
}
func (x OIDCAuthMethodType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OIDCAuthMethodType_name, int32(x))
}
-func (OIDCAuthMethodType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[20].Descriptor()
-}
-
-func (OIDCAuthMethodType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[20]
-}
-
-func (x OIDCAuthMethodType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OIDCAuthMethodType.Descriptor instead.
func (OIDCAuthMethodType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{20}
+ return fileDescriptor_edc174f991dc0a25, []int{20}
}
type ApplicationSearchKey int32
@@ -1124,43 +678,22 @@ const (
ApplicationSearchKey_APPLICATIONSEARCHKEY_APP_NAME ApplicationSearchKey = 1
)
-// Enum value maps for ApplicationSearchKey.
-var (
- ApplicationSearchKey_name = map[int32]string{
- 0: "APPLICATIONSERACHKEY_UNSPECIFIED",
- 1: "APPLICATIONSEARCHKEY_APP_NAME",
- }
- ApplicationSearchKey_value = map[string]int32{
- "APPLICATIONSERACHKEY_UNSPECIFIED": 0,
- "APPLICATIONSEARCHKEY_APP_NAME": 1,
- }
-)
+var ApplicationSearchKey_name = map[int32]string{
+ 0: "APPLICATIONSERACHKEY_UNSPECIFIED",
+ 1: "APPLICATIONSEARCHKEY_APP_NAME",
+}
-func (x ApplicationSearchKey) Enum() *ApplicationSearchKey {
- p := new(ApplicationSearchKey)
- *p = x
- return p
+var ApplicationSearchKey_value = map[string]int32{
+ "APPLICATIONSERACHKEY_UNSPECIFIED": 0,
+ "APPLICATIONSEARCHKEY_APP_NAME": 1,
}
func (x ApplicationSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ApplicationSearchKey_name, int32(x))
}
-func (ApplicationSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[21].Descriptor()
-}
-
-func (ApplicationSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[21]
-}
-
-func (x ApplicationSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ApplicationSearchKey.Descriptor instead.
func (ApplicationSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{21}
+ return fileDescriptor_edc174f991dc0a25, []int{21}
}
type ProjectGrantState int32
@@ -1171,45 +704,24 @@ const (
ProjectGrantState_PROJECTGRANTSTATE_INACTIVE ProjectGrantState = 2
)
-// Enum value maps for ProjectGrantState.
-var (
- ProjectGrantState_name = map[int32]string{
- 0: "PROJECTGRANTSTATE_UNSPECIFIED",
- 1: "PROJECTGRANTSTATE_ACTIVE",
- 2: "PROJECTGRANTSTATE_INACTIVE",
- }
- ProjectGrantState_value = map[string]int32{
- "PROJECTGRANTSTATE_UNSPECIFIED": 0,
- "PROJECTGRANTSTATE_ACTIVE": 1,
- "PROJECTGRANTSTATE_INACTIVE": 2,
- }
-)
+var ProjectGrantState_name = map[int32]string{
+ 0: "PROJECTGRANTSTATE_UNSPECIFIED",
+ 1: "PROJECTGRANTSTATE_ACTIVE",
+ 2: "PROJECTGRANTSTATE_INACTIVE",
+}
-func (x ProjectGrantState) Enum() *ProjectGrantState {
- p := new(ProjectGrantState)
- *p = x
- return p
+var ProjectGrantState_value = map[string]int32{
+ "PROJECTGRANTSTATE_UNSPECIFIED": 0,
+ "PROJECTGRANTSTATE_ACTIVE": 1,
+ "PROJECTGRANTSTATE_INACTIVE": 2,
}
func (x ProjectGrantState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ProjectGrantState_name, int32(x))
}
-func (ProjectGrantState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[22].Descriptor()
-}
-
-func (ProjectGrantState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[22]
-}
-
-func (x ProjectGrantState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ProjectGrantState.Descriptor instead.
func (ProjectGrantState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{22}
+ return fileDescriptor_edc174f991dc0a25, []int{22}
}
type ProjectGrantMemberSearchKey int32
@@ -1223,51 +735,30 @@ const (
ProjectGrantMemberSearchKey_PROJECTGRANTMEMBERSEARCHKEY_USER_NAME ProjectGrantMemberSearchKey = 5
)
-// Enum value maps for ProjectGrantMemberSearchKey.
-var (
- ProjectGrantMemberSearchKey_name = map[int32]string{
- 0: "PROJECTGRANTMEMBERSEARCHKEY_UNSPECIFIED",
- 1: "PROJECTGRANTMEMBERSEARCHKEY_FIRST_NAME",
- 2: "PROJECTGRANTMEMBERSEARCHKEY_LAST_NAME",
- 3: "PROJECTGRANTMEMBERSEARCHKEY_EMAIL",
- 4: "PROJECTGRANTMEMBERSEARCHKEY_USER_ID",
- 5: "PROJECTGRANTMEMBERSEARCHKEY_USER_NAME",
- }
- ProjectGrantMemberSearchKey_value = map[string]int32{
- "PROJECTGRANTMEMBERSEARCHKEY_UNSPECIFIED": 0,
- "PROJECTGRANTMEMBERSEARCHKEY_FIRST_NAME": 1,
- "PROJECTGRANTMEMBERSEARCHKEY_LAST_NAME": 2,
- "PROJECTGRANTMEMBERSEARCHKEY_EMAIL": 3,
- "PROJECTGRANTMEMBERSEARCHKEY_USER_ID": 4,
- "PROJECTGRANTMEMBERSEARCHKEY_USER_NAME": 5,
- }
-)
+var ProjectGrantMemberSearchKey_name = map[int32]string{
+ 0: "PROJECTGRANTMEMBERSEARCHKEY_UNSPECIFIED",
+ 1: "PROJECTGRANTMEMBERSEARCHKEY_FIRST_NAME",
+ 2: "PROJECTGRANTMEMBERSEARCHKEY_LAST_NAME",
+ 3: "PROJECTGRANTMEMBERSEARCHKEY_EMAIL",
+ 4: "PROJECTGRANTMEMBERSEARCHKEY_USER_ID",
+ 5: "PROJECTGRANTMEMBERSEARCHKEY_USER_NAME",
+}
-func (x ProjectGrantMemberSearchKey) Enum() *ProjectGrantMemberSearchKey {
- p := new(ProjectGrantMemberSearchKey)
- *p = x
- return p
+var ProjectGrantMemberSearchKey_value = map[string]int32{
+ "PROJECTGRANTMEMBERSEARCHKEY_UNSPECIFIED": 0,
+ "PROJECTGRANTMEMBERSEARCHKEY_FIRST_NAME": 1,
+ "PROJECTGRANTMEMBERSEARCHKEY_LAST_NAME": 2,
+ "PROJECTGRANTMEMBERSEARCHKEY_EMAIL": 3,
+ "PROJECTGRANTMEMBERSEARCHKEY_USER_ID": 4,
+ "PROJECTGRANTMEMBERSEARCHKEY_USER_NAME": 5,
}
func (x ProjectGrantMemberSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ProjectGrantMemberSearchKey_name, int32(x))
}
-func (ProjectGrantMemberSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[23].Descriptor()
-}
-
-func (ProjectGrantMemberSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[23]
-}
-
-func (x ProjectGrantMemberSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ProjectGrantMemberSearchKey.Descriptor instead.
func (ProjectGrantMemberSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{23}
+ return fileDescriptor_edc174f991dc0a25, []int{23}
}
type UserGrantState int32
@@ -1278,45 +769,24 @@ const (
UserGrantState_USERGRANTSTATE_INACTIVE UserGrantState = 2
)
-// Enum value maps for UserGrantState.
-var (
- UserGrantState_name = map[int32]string{
- 0: "USERGRANTSTATE_UNSPECIFIED",
- 1: "USERGRANTSTATE_ACTIVE",
- 2: "USERGRANTSTATE_INACTIVE",
- }
- UserGrantState_value = map[string]int32{
- "USERGRANTSTATE_UNSPECIFIED": 0,
- "USERGRANTSTATE_ACTIVE": 1,
- "USERGRANTSTATE_INACTIVE": 2,
- }
-)
+var UserGrantState_name = map[int32]string{
+ 0: "USERGRANTSTATE_UNSPECIFIED",
+ 1: "USERGRANTSTATE_ACTIVE",
+ 2: "USERGRANTSTATE_INACTIVE",
+}
-func (x UserGrantState) Enum() *UserGrantState {
- p := new(UserGrantState)
- *p = x
- return p
+var UserGrantState_value = map[string]int32{
+ "USERGRANTSTATE_UNSPECIFIED": 0,
+ "USERGRANTSTATE_ACTIVE": 1,
+ "USERGRANTSTATE_INACTIVE": 2,
}
func (x UserGrantState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(UserGrantState_name, int32(x))
}
-func (UserGrantState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[24].Descriptor()
-}
-
-func (UserGrantState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[24]
-}
-
-func (x UserGrantState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use UserGrantState.Descriptor instead.
func (UserGrantState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{24}
+ return fileDescriptor_edc174f991dc0a25, []int{24}
}
type UserGrantSearchKey int32
@@ -1328,47 +798,26 @@ const (
UserGrantSearchKey_USERGRANTSEARCHKEY_ORG_ID UserGrantSearchKey = 3
)
-// Enum value maps for UserGrantSearchKey.
-var (
- UserGrantSearchKey_name = map[int32]string{
- 0: "USERGRANTSEARCHKEY_UNSPECIFIED",
- 1: "USERGRANTSEARCHKEY_PROJECT_ID",
- 2: "USERGRANTSEARCHKEY_USER_ID",
- 3: "USERGRANTSEARCHKEY_ORG_ID",
- }
- UserGrantSearchKey_value = map[string]int32{
- "USERGRANTSEARCHKEY_UNSPECIFIED": 0,
- "USERGRANTSEARCHKEY_PROJECT_ID": 1,
- "USERGRANTSEARCHKEY_USER_ID": 2,
- "USERGRANTSEARCHKEY_ORG_ID": 3,
- }
-)
+var UserGrantSearchKey_name = map[int32]string{
+ 0: "USERGRANTSEARCHKEY_UNSPECIFIED",
+ 1: "USERGRANTSEARCHKEY_PROJECT_ID",
+ 2: "USERGRANTSEARCHKEY_USER_ID",
+ 3: "USERGRANTSEARCHKEY_ORG_ID",
+}
-func (x UserGrantSearchKey) Enum() *UserGrantSearchKey {
- p := new(UserGrantSearchKey)
- *p = x
- return p
+var UserGrantSearchKey_value = map[string]int32{
+ "USERGRANTSEARCHKEY_UNSPECIFIED": 0,
+ "USERGRANTSEARCHKEY_PROJECT_ID": 1,
+ "USERGRANTSEARCHKEY_USER_ID": 2,
+ "USERGRANTSEARCHKEY_ORG_ID": 3,
}
func (x UserGrantSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(UserGrantSearchKey_name, int32(x))
}
-func (UserGrantSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[25].Descriptor()
-}
-
-func (UserGrantSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[25]
-}
-
-func (x UserGrantSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use UserGrantSearchKey.Descriptor instead.
func (UserGrantSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{25}
+ return fileDescriptor_edc174f991dc0a25, []int{25}
}
type AuthGrantSearchKey int32
@@ -1380,6967 +829,6181 @@ const (
AuthGrantSearchKey_AUTHGRANTSEARCHKEY_USER_ID AuthGrantSearchKey = 3
)
-// Enum value maps for AuthGrantSearchKey.
-var (
- AuthGrantSearchKey_name = map[int32]string{
- 0: "AUTHGRANTSEARCHKEY_UNSPECIFIED",
- 1: "AUTHGRANTSEARCHKEY_ORG_ID",
- 2: "AUTHGRANTSEARCHKEY_PROJECT_ID",
- 3: "AUTHGRANTSEARCHKEY_USER_ID",
- }
- AuthGrantSearchKey_value = map[string]int32{
- "AUTHGRANTSEARCHKEY_UNSPECIFIED": 0,
- "AUTHGRANTSEARCHKEY_ORG_ID": 1,
- "AUTHGRANTSEARCHKEY_PROJECT_ID": 2,
- "AUTHGRANTSEARCHKEY_USER_ID": 3,
- }
-)
+var AuthGrantSearchKey_name = map[int32]string{
+ 0: "AUTHGRANTSEARCHKEY_UNSPECIFIED",
+ 1: "AUTHGRANTSEARCHKEY_ORG_ID",
+ 2: "AUTHGRANTSEARCHKEY_PROJECT_ID",
+ 3: "AUTHGRANTSEARCHKEY_USER_ID",
+}
-func (x AuthGrantSearchKey) Enum() *AuthGrantSearchKey {
- p := new(AuthGrantSearchKey)
- *p = x
- return p
+var AuthGrantSearchKey_value = map[string]int32{
+ "AUTHGRANTSEARCHKEY_UNSPECIFIED": 0,
+ "AUTHGRANTSEARCHKEY_ORG_ID": 1,
+ "AUTHGRANTSEARCHKEY_PROJECT_ID": 2,
+ "AUTHGRANTSEARCHKEY_USER_ID": 3,
}
func (x AuthGrantSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(AuthGrantSearchKey_name, int32(x))
}
-func (AuthGrantSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[26].Descriptor()
-}
-
-func (AuthGrantSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[26]
-}
-
-func (x AuthGrantSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use AuthGrantSearchKey.Descriptor instead.
func (AuthGrantSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{26}
+ return fileDescriptor_edc174f991dc0a25, []int{26}
}
type Iam struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- GlobalOrgId string `protobuf:"bytes,1,opt,name=global_org_id,json=globalOrgId,proto3" json:"global_org_id,omitempty"`
- IamProjectId string `protobuf:"bytes,2,opt,name=iam_project_id,json=iamProjectId,proto3" json:"iam_project_id,omitempty"`
- SetUpDone bool `protobuf:"varint,3,opt,name=set_up_done,json=setUpDone,proto3" json:"set_up_done,omitempty"`
- SetUpStarted bool `protobuf:"varint,4,opt,name=set_up_started,json=setUpStarted,proto3" json:"set_up_started,omitempty"`
+ GlobalOrgId string `protobuf:"bytes,1,opt,name=global_org_id,json=globalOrgId,proto3" json:"global_org_id,omitempty"`
+ IamProjectId string `protobuf:"bytes,2,opt,name=iam_project_id,json=iamProjectId,proto3" json:"iam_project_id,omitempty"`
+ SetUpDone bool `protobuf:"varint,3,opt,name=set_up_done,json=setUpDone,proto3" json:"set_up_done,omitempty"`
+ SetUpStarted bool `protobuf:"varint,4,opt,name=set_up_started,json=setUpStarted,proto3" json:"set_up_started,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Iam) Reset() {
- *x = Iam{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[0]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Iam) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Iam) ProtoMessage() {}
-
-func (x *Iam) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[0]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use Iam.ProtoReflect.Descriptor instead.
+func (m *Iam) Reset() { *m = Iam{} }
+func (m *Iam) String() string { return proto.CompactTextString(m) }
+func (*Iam) ProtoMessage() {}
func (*Iam) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{0}
+ return fileDescriptor_edc174f991dc0a25, []int{0}
}
-func (x *Iam) GetGlobalOrgId() string {
- if x != nil {
- return x.GlobalOrgId
+func (m *Iam) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Iam.Unmarshal(m, b)
+}
+func (m *Iam) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Iam.Marshal(b, m, deterministic)
+}
+func (m *Iam) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Iam.Merge(m, src)
+}
+func (m *Iam) XXX_Size() int {
+ return xxx_messageInfo_Iam.Size(m)
+}
+func (m *Iam) XXX_DiscardUnknown() {
+ xxx_messageInfo_Iam.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Iam proto.InternalMessageInfo
+
+func (m *Iam) GetGlobalOrgId() string {
+ if m != nil {
+ return m.GlobalOrgId
}
return ""
}
-func (x *Iam) GetIamProjectId() string {
- if x != nil {
- return x.IamProjectId
+func (m *Iam) GetIamProjectId() string {
+ if m != nil {
+ return m.IamProjectId
}
return ""
}
-func (x *Iam) GetSetUpDone() bool {
- if x != nil {
- return x.SetUpDone
+func (m *Iam) GetSetUpDone() bool {
+ if m != nil {
+ return m.SetUpDone
}
return false
}
-func (x *Iam) GetSetUpStarted() bool {
- if x != nil {
- return x.SetUpStarted
+func (m *Iam) GetSetUpStarted() bool {
+ if m != nil {
+ return m.SetUpStarted
}
return false
}
type ChangeRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- SecId string `protobuf:"bytes,2,opt,name=sec_id,json=secId,proto3" json:"sec_id,omitempty"`
- Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
- SequenceOffset uint64 `protobuf:"varint,4,opt,name=sequence_offset,json=sequenceOffset,proto3" json:"sequence_offset,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ SecId string `protobuf:"bytes,2,opt,name=sec_id,json=secId,proto3" json:"sec_id,omitempty"`
+ Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ SequenceOffset uint64 `protobuf:"varint,4,opt,name=sequence_offset,json=sequenceOffset,proto3" json:"sequence_offset,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ChangeRequest) Reset() {
- *x = ChangeRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[1]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ChangeRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ChangeRequest) ProtoMessage() {}
-
-func (x *ChangeRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[1]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ChangeRequest.ProtoReflect.Descriptor instead.
+func (m *ChangeRequest) Reset() { *m = ChangeRequest{} }
+func (m *ChangeRequest) String() string { return proto.CompactTextString(m) }
+func (*ChangeRequest) ProtoMessage() {}
func (*ChangeRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{1}
+ return fileDescriptor_edc174f991dc0a25, []int{1}
}
-func (x *ChangeRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *ChangeRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ChangeRequest.Unmarshal(m, b)
+}
+func (m *ChangeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ChangeRequest.Marshal(b, m, deterministic)
+}
+func (m *ChangeRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ChangeRequest.Merge(m, src)
+}
+func (m *ChangeRequest) XXX_Size() int {
+ return xxx_messageInfo_ChangeRequest.Size(m)
+}
+func (m *ChangeRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ChangeRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ChangeRequest proto.InternalMessageInfo
+
+func (m *ChangeRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ChangeRequest) GetSecId() string {
- if x != nil {
- return x.SecId
+func (m *ChangeRequest) GetSecId() string {
+ if m != nil {
+ return m.SecId
}
return ""
}
-func (x *ChangeRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ChangeRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ChangeRequest) GetSequenceOffset() uint64 {
- if x != nil {
- return x.SequenceOffset
+func (m *ChangeRequest) GetSequenceOffset() uint64 {
+ if m != nil {
+ return m.SequenceOffset
}
return 0
}
type Changes struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Changes []*Change `protobuf:"bytes,1,rep,name=changes,proto3" json:"changes,omitempty"`
- Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ Changes []*Change `protobuf:"bytes,1,rep,name=changes,proto3" json:"changes,omitempty"`
+ Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Changes) Reset() {
- *x = Changes{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[2]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Changes) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Changes) ProtoMessage() {}
-
-func (x *Changes) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[2]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use Changes.ProtoReflect.Descriptor instead.
+func (m *Changes) Reset() { *m = Changes{} }
+func (m *Changes) String() string { return proto.CompactTextString(m) }
+func (*Changes) ProtoMessage() {}
func (*Changes) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{2}
+ return fileDescriptor_edc174f991dc0a25, []int{2}
}
-func (x *Changes) GetChanges() []*Change {
- if x != nil {
- return x.Changes
+func (m *Changes) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Changes.Unmarshal(m, b)
+}
+func (m *Changes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Changes.Marshal(b, m, deterministic)
+}
+func (m *Changes) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Changes.Merge(m, src)
+}
+func (m *Changes) XXX_Size() int {
+ return xxx_messageInfo_Changes.Size(m)
+}
+func (m *Changes) XXX_DiscardUnknown() {
+ xxx_messageInfo_Changes.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Changes proto.InternalMessageInfo
+
+func (m *Changes) GetChanges() []*Change {
+ if m != nil {
+ return m.Changes
}
return nil
}
-func (x *Changes) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *Changes) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *Changes) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *Changes) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
type Change struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,1,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- EventType string `protobuf:"bytes,2,opt,name=event_type,json=eventType,proto3" json:"event_type,omitempty"`
- Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
- Editor string `protobuf:"bytes,4,opt,name=editor,proto3" json:"editor,omitempty"`
- Data *_struct.Struct `protobuf:"bytes,5,opt,name=data,proto3" json:"data,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,1,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ EventType string `protobuf:"bytes,2,opt,name=event_type,json=eventType,proto3" json:"event_type,omitempty"`
+ Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ Editor string `protobuf:"bytes,4,opt,name=editor,proto3" json:"editor,omitempty"`
+ Data *_struct.Struct `protobuf:"bytes,5,opt,name=data,proto3" json:"data,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Change) Reset() {
- *x = Change{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[3]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Change) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Change) ProtoMessage() {}
-
-func (x *Change) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[3]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use Change.ProtoReflect.Descriptor instead.
+func (m *Change) Reset() { *m = Change{} }
+func (m *Change) String() string { return proto.CompactTextString(m) }
+func (*Change) ProtoMessage() {}
func (*Change) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{3}
+ return fileDescriptor_edc174f991dc0a25, []int{3}
}
-func (x *Change) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *Change) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Change.Unmarshal(m, b)
+}
+func (m *Change) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Change.Marshal(b, m, deterministic)
+}
+func (m *Change) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Change.Merge(m, src)
+}
+func (m *Change) XXX_Size() int {
+ return xxx_messageInfo_Change.Size(m)
+}
+func (m *Change) XXX_DiscardUnknown() {
+ xxx_messageInfo_Change.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Change proto.InternalMessageInfo
+
+func (m *Change) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *Change) GetEventType() string {
- if x != nil {
- return x.EventType
+func (m *Change) GetEventType() string {
+ if m != nil {
+ return m.EventType
}
return ""
}
-func (x *Change) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *Change) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *Change) GetEditor() string {
- if x != nil {
- return x.Editor
+func (m *Change) GetEditor() string {
+ if m != nil {
+ return m.Editor
}
return ""
}
-func (x *Change) GetData() *_struct.Struct {
- if x != nil {
- return x.Data
+func (m *Change) GetData() *_struct.Struct {
+ if m != nil {
+ return m.Data
}
return nil
}
type ApplicationID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ApplicationID) Reset() {
- *x = ApplicationID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[4]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ApplicationID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ApplicationID) ProtoMessage() {}
-
-func (x *ApplicationID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[4]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ApplicationID.ProtoReflect.Descriptor instead.
+func (m *ApplicationID) Reset() { *m = ApplicationID{} }
+func (m *ApplicationID) String() string { return proto.CompactTextString(m) }
+func (*ApplicationID) ProtoMessage() {}
func (*ApplicationID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{4}
+ return fileDescriptor_edc174f991dc0a25, []int{4}
}
-func (x *ApplicationID) GetId() string {
- if x != nil {
- return x.Id
+func (m *ApplicationID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ApplicationID.Unmarshal(m, b)
+}
+func (m *ApplicationID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ApplicationID.Marshal(b, m, deterministic)
+}
+func (m *ApplicationID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ApplicationID.Merge(m, src)
+}
+func (m *ApplicationID) XXX_Size() int {
+ return xxx_messageInfo_ApplicationID.Size(m)
+}
+func (m *ApplicationID) XXX_DiscardUnknown() {
+ xxx_messageInfo_ApplicationID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ApplicationID proto.InternalMessageInfo
+
+func (m *ApplicationID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ApplicationID) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ApplicationID) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
type ProjectID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectID) Reset() {
- *x = ProjectID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[5]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectID) ProtoMessage() {}
-
-func (x *ProjectID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[5]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectID.ProtoReflect.Descriptor instead.
+func (m *ProjectID) Reset() { *m = ProjectID{} }
+func (m *ProjectID) String() string { return proto.CompactTextString(m) }
+func (*ProjectID) ProtoMessage() {}
func (*ProjectID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{5}
+ return fileDescriptor_edc174f991dc0a25, []int{5}
}
-func (x *ProjectID) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectID.Unmarshal(m, b)
+}
+func (m *ProjectID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectID.Marshal(b, m, deterministic)
+}
+func (m *ProjectID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectID.Merge(m, src)
+}
+func (m *ProjectID) XXX_Size() int {
+ return xxx_messageInfo_ProjectID.Size(m)
+}
+func (m *ProjectID) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectID proto.InternalMessageInfo
+
+func (m *ProjectID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type UserID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserID) Reset() {
- *x = UserID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[6]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserID) ProtoMessage() {}
-
-func (x *UserID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[6]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserID.ProtoReflect.Descriptor instead.
+func (m *UserID) Reset() { *m = UserID{} }
+func (m *UserID) String() string { return proto.CompactTextString(m) }
+func (*UserID) ProtoMessage() {}
func (*UserID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{6}
+ return fileDescriptor_edc174f991dc0a25, []int{6}
}
-func (x *UserID) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserID.Unmarshal(m, b)
+}
+func (m *UserID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserID.Marshal(b, m, deterministic)
+}
+func (m *UserID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserID.Merge(m, src)
+}
+func (m *UserID) XXX_Size() int {
+ return xxx_messageInfo_UserID.Size(m)
+}
+func (m *UserID) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserID proto.InternalMessageInfo
+
+func (m *UserID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type UserEmailID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
+ Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserEmailID) Reset() {
- *x = UserEmailID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[7]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserEmailID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserEmailID) ProtoMessage() {}
-
-func (x *UserEmailID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[7]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserEmailID.ProtoReflect.Descriptor instead.
+func (m *UserEmailID) Reset() { *m = UserEmailID{} }
+func (m *UserEmailID) String() string { return proto.CompactTextString(m) }
+func (*UserEmailID) ProtoMessage() {}
func (*UserEmailID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{7}
+ return fileDescriptor_edc174f991dc0a25, []int{7}
}
-func (x *UserEmailID) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *UserEmailID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserEmailID.Unmarshal(m, b)
+}
+func (m *UserEmailID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserEmailID.Marshal(b, m, deterministic)
+}
+func (m *UserEmailID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserEmailID.Merge(m, src)
+}
+func (m *UserEmailID) XXX_Size() int {
+ return xxx_messageInfo_UserEmailID.Size(m)
+}
+func (m *UserEmailID) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserEmailID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserEmailID proto.InternalMessageInfo
+
+func (m *UserEmailID) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
type UniqueUserRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
+ UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UniqueUserRequest) Reset() {
- *x = UniqueUserRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[8]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UniqueUserRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UniqueUserRequest) ProtoMessage() {}
-
-func (x *UniqueUserRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[8]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UniqueUserRequest.ProtoReflect.Descriptor instead.
+func (m *UniqueUserRequest) Reset() { *m = UniqueUserRequest{} }
+func (m *UniqueUserRequest) String() string { return proto.CompactTextString(m) }
+func (*UniqueUserRequest) ProtoMessage() {}
func (*UniqueUserRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{8}
+ return fileDescriptor_edc174f991dc0a25, []int{8}
}
-func (x *UniqueUserRequest) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *UniqueUserRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UniqueUserRequest.Unmarshal(m, b)
+}
+func (m *UniqueUserRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UniqueUserRequest.Marshal(b, m, deterministic)
+}
+func (m *UniqueUserRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UniqueUserRequest.Merge(m, src)
+}
+func (m *UniqueUserRequest) XXX_Size() int {
+ return xxx_messageInfo_UniqueUserRequest.Size(m)
+}
+func (m *UniqueUserRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UniqueUserRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UniqueUserRequest proto.InternalMessageInfo
+
+func (m *UniqueUserRequest) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *UniqueUserRequest) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *UniqueUserRequest) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
type UniqueUserResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- IsUnique bool `protobuf:"varint,1,opt,name=is_unique,json=isUnique,proto3" json:"is_unique,omitempty"`
+ IsUnique bool `protobuf:"varint,1,opt,name=is_unique,json=isUnique,proto3" json:"is_unique,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UniqueUserResponse) Reset() {
- *x = UniqueUserResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[9]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UniqueUserResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UniqueUserResponse) ProtoMessage() {}
-
-func (x *UniqueUserResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[9]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UniqueUserResponse.ProtoReflect.Descriptor instead.
+func (m *UniqueUserResponse) Reset() { *m = UniqueUserResponse{} }
+func (m *UniqueUserResponse) String() string { return proto.CompactTextString(m) }
+func (*UniqueUserResponse) ProtoMessage() {}
func (*UniqueUserResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{9}
+ return fileDescriptor_edc174f991dc0a25, []int{9}
}
-func (x *UniqueUserResponse) GetIsUnique() bool {
- if x != nil {
- return x.IsUnique
+func (m *UniqueUserResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UniqueUserResponse.Unmarshal(m, b)
+}
+func (m *UniqueUserResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UniqueUserResponse.Marshal(b, m, deterministic)
+}
+func (m *UniqueUserResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UniqueUserResponse.Merge(m, src)
+}
+func (m *UniqueUserResponse) XXX_Size() int {
+ return xxx_messageInfo_UniqueUserResponse.Size(m)
+}
+func (m *UniqueUserResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_UniqueUserResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UniqueUserResponse proto.InternalMessageInfo
+
+func (m *UniqueUserResponse) GetIsUnique() bool {
+ if m != nil {
+ return m.IsUnique
}
return false
}
type CreateUserRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,6,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,7,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
- Email string `protobuf:"bytes,8,opt,name=email,proto3" json:"email,omitempty"`
- IsEmailVerified bool `protobuf:"varint,9,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
- Phone string `protobuf:"bytes,11,opt,name=phone,proto3" json:"phone,omitempty"`
- IsPhoneVerified bool `protobuf:"varint,12,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
- Country string `protobuf:"bytes,13,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,14,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,15,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,16,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,17,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
- Password string `protobuf:"bytes,18,opt,name=password,proto3" json:"password,omitempty"`
+ UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,5,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,6,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
+ Email string `protobuf:"bytes,7,opt,name=email,proto3" json:"email,omitempty"`
+ IsEmailVerified bool `protobuf:"varint,8,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
+ Phone string `protobuf:"bytes,9,opt,name=phone,proto3" json:"phone,omitempty"`
+ IsPhoneVerified bool `protobuf:"varint,10,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ Country string `protobuf:"bytes,11,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,12,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,13,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,14,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,15,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ Password string `protobuf:"bytes,16,opt,name=password,proto3" json:"password,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *CreateUserRequest) Reset() {
- *x = CreateUserRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[10]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *CreateUserRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*CreateUserRequest) ProtoMessage() {}
-
-func (x *CreateUserRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[10]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use CreateUserRequest.ProtoReflect.Descriptor instead.
+func (m *CreateUserRequest) Reset() { *m = CreateUserRequest{} }
+func (m *CreateUserRequest) String() string { return proto.CompactTextString(m) }
+func (*CreateUserRequest) ProtoMessage() {}
func (*CreateUserRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{10}
+ return fileDescriptor_edc174f991dc0a25, []int{10}
}
-func (x *CreateUserRequest) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *CreateUserRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_CreateUserRequest.Unmarshal(m, b)
+}
+func (m *CreateUserRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_CreateUserRequest.Marshal(b, m, deterministic)
+}
+func (m *CreateUserRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_CreateUserRequest.Merge(m, src)
+}
+func (m *CreateUserRequest) XXX_Size() int {
+ return xxx_messageInfo_CreateUserRequest.Size(m)
+}
+func (m *CreateUserRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_CreateUserRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_CreateUserRequest proto.InternalMessageInfo
+
+func (m *CreateUserRequest) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *CreateUserRequest) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *CreateUserRequest) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *CreateUserRequest) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *CreateUserRequest) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *CreateUserRequest) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *CreateUserRequest) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *CreateUserRequest) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *CreateUserRequest) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *CreateUserRequest) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
- }
- return ""
-}
-
-func (x *CreateUserRequest) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *CreateUserRequest) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
-func (x *CreateUserRequest) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *CreateUserRequest) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *CreateUserRequest) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
+func (m *CreateUserRequest) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
}
return false
}
-func (x *CreateUserRequest) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *CreateUserRequest) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
-func (x *CreateUserRequest) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
+func (m *CreateUserRequest) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
}
return false
}
-func (x *CreateUserRequest) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *CreateUserRequest) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *CreateUserRequest) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *CreateUserRequest) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *CreateUserRequest) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *CreateUserRequest) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *CreateUserRequest) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *CreateUserRequest) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *CreateUserRequest) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *CreateUserRequest) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
-func (x *CreateUserRequest) GetPassword() string {
- if x != nil {
- return x.Password
+func (m *CreateUserRequest) GetPassword() string {
+ if m != nil {
+ return m.Password
}
return ""
}
type User struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- State UserState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- UserName string `protobuf:"bytes,5,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- FirstName string `protobuf:"bytes,6,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,7,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- DisplayName string `protobuf:"bytes,8,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- NickName string `protobuf:"bytes,9,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,10,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,11,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
- Email string `protobuf:"bytes,12,opt,name=email,proto3" json:"email,omitempty"`
- IsEmailVerified bool `protobuf:"varint,13,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
- Phone string `protobuf:"bytes,14,opt,name=phone,proto3" json:"phone,omitempty"`
- IsPhoneVerified bool `protobuf:"varint,15,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
- Country string `protobuf:"bytes,16,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,17,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,18,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,19,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,20,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
- Sequence uint64 `protobuf:"varint,21,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ State UserState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ UserName string `protobuf:"bytes,5,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ FirstName string `protobuf:"bytes,6,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,7,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ DisplayName string `protobuf:"bytes,8,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ NickName string `protobuf:"bytes,9,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,10,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,11,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
+ Email string `protobuf:"bytes,12,opt,name=email,proto3" json:"email,omitempty"`
+ IsEmailVerified bool `protobuf:"varint,13,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
+ Phone string `protobuf:"bytes,14,opt,name=phone,proto3" json:"phone,omitempty"`
+ IsPhoneVerified bool `protobuf:"varint,15,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ Country string `protobuf:"bytes,16,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,17,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,18,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,19,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,20,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ Sequence uint64 `protobuf:"varint,21,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *User) Reset() {
- *x = User{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[11]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *User) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*User) ProtoMessage() {}
-
-func (x *User) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[11]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use User.ProtoReflect.Descriptor instead.
+func (m *User) Reset() { *m = User{} }
+func (m *User) String() string { return proto.CompactTextString(m) }
+func (*User) ProtoMessage() {}
func (*User) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{11}
+ return fileDescriptor_edc174f991dc0a25, []int{11}
}
-func (x *User) GetId() string {
- if x != nil {
- return x.Id
+func (m *User) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_User.Unmarshal(m, b)
+}
+func (m *User) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_User.Marshal(b, m, deterministic)
+}
+func (m *User) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_User.Merge(m, src)
+}
+func (m *User) XXX_Size() int {
+ return xxx_messageInfo_User.Size(m)
+}
+func (m *User) XXX_DiscardUnknown() {
+ xxx_messageInfo_User.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_User proto.InternalMessageInfo
+
+func (m *User) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *User) GetState() UserState {
- if x != nil {
- return x.State
+func (m *User) GetState() UserState {
+ if m != nil {
+ return m.State
}
return UserState_USERSTATE_UNSPECIFIED
}
-func (x *User) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *User) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *User) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *User) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *User) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *User) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *User) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *User) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *User) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *User) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *User) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *User) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *User) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *User) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *User) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
+func (m *User) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *User) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *User) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
-func (x *User) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *User) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *User) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
+func (m *User) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
}
return false
}
-func (x *User) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *User) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
-func (x *User) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
+func (m *User) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
}
return false
}
-func (x *User) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *User) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *User) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *User) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *User) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *User) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *User) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *User) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *User) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *User) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
-func (x *User) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *User) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type UserView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- State UserState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- LastLogin *timestamp.Timestamp `protobuf:"bytes,5,opt,name=last_login,json=lastLogin,proto3" json:"last_login,omitempty"`
- PasswordChanged *timestamp.Timestamp `protobuf:"bytes,6,opt,name=password_changed,json=passwordChanged,proto3" json:"password_changed,omitempty"`
- UserName string `protobuf:"bytes,7,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- FirstName string `protobuf:"bytes,8,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,9,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- DisplayName string `protobuf:"bytes,10,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- NickName string `protobuf:"bytes,11,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,12,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,13,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
- Email string `protobuf:"bytes,14,opt,name=email,proto3" json:"email,omitempty"`
- IsEmailVerified bool `protobuf:"varint,15,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
- Phone string `protobuf:"bytes,16,opt,name=phone,proto3" json:"phone,omitempty"`
- IsPhoneVerified bool `protobuf:"varint,17,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
- Country string `protobuf:"bytes,18,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,19,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,20,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,21,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,22,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
- Sequence uint64 `protobuf:"varint,23,opt,name=sequence,proto3" json:"sequence,omitempty"`
- ResourceOwner string `protobuf:"bytes,24,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
- LoginNames []string `protobuf:"bytes,25,rep,name=login_names,json=loginNames,proto3" json:"login_names,omitempty"`
- PreferredLoginName string `protobuf:"bytes,27,opt,name=preferred_login_name,json=preferredLoginName,proto3" json:"preferred_login_name,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ State UserState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ LastLogin *timestamp.Timestamp `protobuf:"bytes,5,opt,name=last_login,json=lastLogin,proto3" json:"last_login,omitempty"`
+ PasswordChanged *timestamp.Timestamp `protobuf:"bytes,6,opt,name=password_changed,json=passwordChanged,proto3" json:"password_changed,omitempty"`
+ UserName string `protobuf:"bytes,7,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ FirstName string `protobuf:"bytes,8,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,9,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ DisplayName string `protobuf:"bytes,10,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ NickName string `protobuf:"bytes,11,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,12,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,13,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
+ Email string `protobuf:"bytes,14,opt,name=email,proto3" json:"email,omitempty"`
+ IsEmailVerified bool `protobuf:"varint,15,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
+ Phone string `protobuf:"bytes,16,opt,name=phone,proto3" json:"phone,omitempty"`
+ IsPhoneVerified bool `protobuf:"varint,17,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ Country string `protobuf:"bytes,18,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,19,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,20,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,21,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,22,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ Sequence uint64 `protobuf:"varint,23,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ ResourceOwner string `protobuf:"bytes,24,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
+ LoginNames []string `protobuf:"bytes,25,rep,name=login_names,json=loginNames,proto3" json:"login_names,omitempty"`
+ PreferredLoginName string `protobuf:"bytes,27,opt,name=preferred_login_name,json=preferredLoginName,proto3" json:"preferred_login_name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserView) Reset() {
- *x = UserView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[12]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserView) ProtoMessage() {}
-
-func (x *UserView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[12]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserView.ProtoReflect.Descriptor instead.
+func (m *UserView) Reset() { *m = UserView{} }
+func (m *UserView) String() string { return proto.CompactTextString(m) }
+func (*UserView) ProtoMessage() {}
func (*UserView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{12}
+ return fileDescriptor_edc174f991dc0a25, []int{12}
}
-func (x *UserView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserView.Unmarshal(m, b)
+}
+func (m *UserView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserView.Marshal(b, m, deterministic)
+}
+func (m *UserView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserView.Merge(m, src)
+}
+func (m *UserView) XXX_Size() int {
+ return xxx_messageInfo_UserView.Size(m)
+}
+func (m *UserView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserView proto.InternalMessageInfo
+
+func (m *UserView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserView) GetState() UserState {
- if x != nil {
- return x.State
+func (m *UserView) GetState() UserState {
+ if m != nil {
+ return m.State
}
return UserState_USERSTATE_UNSPECIFIED
}
-func (x *UserView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *UserView) GetLastLogin() *timestamp.Timestamp {
- if x != nil {
- return x.LastLogin
+func (m *UserView) GetLastLogin() *timestamp.Timestamp {
+ if m != nil {
+ return m.LastLogin
}
return nil
}
-func (x *UserView) GetPasswordChanged() *timestamp.Timestamp {
- if x != nil {
- return x.PasswordChanged
+func (m *UserView) GetPasswordChanged() *timestamp.Timestamp {
+ if m != nil {
+ return m.PasswordChanged
}
return nil
}
-func (x *UserView) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *UserView) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *UserView) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *UserView) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *UserView) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *UserView) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *UserView) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *UserView) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *UserView) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *UserView) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *UserView) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
+func (m *UserView) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *UserView) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *UserView) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
-func (x *UserView) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *UserView) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *UserView) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
+func (m *UserView) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
}
return false
}
-func (x *UserView) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *UserView) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
-func (x *UserView) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
+func (m *UserView) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
}
return false
}
-func (x *UserView) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *UserView) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *UserView) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *UserView) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *UserView) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *UserView) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *UserView) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *UserView) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *UserView) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *UserView) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
-func (x *UserView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserView) GetResourceOwner() string {
- if x != nil {
- return x.ResourceOwner
+func (m *UserView) GetResourceOwner() string {
+ if m != nil {
+ return m.ResourceOwner
}
return ""
}
-func (x *UserView) GetLoginNames() []string {
- if x != nil {
- return x.LoginNames
+func (m *UserView) GetLoginNames() []string {
+ if m != nil {
+ return m.LoginNames
}
return nil
}
-func (x *UserView) GetPreferredLoginName() string {
- if x != nil {
- return x.PreferredLoginName
+func (m *UserView) GetPreferredLoginName() string {
+ if m != nil {
+ return m.PreferredLoginName
}
return ""
}
type UserSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- SortingColumn UserSearchKey `protobuf:"varint,3,opt,name=sorting_column,json=sortingColumn,proto3,enum=caos.zitadel.management.api.v1.UserSearchKey" json:"sorting_column,omitempty"`
- Asc bool `protobuf:"varint,4,opt,name=asc,proto3" json:"asc,omitempty"`
- Queries []*UserSearchQuery `protobuf:"bytes,5,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ SortingColumn UserSearchKey `protobuf:"varint,3,opt,name=sorting_column,json=sortingColumn,proto3,enum=caos.zitadel.management.api.v1.UserSearchKey" json:"sorting_column,omitempty"`
+ Asc bool `protobuf:"varint,4,opt,name=asc,proto3" json:"asc,omitempty"`
+ Queries []*UserSearchQuery `protobuf:"bytes,5,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserSearchRequest) Reset() {
- *x = UserSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[13]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserSearchRequest) ProtoMessage() {}
-
-func (x *UserSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[13]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserSearchRequest.ProtoReflect.Descriptor instead.
+func (m *UserSearchRequest) Reset() { *m = UserSearchRequest{} }
+func (m *UserSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*UserSearchRequest) ProtoMessage() {}
func (*UserSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{13}
+ return fileDescriptor_edc174f991dc0a25, []int{13}
}
-func (x *UserSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *UserSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserSearchRequest.Unmarshal(m, b)
+}
+func (m *UserSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *UserSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserSearchRequest.Merge(m, src)
+}
+func (m *UserSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_UserSearchRequest.Size(m)
+}
+func (m *UserSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserSearchRequest proto.InternalMessageInfo
+
+func (m *UserSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *UserSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *UserSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *UserSearchRequest) GetSortingColumn() UserSearchKey {
- if x != nil {
- return x.SortingColumn
+func (m *UserSearchRequest) GetSortingColumn() UserSearchKey {
+ if m != nil {
+ return m.SortingColumn
}
return UserSearchKey_USERSEARCHKEY_UNSPECIFIED
}
-func (x *UserSearchRequest) GetAsc() bool {
- if x != nil {
- return x.Asc
+func (m *UserSearchRequest) GetAsc() bool {
+ if m != nil {
+ return m.Asc
}
return false
}
-func (x *UserSearchRequest) GetQueries() []*UserSearchQuery {
- if x != nil {
- return x.Queries
+func (m *UserSearchRequest) GetQueries() []*UserSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type UserSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key UserSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.UserSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key UserSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.UserSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserSearchQuery) Reset() {
- *x = UserSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[14]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserSearchQuery) ProtoMessage() {}
-
-func (x *UserSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[14]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserSearchQuery.ProtoReflect.Descriptor instead.
+func (m *UserSearchQuery) Reset() { *m = UserSearchQuery{} }
+func (m *UserSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*UserSearchQuery) ProtoMessage() {}
func (*UserSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{14}
+ return fileDescriptor_edc174f991dc0a25, []int{14}
}
-func (x *UserSearchQuery) GetKey() UserSearchKey {
- if x != nil {
- return x.Key
+func (m *UserSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserSearchQuery.Unmarshal(m, b)
+}
+func (m *UserSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *UserSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserSearchQuery.Merge(m, src)
+}
+func (m *UserSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_UserSearchQuery.Size(m)
+}
+func (m *UserSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserSearchQuery proto.InternalMessageInfo
+
+func (m *UserSearchQuery) GetKey() UserSearchKey {
+ if m != nil {
+ return m.Key
}
return UserSearchKey_USERSEARCHKEY_UNSPECIFIED
}
-func (x *UserSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *UserSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *UserSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *UserSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type UserSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*UserView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*UserView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserSearchResponse) Reset() {
- *x = UserSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[15]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserSearchResponse) ProtoMessage() {}
-
-func (x *UserSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[15]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserSearchResponse.ProtoReflect.Descriptor instead.
+func (m *UserSearchResponse) Reset() { *m = UserSearchResponse{} }
+func (m *UserSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*UserSearchResponse) ProtoMessage() {}
func (*UserSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{15}
+ return fileDescriptor_edc174f991dc0a25, []int{15}
}
-func (x *UserSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *UserSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserSearchResponse.Unmarshal(m, b)
+}
+func (m *UserSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *UserSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserSearchResponse.Merge(m, src)
+}
+func (m *UserSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_UserSearchResponse.Size(m)
+}
+func (m *UserSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserSearchResponse proto.InternalMessageInfo
+
+func (m *UserSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *UserSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *UserSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *UserSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *UserSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *UserSearchResponse) GetResult() []*UserView {
- if x != nil {
- return x.Result
+func (m *UserSearchResponse) GetResult() []*UserView {
+ if m != nil {
+ return m.Result
}
return nil
}
type UserProfile struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,6,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,7,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
- UserName string `protobuf:"bytes,8,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,10,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,11,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,6,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,7,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
+ UserName string `protobuf:"bytes,8,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,10,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,11,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserProfile) Reset() {
- *x = UserProfile{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[16]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserProfile) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserProfile) ProtoMessage() {}
-
-func (x *UserProfile) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[16]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserProfile.ProtoReflect.Descriptor instead.
+func (m *UserProfile) Reset() { *m = UserProfile{} }
+func (m *UserProfile) String() string { return proto.CompactTextString(m) }
+func (*UserProfile) ProtoMessage() {}
func (*UserProfile) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{16}
+ return fileDescriptor_edc174f991dc0a25, []int{16}
}
-func (x *UserProfile) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserProfile) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserProfile.Unmarshal(m, b)
+}
+func (m *UserProfile) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserProfile.Marshal(b, m, deterministic)
+}
+func (m *UserProfile) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserProfile.Merge(m, src)
+}
+func (m *UserProfile) XXX_Size() int {
+ return xxx_messageInfo_UserProfile.Size(m)
+}
+func (m *UserProfile) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserProfile.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserProfile proto.InternalMessageInfo
+
+func (m *UserProfile) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserProfile) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *UserProfile) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *UserProfile) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *UserProfile) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *UserProfile) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *UserProfile) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *UserProfile) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *UserProfile) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *UserProfile) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
+func (m *UserProfile) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *UserProfile) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *UserProfile) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
-func (x *UserProfile) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *UserProfile) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *UserProfile) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserProfile) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserProfile) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserProfile) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserProfile) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserProfile) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UserProfileView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,6,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,7,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
- UserName string `protobuf:"bytes,8,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,10,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,11,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- LoginNames []string `protobuf:"bytes,12,rep,name=login_names,json=loginNames,proto3" json:"login_names,omitempty"`
- PreferredLoginName string `protobuf:"bytes,27,opt,name=preferred_login_name,json=preferredLoginName,proto3" json:"preferred_login_name,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,6,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,7,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
+ UserName string `protobuf:"bytes,8,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,10,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,11,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ LoginNames []string `protobuf:"bytes,12,rep,name=login_names,json=loginNames,proto3" json:"login_names,omitempty"`
+ PreferredLoginName string `protobuf:"bytes,27,opt,name=preferred_login_name,json=preferredLoginName,proto3" json:"preferred_login_name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserProfileView) Reset() {
- *x = UserProfileView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[17]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserProfileView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserProfileView) ProtoMessage() {}
-
-func (x *UserProfileView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[17]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserProfileView.ProtoReflect.Descriptor instead.
+func (m *UserProfileView) Reset() { *m = UserProfileView{} }
+func (m *UserProfileView) String() string { return proto.CompactTextString(m) }
+func (*UserProfileView) ProtoMessage() {}
func (*UserProfileView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{17}
+ return fileDescriptor_edc174f991dc0a25, []int{17}
}
-func (x *UserProfileView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserProfileView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserProfileView.Unmarshal(m, b)
+}
+func (m *UserProfileView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserProfileView.Marshal(b, m, deterministic)
+}
+func (m *UserProfileView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserProfileView.Merge(m, src)
+}
+func (m *UserProfileView) XXX_Size() int {
+ return xxx_messageInfo_UserProfileView.Size(m)
+}
+func (m *UserProfileView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserProfileView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserProfileView proto.InternalMessageInfo
+
+func (m *UserProfileView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserProfileView) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *UserProfileView) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *UserProfileView) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *UserProfileView) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *UserProfileView) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *UserProfileView) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *UserProfileView) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *UserProfileView) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *UserProfileView) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
+func (m *UserProfileView) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *UserProfileView) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *UserProfileView) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
-func (x *UserProfileView) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *UserProfileView) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *UserProfileView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserProfileView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserProfileView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserProfileView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserProfileView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserProfileView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *UserProfileView) GetLoginNames() []string {
- if x != nil {
- return x.LoginNames
+func (m *UserProfileView) GetLoginNames() []string {
+ if m != nil {
+ return m.LoginNames
}
return nil
}
-func (x *UserProfileView) GetPreferredLoginName() string {
- if x != nil {
- return x.PreferredLoginName
+func (m *UserProfileView) GetPreferredLoginName() string {
+ if m != nil {
+ return m.PreferredLoginName
}
return ""
}
type UpdateUserProfileRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,6,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,7,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,5,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,6,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UpdateUserProfileRequest) Reset() {
- *x = UpdateUserProfileRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[18]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UpdateUserProfileRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UpdateUserProfileRequest) ProtoMessage() {}
-
-func (x *UpdateUserProfileRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[18]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UpdateUserProfileRequest.ProtoReflect.Descriptor instead.
+func (m *UpdateUserProfileRequest) Reset() { *m = UpdateUserProfileRequest{} }
+func (m *UpdateUserProfileRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateUserProfileRequest) ProtoMessage() {}
func (*UpdateUserProfileRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{18}
+ return fileDescriptor_edc174f991dc0a25, []int{18}
}
-func (x *UpdateUserProfileRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *UpdateUserProfileRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateUserProfileRequest.Unmarshal(m, b)
+}
+func (m *UpdateUserProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateUserProfileRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateUserProfileRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateUserProfileRequest.Merge(m, src)
+}
+func (m *UpdateUserProfileRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateUserProfileRequest.Size(m)
+}
+func (m *UpdateUserProfileRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateUserProfileRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateUserProfileRequest proto.InternalMessageInfo
+
+func (m *UpdateUserProfileRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UpdateUserProfileRequest) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *UpdateUserProfileRequest) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *UpdateUserProfileRequest) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *UpdateUserProfileRequest) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *UpdateUserProfileRequest) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *UpdateUserProfileRequest) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *UpdateUserProfileRequest) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *UpdateUserProfileRequest) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *UpdateUserProfileRequest) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
- }
- return ""
-}
-
-func (x *UpdateUserProfileRequest) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *UpdateUserProfileRequest) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
type UserEmail struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
- IsEmailVerified bool `protobuf:"varint,3,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
- Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
+ IsEmailVerified bool `protobuf:"varint,3,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
+ Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserEmail) Reset() {
- *x = UserEmail{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[19]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserEmail) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserEmail) ProtoMessage() {}
-
-func (x *UserEmail) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[19]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserEmail.ProtoReflect.Descriptor instead.
+func (m *UserEmail) Reset() { *m = UserEmail{} }
+func (m *UserEmail) String() string { return proto.CompactTextString(m) }
+func (*UserEmail) ProtoMessage() {}
func (*UserEmail) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{19}
+ return fileDescriptor_edc174f991dc0a25, []int{19}
}
-func (x *UserEmail) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserEmail) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserEmail.Unmarshal(m, b)
+}
+func (m *UserEmail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserEmail.Marshal(b, m, deterministic)
+}
+func (m *UserEmail) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserEmail.Merge(m, src)
+}
+func (m *UserEmail) XXX_Size() int {
+ return xxx_messageInfo_UserEmail.Size(m)
+}
+func (m *UserEmail) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserEmail.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserEmail proto.InternalMessageInfo
+
+func (m *UserEmail) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserEmail) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *UserEmail) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *UserEmail) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
+func (m *UserEmail) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
}
return false
}
-func (x *UserEmail) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserEmail) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserEmail) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserEmail) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserEmail) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserEmail) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UserEmailView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
- IsEmailVerified bool `protobuf:"varint,3,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
- Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
+ IsEmailVerified bool `protobuf:"varint,3,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
+ Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserEmailView) Reset() {
- *x = UserEmailView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[20]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserEmailView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserEmailView) ProtoMessage() {}
-
-func (x *UserEmailView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[20]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserEmailView.ProtoReflect.Descriptor instead.
+func (m *UserEmailView) Reset() { *m = UserEmailView{} }
+func (m *UserEmailView) String() string { return proto.CompactTextString(m) }
+func (*UserEmailView) ProtoMessage() {}
func (*UserEmailView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{20}
+ return fileDescriptor_edc174f991dc0a25, []int{20}
}
-func (x *UserEmailView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserEmailView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserEmailView.Unmarshal(m, b)
+}
+func (m *UserEmailView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserEmailView.Marshal(b, m, deterministic)
+}
+func (m *UserEmailView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserEmailView.Merge(m, src)
+}
+func (m *UserEmailView) XXX_Size() int {
+ return xxx_messageInfo_UserEmailView.Size(m)
+}
+func (m *UserEmailView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserEmailView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserEmailView proto.InternalMessageInfo
+
+func (m *UserEmailView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserEmailView) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *UserEmailView) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *UserEmailView) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
+func (m *UserEmailView) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
}
return false
}
-func (x *UserEmailView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserEmailView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserEmailView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserEmailView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserEmailView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserEmailView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UpdateUserEmailRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
- IsEmailVerified bool `protobuf:"varint,3,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
+ IsEmailVerified bool `protobuf:"varint,3,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UpdateUserEmailRequest) Reset() {
- *x = UpdateUserEmailRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[21]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UpdateUserEmailRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UpdateUserEmailRequest) ProtoMessage() {}
-
-func (x *UpdateUserEmailRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[21]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UpdateUserEmailRequest.ProtoReflect.Descriptor instead.
+func (m *UpdateUserEmailRequest) Reset() { *m = UpdateUserEmailRequest{} }
+func (m *UpdateUserEmailRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateUserEmailRequest) ProtoMessage() {}
func (*UpdateUserEmailRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{21}
+ return fileDescriptor_edc174f991dc0a25, []int{21}
}
-func (x *UpdateUserEmailRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *UpdateUserEmailRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateUserEmailRequest.Unmarshal(m, b)
+}
+func (m *UpdateUserEmailRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateUserEmailRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateUserEmailRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateUserEmailRequest.Merge(m, src)
+}
+func (m *UpdateUserEmailRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateUserEmailRequest.Size(m)
+}
+func (m *UpdateUserEmailRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateUserEmailRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateUserEmailRequest proto.InternalMessageInfo
+
+func (m *UpdateUserEmailRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UpdateUserEmailRequest) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *UpdateUserEmailRequest) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *UpdateUserEmailRequest) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
+func (m *UpdateUserEmailRequest) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
}
return false
}
type UserPhone struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
- IsPhoneVerified bool `protobuf:"varint,3,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
- Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
+ IsPhoneVerified bool `protobuf:"varint,3,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserPhone) Reset() {
- *x = UserPhone{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[22]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserPhone) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserPhone) ProtoMessage() {}
-
-func (x *UserPhone) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[22]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserPhone.ProtoReflect.Descriptor instead.
+func (m *UserPhone) Reset() { *m = UserPhone{} }
+func (m *UserPhone) String() string { return proto.CompactTextString(m) }
+func (*UserPhone) ProtoMessage() {}
func (*UserPhone) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{22}
+ return fileDescriptor_edc174f991dc0a25, []int{22}
}
-func (x *UserPhone) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserPhone) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserPhone.Unmarshal(m, b)
+}
+func (m *UserPhone) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserPhone.Marshal(b, m, deterministic)
+}
+func (m *UserPhone) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserPhone.Merge(m, src)
+}
+func (m *UserPhone) XXX_Size() int {
+ return xxx_messageInfo_UserPhone.Size(m)
+}
+func (m *UserPhone) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserPhone.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserPhone proto.InternalMessageInfo
+
+func (m *UserPhone) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserPhone) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *UserPhone) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
-func (x *UserPhone) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
+func (m *UserPhone) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
}
return false
}
-func (x *UserPhone) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserPhone) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserPhone) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserPhone) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserPhone) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserPhone) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UserPhoneView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
- IsPhoneVerified bool `protobuf:"varint,3,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
- Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
+ IsPhoneVerified bool `protobuf:"varint,3,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserPhoneView) Reset() {
- *x = UserPhoneView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[23]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserPhoneView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserPhoneView) ProtoMessage() {}
-
-func (x *UserPhoneView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[23]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserPhoneView.ProtoReflect.Descriptor instead.
+func (m *UserPhoneView) Reset() { *m = UserPhoneView{} }
+func (m *UserPhoneView) String() string { return proto.CompactTextString(m) }
+func (*UserPhoneView) ProtoMessage() {}
func (*UserPhoneView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{23}
+ return fileDescriptor_edc174f991dc0a25, []int{23}
}
-func (x *UserPhoneView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserPhoneView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserPhoneView.Unmarshal(m, b)
+}
+func (m *UserPhoneView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserPhoneView.Marshal(b, m, deterministic)
+}
+func (m *UserPhoneView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserPhoneView.Merge(m, src)
+}
+func (m *UserPhoneView) XXX_Size() int {
+ return xxx_messageInfo_UserPhoneView.Size(m)
+}
+func (m *UserPhoneView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserPhoneView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserPhoneView proto.InternalMessageInfo
+
+func (m *UserPhoneView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserPhoneView) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *UserPhoneView) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
-func (x *UserPhoneView) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
+func (m *UserPhoneView) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
}
return false
}
-func (x *UserPhoneView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserPhoneView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserPhoneView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserPhoneView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserPhoneView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserPhoneView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UpdateUserPhoneRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
- IsPhoneVerified bool `protobuf:"varint,3,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
+ IsPhoneVerified bool `protobuf:"varint,3,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UpdateUserPhoneRequest) Reset() {
- *x = UpdateUserPhoneRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[24]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UpdateUserPhoneRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UpdateUserPhoneRequest) ProtoMessage() {}
-
-func (x *UpdateUserPhoneRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[24]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UpdateUserPhoneRequest.ProtoReflect.Descriptor instead.
+func (m *UpdateUserPhoneRequest) Reset() { *m = UpdateUserPhoneRequest{} }
+func (m *UpdateUserPhoneRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateUserPhoneRequest) ProtoMessage() {}
func (*UpdateUserPhoneRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{24}
+ return fileDescriptor_edc174f991dc0a25, []int{24}
}
-func (x *UpdateUserPhoneRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *UpdateUserPhoneRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateUserPhoneRequest.Unmarshal(m, b)
+}
+func (m *UpdateUserPhoneRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateUserPhoneRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateUserPhoneRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateUserPhoneRequest.Merge(m, src)
+}
+func (m *UpdateUserPhoneRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateUserPhoneRequest.Size(m)
+}
+func (m *UpdateUserPhoneRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateUserPhoneRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateUserPhoneRequest proto.InternalMessageInfo
+
+func (m *UpdateUserPhoneRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UpdateUserPhoneRequest) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *UpdateUserPhoneRequest) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
-func (x *UpdateUserPhoneRequest) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
+func (m *UpdateUserPhoneRequest) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
}
return false
}
type UserAddress struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Country string `protobuf:"bytes,2,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,4,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,6,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
- Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Country string `protobuf:"bytes,2,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,4,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,6,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserAddress) Reset() {
- *x = UserAddress{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[25]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserAddress) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserAddress) ProtoMessage() {}
-
-func (x *UserAddress) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[25]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserAddress.ProtoReflect.Descriptor instead.
+func (m *UserAddress) Reset() { *m = UserAddress{} }
+func (m *UserAddress) String() string { return proto.CompactTextString(m) }
+func (*UserAddress) ProtoMessage() {}
func (*UserAddress) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{25}
+ return fileDescriptor_edc174f991dc0a25, []int{25}
}
-func (x *UserAddress) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserAddress) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserAddress.Unmarshal(m, b)
+}
+func (m *UserAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserAddress.Marshal(b, m, deterministic)
+}
+func (m *UserAddress) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserAddress.Merge(m, src)
+}
+func (m *UserAddress) XXX_Size() int {
+ return xxx_messageInfo_UserAddress.Size(m)
+}
+func (m *UserAddress) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserAddress.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserAddress proto.InternalMessageInfo
+
+func (m *UserAddress) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserAddress) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *UserAddress) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *UserAddress) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *UserAddress) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *UserAddress) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *UserAddress) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *UserAddress) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *UserAddress) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *UserAddress) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *UserAddress) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
-func (x *UserAddress) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserAddress) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserAddress) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserAddress) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserAddress) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserAddress) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UserAddressView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Country string `protobuf:"bytes,2,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,4,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,6,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
- Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Country string `protobuf:"bytes,2,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,4,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,6,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserAddressView) Reset() {
- *x = UserAddressView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[26]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserAddressView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserAddressView) ProtoMessage() {}
-
-func (x *UserAddressView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[26]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserAddressView.ProtoReflect.Descriptor instead.
+func (m *UserAddressView) Reset() { *m = UserAddressView{} }
+func (m *UserAddressView) String() string { return proto.CompactTextString(m) }
+func (*UserAddressView) ProtoMessage() {}
func (*UserAddressView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{26}
+ return fileDescriptor_edc174f991dc0a25, []int{26}
}
-func (x *UserAddressView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserAddressView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserAddressView.Unmarshal(m, b)
+}
+func (m *UserAddressView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserAddressView.Marshal(b, m, deterministic)
+}
+func (m *UserAddressView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserAddressView.Merge(m, src)
+}
+func (m *UserAddressView) XXX_Size() int {
+ return xxx_messageInfo_UserAddressView.Size(m)
+}
+func (m *UserAddressView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserAddressView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserAddressView proto.InternalMessageInfo
+
+func (m *UserAddressView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserAddressView) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *UserAddressView) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *UserAddressView) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *UserAddressView) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *UserAddressView) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *UserAddressView) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *UserAddressView) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *UserAddressView) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *UserAddressView) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *UserAddressView) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
-func (x *UserAddressView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserAddressView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserAddressView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserAddressView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserAddressView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserAddressView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UpdateUserAddressRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Country string `protobuf:"bytes,2,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,4,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,6,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Country string `protobuf:"bytes,2,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,4,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,6,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UpdateUserAddressRequest) Reset() {
- *x = UpdateUserAddressRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[27]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UpdateUserAddressRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UpdateUserAddressRequest) ProtoMessage() {}
-
-func (x *UpdateUserAddressRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[27]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UpdateUserAddressRequest.ProtoReflect.Descriptor instead.
+func (m *UpdateUserAddressRequest) Reset() { *m = UpdateUserAddressRequest{} }
+func (m *UpdateUserAddressRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateUserAddressRequest) ProtoMessage() {}
func (*UpdateUserAddressRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{27}
+ return fileDescriptor_edc174f991dc0a25, []int{27}
}
-func (x *UpdateUserAddressRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *UpdateUserAddressRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateUserAddressRequest.Unmarshal(m, b)
+}
+func (m *UpdateUserAddressRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateUserAddressRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateUserAddressRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateUserAddressRequest.Merge(m, src)
+}
+func (m *UpdateUserAddressRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateUserAddressRequest.Size(m)
+}
+func (m *UpdateUserAddressRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateUserAddressRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateUserAddressRequest proto.InternalMessageInfo
+
+func (m *UpdateUserAddressRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UpdateUserAddressRequest) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *UpdateUserAddressRequest) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *UpdateUserAddressRequest) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *UpdateUserAddressRequest) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *UpdateUserAddressRequest) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *UpdateUserAddressRequest) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *UpdateUserAddressRequest) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *UpdateUserAddressRequest) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *UpdateUserAddressRequest) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *UpdateUserAddressRequest) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
type MultiFactors struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Mfas []*MultiFactor `protobuf:"bytes,1,rep,name=mfas,proto3" json:"mfas,omitempty"`
+ Mfas []*MultiFactor `protobuf:"bytes,1,rep,name=mfas,proto3" json:"mfas,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MultiFactors) Reset() {
- *x = MultiFactors{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[28]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MultiFactors) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MultiFactors) ProtoMessage() {}
-
-func (x *MultiFactors) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[28]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use MultiFactors.ProtoReflect.Descriptor instead.
+func (m *MultiFactors) Reset() { *m = MultiFactors{} }
+func (m *MultiFactors) String() string { return proto.CompactTextString(m) }
+func (*MultiFactors) ProtoMessage() {}
func (*MultiFactors) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{28}
+ return fileDescriptor_edc174f991dc0a25, []int{28}
}
-func (x *MultiFactors) GetMfas() []*MultiFactor {
- if x != nil {
- return x.Mfas
+func (m *MultiFactors) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MultiFactors.Unmarshal(m, b)
+}
+func (m *MultiFactors) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MultiFactors.Marshal(b, m, deterministic)
+}
+func (m *MultiFactors) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MultiFactors.Merge(m, src)
+}
+func (m *MultiFactors) XXX_Size() int {
+ return xxx_messageInfo_MultiFactors.Size(m)
+}
+func (m *MultiFactors) XXX_DiscardUnknown() {
+ xxx_messageInfo_MultiFactors.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MultiFactors proto.InternalMessageInfo
+
+func (m *MultiFactors) GetMfas() []*MultiFactor {
+ if m != nil {
+ return m.Mfas
}
return nil
}
type MultiFactor struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Type MfaType `protobuf:"varint,1,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.MfaType" json:"type,omitempty"`
- State MFAState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.MFAState" json:"state,omitempty"`
+ Type MfaType `protobuf:"varint,1,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.MfaType" json:"type,omitempty"`
+ State MFAState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.MFAState" json:"state,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MultiFactor) Reset() {
- *x = MultiFactor{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[29]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MultiFactor) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MultiFactor) ProtoMessage() {}
-
-func (x *MultiFactor) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[29]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use MultiFactor.ProtoReflect.Descriptor instead.
+func (m *MultiFactor) Reset() { *m = MultiFactor{} }
+func (m *MultiFactor) String() string { return proto.CompactTextString(m) }
+func (*MultiFactor) ProtoMessage() {}
func (*MultiFactor) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{29}
+ return fileDescriptor_edc174f991dc0a25, []int{29}
}
-func (x *MultiFactor) GetType() MfaType {
- if x != nil {
- return x.Type
+func (m *MultiFactor) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MultiFactor.Unmarshal(m, b)
+}
+func (m *MultiFactor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MultiFactor.Marshal(b, m, deterministic)
+}
+func (m *MultiFactor) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MultiFactor.Merge(m, src)
+}
+func (m *MultiFactor) XXX_Size() int {
+ return xxx_messageInfo_MultiFactor.Size(m)
+}
+func (m *MultiFactor) XXX_DiscardUnknown() {
+ xxx_messageInfo_MultiFactor.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MultiFactor proto.InternalMessageInfo
+
+func (m *MultiFactor) GetType() MfaType {
+ if m != nil {
+ return m.Type
}
return MfaType_MFATYPE_UNSPECIFIED
}
-func (x *MultiFactor) GetState() MFAState {
- if x != nil {
- return x.State
+func (m *MultiFactor) GetState() MFAState {
+ if m != nil {
+ return m.State
}
return MFAState_MFASTATE_UNSPECIFIED
}
type PasswordID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordID) Reset() {
- *x = PasswordID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[30]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordID) ProtoMessage() {}
-
-func (x *PasswordID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[30]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordID.ProtoReflect.Descriptor instead.
+func (m *PasswordID) Reset() { *m = PasswordID{} }
+func (m *PasswordID) String() string { return proto.CompactTextString(m) }
+func (*PasswordID) ProtoMessage() {}
func (*PasswordID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{30}
+ return fileDescriptor_edc174f991dc0a25, []int{30}
}
-func (x *PasswordID) GetId() string {
- if x != nil {
- return x.Id
+func (m *PasswordID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordID.Unmarshal(m, b)
+}
+func (m *PasswordID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordID.Marshal(b, m, deterministic)
+}
+func (m *PasswordID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordID.Merge(m, src)
+}
+func (m *PasswordID) XXX_Size() int {
+ return xxx_messageInfo_PasswordID.Size(m)
+}
+func (m *PasswordID) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordID proto.InternalMessageInfo
+
+func (m *PasswordID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type PasswordRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordRequest) Reset() {
- *x = PasswordRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[31]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordRequest) ProtoMessage() {}
-
-func (x *PasswordRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[31]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordRequest.ProtoReflect.Descriptor instead.
+func (m *PasswordRequest) Reset() { *m = PasswordRequest{} }
+func (m *PasswordRequest) String() string { return proto.CompactTextString(m) }
+func (*PasswordRequest) ProtoMessage() {}
func (*PasswordRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{31}
+ return fileDescriptor_edc174f991dc0a25, []int{31}
}
-func (x *PasswordRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *PasswordRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordRequest.Unmarshal(m, b)
+}
+func (m *PasswordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordRequest.Marshal(b, m, deterministic)
+}
+func (m *PasswordRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordRequest.Merge(m, src)
+}
+func (m *PasswordRequest) XXX_Size() int {
+ return xxx_messageInfo_PasswordRequest.Size(m)
+}
+func (m *PasswordRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordRequest proto.InternalMessageInfo
+
+func (m *PasswordRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *PasswordRequest) GetPassword() string {
- if x != nil {
- return x.Password
+func (m *PasswordRequest) GetPassword() string {
+ if m != nil {
+ return m.Password
}
return ""
}
type ResetPasswordRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ResetPasswordRequest) Reset() {
- *x = ResetPasswordRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[32]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ResetPasswordRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ResetPasswordRequest) ProtoMessage() {}
-
-func (x *ResetPasswordRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[32]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ResetPasswordRequest.ProtoReflect.Descriptor instead.
+func (m *ResetPasswordRequest) Reset() { *m = ResetPasswordRequest{} }
+func (m *ResetPasswordRequest) String() string { return proto.CompactTextString(m) }
+func (*ResetPasswordRequest) ProtoMessage() {}
func (*ResetPasswordRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{32}
+ return fileDescriptor_edc174f991dc0a25, []int{32}
}
-func (x *ResetPasswordRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *ResetPasswordRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ResetPasswordRequest.Unmarshal(m, b)
+}
+func (m *ResetPasswordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ResetPasswordRequest.Marshal(b, m, deterministic)
+}
+func (m *ResetPasswordRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ResetPasswordRequest.Merge(m, src)
+}
+func (m *ResetPasswordRequest) XXX_Size() int {
+ return xxx_messageInfo_ResetPasswordRequest.Size(m)
+}
+func (m *ResetPasswordRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ResetPasswordRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ResetPasswordRequest proto.InternalMessageInfo
+
+func (m *ResetPasswordRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type SetPasswordNotificationRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Type NotificationType `protobuf:"varint,2,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.NotificationType" json:"type,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Type NotificationType `protobuf:"varint,2,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.NotificationType" json:"type,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *SetPasswordNotificationRequest) Reset() {
- *x = SetPasswordNotificationRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[33]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *SetPasswordNotificationRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*SetPasswordNotificationRequest) ProtoMessage() {}
-
-func (x *SetPasswordNotificationRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[33]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use SetPasswordNotificationRequest.ProtoReflect.Descriptor instead.
+func (m *SetPasswordNotificationRequest) Reset() { *m = SetPasswordNotificationRequest{} }
+func (m *SetPasswordNotificationRequest) String() string { return proto.CompactTextString(m) }
+func (*SetPasswordNotificationRequest) ProtoMessage() {}
func (*SetPasswordNotificationRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{33}
+ return fileDescriptor_edc174f991dc0a25, []int{33}
}
-func (x *SetPasswordNotificationRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *SetPasswordNotificationRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_SetPasswordNotificationRequest.Unmarshal(m, b)
+}
+func (m *SetPasswordNotificationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_SetPasswordNotificationRequest.Marshal(b, m, deterministic)
+}
+func (m *SetPasswordNotificationRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_SetPasswordNotificationRequest.Merge(m, src)
+}
+func (m *SetPasswordNotificationRequest) XXX_Size() int {
+ return xxx_messageInfo_SetPasswordNotificationRequest.Size(m)
+}
+func (m *SetPasswordNotificationRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_SetPasswordNotificationRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_SetPasswordNotificationRequest proto.InternalMessageInfo
+
+func (m *SetPasswordNotificationRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *SetPasswordNotificationRequest) GetType() NotificationType {
- if x != nil {
- return x.Type
+func (m *SetPasswordNotificationRequest) GetType() NotificationType {
+ if m != nil {
+ return m.Type
}
return NotificationType_NOTIFICATIONTYPE_EMAIL
}
type PasswordComplexityPolicyID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordComplexityPolicyID) Reset() {
- *x = PasswordComplexityPolicyID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[34]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordComplexityPolicyID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordComplexityPolicyID) ProtoMessage() {}
-
-func (x *PasswordComplexityPolicyID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[34]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordComplexityPolicyID.ProtoReflect.Descriptor instead.
+func (m *PasswordComplexityPolicyID) Reset() { *m = PasswordComplexityPolicyID{} }
+func (m *PasswordComplexityPolicyID) String() string { return proto.CompactTextString(m) }
+func (*PasswordComplexityPolicyID) ProtoMessage() {}
func (*PasswordComplexityPolicyID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{34}
+ return fileDescriptor_edc174f991dc0a25, []int{34}
}
-func (x *PasswordComplexityPolicyID) GetId() string {
- if x != nil {
- return x.Id
+func (m *PasswordComplexityPolicyID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordComplexityPolicyID.Unmarshal(m, b)
+}
+func (m *PasswordComplexityPolicyID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordComplexityPolicyID.Marshal(b, m, deterministic)
+}
+func (m *PasswordComplexityPolicyID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordComplexityPolicyID.Merge(m, src)
+}
+func (m *PasswordComplexityPolicyID) XXX_Size() int {
+ return xxx_messageInfo_PasswordComplexityPolicyID.Size(m)
+}
+func (m *PasswordComplexityPolicyID) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordComplexityPolicyID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordComplexityPolicyID proto.InternalMessageInfo
+
+func (m *PasswordComplexityPolicyID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type PasswordComplexityPolicy struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
- State PolicyState `protobuf:"varint,3,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.PolicyState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- MinLength uint64 `protobuf:"varint,6,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
- HasLowercase bool `protobuf:"varint,7,opt,name=has_lowercase,json=hasLowercase,proto3" json:"has_lowercase,omitempty"`
- HasUppercase bool `protobuf:"varint,8,opt,name=has_uppercase,json=hasUppercase,proto3" json:"has_uppercase,omitempty"`
- HasNumber bool `protobuf:"varint,9,opt,name=has_number,json=hasNumber,proto3" json:"has_number,omitempty"`
- HasSymbol bool `protobuf:"varint,10,opt,name=has_symbol,json=hasSymbol,proto3" json:"has_symbol,omitempty"`
- Sequence uint64 `protobuf:"varint,11,opt,name=sequence,proto3" json:"sequence,omitempty"`
- IsDefault bool `protobuf:"varint,12,opt,name=is_default,json=isDefault,proto3" json:"is_default,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
+ State PolicyState `protobuf:"varint,3,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.PolicyState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ MinLength uint64 `protobuf:"varint,6,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
+ HasLowercase bool `protobuf:"varint,7,opt,name=has_lowercase,json=hasLowercase,proto3" json:"has_lowercase,omitempty"`
+ HasUppercase bool `protobuf:"varint,8,opt,name=has_uppercase,json=hasUppercase,proto3" json:"has_uppercase,omitempty"`
+ HasNumber bool `protobuf:"varint,9,opt,name=has_number,json=hasNumber,proto3" json:"has_number,omitempty"`
+ HasSymbol bool `protobuf:"varint,10,opt,name=has_symbol,json=hasSymbol,proto3" json:"has_symbol,omitempty"`
+ Sequence uint64 `protobuf:"varint,11,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ IsDefault bool `protobuf:"varint,12,opt,name=is_default,json=isDefault,proto3" json:"is_default,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordComplexityPolicy) Reset() {
- *x = PasswordComplexityPolicy{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[35]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordComplexityPolicy) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordComplexityPolicy) ProtoMessage() {}
-
-func (x *PasswordComplexityPolicy) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[35]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordComplexityPolicy.ProtoReflect.Descriptor instead.
+func (m *PasswordComplexityPolicy) Reset() { *m = PasswordComplexityPolicy{} }
+func (m *PasswordComplexityPolicy) String() string { return proto.CompactTextString(m) }
+func (*PasswordComplexityPolicy) ProtoMessage() {}
func (*PasswordComplexityPolicy) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{35}
+ return fileDescriptor_edc174f991dc0a25, []int{35}
}
-func (x *PasswordComplexityPolicy) GetId() string {
- if x != nil {
- return x.Id
+func (m *PasswordComplexityPolicy) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordComplexityPolicy.Unmarshal(m, b)
+}
+func (m *PasswordComplexityPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordComplexityPolicy.Marshal(b, m, deterministic)
+}
+func (m *PasswordComplexityPolicy) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordComplexityPolicy.Merge(m, src)
+}
+func (m *PasswordComplexityPolicy) XXX_Size() int {
+ return xxx_messageInfo_PasswordComplexityPolicy.Size(m)
+}
+func (m *PasswordComplexityPolicy) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordComplexityPolicy.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordComplexityPolicy proto.InternalMessageInfo
+
+func (m *PasswordComplexityPolicy) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *PasswordComplexityPolicy) GetDescription() string {
- if x != nil {
- return x.Description
+func (m *PasswordComplexityPolicy) GetDescription() string {
+ if m != nil {
+ return m.Description
}
return ""
}
-func (x *PasswordComplexityPolicy) GetState() PolicyState {
- if x != nil {
- return x.State
+func (m *PasswordComplexityPolicy) GetState() PolicyState {
+ if m != nil {
+ return m.State
}
return PolicyState_POLICYSTATE_UNSPECIFIED
}
-func (x *PasswordComplexityPolicy) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *PasswordComplexityPolicy) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *PasswordComplexityPolicy) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *PasswordComplexityPolicy) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *PasswordComplexityPolicy) GetMinLength() uint64 {
- if x != nil {
- return x.MinLength
+func (m *PasswordComplexityPolicy) GetMinLength() uint64 {
+ if m != nil {
+ return m.MinLength
}
return 0
}
-func (x *PasswordComplexityPolicy) GetHasLowercase() bool {
- if x != nil {
- return x.HasLowercase
+func (m *PasswordComplexityPolicy) GetHasLowercase() bool {
+ if m != nil {
+ return m.HasLowercase
}
return false
}
-func (x *PasswordComplexityPolicy) GetHasUppercase() bool {
- if x != nil {
- return x.HasUppercase
+func (m *PasswordComplexityPolicy) GetHasUppercase() bool {
+ if m != nil {
+ return m.HasUppercase
}
return false
}
-func (x *PasswordComplexityPolicy) GetHasNumber() bool {
- if x != nil {
- return x.HasNumber
+func (m *PasswordComplexityPolicy) GetHasNumber() bool {
+ if m != nil {
+ return m.HasNumber
}
return false
}
-func (x *PasswordComplexityPolicy) GetHasSymbol() bool {
- if x != nil {
- return x.HasSymbol
+func (m *PasswordComplexityPolicy) GetHasSymbol() bool {
+ if m != nil {
+ return m.HasSymbol
}
return false
}
-func (x *PasswordComplexityPolicy) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *PasswordComplexityPolicy) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *PasswordComplexityPolicy) GetIsDefault() bool {
- if x != nil {
- return x.IsDefault
+func (m *PasswordComplexityPolicy) GetIsDefault() bool {
+ if m != nil {
+ return m.IsDefault
}
return false
}
type PasswordComplexityPolicyCreate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
- MinLength uint64 `protobuf:"varint,2,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
- HasLowercase bool `protobuf:"varint,3,opt,name=has_lowercase,json=hasLowercase,proto3" json:"has_lowercase,omitempty"`
- HasUppercase bool `protobuf:"varint,4,opt,name=has_uppercase,json=hasUppercase,proto3" json:"has_uppercase,omitempty"`
- HasNumber bool `protobuf:"varint,5,opt,name=has_number,json=hasNumber,proto3" json:"has_number,omitempty"`
- HasSymbol bool `protobuf:"varint,6,opt,name=has_symbol,json=hasSymbol,proto3" json:"has_symbol,omitempty"`
+ Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
+ MinLength uint64 `protobuf:"varint,2,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
+ HasLowercase bool `protobuf:"varint,3,opt,name=has_lowercase,json=hasLowercase,proto3" json:"has_lowercase,omitempty"`
+ HasUppercase bool `protobuf:"varint,4,opt,name=has_uppercase,json=hasUppercase,proto3" json:"has_uppercase,omitempty"`
+ HasNumber bool `protobuf:"varint,5,opt,name=has_number,json=hasNumber,proto3" json:"has_number,omitempty"`
+ HasSymbol bool `protobuf:"varint,6,opt,name=has_symbol,json=hasSymbol,proto3" json:"has_symbol,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordComplexityPolicyCreate) Reset() {
- *x = PasswordComplexityPolicyCreate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[36]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordComplexityPolicyCreate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordComplexityPolicyCreate) ProtoMessage() {}
-
-func (x *PasswordComplexityPolicyCreate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[36]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordComplexityPolicyCreate.ProtoReflect.Descriptor instead.
+func (m *PasswordComplexityPolicyCreate) Reset() { *m = PasswordComplexityPolicyCreate{} }
+func (m *PasswordComplexityPolicyCreate) String() string { return proto.CompactTextString(m) }
+func (*PasswordComplexityPolicyCreate) ProtoMessage() {}
func (*PasswordComplexityPolicyCreate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{36}
+ return fileDescriptor_edc174f991dc0a25, []int{36}
}
-func (x *PasswordComplexityPolicyCreate) GetDescription() string {
- if x != nil {
- return x.Description
+func (m *PasswordComplexityPolicyCreate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordComplexityPolicyCreate.Unmarshal(m, b)
+}
+func (m *PasswordComplexityPolicyCreate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordComplexityPolicyCreate.Marshal(b, m, deterministic)
+}
+func (m *PasswordComplexityPolicyCreate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordComplexityPolicyCreate.Merge(m, src)
+}
+func (m *PasswordComplexityPolicyCreate) XXX_Size() int {
+ return xxx_messageInfo_PasswordComplexityPolicyCreate.Size(m)
+}
+func (m *PasswordComplexityPolicyCreate) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordComplexityPolicyCreate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordComplexityPolicyCreate proto.InternalMessageInfo
+
+func (m *PasswordComplexityPolicyCreate) GetDescription() string {
+ if m != nil {
+ return m.Description
}
return ""
}
-func (x *PasswordComplexityPolicyCreate) GetMinLength() uint64 {
- if x != nil {
- return x.MinLength
+func (m *PasswordComplexityPolicyCreate) GetMinLength() uint64 {
+ if m != nil {
+ return m.MinLength
}
return 0
}
-func (x *PasswordComplexityPolicyCreate) GetHasLowercase() bool {
- if x != nil {
- return x.HasLowercase
+func (m *PasswordComplexityPolicyCreate) GetHasLowercase() bool {
+ if m != nil {
+ return m.HasLowercase
}
return false
}
-func (x *PasswordComplexityPolicyCreate) GetHasUppercase() bool {
- if x != nil {
- return x.HasUppercase
+func (m *PasswordComplexityPolicyCreate) GetHasUppercase() bool {
+ if m != nil {
+ return m.HasUppercase
}
return false
}
-func (x *PasswordComplexityPolicyCreate) GetHasNumber() bool {
- if x != nil {
- return x.HasNumber
+func (m *PasswordComplexityPolicyCreate) GetHasNumber() bool {
+ if m != nil {
+ return m.HasNumber
}
return false
}
-func (x *PasswordComplexityPolicyCreate) GetHasSymbol() bool {
- if x != nil {
- return x.HasSymbol
+func (m *PasswordComplexityPolicyCreate) GetHasSymbol() bool {
+ if m != nil {
+ return m.HasSymbol
}
return false
}
type PasswordComplexityPolicyUpdate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
- MinLength uint64 `protobuf:"varint,3,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
- HasLowercase bool `protobuf:"varint,4,opt,name=has_lowercase,json=hasLowercase,proto3" json:"has_lowercase,omitempty"`
- HasUppercase bool `protobuf:"varint,5,opt,name=has_uppercase,json=hasUppercase,proto3" json:"has_uppercase,omitempty"`
- HasNumber bool `protobuf:"varint,6,opt,name=has_number,json=hasNumber,proto3" json:"has_number,omitempty"`
- HasSymbol bool `protobuf:"varint,7,opt,name=has_symbol,json=hasSymbol,proto3" json:"has_symbol,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
+ MinLength uint64 `protobuf:"varint,3,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
+ HasLowercase bool `protobuf:"varint,4,opt,name=has_lowercase,json=hasLowercase,proto3" json:"has_lowercase,omitempty"`
+ HasUppercase bool `protobuf:"varint,5,opt,name=has_uppercase,json=hasUppercase,proto3" json:"has_uppercase,omitempty"`
+ HasNumber bool `protobuf:"varint,6,opt,name=has_number,json=hasNumber,proto3" json:"has_number,omitempty"`
+ HasSymbol bool `protobuf:"varint,7,opt,name=has_symbol,json=hasSymbol,proto3" json:"has_symbol,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordComplexityPolicyUpdate) Reset() {
- *x = PasswordComplexityPolicyUpdate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[37]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordComplexityPolicyUpdate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordComplexityPolicyUpdate) ProtoMessage() {}
-
-func (x *PasswordComplexityPolicyUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[37]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordComplexityPolicyUpdate.ProtoReflect.Descriptor instead.
+func (m *PasswordComplexityPolicyUpdate) Reset() { *m = PasswordComplexityPolicyUpdate{} }
+func (m *PasswordComplexityPolicyUpdate) String() string { return proto.CompactTextString(m) }
+func (*PasswordComplexityPolicyUpdate) ProtoMessage() {}
func (*PasswordComplexityPolicyUpdate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{37}
+ return fileDescriptor_edc174f991dc0a25, []int{37}
}
-func (x *PasswordComplexityPolicyUpdate) GetId() string {
- if x != nil {
- return x.Id
+func (m *PasswordComplexityPolicyUpdate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordComplexityPolicyUpdate.Unmarshal(m, b)
+}
+func (m *PasswordComplexityPolicyUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordComplexityPolicyUpdate.Marshal(b, m, deterministic)
+}
+func (m *PasswordComplexityPolicyUpdate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordComplexityPolicyUpdate.Merge(m, src)
+}
+func (m *PasswordComplexityPolicyUpdate) XXX_Size() int {
+ return xxx_messageInfo_PasswordComplexityPolicyUpdate.Size(m)
+}
+func (m *PasswordComplexityPolicyUpdate) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordComplexityPolicyUpdate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordComplexityPolicyUpdate proto.InternalMessageInfo
+
+func (m *PasswordComplexityPolicyUpdate) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *PasswordComplexityPolicyUpdate) GetDescription() string {
- if x != nil {
- return x.Description
+func (m *PasswordComplexityPolicyUpdate) GetDescription() string {
+ if m != nil {
+ return m.Description
}
return ""
}
-func (x *PasswordComplexityPolicyUpdate) GetMinLength() uint64 {
- if x != nil {
- return x.MinLength
+func (m *PasswordComplexityPolicyUpdate) GetMinLength() uint64 {
+ if m != nil {
+ return m.MinLength
}
return 0
}
-func (x *PasswordComplexityPolicyUpdate) GetHasLowercase() bool {
- if x != nil {
- return x.HasLowercase
+func (m *PasswordComplexityPolicyUpdate) GetHasLowercase() bool {
+ if m != nil {
+ return m.HasLowercase
}
return false
}
-func (x *PasswordComplexityPolicyUpdate) GetHasUppercase() bool {
- if x != nil {
- return x.HasUppercase
+func (m *PasswordComplexityPolicyUpdate) GetHasUppercase() bool {
+ if m != nil {
+ return m.HasUppercase
}
return false
}
-func (x *PasswordComplexityPolicyUpdate) GetHasNumber() bool {
- if x != nil {
- return x.HasNumber
+func (m *PasswordComplexityPolicyUpdate) GetHasNumber() bool {
+ if m != nil {
+ return m.HasNumber
}
return false
}
-func (x *PasswordComplexityPolicyUpdate) GetHasSymbol() bool {
- if x != nil {
- return x.HasSymbol
+func (m *PasswordComplexityPolicyUpdate) GetHasSymbol() bool {
+ if m != nil {
+ return m.HasSymbol
}
return false
}
type PasswordAgePolicyID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordAgePolicyID) Reset() {
- *x = PasswordAgePolicyID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[38]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordAgePolicyID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordAgePolicyID) ProtoMessage() {}
-
-func (x *PasswordAgePolicyID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[38]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordAgePolicyID.ProtoReflect.Descriptor instead.
+func (m *PasswordAgePolicyID) Reset() { *m = PasswordAgePolicyID{} }
+func (m *PasswordAgePolicyID) String() string { return proto.CompactTextString(m) }
+func (*PasswordAgePolicyID) ProtoMessage() {}
func (*PasswordAgePolicyID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{38}
+ return fileDescriptor_edc174f991dc0a25, []int{38}
}
-func (x *PasswordAgePolicyID) GetId() string {
- if x != nil {
- return x.Id
+func (m *PasswordAgePolicyID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordAgePolicyID.Unmarshal(m, b)
+}
+func (m *PasswordAgePolicyID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordAgePolicyID.Marshal(b, m, deterministic)
+}
+func (m *PasswordAgePolicyID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordAgePolicyID.Merge(m, src)
+}
+func (m *PasswordAgePolicyID) XXX_Size() int {
+ return xxx_messageInfo_PasswordAgePolicyID.Size(m)
+}
+func (m *PasswordAgePolicyID) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordAgePolicyID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordAgePolicyID proto.InternalMessageInfo
+
+func (m *PasswordAgePolicyID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type PasswordAgePolicy struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
- State PolicyState `protobuf:"varint,3,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.PolicyState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- MaxAgeDays uint64 `protobuf:"varint,6,opt,name=max_age_days,json=maxAgeDays,proto3" json:"max_age_days,omitempty"`
- ExpireWarnDays uint64 `protobuf:"varint,7,opt,name=expire_warn_days,json=expireWarnDays,proto3" json:"expire_warn_days,omitempty"`
- Sequence uint64 `protobuf:"varint,8,opt,name=sequence,proto3" json:"sequence,omitempty"`
- IsDefault bool `protobuf:"varint,9,opt,name=is_default,json=isDefault,proto3" json:"is_default,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
+ State PolicyState `protobuf:"varint,3,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.PolicyState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ MaxAgeDays uint64 `protobuf:"varint,6,opt,name=max_age_days,json=maxAgeDays,proto3" json:"max_age_days,omitempty"`
+ ExpireWarnDays uint64 `protobuf:"varint,7,opt,name=expire_warn_days,json=expireWarnDays,proto3" json:"expire_warn_days,omitempty"`
+ Sequence uint64 `protobuf:"varint,8,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ IsDefault bool `protobuf:"varint,9,opt,name=is_default,json=isDefault,proto3" json:"is_default,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordAgePolicy) Reset() {
- *x = PasswordAgePolicy{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[39]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordAgePolicy) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordAgePolicy) ProtoMessage() {}
-
-func (x *PasswordAgePolicy) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[39]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordAgePolicy.ProtoReflect.Descriptor instead.
+func (m *PasswordAgePolicy) Reset() { *m = PasswordAgePolicy{} }
+func (m *PasswordAgePolicy) String() string { return proto.CompactTextString(m) }
+func (*PasswordAgePolicy) ProtoMessage() {}
func (*PasswordAgePolicy) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{39}
+ return fileDescriptor_edc174f991dc0a25, []int{39}
}
-func (x *PasswordAgePolicy) GetId() string {
- if x != nil {
- return x.Id
+func (m *PasswordAgePolicy) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordAgePolicy.Unmarshal(m, b)
+}
+func (m *PasswordAgePolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordAgePolicy.Marshal(b, m, deterministic)
+}
+func (m *PasswordAgePolicy) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordAgePolicy.Merge(m, src)
+}
+func (m *PasswordAgePolicy) XXX_Size() int {
+ return xxx_messageInfo_PasswordAgePolicy.Size(m)
+}
+func (m *PasswordAgePolicy) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordAgePolicy.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordAgePolicy proto.InternalMessageInfo
+
+func (m *PasswordAgePolicy) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *PasswordAgePolicy) GetDescription() string {
- if x != nil {
- return x.Description
+func (m *PasswordAgePolicy) GetDescription() string {
+ if m != nil {
+ return m.Description
}
return ""
}
-func (x *PasswordAgePolicy) GetState() PolicyState {
- if x != nil {
- return x.State
+func (m *PasswordAgePolicy) GetState() PolicyState {
+ if m != nil {
+ return m.State
}
return PolicyState_POLICYSTATE_UNSPECIFIED
}
-func (x *PasswordAgePolicy) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *PasswordAgePolicy) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *PasswordAgePolicy) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *PasswordAgePolicy) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *PasswordAgePolicy) GetMaxAgeDays() uint64 {
- if x != nil {
- return x.MaxAgeDays
+func (m *PasswordAgePolicy) GetMaxAgeDays() uint64 {
+ if m != nil {
+ return m.MaxAgeDays
}
return 0
}
-func (x *PasswordAgePolicy) GetExpireWarnDays() uint64 {
- if x != nil {
- return x.ExpireWarnDays
+func (m *PasswordAgePolicy) GetExpireWarnDays() uint64 {
+ if m != nil {
+ return m.ExpireWarnDays
}
return 0
}
-func (x *PasswordAgePolicy) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *PasswordAgePolicy) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *PasswordAgePolicy) GetIsDefault() bool {
- if x != nil {
- return x.IsDefault
+func (m *PasswordAgePolicy) GetIsDefault() bool {
+ if m != nil {
+ return m.IsDefault
}
return false
}
type PasswordAgePolicyCreate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
- MaxAgeDays uint64 `protobuf:"varint,2,opt,name=max_age_days,json=maxAgeDays,proto3" json:"max_age_days,omitempty"`
- ExpireWarnDays uint64 `protobuf:"varint,3,opt,name=expire_warn_days,json=expireWarnDays,proto3" json:"expire_warn_days,omitempty"`
+ Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
+ MaxAgeDays uint64 `protobuf:"varint,2,opt,name=max_age_days,json=maxAgeDays,proto3" json:"max_age_days,omitempty"`
+ ExpireWarnDays uint64 `protobuf:"varint,3,opt,name=expire_warn_days,json=expireWarnDays,proto3" json:"expire_warn_days,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordAgePolicyCreate) Reset() {
- *x = PasswordAgePolicyCreate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[40]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordAgePolicyCreate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordAgePolicyCreate) ProtoMessage() {}
-
-func (x *PasswordAgePolicyCreate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[40]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordAgePolicyCreate.ProtoReflect.Descriptor instead.
+func (m *PasswordAgePolicyCreate) Reset() { *m = PasswordAgePolicyCreate{} }
+func (m *PasswordAgePolicyCreate) String() string { return proto.CompactTextString(m) }
+func (*PasswordAgePolicyCreate) ProtoMessage() {}
func (*PasswordAgePolicyCreate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{40}
+ return fileDescriptor_edc174f991dc0a25, []int{40}
}
-func (x *PasswordAgePolicyCreate) GetDescription() string {
- if x != nil {
- return x.Description
+func (m *PasswordAgePolicyCreate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordAgePolicyCreate.Unmarshal(m, b)
+}
+func (m *PasswordAgePolicyCreate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordAgePolicyCreate.Marshal(b, m, deterministic)
+}
+func (m *PasswordAgePolicyCreate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordAgePolicyCreate.Merge(m, src)
+}
+func (m *PasswordAgePolicyCreate) XXX_Size() int {
+ return xxx_messageInfo_PasswordAgePolicyCreate.Size(m)
+}
+func (m *PasswordAgePolicyCreate) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordAgePolicyCreate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordAgePolicyCreate proto.InternalMessageInfo
+
+func (m *PasswordAgePolicyCreate) GetDescription() string {
+ if m != nil {
+ return m.Description
}
return ""
}
-func (x *PasswordAgePolicyCreate) GetMaxAgeDays() uint64 {
- if x != nil {
- return x.MaxAgeDays
+func (m *PasswordAgePolicyCreate) GetMaxAgeDays() uint64 {
+ if m != nil {
+ return m.MaxAgeDays
}
return 0
}
-func (x *PasswordAgePolicyCreate) GetExpireWarnDays() uint64 {
- if x != nil {
- return x.ExpireWarnDays
+func (m *PasswordAgePolicyCreate) GetExpireWarnDays() uint64 {
+ if m != nil {
+ return m.ExpireWarnDays
}
return 0
}
type PasswordAgePolicyUpdate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
- MaxAgeDays uint64 `protobuf:"varint,3,opt,name=max_age_days,json=maxAgeDays,proto3" json:"max_age_days,omitempty"`
- ExpireWarnDays uint64 `protobuf:"varint,4,opt,name=expire_warn_days,json=expireWarnDays,proto3" json:"expire_warn_days,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
+ MaxAgeDays uint64 `protobuf:"varint,3,opt,name=max_age_days,json=maxAgeDays,proto3" json:"max_age_days,omitempty"`
+ ExpireWarnDays uint64 `protobuf:"varint,4,opt,name=expire_warn_days,json=expireWarnDays,proto3" json:"expire_warn_days,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordAgePolicyUpdate) Reset() {
- *x = PasswordAgePolicyUpdate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[41]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordAgePolicyUpdate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordAgePolicyUpdate) ProtoMessage() {}
-
-func (x *PasswordAgePolicyUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[41]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordAgePolicyUpdate.ProtoReflect.Descriptor instead.
+func (m *PasswordAgePolicyUpdate) Reset() { *m = PasswordAgePolicyUpdate{} }
+func (m *PasswordAgePolicyUpdate) String() string { return proto.CompactTextString(m) }
+func (*PasswordAgePolicyUpdate) ProtoMessage() {}
func (*PasswordAgePolicyUpdate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{41}
+ return fileDescriptor_edc174f991dc0a25, []int{41}
}
-func (x *PasswordAgePolicyUpdate) GetId() string {
- if x != nil {
- return x.Id
+func (m *PasswordAgePolicyUpdate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordAgePolicyUpdate.Unmarshal(m, b)
+}
+func (m *PasswordAgePolicyUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordAgePolicyUpdate.Marshal(b, m, deterministic)
+}
+func (m *PasswordAgePolicyUpdate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordAgePolicyUpdate.Merge(m, src)
+}
+func (m *PasswordAgePolicyUpdate) XXX_Size() int {
+ return xxx_messageInfo_PasswordAgePolicyUpdate.Size(m)
+}
+func (m *PasswordAgePolicyUpdate) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordAgePolicyUpdate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordAgePolicyUpdate proto.InternalMessageInfo
+
+func (m *PasswordAgePolicyUpdate) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *PasswordAgePolicyUpdate) GetDescription() string {
- if x != nil {
- return x.Description
+func (m *PasswordAgePolicyUpdate) GetDescription() string {
+ if m != nil {
+ return m.Description
}
return ""
}
-func (x *PasswordAgePolicyUpdate) GetMaxAgeDays() uint64 {
- if x != nil {
- return x.MaxAgeDays
+func (m *PasswordAgePolicyUpdate) GetMaxAgeDays() uint64 {
+ if m != nil {
+ return m.MaxAgeDays
}
return 0
}
-func (x *PasswordAgePolicyUpdate) GetExpireWarnDays() uint64 {
- if x != nil {
- return x.ExpireWarnDays
+func (m *PasswordAgePolicyUpdate) GetExpireWarnDays() uint64 {
+ if m != nil {
+ return m.ExpireWarnDays
}
return 0
}
type PasswordLockoutPolicyID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordLockoutPolicyID) Reset() {
- *x = PasswordLockoutPolicyID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[42]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordLockoutPolicyID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordLockoutPolicyID) ProtoMessage() {}
-
-func (x *PasswordLockoutPolicyID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[42]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordLockoutPolicyID.ProtoReflect.Descriptor instead.
+func (m *PasswordLockoutPolicyID) Reset() { *m = PasswordLockoutPolicyID{} }
+func (m *PasswordLockoutPolicyID) String() string { return proto.CompactTextString(m) }
+func (*PasswordLockoutPolicyID) ProtoMessage() {}
func (*PasswordLockoutPolicyID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{42}
+ return fileDescriptor_edc174f991dc0a25, []int{42}
}
-func (x *PasswordLockoutPolicyID) GetId() string {
- if x != nil {
- return x.Id
+func (m *PasswordLockoutPolicyID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordLockoutPolicyID.Unmarshal(m, b)
+}
+func (m *PasswordLockoutPolicyID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordLockoutPolicyID.Marshal(b, m, deterministic)
+}
+func (m *PasswordLockoutPolicyID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordLockoutPolicyID.Merge(m, src)
+}
+func (m *PasswordLockoutPolicyID) XXX_Size() int {
+ return xxx_messageInfo_PasswordLockoutPolicyID.Size(m)
+}
+func (m *PasswordLockoutPolicyID) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordLockoutPolicyID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordLockoutPolicyID proto.InternalMessageInfo
+
+func (m *PasswordLockoutPolicyID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type PasswordLockoutPolicy struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
- State PolicyState `protobuf:"varint,3,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.PolicyState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- MaxAttempts uint64 `protobuf:"varint,6,opt,name=max_attempts,json=maxAttempts,proto3" json:"max_attempts,omitempty"`
- ShowLockOutFailures bool `protobuf:"varint,7,opt,name=show_lock_out_failures,json=showLockOutFailures,proto3" json:"show_lock_out_failures,omitempty"`
- Sequence uint64 `protobuf:"varint,8,opt,name=sequence,proto3" json:"sequence,omitempty"`
- IsDefault bool `protobuf:"varint,9,opt,name=is_default,json=isDefault,proto3" json:"is_default,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
+ State PolicyState `protobuf:"varint,3,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.PolicyState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ MaxAttempts uint64 `protobuf:"varint,6,opt,name=max_attempts,json=maxAttempts,proto3" json:"max_attempts,omitempty"`
+ ShowLockOutFailures bool `protobuf:"varint,7,opt,name=show_lock_out_failures,json=showLockOutFailures,proto3" json:"show_lock_out_failures,omitempty"`
+ Sequence uint64 `protobuf:"varint,8,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ IsDefault bool `protobuf:"varint,9,opt,name=is_default,json=isDefault,proto3" json:"is_default,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordLockoutPolicy) Reset() {
- *x = PasswordLockoutPolicy{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[43]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordLockoutPolicy) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordLockoutPolicy) ProtoMessage() {}
-
-func (x *PasswordLockoutPolicy) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[43]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordLockoutPolicy.ProtoReflect.Descriptor instead.
+func (m *PasswordLockoutPolicy) Reset() { *m = PasswordLockoutPolicy{} }
+func (m *PasswordLockoutPolicy) String() string { return proto.CompactTextString(m) }
+func (*PasswordLockoutPolicy) ProtoMessage() {}
func (*PasswordLockoutPolicy) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{43}
+ return fileDescriptor_edc174f991dc0a25, []int{43}
}
-func (x *PasswordLockoutPolicy) GetId() string {
- if x != nil {
- return x.Id
+func (m *PasswordLockoutPolicy) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordLockoutPolicy.Unmarshal(m, b)
+}
+func (m *PasswordLockoutPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordLockoutPolicy.Marshal(b, m, deterministic)
+}
+func (m *PasswordLockoutPolicy) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordLockoutPolicy.Merge(m, src)
+}
+func (m *PasswordLockoutPolicy) XXX_Size() int {
+ return xxx_messageInfo_PasswordLockoutPolicy.Size(m)
+}
+func (m *PasswordLockoutPolicy) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordLockoutPolicy.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordLockoutPolicy proto.InternalMessageInfo
+
+func (m *PasswordLockoutPolicy) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *PasswordLockoutPolicy) GetDescription() string {
- if x != nil {
- return x.Description
+func (m *PasswordLockoutPolicy) GetDescription() string {
+ if m != nil {
+ return m.Description
}
return ""
}
-func (x *PasswordLockoutPolicy) GetState() PolicyState {
- if x != nil {
- return x.State
+func (m *PasswordLockoutPolicy) GetState() PolicyState {
+ if m != nil {
+ return m.State
}
return PolicyState_POLICYSTATE_UNSPECIFIED
}
-func (x *PasswordLockoutPolicy) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *PasswordLockoutPolicy) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *PasswordLockoutPolicy) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *PasswordLockoutPolicy) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *PasswordLockoutPolicy) GetMaxAttempts() uint64 {
- if x != nil {
- return x.MaxAttempts
+func (m *PasswordLockoutPolicy) GetMaxAttempts() uint64 {
+ if m != nil {
+ return m.MaxAttempts
}
return 0
}
-func (x *PasswordLockoutPolicy) GetShowLockOutFailures() bool {
- if x != nil {
- return x.ShowLockOutFailures
+func (m *PasswordLockoutPolicy) GetShowLockOutFailures() bool {
+ if m != nil {
+ return m.ShowLockOutFailures
}
return false
}
-func (x *PasswordLockoutPolicy) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *PasswordLockoutPolicy) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *PasswordLockoutPolicy) GetIsDefault() bool {
- if x != nil {
- return x.IsDefault
+func (m *PasswordLockoutPolicy) GetIsDefault() bool {
+ if m != nil {
+ return m.IsDefault
}
return false
}
type PasswordLockoutPolicyCreate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
- MaxAttempts uint64 `protobuf:"varint,2,opt,name=max_attempts,json=maxAttempts,proto3" json:"max_attempts,omitempty"`
- ShowLockOutFailures bool `protobuf:"varint,3,opt,name=show_lock_out_failures,json=showLockOutFailures,proto3" json:"show_lock_out_failures,omitempty"`
+ Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
+ MaxAttempts uint64 `protobuf:"varint,2,opt,name=max_attempts,json=maxAttempts,proto3" json:"max_attempts,omitempty"`
+ ShowLockOutFailures bool `protobuf:"varint,3,opt,name=show_lock_out_failures,json=showLockOutFailures,proto3" json:"show_lock_out_failures,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordLockoutPolicyCreate) Reset() {
- *x = PasswordLockoutPolicyCreate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[44]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordLockoutPolicyCreate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordLockoutPolicyCreate) ProtoMessage() {}
-
-func (x *PasswordLockoutPolicyCreate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[44]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordLockoutPolicyCreate.ProtoReflect.Descriptor instead.
+func (m *PasswordLockoutPolicyCreate) Reset() { *m = PasswordLockoutPolicyCreate{} }
+func (m *PasswordLockoutPolicyCreate) String() string { return proto.CompactTextString(m) }
+func (*PasswordLockoutPolicyCreate) ProtoMessage() {}
func (*PasswordLockoutPolicyCreate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{44}
+ return fileDescriptor_edc174f991dc0a25, []int{44}
}
-func (x *PasswordLockoutPolicyCreate) GetDescription() string {
- if x != nil {
- return x.Description
+func (m *PasswordLockoutPolicyCreate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordLockoutPolicyCreate.Unmarshal(m, b)
+}
+func (m *PasswordLockoutPolicyCreate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordLockoutPolicyCreate.Marshal(b, m, deterministic)
+}
+func (m *PasswordLockoutPolicyCreate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordLockoutPolicyCreate.Merge(m, src)
+}
+func (m *PasswordLockoutPolicyCreate) XXX_Size() int {
+ return xxx_messageInfo_PasswordLockoutPolicyCreate.Size(m)
+}
+func (m *PasswordLockoutPolicyCreate) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordLockoutPolicyCreate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordLockoutPolicyCreate proto.InternalMessageInfo
+
+func (m *PasswordLockoutPolicyCreate) GetDescription() string {
+ if m != nil {
+ return m.Description
}
return ""
}
-func (x *PasswordLockoutPolicyCreate) GetMaxAttempts() uint64 {
- if x != nil {
- return x.MaxAttempts
+func (m *PasswordLockoutPolicyCreate) GetMaxAttempts() uint64 {
+ if m != nil {
+ return m.MaxAttempts
}
return 0
}
-func (x *PasswordLockoutPolicyCreate) GetShowLockOutFailures() bool {
- if x != nil {
- return x.ShowLockOutFailures
+func (m *PasswordLockoutPolicyCreate) GetShowLockOutFailures() bool {
+ if m != nil {
+ return m.ShowLockOutFailures
}
return false
}
type PasswordLockoutPolicyUpdate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
- MaxAttempts uint64 `protobuf:"varint,3,opt,name=max_attempts,json=maxAttempts,proto3" json:"max_attempts,omitempty"`
- ShowLockOutFailures bool `protobuf:"varint,4,opt,name=show_lock_out_failures,json=showLockOutFailures,proto3" json:"show_lock_out_failures,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
+ MaxAttempts uint64 `protobuf:"varint,3,opt,name=max_attempts,json=maxAttempts,proto3" json:"max_attempts,omitempty"`
+ ShowLockOutFailures bool `protobuf:"varint,4,opt,name=show_lock_out_failures,json=showLockOutFailures,proto3" json:"show_lock_out_failures,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordLockoutPolicyUpdate) Reset() {
- *x = PasswordLockoutPolicyUpdate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[45]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordLockoutPolicyUpdate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordLockoutPolicyUpdate) ProtoMessage() {}
-
-func (x *PasswordLockoutPolicyUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[45]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use PasswordLockoutPolicyUpdate.ProtoReflect.Descriptor instead.
+func (m *PasswordLockoutPolicyUpdate) Reset() { *m = PasswordLockoutPolicyUpdate{} }
+func (m *PasswordLockoutPolicyUpdate) String() string { return proto.CompactTextString(m) }
+func (*PasswordLockoutPolicyUpdate) ProtoMessage() {}
func (*PasswordLockoutPolicyUpdate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{45}
+ return fileDescriptor_edc174f991dc0a25, []int{45}
}
-func (x *PasswordLockoutPolicyUpdate) GetId() string {
- if x != nil {
- return x.Id
+func (m *PasswordLockoutPolicyUpdate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordLockoutPolicyUpdate.Unmarshal(m, b)
+}
+func (m *PasswordLockoutPolicyUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordLockoutPolicyUpdate.Marshal(b, m, deterministic)
+}
+func (m *PasswordLockoutPolicyUpdate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordLockoutPolicyUpdate.Merge(m, src)
+}
+func (m *PasswordLockoutPolicyUpdate) XXX_Size() int {
+ return xxx_messageInfo_PasswordLockoutPolicyUpdate.Size(m)
+}
+func (m *PasswordLockoutPolicyUpdate) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordLockoutPolicyUpdate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordLockoutPolicyUpdate proto.InternalMessageInfo
+
+func (m *PasswordLockoutPolicyUpdate) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *PasswordLockoutPolicyUpdate) GetDescription() string {
- if x != nil {
- return x.Description
+func (m *PasswordLockoutPolicyUpdate) GetDescription() string {
+ if m != nil {
+ return m.Description
}
return ""
}
-func (x *PasswordLockoutPolicyUpdate) GetMaxAttempts() uint64 {
- if x != nil {
- return x.MaxAttempts
+func (m *PasswordLockoutPolicyUpdate) GetMaxAttempts() uint64 {
+ if m != nil {
+ return m.MaxAttempts
}
return 0
}
-func (x *PasswordLockoutPolicyUpdate) GetShowLockOutFailures() bool {
- if x != nil {
- return x.ShowLockOutFailures
+func (m *PasswordLockoutPolicyUpdate) GetShowLockOutFailures() bool {
+ if m != nil {
+ return m.ShowLockOutFailures
}
return false
}
type OrgID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgID) Reset() {
- *x = OrgID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[46]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgID) ProtoMessage() {}
-
-func (x *OrgID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[46]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgID.ProtoReflect.Descriptor instead.
+func (m *OrgID) Reset() { *m = OrgID{} }
+func (m *OrgID) String() string { return proto.CompactTextString(m) }
+func (*OrgID) ProtoMessage() {}
func (*OrgID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{46}
+ return fileDescriptor_edc174f991dc0a25, []int{46}
}
-func (x *OrgID) GetId() string {
- if x != nil {
- return x.Id
+func (m *OrgID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgID.Unmarshal(m, b)
+}
+func (m *OrgID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgID.Marshal(b, m, deterministic)
+}
+func (m *OrgID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgID.Merge(m, src)
+}
+func (m *OrgID) XXX_Size() int {
+ return xxx_messageInfo_OrgID.Size(m)
+}
+func (m *OrgID) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgID proto.InternalMessageInfo
+
+func (m *OrgID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type Org struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- State OrgState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.OrgState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
- Sequence uint64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ State OrgState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.OrgState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
+ Sequence uint64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Org) Reset() {
- *x = Org{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[47]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Org) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Org) ProtoMessage() {}
-
-func (x *Org) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[47]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use Org.ProtoReflect.Descriptor instead.
+func (m *Org) Reset() { *m = Org{} }
+func (m *Org) String() string { return proto.CompactTextString(m) }
+func (*Org) ProtoMessage() {}
func (*Org) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{47}
+ return fileDescriptor_edc174f991dc0a25, []int{47}
}
-func (x *Org) GetId() string {
- if x != nil {
- return x.Id
+func (m *Org) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Org.Unmarshal(m, b)
+}
+func (m *Org) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Org.Marshal(b, m, deterministic)
+}
+func (m *Org) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Org.Merge(m, src)
+}
+func (m *Org) XXX_Size() int {
+ return xxx_messageInfo_Org.Size(m)
+}
+func (m *Org) XXX_DiscardUnknown() {
+ xxx_messageInfo_Org.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Org proto.InternalMessageInfo
+
+func (m *Org) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *Org) GetState() OrgState {
- if x != nil {
- return x.State
+func (m *Org) GetState() OrgState {
+ if m != nil {
+ return m.State
}
return OrgState_ORGSTATE_UNSPECIFIED
}
-func (x *Org) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *Org) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *Org) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *Org) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *Org) GetName() string {
- if x != nil {
- return x.Name
+func (m *Org) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *Org) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *Org) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type OrgDomains struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Domains []*OrgDomain `protobuf:"bytes,1,rep,name=domains,proto3" json:"domains,omitempty"`
+ Domains []*OrgDomain `protobuf:"bytes,1,rep,name=domains,proto3" json:"domains,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgDomains) Reset() {
- *x = OrgDomains{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[48]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgDomains) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgDomains) ProtoMessage() {}
-
-func (x *OrgDomains) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[48]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgDomains.ProtoReflect.Descriptor instead.
+func (m *OrgDomains) Reset() { *m = OrgDomains{} }
+func (m *OrgDomains) String() string { return proto.CompactTextString(m) }
+func (*OrgDomains) ProtoMessage() {}
func (*OrgDomains) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{48}
+ return fileDescriptor_edc174f991dc0a25, []int{48}
}
-func (x *OrgDomains) GetDomains() []*OrgDomain {
- if x != nil {
- return x.Domains
+func (m *OrgDomains) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgDomains.Unmarshal(m, b)
+}
+func (m *OrgDomains) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgDomains.Marshal(b, m, deterministic)
+}
+func (m *OrgDomains) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgDomains.Merge(m, src)
+}
+func (m *OrgDomains) XXX_Size() int {
+ return xxx_messageInfo_OrgDomains.Size(m)
+}
+func (m *OrgDomains) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgDomains.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgDomains proto.InternalMessageInfo
+
+func (m *OrgDomains) GetDomains() []*OrgDomain {
+ if m != nil {
+ return m.Domains
}
return nil
}
type OrgDomain struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,2,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- Domain string `protobuf:"bytes,4,opt,name=domain,proto3" json:"domain,omitempty"`
- Verified bool `protobuf:"varint,5,opt,name=verified,proto3" json:"verified,omitempty"`
- Primary bool `protobuf:"varint,6,opt,name=primary,proto3" json:"primary,omitempty"`
- Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,2,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Domain string `protobuf:"bytes,4,opt,name=domain,proto3" json:"domain,omitempty"`
+ Verified bool `protobuf:"varint,5,opt,name=verified,proto3" json:"verified,omitempty"`
+ Primary bool `protobuf:"varint,6,opt,name=primary,proto3" json:"primary,omitempty"`
+ Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgDomain) Reset() {
- *x = OrgDomain{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[49]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgDomain) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgDomain) ProtoMessage() {}
-
-func (x *OrgDomain) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[49]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgDomain.ProtoReflect.Descriptor instead.
+func (m *OrgDomain) Reset() { *m = OrgDomain{} }
+func (m *OrgDomain) String() string { return proto.CompactTextString(m) }
+func (*OrgDomain) ProtoMessage() {}
func (*OrgDomain) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{49}
+ return fileDescriptor_edc174f991dc0a25, []int{49}
}
-func (x *OrgDomain) GetOrgId() string {
- if x != nil {
- return x.OrgId
+func (m *OrgDomain) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgDomain.Unmarshal(m, b)
+}
+func (m *OrgDomain) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgDomain.Marshal(b, m, deterministic)
+}
+func (m *OrgDomain) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgDomain.Merge(m, src)
+}
+func (m *OrgDomain) XXX_Size() int {
+ return xxx_messageInfo_OrgDomain.Size(m)
+}
+func (m *OrgDomain) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgDomain.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgDomain proto.InternalMessageInfo
+
+func (m *OrgDomain) GetOrgId() string {
+ if m != nil {
+ return m.OrgId
}
return ""
}
-func (x *OrgDomain) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *OrgDomain) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *OrgDomain) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *OrgDomain) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *OrgDomain) GetDomain() string {
- if x != nil {
- return x.Domain
+func (m *OrgDomain) GetDomain() string {
+ if m != nil {
+ return m.Domain
}
return ""
}
-func (x *OrgDomain) GetVerified() bool {
- if x != nil {
- return x.Verified
+func (m *OrgDomain) GetVerified() bool {
+ if m != nil {
+ return m.Verified
}
return false
}
-func (x *OrgDomain) GetPrimary() bool {
- if x != nil {
- return x.Primary
+func (m *OrgDomain) GetPrimary() bool {
+ if m != nil {
+ return m.Primary
}
return false
}
-func (x *OrgDomain) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *OrgDomain) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type OrgDomainView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,2,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- Domain string `protobuf:"bytes,4,opt,name=domain,proto3" json:"domain,omitempty"`
- Verified bool `protobuf:"varint,5,opt,name=verified,proto3" json:"verified,omitempty"`
- Primary bool `protobuf:"varint,6,opt,name=primary,proto3" json:"primary,omitempty"`
- Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,2,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Domain string `protobuf:"bytes,4,opt,name=domain,proto3" json:"domain,omitempty"`
+ Verified bool `protobuf:"varint,5,opt,name=verified,proto3" json:"verified,omitempty"`
+ Primary bool `protobuf:"varint,6,opt,name=primary,proto3" json:"primary,omitempty"`
+ Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgDomainView) Reset() {
- *x = OrgDomainView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[50]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgDomainView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgDomainView) ProtoMessage() {}
-
-func (x *OrgDomainView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[50]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgDomainView.ProtoReflect.Descriptor instead.
+func (m *OrgDomainView) Reset() { *m = OrgDomainView{} }
+func (m *OrgDomainView) String() string { return proto.CompactTextString(m) }
+func (*OrgDomainView) ProtoMessage() {}
func (*OrgDomainView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{50}
+ return fileDescriptor_edc174f991dc0a25, []int{50}
}
-func (x *OrgDomainView) GetOrgId() string {
- if x != nil {
- return x.OrgId
+func (m *OrgDomainView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgDomainView.Unmarshal(m, b)
+}
+func (m *OrgDomainView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgDomainView.Marshal(b, m, deterministic)
+}
+func (m *OrgDomainView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgDomainView.Merge(m, src)
+}
+func (m *OrgDomainView) XXX_Size() int {
+ return xxx_messageInfo_OrgDomainView.Size(m)
+}
+func (m *OrgDomainView) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgDomainView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgDomainView proto.InternalMessageInfo
+
+func (m *OrgDomainView) GetOrgId() string {
+ if m != nil {
+ return m.OrgId
}
return ""
}
-func (x *OrgDomainView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *OrgDomainView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *OrgDomainView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *OrgDomainView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *OrgDomainView) GetDomain() string {
- if x != nil {
- return x.Domain
+func (m *OrgDomainView) GetDomain() string {
+ if m != nil {
+ return m.Domain
}
return ""
}
-func (x *OrgDomainView) GetVerified() bool {
- if x != nil {
- return x.Verified
+func (m *OrgDomainView) GetVerified() bool {
+ if m != nil {
+ return m.Verified
}
return false
}
-func (x *OrgDomainView) GetPrimary() bool {
- if x != nil {
- return x.Primary
+func (m *OrgDomainView) GetPrimary() bool {
+ if m != nil {
+ return m.Primary
}
return false
}
-func (x *OrgDomainView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *OrgDomainView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type AddOrgDomainRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
+ Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *AddOrgDomainRequest) Reset() {
- *x = AddOrgDomainRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[51]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *AddOrgDomainRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*AddOrgDomainRequest) ProtoMessage() {}
-
-func (x *AddOrgDomainRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[51]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use AddOrgDomainRequest.ProtoReflect.Descriptor instead.
+func (m *AddOrgDomainRequest) Reset() { *m = AddOrgDomainRequest{} }
+func (m *AddOrgDomainRequest) String() string { return proto.CompactTextString(m) }
+func (*AddOrgDomainRequest) ProtoMessage() {}
func (*AddOrgDomainRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{51}
+ return fileDescriptor_edc174f991dc0a25, []int{51}
}
-func (x *AddOrgDomainRequest) GetDomain() string {
- if x != nil {
- return x.Domain
+func (m *AddOrgDomainRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_AddOrgDomainRequest.Unmarshal(m, b)
+}
+func (m *AddOrgDomainRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_AddOrgDomainRequest.Marshal(b, m, deterministic)
+}
+func (m *AddOrgDomainRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_AddOrgDomainRequest.Merge(m, src)
+}
+func (m *AddOrgDomainRequest) XXX_Size() int {
+ return xxx_messageInfo_AddOrgDomainRequest.Size(m)
+}
+func (m *AddOrgDomainRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_AddOrgDomainRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_AddOrgDomainRequest proto.InternalMessageInfo
+
+func (m *AddOrgDomainRequest) GetDomain() string {
+ if m != nil {
+ return m.Domain
}
return ""
}
type RemoveOrgDomainRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
+ Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *RemoveOrgDomainRequest) Reset() {
- *x = RemoveOrgDomainRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[52]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *RemoveOrgDomainRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*RemoveOrgDomainRequest) ProtoMessage() {}
-
-func (x *RemoveOrgDomainRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[52]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use RemoveOrgDomainRequest.ProtoReflect.Descriptor instead.
+func (m *RemoveOrgDomainRequest) Reset() { *m = RemoveOrgDomainRequest{} }
+func (m *RemoveOrgDomainRequest) String() string { return proto.CompactTextString(m) }
+func (*RemoveOrgDomainRequest) ProtoMessage() {}
func (*RemoveOrgDomainRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{52}
+ return fileDescriptor_edc174f991dc0a25, []int{52}
}
-func (x *RemoveOrgDomainRequest) GetDomain() string {
- if x != nil {
- return x.Domain
+func (m *RemoveOrgDomainRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_RemoveOrgDomainRequest.Unmarshal(m, b)
+}
+func (m *RemoveOrgDomainRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_RemoveOrgDomainRequest.Marshal(b, m, deterministic)
+}
+func (m *RemoveOrgDomainRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_RemoveOrgDomainRequest.Merge(m, src)
+}
+func (m *RemoveOrgDomainRequest) XXX_Size() int {
+ return xxx_messageInfo_RemoveOrgDomainRequest.Size(m)
+}
+func (m *RemoveOrgDomainRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_RemoveOrgDomainRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_RemoveOrgDomainRequest proto.InternalMessageInfo
+
+func (m *RemoveOrgDomainRequest) GetDomain() string {
+ if m != nil {
+ return m.Domain
}
return ""
}
type OrgDomainSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*OrgDomainView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*OrgDomainView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgDomainSearchResponse) Reset() {
- *x = OrgDomainSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[53]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgDomainSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgDomainSearchResponse) ProtoMessage() {}
-
-func (x *OrgDomainSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[53]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgDomainSearchResponse.ProtoReflect.Descriptor instead.
+func (m *OrgDomainSearchResponse) Reset() { *m = OrgDomainSearchResponse{} }
+func (m *OrgDomainSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*OrgDomainSearchResponse) ProtoMessage() {}
func (*OrgDomainSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{53}
+ return fileDescriptor_edc174f991dc0a25, []int{53}
}
-func (x *OrgDomainSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *OrgDomainSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgDomainSearchResponse.Unmarshal(m, b)
+}
+func (m *OrgDomainSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgDomainSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *OrgDomainSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgDomainSearchResponse.Merge(m, src)
+}
+func (m *OrgDomainSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_OrgDomainSearchResponse.Size(m)
+}
+func (m *OrgDomainSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgDomainSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgDomainSearchResponse proto.InternalMessageInfo
+
+func (m *OrgDomainSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *OrgDomainSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *OrgDomainSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *OrgDomainSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *OrgDomainSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *OrgDomainSearchResponse) GetResult() []*OrgDomainView {
- if x != nil {
- return x.Result
+func (m *OrgDomainSearchResponse) GetResult() []*OrgDomainView {
+ if m != nil {
+ return m.Result
}
return nil
}
type OrgDomainSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*OrgDomainSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*OrgDomainSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgDomainSearchRequest) Reset() {
- *x = OrgDomainSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[54]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgDomainSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgDomainSearchRequest) ProtoMessage() {}
-
-func (x *OrgDomainSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[54]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgDomainSearchRequest.ProtoReflect.Descriptor instead.
+func (m *OrgDomainSearchRequest) Reset() { *m = OrgDomainSearchRequest{} }
+func (m *OrgDomainSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*OrgDomainSearchRequest) ProtoMessage() {}
func (*OrgDomainSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{54}
+ return fileDescriptor_edc174f991dc0a25, []int{54}
}
-func (x *OrgDomainSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *OrgDomainSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgDomainSearchRequest.Unmarshal(m, b)
+}
+func (m *OrgDomainSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgDomainSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *OrgDomainSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgDomainSearchRequest.Merge(m, src)
+}
+func (m *OrgDomainSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_OrgDomainSearchRequest.Size(m)
+}
+func (m *OrgDomainSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgDomainSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgDomainSearchRequest proto.InternalMessageInfo
+
+func (m *OrgDomainSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *OrgDomainSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *OrgDomainSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *OrgDomainSearchRequest) GetQueries() []*OrgDomainSearchQuery {
- if x != nil {
- return x.Queries
+func (m *OrgDomainSearchRequest) GetQueries() []*OrgDomainSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type OrgDomainSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key OrgDomainSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.OrgDomainSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key OrgDomainSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.OrgDomainSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgDomainSearchQuery) Reset() {
- *x = OrgDomainSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[55]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgDomainSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgDomainSearchQuery) ProtoMessage() {}
-
-func (x *OrgDomainSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[55]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgDomainSearchQuery.ProtoReflect.Descriptor instead.
+func (m *OrgDomainSearchQuery) Reset() { *m = OrgDomainSearchQuery{} }
+func (m *OrgDomainSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*OrgDomainSearchQuery) ProtoMessage() {}
func (*OrgDomainSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{55}
+ return fileDescriptor_edc174f991dc0a25, []int{55}
}
-func (x *OrgDomainSearchQuery) GetKey() OrgDomainSearchKey {
- if x != nil {
- return x.Key
+func (m *OrgDomainSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgDomainSearchQuery.Unmarshal(m, b)
+}
+func (m *OrgDomainSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgDomainSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *OrgDomainSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgDomainSearchQuery.Merge(m, src)
+}
+func (m *OrgDomainSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_OrgDomainSearchQuery.Size(m)
+}
+func (m *OrgDomainSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgDomainSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgDomainSearchQuery proto.InternalMessageInfo
+
+func (m *OrgDomainSearchQuery) GetKey() OrgDomainSearchKey {
+ if m != nil {
+ return m.Key
}
return OrgDomainSearchKey_ORGDOMAINSEARCHKEY_UNSPECIFIED
}
-func (x *OrgDomainSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *OrgDomainSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *OrgDomainSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *OrgDomainSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type OrgMemberRoles struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Roles []string `protobuf:"bytes,1,rep,name=roles,proto3" json:"roles,omitempty"`
+ Roles []string `protobuf:"bytes,1,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgMemberRoles) Reset() {
- *x = OrgMemberRoles{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[56]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgMemberRoles) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgMemberRoles) ProtoMessage() {}
-
-func (x *OrgMemberRoles) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[56]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgMemberRoles.ProtoReflect.Descriptor instead.
+func (m *OrgMemberRoles) Reset() { *m = OrgMemberRoles{} }
+func (m *OrgMemberRoles) String() string { return proto.CompactTextString(m) }
+func (*OrgMemberRoles) ProtoMessage() {}
func (*OrgMemberRoles) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{56}
+ return fileDescriptor_edc174f991dc0a25, []int{56}
}
-func (x *OrgMemberRoles) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *OrgMemberRoles) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgMemberRoles.Unmarshal(m, b)
+}
+func (m *OrgMemberRoles) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgMemberRoles.Marshal(b, m, deterministic)
+}
+func (m *OrgMemberRoles) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgMemberRoles.Merge(m, src)
+}
+func (m *OrgMemberRoles) XXX_Size() int {
+ return xxx_messageInfo_OrgMemberRoles.Size(m)
+}
+func (m *OrgMemberRoles) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgMemberRoles.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgMemberRoles proto.InternalMessageInfo
+
+func (m *OrgMemberRoles) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type OrgMember struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgMember) Reset() {
- *x = OrgMember{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[57]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgMember) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgMember) ProtoMessage() {}
-
-func (x *OrgMember) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[57]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgMember.ProtoReflect.Descriptor instead.
+func (m *OrgMember) Reset() { *m = OrgMember{} }
+func (m *OrgMember) String() string { return proto.CompactTextString(m) }
+func (*OrgMember) ProtoMessage() {}
func (*OrgMember) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{57}
+ return fileDescriptor_edc174f991dc0a25, []int{57}
}
-func (x *OrgMember) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *OrgMember) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgMember.Unmarshal(m, b)
+}
+func (m *OrgMember) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgMember.Marshal(b, m, deterministic)
+}
+func (m *OrgMember) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgMember.Merge(m, src)
+}
+func (m *OrgMember) XXX_Size() int {
+ return xxx_messageInfo_OrgMember.Size(m)
+}
+func (m *OrgMember) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgMember.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgMember proto.InternalMessageInfo
+
+func (m *OrgMember) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *OrgMember) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *OrgMember) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
-func (x *OrgMember) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *OrgMember) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *OrgMember) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *OrgMember) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *OrgMember) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *OrgMember) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type AddOrgMemberRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *AddOrgMemberRequest) Reset() {
- *x = AddOrgMemberRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[58]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *AddOrgMemberRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*AddOrgMemberRequest) ProtoMessage() {}
-
-func (x *AddOrgMemberRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[58]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use AddOrgMemberRequest.ProtoReflect.Descriptor instead.
+func (m *AddOrgMemberRequest) Reset() { *m = AddOrgMemberRequest{} }
+func (m *AddOrgMemberRequest) String() string { return proto.CompactTextString(m) }
+func (*AddOrgMemberRequest) ProtoMessage() {}
func (*AddOrgMemberRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{58}
+ return fileDescriptor_edc174f991dc0a25, []int{58}
}
-func (x *AddOrgMemberRequest) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *AddOrgMemberRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_AddOrgMemberRequest.Unmarshal(m, b)
+}
+func (m *AddOrgMemberRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_AddOrgMemberRequest.Marshal(b, m, deterministic)
+}
+func (m *AddOrgMemberRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_AddOrgMemberRequest.Merge(m, src)
+}
+func (m *AddOrgMemberRequest) XXX_Size() int {
+ return xxx_messageInfo_AddOrgMemberRequest.Size(m)
+}
+func (m *AddOrgMemberRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_AddOrgMemberRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_AddOrgMemberRequest proto.InternalMessageInfo
+
+func (m *AddOrgMemberRequest) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *AddOrgMemberRequest) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *AddOrgMemberRequest) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type ChangeOrgMemberRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ChangeOrgMemberRequest) Reset() {
- *x = ChangeOrgMemberRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[59]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ChangeOrgMemberRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ChangeOrgMemberRequest) ProtoMessage() {}
-
-func (x *ChangeOrgMemberRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[59]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ChangeOrgMemberRequest.ProtoReflect.Descriptor instead.
+func (m *ChangeOrgMemberRequest) Reset() { *m = ChangeOrgMemberRequest{} }
+func (m *ChangeOrgMemberRequest) String() string { return proto.CompactTextString(m) }
+func (*ChangeOrgMemberRequest) ProtoMessage() {}
func (*ChangeOrgMemberRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{59}
+ return fileDescriptor_edc174f991dc0a25, []int{59}
}
-func (x *ChangeOrgMemberRequest) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ChangeOrgMemberRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ChangeOrgMemberRequest.Unmarshal(m, b)
+}
+func (m *ChangeOrgMemberRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ChangeOrgMemberRequest.Marshal(b, m, deterministic)
+}
+func (m *ChangeOrgMemberRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ChangeOrgMemberRequest.Merge(m, src)
+}
+func (m *ChangeOrgMemberRequest) XXX_Size() int {
+ return xxx_messageInfo_ChangeOrgMemberRequest.Size(m)
+}
+func (m *ChangeOrgMemberRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ChangeOrgMemberRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ChangeOrgMemberRequest proto.InternalMessageInfo
+
+func (m *ChangeOrgMemberRequest) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ChangeOrgMemberRequest) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ChangeOrgMemberRequest) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type RemoveOrgMemberRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *RemoveOrgMemberRequest) Reset() {
- *x = RemoveOrgMemberRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[60]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *RemoveOrgMemberRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*RemoveOrgMemberRequest) ProtoMessage() {}
-
-func (x *RemoveOrgMemberRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[60]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use RemoveOrgMemberRequest.ProtoReflect.Descriptor instead.
+func (m *RemoveOrgMemberRequest) Reset() { *m = RemoveOrgMemberRequest{} }
+func (m *RemoveOrgMemberRequest) String() string { return proto.CompactTextString(m) }
+func (*RemoveOrgMemberRequest) ProtoMessage() {}
func (*RemoveOrgMemberRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{60}
+ return fileDescriptor_edc174f991dc0a25, []int{60}
}
-func (x *RemoveOrgMemberRequest) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *RemoveOrgMemberRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_RemoveOrgMemberRequest.Unmarshal(m, b)
+}
+func (m *RemoveOrgMemberRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_RemoveOrgMemberRequest.Marshal(b, m, deterministic)
+}
+func (m *RemoveOrgMemberRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_RemoveOrgMemberRequest.Merge(m, src)
+}
+func (m *RemoveOrgMemberRequest) XXX_Size() int {
+ return xxx_messageInfo_RemoveOrgMemberRequest.Size(m)
+}
+func (m *RemoveOrgMemberRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_RemoveOrgMemberRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_RemoveOrgMemberRequest proto.InternalMessageInfo
+
+func (m *RemoveOrgMemberRequest) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
type OrgMemberSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*OrgMemberView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*OrgMemberView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgMemberSearchResponse) Reset() {
- *x = OrgMemberSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[61]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgMemberSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgMemberSearchResponse) ProtoMessage() {}
-
-func (x *OrgMemberSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[61]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgMemberSearchResponse.ProtoReflect.Descriptor instead.
+func (m *OrgMemberSearchResponse) Reset() { *m = OrgMemberSearchResponse{} }
+func (m *OrgMemberSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*OrgMemberSearchResponse) ProtoMessage() {}
func (*OrgMemberSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{61}
+ return fileDescriptor_edc174f991dc0a25, []int{61}
}
-func (x *OrgMemberSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *OrgMemberSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgMemberSearchResponse.Unmarshal(m, b)
+}
+func (m *OrgMemberSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgMemberSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *OrgMemberSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgMemberSearchResponse.Merge(m, src)
+}
+func (m *OrgMemberSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_OrgMemberSearchResponse.Size(m)
+}
+func (m *OrgMemberSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgMemberSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgMemberSearchResponse proto.InternalMessageInfo
+
+func (m *OrgMemberSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *OrgMemberSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *OrgMemberSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *OrgMemberSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *OrgMemberSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *OrgMemberSearchResponse) GetResult() []*OrgMemberView {
- if x != nil {
- return x.Result
+func (m *OrgMemberSearchResponse) GetResult() []*OrgMemberView {
+ if m != nil {
+ return m.Result
}
return nil
}
type OrgMemberView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
- UserName string `protobuf:"bytes,6,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- Email string `protobuf:"bytes,7,opt,name=email,proto3" json:"email,omitempty"`
- FirstName string `protobuf:"bytes,8,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,9,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ UserName string `protobuf:"bytes,6,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ Email string `protobuf:"bytes,7,opt,name=email,proto3" json:"email,omitempty"`
+ FirstName string `protobuf:"bytes,8,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,9,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgMemberView) Reset() {
- *x = OrgMemberView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[62]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgMemberView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgMemberView) ProtoMessage() {}
-
-func (x *OrgMemberView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[62]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgMemberView.ProtoReflect.Descriptor instead.
+func (m *OrgMemberView) Reset() { *m = OrgMemberView{} }
+func (m *OrgMemberView) String() string { return proto.CompactTextString(m) }
+func (*OrgMemberView) ProtoMessage() {}
func (*OrgMemberView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{62}
+ return fileDescriptor_edc174f991dc0a25, []int{62}
}
-func (x *OrgMemberView) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *OrgMemberView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgMemberView.Unmarshal(m, b)
+}
+func (m *OrgMemberView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgMemberView.Marshal(b, m, deterministic)
+}
+func (m *OrgMemberView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgMemberView.Merge(m, src)
+}
+func (m *OrgMemberView) XXX_Size() int {
+ return xxx_messageInfo_OrgMemberView.Size(m)
+}
+func (m *OrgMemberView) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgMemberView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgMemberView proto.InternalMessageInfo
+
+func (m *OrgMemberView) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *OrgMemberView) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *OrgMemberView) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
-func (x *OrgMemberView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *OrgMemberView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *OrgMemberView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *OrgMemberView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *OrgMemberView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *OrgMemberView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *OrgMemberView) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *OrgMemberView) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *OrgMemberView) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *OrgMemberView) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *OrgMemberView) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *OrgMemberView) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *OrgMemberView) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *OrgMemberView) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
type OrgMemberSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*OrgMemberSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*OrgMemberSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgMemberSearchRequest) Reset() {
- *x = OrgMemberSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[63]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgMemberSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgMemberSearchRequest) ProtoMessage() {}
-
-func (x *OrgMemberSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[63]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgMemberSearchRequest.ProtoReflect.Descriptor instead.
+func (m *OrgMemberSearchRequest) Reset() { *m = OrgMemberSearchRequest{} }
+func (m *OrgMemberSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*OrgMemberSearchRequest) ProtoMessage() {}
func (*OrgMemberSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{63}
+ return fileDescriptor_edc174f991dc0a25, []int{63}
}
-func (x *OrgMemberSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *OrgMemberSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgMemberSearchRequest.Unmarshal(m, b)
+}
+func (m *OrgMemberSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgMemberSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *OrgMemberSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgMemberSearchRequest.Merge(m, src)
+}
+func (m *OrgMemberSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_OrgMemberSearchRequest.Size(m)
+}
+func (m *OrgMemberSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgMemberSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgMemberSearchRequest proto.InternalMessageInfo
+
+func (m *OrgMemberSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *OrgMemberSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *OrgMemberSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *OrgMemberSearchRequest) GetQueries() []*OrgMemberSearchQuery {
- if x != nil {
- return x.Queries
+func (m *OrgMemberSearchRequest) GetQueries() []*OrgMemberSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type OrgMemberSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key OrgMemberSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.OrgMemberSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key OrgMemberSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.OrgMemberSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgMemberSearchQuery) Reset() {
- *x = OrgMemberSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[64]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgMemberSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgMemberSearchQuery) ProtoMessage() {}
-
-func (x *OrgMemberSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[64]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OrgMemberSearchQuery.ProtoReflect.Descriptor instead.
+func (m *OrgMemberSearchQuery) Reset() { *m = OrgMemberSearchQuery{} }
+func (m *OrgMemberSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*OrgMemberSearchQuery) ProtoMessage() {}
func (*OrgMemberSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{64}
+ return fileDescriptor_edc174f991dc0a25, []int{64}
}
-func (x *OrgMemberSearchQuery) GetKey() OrgMemberSearchKey {
- if x != nil {
- return x.Key
+func (m *OrgMemberSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgMemberSearchQuery.Unmarshal(m, b)
+}
+func (m *OrgMemberSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgMemberSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *OrgMemberSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgMemberSearchQuery.Merge(m, src)
+}
+func (m *OrgMemberSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_OrgMemberSearchQuery.Size(m)
+}
+func (m *OrgMemberSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgMemberSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgMemberSearchQuery proto.InternalMessageInfo
+
+func (m *OrgMemberSearchQuery) GetKey() OrgMemberSearchKey {
+ if m != nil {
+ return m.Key
}
return OrgMemberSearchKey_ORGMEMBERSEARCHKEY_UNSPECIFIED
}
-func (x *OrgMemberSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *OrgMemberSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *OrgMemberSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *OrgMemberSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type ProjectCreateRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectCreateRequest) Reset() {
- *x = ProjectCreateRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[65]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectCreateRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectCreateRequest) ProtoMessage() {}
-
-func (x *ProjectCreateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[65]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectCreateRequest.ProtoReflect.Descriptor instead.
+func (m *ProjectCreateRequest) Reset() { *m = ProjectCreateRequest{} }
+func (m *ProjectCreateRequest) String() string { return proto.CompactTextString(m) }
+func (*ProjectCreateRequest) ProtoMessage() {}
func (*ProjectCreateRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{65}
+ return fileDescriptor_edc174f991dc0a25, []int{65}
}
-func (x *ProjectCreateRequest) GetName() string {
- if x != nil {
- return x.Name
+func (m *ProjectCreateRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectCreateRequest.Unmarshal(m, b)
+}
+func (m *ProjectCreateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectCreateRequest.Marshal(b, m, deterministic)
+}
+func (m *ProjectCreateRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectCreateRequest.Merge(m, src)
+}
+func (m *ProjectCreateRequest) XXX_Size() int {
+ return xxx_messageInfo_ProjectCreateRequest.Size(m)
+}
+func (m *ProjectCreateRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectCreateRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectCreateRequest proto.InternalMessageInfo
+
+func (m *ProjectCreateRequest) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
type ProjectUpdateRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectUpdateRequest) Reset() {
- *x = ProjectUpdateRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[66]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectUpdateRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectUpdateRequest) ProtoMessage() {}
-
-func (x *ProjectUpdateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[66]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectUpdateRequest.ProtoReflect.Descriptor instead.
+func (m *ProjectUpdateRequest) Reset() { *m = ProjectUpdateRequest{} }
+func (m *ProjectUpdateRequest) String() string { return proto.CompactTextString(m) }
+func (*ProjectUpdateRequest) ProtoMessage() {}
func (*ProjectUpdateRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{66}
+ return fileDescriptor_edc174f991dc0a25, []int{66}
}
-func (x *ProjectUpdateRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectUpdateRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectUpdateRequest.Unmarshal(m, b)
+}
+func (m *ProjectUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectUpdateRequest.Marshal(b, m, deterministic)
+}
+func (m *ProjectUpdateRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectUpdateRequest.Merge(m, src)
+}
+func (m *ProjectUpdateRequest) XXX_Size() int {
+ return xxx_messageInfo_ProjectUpdateRequest.Size(m)
+}
+func (m *ProjectUpdateRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectUpdateRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectUpdateRequest proto.InternalMessageInfo
+
+func (m *ProjectUpdateRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectUpdateRequest) GetName() string {
- if x != nil {
- return x.Name
+func (m *ProjectUpdateRequest) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
type ProjectSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*ProjectView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*ProjectView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectSearchResponse) Reset() {
- *x = ProjectSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[67]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectSearchResponse) ProtoMessage() {}
-
-func (x *ProjectSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[67]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectSearchResponse.ProtoReflect.Descriptor instead.
+func (m *ProjectSearchResponse) Reset() { *m = ProjectSearchResponse{} }
+func (m *ProjectSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*ProjectSearchResponse) ProtoMessage() {}
func (*ProjectSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{67}
+ return fileDescriptor_edc174f991dc0a25, []int{67}
}
-func (x *ProjectSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectSearchResponse.Unmarshal(m, b)
+}
+func (m *ProjectSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *ProjectSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectSearchResponse.Merge(m, src)
+}
+func (m *ProjectSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_ProjectSearchResponse.Size(m)
+}
+func (m *ProjectSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectSearchResponse proto.InternalMessageInfo
+
+func (m *ProjectSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *ProjectSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *ProjectSearchResponse) GetResult() []*ProjectView {
- if x != nil {
- return x.Result
+func (m *ProjectSearchResponse) GetResult() []*ProjectView {
+ if m != nil {
+ return m.Result
}
return nil
}
type ProjectView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
- State ProjectState `protobuf:"varint,3,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectState" json:"state,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ResourceOwner string `protobuf:"bytes,6,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
- Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
+ State ProjectState `protobuf:"varint,3,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectState" json:"state,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ResourceOwner string `protobuf:"bytes,6,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
+ Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectView) Reset() {
- *x = ProjectView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[68]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectView) ProtoMessage() {}
-
-func (x *ProjectView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[68]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectView.ProtoReflect.Descriptor instead.
+func (m *ProjectView) Reset() { *m = ProjectView{} }
+func (m *ProjectView) String() string { return proto.CompactTextString(m) }
+func (*ProjectView) ProtoMessage() {}
func (*ProjectView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{68}
+ return fileDescriptor_edc174f991dc0a25, []int{68}
}
-func (x *ProjectView) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectView.Unmarshal(m, b)
+}
+func (m *ProjectView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectView.Marshal(b, m, deterministic)
+}
+func (m *ProjectView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectView.Merge(m, src)
+}
+func (m *ProjectView) XXX_Size() int {
+ return xxx_messageInfo_ProjectView.Size(m)
+}
+func (m *ProjectView) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectView proto.InternalMessageInfo
+
+func (m *ProjectView) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectView) GetName() string {
- if x != nil {
- return x.Name
+func (m *ProjectView) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *ProjectView) GetState() ProjectState {
- if x != nil {
- return x.State
+func (m *ProjectView) GetState() ProjectState {
+ if m != nil {
+ return m.State
}
return ProjectState_PROJECTSTATE_UNSPECIFIED
}
-func (x *ProjectView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ProjectView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ProjectView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectView) GetResourceOwner() string {
- if x != nil {
- return x.ResourceOwner
+func (m *ProjectView) GetResourceOwner() string {
+ if m != nil {
+ return m.ResourceOwner
}
return ""
}
-func (x *ProjectView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type ProjectSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*ProjectSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*ProjectSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectSearchRequest) Reset() {
- *x = ProjectSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[69]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectSearchRequest) ProtoMessage() {}
-
-func (x *ProjectSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[69]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectSearchRequest.ProtoReflect.Descriptor instead.
+func (m *ProjectSearchRequest) Reset() { *m = ProjectSearchRequest{} }
+func (m *ProjectSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*ProjectSearchRequest) ProtoMessage() {}
func (*ProjectSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{69}
+ return fileDescriptor_edc174f991dc0a25, []int{69}
}
-func (x *ProjectSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectSearchRequest.Unmarshal(m, b)
+}
+func (m *ProjectSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *ProjectSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectSearchRequest.Merge(m, src)
+}
+func (m *ProjectSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_ProjectSearchRequest.Size(m)
+}
+func (m *ProjectSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectSearchRequest proto.InternalMessageInfo
+
+func (m *ProjectSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectSearchRequest) GetQueries() []*ProjectSearchQuery {
- if x != nil {
- return x.Queries
+func (m *ProjectSearchRequest) GetQueries() []*ProjectSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type ProjectSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key ProjectSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key ProjectSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectSearchQuery) Reset() {
- *x = ProjectSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[70]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectSearchQuery) ProtoMessage() {}
-
-func (x *ProjectSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[70]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectSearchQuery.ProtoReflect.Descriptor instead.
+func (m *ProjectSearchQuery) Reset() { *m = ProjectSearchQuery{} }
+func (m *ProjectSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*ProjectSearchQuery) ProtoMessage() {}
func (*ProjectSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{70}
+ return fileDescriptor_edc174f991dc0a25, []int{70}
}
-func (x *ProjectSearchQuery) GetKey() ProjectSearchKey {
- if x != nil {
- return x.Key
+func (m *ProjectSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectSearchQuery.Unmarshal(m, b)
+}
+func (m *ProjectSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *ProjectSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectSearchQuery.Merge(m, src)
+}
+func (m *ProjectSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_ProjectSearchQuery.Size(m)
+}
+func (m *ProjectSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectSearchQuery proto.InternalMessageInfo
+
+func (m *ProjectSearchQuery) GetKey() ProjectSearchKey {
+ if m != nil {
+ return m.Key
}
return ProjectSearchKey_PROJECTSEARCHKEY_UNSPECIFIED
}
-func (x *ProjectSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *ProjectSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *ProjectSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *ProjectSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type Projects struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Projects []*Project `protobuf:"bytes,1,rep,name=projects,proto3" json:"projects,omitempty"`
+ Projects []*Project `protobuf:"bytes,1,rep,name=projects,proto3" json:"projects,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Projects) Reset() {
- *x = Projects{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[71]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Projects) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Projects) ProtoMessage() {}
-
-func (x *Projects) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[71]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use Projects.ProtoReflect.Descriptor instead.
+func (m *Projects) Reset() { *m = Projects{} }
+func (m *Projects) String() string { return proto.CompactTextString(m) }
+func (*Projects) ProtoMessage() {}
func (*Projects) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{71}
+ return fileDescriptor_edc174f991dc0a25, []int{71}
}
-func (x *Projects) GetProjects() []*Project {
- if x != nil {
- return x.Projects
+func (m *Projects) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Projects.Unmarshal(m, b)
+}
+func (m *Projects) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Projects.Marshal(b, m, deterministic)
+}
+func (m *Projects) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Projects.Merge(m, src)
+}
+func (m *Projects) XXX_Size() int {
+ return xxx_messageInfo_Projects.Size(m)
+}
+func (m *Projects) XXX_DiscardUnknown() {
+ xxx_messageInfo_Projects.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Projects proto.InternalMessageInfo
+
+func (m *Projects) GetProjects() []*Project {
+ if m != nil {
+ return m.Projects
}
return nil
}
type Project struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
- State ProjectState `protobuf:"varint,3,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectState" json:"state,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- Sequence uint64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
+ State ProjectState `protobuf:"varint,3,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectState" json:"state,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Project) Reset() {
- *x = Project{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[72]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Project) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Project) ProtoMessage() {}
-
-func (x *Project) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[72]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use Project.ProtoReflect.Descriptor instead.
+func (m *Project) Reset() { *m = Project{} }
+func (m *Project) String() string { return proto.CompactTextString(m) }
+func (*Project) ProtoMessage() {}
func (*Project) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{72}
+ return fileDescriptor_edc174f991dc0a25, []int{72}
}
-func (x *Project) GetId() string {
- if x != nil {
- return x.Id
+func (m *Project) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Project.Unmarshal(m, b)
+}
+func (m *Project) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Project.Marshal(b, m, deterministic)
+}
+func (m *Project) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Project.Merge(m, src)
+}
+func (m *Project) XXX_Size() int {
+ return xxx_messageInfo_Project.Size(m)
+}
+func (m *Project) XXX_DiscardUnknown() {
+ xxx_messageInfo_Project.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Project proto.InternalMessageInfo
+
+func (m *Project) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *Project) GetName() string {
- if x != nil {
- return x.Name
+func (m *Project) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *Project) GetState() ProjectState {
- if x != nil {
- return x.State
+func (m *Project) GetState() ProjectState {
+ if m != nil {
+ return m.State
}
return ProjectState_PROJECTSTATE_UNSPECIFIED
}
-func (x *Project) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *Project) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *Project) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *Project) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *Project) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *Project) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type ProjectMemberRoles struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Roles []string `protobuf:"bytes,1,rep,name=roles,proto3" json:"roles,omitempty"`
+ Roles []string `protobuf:"bytes,1,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMemberRoles) Reset() {
- *x = ProjectMemberRoles{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[73]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMemberRoles) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMemberRoles) ProtoMessage() {}
-
-func (x *ProjectMemberRoles) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[73]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectMemberRoles.ProtoReflect.Descriptor instead.
+func (m *ProjectMemberRoles) Reset() { *m = ProjectMemberRoles{} }
+func (m *ProjectMemberRoles) String() string { return proto.CompactTextString(m) }
+func (*ProjectMemberRoles) ProtoMessage() {}
func (*ProjectMemberRoles) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{73}
+ return fileDescriptor_edc174f991dc0a25, []int{73}
}
-func (x *ProjectMemberRoles) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectMemberRoles) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMemberRoles.Unmarshal(m, b)
+}
+func (m *ProjectMemberRoles) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMemberRoles.Marshal(b, m, deterministic)
+}
+func (m *ProjectMemberRoles) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMemberRoles.Merge(m, src)
+}
+func (m *ProjectMemberRoles) XXX_Size() int {
+ return xxx_messageInfo_ProjectMemberRoles.Size(m)
+}
+func (m *ProjectMemberRoles) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMemberRoles.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMemberRoles proto.InternalMessageInfo
+
+func (m *ProjectMemberRoles) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type ProjectMember struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMember) Reset() {
- *x = ProjectMember{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[74]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMember) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMember) ProtoMessage() {}
-
-func (x *ProjectMember) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[74]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectMember.ProtoReflect.Descriptor instead.
+func (m *ProjectMember) Reset() { *m = ProjectMember{} }
+func (m *ProjectMember) String() string { return proto.CompactTextString(m) }
+func (*ProjectMember) ProtoMessage() {}
func (*ProjectMember) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{74}
+ return fileDescriptor_edc174f991dc0a25, []int{74}
}
-func (x *ProjectMember) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectMember) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMember.Unmarshal(m, b)
+}
+func (m *ProjectMember) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMember.Marshal(b, m, deterministic)
+}
+func (m *ProjectMember) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMember.Merge(m, src)
+}
+func (m *ProjectMember) XXX_Size() int {
+ return xxx_messageInfo_ProjectMember.Size(m)
+}
+func (m *ProjectMember) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMember.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMember proto.InternalMessageInfo
+
+func (m *ProjectMember) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectMember) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectMember) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
-func (x *ProjectMember) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ProjectMember) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ProjectMember) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectMember) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectMember) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectMember) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type ProjectMemberAdd struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,3,rep,name=roles,proto3" json:"roles,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,3,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMemberAdd) Reset() {
- *x = ProjectMemberAdd{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[75]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMemberAdd) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMemberAdd) ProtoMessage() {}
-
-func (x *ProjectMemberAdd) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[75]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectMemberAdd.ProtoReflect.Descriptor instead.
+func (m *ProjectMemberAdd) Reset() { *m = ProjectMemberAdd{} }
+func (m *ProjectMemberAdd) String() string { return proto.CompactTextString(m) }
+func (*ProjectMemberAdd) ProtoMessage() {}
func (*ProjectMemberAdd) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{75}
+ return fileDescriptor_edc174f991dc0a25, []int{75}
}
-func (x *ProjectMemberAdd) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectMemberAdd) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMemberAdd.Unmarshal(m, b)
+}
+func (m *ProjectMemberAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMemberAdd.Marshal(b, m, deterministic)
+}
+func (m *ProjectMemberAdd) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMemberAdd.Merge(m, src)
+}
+func (m *ProjectMemberAdd) XXX_Size() int {
+ return xxx_messageInfo_ProjectMemberAdd.Size(m)
+}
+func (m *ProjectMemberAdd) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMemberAdd.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMemberAdd proto.InternalMessageInfo
+
+func (m *ProjectMemberAdd) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectMemberAdd) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectMemberAdd) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectMemberAdd) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectMemberAdd) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type ProjectMemberChange struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,3,rep,name=roles,proto3" json:"roles,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,3,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMemberChange) Reset() {
- *x = ProjectMemberChange{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[76]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMemberChange) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMemberChange) ProtoMessage() {}
-
-func (x *ProjectMemberChange) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[76]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectMemberChange.ProtoReflect.Descriptor instead.
+func (m *ProjectMemberChange) Reset() { *m = ProjectMemberChange{} }
+func (m *ProjectMemberChange) String() string { return proto.CompactTextString(m) }
+func (*ProjectMemberChange) ProtoMessage() {}
func (*ProjectMemberChange) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{76}
+ return fileDescriptor_edc174f991dc0a25, []int{76}
}
-func (x *ProjectMemberChange) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectMemberChange) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMemberChange.Unmarshal(m, b)
+}
+func (m *ProjectMemberChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMemberChange.Marshal(b, m, deterministic)
+}
+func (m *ProjectMemberChange) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMemberChange.Merge(m, src)
+}
+func (m *ProjectMemberChange) XXX_Size() int {
+ return xxx_messageInfo_ProjectMemberChange.Size(m)
+}
+func (m *ProjectMemberChange) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMemberChange.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMemberChange proto.InternalMessageInfo
+
+func (m *ProjectMemberChange) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectMemberChange) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectMemberChange) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectMemberChange) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectMemberChange) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type ProjectMemberRemove struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMemberRemove) Reset() {
- *x = ProjectMemberRemove{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[77]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMemberRemove) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMemberRemove) ProtoMessage() {}
-
-func (x *ProjectMemberRemove) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[77]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectMemberRemove.ProtoReflect.Descriptor instead.
+func (m *ProjectMemberRemove) Reset() { *m = ProjectMemberRemove{} }
+func (m *ProjectMemberRemove) String() string { return proto.CompactTextString(m) }
+func (*ProjectMemberRemove) ProtoMessage() {}
func (*ProjectMemberRemove) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{77}
+ return fileDescriptor_edc174f991dc0a25, []int{77}
}
-func (x *ProjectMemberRemove) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectMemberRemove) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMemberRemove.Unmarshal(m, b)
+}
+func (m *ProjectMemberRemove) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMemberRemove.Marshal(b, m, deterministic)
+}
+func (m *ProjectMemberRemove) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMemberRemove.Merge(m, src)
+}
+func (m *ProjectMemberRemove) XXX_Size() int {
+ return xxx_messageInfo_ProjectMemberRemove.Size(m)
+}
+func (m *ProjectMemberRemove) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMemberRemove.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMemberRemove proto.InternalMessageInfo
+
+func (m *ProjectMemberRemove) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectMemberRemove) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectMemberRemove) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
type ProjectRoleAdd struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
- DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- Group string `protobuf:"bytes,4,opt,name=group,proto3" json:"group,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
+ DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ Group string `protobuf:"bytes,4,opt,name=group,proto3" json:"group,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRoleAdd) Reset() {
- *x = ProjectRoleAdd{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[78]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRoleAdd) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRoleAdd) ProtoMessage() {}
-
-func (x *ProjectRoleAdd) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[78]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectRoleAdd.ProtoReflect.Descriptor instead.
+func (m *ProjectRoleAdd) Reset() { *m = ProjectRoleAdd{} }
+func (m *ProjectRoleAdd) String() string { return proto.CompactTextString(m) }
+func (*ProjectRoleAdd) ProtoMessage() {}
func (*ProjectRoleAdd) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{78}
+ return fileDescriptor_edc174f991dc0a25, []int{78}
}
-func (x *ProjectRoleAdd) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectRoleAdd) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRoleAdd.Unmarshal(m, b)
+}
+func (m *ProjectRoleAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRoleAdd.Marshal(b, m, deterministic)
+}
+func (m *ProjectRoleAdd) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRoleAdd.Merge(m, src)
+}
+func (m *ProjectRoleAdd) XXX_Size() int {
+ return xxx_messageInfo_ProjectRoleAdd.Size(m)
+}
+func (m *ProjectRoleAdd) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRoleAdd.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRoleAdd proto.InternalMessageInfo
+
+func (m *ProjectRoleAdd) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectRoleAdd) GetKey() string {
- if x != nil {
- return x.Key
+func (m *ProjectRoleAdd) GetKey() string {
+ if m != nil {
+ return m.Key
}
return ""
}
-func (x *ProjectRoleAdd) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *ProjectRoleAdd) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *ProjectRoleAdd) GetGroup() string {
- if x != nil {
- return x.Group
+func (m *ProjectRoleAdd) GetGroup() string {
+ if m != nil {
+ return m.Group
}
return ""
}
type ProjectRoleChange struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
- DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- Group string `protobuf:"bytes,4,opt,name=group,proto3" json:"group,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
+ DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ Group string `protobuf:"bytes,4,opt,name=group,proto3" json:"group,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRoleChange) Reset() {
- *x = ProjectRoleChange{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[79]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRoleChange) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRoleChange) ProtoMessage() {}
-
-func (x *ProjectRoleChange) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[79]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectRoleChange.ProtoReflect.Descriptor instead.
+func (m *ProjectRoleChange) Reset() { *m = ProjectRoleChange{} }
+func (m *ProjectRoleChange) String() string { return proto.CompactTextString(m) }
+func (*ProjectRoleChange) ProtoMessage() {}
func (*ProjectRoleChange) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{79}
+ return fileDescriptor_edc174f991dc0a25, []int{79}
}
-func (x *ProjectRoleChange) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectRoleChange) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRoleChange.Unmarshal(m, b)
+}
+func (m *ProjectRoleChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRoleChange.Marshal(b, m, deterministic)
+}
+func (m *ProjectRoleChange) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRoleChange.Merge(m, src)
+}
+func (m *ProjectRoleChange) XXX_Size() int {
+ return xxx_messageInfo_ProjectRoleChange.Size(m)
+}
+func (m *ProjectRoleChange) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRoleChange.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRoleChange proto.InternalMessageInfo
+
+func (m *ProjectRoleChange) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectRoleChange) GetKey() string {
- if x != nil {
- return x.Key
+func (m *ProjectRoleChange) GetKey() string {
+ if m != nil {
+ return m.Key
}
return ""
}
-func (x *ProjectRoleChange) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *ProjectRoleChange) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *ProjectRoleChange) GetGroup() string {
- if x != nil {
- return x.Group
+func (m *ProjectRoleChange) GetGroup() string {
+ if m != nil {
+ return m.Group
}
return ""
}
type ProjectRole struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
- DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- Group string `protobuf:"bytes,6,opt,name=group,proto3" json:"group,omitempty"`
- Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
+ DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Group string `protobuf:"bytes,6,opt,name=group,proto3" json:"group,omitempty"`
+ Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRole) Reset() {
- *x = ProjectRole{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[80]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRole) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRole) ProtoMessage() {}
-
-func (x *ProjectRole) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[80]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectRole.ProtoReflect.Descriptor instead.
+func (m *ProjectRole) Reset() { *m = ProjectRole{} }
+func (m *ProjectRole) String() string { return proto.CompactTextString(m) }
+func (*ProjectRole) ProtoMessage() {}
func (*ProjectRole) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{80}
+ return fileDescriptor_edc174f991dc0a25, []int{80}
}
-func (x *ProjectRole) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectRole) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRole.Unmarshal(m, b)
+}
+func (m *ProjectRole) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRole.Marshal(b, m, deterministic)
+}
+func (m *ProjectRole) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRole.Merge(m, src)
+}
+func (m *ProjectRole) XXX_Size() int {
+ return xxx_messageInfo_ProjectRole.Size(m)
+}
+func (m *ProjectRole) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRole.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRole proto.InternalMessageInfo
+
+func (m *ProjectRole) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectRole) GetKey() string {
- if x != nil {
- return x.Key
+func (m *ProjectRole) GetKey() string {
+ if m != nil {
+ return m.Key
}
return ""
}
-func (x *ProjectRole) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *ProjectRole) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *ProjectRole) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectRole) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectRole) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ProjectRole) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ProjectRole) GetGroup() string {
- if x != nil {
- return x.Group
+func (m *ProjectRole) GetGroup() string {
+ if m != nil {
+ return m.Group
}
return ""
}
-func (x *ProjectRole) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectRole) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type ProjectRoleView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
- DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- Group string `protobuf:"bytes,6,opt,name=group,proto3" json:"group,omitempty"`
- Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
+ DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ Group string `protobuf:"bytes,6,opt,name=group,proto3" json:"group,omitempty"`
+ Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRoleView) Reset() {
- *x = ProjectRoleView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[81]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRoleView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRoleView) ProtoMessage() {}
-
-func (x *ProjectRoleView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[81]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectRoleView.ProtoReflect.Descriptor instead.
+func (m *ProjectRoleView) Reset() { *m = ProjectRoleView{} }
+func (m *ProjectRoleView) String() string { return proto.CompactTextString(m) }
+func (*ProjectRoleView) ProtoMessage() {}
func (*ProjectRoleView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{81}
+ return fileDescriptor_edc174f991dc0a25, []int{81}
}
-func (x *ProjectRoleView) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectRoleView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRoleView.Unmarshal(m, b)
+}
+func (m *ProjectRoleView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRoleView.Marshal(b, m, deterministic)
+}
+func (m *ProjectRoleView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRoleView.Merge(m, src)
+}
+func (m *ProjectRoleView) XXX_Size() int {
+ return xxx_messageInfo_ProjectRoleView.Size(m)
+}
+func (m *ProjectRoleView) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRoleView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRoleView proto.InternalMessageInfo
+
+func (m *ProjectRoleView) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectRoleView) GetKey() string {
- if x != nil {
- return x.Key
+func (m *ProjectRoleView) GetKey() string {
+ if m != nil {
+ return m.Key
}
return ""
}
-func (x *ProjectRoleView) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *ProjectRoleView) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *ProjectRoleView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectRoleView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectRoleView) GetGroup() string {
- if x != nil {
- return x.Group
+func (m *ProjectRoleView) GetGroup() string {
+ if m != nil {
+ return m.Group
}
return ""
}
-func (x *ProjectRoleView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectRoleView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type ProjectRoleRemove struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRoleRemove) Reset() {
- *x = ProjectRoleRemove{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[82]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRoleRemove) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRoleRemove) ProtoMessage() {}
-
-func (x *ProjectRoleRemove) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[82]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectRoleRemove.ProtoReflect.Descriptor instead.
+func (m *ProjectRoleRemove) Reset() { *m = ProjectRoleRemove{} }
+func (m *ProjectRoleRemove) String() string { return proto.CompactTextString(m) }
+func (*ProjectRoleRemove) ProtoMessage() {}
func (*ProjectRoleRemove) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{82}
+ return fileDescriptor_edc174f991dc0a25, []int{82}
}
-func (x *ProjectRoleRemove) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectRoleRemove) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRoleRemove.Unmarshal(m, b)
+}
+func (m *ProjectRoleRemove) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRoleRemove.Marshal(b, m, deterministic)
+}
+func (m *ProjectRoleRemove) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRoleRemove.Merge(m, src)
+}
+func (m *ProjectRoleRemove) XXX_Size() int {
+ return xxx_messageInfo_ProjectRoleRemove.Size(m)
+}
+func (m *ProjectRoleRemove) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRoleRemove.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRoleRemove proto.InternalMessageInfo
+
+func (m *ProjectRoleRemove) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectRoleRemove) GetKey() string {
- if x != nil {
- return x.Key
+func (m *ProjectRoleRemove) GetKey() string {
+ if m != nil {
+ return m.Key
}
return ""
}
type ProjectRoleSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*ProjectRoleView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*ProjectRoleView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRoleSearchResponse) Reset() {
- *x = ProjectRoleSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[83]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRoleSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRoleSearchResponse) ProtoMessage() {}
-
-func (x *ProjectRoleSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[83]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectRoleSearchResponse.ProtoReflect.Descriptor instead.
+func (m *ProjectRoleSearchResponse) Reset() { *m = ProjectRoleSearchResponse{} }
+func (m *ProjectRoleSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*ProjectRoleSearchResponse) ProtoMessage() {}
func (*ProjectRoleSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{83}
+ return fileDescriptor_edc174f991dc0a25, []int{83}
}
-func (x *ProjectRoleSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectRoleSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRoleSearchResponse.Unmarshal(m, b)
+}
+func (m *ProjectRoleSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRoleSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *ProjectRoleSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRoleSearchResponse.Merge(m, src)
+}
+func (m *ProjectRoleSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_ProjectRoleSearchResponse.Size(m)
+}
+func (m *ProjectRoleSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRoleSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRoleSearchResponse proto.InternalMessageInfo
+
+func (m *ProjectRoleSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectRoleSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectRoleSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectRoleSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *ProjectRoleSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *ProjectRoleSearchResponse) GetResult() []*ProjectRoleView {
- if x != nil {
- return x.Result
+func (m *ProjectRoleSearchResponse) GetResult() []*ProjectRoleView {
+ if m != nil {
+ return m.Result
}
return nil
}
type ProjectRoleSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*ProjectRoleSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*ProjectRoleSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRoleSearchRequest) Reset() {
- *x = ProjectRoleSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[84]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRoleSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRoleSearchRequest) ProtoMessage() {}
-
-func (x *ProjectRoleSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[84]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectRoleSearchRequest.ProtoReflect.Descriptor instead.
+func (m *ProjectRoleSearchRequest) Reset() { *m = ProjectRoleSearchRequest{} }
+func (m *ProjectRoleSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*ProjectRoleSearchRequest) ProtoMessage() {}
func (*ProjectRoleSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{84}
+ return fileDescriptor_edc174f991dc0a25, []int{84}
}
-func (x *ProjectRoleSearchRequest) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectRoleSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRoleSearchRequest.Unmarshal(m, b)
+}
+func (m *ProjectRoleSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRoleSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *ProjectRoleSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRoleSearchRequest.Merge(m, src)
+}
+func (m *ProjectRoleSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_ProjectRoleSearchRequest.Size(m)
+}
+func (m *ProjectRoleSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRoleSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRoleSearchRequest proto.InternalMessageInfo
+
+func (m *ProjectRoleSearchRequest) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectRoleSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectRoleSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectRoleSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectRoleSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectRoleSearchRequest) GetQueries() []*ProjectRoleSearchQuery {
- if x != nil {
- return x.Queries
+func (m *ProjectRoleSearchRequest) GetQueries() []*ProjectRoleSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type ProjectRoleSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key ProjectRoleSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectRoleSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key ProjectRoleSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectRoleSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRoleSearchQuery) Reset() {
- *x = ProjectRoleSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[85]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRoleSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRoleSearchQuery) ProtoMessage() {}
-
-func (x *ProjectRoleSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[85]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectRoleSearchQuery.ProtoReflect.Descriptor instead.
+func (m *ProjectRoleSearchQuery) Reset() { *m = ProjectRoleSearchQuery{} }
+func (m *ProjectRoleSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*ProjectRoleSearchQuery) ProtoMessage() {}
func (*ProjectRoleSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{85}
+ return fileDescriptor_edc174f991dc0a25, []int{85}
}
-func (x *ProjectRoleSearchQuery) GetKey() ProjectRoleSearchKey {
- if x != nil {
- return x.Key
+func (m *ProjectRoleSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRoleSearchQuery.Unmarshal(m, b)
+}
+func (m *ProjectRoleSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRoleSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *ProjectRoleSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRoleSearchQuery.Merge(m, src)
+}
+func (m *ProjectRoleSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_ProjectRoleSearchQuery.Size(m)
+}
+func (m *ProjectRoleSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRoleSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRoleSearchQuery proto.InternalMessageInfo
+
+func (m *ProjectRoleSearchQuery) GetKey() ProjectRoleSearchKey {
+ if m != nil {
+ return m.Key
}
return ProjectRoleSearchKey_PROJECTROLESEARCHKEY_UNSPECIFIED
}
-func (x *ProjectRoleSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *ProjectRoleSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *ProjectRoleSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *ProjectRoleSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type ProjectMemberView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
- FirstName string `protobuf:"bytes,4,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,5,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- Roles []string `protobuf:"bytes,6,rep,name=roles,proto3" json:"roles,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- Sequence uint64 `protobuf:"varint,10,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
+ FirstName string `protobuf:"bytes,4,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,5,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ Roles []string `protobuf:"bytes,6,rep,name=roles,proto3" json:"roles,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,10,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMemberView) Reset() {
- *x = ProjectMemberView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[86]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMemberView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMemberView) ProtoMessage() {}
-
-func (x *ProjectMemberView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[86]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectMemberView.ProtoReflect.Descriptor instead.
+func (m *ProjectMemberView) Reset() { *m = ProjectMemberView{} }
+func (m *ProjectMemberView) String() string { return proto.CompactTextString(m) }
+func (*ProjectMemberView) ProtoMessage() {}
func (*ProjectMemberView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{86}
+ return fileDescriptor_edc174f991dc0a25, []int{86}
}
-func (x *ProjectMemberView) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectMemberView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMemberView.Unmarshal(m, b)
+}
+func (m *ProjectMemberView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMemberView.Marshal(b, m, deterministic)
+}
+func (m *ProjectMemberView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMemberView.Merge(m, src)
+}
+func (m *ProjectMemberView) XXX_Size() int {
+ return xxx_messageInfo_ProjectMemberView.Size(m)
+}
+func (m *ProjectMemberView) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMemberView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMemberView proto.InternalMessageInfo
+
+func (m *ProjectMemberView) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectMemberView) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *ProjectMemberView) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *ProjectMemberView) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *ProjectMemberView) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *ProjectMemberView) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *ProjectMemberView) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *ProjectMemberView) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *ProjectMemberView) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *ProjectMemberView) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectMemberView) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
-func (x *ProjectMemberView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ProjectMemberView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ProjectMemberView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectMemberView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectMemberView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectMemberView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type ProjectMemberSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*ProjectMemberView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*ProjectMemberView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMemberSearchResponse) Reset() {
- *x = ProjectMemberSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[87]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMemberSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMemberSearchResponse) ProtoMessage() {}
-
-func (x *ProjectMemberSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[87]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectMemberSearchResponse.ProtoReflect.Descriptor instead.
+func (m *ProjectMemberSearchResponse) Reset() { *m = ProjectMemberSearchResponse{} }
+func (m *ProjectMemberSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*ProjectMemberSearchResponse) ProtoMessage() {}
func (*ProjectMemberSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{87}
+ return fileDescriptor_edc174f991dc0a25, []int{87}
}
-func (x *ProjectMemberSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectMemberSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMemberSearchResponse.Unmarshal(m, b)
+}
+func (m *ProjectMemberSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMemberSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *ProjectMemberSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMemberSearchResponse.Merge(m, src)
+}
+func (m *ProjectMemberSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_ProjectMemberSearchResponse.Size(m)
+}
+func (m *ProjectMemberSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMemberSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMemberSearchResponse proto.InternalMessageInfo
+
+func (m *ProjectMemberSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectMemberSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectMemberSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectMemberSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *ProjectMemberSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *ProjectMemberSearchResponse) GetResult() []*ProjectMemberView {
- if x != nil {
- return x.Result
+func (m *ProjectMemberSearchResponse) GetResult() []*ProjectMemberView {
+ if m != nil {
+ return m.Result
}
return nil
}
type ProjectMemberSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*ProjectMemberSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*ProjectMemberSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMemberSearchRequest) Reset() {
- *x = ProjectMemberSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[88]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMemberSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMemberSearchRequest) ProtoMessage() {}
-
-func (x *ProjectMemberSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[88]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectMemberSearchRequest.ProtoReflect.Descriptor instead.
+func (m *ProjectMemberSearchRequest) Reset() { *m = ProjectMemberSearchRequest{} }
+func (m *ProjectMemberSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*ProjectMemberSearchRequest) ProtoMessage() {}
func (*ProjectMemberSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{88}
+ return fileDescriptor_edc174f991dc0a25, []int{88}
}
-func (x *ProjectMemberSearchRequest) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectMemberSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMemberSearchRequest.Unmarshal(m, b)
+}
+func (m *ProjectMemberSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMemberSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *ProjectMemberSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMemberSearchRequest.Merge(m, src)
+}
+func (m *ProjectMemberSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_ProjectMemberSearchRequest.Size(m)
+}
+func (m *ProjectMemberSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMemberSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMemberSearchRequest proto.InternalMessageInfo
+
+func (m *ProjectMemberSearchRequest) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectMemberSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectMemberSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectMemberSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectMemberSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectMemberSearchRequest) GetQueries() []*ProjectMemberSearchQuery {
- if x != nil {
- return x.Queries
+func (m *ProjectMemberSearchRequest) GetQueries() []*ProjectMemberSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type ProjectMemberSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key ProjectMemberSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectMemberSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key ProjectMemberSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectMemberSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMemberSearchQuery) Reset() {
- *x = ProjectMemberSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[89]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMemberSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMemberSearchQuery) ProtoMessage() {}
-
-func (x *ProjectMemberSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[89]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectMemberSearchQuery.ProtoReflect.Descriptor instead.
+func (m *ProjectMemberSearchQuery) Reset() { *m = ProjectMemberSearchQuery{} }
+func (m *ProjectMemberSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*ProjectMemberSearchQuery) ProtoMessage() {}
func (*ProjectMemberSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{89}
+ return fileDescriptor_edc174f991dc0a25, []int{89}
}
-func (x *ProjectMemberSearchQuery) GetKey() ProjectMemberSearchKey {
- if x != nil {
- return x.Key
+func (m *ProjectMemberSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMemberSearchQuery.Unmarshal(m, b)
+}
+func (m *ProjectMemberSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMemberSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *ProjectMemberSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMemberSearchQuery.Merge(m, src)
+}
+func (m *ProjectMemberSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_ProjectMemberSearchQuery.Size(m)
+}
+func (m *ProjectMemberSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMemberSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMemberSearchQuery proto.InternalMessageInfo
+
+func (m *ProjectMemberSearchQuery) GetKey() ProjectMemberSearchKey {
+ if m != nil {
+ return m.Key
}
return ProjectMemberSearchKey_PROJECTMEMBERSEARCHKEY_UNSPECIFIED
}
-func (x *ProjectMemberSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *ProjectMemberSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *ProjectMemberSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *ProjectMemberSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type Application struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
State AppState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.AppState" json:"state,omitempty"`
CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
- // Types that are assignable to AppConfig:
+ // Types that are valid to be assigned to AppConfig:
// *Application_OidcConfig
- AppConfig isApplication_AppConfig `protobuf_oneof:"app_config"`
- Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ AppConfig isApplication_AppConfig `protobuf_oneof:"app_config"`
+ Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Application) Reset() {
- *x = Application{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[90]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Application) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Application) ProtoMessage() {}
-
-func (x *Application) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[90]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use Application.ProtoReflect.Descriptor instead.
+func (m *Application) Reset() { *m = Application{} }
+func (m *Application) String() string { return proto.CompactTextString(m) }
+func (*Application) ProtoMessage() {}
func (*Application) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{90}
+ return fileDescriptor_edc174f991dc0a25, []int{90}
}
-func (x *Application) GetId() string {
- if x != nil {
- return x.Id
+func (m *Application) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Application.Unmarshal(m, b)
+}
+func (m *Application) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Application.Marshal(b, m, deterministic)
+}
+func (m *Application) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Application.Merge(m, src)
+}
+func (m *Application) XXX_Size() int {
+ return xxx_messageInfo_Application.Size(m)
+}
+func (m *Application) XXX_DiscardUnknown() {
+ xxx_messageInfo_Application.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Application proto.InternalMessageInfo
+
+func (m *Application) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *Application) GetState() AppState {
- if x != nil {
- return x.State
+func (m *Application) GetState() AppState {
+ if m != nil {
+ return m.State
}
return AppState_APPSTATE_UNSPECIFIED
}
-func (x *Application) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *Application) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *Application) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *Application) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *Application) GetName() string {
- if x != nil {
- return x.Name
+func (m *Application) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (m *Application) GetAppConfig() isApplication_AppConfig {
- if m != nil {
- return m.AppConfig
- }
- return nil
-}
-
-func (x *Application) GetOidcConfig() *OIDCConfig {
- if x, ok := x.GetAppConfig().(*Application_OidcConfig); ok {
- return x.OidcConfig
- }
- return nil
-}
-
-func (x *Application) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
- }
- return 0
-}
-
type isApplication_AppConfig interface {
isApplication_AppConfig()
}
@@ -8351,74 +7014,90 @@ type Application_OidcConfig struct {
func (*Application_OidcConfig) isApplication_AppConfig() {}
+func (m *Application) GetAppConfig() isApplication_AppConfig {
+ if m != nil {
+ return m.AppConfig
+ }
+ return nil
+}
+
+func (m *Application) GetOidcConfig() *OIDCConfig {
+ if x, ok := m.GetAppConfig().(*Application_OidcConfig); ok {
+ return x.OidcConfig
+ }
+ return nil
+}
+
+func (m *Application) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
+ }
+ return 0
+}
+
+// XXX_OneofWrappers is for the internal use of the proto package.
+func (*Application) XXX_OneofWrappers() []interface{} {
+ return []interface{}{
+ (*Application_OidcConfig)(nil),
+ }
+}
+
type ApplicationUpdate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
- Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
+ Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ApplicationUpdate) Reset() {
- *x = ApplicationUpdate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[91]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ApplicationUpdate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ApplicationUpdate) ProtoMessage() {}
-
-func (x *ApplicationUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[91]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ApplicationUpdate.ProtoReflect.Descriptor instead.
+func (m *ApplicationUpdate) Reset() { *m = ApplicationUpdate{} }
+func (m *ApplicationUpdate) String() string { return proto.CompactTextString(m) }
+func (*ApplicationUpdate) ProtoMessage() {}
func (*ApplicationUpdate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{91}
+ return fileDescriptor_edc174f991dc0a25, []int{91}
}
-func (x *ApplicationUpdate) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ApplicationUpdate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ApplicationUpdate.Unmarshal(m, b)
+}
+func (m *ApplicationUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ApplicationUpdate.Marshal(b, m, deterministic)
+}
+func (m *ApplicationUpdate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ApplicationUpdate.Merge(m, src)
+}
+func (m *ApplicationUpdate) XXX_Size() int {
+ return xxx_messageInfo_ApplicationUpdate.Size(m)
+}
+func (m *ApplicationUpdate) XXX_DiscardUnknown() {
+ xxx_messageInfo_ApplicationUpdate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ApplicationUpdate proto.InternalMessageInfo
+
+func (m *ApplicationUpdate) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ApplicationUpdate) GetId() string {
- if x != nil {
- return x.Id
+func (m *ApplicationUpdate) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ApplicationUpdate) GetName() string {
- if x != nil {
- return x.Name
+func (m *ApplicationUpdate) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
type OIDCConfig struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
RedirectUris []string `protobuf:"bytes,1,rep,name=redirect_uris,json=redirectUris,proto3" json:"redirect_uris,omitempty"`
ResponseTypes []OIDCResponseType `protobuf:"varint,2,rep,packed,name=response_types,json=responseTypes,proto3,enum=caos.zitadel.management.api.v1.OIDCResponseType" json:"response_types,omitempty"`
GrantTypes []OIDCGrantType `protobuf:"varint,3,rep,packed,name=grant_types,json=grantTypes,proto3,enum=caos.zitadel.management.api.v1.OIDCGrantType" json:"grant_types,omitempty"`
@@ -8427,101 +7106,93 @@ type OIDCConfig struct {
ClientSecret string `protobuf:"bytes,6,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
AuthMethodType OIDCAuthMethodType `protobuf:"varint,7,opt,name=auth_method_type,json=authMethodType,proto3,enum=caos.zitadel.management.api.v1.OIDCAuthMethodType" json:"auth_method_type,omitempty"`
PostLogoutRedirectUris []string `protobuf:"bytes,8,rep,name=post_logout_redirect_uris,json=postLogoutRedirectUris,proto3" json:"post_logout_redirect_uris,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OIDCConfig) Reset() {
- *x = OIDCConfig{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[92]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OIDCConfig) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OIDCConfig) ProtoMessage() {}
-
-func (x *OIDCConfig) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[92]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OIDCConfig.ProtoReflect.Descriptor instead.
+func (m *OIDCConfig) Reset() { *m = OIDCConfig{} }
+func (m *OIDCConfig) String() string { return proto.CompactTextString(m) }
+func (*OIDCConfig) ProtoMessage() {}
func (*OIDCConfig) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{92}
+ return fileDescriptor_edc174f991dc0a25, []int{92}
}
-func (x *OIDCConfig) GetRedirectUris() []string {
- if x != nil {
- return x.RedirectUris
+func (m *OIDCConfig) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OIDCConfig.Unmarshal(m, b)
+}
+func (m *OIDCConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OIDCConfig.Marshal(b, m, deterministic)
+}
+func (m *OIDCConfig) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OIDCConfig.Merge(m, src)
+}
+func (m *OIDCConfig) XXX_Size() int {
+ return xxx_messageInfo_OIDCConfig.Size(m)
+}
+func (m *OIDCConfig) XXX_DiscardUnknown() {
+ xxx_messageInfo_OIDCConfig.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OIDCConfig proto.InternalMessageInfo
+
+func (m *OIDCConfig) GetRedirectUris() []string {
+ if m != nil {
+ return m.RedirectUris
}
return nil
}
-func (x *OIDCConfig) GetResponseTypes() []OIDCResponseType {
- if x != nil {
- return x.ResponseTypes
+func (m *OIDCConfig) GetResponseTypes() []OIDCResponseType {
+ if m != nil {
+ return m.ResponseTypes
}
return nil
}
-func (x *OIDCConfig) GetGrantTypes() []OIDCGrantType {
- if x != nil {
- return x.GrantTypes
+func (m *OIDCConfig) GetGrantTypes() []OIDCGrantType {
+ if m != nil {
+ return m.GrantTypes
}
return nil
}
-func (x *OIDCConfig) GetApplicationType() OIDCApplicationType {
- if x != nil {
- return x.ApplicationType
+func (m *OIDCConfig) GetApplicationType() OIDCApplicationType {
+ if m != nil {
+ return m.ApplicationType
}
return OIDCApplicationType_OIDCAPPLICATIONTYPE_WEB
}
-func (x *OIDCConfig) GetClientId() string {
- if x != nil {
- return x.ClientId
+func (m *OIDCConfig) GetClientId() string {
+ if m != nil {
+ return m.ClientId
}
return ""
}
-func (x *OIDCConfig) GetClientSecret() string {
- if x != nil {
- return x.ClientSecret
+func (m *OIDCConfig) GetClientSecret() string {
+ if m != nil {
+ return m.ClientSecret
}
return ""
}
-func (x *OIDCConfig) GetAuthMethodType() OIDCAuthMethodType {
- if x != nil {
- return x.AuthMethodType
+func (m *OIDCConfig) GetAuthMethodType() OIDCAuthMethodType {
+ if m != nil {
+ return m.AuthMethodType
}
return OIDCAuthMethodType_OIDCAUTHMETHODTYPE_BASIC
}
-func (x *OIDCConfig) GetPostLogoutRedirectUris() []string {
- if x != nil {
- return x.PostLogoutRedirectUris
+func (m *OIDCConfig) GetPostLogoutRedirectUris() []string {
+ if m != nil {
+ return m.PostLogoutRedirectUris
}
return nil
}
type OIDCApplicationCreate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
RedirectUris []string `protobuf:"bytes,3,rep,name=redirect_uris,json=redirectUris,proto3" json:"redirect_uris,omitempty"`
@@ -8530,101 +7201,93 @@ type OIDCApplicationCreate struct {
ApplicationType OIDCApplicationType `protobuf:"varint,6,opt,name=application_type,json=applicationType,proto3,enum=caos.zitadel.management.api.v1.OIDCApplicationType" json:"application_type,omitempty"`
AuthMethodType OIDCAuthMethodType `protobuf:"varint,7,opt,name=auth_method_type,json=authMethodType,proto3,enum=caos.zitadel.management.api.v1.OIDCAuthMethodType" json:"auth_method_type,omitempty"`
PostLogoutRedirectUris []string `protobuf:"bytes,8,rep,name=post_logout_redirect_uris,json=postLogoutRedirectUris,proto3" json:"post_logout_redirect_uris,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OIDCApplicationCreate) Reset() {
- *x = OIDCApplicationCreate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[93]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OIDCApplicationCreate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OIDCApplicationCreate) ProtoMessage() {}
-
-func (x *OIDCApplicationCreate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[93]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OIDCApplicationCreate.ProtoReflect.Descriptor instead.
+func (m *OIDCApplicationCreate) Reset() { *m = OIDCApplicationCreate{} }
+func (m *OIDCApplicationCreate) String() string { return proto.CompactTextString(m) }
+func (*OIDCApplicationCreate) ProtoMessage() {}
func (*OIDCApplicationCreate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{93}
+ return fileDescriptor_edc174f991dc0a25, []int{93}
}
-func (x *OIDCApplicationCreate) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *OIDCApplicationCreate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OIDCApplicationCreate.Unmarshal(m, b)
+}
+func (m *OIDCApplicationCreate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OIDCApplicationCreate.Marshal(b, m, deterministic)
+}
+func (m *OIDCApplicationCreate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OIDCApplicationCreate.Merge(m, src)
+}
+func (m *OIDCApplicationCreate) XXX_Size() int {
+ return xxx_messageInfo_OIDCApplicationCreate.Size(m)
+}
+func (m *OIDCApplicationCreate) XXX_DiscardUnknown() {
+ xxx_messageInfo_OIDCApplicationCreate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OIDCApplicationCreate proto.InternalMessageInfo
+
+func (m *OIDCApplicationCreate) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *OIDCApplicationCreate) GetName() string {
- if x != nil {
- return x.Name
+func (m *OIDCApplicationCreate) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *OIDCApplicationCreate) GetRedirectUris() []string {
- if x != nil {
- return x.RedirectUris
+func (m *OIDCApplicationCreate) GetRedirectUris() []string {
+ if m != nil {
+ return m.RedirectUris
}
return nil
}
-func (x *OIDCApplicationCreate) GetResponseTypes() []OIDCResponseType {
- if x != nil {
- return x.ResponseTypes
+func (m *OIDCApplicationCreate) GetResponseTypes() []OIDCResponseType {
+ if m != nil {
+ return m.ResponseTypes
}
return nil
}
-func (x *OIDCApplicationCreate) GetGrantTypes() []OIDCGrantType {
- if x != nil {
- return x.GrantTypes
+func (m *OIDCApplicationCreate) GetGrantTypes() []OIDCGrantType {
+ if m != nil {
+ return m.GrantTypes
}
return nil
}
-func (x *OIDCApplicationCreate) GetApplicationType() OIDCApplicationType {
- if x != nil {
- return x.ApplicationType
+func (m *OIDCApplicationCreate) GetApplicationType() OIDCApplicationType {
+ if m != nil {
+ return m.ApplicationType
}
return OIDCApplicationType_OIDCAPPLICATIONTYPE_WEB
}
-func (x *OIDCApplicationCreate) GetAuthMethodType() OIDCAuthMethodType {
- if x != nil {
- return x.AuthMethodType
+func (m *OIDCApplicationCreate) GetAuthMethodType() OIDCAuthMethodType {
+ if m != nil {
+ return m.AuthMethodType
}
return OIDCAuthMethodType_OIDCAUTHMETHODTYPE_BASIC
}
-func (x *OIDCApplicationCreate) GetPostLogoutRedirectUris() []string {
- if x != nil {
- return x.PostLogoutRedirectUris
+func (m *OIDCApplicationCreate) GetPostLogoutRedirectUris() []string {
+ if m != nil {
+ return m.PostLogoutRedirectUris
}
return nil
}
type OIDCConfigUpdate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
ApplicationId string `protobuf:"bytes,2,opt,name=application_id,json=applicationId,proto3" json:"application_id,omitempty"`
RedirectUris []string `protobuf:"bytes,3,rep,name=redirect_uris,json=redirectUris,proto3" json:"redirect_uris,omitempty"`
@@ -8633,247 +7296,206 @@ type OIDCConfigUpdate struct {
ApplicationType OIDCApplicationType `protobuf:"varint,6,opt,name=application_type,json=applicationType,proto3,enum=caos.zitadel.management.api.v1.OIDCApplicationType" json:"application_type,omitempty"`
AuthMethodType OIDCAuthMethodType `protobuf:"varint,7,opt,name=auth_method_type,json=authMethodType,proto3,enum=caos.zitadel.management.api.v1.OIDCAuthMethodType" json:"auth_method_type,omitempty"`
PostLogoutRedirectUris []string `protobuf:"bytes,8,rep,name=post_logout_redirect_uris,json=postLogoutRedirectUris,proto3" json:"post_logout_redirect_uris,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OIDCConfigUpdate) Reset() {
- *x = OIDCConfigUpdate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[94]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OIDCConfigUpdate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OIDCConfigUpdate) ProtoMessage() {}
-
-func (x *OIDCConfigUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[94]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use OIDCConfigUpdate.ProtoReflect.Descriptor instead.
+func (m *OIDCConfigUpdate) Reset() { *m = OIDCConfigUpdate{} }
+func (m *OIDCConfigUpdate) String() string { return proto.CompactTextString(m) }
+func (*OIDCConfigUpdate) ProtoMessage() {}
func (*OIDCConfigUpdate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{94}
+ return fileDescriptor_edc174f991dc0a25, []int{94}
}
-func (x *OIDCConfigUpdate) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *OIDCConfigUpdate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OIDCConfigUpdate.Unmarshal(m, b)
+}
+func (m *OIDCConfigUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OIDCConfigUpdate.Marshal(b, m, deterministic)
+}
+func (m *OIDCConfigUpdate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OIDCConfigUpdate.Merge(m, src)
+}
+func (m *OIDCConfigUpdate) XXX_Size() int {
+ return xxx_messageInfo_OIDCConfigUpdate.Size(m)
+}
+func (m *OIDCConfigUpdate) XXX_DiscardUnknown() {
+ xxx_messageInfo_OIDCConfigUpdate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OIDCConfigUpdate proto.InternalMessageInfo
+
+func (m *OIDCConfigUpdate) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *OIDCConfigUpdate) GetApplicationId() string {
- if x != nil {
- return x.ApplicationId
+func (m *OIDCConfigUpdate) GetApplicationId() string {
+ if m != nil {
+ return m.ApplicationId
}
return ""
}
-func (x *OIDCConfigUpdate) GetRedirectUris() []string {
- if x != nil {
- return x.RedirectUris
+func (m *OIDCConfigUpdate) GetRedirectUris() []string {
+ if m != nil {
+ return m.RedirectUris
}
return nil
}
-func (x *OIDCConfigUpdate) GetResponseTypes() []OIDCResponseType {
- if x != nil {
- return x.ResponseTypes
+func (m *OIDCConfigUpdate) GetResponseTypes() []OIDCResponseType {
+ if m != nil {
+ return m.ResponseTypes
}
return nil
}
-func (x *OIDCConfigUpdate) GetGrantTypes() []OIDCGrantType {
- if x != nil {
- return x.GrantTypes
+func (m *OIDCConfigUpdate) GetGrantTypes() []OIDCGrantType {
+ if m != nil {
+ return m.GrantTypes
}
return nil
}
-func (x *OIDCConfigUpdate) GetApplicationType() OIDCApplicationType {
- if x != nil {
- return x.ApplicationType
+func (m *OIDCConfigUpdate) GetApplicationType() OIDCApplicationType {
+ if m != nil {
+ return m.ApplicationType
}
return OIDCApplicationType_OIDCAPPLICATIONTYPE_WEB
}
-func (x *OIDCConfigUpdate) GetAuthMethodType() OIDCAuthMethodType {
- if x != nil {
- return x.AuthMethodType
+func (m *OIDCConfigUpdate) GetAuthMethodType() OIDCAuthMethodType {
+ if m != nil {
+ return m.AuthMethodType
}
return OIDCAuthMethodType_OIDCAUTHMETHODTYPE_BASIC
}
-func (x *OIDCConfigUpdate) GetPostLogoutRedirectUris() []string {
- if x != nil {
- return x.PostLogoutRedirectUris
+func (m *OIDCConfigUpdate) GetPostLogoutRedirectUris() []string {
+ if m != nil {
+ return m.PostLogoutRedirectUris
}
return nil
}
type ClientSecret struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ClientSecret string `protobuf:"bytes,1,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
+ ClientSecret string `protobuf:"bytes,1,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ClientSecret) Reset() {
- *x = ClientSecret{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[95]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ClientSecret) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ClientSecret) ProtoMessage() {}
-
-func (x *ClientSecret) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[95]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ClientSecret.ProtoReflect.Descriptor instead.
+func (m *ClientSecret) Reset() { *m = ClientSecret{} }
+func (m *ClientSecret) String() string { return proto.CompactTextString(m) }
+func (*ClientSecret) ProtoMessage() {}
func (*ClientSecret) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{95}
+ return fileDescriptor_edc174f991dc0a25, []int{95}
}
-func (x *ClientSecret) GetClientSecret() string {
- if x != nil {
- return x.ClientSecret
+func (m *ClientSecret) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ClientSecret.Unmarshal(m, b)
+}
+func (m *ClientSecret) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ClientSecret.Marshal(b, m, deterministic)
+}
+func (m *ClientSecret) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ClientSecret.Merge(m, src)
+}
+func (m *ClientSecret) XXX_Size() int {
+ return xxx_messageInfo_ClientSecret.Size(m)
+}
+func (m *ClientSecret) XXX_DiscardUnknown() {
+ xxx_messageInfo_ClientSecret.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ClientSecret proto.InternalMessageInfo
+
+func (m *ClientSecret) GetClientSecret() string {
+ if m != nil {
+ return m.ClientSecret
}
return ""
}
type ApplicationView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
State AppState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.AppState" json:"state,omitempty"`
CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
- // Types that are assignable to AppConfig:
+ // Types that are valid to be assigned to AppConfig:
// *ApplicationView_OidcConfig
- AppConfig isApplicationView_AppConfig `protobuf_oneof:"app_config"`
- Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ AppConfig isApplicationView_AppConfig `protobuf_oneof:"app_config"`
+ Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ApplicationView) Reset() {
- *x = ApplicationView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[96]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ApplicationView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ApplicationView) ProtoMessage() {}
-
-func (x *ApplicationView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[96]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ApplicationView.ProtoReflect.Descriptor instead.
+func (m *ApplicationView) Reset() { *m = ApplicationView{} }
+func (m *ApplicationView) String() string { return proto.CompactTextString(m) }
+func (*ApplicationView) ProtoMessage() {}
func (*ApplicationView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{96}
+ return fileDescriptor_edc174f991dc0a25, []int{96}
}
-func (x *ApplicationView) GetId() string {
- if x != nil {
- return x.Id
+func (m *ApplicationView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ApplicationView.Unmarshal(m, b)
+}
+func (m *ApplicationView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ApplicationView.Marshal(b, m, deterministic)
+}
+func (m *ApplicationView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ApplicationView.Merge(m, src)
+}
+func (m *ApplicationView) XXX_Size() int {
+ return xxx_messageInfo_ApplicationView.Size(m)
+}
+func (m *ApplicationView) XXX_DiscardUnknown() {
+ xxx_messageInfo_ApplicationView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ApplicationView proto.InternalMessageInfo
+
+func (m *ApplicationView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ApplicationView) GetState() AppState {
- if x != nil {
- return x.State
+func (m *ApplicationView) GetState() AppState {
+ if m != nil {
+ return m.State
}
return AppState_APPSTATE_UNSPECIFIED
}
-func (x *ApplicationView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ApplicationView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ApplicationView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ApplicationView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ApplicationView) GetName() string {
- if x != nil {
- return x.Name
+func (m *ApplicationView) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (m *ApplicationView) GetAppConfig() isApplicationView_AppConfig {
- if m != nil {
- return m.AppConfig
- }
- return nil
-}
-
-func (x *ApplicationView) GetOidcConfig() *OIDCConfig {
- if x, ok := x.GetAppConfig().(*ApplicationView_OidcConfig); ok {
- return x.OidcConfig
- }
- return nil
-}
-
-func (x *ApplicationView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
- }
- return 0
-}
-
type isApplicationView_AppConfig interface {
isApplicationView_AppConfig()
}
@@ -8884,8408 +7506,3353 @@ type ApplicationView_OidcConfig struct {
func (*ApplicationView_OidcConfig) isApplicationView_AppConfig() {}
+func (m *ApplicationView) GetAppConfig() isApplicationView_AppConfig {
+ if m != nil {
+ return m.AppConfig
+ }
+ return nil
+}
+
+func (m *ApplicationView) GetOidcConfig() *OIDCConfig {
+ if x, ok := m.GetAppConfig().(*ApplicationView_OidcConfig); ok {
+ return x.OidcConfig
+ }
+ return nil
+}
+
+func (m *ApplicationView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
+ }
+ return 0
+}
+
+// XXX_OneofWrappers is for the internal use of the proto package.
+func (*ApplicationView) XXX_OneofWrappers() []interface{} {
+ return []interface{}{
+ (*ApplicationView_OidcConfig)(nil),
+ }
+}
+
type ApplicationSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*ApplicationView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*ApplicationView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ApplicationSearchResponse) Reset() {
- *x = ApplicationSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[97]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ApplicationSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ApplicationSearchResponse) ProtoMessage() {}
-
-func (x *ApplicationSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[97]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ApplicationSearchResponse.ProtoReflect.Descriptor instead.
+func (m *ApplicationSearchResponse) Reset() { *m = ApplicationSearchResponse{} }
+func (m *ApplicationSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*ApplicationSearchResponse) ProtoMessage() {}
func (*ApplicationSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{97}
+ return fileDescriptor_edc174f991dc0a25, []int{97}
}
-func (x *ApplicationSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ApplicationSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ApplicationSearchResponse.Unmarshal(m, b)
+}
+func (m *ApplicationSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ApplicationSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *ApplicationSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ApplicationSearchResponse.Merge(m, src)
+}
+func (m *ApplicationSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_ApplicationSearchResponse.Size(m)
+}
+func (m *ApplicationSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_ApplicationSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ApplicationSearchResponse proto.InternalMessageInfo
+
+func (m *ApplicationSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ApplicationSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ApplicationSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ApplicationSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *ApplicationSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *ApplicationSearchResponse) GetResult() []*ApplicationView {
- if x != nil {
- return x.Result
+func (m *ApplicationSearchResponse) GetResult() []*ApplicationView {
+ if m != nil {
+ return m.Result
}
return nil
}
type ApplicationSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*ApplicationSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*ApplicationSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ApplicationSearchRequest) Reset() {
- *x = ApplicationSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[98]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ApplicationSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ApplicationSearchRequest) ProtoMessage() {}
-
-func (x *ApplicationSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[98]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ApplicationSearchRequest.ProtoReflect.Descriptor instead.
+func (m *ApplicationSearchRequest) Reset() { *m = ApplicationSearchRequest{} }
+func (m *ApplicationSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*ApplicationSearchRequest) ProtoMessage() {}
func (*ApplicationSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{98}
+ return fileDescriptor_edc174f991dc0a25, []int{98}
}
-func (x *ApplicationSearchRequest) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ApplicationSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ApplicationSearchRequest.Unmarshal(m, b)
+}
+func (m *ApplicationSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ApplicationSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *ApplicationSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ApplicationSearchRequest.Merge(m, src)
+}
+func (m *ApplicationSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_ApplicationSearchRequest.Size(m)
+}
+func (m *ApplicationSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ApplicationSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ApplicationSearchRequest proto.InternalMessageInfo
+
+func (m *ApplicationSearchRequest) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ApplicationSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ApplicationSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ApplicationSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ApplicationSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ApplicationSearchRequest) GetQueries() []*ApplicationSearchQuery {
- if x != nil {
- return x.Queries
+func (m *ApplicationSearchRequest) GetQueries() []*ApplicationSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type ApplicationSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key ApplicationSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ApplicationSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key ApplicationSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ApplicationSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ApplicationSearchQuery) Reset() {
- *x = ApplicationSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[99]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ApplicationSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ApplicationSearchQuery) ProtoMessage() {}
-
-func (x *ApplicationSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[99]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ApplicationSearchQuery.ProtoReflect.Descriptor instead.
+func (m *ApplicationSearchQuery) Reset() { *m = ApplicationSearchQuery{} }
+func (m *ApplicationSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*ApplicationSearchQuery) ProtoMessage() {}
func (*ApplicationSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{99}
+ return fileDescriptor_edc174f991dc0a25, []int{99}
}
-func (x *ApplicationSearchQuery) GetKey() ApplicationSearchKey {
- if x != nil {
- return x.Key
+func (m *ApplicationSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ApplicationSearchQuery.Unmarshal(m, b)
+}
+func (m *ApplicationSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ApplicationSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *ApplicationSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ApplicationSearchQuery.Merge(m, src)
+}
+func (m *ApplicationSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_ApplicationSearchQuery.Size(m)
+}
+func (m *ApplicationSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_ApplicationSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ApplicationSearchQuery proto.InternalMessageInfo
+
+func (m *ApplicationSearchQuery) GetKey() ApplicationSearchKey {
+ if m != nil {
+ return m.Key
}
return ApplicationSearchKey_APPLICATIONSERACHKEY_UNSPECIFIED
}
-func (x *ApplicationSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *ApplicationSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *ApplicationSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *ApplicationSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type ProjectGrant struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- GrantedOrgId string `protobuf:"bytes,3,opt,name=granted_org_id,json=grantedOrgId,proto3" json:"granted_org_id,omitempty"`
- RoleKeys []string `protobuf:"bytes,4,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
- State ProjectGrantState `protobuf:"varint,5,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ GrantedOrgId string `protobuf:"bytes,3,opt,name=granted_org_id,json=grantedOrgId,proto3" json:"granted_org_id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,4,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ State ProjectGrantState `protobuf:"varint,5,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrant) Reset() {
- *x = ProjectGrant{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[100]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrant) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrant) ProtoMessage() {}
-
-func (x *ProjectGrant) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[100]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrant.ProtoReflect.Descriptor instead.
+func (m *ProjectGrant) Reset() { *m = ProjectGrant{} }
+func (m *ProjectGrant) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrant) ProtoMessage() {}
func (*ProjectGrant) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{100}
+ return fileDescriptor_edc174f991dc0a25, []int{100}
}
-func (x *ProjectGrant) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectGrant) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrant.Unmarshal(m, b)
+}
+func (m *ProjectGrant) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrant.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrant) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrant.Merge(m, src)
+}
+func (m *ProjectGrant) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrant.Size(m)
+}
+func (m *ProjectGrant) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrant.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrant proto.InternalMessageInfo
+
+func (m *ProjectGrant) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectGrant) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrant) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrant) GetGrantedOrgId() string {
- if x != nil {
- return x.GrantedOrgId
+func (m *ProjectGrant) GetGrantedOrgId() string {
+ if m != nil {
+ return m.GrantedOrgId
}
return ""
}
-func (x *ProjectGrant) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *ProjectGrant) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
-func (x *ProjectGrant) GetState() ProjectGrantState {
- if x != nil {
- return x.State
+func (m *ProjectGrant) GetState() ProjectGrantState {
+ if m != nil {
+ return m.State
}
return ProjectGrantState_PROJECTGRANTSTATE_UNSPECIFIED
}
-func (x *ProjectGrant) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectGrant) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectGrant) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ProjectGrant) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ProjectGrant) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectGrant) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type ProjectGrantCreate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- GrantedOrgId string `protobuf:"bytes,2,opt,name=granted_org_id,json=grantedOrgId,proto3" json:"granted_org_id,omitempty"`
- RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ GrantedOrgId string `protobuf:"bytes,2,opt,name=granted_org_id,json=grantedOrgId,proto3" json:"granted_org_id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantCreate) Reset() {
- *x = ProjectGrantCreate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[101]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantCreate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantCreate) ProtoMessage() {}
-
-func (x *ProjectGrantCreate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[101]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantCreate.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantCreate) Reset() { *m = ProjectGrantCreate{} }
+func (m *ProjectGrantCreate) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantCreate) ProtoMessage() {}
func (*ProjectGrantCreate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{101}
+ return fileDescriptor_edc174f991dc0a25, []int{101}
}
-func (x *ProjectGrantCreate) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantCreate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantCreate.Unmarshal(m, b)
+}
+func (m *ProjectGrantCreate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantCreate.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantCreate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantCreate.Merge(m, src)
+}
+func (m *ProjectGrantCreate) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantCreate.Size(m)
+}
+func (m *ProjectGrantCreate) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantCreate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantCreate proto.InternalMessageInfo
+
+func (m *ProjectGrantCreate) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantCreate) GetGrantedOrgId() string {
- if x != nil {
- return x.GrantedOrgId
+func (m *ProjectGrantCreate) GetGrantedOrgId() string {
+ if m != nil {
+ return m.GrantedOrgId
}
return ""
}
-func (x *ProjectGrantCreate) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *ProjectGrantCreate) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
type ProjectGrantUpdate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
- RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantUpdate) Reset() {
- *x = ProjectGrantUpdate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[102]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantUpdate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantUpdate) ProtoMessage() {}
-
-func (x *ProjectGrantUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[102]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantUpdate.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantUpdate) Reset() { *m = ProjectGrantUpdate{} }
+func (m *ProjectGrantUpdate) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantUpdate) ProtoMessage() {}
func (*ProjectGrantUpdate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{102}
+ return fileDescriptor_edc174f991dc0a25, []int{102}
}
-func (x *ProjectGrantUpdate) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantUpdate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantUpdate.Unmarshal(m, b)
+}
+func (m *ProjectGrantUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantUpdate.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantUpdate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantUpdate.Merge(m, src)
+}
+func (m *ProjectGrantUpdate) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantUpdate.Size(m)
+}
+func (m *ProjectGrantUpdate) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantUpdate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantUpdate proto.InternalMessageInfo
+
+func (m *ProjectGrantUpdate) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantUpdate) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectGrantUpdate) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectGrantUpdate) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *ProjectGrantUpdate) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
type ProjectGrantID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantID) Reset() {
- *x = ProjectGrantID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[103]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantID) ProtoMessage() {}
-
-func (x *ProjectGrantID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[103]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantID.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantID) Reset() { *m = ProjectGrantID{} }
+func (m *ProjectGrantID) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantID) ProtoMessage() {}
func (*ProjectGrantID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{103}
+ return fileDescriptor_edc174f991dc0a25, []int{103}
}
-func (x *ProjectGrantID) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantID.Unmarshal(m, b)
+}
+func (m *ProjectGrantID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantID.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantID.Merge(m, src)
+}
+func (m *ProjectGrantID) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantID.Size(m)
+}
+func (m *ProjectGrantID) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantID proto.InternalMessageInfo
+
+func (m *ProjectGrantID) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantID) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectGrantID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type ProjectGrantView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- GrantedOrgId string `protobuf:"bytes,3,opt,name=granted_org_id,json=grantedOrgId,proto3" json:"granted_org_id,omitempty"`
- GrantedOrgName string `protobuf:"bytes,4,opt,name=granted_org_name,json=grantedOrgName,proto3" json:"granted_org_name,omitempty"`
- GrantedOrgDomain string `protobuf:"bytes,5,opt,name=granted_org_domain,json=grantedOrgDomain,proto3" json:"granted_org_domain,omitempty"`
- RoleKeys []string `protobuf:"bytes,6,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
- State ProjectGrantState `protobuf:"varint,7,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- ProjectName string `protobuf:"bytes,10,opt,name=project_name,json=projectName,proto3" json:"project_name,omitempty"`
- Sequence uint64 `protobuf:"varint,11,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ GrantedOrgId string `protobuf:"bytes,3,opt,name=granted_org_id,json=grantedOrgId,proto3" json:"granted_org_id,omitempty"`
+ GrantedOrgName string `protobuf:"bytes,4,opt,name=granted_org_name,json=grantedOrgName,proto3" json:"granted_org_name,omitempty"`
+ GrantedOrgDomain string `protobuf:"bytes,5,opt,name=granted_org_domain,json=grantedOrgDomain,proto3" json:"granted_org_domain,omitempty"`
+ RoleKeys []string `protobuf:"bytes,6,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ State ProjectGrantState `protobuf:"varint,7,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ ProjectName string `protobuf:"bytes,10,opt,name=project_name,json=projectName,proto3" json:"project_name,omitempty"`
+ Sequence uint64 `protobuf:"varint,11,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantView) Reset() {
- *x = ProjectGrantView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[104]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantView) ProtoMessage() {}
-
-func (x *ProjectGrantView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[104]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantView.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantView) Reset() { *m = ProjectGrantView{} }
+func (m *ProjectGrantView) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantView) ProtoMessage() {}
func (*ProjectGrantView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{104}
+ return fileDescriptor_edc174f991dc0a25, []int{104}
}
-func (x *ProjectGrantView) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectGrantView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantView.Unmarshal(m, b)
+}
+func (m *ProjectGrantView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantView.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantView.Merge(m, src)
+}
+func (m *ProjectGrantView) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantView.Size(m)
+}
+func (m *ProjectGrantView) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantView proto.InternalMessageInfo
+
+func (m *ProjectGrantView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectGrantView) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantView) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantView) GetGrantedOrgId() string {
- if x != nil {
- return x.GrantedOrgId
+func (m *ProjectGrantView) GetGrantedOrgId() string {
+ if m != nil {
+ return m.GrantedOrgId
}
return ""
}
-func (x *ProjectGrantView) GetGrantedOrgName() string {
- if x != nil {
- return x.GrantedOrgName
+func (m *ProjectGrantView) GetGrantedOrgName() string {
+ if m != nil {
+ return m.GrantedOrgName
}
return ""
}
-func (x *ProjectGrantView) GetGrantedOrgDomain() string {
- if x != nil {
- return x.GrantedOrgDomain
+func (m *ProjectGrantView) GetGrantedOrgDomain() string {
+ if m != nil {
+ return m.GrantedOrgDomain
}
return ""
}
-func (x *ProjectGrantView) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *ProjectGrantView) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
-func (x *ProjectGrantView) GetState() ProjectGrantState {
- if x != nil {
- return x.State
+func (m *ProjectGrantView) GetState() ProjectGrantState {
+ if m != nil {
+ return m.State
}
return ProjectGrantState_PROJECTGRANTSTATE_UNSPECIFIED
}
-func (x *ProjectGrantView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectGrantView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectGrantView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ProjectGrantView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ProjectGrantView) GetProjectName() string {
- if x != nil {
- return x.ProjectName
+func (m *ProjectGrantView) GetProjectName() string {
+ if m != nil {
+ return m.ProjectName
}
return ""
}
-func (x *ProjectGrantView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectGrantView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type ProjectGrantSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*ProjectGrantView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*ProjectGrantView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantSearchResponse) Reset() {
- *x = ProjectGrantSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[105]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantSearchResponse) ProtoMessage() {}
-
-func (x *ProjectGrantSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[105]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantSearchResponse.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantSearchResponse) Reset() { *m = ProjectGrantSearchResponse{} }
+func (m *ProjectGrantSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantSearchResponse) ProtoMessage() {}
func (*ProjectGrantSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{105}
+ return fileDescriptor_edc174f991dc0a25, []int{105}
}
-func (x *ProjectGrantSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectGrantSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantSearchResponse.Unmarshal(m, b)
+}
+func (m *ProjectGrantSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantSearchResponse.Merge(m, src)
+}
+func (m *ProjectGrantSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantSearchResponse.Size(m)
+}
+func (m *ProjectGrantSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantSearchResponse proto.InternalMessageInfo
+
+func (m *ProjectGrantSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectGrantSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectGrantSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectGrantSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *ProjectGrantSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *ProjectGrantSearchResponse) GetResult() []*ProjectGrantView {
- if x != nil {
- return x.Result
+func (m *ProjectGrantSearchResponse) GetResult() []*ProjectGrantView {
+ if m != nil {
+ return m.Result
}
return nil
}
type ProjectGrantSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantSearchRequest) Reset() {
- *x = ProjectGrantSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[106]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantSearchRequest) ProtoMessage() {}
-
-func (x *ProjectGrantSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[106]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantSearchRequest.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantSearchRequest) Reset() { *m = ProjectGrantSearchRequest{} }
+func (m *ProjectGrantSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantSearchRequest) ProtoMessage() {}
func (*ProjectGrantSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{106}
+ return fileDescriptor_edc174f991dc0a25, []int{106}
}
-func (x *ProjectGrantSearchRequest) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantSearchRequest.Unmarshal(m, b)
+}
+func (m *ProjectGrantSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantSearchRequest.Merge(m, src)
+}
+func (m *ProjectGrantSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantSearchRequest.Size(m)
+}
+func (m *ProjectGrantSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantSearchRequest proto.InternalMessageInfo
+
+func (m *ProjectGrantSearchRequest) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectGrantSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectGrantSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectGrantSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
type GrantedProjectSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*ProjectSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*ProjectSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *GrantedProjectSearchRequest) Reset() {
- *x = GrantedProjectSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[107]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *GrantedProjectSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*GrantedProjectSearchRequest) ProtoMessage() {}
-
-func (x *GrantedProjectSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[107]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use GrantedProjectSearchRequest.ProtoReflect.Descriptor instead.
+func (m *GrantedProjectSearchRequest) Reset() { *m = GrantedProjectSearchRequest{} }
+func (m *GrantedProjectSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*GrantedProjectSearchRequest) ProtoMessage() {}
func (*GrantedProjectSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{107}
+ return fileDescriptor_edc174f991dc0a25, []int{107}
}
-func (x *GrantedProjectSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *GrantedProjectSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GrantedProjectSearchRequest.Unmarshal(m, b)
+}
+func (m *GrantedProjectSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GrantedProjectSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *GrantedProjectSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GrantedProjectSearchRequest.Merge(m, src)
+}
+func (m *GrantedProjectSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_GrantedProjectSearchRequest.Size(m)
+}
+func (m *GrantedProjectSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_GrantedProjectSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GrantedProjectSearchRequest proto.InternalMessageInfo
+
+func (m *GrantedProjectSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *GrantedProjectSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *GrantedProjectSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *GrantedProjectSearchRequest) GetQueries() []*ProjectSearchQuery {
- if x != nil {
- return x.Queries
+func (m *GrantedProjectSearchRequest) GetQueries() []*ProjectSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type ProjectGrantMemberRoles struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Roles []string `protobuf:"bytes,1,rep,name=roles,proto3" json:"roles,omitempty"`
+ Roles []string `protobuf:"bytes,1,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMemberRoles) Reset() {
- *x = ProjectGrantMemberRoles{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[108]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMemberRoles) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMemberRoles) ProtoMessage() {}
-
-func (x *ProjectGrantMemberRoles) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[108]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantMemberRoles.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMemberRoles) Reset() { *m = ProjectGrantMemberRoles{} }
+func (m *ProjectGrantMemberRoles) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMemberRoles) ProtoMessage() {}
func (*ProjectGrantMemberRoles) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{108}
+ return fileDescriptor_edc174f991dc0a25, []int{108}
}
-func (x *ProjectGrantMemberRoles) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectGrantMemberRoles) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMemberRoles.Unmarshal(m, b)
+}
+func (m *ProjectGrantMemberRoles) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMemberRoles.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMemberRoles) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMemberRoles.Merge(m, src)
+}
+func (m *ProjectGrantMemberRoles) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMemberRoles.Size(m)
+}
+func (m *ProjectGrantMemberRoles) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMemberRoles.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMemberRoles proto.InternalMessageInfo
+
+func (m *ProjectGrantMemberRoles) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type ProjectGrantMember struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMember) Reset() {
- *x = ProjectGrantMember{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[109]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMember) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMember) ProtoMessage() {}
-
-func (x *ProjectGrantMember) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[109]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantMember.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMember) Reset() { *m = ProjectGrantMember{} }
+func (m *ProjectGrantMember) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMember) ProtoMessage() {}
func (*ProjectGrantMember) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{109}
+ return fileDescriptor_edc174f991dc0a25, []int{109}
}
-func (x *ProjectGrantMember) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectGrantMember) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMember.Unmarshal(m, b)
+}
+func (m *ProjectGrantMember) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMember.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMember) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMember.Merge(m, src)
+}
+func (m *ProjectGrantMember) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMember.Size(m)
+}
+func (m *ProjectGrantMember) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMember.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMember proto.InternalMessageInfo
+
+func (m *ProjectGrantMember) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectGrantMember) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectGrantMember) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
-func (x *ProjectGrantMember) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ProjectGrantMember) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ProjectGrantMember) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectGrantMember) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectGrantMember) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectGrantMember) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type ProjectGrantMemberAdd struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- GrantId string `protobuf:"bytes,2,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
- UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,4,rep,name=roles,proto3" json:"roles,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ GrantId string `protobuf:"bytes,2,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
+ UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,4,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMemberAdd) Reset() {
- *x = ProjectGrantMemberAdd{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[110]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMemberAdd) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMemberAdd) ProtoMessage() {}
-
-func (x *ProjectGrantMemberAdd) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[110]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantMemberAdd.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMemberAdd) Reset() { *m = ProjectGrantMemberAdd{} }
+func (m *ProjectGrantMemberAdd) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMemberAdd) ProtoMessage() {}
func (*ProjectGrantMemberAdd) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{110}
+ return fileDescriptor_edc174f991dc0a25, []int{110}
}
-func (x *ProjectGrantMemberAdd) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantMemberAdd) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMemberAdd.Unmarshal(m, b)
+}
+func (m *ProjectGrantMemberAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMemberAdd.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMemberAdd) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMemberAdd.Merge(m, src)
+}
+func (m *ProjectGrantMemberAdd) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMemberAdd.Size(m)
+}
+func (m *ProjectGrantMemberAdd) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMemberAdd.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMemberAdd proto.InternalMessageInfo
+
+func (m *ProjectGrantMemberAdd) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantMemberAdd) GetGrantId() string {
- if x != nil {
- return x.GrantId
+func (m *ProjectGrantMemberAdd) GetGrantId() string {
+ if m != nil {
+ return m.GrantId
}
return ""
}
-func (x *ProjectGrantMemberAdd) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectGrantMemberAdd) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectGrantMemberAdd) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectGrantMemberAdd) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type ProjectGrantMemberChange struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- GrantId string `protobuf:"bytes,2,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
- UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,4,rep,name=roles,proto3" json:"roles,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ GrantId string `protobuf:"bytes,2,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
+ UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,4,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMemberChange) Reset() {
- *x = ProjectGrantMemberChange{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[111]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMemberChange) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMemberChange) ProtoMessage() {}
-
-func (x *ProjectGrantMemberChange) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[111]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantMemberChange.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMemberChange) Reset() { *m = ProjectGrantMemberChange{} }
+func (m *ProjectGrantMemberChange) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMemberChange) ProtoMessage() {}
func (*ProjectGrantMemberChange) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{111}
+ return fileDescriptor_edc174f991dc0a25, []int{111}
}
-func (x *ProjectGrantMemberChange) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantMemberChange) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMemberChange.Unmarshal(m, b)
+}
+func (m *ProjectGrantMemberChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMemberChange.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMemberChange) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMemberChange.Merge(m, src)
+}
+func (m *ProjectGrantMemberChange) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMemberChange.Size(m)
+}
+func (m *ProjectGrantMemberChange) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMemberChange.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMemberChange proto.InternalMessageInfo
+
+func (m *ProjectGrantMemberChange) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantMemberChange) GetGrantId() string {
- if x != nil {
- return x.GrantId
+func (m *ProjectGrantMemberChange) GetGrantId() string {
+ if m != nil {
+ return m.GrantId
}
return ""
}
-func (x *ProjectGrantMemberChange) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectGrantMemberChange) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectGrantMemberChange) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectGrantMemberChange) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type ProjectGrantMemberRemove struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- GrantId string `protobuf:"bytes,2,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
- UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ GrantId string `protobuf:"bytes,2,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
+ UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMemberRemove) Reset() {
- *x = ProjectGrantMemberRemove{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[112]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMemberRemove) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMemberRemove) ProtoMessage() {}
-
-func (x *ProjectGrantMemberRemove) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[112]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantMemberRemove.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMemberRemove) Reset() { *m = ProjectGrantMemberRemove{} }
+func (m *ProjectGrantMemberRemove) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMemberRemove) ProtoMessage() {}
func (*ProjectGrantMemberRemove) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{112}
+ return fileDescriptor_edc174f991dc0a25, []int{112}
}
-func (x *ProjectGrantMemberRemove) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantMemberRemove) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMemberRemove.Unmarshal(m, b)
+}
+func (m *ProjectGrantMemberRemove) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMemberRemove.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMemberRemove) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMemberRemove.Merge(m, src)
+}
+func (m *ProjectGrantMemberRemove) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMemberRemove.Size(m)
+}
+func (m *ProjectGrantMemberRemove) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMemberRemove.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMemberRemove proto.InternalMessageInfo
+
+func (m *ProjectGrantMemberRemove) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantMemberRemove) GetGrantId() string {
- if x != nil {
- return x.GrantId
+func (m *ProjectGrantMemberRemove) GetGrantId() string {
+ if m != nil {
+ return m.GrantId
}
return ""
}
-func (x *ProjectGrantMemberRemove) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectGrantMemberRemove) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
type ProjectGrantMemberView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
- FirstName string `protobuf:"bytes,4,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,5,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- Roles []string `protobuf:"bytes,6,rep,name=roles,proto3" json:"roles,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
+ FirstName string `protobuf:"bytes,4,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,5,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ Roles []string `protobuf:"bytes,6,rep,name=roles,proto3" json:"roles,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMemberView) Reset() {
- *x = ProjectGrantMemberView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[113]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMemberView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMemberView) ProtoMessage() {}
-
-func (x *ProjectGrantMemberView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[113]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantMemberView.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMemberView) Reset() { *m = ProjectGrantMemberView{} }
+func (m *ProjectGrantMemberView) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMemberView) ProtoMessage() {}
func (*ProjectGrantMemberView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{113}
+ return fileDescriptor_edc174f991dc0a25, []int{113}
}
-func (x *ProjectGrantMemberView) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectGrantMemberView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMemberView.Unmarshal(m, b)
+}
+func (m *ProjectGrantMemberView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMemberView.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMemberView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMemberView.Merge(m, src)
+}
+func (m *ProjectGrantMemberView) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMemberView.Size(m)
+}
+func (m *ProjectGrantMemberView) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMemberView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMemberView proto.InternalMessageInfo
+
+func (m *ProjectGrantMemberView) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectGrantMemberView) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *ProjectGrantMemberView) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *ProjectGrantMemberView) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *ProjectGrantMemberView) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *ProjectGrantMemberView) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *ProjectGrantMemberView) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *ProjectGrantMemberView) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *ProjectGrantMemberView) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *ProjectGrantMemberView) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectGrantMemberView) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
-func (x *ProjectGrantMemberView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ProjectGrantMemberView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ProjectGrantMemberView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectGrantMemberView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectGrantMemberView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectGrantMemberView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type ProjectGrantMemberSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*ProjectGrantMemberView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*ProjectGrantMemberView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMemberSearchResponse) Reset() {
- *x = ProjectGrantMemberSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[114]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMemberSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMemberSearchResponse) ProtoMessage() {}
-
-func (x *ProjectGrantMemberSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[114]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantMemberSearchResponse.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMemberSearchResponse) Reset() { *m = ProjectGrantMemberSearchResponse{} }
+func (m *ProjectGrantMemberSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMemberSearchResponse) ProtoMessage() {}
func (*ProjectGrantMemberSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{114}
+ return fileDescriptor_edc174f991dc0a25, []int{114}
}
-func (x *ProjectGrantMemberSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectGrantMemberSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMemberSearchResponse.Unmarshal(m, b)
+}
+func (m *ProjectGrantMemberSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMemberSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMemberSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMemberSearchResponse.Merge(m, src)
+}
+func (m *ProjectGrantMemberSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMemberSearchResponse.Size(m)
+}
+func (m *ProjectGrantMemberSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMemberSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMemberSearchResponse proto.InternalMessageInfo
+
+func (m *ProjectGrantMemberSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectGrantMemberSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectGrantMemberSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectGrantMemberSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *ProjectGrantMemberSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *ProjectGrantMemberSearchResponse) GetResult() []*ProjectGrantMemberView {
- if x != nil {
- return x.Result
+func (m *ProjectGrantMemberSearchResponse) GetResult() []*ProjectGrantMemberView {
+ if m != nil {
+ return m.Result
}
return nil
}
type ProjectGrantMemberSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- GrantId string `protobuf:"bytes,2,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
- Offset uint64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,4,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*ProjectGrantMemberSearchQuery `protobuf:"bytes,5,rep,name=queries,proto3" json:"queries,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ GrantId string `protobuf:"bytes,2,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
+ Offset uint64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,4,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*ProjectGrantMemberSearchQuery `protobuf:"bytes,5,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMemberSearchRequest) Reset() {
- *x = ProjectGrantMemberSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[115]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMemberSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMemberSearchRequest) ProtoMessage() {}
-
-func (x *ProjectGrantMemberSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[115]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantMemberSearchRequest.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMemberSearchRequest) Reset() { *m = ProjectGrantMemberSearchRequest{} }
+func (m *ProjectGrantMemberSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMemberSearchRequest) ProtoMessage() {}
func (*ProjectGrantMemberSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{115}
+ return fileDescriptor_edc174f991dc0a25, []int{115}
}
-func (x *ProjectGrantMemberSearchRequest) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantMemberSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMemberSearchRequest.Unmarshal(m, b)
+}
+func (m *ProjectGrantMemberSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMemberSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMemberSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMemberSearchRequest.Merge(m, src)
+}
+func (m *ProjectGrantMemberSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMemberSearchRequest.Size(m)
+}
+func (m *ProjectGrantMemberSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMemberSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMemberSearchRequest proto.InternalMessageInfo
+
+func (m *ProjectGrantMemberSearchRequest) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantMemberSearchRequest) GetGrantId() string {
- if x != nil {
- return x.GrantId
+func (m *ProjectGrantMemberSearchRequest) GetGrantId() string {
+ if m != nil {
+ return m.GrantId
}
return ""
}
-func (x *ProjectGrantMemberSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectGrantMemberSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectGrantMemberSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectGrantMemberSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectGrantMemberSearchRequest) GetQueries() []*ProjectGrantMemberSearchQuery {
- if x != nil {
- return x.Queries
+func (m *ProjectGrantMemberSearchRequest) GetQueries() []*ProjectGrantMemberSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type ProjectGrantMemberSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key ProjectGrantMemberSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantMemberSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key ProjectGrantMemberSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantMemberSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMemberSearchQuery) Reset() {
- *x = ProjectGrantMemberSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[116]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMemberSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMemberSearchQuery) ProtoMessage() {}
-
-func (x *ProjectGrantMemberSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[116]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantMemberSearchQuery.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMemberSearchQuery) Reset() { *m = ProjectGrantMemberSearchQuery{} }
+func (m *ProjectGrantMemberSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMemberSearchQuery) ProtoMessage() {}
func (*ProjectGrantMemberSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{116}
+ return fileDescriptor_edc174f991dc0a25, []int{116}
}
-func (x *ProjectGrantMemberSearchQuery) GetKey() ProjectGrantMemberSearchKey {
- if x != nil {
- return x.Key
+func (m *ProjectGrantMemberSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMemberSearchQuery.Unmarshal(m, b)
+}
+func (m *ProjectGrantMemberSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMemberSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMemberSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMemberSearchQuery.Merge(m, src)
+}
+func (m *ProjectGrantMemberSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMemberSearchQuery.Size(m)
+}
+func (m *ProjectGrantMemberSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMemberSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMemberSearchQuery proto.InternalMessageInfo
+
+func (m *ProjectGrantMemberSearchQuery) GetKey() ProjectGrantMemberSearchKey {
+ if m != nil {
+ return m.Key
}
return ProjectGrantMemberSearchKey_PROJECTGRANTMEMBERSEARCHKEY_UNSPECIFIED
}
-func (x *ProjectGrantMemberSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *ProjectGrantMemberSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *ProjectGrantMemberSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *ProjectGrantMemberSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type UserGrant struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- OrgId string `protobuf:"bytes,3,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
- ProjectId string `protobuf:"bytes,4,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- RoleKeys []string `protobuf:"bytes,5,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
- State UserGrantState `protobuf:"varint,6,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserGrantState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ OrgId string `protobuf:"bytes,3,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
+ ProjectId string `protobuf:"bytes,4,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,5,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ State UserGrantState `protobuf:"varint,6,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserGrantState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrant) Reset() {
- *x = UserGrant{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[117]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrant) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrant) ProtoMessage() {}
-
-func (x *UserGrant) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[117]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserGrant.ProtoReflect.Descriptor instead.
+func (m *UserGrant) Reset() { *m = UserGrant{} }
+func (m *UserGrant) String() string { return proto.CompactTextString(m) }
+func (*UserGrant) ProtoMessage() {}
func (*UserGrant) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{117}
+ return fileDescriptor_edc174f991dc0a25, []int{117}
}
-func (x *UserGrant) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserGrant) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrant.Unmarshal(m, b)
+}
+func (m *UserGrant) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrant.Marshal(b, m, deterministic)
+}
+func (m *UserGrant) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrant.Merge(m, src)
+}
+func (m *UserGrant) XXX_Size() int {
+ return xxx_messageInfo_UserGrant.Size(m)
+}
+func (m *UserGrant) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrant.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrant proto.InternalMessageInfo
+
+func (m *UserGrant) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserGrant) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *UserGrant) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *UserGrant) GetOrgId() string {
- if x != nil {
- return x.OrgId
+func (m *UserGrant) GetOrgId() string {
+ if m != nil {
+ return m.OrgId
}
return ""
}
-func (x *UserGrant) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *UserGrant) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *UserGrant) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *UserGrant) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
-func (x *UserGrant) GetState() UserGrantState {
- if x != nil {
- return x.State
+func (m *UserGrant) GetState() UserGrantState {
+ if m != nil {
+ return m.State
}
return UserGrantState_USERGRANTSTATE_UNSPECIFIED
}
-func (x *UserGrant) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserGrant) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserGrant) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserGrant) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *UserGrant) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserGrant) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type UserGrantCreate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantCreate) Reset() {
- *x = UserGrantCreate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[118]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantCreate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantCreate) ProtoMessage() {}
-
-func (x *UserGrantCreate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[118]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserGrantCreate.ProtoReflect.Descriptor instead.
+func (m *UserGrantCreate) Reset() { *m = UserGrantCreate{} }
+func (m *UserGrantCreate) String() string { return proto.CompactTextString(m) }
+func (*UserGrantCreate) ProtoMessage() {}
func (*UserGrantCreate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{118}
+ return fileDescriptor_edc174f991dc0a25, []int{118}
}
-func (x *UserGrantCreate) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *UserGrantCreate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantCreate.Unmarshal(m, b)
+}
+func (m *UserGrantCreate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantCreate.Marshal(b, m, deterministic)
+}
+func (m *UserGrantCreate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantCreate.Merge(m, src)
+}
+func (m *UserGrantCreate) XXX_Size() int {
+ return xxx_messageInfo_UserGrantCreate.Size(m)
+}
+func (m *UserGrantCreate) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantCreate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantCreate proto.InternalMessageInfo
+
+func (m *UserGrantCreate) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *UserGrantCreate) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *UserGrantCreate) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *UserGrantCreate) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *UserGrantCreate) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
type UserGrantUpdate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
- RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantUpdate) Reset() {
- *x = UserGrantUpdate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[119]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantUpdate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantUpdate) ProtoMessage() {}
-
-func (x *UserGrantUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[119]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserGrantUpdate.ProtoReflect.Descriptor instead.
+func (m *UserGrantUpdate) Reset() { *m = UserGrantUpdate{} }
+func (m *UserGrantUpdate) String() string { return proto.CompactTextString(m) }
+func (*UserGrantUpdate) ProtoMessage() {}
func (*UserGrantUpdate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{119}
+ return fileDescriptor_edc174f991dc0a25, []int{119}
}
-func (x *UserGrantUpdate) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *UserGrantUpdate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantUpdate.Unmarshal(m, b)
+}
+func (m *UserGrantUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantUpdate.Marshal(b, m, deterministic)
+}
+func (m *UserGrantUpdate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantUpdate.Merge(m, src)
+}
+func (m *UserGrantUpdate) XXX_Size() int {
+ return xxx_messageInfo_UserGrantUpdate.Size(m)
+}
+func (m *UserGrantUpdate) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantUpdate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantUpdate proto.InternalMessageInfo
+
+func (m *UserGrantUpdate) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *UserGrantUpdate) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserGrantUpdate) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserGrantUpdate) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *UserGrantUpdate) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
type UserGrantID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantID) Reset() {
- *x = UserGrantID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[120]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantID) ProtoMessage() {}
-
-func (x *UserGrantID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[120]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserGrantID.ProtoReflect.Descriptor instead.
+func (m *UserGrantID) Reset() { *m = UserGrantID{} }
+func (m *UserGrantID) String() string { return proto.CompactTextString(m) }
+func (*UserGrantID) ProtoMessage() {}
func (*UserGrantID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{120}
+ return fileDescriptor_edc174f991dc0a25, []int{120}
}
-func (x *UserGrantID) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *UserGrantID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantID.Unmarshal(m, b)
+}
+func (m *UserGrantID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantID.Marshal(b, m, deterministic)
+}
+func (m *UserGrantID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantID.Merge(m, src)
+}
+func (m *UserGrantID) XXX_Size() int {
+ return xxx_messageInfo_UserGrantID.Size(m)
+}
+func (m *UserGrantID) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantID proto.InternalMessageInfo
+
+func (m *UserGrantID) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *UserGrantID) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserGrantID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type ProjectUserGrantID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectUserGrantID) Reset() {
- *x = ProjectUserGrantID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[121]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectUserGrantID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectUserGrantID) ProtoMessage() {}
-
-func (x *ProjectUserGrantID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[121]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectUserGrantID.ProtoReflect.Descriptor instead.
+func (m *ProjectUserGrantID) Reset() { *m = ProjectUserGrantID{} }
+func (m *ProjectUserGrantID) String() string { return proto.CompactTextString(m) }
+func (*ProjectUserGrantID) ProtoMessage() {}
func (*ProjectUserGrantID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{121}
+ return fileDescriptor_edc174f991dc0a25, []int{121}
}
-func (x *ProjectUserGrantID) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectUserGrantID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectUserGrantID.Unmarshal(m, b)
+}
+func (m *ProjectUserGrantID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectUserGrantID.Marshal(b, m, deterministic)
+}
+func (m *ProjectUserGrantID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectUserGrantID.Merge(m, src)
+}
+func (m *ProjectUserGrantID) XXX_Size() int {
+ return xxx_messageInfo_ProjectUserGrantID.Size(m)
+}
+func (m *ProjectUserGrantID) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectUserGrantID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectUserGrantID proto.InternalMessageInfo
+
+func (m *ProjectUserGrantID) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectUserGrantID) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectUserGrantID) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectUserGrantID) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectUserGrantID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type ProjectUserGrantUpdate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
- RoleKeys []string `protobuf:"bytes,4,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,4,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectUserGrantUpdate) Reset() {
- *x = ProjectUserGrantUpdate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[122]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectUserGrantUpdate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectUserGrantUpdate) ProtoMessage() {}
-
-func (x *ProjectUserGrantUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[122]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectUserGrantUpdate.ProtoReflect.Descriptor instead.
+func (m *ProjectUserGrantUpdate) Reset() { *m = ProjectUserGrantUpdate{} }
+func (m *ProjectUserGrantUpdate) String() string { return proto.CompactTextString(m) }
+func (*ProjectUserGrantUpdate) ProtoMessage() {}
func (*ProjectUserGrantUpdate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{122}
+ return fileDescriptor_edc174f991dc0a25, []int{122}
}
-func (x *ProjectUserGrantUpdate) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectUserGrantUpdate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectUserGrantUpdate.Unmarshal(m, b)
+}
+func (m *ProjectUserGrantUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectUserGrantUpdate.Marshal(b, m, deterministic)
+}
+func (m *ProjectUserGrantUpdate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectUserGrantUpdate.Merge(m, src)
+}
+func (m *ProjectUserGrantUpdate) XXX_Size() int {
+ return xxx_messageInfo_ProjectUserGrantUpdate.Size(m)
+}
+func (m *ProjectUserGrantUpdate) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectUserGrantUpdate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectUserGrantUpdate proto.InternalMessageInfo
+
+func (m *ProjectUserGrantUpdate) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectUserGrantUpdate) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectUserGrantUpdate) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectUserGrantUpdate) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectUserGrantUpdate) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectUserGrantUpdate) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *ProjectUserGrantUpdate) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
type ProjectGrantUserGrantID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectGrantId string `protobuf:"bytes,1,opt,name=project_grant_id,json=projectGrantId,proto3" json:"project_grant_id,omitempty"`
- UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
+ ProjectGrantId string `protobuf:"bytes,1,opt,name=project_grant_id,json=projectGrantId,proto3" json:"project_grant_id,omitempty"`
+ UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantUserGrantID) Reset() {
- *x = ProjectGrantUserGrantID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[123]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantUserGrantID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantUserGrantID) ProtoMessage() {}
-
-func (x *ProjectGrantUserGrantID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[123]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantUserGrantID.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantUserGrantID) Reset() { *m = ProjectGrantUserGrantID{} }
+func (m *ProjectGrantUserGrantID) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantUserGrantID) ProtoMessage() {}
func (*ProjectGrantUserGrantID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{123}
+ return fileDescriptor_edc174f991dc0a25, []int{123}
}
-func (x *ProjectGrantUserGrantID) GetProjectGrantId() string {
- if x != nil {
- return x.ProjectGrantId
+func (m *ProjectGrantUserGrantID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantUserGrantID.Unmarshal(m, b)
+}
+func (m *ProjectGrantUserGrantID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantUserGrantID.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantUserGrantID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantUserGrantID.Merge(m, src)
+}
+func (m *ProjectGrantUserGrantID) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantUserGrantID.Size(m)
+}
+func (m *ProjectGrantUserGrantID) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantUserGrantID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantUserGrantID proto.InternalMessageInfo
+
+func (m *ProjectGrantUserGrantID) GetProjectGrantId() string {
+ if m != nil {
+ return m.ProjectGrantId
}
return ""
}
-func (x *ProjectGrantUserGrantID) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectGrantUserGrantID) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectGrantUserGrantID) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectGrantUserGrantID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type ProjectGrantUserGrantCreate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- OrgId string `protobuf:"bytes,2,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
- ProjectGrantId string `protobuf:"bytes,3,opt,name=project_grant_id,json=projectGrantId,proto3" json:"project_grant_id,omitempty"`
- ProjectId string `protobuf:"bytes,4,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- RoleKeys []string `protobuf:"bytes,5,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ OrgId string `protobuf:"bytes,2,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
+ ProjectGrantId string `protobuf:"bytes,3,opt,name=project_grant_id,json=projectGrantId,proto3" json:"project_grant_id,omitempty"`
+ ProjectId string `protobuf:"bytes,4,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,5,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantUserGrantCreate) Reset() {
- *x = ProjectGrantUserGrantCreate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[124]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantUserGrantCreate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantUserGrantCreate) ProtoMessage() {}
-
-func (x *ProjectGrantUserGrantCreate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[124]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantUserGrantCreate.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantUserGrantCreate) Reset() { *m = ProjectGrantUserGrantCreate{} }
+func (m *ProjectGrantUserGrantCreate) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantUserGrantCreate) ProtoMessage() {}
func (*ProjectGrantUserGrantCreate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{124}
+ return fileDescriptor_edc174f991dc0a25, []int{124}
}
-func (x *ProjectGrantUserGrantCreate) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectGrantUserGrantCreate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantUserGrantCreate.Unmarshal(m, b)
+}
+func (m *ProjectGrantUserGrantCreate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantUserGrantCreate.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantUserGrantCreate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantUserGrantCreate.Merge(m, src)
+}
+func (m *ProjectGrantUserGrantCreate) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantUserGrantCreate.Size(m)
+}
+func (m *ProjectGrantUserGrantCreate) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantUserGrantCreate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantUserGrantCreate proto.InternalMessageInfo
+
+func (m *ProjectGrantUserGrantCreate) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectGrantUserGrantCreate) GetOrgId() string {
- if x != nil {
- return x.OrgId
+func (m *ProjectGrantUserGrantCreate) GetOrgId() string {
+ if m != nil {
+ return m.OrgId
}
return ""
}
-func (x *ProjectGrantUserGrantCreate) GetProjectGrantId() string {
- if x != nil {
- return x.ProjectGrantId
+func (m *ProjectGrantUserGrantCreate) GetProjectGrantId() string {
+ if m != nil {
+ return m.ProjectGrantId
}
return ""
}
-func (x *ProjectGrantUserGrantCreate) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantUserGrantCreate) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantUserGrantCreate) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *ProjectGrantUserGrantCreate) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
type ProjectGrantUserGrantUpdate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectGrantId string `protobuf:"bytes,1,opt,name=project_grant_id,json=projectGrantId,proto3" json:"project_grant_id,omitempty"`
- UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
- RoleKeys []string `protobuf:"bytes,4,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ ProjectGrantId string `protobuf:"bytes,1,opt,name=project_grant_id,json=projectGrantId,proto3" json:"project_grant_id,omitempty"`
+ UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,4,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantUserGrantUpdate) Reset() {
- *x = ProjectGrantUserGrantUpdate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[125]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantUserGrantUpdate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantUserGrantUpdate) ProtoMessage() {}
-
-func (x *ProjectGrantUserGrantUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[125]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantUserGrantUpdate.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantUserGrantUpdate) Reset() { *m = ProjectGrantUserGrantUpdate{} }
+func (m *ProjectGrantUserGrantUpdate) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantUserGrantUpdate) ProtoMessage() {}
func (*ProjectGrantUserGrantUpdate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{125}
+ return fileDescriptor_edc174f991dc0a25, []int{125}
}
-func (x *ProjectGrantUserGrantUpdate) GetProjectGrantId() string {
- if x != nil {
- return x.ProjectGrantId
+func (m *ProjectGrantUserGrantUpdate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantUserGrantUpdate.Unmarshal(m, b)
+}
+func (m *ProjectGrantUserGrantUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantUserGrantUpdate.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantUserGrantUpdate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantUserGrantUpdate.Merge(m, src)
+}
+func (m *ProjectGrantUserGrantUpdate) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantUserGrantUpdate.Size(m)
+}
+func (m *ProjectGrantUserGrantUpdate) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantUserGrantUpdate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantUserGrantUpdate proto.InternalMessageInfo
+
+func (m *ProjectGrantUserGrantUpdate) GetProjectGrantId() string {
+ if m != nil {
+ return m.ProjectGrantId
}
return ""
}
-func (x *ProjectGrantUserGrantUpdate) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectGrantUserGrantUpdate) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectGrantUserGrantUpdate) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectGrantUserGrantUpdate) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectGrantUserGrantUpdate) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *ProjectGrantUserGrantUpdate) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
type UserGrantView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- OrgId string `protobuf:"bytes,3,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
- ProjectId string `protobuf:"bytes,4,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- RoleKeys []string `protobuf:"bytes,5,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
- State UserGrantState `protobuf:"varint,6,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserGrantState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- UserName string `protobuf:"bytes,9,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- FirstName string `protobuf:"bytes,10,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,11,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- Email string `protobuf:"bytes,12,opt,name=email,proto3" json:"email,omitempty"`
- OrgName string `protobuf:"bytes,13,opt,name=org_name,json=orgName,proto3" json:"org_name,omitempty"`
- OrgDomain string `protobuf:"bytes,14,opt,name=org_domain,json=orgDomain,proto3" json:"org_domain,omitempty"`
- ProjectName string `protobuf:"bytes,15,opt,name=project_name,json=projectName,proto3" json:"project_name,omitempty"`
- Sequence uint64 `protobuf:"varint,16,opt,name=sequence,proto3" json:"sequence,omitempty"`
- ResourceOwner string `protobuf:"bytes,17,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ OrgId string `protobuf:"bytes,3,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
+ ProjectId string `protobuf:"bytes,4,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,5,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ State UserGrantState `protobuf:"varint,6,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserGrantState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ UserName string `protobuf:"bytes,9,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ FirstName string `protobuf:"bytes,10,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,11,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ Email string `protobuf:"bytes,12,opt,name=email,proto3" json:"email,omitempty"`
+ OrgName string `protobuf:"bytes,13,opt,name=org_name,json=orgName,proto3" json:"org_name,omitempty"`
+ OrgDomain string `protobuf:"bytes,14,opt,name=org_domain,json=orgDomain,proto3" json:"org_domain,omitempty"`
+ ProjectName string `protobuf:"bytes,15,opt,name=project_name,json=projectName,proto3" json:"project_name,omitempty"`
+ Sequence uint64 `protobuf:"varint,16,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ ResourceOwner string `protobuf:"bytes,17,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantView) Reset() {
- *x = UserGrantView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[126]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantView) ProtoMessage() {}
-
-func (x *UserGrantView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[126]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserGrantView.ProtoReflect.Descriptor instead.
+func (m *UserGrantView) Reset() { *m = UserGrantView{} }
+func (m *UserGrantView) String() string { return proto.CompactTextString(m) }
+func (*UserGrantView) ProtoMessage() {}
func (*UserGrantView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{126}
+ return fileDescriptor_edc174f991dc0a25, []int{126}
}
-func (x *UserGrantView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserGrantView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantView.Unmarshal(m, b)
+}
+func (m *UserGrantView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantView.Marshal(b, m, deterministic)
+}
+func (m *UserGrantView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantView.Merge(m, src)
+}
+func (m *UserGrantView) XXX_Size() int {
+ return xxx_messageInfo_UserGrantView.Size(m)
+}
+func (m *UserGrantView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantView proto.InternalMessageInfo
+
+func (m *UserGrantView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserGrantView) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *UserGrantView) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *UserGrantView) GetOrgId() string {
- if x != nil {
- return x.OrgId
+func (m *UserGrantView) GetOrgId() string {
+ if m != nil {
+ return m.OrgId
}
return ""
}
-func (x *UserGrantView) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *UserGrantView) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *UserGrantView) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *UserGrantView) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
-func (x *UserGrantView) GetState() UserGrantState {
- if x != nil {
- return x.State
+func (m *UserGrantView) GetState() UserGrantState {
+ if m != nil {
+ return m.State
}
return UserGrantState_USERGRANTSTATE_UNSPECIFIED
}
-func (x *UserGrantView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserGrantView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserGrantView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserGrantView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *UserGrantView) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *UserGrantView) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *UserGrantView) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *UserGrantView) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *UserGrantView) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *UserGrantView) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *UserGrantView) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *UserGrantView) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *UserGrantView) GetOrgName() string {
- if x != nil {
- return x.OrgName
+func (m *UserGrantView) GetOrgName() string {
+ if m != nil {
+ return m.OrgName
}
return ""
}
-func (x *UserGrantView) GetOrgDomain() string {
- if x != nil {
- return x.OrgDomain
+func (m *UserGrantView) GetOrgDomain() string {
+ if m != nil {
+ return m.OrgDomain
}
return ""
}
-func (x *UserGrantView) GetProjectName() string {
- if x != nil {
- return x.ProjectName
+func (m *UserGrantView) GetProjectName() string {
+ if m != nil {
+ return m.ProjectName
}
return ""
}
-func (x *UserGrantView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserGrantView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserGrantView) GetResourceOwner() string {
- if x != nil {
- return x.ResourceOwner
+func (m *UserGrantView) GetResourceOwner() string {
+ if m != nil {
+ return m.ResourceOwner
}
return ""
}
type UserGrantSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*UserGrantView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*UserGrantView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantSearchResponse) Reset() {
- *x = UserGrantSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[127]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantSearchResponse) ProtoMessage() {}
-
-func (x *UserGrantSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[127]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserGrantSearchResponse.ProtoReflect.Descriptor instead.
+func (m *UserGrantSearchResponse) Reset() { *m = UserGrantSearchResponse{} }
+func (m *UserGrantSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*UserGrantSearchResponse) ProtoMessage() {}
func (*UserGrantSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{127}
+ return fileDescriptor_edc174f991dc0a25, []int{127}
}
-func (x *UserGrantSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *UserGrantSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantSearchResponse.Unmarshal(m, b)
+}
+func (m *UserGrantSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *UserGrantSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantSearchResponse.Merge(m, src)
+}
+func (m *UserGrantSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_UserGrantSearchResponse.Size(m)
+}
+func (m *UserGrantSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantSearchResponse proto.InternalMessageInfo
+
+func (m *UserGrantSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *UserGrantSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *UserGrantSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *UserGrantSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *UserGrantSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *UserGrantSearchResponse) GetResult() []*UserGrantView {
- if x != nil {
- return x.Result
+func (m *UserGrantSearchResponse) GetResult() []*UserGrantView {
+ if m != nil {
+ return m.Result
}
return nil
}
type UserGrantSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*UserGrantSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*UserGrantSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantSearchRequest) Reset() {
- *x = UserGrantSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[128]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantSearchRequest) ProtoMessage() {}
-
-func (x *UserGrantSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[128]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserGrantSearchRequest.ProtoReflect.Descriptor instead.
+func (m *UserGrantSearchRequest) Reset() { *m = UserGrantSearchRequest{} }
+func (m *UserGrantSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*UserGrantSearchRequest) ProtoMessage() {}
func (*UserGrantSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{128}
+ return fileDescriptor_edc174f991dc0a25, []int{128}
}
-func (x *UserGrantSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *UserGrantSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantSearchRequest.Unmarshal(m, b)
+}
+func (m *UserGrantSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *UserGrantSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantSearchRequest.Merge(m, src)
+}
+func (m *UserGrantSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_UserGrantSearchRequest.Size(m)
+}
+func (m *UserGrantSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantSearchRequest proto.InternalMessageInfo
+
+func (m *UserGrantSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *UserGrantSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *UserGrantSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *UserGrantSearchRequest) GetQueries() []*UserGrantSearchQuery {
- if x != nil {
- return x.Queries
+func (m *UserGrantSearchRequest) GetQueries() []*UserGrantSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type UserGrantSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key UserGrantSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.UserGrantSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key UserGrantSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.UserGrantSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantSearchQuery) Reset() {
- *x = UserGrantSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[129]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantSearchQuery) ProtoMessage() {}
-
-func (x *UserGrantSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[129]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use UserGrantSearchQuery.ProtoReflect.Descriptor instead.
+func (m *UserGrantSearchQuery) Reset() { *m = UserGrantSearchQuery{} }
+func (m *UserGrantSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*UserGrantSearchQuery) ProtoMessage() {}
func (*UserGrantSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{129}
+ return fileDescriptor_edc174f991dc0a25, []int{129}
}
-func (x *UserGrantSearchQuery) GetKey() UserGrantSearchKey {
- if x != nil {
- return x.Key
+func (m *UserGrantSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantSearchQuery.Unmarshal(m, b)
+}
+func (m *UserGrantSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *UserGrantSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantSearchQuery.Merge(m, src)
+}
+func (m *UserGrantSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_UserGrantSearchQuery.Size(m)
+}
+func (m *UserGrantSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantSearchQuery proto.InternalMessageInfo
+
+func (m *UserGrantSearchQuery) GetKey() UserGrantSearchKey {
+ if m != nil {
+ return m.Key
}
return UserGrantSearchKey_USERGRANTSEARCHKEY_UNSPECIFIED
}
-func (x *UserGrantSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *UserGrantSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *UserGrantSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *UserGrantSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type ProjectUserGrantSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*UserGrantSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*UserGrantSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectUserGrantSearchRequest) Reset() {
- *x = ProjectUserGrantSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[130]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectUserGrantSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectUserGrantSearchRequest) ProtoMessage() {}
-
-func (x *ProjectUserGrantSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[130]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectUserGrantSearchRequest.ProtoReflect.Descriptor instead.
+func (m *ProjectUserGrantSearchRequest) Reset() { *m = ProjectUserGrantSearchRequest{} }
+func (m *ProjectUserGrantSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*ProjectUserGrantSearchRequest) ProtoMessage() {}
func (*ProjectUserGrantSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{130}
+ return fileDescriptor_edc174f991dc0a25, []int{130}
}
-func (x *ProjectUserGrantSearchRequest) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectUserGrantSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectUserGrantSearchRequest.Unmarshal(m, b)
+}
+func (m *ProjectUserGrantSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectUserGrantSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *ProjectUserGrantSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectUserGrantSearchRequest.Merge(m, src)
+}
+func (m *ProjectUserGrantSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_ProjectUserGrantSearchRequest.Size(m)
+}
+func (m *ProjectUserGrantSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectUserGrantSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectUserGrantSearchRequest proto.InternalMessageInfo
+
+func (m *ProjectUserGrantSearchRequest) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectUserGrantSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectUserGrantSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectUserGrantSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectUserGrantSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectUserGrantSearchRequest) GetQueries() []*UserGrantSearchQuery {
- if x != nil {
- return x.Queries
+func (m *ProjectUserGrantSearchRequest) GetQueries() []*UserGrantSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type ProjectGrantUserGrantSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectGrantId string `protobuf:"bytes,1,opt,name=project_grant_id,json=projectGrantId,proto3" json:"project_grant_id,omitempty"`
- Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*UserGrantSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ ProjectGrantId string `protobuf:"bytes,1,opt,name=project_grant_id,json=projectGrantId,proto3" json:"project_grant_id,omitempty"`
+ Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*UserGrantSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantUserGrantSearchRequest) Reset() {
- *x = ProjectGrantUserGrantSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[131]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantUserGrantSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantUserGrantSearchRequest) ProtoMessage() {}
-
-func (x *ProjectGrantUserGrantSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[131]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use ProjectGrantUserGrantSearchRequest.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantUserGrantSearchRequest) Reset() { *m = ProjectGrantUserGrantSearchRequest{} }
+func (m *ProjectGrantUserGrantSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantUserGrantSearchRequest) ProtoMessage() {}
func (*ProjectGrantUserGrantSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{131}
+ return fileDescriptor_edc174f991dc0a25, []int{131}
}
-func (x *ProjectGrantUserGrantSearchRequest) GetProjectGrantId() string {
- if x != nil {
- return x.ProjectGrantId
+func (m *ProjectGrantUserGrantSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantUserGrantSearchRequest.Unmarshal(m, b)
+}
+func (m *ProjectGrantUserGrantSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantUserGrantSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantUserGrantSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantUserGrantSearchRequest.Merge(m, src)
+}
+func (m *ProjectGrantUserGrantSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantUserGrantSearchRequest.Size(m)
+}
+func (m *ProjectGrantUserGrantSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantUserGrantSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantUserGrantSearchRequest proto.InternalMessageInfo
+
+func (m *ProjectGrantUserGrantSearchRequest) GetProjectGrantId() string {
+ if m != nil {
+ return m.ProjectGrantId
}
return ""
}
-func (x *ProjectGrantUserGrantSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectGrantUserGrantSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectGrantUserGrantSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectGrantUserGrantSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectGrantUserGrantSearchRequest) GetQueries() []*UserGrantSearchQuery {
- if x != nil {
- return x.Queries
+func (m *ProjectGrantUserGrantSearchRequest) GetQueries() []*UserGrantSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type AuthGrantSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- SortingColumn AuthGrantSearchKey `protobuf:"varint,3,opt,name=sorting_column,json=sortingColumn,proto3,enum=caos.zitadel.management.api.v1.AuthGrantSearchKey" json:"sorting_column,omitempty"`
- Asc bool `protobuf:"varint,4,opt,name=asc,proto3" json:"asc,omitempty"`
- Queries []*AuthGrantSearchQuery `protobuf:"bytes,5,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ SortingColumn AuthGrantSearchKey `protobuf:"varint,3,opt,name=sorting_column,json=sortingColumn,proto3,enum=caos.zitadel.management.api.v1.AuthGrantSearchKey" json:"sorting_column,omitempty"`
+ Asc bool `protobuf:"varint,4,opt,name=asc,proto3" json:"asc,omitempty"`
+ Queries []*AuthGrantSearchQuery `protobuf:"bytes,5,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *AuthGrantSearchRequest) Reset() {
- *x = AuthGrantSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[132]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *AuthGrantSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*AuthGrantSearchRequest) ProtoMessage() {}
-
-func (x *AuthGrantSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[132]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use AuthGrantSearchRequest.ProtoReflect.Descriptor instead.
+func (m *AuthGrantSearchRequest) Reset() { *m = AuthGrantSearchRequest{} }
+func (m *AuthGrantSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*AuthGrantSearchRequest) ProtoMessage() {}
func (*AuthGrantSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{132}
+ return fileDescriptor_edc174f991dc0a25, []int{132}
}
-func (x *AuthGrantSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *AuthGrantSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_AuthGrantSearchRequest.Unmarshal(m, b)
+}
+func (m *AuthGrantSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_AuthGrantSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *AuthGrantSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_AuthGrantSearchRequest.Merge(m, src)
+}
+func (m *AuthGrantSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_AuthGrantSearchRequest.Size(m)
+}
+func (m *AuthGrantSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_AuthGrantSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_AuthGrantSearchRequest proto.InternalMessageInfo
+
+func (m *AuthGrantSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *AuthGrantSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *AuthGrantSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *AuthGrantSearchRequest) GetSortingColumn() AuthGrantSearchKey {
- if x != nil {
- return x.SortingColumn
+func (m *AuthGrantSearchRequest) GetSortingColumn() AuthGrantSearchKey {
+ if m != nil {
+ return m.SortingColumn
}
return AuthGrantSearchKey_AUTHGRANTSEARCHKEY_UNSPECIFIED
}
-func (x *AuthGrantSearchRequest) GetAsc() bool {
- if x != nil {
- return x.Asc
+func (m *AuthGrantSearchRequest) GetAsc() bool {
+ if m != nil {
+ return m.Asc
}
return false
}
-func (x *AuthGrantSearchRequest) GetQueries() []*AuthGrantSearchQuery {
- if x != nil {
- return x.Queries
+func (m *AuthGrantSearchRequest) GetQueries() []*AuthGrantSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type AuthGrantSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key AuthGrantSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.AuthGrantSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key AuthGrantSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.AuthGrantSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *AuthGrantSearchQuery) Reset() {
- *x = AuthGrantSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[133]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *AuthGrantSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*AuthGrantSearchQuery) ProtoMessage() {}
-
-func (x *AuthGrantSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[133]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use AuthGrantSearchQuery.ProtoReflect.Descriptor instead.
+func (m *AuthGrantSearchQuery) Reset() { *m = AuthGrantSearchQuery{} }
+func (m *AuthGrantSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*AuthGrantSearchQuery) ProtoMessage() {}
func (*AuthGrantSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{133}
+ return fileDescriptor_edc174f991dc0a25, []int{133}
}
-func (x *AuthGrantSearchQuery) GetKey() AuthGrantSearchKey {
- if x != nil {
- return x.Key
+func (m *AuthGrantSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_AuthGrantSearchQuery.Unmarshal(m, b)
+}
+func (m *AuthGrantSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_AuthGrantSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *AuthGrantSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_AuthGrantSearchQuery.Merge(m, src)
+}
+func (m *AuthGrantSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_AuthGrantSearchQuery.Size(m)
+}
+func (m *AuthGrantSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_AuthGrantSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_AuthGrantSearchQuery proto.InternalMessageInfo
+
+func (m *AuthGrantSearchQuery) GetKey() AuthGrantSearchKey {
+ if m != nil {
+ return m.Key
}
return AuthGrantSearchKey_AUTHGRANTSEARCHKEY_UNSPECIFIED
}
-func (x *AuthGrantSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *AuthGrantSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *AuthGrantSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *AuthGrantSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type AuthGrantSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*AuthGrant `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*AuthGrant `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *AuthGrantSearchResponse) Reset() {
- *x = AuthGrantSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[134]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *AuthGrantSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*AuthGrantSearchResponse) ProtoMessage() {}
-
-func (x *AuthGrantSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[134]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use AuthGrantSearchResponse.ProtoReflect.Descriptor instead.
+func (m *AuthGrantSearchResponse) Reset() { *m = AuthGrantSearchResponse{} }
+func (m *AuthGrantSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*AuthGrantSearchResponse) ProtoMessage() {}
func (*AuthGrantSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{134}
+ return fileDescriptor_edc174f991dc0a25, []int{134}
}
-func (x *AuthGrantSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *AuthGrantSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_AuthGrantSearchResponse.Unmarshal(m, b)
+}
+func (m *AuthGrantSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_AuthGrantSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *AuthGrantSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_AuthGrantSearchResponse.Merge(m, src)
+}
+func (m *AuthGrantSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_AuthGrantSearchResponse.Size(m)
+}
+func (m *AuthGrantSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_AuthGrantSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_AuthGrantSearchResponse proto.InternalMessageInfo
+
+func (m *AuthGrantSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *AuthGrantSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *AuthGrantSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *AuthGrantSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *AuthGrantSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *AuthGrantSearchResponse) GetResult() []*AuthGrant {
- if x != nil {
- return x.Result
+func (m *AuthGrantSearchResponse) GetResult() []*AuthGrant {
+ if m != nil {
+ return m.Result
}
return nil
}
type AuthGrant struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- OrgId string `protobuf:"bytes,1,opt,name=orgId,proto3" json:"orgId,omitempty"`
- ProjectId string `protobuf:"bytes,2,opt,name=projectId,proto3" json:"projectId,omitempty"`
- UserId string `protobuf:"bytes,3,opt,name=userId,proto3" json:"userId,omitempty"`
- Roles []string `protobuf:"bytes,4,rep,name=roles,proto3" json:"roles,omitempty"`
+ OrgId string `protobuf:"bytes,1,opt,name=orgId,proto3" json:"orgId,omitempty"`
+ ProjectId string `protobuf:"bytes,2,opt,name=projectId,proto3" json:"projectId,omitempty"`
+ UserId string `protobuf:"bytes,3,opt,name=userId,proto3" json:"userId,omitempty"`
+ Roles []string `protobuf:"bytes,4,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *AuthGrant) Reset() {
- *x = AuthGrant{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[135]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *AuthGrant) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*AuthGrant) ProtoMessage() {}
-
-func (x *AuthGrant) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[135]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
-}
-
-// Deprecated: Use AuthGrant.ProtoReflect.Descriptor instead.
+func (m *AuthGrant) Reset() { *m = AuthGrant{} }
+func (m *AuthGrant) String() string { return proto.CompactTextString(m) }
+func (*AuthGrant) ProtoMessage() {}
func (*AuthGrant) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{135}
+ return fileDescriptor_edc174f991dc0a25, []int{135}
}
-func (x *AuthGrant) GetOrgId() string {
- if x != nil {
- return x.OrgId
+func (m *AuthGrant) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_AuthGrant.Unmarshal(m, b)
+}
+func (m *AuthGrant) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_AuthGrant.Marshal(b, m, deterministic)
+}
+func (m *AuthGrant) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_AuthGrant.Merge(m, src)
+}
+func (m *AuthGrant) XXX_Size() int {
+ return xxx_messageInfo_AuthGrant.Size(m)
+}
+func (m *AuthGrant) XXX_DiscardUnknown() {
+ xxx_messageInfo_AuthGrant.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_AuthGrant proto.InternalMessageInfo
+
+func (m *AuthGrant) GetOrgId() string {
+ if m != nil {
+ return m.OrgId
}
return ""
}
-func (x *AuthGrant) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *AuthGrant) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *AuthGrant) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *AuthGrant) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *AuthGrant) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *AuthGrant) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
-var File_management_proto protoreflect.FileDescriptor
-
-var file_management_proto_rawDesc = []byte{
- 0x0a, 0x10, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x12, 0x1e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61,
- 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
- 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x73,
- 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d,
- 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2c, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x73, 0x77, 0x61, 0x67, 0x67, 0x65, 0x72,
- 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x76, 0x61, 0x6c, 0x69,
- 0x64, 0x61, 0x74, 0x65, 0x2f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x2e,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x18, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
- 0x95, 0x01, 0x0a, 0x03, 0x49, 0x61, 0x6d, 0x12, 0x22, 0x0a, 0x0d, 0x67, 0x6c, 0x6f, 0x62, 0x61,
- 0x6c, 0x5f, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
- 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x4f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x69,
- 0x61, 0x6d, 0x5f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x0c, 0x69, 0x61, 0x6d, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
- 0x64, 0x12, 0x1e, 0x0a, 0x0b, 0x73, 0x65, 0x74, 0x5f, 0x75, 0x70, 0x5f, 0x64, 0x6f, 0x6e, 0x65,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x73, 0x65, 0x74, 0x55, 0x70, 0x44, 0x6f, 0x6e,
- 0x65, 0x12, 0x24, 0x0a, 0x0e, 0x73, 0x65, 0x74, 0x5f, 0x75, 0x70, 0x5f, 0x73, 0x74, 0x61, 0x72,
- 0x74, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x73, 0x65, 0x74, 0x55, 0x70,
- 0x53, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x22, 0x75, 0x0a, 0x0d, 0x43, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x15, 0x0a, 0x06, 0x73, 0x65, 0x63, 0x5f,
- 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x65, 0x63, 0x49, 0x64, 0x12,
- 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05,
- 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63,
- 0x65, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e,
- 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x79,
- 0x0a, 0x07, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x40, 0x0a, 0x07, 0x63, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x61, 0x6e,
- 0x67, 0x65, 0x52, 0x07, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x6f,
- 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66,
- 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0xc5, 0x01, 0x0a, 0x06, 0x43, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64,
- 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65,
- 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74,
- 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65,
- 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06,
- 0x65, 0x64, 0x69, 0x74, 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65, 0x64,
- 0x69, 0x74, 0x6f, 0x72, 0x12, 0x2b, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x05, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74,
- 0x61, 0x22, 0x3e, 0x0a, 0x0d, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x49, 0x44, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
- 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
- 0x64, 0x22, 0x1b, 0x0a, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x44, 0x12, 0x0e,
- 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x18,
- 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x23, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72,
- 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x49, 0x44, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x22, 0x5e, 0x0a,
- 0x11, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x27, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8,
- 0x01, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x05, 0x65,
- 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72,
- 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x22, 0x31, 0x0a,
- 0x12, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65,
- 0x22, 0xe5, 0x05, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x27, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05,
- 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12,
- 0x29, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52,
- 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x27, 0x0a, 0x09, 0x6c, 0x61,
- 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa,
- 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e,
- 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x09, 0x6e, 0x69, 0x63, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01,
- 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2b, 0x0a, 0x0c, 0x64, 0x69,
- 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70,
- 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x37, 0x0a, 0x12, 0x70, 0x72, 0x65, 0x66, 0x65,
- 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20,
- 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x11, 0x70,
- 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65,
- 0x12, 0x3e, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72,
- 0x12, 0x22, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x42,
- 0x0c, 0xfa, 0x42, 0x09, 0x72, 0x07, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x60, 0x01, 0x52, 0x05, 0x65,
- 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c,
- 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x0f, 0x69, 0x73, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64,
- 0x12, 0x1d, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x42,
- 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x18, 0x14, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12,
- 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x69,
- 0x66, 0x69, 0x65, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x50, 0x68,
- 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x22, 0x0a, 0x07, 0x63,
- 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42,
- 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12,
- 0x24, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x0e, 0x20, 0x01, 0x28,
- 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x08, 0x6c, 0x6f, 0x63,
- 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x29, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x5f,
- 0x63, 0x6f, 0x64, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72,
- 0x03, 0x18, 0xc8, 0x01, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65,
- 0x12, 0x20, 0x0a, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x06, 0x72, 0x65, 0x67, 0x69,
- 0x6f, 0x6e, 0x12, 0x2f, 0x0a, 0x0e, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64,
- 0x72, 0x65, 0x73, 0x73, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72,
- 0x03, 0x18, 0xc8, 0x01, 0x52, 0x0d, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72,
- 0x65, 0x73, 0x73, 0x12, 0x23, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18,
- 0x12, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x18, 0x48, 0x52, 0x08,
- 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x93, 0x06, 0x0a, 0x04, 0x55, 0x73, 0x65,
- 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
- 0x64, 0x12, 0x3f, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61,
- 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64,
- 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65,
- 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44,
- 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61,
- 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73,
- 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65,
- 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a,
- 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09,
- 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73,
- 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09,
- 0x6e, 0x69, 0x63, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x65,
- 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18,
- 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64,
- 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x3e, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64,
- 0x65, 0x72, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72,
- 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69,
- 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x2a,
- 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66,
- 0x69, 0x65, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x45, 0x6d, 0x61,
- 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68,
- 0x6f, 0x6e, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65,
- 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x76, 0x65, 0x72,
- 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x50,
- 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x18, 0x0a, 0x07,
- 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63,
- 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69,
- 0x74, 0x79, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69,
- 0x74, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64,
- 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x43,
- 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x18, 0x13, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x73,
- 0x74, 0x72, 0x65, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x14, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65,
- 0x73, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x15,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22, 0x93,
- 0x08, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x3f, 0x0a, 0x05, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x29, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72,
- 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52,
- 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a,
- 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a,
- 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x39, 0x0a, 0x0a, 0x6c, 0x61,
- 0x73, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
- 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x6c, 0x61, 0x73, 0x74,
- 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x45, 0x0a, 0x10, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72,
- 0x64, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
- 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0f, 0x70, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x12, 0x1b, 0x0a, 0x09,
- 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x72,
- 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66,
- 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x61, 0x73, 0x74,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61, 0x73,
- 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73,
- 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x69, 0x63, 0x6b,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63,
- 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72,
- 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x11, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c, 0x61, 0x6e, 0x67,
- 0x75, 0x61, 0x67, 0x65, 0x12, 0x3e, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x0d,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x06, 0x67, 0x65,
- 0x6e, 0x64, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x0e, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73,
- 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18,
- 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65,
- 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18,
- 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x2a, 0x0a, 0x11,
- 0x69, 0x73, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65,
- 0x64, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x50, 0x68, 0x6f, 0x6e, 0x65,
- 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e,
- 0x74, 0x72, 0x79, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74,
- 0x72, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x13,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x1f,
- 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x14, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x12,
- 0x16, 0x0a, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x73, 0x74, 0x72, 0x65, 0x65,
- 0x74, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x0d, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1a,
- 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x17, 0x20, 0x01, 0x28, 0x04,
- 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65,
- 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18, 0x18, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4f, 0x77, 0x6e, 0x65,
- 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73,
- 0x18, 0x19, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x4e, 0x61, 0x6d,
- 0x65, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f,
- 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x12, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c, 0x6f, 0x67, 0x69, 0x6e,
- 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xfe, 0x01, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66,
- 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73,
- 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x5e, 0x0a, 0x0e, 0x73, 0x6f, 0x72, 0x74,
- 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42,
- 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x0d, 0x73, 0x6f, 0x72, 0x74, 0x69,
- 0x6e, 0x67, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x73, 0x63, 0x18,
- 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x61, 0x73, 0x63, 0x12, 0x49, 0x0a, 0x07, 0x71, 0x75,
- 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65,
- 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75,
- 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xb8, 0x01, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x49, 0x0a, 0x03, 0x6b, 0x65, 0x79,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52,
- 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68,
- 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x22, 0xa7, 0x01, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
- 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12,
- 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05,
- 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72,
- 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74,
- 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x40, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75,
- 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69,
- 0x65, 0x77, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0xbf, 0x03, 0x0a, 0x0b, 0x55,
- 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69,
- 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
- 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x61, 0x73,
- 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61,
- 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x69, 0x63, 0x6b, 0x5f, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x4e,
- 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c,
- 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72,
- 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x11, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c, 0x61, 0x6e,
- 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x3e, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18,
- 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x06, 0x67,
- 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61,
- 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61,
- 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x09,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f,
- 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18,
- 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
- 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12,
- 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0b,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
- 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0x96, 0x04, 0x0a,
- 0x0f, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77,
- 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
- 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12,
- 0x1b, 0x0a, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09,
- 0x6e, 0x69, 0x63, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73,
- 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x12,
- 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61,
- 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72,
- 0x72, 0x65, 0x64, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x3e, 0x0a, 0x06, 0x67,
- 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x6e,
- 0x64, 0x65, 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x75,
- 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
- 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69,
- 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f,
- 0x64, 0x61, 0x74, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d,
- 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61,
- 0x74, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x73, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x4e, 0x61,
- 0x6d, 0x65, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64,
- 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x1b, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x12, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c, 0x6f, 0x67, 0x69,
- 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xcb, 0x02, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
- 0x69, 0x64, 0x12, 0x29, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18,
- 0xc8, 0x01, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x27, 0x0a,
- 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x08, 0x6c, 0x61,
- 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x09, 0x6e, 0x69, 0x63, 0x6b, 0x5f, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03,
- 0x18, 0xc8, 0x01, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2b, 0x0a,
- 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20,
- 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x0b, 0x64,
- 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x37, 0x0a, 0x12, 0x70, 0x72,
- 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65,
- 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01,
- 0x52, 0x11, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c, 0x61, 0x6e, 0x67, 0x75,
- 0x61, 0x67, 0x65, 0x12, 0x3e, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x07, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e,
- 0x64, 0x65, 0x72, 0x22, 0xf7, 0x01, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69,
- 0x6c, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
- 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x65, 0x6d,
- 0x61, 0x69, 0x6c, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66,
- 0x69, 0x65, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18,
- 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12,
- 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65,
- 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
- 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65,
- 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18,
- 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
- 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0xfb, 0x01,
- 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x69, 0x65, 0x77, 0x12,
- 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
- 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
- 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x65, 0x6d, 0x61, 0x69,
- 0x6c, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x0f, 0x69, 0x73, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65,
- 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x04, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a,
- 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
- 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b,
- 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52,
- 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0x76, 0x0a, 0x16, 0x55,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x20, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01,
- 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x65, 0x6d,
- 0x61, 0x69, 0x6c, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66,
- 0x69, 0x65, 0x64, 0x22, 0xf7, 0x01, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e,
- 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
- 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x70, 0x68,
- 0x6f, 0x6e, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66,
- 0x69, 0x65, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18,
- 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12,
- 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65,
- 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
- 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65,
- 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18,
- 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
- 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0xfb, 0x01,
- 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12,
- 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
- 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
- 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x70, 0x68, 0x6f, 0x6e,
- 0x65, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x0f, 0x69, 0x73, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65,
- 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a,
- 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
- 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b,
- 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52,
- 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0x75, 0x0a, 0x16, 0x55,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1f, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x42, 0x09, 0xfa, 0x42, 0x06, 0x72, 0x04, 0x10, 0x01, 0x18, 0x14, 0x52,
- 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x70, 0x68, 0x6f,
- 0x6e, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x0f, 0x69, 0x73, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69,
- 0x65, 0x64, 0x22, 0xcd, 0x02, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65,
- 0x73, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
- 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1a, 0x0a, 0x08,
- 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
- 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x74,
- 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70,
- 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x67,
- 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f,
- 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x72,
- 0x65, 0x73, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x74, 0x72, 0x65, 0x65,
- 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69,
- 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f,
- 0x64, 0x61, 0x74, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d,
- 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61,
- 0x74, 0x65, 0x22, 0xd1, 0x02, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65,
- 0x73, 0x73, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72,
- 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79,
- 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x1f, 0x0a, 0x0b,
- 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a,
- 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72,
- 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x5f,
- 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73,
- 0x74, 0x72, 0x65, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1a, 0x0a, 0x08,
- 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08,
- 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
- 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
- 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e,
- 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0xf2, 0x01, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x02, 0x69, 0x64, 0x12, 0x22, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x07,
- 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x24, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c,
- 0x69, 0x74, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03,
- 0x18, 0xc8, 0x01, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x29, 0x0a,
- 0x0b, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01,
- 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x0a, 0x70, 0x6f,
- 0x73, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x06, 0x72, 0x65, 0x67, 0x69,
- 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18,
- 0xc8, 0x01, 0x52, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12, 0x2f, 0x0a, 0x0e, 0x73, 0x74,
- 0x72, 0x65, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x06, 0x20, 0x01,
- 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x0d, 0x73, 0x74,
- 0x72, 0x65, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x22, 0x4f, 0x0a, 0x0c, 0x4d,
- 0x75, 0x6c, 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x12, 0x3f, 0x0a, 0x04, 0x6d,
- 0x66, 0x61, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69,
- 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x04, 0x6d, 0x66, 0x61, 0x73, 0x22, 0x8a, 0x01, 0x0a,
- 0x0b, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x12, 0x3b, 0x0a, 0x04,
- 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x66, 0x61, 0x54,
- 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x3e, 0x0a, 0x05, 0x73, 0x74, 0x61,
- 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x46, 0x41, 0x53, 0x74, 0x61,
- 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x1c, 0x0a, 0x0a, 0x50, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x49, 0x44, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x48, 0x0a, 0x0f, 0x50, 0x61, 0x73, 0x73, 0x77,
- 0x6f, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x25, 0x0a, 0x08, 0x70, 0x61,
- 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x09, 0xfa, 0x42,
- 0x06, 0x72, 0x04, 0x10, 0x01, 0x18, 0x48, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72,
- 0x64, 0x22, 0x26, 0x0a, 0x14, 0x52, 0x65, 0x73, 0x65, 0x74, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x76, 0x0a, 0x1e, 0x53, 0x65, 0x74,
- 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x44, 0x0a, 0x04, 0x74,
- 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70,
- 0x65, 0x22, 0x2c, 0x0a, 0x1a, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d,
- 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x49, 0x44, 0x12,
- 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22,
- 0xef, 0x03, 0x0a, 0x18, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70,
- 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x0e, 0x0a, 0x02,
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x20, 0x0a, 0x0b,
- 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x41,
- 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50,
- 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61,
- 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73,
- 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61,
- 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74,
- 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
- 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12,
- 0x1d, 0x0a, 0x0a, 0x6d, 0x69, 0x6e, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x18, 0x06, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x09, 0x6d, 0x69, 0x6e, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x12, 0x23,
- 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x63, 0x61, 0x73, 0x65, 0x18,
- 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x68, 0x61, 0x73, 0x4c, 0x6f, 0x77, 0x65, 0x72, 0x63,
- 0x61, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x75, 0x70, 0x70, 0x65, 0x72,
- 0x63, 0x61, 0x73, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x68, 0x61, 0x73, 0x55,
- 0x70, 0x70, 0x65, 0x72, 0x63, 0x61, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x5f,
- 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x68, 0x61,
- 0x73, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1d, 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x5f, 0x73,
- 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x68, 0x61, 0x73,
- 0x53, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e,
- 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e,
- 0x63, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
- 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c,
- 0x74, 0x22, 0xf3, 0x01, 0x0a, 0x1e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f,
- 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x43, 0x72,
- 0x65, 0x61, 0x74, 0x65, 0x12, 0x2a, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03,
- 0x18, 0xf4, 0x03, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x69, 0x6e, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x6d, 0x69, 0x6e, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x12,
- 0x23, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x63, 0x61, 0x73, 0x65,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x68, 0x61, 0x73, 0x4c, 0x6f, 0x77, 0x65, 0x72,
- 0x63, 0x61, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x75, 0x70, 0x70, 0x65,
- 0x72, 0x63, 0x61, 0x73, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x68, 0x61, 0x73,
- 0x55, 0x70, 0x70, 0x65, 0x72, 0x63, 0x61, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x68, 0x61, 0x73,
- 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x68,
- 0x61, 0x73, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1d, 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x5f,
- 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x68, 0x61,
- 0x73, 0x53, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x22, 0x83, 0x02, 0x0a, 0x1e, 0x50, 0x61, 0x73, 0x73,
- 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f,
- 0x6c, 0x69, 0x63, 0x79, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x2a, 0x0a, 0x0b, 0x64, 0x65,
- 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42,
- 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xf4, 0x03, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72,
- 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x69, 0x6e, 0x5f, 0x6c, 0x65,
- 0x6e, 0x67, 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x6d, 0x69, 0x6e, 0x4c,
- 0x65, 0x6e, 0x67, 0x74, 0x68, 0x12, 0x23, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x6c, 0x6f, 0x77,
- 0x65, 0x72, 0x63, 0x61, 0x73, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x68, 0x61,
- 0x73, 0x4c, 0x6f, 0x77, 0x65, 0x72, 0x63, 0x61, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x68, 0x61,
- 0x73, 0x5f, 0x75, 0x70, 0x70, 0x65, 0x72, 0x63, 0x61, 0x73, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x0c, 0x68, 0x61, 0x73, 0x55, 0x70, 0x70, 0x65, 0x72, 0x63, 0x61, 0x73, 0x65, 0x12,
- 0x1d, 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x06, 0x20,
- 0x01, 0x28, 0x08, 0x52, 0x09, 0x68, 0x61, 0x73, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1d,
- 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x5f, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x18, 0x07, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x09, 0x68, 0x61, 0x73, 0x53, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x22, 0x25, 0x0a,
- 0x13, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x49, 0x44, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x02, 0x69, 0x64, 0x22, 0x8d, 0x03, 0x0a, 0x11, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72,
- 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65,
- 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x41, 0x0a, 0x05,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x6f, 0x6c,
- 0x69, 0x63, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12,
- 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
- 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65,
- 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18,
- 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
- 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a,
- 0x0c, 0x6d, 0x61, 0x78, 0x5f, 0x61, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x18, 0x06, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x0a, 0x6d, 0x61, 0x78, 0x41, 0x67, 0x65, 0x44, 0x61, 0x79, 0x73, 0x12,
- 0x28, 0x0a, 0x10, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x5f, 0x77, 0x61, 0x72, 0x6e, 0x5f, 0x64,
- 0x61, 0x79, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72,
- 0x65, 0x57, 0x61, 0x72, 0x6e, 0x44, 0x61, 0x79, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71,
- 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71,
- 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x64, 0x65, 0x66, 0x61,
- 0x75, 0x6c, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x44, 0x65, 0x66,
- 0x61, 0x75, 0x6c, 0x74, 0x22, 0x91, 0x01, 0x0a, 0x17, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72,
- 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
- 0x12, 0x2a, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xf4, 0x03, 0x52,
- 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0c,
- 0x6d, 0x61, 0x78, 0x5f, 0x61, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x0a, 0x6d, 0x61, 0x78, 0x41, 0x67, 0x65, 0x44, 0x61, 0x79, 0x73, 0x12, 0x28,
- 0x0a, 0x10, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x5f, 0x77, 0x61, 0x72, 0x6e, 0x5f, 0x64, 0x61,
- 0x79, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65,
- 0x57, 0x61, 0x72, 0x6e, 0x44, 0x61, 0x79, 0x73, 0x22, 0xa1, 0x01, 0x0a, 0x17, 0x50, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x02, 0x69, 0x64, 0x12, 0x2a, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03,
- 0x18, 0xf4, 0x03, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x12, 0x20, 0x0a, 0x0c, 0x6d, 0x61, 0x78, 0x5f, 0x61, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x79, 0x73,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x6d, 0x61, 0x78, 0x41, 0x67, 0x65, 0x44, 0x61,
- 0x79, 0x73, 0x12, 0x28, 0x0a, 0x10, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x5f, 0x77, 0x61, 0x72,
- 0x6e, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x65, 0x78,
- 0x70, 0x69, 0x72, 0x65, 0x57, 0x61, 0x72, 0x6e, 0x44, 0x61, 0x79, 0x73, 0x22, 0x29, 0x0a, 0x17,
- 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50,
- 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x49, 0x44, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x9d, 0x03, 0x0a, 0x15, 0x50, 0x61, 0x73, 0x73,
- 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63,
- 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
- 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x12, 0x41, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52,
- 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,
- 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65,
- 0x44, 0x61, 0x74, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x61, 0x78, 0x5f, 0x61, 0x74, 0x74, 0x65,
- 0x6d, 0x70, 0x74, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x6d, 0x61, 0x78, 0x41,
- 0x74, 0x74, 0x65, 0x6d, 0x70, 0x74, 0x73, 0x12, 0x33, 0x0a, 0x16, 0x73, 0x68, 0x6f, 0x77, 0x5f,
- 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x6f, 0x75, 0x74, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65,
- 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x73, 0x68, 0x6f, 0x77, 0x4c, 0x6f, 0x63,
- 0x6b, 0x4f, 0x75, 0x74, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x73, 0x12, 0x1a, 0x0a, 0x08,
- 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08,
- 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x64,
- 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73,
- 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x22, 0xa1, 0x01, 0x0a, 0x1b, 0x50, 0x61, 0x73, 0x73,
- 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63,
- 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x2a, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72,
- 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42,
- 0x05, 0x72, 0x03, 0x18, 0xf4, 0x03, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x61, 0x78, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6d,
- 0x70, 0x74, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x6d, 0x61, 0x78, 0x41, 0x74,
- 0x74, 0x65, 0x6d, 0x70, 0x74, 0x73, 0x12, 0x33, 0x0a, 0x16, 0x73, 0x68, 0x6f, 0x77, 0x5f, 0x6c,
- 0x6f, 0x63, 0x6b, 0x5f, 0x6f, 0x75, 0x74, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x73,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x73, 0x68, 0x6f, 0x77, 0x4c, 0x6f, 0x63, 0x6b,
- 0x4f, 0x75, 0x74, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x73, 0x22, 0xb1, 0x01, 0x0a, 0x1b,
- 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50,
- 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x2a, 0x0a, 0x0b, 0x64,
- 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xf4, 0x03, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63,
- 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x61, 0x78, 0x5f, 0x61,
- 0x74, 0x74, 0x65, 0x6d, 0x70, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x6d,
- 0x61, 0x78, 0x41, 0x74, 0x74, 0x65, 0x6d, 0x70, 0x74, 0x73, 0x12, 0x33, 0x0a, 0x16, 0x73, 0x68,
- 0x6f, 0x77, 0x5f, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x6f, 0x75, 0x74, 0x5f, 0x66, 0x61, 0x69, 0x6c,
- 0x75, 0x72, 0x65, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x73, 0x68, 0x6f, 0x77,
- 0x4c, 0x6f, 0x63, 0x6b, 0x4f, 0x75, 0x74, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x73, 0x22,
- 0x17, 0x0a, 0x05, 0x4f, 0x72, 0x67, 0x49, 0x44, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x83, 0x02, 0x0a, 0x03, 0x4f, 0x72, 0x67,
- 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
- 0x12, 0x3e, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x28, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x4f, 0x72, 0x67, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65,
- 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74,
- 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
- 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74,
- 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
- 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x12,
- 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
- 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x06,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22, 0x51,
- 0x0a, 0x0a, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x12, 0x43, 0x0a, 0x07,
- 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x29, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f,
- 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x52, 0x07, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
- 0x73, 0x22, 0x8a, 0x02, 0x0a, 0x09, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12,
- 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,
- 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65,
- 0x44, 0x61, 0x74, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x04,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x1a, 0x0a, 0x08,
- 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08,
- 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x72, 0x69, 0x6d,
- 0x61, 0x72, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x70, 0x72, 0x69, 0x6d, 0x61,
- 0x72, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x07,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22, 0x8e,
- 0x02, 0x0a, 0x0d, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x56, 0x69, 0x65, 0x77,
- 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
- 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e,
- 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18,
- 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x1a, 0x0a,
- 0x08, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x08, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x72, 0x69,
- 0x6d, 0x61, 0x72, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x70, 0x72, 0x69, 0x6d,
- 0x61, 0x72, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18,
- 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22,
- 0x39, 0x0a, 0x13, 0x41, 0x64, 0x64, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18,
- 0xc8, 0x01, 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x22, 0x3c, 0x0a, 0x16, 0x52, 0x65,
- 0x6d, 0x6f, 0x76, 0x65, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01,
- 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x22, 0xb1, 0x01, 0x0a, 0x17, 0x4f, 0x72, 0x67,
- 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05,
- 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d,
- 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75,
- 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52,
- 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x45, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18,
- 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
- 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x96, 0x01, 0x0a,
- 0x16, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
- 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12,
- 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05,
- 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x4e, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73,
- 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69,
- 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75,
- 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xc2, 0x01, 0x0a, 0x14, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d,
- 0x61, 0x69, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x4e,
- 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67,
- 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42,
- 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44,
- 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65,
- 0x74, 0x68, 0x6f, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x26, 0x0a, 0x0e, 0x4f, 0x72,
- 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x14, 0x0a, 0x05,
- 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c,
- 0x65, 0x73, 0x22, 0xd4, 0x01, 0x0a, 0x09, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72,
- 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c,
- 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x12,
- 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
- 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52,
- 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a,
- 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22, 0x44, 0x0a, 0x13, 0x41, 0x64, 0x64,
- 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c,
- 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x22,
- 0x47, 0x0a, 0x16, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62,
- 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65,
- 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
- 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28,
- 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0x31, 0x0a, 0x16, 0x52, 0x65, 0x6d, 0x6f,
- 0x76, 0x65, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0xb1, 0x01, 0x0a, 0x17,
- 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
- 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12,
- 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05,
- 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72,
- 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74,
- 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x45, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75,
- 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d,
- 0x62, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22,
- 0xc7, 0x02, 0x0a, 0x0d, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x56, 0x69, 0x65,
- 0x77, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f,
- 0x6c, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73,
- 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
- 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a,
- 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
- 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a,
- 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04,
- 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73,
- 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75,
- 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c,
- 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1d, 0x0a,
- 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09,
- 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x96, 0x01, 0x0a, 0x16, 0x4f, 0x72,
- 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05,
- 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d,
- 0x69, 0x74, 0x12, 0x4e, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x03, 0x20,
- 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69,
- 0x65, 0x73, 0x22, 0xc2, 0x01, 0x0a, 0x14, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x4e, 0x0a, 0x03, 0x6b,
- 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d,
- 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42,
- 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x06, 0x6d,
- 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f,
- 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x36, 0x0a, 0x14, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x1e, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa,
- 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22,
- 0x46, 0x0a, 0x14, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8,
- 0x01, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xad, 0x01, 0x0a, 0x15, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d,
- 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12,
- 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75,
- 0x6c, 0x74, 0x12, 0x43, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03,
- 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x56, 0x69, 0x65, 0x77, 0x52,
- 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0xc5, 0x02, 0x0a, 0x0b, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x56, 0x69, 0x65, 0x77, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x42, 0x0a, 0x05, 0x73, 0x74,
- 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3b,
- 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52,
- 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x25, 0x0a, 0x0e,
- 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18, 0x06,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4f, 0x77,
- 0x6e, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18,
- 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22,
- 0x92, 0x01, 0x0a, 0x14, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73,
- 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
- 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x4c, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65,
- 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65,
- 0x72, 0x69, 0x65, 0x73, 0x22, 0xbe, 0x01, 0x0a, 0x12, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x4c, 0x0a, 0x03, 0x6b,
- 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82,
- 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x06, 0x6d, 0x65, 0x74,
- 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12,
- 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x4f, 0x0a, 0x08, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x73, 0x12, 0x43, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x18, 0x01, 0x20,
- 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x08, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x22, 0x8b, 0x02, 0x0a, 0x07, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
- 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x42, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x53, 0x74,
- 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
- 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
- 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x65, 0x22, 0x2a, 0x0a, 0x12, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d,
- 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f,
- 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73,
- 0x22, 0xd8, 0x01, 0x0a, 0x0d, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62,
- 0x65, 0x72, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72,
- 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65,
- 0x73, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
- 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3f,
- 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18,
- 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
- 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12,
- 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22, 0x51, 0x0a, 0x10, 0x50,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12,
- 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
- 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65,
- 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0x54,
- 0x0a, 0x13, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x43,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14,
- 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72,
- 0x6f, 0x6c, 0x65, 0x73, 0x22, 0x3e, 0x0a, 0x13, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d,
- 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75,
- 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73,
- 0x65, 0x72, 0x49, 0x64, 0x22, 0x6b, 0x0a, 0x0e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52,
- 0x6f, 0x6c, 0x65, 0x41, 0x64, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70,
- 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
- 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x67,
- 0x72, 0x6f, 0x75, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x67, 0x72, 0x6f, 0x75,
- 0x70, 0x22, 0x6e, 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65,
- 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70,
- 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
- 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x67,
- 0x72, 0x6f, 0x75, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x67, 0x72, 0x6f, 0x75,
- 0x70, 0x22, 0x91, 0x02, 0x0a, 0x0b, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c,
- 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64,
- 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b,
- 0x65, 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61,
- 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
- 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,
- 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65,
- 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69,
- 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44,
- 0x61, 0x74, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x06, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71,
- 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71,
- 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22, 0xd8, 0x01, 0x0a, 0x0f, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69,
- 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3f, 0x0a,
- 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
- 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x14,
- 0x0a, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x67,
- 0x72, 0x6f, 0x75, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65,
- 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65,
- 0x22, 0x35, 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x52,
- 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0xb5, 0x01, 0x0a, 0x19, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a,
- 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69,
- 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73,
- 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c,
- 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x47, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
- 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52,
- 0x6f, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22,
- 0xb9, 0x01, 0x0a, 0x18, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f,
- 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66,
- 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x50, 0x0a, 0x07, 0x71, 0x75, 0x65,
- 0x72, 0x69, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65,
- 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xc6, 0x01, 0x0a, 0x16,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x50, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01,
- 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68,
- 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x14,
- 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x22, 0xcb, 0x02, 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73,
- 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65,
- 0x72, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65,
- 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f,
- 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73,
- 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61,
- 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61,
- 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28,
- 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e,
- 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,
- 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e,
- 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e,
- 0x63, 0x65, 0x22, 0xb9, 0x01, 0x0a, 0x1b, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65,
- 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69,
- 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,
- 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73,
- 0x75, 0x6c, 0x74, 0x12, 0x49, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20,
- 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62,
- 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0xbd,
- 0x01, 0x0a, 0x1a, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a,
- 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66,
- 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x52, 0x0a, 0x07, 0x71, 0x75,
- 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xca,
- 0x01, 0x0a, 0x18, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x52, 0x0a, 0x03, 0x6b,
- 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x36, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79,
- 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
- 0x44, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x06, 0x6d,
- 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0xe8, 0x02, 0x0a, 0x0b,
- 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x3e, 0x0a, 0x05, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x53,
- 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b,
- 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x4d, 0x0a,
- 0x0b, 0x6f, 0x69, 0x64, 0x63, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x08, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00,
- 0x52, 0x0a, 0x6f, 0x69, 0x64, 0x63, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x1a, 0x0a, 0x08,
- 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08,
- 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x61, 0x70, 0x70, 0x5f,
- 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22, 0x62, 0x0a, 0x11, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x04, 0x6e, 0x61,
- 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10,
- 0x01, 0x18, 0xc8, 0x01, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x95, 0x04, 0x0a, 0x0a, 0x4f,
- 0x49, 0x44, 0x43, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x64,
- 0x69, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x75, 0x72, 0x69, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x0c, 0x72, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x55, 0x72, 0x69, 0x73, 0x12, 0x57,
- 0x0a, 0x0e, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73,
- 0x18, 0x02, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0d, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x4e, 0x0a, 0x0b, 0x67, 0x72, 0x61, 0x6e, 0x74,
- 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49,
- 0x44, 0x43, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0a, 0x67, 0x72, 0x61,
- 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x5e, 0x0a, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x0e, 0x32, 0x33, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e,
- 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65,
- 0x6e, 0x74, 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x73,
- 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x6c, 0x69,
- 0x65, 0x6e, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x5c, 0x0a, 0x10, 0x61, 0x75, 0x74,
- 0x68, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x75, 0x74, 0x68, 0x4d, 0x65, 0x74,
- 0x68, 0x6f, 0x64, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0e, 0x61, 0x75, 0x74, 0x68, 0x4d, 0x65, 0x74,
- 0x68, 0x6f, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x39, 0x0a, 0x19, 0x70, 0x6f, 0x73, 0x74, 0x5f,
- 0x6c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x5f, 0x72, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x5f,
- 0x75, 0x72, 0x69, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x16, 0x70, 0x6f, 0x73, 0x74,
- 0x4c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x55, 0x72,
- 0x69, 0x73, 0x22, 0x9d, 0x04, 0x0a, 0x15, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x70, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x0a, 0x0a,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x04, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05,
- 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x72,
- 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x75, 0x72, 0x69, 0x73, 0x18, 0x03, 0x20, 0x03,
- 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x55, 0x72, 0x69, 0x73,
- 0x12, 0x57, 0x0a, 0x0e, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x74, 0x79, 0x70,
- 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0d, 0x72, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x4e, 0x0a, 0x0b, 0x67, 0x72, 0x61,
- 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2d,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x4f, 0x49, 0x44, 0x43, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0a, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x5e, 0x0a, 0x10, 0x61, 0x70, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x33, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x5c, 0x0a, 0x10, 0x61, 0x75, 0x74,
- 0x68, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x75, 0x74, 0x68, 0x4d, 0x65, 0x74,
- 0x68, 0x6f, 0x64, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0e, 0x61, 0x75, 0x74, 0x68, 0x4d, 0x65, 0x74,
- 0x68, 0x6f, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x39, 0x0a, 0x19, 0x70, 0x6f, 0x73, 0x74, 0x5f,
- 0x6c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x5f, 0x72, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x5f,
- 0x75, 0x72, 0x69, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x16, 0x70, 0x6f, 0x73, 0x74,
- 0x4c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x55, 0x72,
- 0x69, 0x73, 0x22, 0x9f, 0x04, 0x0a, 0x10, 0x4f, 0x49, 0x44, 0x43, 0x43, 0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d,
- 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x23, 0x0a,
- 0x0d, 0x72, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x75, 0x72, 0x69, 0x73, 0x18, 0x03,
- 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x55, 0x72,
- 0x69, 0x73, 0x12, 0x57, 0x0a, 0x0e, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x74,
- 0x79, 0x70, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0d, 0x72, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x4e, 0x0a, 0x0b, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0e,
- 0x32, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52,
- 0x0a, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x5e, 0x0a, 0x10, 0x61,
- 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
- 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x33, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x70, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0f, 0x61, 0x70, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x5c, 0x0a, 0x10, 0x61,
- 0x75, 0x74, 0x68, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
- 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x75, 0x74, 0x68, 0x4d,
- 0x65, 0x74, 0x68, 0x6f, 0x64, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0e, 0x61, 0x75, 0x74, 0x68, 0x4d,
- 0x65, 0x74, 0x68, 0x6f, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x39, 0x0a, 0x19, 0x70, 0x6f, 0x73,
- 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x5f, 0x72, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63,
- 0x74, 0x5f, 0x75, 0x72, 0x69, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x16, 0x70, 0x6f,
- 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74,
- 0x55, 0x72, 0x69, 0x73, 0x22, 0x33, 0x0a, 0x0c, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
- 0x63, 0x72, 0x65, 0x74, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x73,
- 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x6c, 0x69,
- 0x65, 0x6e, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x22, 0xec, 0x02, 0x0a, 0x0f, 0x41, 0x70,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a,
- 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x3e, 0x0a,
- 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70,
- 0x70, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a,
- 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
- 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b,
- 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52,
- 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
- 0x4d, 0x0a, 0x0b, 0x6f, 0x69, 0x64, 0x63, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x08,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
- 0x48, 0x00, 0x52, 0x0a, 0x6f, 0x69, 0x64, 0x63, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x1a,
- 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04,
- 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x61, 0x70,
- 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22, 0xb5, 0x01, 0x0a, 0x19, 0x41, 0x70, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14,
- 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c,
- 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65,
- 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61,
- 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x47, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c,
- 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
- 0x22, 0xb9, 0x01, 0x0a, 0x18, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a,
- 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66,
- 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x50, 0x0a, 0x07, 0x71, 0x75,
- 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75,
- 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xc6, 0x01, 0x0a,
- 0x16, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x50, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82,
- 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x06, 0x6d, 0x65, 0x74,
- 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12,
- 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0xe3, 0x02, 0x0a, 0x0c, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64,
- 0x5f, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x4f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x72,
- 0x6f, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08,
- 0x72, 0x6f, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x47, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x31, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61,
- 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73,
- 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61,
- 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74,
- 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
- 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12,
- 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22, 0x76, 0x0a, 0x12, 0x50,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74,
- 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64,
- 0x12, 0x24, 0x0a, 0x0e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x72, 0x67, 0x5f,
- 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x65,
- 0x64, 0x4f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x6b,
- 0x65, 0x79, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x72, 0x6f, 0x6c, 0x65, 0x4b,
- 0x65, 0x79, 0x73, 0x22, 0x60, 0x0a, 0x12, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72,
- 0x61, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x6f, 0x6c, 0x65,
- 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x72, 0x6f, 0x6c,
- 0x65, 0x4b, 0x65, 0x79, 0x73, 0x22, 0x3f, 0x0a, 0x0e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0xe2, 0x03, 0x0a, 0x10, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x67, 0x72,
- 0x61, 0x6e, 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0c, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x4f, 0x72, 0x67, 0x49, 0x64,
- 0x12, 0x28, 0x0a, 0x10, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x72, 0x67, 0x5f,
- 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x67, 0x72, 0x61, 0x6e,
- 0x74, 0x65, 0x64, 0x4f, 0x72, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2c, 0x0a, 0x12, 0x67, 0x72,
- 0x61, 0x6e, 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x72, 0x67, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
- 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x4f,
- 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x6f, 0x6c, 0x65,
- 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x72, 0x6f, 0x6c,
- 0x65, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x47, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x07,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x31, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f,
- 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18,
- 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
- 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12,
- 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x09,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
- 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x21, 0x0a, 0x0c,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12,
- 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22, 0xb7, 0x01, 0x0a, 0x1a,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66,
- 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73,
- 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61,
- 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b,
- 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x48, 0x0a, 0x06, 0x72,
- 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72,
- 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x68, 0x0a, 0x19, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
- 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d,
- 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22,
- 0x99, 0x01, 0x0a, 0x1b, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x4c, 0x0a,
- 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x32,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65,
- 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0x2f, 0x0a, 0x17, 0x50,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65,
- 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18,
- 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0xdd, 0x01, 0x0a,
- 0x12, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d,
- 0x62, 0x65, 0x72, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05,
- 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c,
- 0x65, 0x73, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74,
- 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
- 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12,
- 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
- 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65,
- 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22, 0x80, 0x01, 0x0a,
- 0x15, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d,
- 0x62, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69,
- 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64,
- 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c,
- 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x22,
- 0x83, 0x01, 0x0a, 0x18, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x1d, 0x0a, 0x0a,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69,
- 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12,
- 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05,
- 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0x6d, 0x0a, 0x18, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x6d, 0x6f, 0x76,
- 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64,
- 0x12, 0x19, 0x0a, 0x08, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x07, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75,
- 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73,
- 0x65, 0x72, 0x49, 0x64, 0x22, 0xd0, 0x02, 0x0a, 0x16, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x12,
- 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65,
- 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x03,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x66,
- 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x61,
- 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c,
- 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73,
- 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x3b, 0x0a,
- 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a,
- 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72,
- 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73,
- 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73,
- 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22, 0xc3, 0x01, 0x0a, 0x20, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06,
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66,
- 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f,
- 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04,
- 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x4e, 0x0a,
- 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x36, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65,
- 0x72, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0xe2, 0x01,
- 0x0a, 0x1f, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65,
- 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64,
- 0x12, 0x19, 0x0a, 0x08, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x07, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f,
- 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66,
- 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x57, 0x0a, 0x07, 0x71, 0x75, 0x65,
- 0x72, 0x69, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69,
- 0x65, 0x73, 0x22, 0xd4, 0x01, 0x0a, 0x1d, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72,
- 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51,
- 0x75, 0x65, 0x72, 0x79, 0x12, 0x57, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x0e, 0x32, 0x3b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d,
- 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08,
- 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a,
- 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74,
- 0x68, 0x6f, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0xe7, 0x02, 0x0a, 0x09, 0x55, 0x73,
- 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f,
- 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
- 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x6b,
- 0x65, 0x79, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x72, 0x6f, 0x6c, 0x65, 0x4b,
- 0x65, 0x79, 0x73, 0x12, 0x44, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x74, 0x61,
- 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
- 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63, 0x72,
- 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
- 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65,
- 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65,
- 0x6e, 0x63, 0x65, 0x22, 0x66, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12,
- 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b,
- 0x0a, 0x09, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
- 0x09, 0x52, 0x08, 0x72, 0x6f, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x22, 0x57, 0x0a, 0x0f, 0x55,
- 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x17,
- 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x6f, 0x6c, 0x65, 0x5f,
- 0x6b, 0x65, 0x79, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x72, 0x6f, 0x6c, 0x65,
- 0x4b, 0x65, 0x79, 0x73, 0x22, 0x36, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e,
- 0x74, 0x49, 0x44, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02,
- 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x5c, 0x0a, 0x12,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x49, 0x44, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
- 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x7d, 0x0a, 0x16, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f,
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02,
- 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1b, 0x0a, 0x09,
- 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52,
- 0x08, 0x72, 0x6f, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x22, 0x6c, 0x0a, 0x17, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x49, 0x44, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f,
- 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x17,
- 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0xbc, 0x01, 0x0a, 0x1b, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e,
- 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f,
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
- 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49,
- 0x64, 0x12, 0x26, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18,
- 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x09,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x6f, 0x6c,
- 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x72, 0x6f,
- 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x22, 0x8d, 0x01, 0x0a, 0x1b, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x5f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64,
- 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x6f, 0x6c,
- 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x72, 0x6f,
- 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x22, 0xde, 0x04, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x47,
- 0x72, 0x61, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72,
- 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
- 0x64, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x6f, 0x6c, 0x65, 0x5f,
- 0x6b, 0x65, 0x79, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x72, 0x6f, 0x6c, 0x65,
- 0x4b, 0x65, 0x79, 0x73, 0x12, 0x44, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x74,
- 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72,
- 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
- 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65,
- 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74,
- 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d,
- 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x72, 0x67, 0x5f, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x72, 0x67, 0x4e, 0x61,
- 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72, 0x67, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
- 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69,
- 0x6e, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65,
- 0x18, 0x10, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65,
- 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6f, 0x77, 0x6e,
- 0x65, 0x72, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72,
- 0x63, 0x65, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x22, 0xb1, 0x01, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c,
- 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69,
- 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c,
- 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65,
- 0x73, 0x75, 0x6c, 0x74, 0x12, 0x45, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04,
- 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x56,
- 0x69, 0x65, 0x77, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x96, 0x01, 0x0a, 0x16,
- 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14,
- 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c,
- 0x69, 0x6d, 0x69, 0x74, 0x12, 0x4e, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18,
- 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65,
- 0x72, 0x69, 0x65, 0x73, 0x22, 0xcc, 0x01, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x4e, 0x0a,
- 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08,
- 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x4e, 0x0a,
- 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x42, 0x08, 0xfa, 0x42, 0x05,
- 0x82, 0x01, 0x02, 0x18, 0x00, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x14, 0x0a,
- 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x22, 0xbc, 0x01, 0x0a, 0x1d, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55,
- 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05,
- 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d,
- 0x69, 0x74, 0x12, 0x4e, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x04, 0x20,
- 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69,
- 0x65, 0x73, 0x22, 0xcc, 0x01, 0x0a, 0x22, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72,
- 0x61, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e,
- 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c,
- 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69,
- 0x74, 0x12, 0x4e, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03,
- 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65,
- 0x73, 0x22, 0x8d, 0x02, 0x0a, 0x16, 0x41, 0x75, 0x74, 0x68, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66,
- 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x63, 0x0a, 0x0e, 0x73, 0x6f,
- 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00,
- 0x52, 0x0d, 0x73, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x12,
- 0x10, 0x0a, 0x03, 0x61, 0x73, 0x63, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x61, 0x73,
- 0x63, 0x12, 0x4e, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03,
- 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65,
- 0x73, 0x22, 0xcc, 0x01, 0x0a, 0x14, 0x41, 0x75, 0x74, 0x68, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x4e, 0x0a, 0x03, 0x6b, 0x65,
- 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05,
- 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x4e, 0x0a, 0x06, 0x6d, 0x65,
- 0x74, 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02,
- 0x18, 0x00, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x22, 0xad, 0x01, 0x0a, 0x17, 0x41, 0x75, 0x74, 0x68, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06,
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66,
- 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f,
- 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04,
- 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x41, 0x0a,
- 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x29, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41,
- 0x75, 0x74, 0x68, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
- 0x22, 0x6d, 0x0a, 0x09, 0x41, 0x75, 0x74, 0x68, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x14, 0x0a,
- 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72,
- 0x67, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
- 0x64, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c,
- 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x2a,
- 0xaf, 0x01, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x19, 0x0a,
- 0x15, 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45,
- 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x14, 0x0a, 0x10, 0x55, 0x53, 0x45, 0x52,
- 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x16,
- 0x0a, 0x12, 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x41, 0x43,
- 0x54, 0x49, 0x56, 0x45, 0x10, 0x02, 0x12, 0x15, 0x0a, 0x11, 0x55, 0x53, 0x45, 0x52, 0x53, 0x54,
- 0x41, 0x54, 0x45, 0x5f, 0x44, 0x45, 0x4c, 0x45, 0x54, 0x45, 0x44, 0x10, 0x03, 0x12, 0x14, 0x0a,
- 0x10, 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x45,
- 0x44, 0x10, 0x04, 0x12, 0x15, 0x0a, 0x11, 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45,
- 0x5f, 0x53, 0x55, 0x53, 0x50, 0x45, 0x4e, 0x44, 0x10, 0x05, 0x12, 0x15, 0x0a, 0x11, 0x55, 0x53,
- 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x49, 0x54, 0x49, 0x41, 0x4c, 0x10,
- 0x06, 0x2a, 0x58, 0x0a, 0x06, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x12, 0x47,
- 0x45, 0x4e, 0x44, 0x45, 0x52, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45,
- 0x44, 0x10, 0x00, 0x12, 0x11, 0x0a, 0x0d, 0x47, 0x45, 0x4e, 0x44, 0x45, 0x52, 0x5f, 0x46, 0x45,
- 0x4d, 0x41, 0x4c, 0x45, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x47, 0x45, 0x4e, 0x44, 0x45, 0x52,
- 0x5f, 0x4d, 0x41, 0x4c, 0x45, 0x10, 0x02, 0x12, 0x12, 0x0a, 0x0e, 0x47, 0x45, 0x4e, 0x44, 0x45,
- 0x52, 0x5f, 0x44, 0x49, 0x56, 0x45, 0x52, 0x53, 0x45, 0x10, 0x03, 0x2a, 0xf5, 0x01, 0x0a, 0x0d,
- 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x1d, 0x0a,
- 0x19, 0x55, 0x53, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55,
- 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1b, 0x0a, 0x17,
- 0x55, 0x53, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x53,
- 0x45, 0x52, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x01, 0x12, 0x1c, 0x0a, 0x18, 0x55, 0x53, 0x45,
- 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x46, 0x49, 0x52, 0x53, 0x54,
- 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x02, 0x12, 0x1b, 0x0a, 0x17, 0x55, 0x53, 0x45, 0x52, 0x53,
- 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x4c, 0x41, 0x53, 0x54, 0x5f, 0x4e, 0x41,
- 0x4d, 0x45, 0x10, 0x03, 0x12, 0x1b, 0x0a, 0x17, 0x55, 0x53, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52,
- 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x4e, 0x49, 0x43, 0x4b, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10,
- 0x04, 0x12, 0x1e, 0x0a, 0x1a, 0x55, 0x53, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b,
- 0x45, 0x59, 0x5f, 0x44, 0x49, 0x53, 0x50, 0x4c, 0x41, 0x59, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10,
- 0x05, 0x12, 0x17, 0x0a, 0x13, 0x55, 0x53, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b,
- 0x45, 0x59, 0x5f, 0x45, 0x4d, 0x41, 0x49, 0x4c, 0x10, 0x06, 0x12, 0x17, 0x0a, 0x13, 0x55, 0x53,
- 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x53, 0x54, 0x41, 0x54,
- 0x45, 0x10, 0x07, 0x2a, 0xd6, 0x01, 0x0a, 0x0c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65,
- 0x74, 0x68, 0x6f, 0x64, 0x12, 0x17, 0x0a, 0x13, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45,
- 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x45, 0x51, 0x55, 0x41, 0x4c, 0x53, 0x10, 0x00, 0x12, 0x1c, 0x0a,
- 0x18, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x53, 0x54,
- 0x41, 0x52, 0x54, 0x53, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x10, 0x01, 0x12, 0x19, 0x0a, 0x15, 0x53,
- 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x43, 0x4f, 0x4e, 0x54,
- 0x41, 0x49, 0x4e, 0x53, 0x10, 0x02, 0x12, 0x23, 0x0a, 0x1f, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48,
- 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x45, 0x51, 0x55, 0x41, 0x4c, 0x53, 0x5f, 0x49, 0x47,
- 0x4e, 0x4f, 0x52, 0x45, 0x5f, 0x43, 0x41, 0x53, 0x45, 0x10, 0x03, 0x12, 0x28, 0x0a, 0x24, 0x53,
- 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x53, 0x54, 0x41, 0x52,
- 0x54, 0x53, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x5f, 0x49, 0x47, 0x4e, 0x4f, 0x52, 0x45, 0x5f, 0x43,
- 0x41, 0x53, 0x45, 0x10, 0x04, 0x12, 0x25, 0x0a, 0x21, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d,
- 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x41, 0x49, 0x4e, 0x53, 0x5f, 0x49,
- 0x47, 0x4e, 0x4f, 0x52, 0x45, 0x5f, 0x43, 0x41, 0x53, 0x45, 0x10, 0x05, 0x2a, 0x44, 0x0a, 0x07,
- 0x4d, 0x66, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a, 0x13, 0x4d, 0x46, 0x41, 0x54, 0x59,
- 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00,
- 0x12, 0x0f, 0x0a, 0x0b, 0x4d, 0x46, 0x41, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x53, 0x4d, 0x53, 0x10,
- 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x4d, 0x46, 0x41, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4f, 0x54, 0x50,
- 0x10, 0x02, 0x2a, 0x66, 0x0a, 0x08, 0x4d, 0x46, 0x41, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x18,
- 0x0a, 0x14, 0x4d, 0x46, 0x41, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45,
- 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x16, 0x0a, 0x12, 0x4d, 0x46, 0x41, 0x53,
- 0x54, 0x41, 0x54, 0x45, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x52, 0x45, 0x41, 0x44, 0x59, 0x10, 0x01,
- 0x12, 0x12, 0x0a, 0x0e, 0x4d, 0x46, 0x41, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x52, 0x45, 0x41,
- 0x44, 0x59, 0x10, 0x02, 0x12, 0x14, 0x0a, 0x10, 0x4d, 0x46, 0x41, 0x53, 0x54, 0x41, 0x54, 0x45,
- 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x2a, 0x48, 0x0a, 0x10, 0x4e, 0x6f,
- 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a,
- 0x0a, 0x16, 0x4e, 0x4f, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x54, 0x59,
- 0x50, 0x45, 0x5f, 0x45, 0x4d, 0x41, 0x49, 0x4c, 0x10, 0x00, 0x12, 0x18, 0x0a, 0x14, 0x4e, 0x4f,
- 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x53,
- 0x4d, 0x53, 0x10, 0x01, 0x2a, 0x75, 0x0a, 0x0b, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, 0x74,
- 0x61, 0x74, 0x65, 0x12, 0x1b, 0x0a, 0x17, 0x50, 0x4f, 0x4c, 0x49, 0x43, 0x59, 0x53, 0x54, 0x41,
- 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00,
- 0x12, 0x16, 0x0a, 0x12, 0x50, 0x4f, 0x4c, 0x49, 0x43, 0x59, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f,
- 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x18, 0x0a, 0x14, 0x50, 0x4f, 0x4c, 0x49,
- 0x43, 0x59, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45,
- 0x10, 0x02, 0x12, 0x17, 0x0a, 0x13, 0x50, 0x4f, 0x4c, 0x49, 0x43, 0x59, 0x53, 0x54, 0x41, 0x54,
- 0x45, 0x5f, 0x44, 0x45, 0x4c, 0x45, 0x54, 0x45, 0x44, 0x10, 0x03, 0x2a, 0x50, 0x0a, 0x08, 0x4f,
- 0x72, 0x67, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x14, 0x4f, 0x52, 0x47, 0x53, 0x54,
- 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
- 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x4f, 0x52, 0x47, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x41, 0x43,
- 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x15, 0x0a, 0x11, 0x4f, 0x52, 0x47, 0x53, 0x54, 0x41,
- 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x02, 0x2a, 0x57, 0x0a,
- 0x12, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x4b, 0x65, 0x79, 0x12, 0x22, 0x0a, 0x1e, 0x4f, 0x52, 0x47, 0x44, 0x4f, 0x4d, 0x41, 0x49, 0x4e,
- 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
- 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1d, 0x0a, 0x19, 0x4f, 0x52, 0x47, 0x44, 0x4f,
- 0x4d, 0x41, 0x49, 0x4e, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x44, 0x4f,
- 0x4d, 0x41, 0x49, 0x4e, 0x10, 0x01, 0x2a, 0xbb, 0x01, 0x0a, 0x12, 0x4f, 0x72, 0x67, 0x4d, 0x65,
- 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x22, 0x0a,
- 0x1e, 0x4f, 0x52, 0x47, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48,
- 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
- 0x00, 0x12, 0x21, 0x0a, 0x1d, 0x4f, 0x52, 0x47, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45,
- 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x46, 0x49, 0x52, 0x53, 0x54, 0x5f, 0x4e, 0x41,
- 0x4d, 0x45, 0x10, 0x01, 0x12, 0x20, 0x0a, 0x1c, 0x4f, 0x52, 0x47, 0x4d, 0x45, 0x4d, 0x42, 0x45,
- 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x4c, 0x41, 0x53, 0x54, 0x5f,
- 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x02, 0x12, 0x1c, 0x0a, 0x18, 0x4f, 0x52, 0x47, 0x4d, 0x45, 0x4d,
- 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x45, 0x4d, 0x41,
- 0x49, 0x4c, 0x10, 0x03, 0x12, 0x1e, 0x0a, 0x1a, 0x4f, 0x52, 0x47, 0x4d, 0x45, 0x4d, 0x42, 0x45,
- 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f,
- 0x49, 0x44, 0x10, 0x04, 0x2a, 0x57, 0x0a, 0x10, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x20, 0x0a, 0x1c, 0x50, 0x52, 0x4f, 0x4a,
- 0x45, 0x43, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53,
- 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x21, 0x0a, 0x1d, 0x50, 0x52,
- 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x50,
- 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x01, 0x2a, 0x60, 0x0a,
- 0x0c, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1c, 0x0a,
- 0x18, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e,
- 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x17, 0x0a, 0x13, 0x50,
- 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49,
- 0x56, 0x45, 0x10, 0x01, 0x12, 0x19, 0x0a, 0x15, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x53,
- 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x02, 0x2a,
- 0x5a, 0x0a, 0x0b, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1b,
- 0x0a, 0x17, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e,
- 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x15, 0x0a, 0x11, 0x50,
- 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4f, 0x57, 0x4e, 0x45, 0x44,
- 0x10, 0x01, 0x12, 0x17, 0x0a, 0x13, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x54, 0x59, 0x50,
- 0x45, 0x5f, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x45, 0x44, 0x10, 0x02, 0x2a, 0x81, 0x01, 0x0a, 0x14,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x4b, 0x65, 0x79, 0x12, 0x24, 0x0a, 0x20, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x52,
- 0x4f, 0x4c, 0x45, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53,
- 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1c, 0x0a, 0x18, 0x50, 0x52,
- 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x52, 0x4f, 0x4c, 0x45, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b,
- 0x45, 0x59, 0x5f, 0x4b, 0x45, 0x59, 0x10, 0x01, 0x12, 0x25, 0x0a, 0x21, 0x50, 0x52, 0x4f, 0x4a,
- 0x45, 0x43, 0x54, 0x52, 0x4f, 0x4c, 0x45, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59,
- 0x5f, 0x44, 0x49, 0x53, 0x50, 0x4c, 0x41, 0x59, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x02, 0x2a,
- 0xf9, 0x01, 0x0a, 0x16, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65,
- 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x26, 0x0a, 0x22, 0x50, 0x52,
- 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43,
- 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44,
- 0x10, 0x00, 0x12, 0x25, 0x0a, 0x21, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x4d, 0x45, 0x4d,
- 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x46, 0x49, 0x52,
- 0x53, 0x54, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x01, 0x12, 0x24, 0x0a, 0x20, 0x50, 0x52, 0x4f,
- 0x4a, 0x45, 0x43, 0x54, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48,
- 0x4b, 0x45, 0x59, 0x5f, 0x4c, 0x41, 0x53, 0x54, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x02, 0x12,
- 0x20, 0x0a, 0x1c, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52,
- 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x45, 0x4d, 0x41, 0x49, 0x4c, 0x10,
- 0x03, 0x12, 0x22, 0x0a, 0x1e, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x4d, 0x45, 0x4d, 0x42,
- 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x53, 0x45, 0x52,
- 0x5f, 0x49, 0x44, 0x10, 0x04, 0x12, 0x24, 0x0a, 0x20, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54,
- 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f,
- 0x55, 0x53, 0x45, 0x52, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x05, 0x2a, 0x50, 0x0a, 0x08, 0x41,
- 0x70, 0x70, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x14, 0x41, 0x50, 0x50, 0x53, 0x54,
- 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
- 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x41, 0x50, 0x50, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x41, 0x43,
- 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x15, 0x0a, 0x11, 0x41, 0x50, 0x50, 0x53, 0x54, 0x41,
- 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x02, 0x2a, 0x68, 0x0a,
- 0x10, 0x4f, 0x49, 0x44, 0x43, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70,
- 0x65, 0x12, 0x19, 0x0a, 0x15, 0x4f, 0x49, 0x44, 0x43, 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53,
- 0x45, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x43, 0x4f, 0x44, 0x45, 0x10, 0x00, 0x12, 0x1d, 0x0a, 0x19,
- 0x4f, 0x49, 0x44, 0x43, 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x45, 0x54, 0x59, 0x50, 0x45,
- 0x5f, 0x49, 0x44, 0x5f, 0x54, 0x4f, 0x4b, 0x45, 0x4e, 0x10, 0x01, 0x12, 0x1a, 0x0a, 0x16, 0x4f,
- 0x49, 0x44, 0x43, 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x45, 0x54, 0x59, 0x50, 0x45, 0x5f,
- 0x54, 0x4f, 0x4b, 0x45, 0x4e, 0x10, 0x02, 0x2a, 0x72, 0x0a, 0x0d, 0x4f, 0x49, 0x44, 0x43, 0x47,
- 0x72, 0x61, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x20, 0x4f, 0x49, 0x44, 0x43,
- 0x47, 0x52, 0x41, 0x4e, 0x54, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52,
- 0x49, 0x5a, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x43, 0x4f, 0x44, 0x45, 0x10, 0x00, 0x12, 0x1a,
- 0x0a, 0x16, 0x4f, 0x49, 0x44, 0x43, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x54, 0x59, 0x50, 0x45, 0x5f,
- 0x49, 0x4d, 0x50, 0x4c, 0x49, 0x43, 0x49, 0x54, 0x10, 0x01, 0x12, 0x1f, 0x0a, 0x1b, 0x4f, 0x49,
- 0x44, 0x43, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x52, 0x45, 0x46, 0x52,
- 0x45, 0x53, 0x48, 0x5f, 0x54, 0x4f, 0x4b, 0x45, 0x4e, 0x10, 0x02, 0x2a, 0x76, 0x0a, 0x13, 0x4f,
- 0x49, 0x44, 0x43, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79,
- 0x70, 0x65, 0x12, 0x1b, 0x0a, 0x17, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x50, 0x50, 0x4c, 0x49, 0x43,
- 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x57, 0x45, 0x42, 0x10, 0x00, 0x12,
- 0x22, 0x0a, 0x1e, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x50, 0x50, 0x4c, 0x49, 0x43, 0x41, 0x54, 0x49,
- 0x4f, 0x4e, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x41, 0x47, 0x45, 0x4e,
- 0x54, 0x10, 0x01, 0x12, 0x1e, 0x0a, 0x1a, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x50, 0x50, 0x4c, 0x49,
- 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4e, 0x41, 0x54, 0x49, 0x56,
- 0x45, 0x10, 0x02, 0x2a, 0x6c, 0x0a, 0x12, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x75, 0x74, 0x68, 0x4d,
- 0x65, 0x74, 0x68, 0x6f, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x18, 0x4f, 0x49, 0x44,
- 0x43, 0x41, 0x55, 0x54, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x54, 0x59, 0x50, 0x45, 0x5f,
- 0x42, 0x41, 0x53, 0x49, 0x43, 0x10, 0x00, 0x12, 0x1b, 0x0a, 0x17, 0x4f, 0x49, 0x44, 0x43, 0x41,
- 0x55, 0x54, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x50, 0x4f,
- 0x53, 0x54, 0x10, 0x01, 0x12, 0x1b, 0x0a, 0x17, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x55, 0x54, 0x48,
- 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4e, 0x4f, 0x4e, 0x45, 0x10,
- 0x02, 0x2a, 0x5f, 0x0a, 0x14, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x24, 0x0a, 0x20, 0x41, 0x50, 0x50,
- 0x4c, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x45, 0x52, 0x41, 0x43, 0x48, 0x4b, 0x45,
- 0x59, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12,
- 0x21, 0x0a, 0x1d, 0x41, 0x50, 0x50, 0x4c, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x45,
- 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x41, 0x50, 0x50, 0x5f, 0x4e, 0x41, 0x4d, 0x45,
- 0x10, 0x01, 0x2a, 0x74, 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x21, 0x0a, 0x1d, 0x50, 0x52, 0x4f, 0x4a, 0x45,
- 0x43, 0x54, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53,
- 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1c, 0x0a, 0x18, 0x50, 0x52,
- 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f,
- 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x1e, 0x0a, 0x1a, 0x50, 0x52, 0x4f, 0x4a,
- 0x45, 0x43, 0x54, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e,
- 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x02, 0x2a, 0x9c, 0x02, 0x0a, 0x1b, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x2b, 0x0a, 0x27, 0x50, 0x52, 0x4f, 0x4a,
- 0x45, 0x43, 0x54, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45,
- 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46,
- 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x2a, 0x0a, 0x26, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54,
- 0x47, 0x52, 0x41, 0x4e, 0x54, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43,
- 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x46, 0x49, 0x52, 0x53, 0x54, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10,
- 0x01, 0x12, 0x29, 0x0a, 0x25, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x47, 0x52, 0x41, 0x4e,
- 0x54, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59,
- 0x5f, 0x4c, 0x41, 0x53, 0x54, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x02, 0x12, 0x25, 0x0a, 0x21,
- 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x4d, 0x45, 0x4d, 0x42,
- 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x45, 0x4d, 0x41, 0x49,
- 0x4c, 0x10, 0x03, 0x12, 0x27, 0x0a, 0x23, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x47, 0x52,
- 0x41, 0x4e, 0x54, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b,
- 0x45, 0x59, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x49, 0x44, 0x10, 0x04, 0x12, 0x29, 0x0a, 0x25,
- 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x4d, 0x45, 0x4d, 0x42,
- 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x53, 0x45, 0x52,
- 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x05, 0x2a, 0x68, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x47,
- 0x72, 0x61, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x1a, 0x55, 0x53, 0x45,
- 0x52, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50,
- 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x19, 0x0a, 0x15, 0x55, 0x53, 0x45,
- 0x52, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49,
- 0x56, 0x45, 0x10, 0x01, 0x12, 0x1b, 0x0a, 0x17, 0x55, 0x53, 0x45, 0x52, 0x47, 0x52, 0x41, 0x4e,
- 0x54, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10,
- 0x02, 0x2a, 0x9a, 0x01, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x22, 0x0a, 0x1e, 0x55, 0x53, 0x45, 0x52,
- 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55,
- 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x21, 0x0a, 0x1d,
- 0x55, 0x53, 0x45, 0x52, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b,
- 0x45, 0x59, 0x5f, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x5f, 0x49, 0x44, 0x10, 0x01, 0x12,
- 0x1e, 0x0a, 0x1a, 0x55, 0x53, 0x45, 0x52, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52,
- 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x49, 0x44, 0x10, 0x02, 0x12,
- 0x1d, 0x0a, 0x19, 0x55, 0x53, 0x45, 0x52, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52,
- 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x4f, 0x52, 0x47, 0x5f, 0x49, 0x44, 0x10, 0x03, 0x2a, 0x9a,
- 0x01, 0x0a, 0x12, 0x41, 0x75, 0x74, 0x68, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x22, 0x0a, 0x1e, 0x41, 0x55, 0x54, 0x48, 0x47, 0x52, 0x41,
- 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53, 0x50,
- 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1d, 0x0a, 0x19, 0x41, 0x55, 0x54,
- 0x48, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f,
- 0x4f, 0x52, 0x47, 0x5f, 0x49, 0x44, 0x10, 0x01, 0x12, 0x21, 0x0a, 0x1d, 0x41, 0x55, 0x54, 0x48,
- 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x50,
- 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x5f, 0x49, 0x44, 0x10, 0x02, 0x12, 0x1e, 0x0a, 0x1a, 0x41,
- 0x55, 0x54, 0x48, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45,
- 0x59, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x49, 0x44, 0x10, 0x03, 0x32, 0xa0, 0xa0, 0x01, 0x0a,
- 0x11, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69,
- 0x63, 0x65, 0x12, 0x4b, 0x0a, 0x07, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x7a, 0x12, 0x16, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x10, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x0a, 0x12, 0x08, 0x2f, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x7a, 0x12,
- 0x47, 0x0a, 0x05, 0x52, 0x65, 0x61, 0x64, 0x79, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
- 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
- 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x0e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x08,
- 0x12, 0x06, 0x2f, 0x72, 0x65, 0x61, 0x64, 0x79, 0x12, 0x4e, 0x0a, 0x08, 0x56, 0x61, 0x6c, 0x69,
- 0x64, 0x61, 0x74, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x17, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53,
- 0x74, 0x72, 0x75, 0x63, 0x74, 0x22, 0x11, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0b, 0x12, 0x09, 0x2f,
- 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x12, 0x66, 0x0a, 0x06, 0x47, 0x65, 0x74, 0x49,
- 0x61, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x23, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x61, 0x6d, 0x22,
- 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x06, 0x12, 0x04, 0x2f, 0x69, 0x61, 0x6d, 0x82, 0xb5, 0x18,
- 0x0f, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64,
- 0x12, 0x83, 0x01, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x79, 0x49, 0x44,
- 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x28, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69,
- 0x65, 0x77, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0d, 0x12, 0x0b, 0x2f, 0x75, 0x73, 0x65,
- 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x75, 0x73, 0x65,
- 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xa1, 0x01, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x55, 0x73,
- 0x65, 0x72, 0x42, 0x79, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x12,
- 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x49, 0x44, 0x1a, 0x28, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73,
- 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x22, 0x32, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x12, 0x1b,
- 0x2f, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x65, 0x6d,
- 0x61, 0x69, 0x6c, 0x2f, 0x7b, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x7d, 0x82, 0xb5, 0x18, 0x0b, 0x0a,
- 0x09, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x9e, 0x01, 0x0a, 0x0b, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x73, 0x12, 0x31, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55,
- 0x73, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x75, 0x73, 0x65, 0x72,
- 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0b,
- 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x9e, 0x01, 0x0a, 0x0c,
- 0x49, 0x73, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x12, 0x31, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e,
- 0x69, 0x71, 0x75, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x12, 0x10, 0x2f, 0x75, 0x73,
- 0x65, 0x72, 0x73, 0x2f, 0x5f, 0x69, 0x73, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x82, 0xb5, 0x18,
- 0x0b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x88, 0x01, 0x0a,
- 0x0a, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x12, 0x31, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x55, 0x73, 0x65, 0x72, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0b, 0x22, 0x06, 0x2f, 0x75,
- 0x73, 0x65, 0x72, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65,
- 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x92, 0x01, 0x0a, 0x0e, 0x44, 0x65, 0x61, 0x63,
- 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72,
- 0x49, 0x44, 0x1a, 0x24, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x22, 0x32, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c,
- 0x1a, 0x17, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x64,
- 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c,
- 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x92, 0x01, 0x0a,
- 0x0e, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x12,
- 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x24, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x22, 0x32, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x1a, 0x17, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69,
- 0x64, 0x7d, 0x2f, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01,
- 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74,
- 0x65, 0x12, 0x86, 0x01, 0x0a, 0x08, 0x4c, 0x6f, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x12, 0x26,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x24, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x22, 0x2c, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x16, 0x1a, 0x11, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64,
- 0x7d, 0x2f, 0x5f, 0x6c, 0x6f, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a,
- 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x8a, 0x01, 0x0a, 0x0a, 0x55,
- 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49,
- 0x44, 0x1a, 0x24, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x22, 0x2e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x1a,
- 0x13, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x75, 0x6e,
- 0x6c, 0x6f, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65,
- 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x72, 0x0a, 0x0a, 0x44, 0x65, 0x6c, 0x65, 0x74,
- 0x65, 0x55, 0x73, 0x65, 0x72, 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x16, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0d, 0x2a, 0x0b, 0x2f,
- 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x0d, 0x0a, 0x0b,
- 0x75, 0x73, 0x65, 0x72, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x91, 0x01, 0x0a, 0x0b,
- 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x2d, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x61, 0x6e,
- 0x67, 0x65, 0x73, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x12, 0x13, 0x2f, 0x75, 0x73,
- 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73,
- 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12,
- 0xb8, 0x01, 0x0a, 0x12, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x22, 0x4a,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2e, 0x12, 0x2c, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x73, 0x65, 0x63, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x63, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x73, 0x82, 0xb5, 0x18, 0x12, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x8e, 0x01, 0x0a, 0x0a, 0x4f,
- 0x72, 0x67, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65,
- 0x73, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x14, 0x12, 0x12, 0x2f, 0x6f, 0x72, 0x67, 0x73,
- 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x82, 0xb5, 0x18,
- 0x0a, 0x0a, 0x08, 0x6f, 0x72, 0x67, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x9a, 0x01, 0x0a, 0x0e,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x2d,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x22, 0x30, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x12, 0x16,
- 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x95, 0x01, 0x0a, 0x0e, 0x47, 0x65, 0x74,
- 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x26, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65,
- 0x72, 0x49, 0x44, 0x1a, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
- 0x56, 0x69, 0x65, 0x77, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x12, 0x13, 0x2f, 0x75,
- 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c,
- 0x65, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64,
- 0x12, 0xaa, 0x01, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50,
- 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73,
- 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x22, 0x2e, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x1a, 0x13, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69,
- 0x64, 0x7d, 0x2f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18,
- 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x8f, 0x01,
- 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x26,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69,
- 0x6c, 0x56, 0x69, 0x65, 0x77, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x12, 0x11, 0x2f,
- 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x65, 0x6d, 0x61, 0x69, 0x6c,
- 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12,
- 0xa2, 0x01, 0x0a, 0x0f, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d,
- 0x61, 0x69, 0x6c, 0x12, 0x36, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45,
- 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65,
- 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x1a, 0x11,
- 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x65, 0x6d, 0x61, 0x69,
- 0x6c, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77,
- 0x72, 0x69, 0x74, 0x65, 0x12, 0x9f, 0x01, 0x0a, 0x1b, 0x52, 0x65, 0x73, 0x65, 0x6e, 0x64, 0x45,
- 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x16, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
- 0x6d, 0x70, 0x74, 0x79, 0x22, 0x40, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x22, 0x25, 0x2f, 0x75,
- 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x2f,
- 0x5f, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x64, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72,
- 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x8f, 0x01, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x55, 0x73,
- 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a,
- 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x69, 0x65, 0x77, 0x22, 0x28,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x12, 0x11, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b,
- 0x69, 0x64, 0x7d, 0x2f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x75,
- 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xa2, 0x01, 0x0a, 0x0f, 0x43, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x36, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x22,
- 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x1a, 0x11, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f,
- 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18,
- 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x9f, 0x01,
- 0x0a, 0x1b, 0x52, 0x65, 0x73, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72,
- 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x26, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55,
- 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x40, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x22, 0x25, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69,
- 0x64, 0x7d, 0x2f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x2f, 0x5f, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x64,
- 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x82,
- 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12,
- 0x95, 0x01, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65,
- 0x73, 0x73, 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x2f, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72,
- 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x56, 0x69, 0x65, 0x77, 0x22, 0x2a, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x15, 0x12, 0x13, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d,
- 0x2f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x75, 0x73,
- 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xaa, 0x01, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x38, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64,
- 0x72, 0x65, 0x73, 0x73, 0x22, 0x2e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x1a, 0x13, 0x2f, 0x75,
- 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73,
- 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77,
- 0x72, 0x69, 0x74, 0x65, 0x12, 0x8c, 0x01, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
- 0x4d, 0x66, 0x61, 0x73, 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x2c, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x75,
- 0x6c, 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93,
- 0x02, 0x12, 0x12, 0x10, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f,
- 0x6d, 0x66, 0x61, 0x73, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72,
- 0x65, 0x61, 0x64, 0x12, 0xae, 0x01, 0x0a, 0x1b, 0x53, 0x65, 0x6e, 0x64, 0x53, 0x65, 0x74, 0x50,
- 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x12, 0x3e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x74, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64,
- 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x37, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d,
- 0x2f, 0x5f, 0x73, 0x65, 0x6e, 0x64, 0x73, 0x65, 0x74, 0x70, 0x77, 0x6e, 0x6f, 0x74, 0x69, 0x66,
- 0x79, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77,
- 0x72, 0x69, 0x74, 0x65, 0x12, 0x93, 0x01, 0x0a, 0x12, 0x53, 0x65, 0x74, 0x49, 0x6e, 0x69, 0x74,
- 0x69, 0x61, 0x6c, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x2f, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
- 0x6d, 0x70, 0x74, 0x79, 0x22, 0x34, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x75,
- 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x73, 0x65, 0x74, 0x69, 0x6e,
- 0x69, 0x74, 0x69, 0x61, 0x6c, 0x70, 0x77, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a,
- 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xa8, 0x01, 0x0a, 0x1b, 0x47,
- 0x65, 0x74, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65,
- 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
- 0x74, 0x79, 0x1a, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70,
- 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0x37, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x20, 0x12, 0x1e, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f,
- 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x2f, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65,
- 0x78, 0x69, 0x74, 0x79, 0x82, 0xb5, 0x18, 0x0d, 0x0a, 0x0b, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79,
- 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xd7, 0x01, 0x0a, 0x1e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
- 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69,
- 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x3e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x1a, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x22, 0x3b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x70, 0x6f, 0x6c,
- 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x2f,
- 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18,
- 0x0e, 0x0a, 0x0c, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12,
- 0xd7, 0x01, 0x0a, 0x1e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x12, 0x3e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70,
- 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x55, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x1a, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70,
- 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0x3b, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x23, 0x1a, 0x1e, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f,
- 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x2f, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65,
- 0x78, 0x69, 0x74, 0x79, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x6f, 0x6c,
- 0x69, 0x63, 0x79, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xaf, 0x01, 0x0a, 0x1e, 0x44, 0x65,
- 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70,
- 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x3a, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61,
- 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79,
- 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x49, 0x44, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
- 0x22, 0x39, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x2a, 0x1e, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63,
- 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x2f, 0x63, 0x6f,
- 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x70, 0x6f,
- 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x93, 0x01, 0x0a, 0x14,
- 0x47, 0x65, 0x74, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f,
- 0x6c, 0x69, 0x63, 0x79, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x31, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61,
- 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22,
- 0x30, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x12, 0x17, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69,
- 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x2f, 0x61, 0x67, 0x65,
- 0x82, 0xb5, 0x18, 0x0d, 0x0a, 0x0b, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x72, 0x65, 0x61,
- 0x64, 0x12, 0xbb, 0x01, 0x0a, 0x17, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x73, 0x73,
- 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x37, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50,
- 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
- 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x1a, 0x31, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64,
- 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0x34, 0x82, 0xd3, 0xe4, 0x93, 0x02,
- 0x1c, 0x22, 0x17, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x2f, 0x61, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18,
- 0x0e, 0x0a, 0x0c, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12,
- 0xbb, 0x01, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x37, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x1a, 0x31, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67,
- 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0x34, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x1a,
- 0x17, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77,
- 0x6f, 0x72, 0x64, 0x73, 0x2f, 0x61, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0e, 0x0a,
- 0x0c, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x9a, 0x01,
- 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64,
- 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x33, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77,
- 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x49, 0x44, 0x1a, 0x16,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
- 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x32, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x2a, 0x17,
- 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x73, 0x2f, 0x61, 0x67, 0x65, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x70, 0x6f, 0x6c,
- 0x69, 0x63, 0x79, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x9f, 0x01, 0x0a, 0x18, 0x47,
- 0x65, 0x74, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75,
- 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
- 0x35, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74,
- 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0x34, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x12, 0x1b,
- 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x82, 0xb5, 0x18, 0x0d, 0x0a,
- 0x0b, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xcb, 0x01, 0x0a,
- 0x1b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c,
- 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x3b, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61,
- 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c,
- 0x69, 0x63, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x1a, 0x35, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77,
- 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
- 0x22, 0x38, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63,
- 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x2f, 0x6c, 0x6f,
- 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x6f,
- 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xcb, 0x01, 0x0a, 0x1b, 0x55,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63,
- 0x6b, 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x3b, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73,
- 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63,
- 0x79, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x1a, 0x35, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72,
- 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0x38,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x1a, 0x1b, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65,
- 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x6b,
- 0x6f, 0x75, 0x74, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xa6, 0x01, 0x0a, 0x1b, 0x44, 0x65, 0x6c,
- 0x65, 0x74, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f,
- 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x49,
- 0x44, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x36, 0x82, 0xd3, 0xe4, 0x93, 0x02,
- 0x1d, 0x2a, 0x1b, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x82, 0xb5,
- 0x18, 0x0f, 0x0a, 0x0d, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74,
- 0x65, 0x12, 0x7a, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x67, 0x42, 0x79, 0x49, 0x44, 0x12,
- 0x25, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x4f, 0x72, 0x67, 0x49, 0x44, 0x1a, 0x23, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x22, 0x20, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x0c, 0x12, 0x0a, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x82,
- 0xb5, 0x18, 0x0a, 0x0a, 0x08, 0x6f, 0x72, 0x67, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x9a, 0x01,
- 0x0a, 0x14, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x67, 0x42, 0x79, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
- 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x12, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69,
- 0x6e, 0x1a, 0x23, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x22, 0x32, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x12, 0x1c,
- 0x2f, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x64, 0x6f, 0x6d,
- 0x61, 0x69, 0x6e, 0x2f, 0x7b, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x7d, 0x82, 0xb5, 0x18, 0x0a,
- 0x0a, 0x08, 0x6f, 0x72, 0x67, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x8d, 0x01, 0x0a, 0x0d, 0x44,
- 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x12, 0x25, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72,
- 0x67, 0x49, 0x44, 0x1a, 0x23, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x22, 0x30, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b,
- 0x1a, 0x16, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x64, 0x65,
- 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0b, 0x0a,
- 0x09, 0x6f, 0x72, 0x67, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x8d, 0x01, 0x0a, 0x0d, 0x52,
- 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x12, 0x25, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72,
- 0x67, 0x49, 0x44, 0x1a, 0x23, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x22, 0x30, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b,
- 0x1a, 0x16, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x72, 0x65,
- 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0b, 0x0a,
- 0x09, 0x6f, 0x72, 0x67, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xb8, 0x01, 0x0a, 0x12, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x79, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
- 0x73, 0x12, 0x36, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x44, 0x6f,
- 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x31, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x6f, 0x72, 0x67,
- 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x2f, 0x5f, 0x73, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0a, 0x0a, 0x08, 0x6f, 0x72, 0x67,
- 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x9c, 0x01, 0x0a, 0x0e, 0x41, 0x64, 0x64, 0x4d, 0x79, 0x4f,
- 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x33, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x64, 0x64, 0x4f, 0x72, 0x67,
- 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f,
- 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15,
- 0x22, 0x10, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x64, 0x6f, 0x6d, 0x61, 0x69,
- 0x6e, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x6f, 0x72, 0x67, 0x2e, 0x77,
- 0x72, 0x69, 0x74, 0x65, 0x12, 0x95, 0x01, 0x0a, 0x11, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4d,
- 0x79, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x36, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f,
- 0x76, 0x65, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x30, 0x82, 0xd3, 0xe4, 0x93,
- 0x02, 0x1b, 0x2a, 0x19, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x64, 0x6f, 0x6d,
- 0x61, 0x69, 0x6e, 0x73, 0x2f, 0x7b, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x7d, 0x82, 0xb5, 0x18,
- 0x0b, 0x0a, 0x09, 0x6f, 0x72, 0x67, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x8d, 0x01, 0x0a,
- 0x11, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x6f, 0x6c,
- 0x65, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x2e, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x4d,
- 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0x30, 0x82, 0xd3, 0xe4, 0x93,
- 0x02, 0x15, 0x12, 0x13, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72,
- 0x73, 0x2f, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x82, 0xb5, 0x18, 0x11, 0x0a, 0x0f, 0x6f, 0x72, 0x67,
- 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xa3, 0x01, 0x0a,
- 0x0e, 0x41, 0x64, 0x64, 0x4d, 0x79, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12,
- 0x33, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x41, 0x64, 0x64, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x22,
- 0x31, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d,
- 0x65, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x12,
- 0x0a, 0x10, 0x6f, 0x72, 0x67, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69,
- 0x74, 0x65, 0x12, 0xb3, 0x01, 0x0a, 0x11, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4d, 0x79, 0x4f,
- 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x36, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65,
- 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x3b, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x1f, 0x1a, 0x1a, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x6d, 0x65,
- 0x6d, 0x62, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x3a,
- 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x12, 0x0a, 0x10, 0x6f, 0x72, 0x67, 0x2e, 0x6d, 0x65, 0x6d, 0x62,
- 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x9e, 0x01, 0x0a, 0x11, 0x52, 0x65, 0x6d,
- 0x6f, 0x76, 0x65, 0x4d, 0x79, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x36,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x39,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x2a, 0x1a, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65,
- 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69,
- 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x13, 0x0a, 0x11, 0x6f, 0x72, 0x67, 0x2e, 0x6d, 0x65, 0x6d, 0x62,
- 0x65, 0x72, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0xbf, 0x01, 0x0a, 0x12, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x4d, 0x79, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73,
- 0x12, 0x36, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d,
- 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x22, 0x38, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x6f, 0x72, 0x67, 0x73,
- 0x2f, 0x6d, 0x65, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x11, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x2e,
- 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xad, 0x01, 0x0a, 0x0e,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x12, 0x34,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x53, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2e, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x5f,
- 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x8f, 0x01, 0x0a, 0x0b,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x42, 0x79, 0x49, 0x44, 0x12, 0x29, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x49, 0x44, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x22,
- 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x10, 0x12, 0x0e, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x12, 0x0a, 0x0c, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x02, 0x49, 0x64, 0x12, 0x97, 0x01,
- 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12,
- 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x22, 0x27,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0e, 0x22, 0x09, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xa0, 0x01, 0x0a, 0x0d, 0x55, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x22, 0x30, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13,
- 0x1a, 0x0e, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d,
- 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x13, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0xa5, 0x01, 0x0a, 0x11, 0x44,
- 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x12, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x44, 0x1a, 0x27, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x22, 0x3c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x1a, 0x1a, 0x2f, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x64, 0x65,
- 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x13, 0x0a,
- 0x0d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x02,
- 0x49, 0x64, 0x12, 0xa5, 0x01, 0x0a, 0x11, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74,
- 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x49, 0x44, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x22, 0x3c, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x1f, 0x1a, 0x1a, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f,
- 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65,
- 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x13, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0xd2, 0x01, 0x0a, 0x15, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x73, 0x12, 0x3b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x3a, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x40, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a,
- 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x19, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e,
- 0x72, 0x65, 0x61, 0x64, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12,
- 0xbe, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x42, 0x79, 0x49, 0x44, 0x12, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x22, 0x43, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x2b, 0x12, 0x29, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69,
- 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x82, 0xb5,
- 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x64,
- 0x12, 0x9d, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d,
- 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
- 0x74, 0x79, 0x1a, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65,
- 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0x38, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x12, 0x17,
- 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72,
- 0x73, 0x2f, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x82, 0xb5, 0x18, 0x15, 0x0a, 0x13, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64,
- 0x12, 0xe6, 0x01, 0x0a, 0x14, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x12, 0x3a, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65,
- 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x55, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2b, 0x22, 0x26, 0x2f, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69,
- 0x64, 0x7d, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x20, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x09,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xb4, 0x01, 0x0a, 0x10, 0x41, 0x64,
- 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x30,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x41, 0x64, 0x64,
- 0x1a, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x22,
- 0x3f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x3a,
- 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1a, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e,
- 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x02, 0x49, 0x64,
- 0x12, 0xc4, 0x01, 0x0a, 0x13, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x33, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x1a, 0x2d, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x49, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x25, 0x1a, 0x20, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f,
- 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73,
- 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1a, 0x0a, 0x14, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x77, 0x72,
- 0x69, 0x74, 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0xab, 0x01, 0x0a, 0x13, 0x52, 0x65, 0x6d, 0x6f,
- 0x76, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12,
- 0x33, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65,
- 0x6d, 0x6f, 0x76, 0x65, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x47, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x22, 0x2a, 0x20, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f,
- 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73,
- 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x1b, 0x0a, 0x15, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74,
- 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0xdc, 0x01, 0x0a, 0x12, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x38, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52,
- 0x6f, 0x6c, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x22, 0x51, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x22, 0x24, 0x2f, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
- 0x7d, 0x2f, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a,
- 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1e, 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e,
- 0x72, 0x6f, 0x6c, 0x65, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x49, 0x64, 0x12, 0xaa, 0x01, 0x0a, 0x0e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x52, 0x6f, 0x6c, 0x65, 0x41, 0x64, 0x64, 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x52, 0x6f, 0x6c, 0x65, 0x22, 0x3b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x72, 0x6f, 0x6c,
- 0x65, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x18, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x2e, 0x72, 0x6f, 0x6c, 0x65, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x02, 0x49,
- 0x64, 0x12, 0xb6, 0x01, 0x0a, 0x11, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x31, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x52, 0x6f, 0x6c, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x22, 0x41, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x1a,
- 0x1a, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f,
- 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x2f, 0x7b, 0x6b, 0x65, 0x79, 0x7d, 0x3a, 0x01, 0x2a, 0x82, 0xb5,
- 0x18, 0x18, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x72, 0x6f, 0x6c, 0x65,
- 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0x9f, 0x01, 0x0a, 0x11, 0x52,
- 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65,
- 0x12, 0x31, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x6d,
- 0x6f, 0x76, 0x65, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x3f, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x1c, 0x2a, 0x1a, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b,
- 0x69, 0x64, 0x7d, 0x2f, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x2f, 0x7b, 0x6b, 0x65, 0x79, 0x7d, 0x82,
- 0xb5, 0x18, 0x19, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x72, 0x6f, 0x6c,
- 0x65, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0xe2, 0x01, 0x0a,
- 0x12, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x12, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41,
- 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x57, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x30,
- 0x22, 0x2b, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a,
- 0x82, 0xb5, 0x18, 0x1d, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x61, 0x70,
- 0x70, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
- 0x64, 0x12, 0xc0, 0x01, 0x0a, 0x0f, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x42, 0x79, 0x49, 0x44, 0x12, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x49, 0x44, 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x22, 0x51, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x12, 0x28, 0x2f, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
- 0x7d, 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b,
- 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x1d, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x49, 0x64, 0x12, 0xd1, 0x01, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f,
- 0x49, 0x44, 0x43, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x35,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x4f, 0x49, 0x44, 0x43, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x22, 0x54, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2c, 0x22, 0x27, 0x2f, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69,
- 0x64, 0x7d, 0x2f, 0x6f, 0x69, 0x64, 0x63, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1e, 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x09, 0x50,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xca, 0x01, 0x0a, 0x11, 0x55, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x31,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x55,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2d, 0x1a, 0x28, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x61,
- 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d,
- 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1e, 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xd6, 0x01, 0x0a, 0x15, 0x44, 0x65, 0x61, 0x63, 0x74, 0x69,
- 0x76, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
- 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x1a, 0x2b,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x61, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x39, 0x1a, 0x34, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x61, 0x70, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x64,
- 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1e,
- 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x77, 0x72,
- 0x69, 0x74, 0x65, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xd6,
- 0x01, 0x0a, 0x15, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x61, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x39, 0x1a, 0x34, 0x2f, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61,
- 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1e, 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x09, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xaf, 0x01, 0x0a, 0x11, 0x52, 0x65, 0x6d, 0x6f,
- 0x76, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41,
- 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x1a, 0x16, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
- 0x6d, 0x70, 0x74, 0x79, 0x22, 0x53, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x2a, 0x28, 0x2f, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x1f, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x09,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xe9, 0x01, 0x0a, 0x1b, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f,
- 0x49, 0x44, 0x43, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x43,
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x1a, 0x2a, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44,
- 0x43, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22, 0x6c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x44, 0x1a,
- 0x3f, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x6f, 0x69, 0x64, 0x63, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
- 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1e, 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xef, 0x01, 0x0a, 0x1a, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65,
- 0x72, 0x61, 0x74, 0x65, 0x4f, 0x49, 0x44, 0x43, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
- 0x63, 0x72, 0x65, 0x74, 0x12, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x49, 0x44, 0x1a, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65,
- 0x74, 0x22, 0x74, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x4c, 0x1a, 0x47, 0x2f, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
- 0x7d, 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b,
- 0x69, 0x64, 0x7d, 0x2f, 0x6f, 0x69, 0x64, 0x63, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2f, 0x5f,
- 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x73, 0x65, 0x63, 0x72,
- 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1e, 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x09, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xe1, 0x01, 0x0a, 0x13, 0x53, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x12,
- 0x39, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x53, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x22, 0x25,
- 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x5f, 0x73,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1f, 0x0a, 0x12, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x64,
- 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xb4, 0x01, 0x0a, 0x10,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x44,
- 0x12, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44,
- 0x1a, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x42,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x12, 0x22, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x14, 0x0a, 0x12,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x72, 0x65,
- 0x61, 0x64, 0x12, 0xb9, 0x01, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x1a, 0x2c, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x41, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e,
- 0x74, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x15, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xbe,
- 0x01, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72,
- 0x61, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x1a, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x46, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x1a,
- 0x22, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b,
- 0x69, 0x64, 0x7d, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x15, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12,
- 0xca, 0x01, 0x0a, 0x16, 0x44, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x2e, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x2c, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x52, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x33,
- 0x1a, 0x2e, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f,
- 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x64, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65,
- 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x15, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xca, 0x01, 0x0a,
- 0x16, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x52, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x33, 0x1a, 0x2e, 0x2f,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64,
- 0x7d, 0x2f, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a,
- 0x82, 0xb5, 0x18, 0x15, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72,
- 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xa2, 0x01, 0x0a, 0x12, 0x52, 0x65,
- 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x12, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44,
- 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
- 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x44, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24,
- 0x2a, 0x22, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f,
- 0x7b, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x16, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0xb4,
- 0x01, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x16, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72,
- 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0x45,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x12, 0x1e, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x73, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73,
- 0x2f, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x82, 0xb5, 0x18, 0x1b, 0x0a, 0x19, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72,
- 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x82, 0x02, 0x0a, 0x19, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62,
- 0x65, 0x72, 0x73, 0x12, 0x3f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e,
- 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x40, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x62, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3d, 0x22, 0x38,
- 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73,
- 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1b, 0x0a,
- 0x19, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x6d,
- 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xdf, 0x01, 0x0a, 0x15, 0x41,
- 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65,
- 0x6d, 0x62, 0x65, 0x72, 0x12, 0x35, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x41, 0x64, 0x64, 0x1a, 0x32, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x22,
- 0x5b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x35, 0x22, 0x30, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f,
- 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64,
- 0x7d, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1c,
- 0x0a, 0x1a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e,
- 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xef, 0x01, 0x0a,
- 0x18, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72,
- 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x43, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x1a, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e,
- 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3f, 0x1a,
- 0x3a, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b,
- 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72,
- 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x3a, 0x01, 0x2a, 0x82, 0xb5,
- 0x18, 0x1c, 0x0a, 0x1a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e,
- 0x74, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xd1,
- 0x01, 0x0a, 0x18, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x38, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52,
- 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x63, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x3c, 0x2a, 0x3a, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73,
- 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72,
- 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f,
- 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64,
- 0x7d, 0x82, 0xb5, 0x18, 0x1d, 0x0a, 0x1b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x64, 0x65, 0x6c, 0x65,
- 0x74, 0x65, 0x12, 0xba, 0x01, 0x0a, 0x10, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65,
- 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x12, 0x36, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x35, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a,
- 0x22, 0x15, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f,
- 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x11, 0x0a, 0x0f,
- 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12,
- 0xa2, 0x01, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x42, 0x79, 0x49,
- 0x44, 0x12, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x29,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x39, 0x82, 0xd3, 0xe4, 0x93, 0x02,
- 0x1e, 0x12, 0x1c, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f,
- 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x82,
- 0xb5, 0x18, 0x11, 0x0a, 0x0f, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e,
- 0x72, 0x65, 0x61, 0x64, 0x12, 0xa7, 0x01, 0x0a, 0x0f, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55,
- 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72,
- 0x61, 0x6e, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47,
- 0x72, 0x61, 0x6e, 0x74, 0x22, 0x38, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x75,
- 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x12, 0x0a, 0x10, 0x75, 0x73,
- 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xac,
- 0x01, 0x0a, 0x0f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x12, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x3d,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x1a, 0x1c, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b,
- 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f,
- 0x7b, 0x69, 0x64, 0x7d, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x12, 0x0a, 0x10, 0x75, 0x73, 0x65,
- 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xb8, 0x01,
- 0x0a, 0x13, 0x44, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x49, 0x44, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x49, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x2d, 0x1a, 0x28, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75,
- 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b,
- 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x64, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a,
- 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x12, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61,
- 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xb8, 0x01, 0x0a, 0x13, 0x52, 0x65, 0x61,
- 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x12, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x29, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55,
- 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x49, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2d,
- 0x1a, 0x28, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69,
- 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f,
- 0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18,
- 0x12, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72,
- 0x69, 0x74, 0x65, 0x12, 0x93, 0x01, 0x0a, 0x0f, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x55, 0x73,
- 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x3b, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x1e, 0x2a, 0x1c, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73,
- 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x69,
- 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x13, 0x0a, 0x11, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61,
- 0x6e, 0x74, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0xf1, 0x01, 0x0a, 0x17, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47,
- 0x72, 0x61, 0x6e, 0x74, 0x73, 0x12, 0x3d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55, 0x73,
- 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5e, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x30, 0x22, 0x2b, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73,
- 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x75, 0x73,
- 0x65, 0x72, 0x73, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x24, 0x0a, 0x17, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x72, 0x65,
- 0x61, 0x64, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xd9, 0x01,
- 0x0a, 0x14, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x42, 0x79, 0x49, 0x44, 0x12, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55,
- 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x62, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x34, 0x12, 0x32, 0x2f,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65,
- 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64,
- 0x7d, 0x82, 0xb5, 0x18, 0x24, 0x0a, 0x17, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x75,
- 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x09,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xd7, 0x01, 0x0a, 0x16, 0x43, 0x72,
- 0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47,
- 0x72, 0x61, 0x6e, 0x74, 0x12, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x43,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x22, 0x61, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x32, 0x22, 0x2d, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d,
- 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d,
- 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x25, 0x0a, 0x18,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61,
- 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x49, 0x64, 0x12, 0xe3, 0x01, 0x0a, 0x16, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x36,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e,
- 0x74, 0x22, 0x66, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, 0x1a, 0x32, 0x2f, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
- 0x7d, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64,
- 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x3a, 0x01, 0x2a,
- 0x82, 0xb5, 0x18, 0x25, 0x0a, 0x18, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x75, 0x73,
- 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x09,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xef, 0x01, 0x0a, 0x1a, 0x44, 0x65,
- 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55,
- 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x29, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73,
- 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x72, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x43, 0x1a,
- 0x3e, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75,
- 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b,
- 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x64, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a,
- 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x25, 0x0a, 0x18, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e,
- 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65,
- 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xef, 0x01, 0x0a, 0x1a,
- 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x32, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x29,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x72, 0x82, 0xd3, 0xe4, 0x93, 0x02,
- 0x43, 0x1a, 0x3e, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f,
- 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73,
- 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74,
- 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x25, 0x0a, 0x18, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69,
- 0x74, 0x65, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x91, 0x02,
- 0x0a, 0x1c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47,
- 0x72, 0x61, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x12, 0x42,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x74, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x3b, 0x22, 0x36, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x67, 0x72, 0x61,
- 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x67, 0x72, 0x61,
- 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x67, 0x72, 0x61,
- 0x6e, 0x74, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5,
- 0x18, 0x2f, 0x0a, 0x1d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e,
- 0x74, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x72, 0x65, 0x61,
- 0x64, 0x12, 0x0e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49,
- 0x64, 0x12, 0xf9, 0x01, 0x0a, 0x19, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x44, 0x12,
- 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55, 0x73, 0x65,
- 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72,
- 0x61, 0x6e, 0x74, 0x22, 0x78, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3f, 0x12, 0x3d, 0x2f, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x75,
- 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x2f, 0x0a, 0x1d,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x75, 0x73,
- 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x0e, 0x50,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0xfe, 0x01,
- 0x0a, 0x1b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47,
- 0x72, 0x61, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x3b, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47,
- 0x72, 0x61, 0x6e, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x77, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3d, 0x22, 0x38, 0x2f,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d,
- 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d,
- 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x30, 0x0a, 0x1e,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x75, 0x73,
- 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x0e,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x83,
- 0x02, 0x0a, 0x1b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x3b,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x1a, 0x29, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65,
- 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x7c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x42, 0x1a, 0x3d,
- 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64,
- 0x7d, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64,
- 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x3a, 0x01, 0x2a,
- 0x82, 0xb5, 0x18, 0x30, 0x0a, 0x1e, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72,
- 0x61, 0x6e, 0x74, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77,
- 0x72, 0x69, 0x74, 0x65, 0x12, 0x0e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x49, 0x64, 0x12, 0x90, 0x02, 0x0a, 0x1f, 0x44, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76,
- 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55,
- 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49,
- 0x44, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x88, 0x01, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x4e, 0x1a, 0x49, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b,
- 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f,
- 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x64, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65,
- 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x30, 0x0a, 0x1e, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e,
- 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x0e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x90, 0x02, 0x0a, 0x1f, 0x52, 0x65, 0x61, 0x63,
- 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x37, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22,
- 0x88, 0x01, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x4e, 0x1a, 0x49, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x5f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x75, 0x73, 0x65, 0x72,
- 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e,
- 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76,
- 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x30, 0x0a, 0x1e, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x0e, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0xa2, 0x01, 0x0a, 0x0f, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x75, 0x74, 0x68, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x36,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x41, 0x75, 0x74, 0x68, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x47, 0x72, 0x61, 0x6e,
- 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
- 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x67, 0x72,
- 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x42,
- 0xc9, 0x01, 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63,
- 0x61, 0x6f, 0x73, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2f, 0x70, 0x6b, 0x67, 0x2f,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x67,
- 0x72, 0x70, 0x63, 0x92, 0x41, 0x94, 0x01, 0x12, 0x47, 0x0a, 0x0e, 0x4d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x41, 0x50, 0x49, 0x22, 0x30, 0x12, 0x2e, 0x68, 0x74, 0x74,
- 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
- 0x63, 0x61, 0x6f, 0x73, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2f, 0x70, 0x6b, 0x67,
- 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x32, 0x03, 0x30, 0x2e, 0x31,
- 0x2a, 0x01, 0x02, 0x32, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x2f, 0x6a, 0x73, 0x6f, 0x6e, 0x32, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x3a, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x6a, 0x73, 0x6f, 0x6e, 0x3a, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x62, 0x06, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x33,
+func init() {
+ proto.RegisterEnum("caos.zitadel.management.api.v1.UserState", UserState_name, UserState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.Gender", Gender_name, Gender_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.UserSearchKey", UserSearchKey_name, UserSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.SearchMethod", SearchMethod_name, SearchMethod_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.MfaType", MfaType_name, MfaType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.MFAState", MFAState_name, MFAState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.NotificationType", NotificationType_name, NotificationType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.PolicyState", PolicyState_name, PolicyState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OrgState", OrgState_name, OrgState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OrgDomainSearchKey", OrgDomainSearchKey_name, OrgDomainSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OrgMemberSearchKey", OrgMemberSearchKey_name, OrgMemberSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectSearchKey", ProjectSearchKey_name, ProjectSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectState", ProjectState_name, ProjectState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectType", ProjectType_name, ProjectType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectRoleSearchKey", ProjectRoleSearchKey_name, ProjectRoleSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectMemberSearchKey", ProjectMemberSearchKey_name, ProjectMemberSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.AppState", AppState_name, AppState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OIDCResponseType", OIDCResponseType_name, OIDCResponseType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OIDCGrantType", OIDCGrantType_name, OIDCGrantType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OIDCApplicationType", OIDCApplicationType_name, OIDCApplicationType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OIDCAuthMethodType", OIDCAuthMethodType_name, OIDCAuthMethodType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ApplicationSearchKey", ApplicationSearchKey_name, ApplicationSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectGrantState", ProjectGrantState_name, ProjectGrantState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectGrantMemberSearchKey", ProjectGrantMemberSearchKey_name, ProjectGrantMemberSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.UserGrantState", UserGrantState_name, UserGrantState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.UserGrantSearchKey", UserGrantSearchKey_name, UserGrantSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.AuthGrantSearchKey", AuthGrantSearchKey_name, AuthGrantSearchKey_value)
+ proto.RegisterType((*Iam)(nil), "caos.zitadel.management.api.v1.Iam")
+ proto.RegisterType((*ChangeRequest)(nil), "caos.zitadel.management.api.v1.ChangeRequest")
+ proto.RegisterType((*Changes)(nil), "caos.zitadel.management.api.v1.Changes")
+ proto.RegisterType((*Change)(nil), "caos.zitadel.management.api.v1.Change")
+ proto.RegisterType((*ApplicationID)(nil), "caos.zitadel.management.api.v1.ApplicationID")
+ proto.RegisterType((*ProjectID)(nil), "caos.zitadel.management.api.v1.ProjectID")
+ proto.RegisterType((*UserID)(nil), "caos.zitadel.management.api.v1.UserID")
+ proto.RegisterType((*UserEmailID)(nil), "caos.zitadel.management.api.v1.UserEmailID")
+ proto.RegisterType((*UniqueUserRequest)(nil), "caos.zitadel.management.api.v1.UniqueUserRequest")
+ proto.RegisterType((*UniqueUserResponse)(nil), "caos.zitadel.management.api.v1.UniqueUserResponse")
+ proto.RegisterType((*CreateUserRequest)(nil), "caos.zitadel.management.api.v1.CreateUserRequest")
+ proto.RegisterType((*User)(nil), "caos.zitadel.management.api.v1.User")
+ proto.RegisterType((*UserView)(nil), "caos.zitadel.management.api.v1.UserView")
+ proto.RegisterType((*UserSearchRequest)(nil), "caos.zitadel.management.api.v1.UserSearchRequest")
+ proto.RegisterType((*UserSearchQuery)(nil), "caos.zitadel.management.api.v1.UserSearchQuery")
+ proto.RegisterType((*UserSearchResponse)(nil), "caos.zitadel.management.api.v1.UserSearchResponse")
+ proto.RegisterType((*UserProfile)(nil), "caos.zitadel.management.api.v1.UserProfile")
+ proto.RegisterType((*UserProfileView)(nil), "caos.zitadel.management.api.v1.UserProfileView")
+ proto.RegisterType((*UpdateUserProfileRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserProfileRequest")
+ proto.RegisterType((*UserEmail)(nil), "caos.zitadel.management.api.v1.UserEmail")
+ proto.RegisterType((*UserEmailView)(nil), "caos.zitadel.management.api.v1.UserEmailView")
+ proto.RegisterType((*UpdateUserEmailRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserEmailRequest")
+ proto.RegisterType((*UserPhone)(nil), "caos.zitadel.management.api.v1.UserPhone")
+ proto.RegisterType((*UserPhoneView)(nil), "caos.zitadel.management.api.v1.UserPhoneView")
+ proto.RegisterType((*UpdateUserPhoneRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserPhoneRequest")
+ proto.RegisterType((*UserAddress)(nil), "caos.zitadel.management.api.v1.UserAddress")
+ proto.RegisterType((*UserAddressView)(nil), "caos.zitadel.management.api.v1.UserAddressView")
+ proto.RegisterType((*UpdateUserAddressRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserAddressRequest")
+ proto.RegisterType((*MultiFactors)(nil), "caos.zitadel.management.api.v1.MultiFactors")
+ proto.RegisterType((*MultiFactor)(nil), "caos.zitadel.management.api.v1.MultiFactor")
+ proto.RegisterType((*PasswordID)(nil), "caos.zitadel.management.api.v1.PasswordID")
+ proto.RegisterType((*PasswordRequest)(nil), "caos.zitadel.management.api.v1.PasswordRequest")
+ proto.RegisterType((*ResetPasswordRequest)(nil), "caos.zitadel.management.api.v1.ResetPasswordRequest")
+ proto.RegisterType((*SetPasswordNotificationRequest)(nil), "caos.zitadel.management.api.v1.SetPasswordNotificationRequest")
+ proto.RegisterType((*PasswordComplexityPolicyID)(nil), "caos.zitadel.management.api.v1.PasswordComplexityPolicyID")
+ proto.RegisterType((*PasswordComplexityPolicy)(nil), "caos.zitadel.management.api.v1.PasswordComplexityPolicy")
+ proto.RegisterType((*PasswordComplexityPolicyCreate)(nil), "caos.zitadel.management.api.v1.PasswordComplexityPolicyCreate")
+ proto.RegisterType((*PasswordComplexityPolicyUpdate)(nil), "caos.zitadel.management.api.v1.PasswordComplexityPolicyUpdate")
+ proto.RegisterType((*PasswordAgePolicyID)(nil), "caos.zitadel.management.api.v1.PasswordAgePolicyID")
+ proto.RegisterType((*PasswordAgePolicy)(nil), "caos.zitadel.management.api.v1.PasswordAgePolicy")
+ proto.RegisterType((*PasswordAgePolicyCreate)(nil), "caos.zitadel.management.api.v1.PasswordAgePolicyCreate")
+ proto.RegisterType((*PasswordAgePolicyUpdate)(nil), "caos.zitadel.management.api.v1.PasswordAgePolicyUpdate")
+ proto.RegisterType((*PasswordLockoutPolicyID)(nil), "caos.zitadel.management.api.v1.PasswordLockoutPolicyID")
+ proto.RegisterType((*PasswordLockoutPolicy)(nil), "caos.zitadel.management.api.v1.PasswordLockoutPolicy")
+ proto.RegisterType((*PasswordLockoutPolicyCreate)(nil), "caos.zitadel.management.api.v1.PasswordLockoutPolicyCreate")
+ proto.RegisterType((*PasswordLockoutPolicyUpdate)(nil), "caos.zitadel.management.api.v1.PasswordLockoutPolicyUpdate")
+ proto.RegisterType((*OrgID)(nil), "caos.zitadel.management.api.v1.OrgID")
+ proto.RegisterType((*Org)(nil), "caos.zitadel.management.api.v1.Org")
+ proto.RegisterType((*OrgDomains)(nil), "caos.zitadel.management.api.v1.OrgDomains")
+ proto.RegisterType((*OrgDomain)(nil), "caos.zitadel.management.api.v1.OrgDomain")
+ proto.RegisterType((*OrgDomainView)(nil), "caos.zitadel.management.api.v1.OrgDomainView")
+ proto.RegisterType((*AddOrgDomainRequest)(nil), "caos.zitadel.management.api.v1.AddOrgDomainRequest")
+ proto.RegisterType((*RemoveOrgDomainRequest)(nil), "caos.zitadel.management.api.v1.RemoveOrgDomainRequest")
+ proto.RegisterType((*OrgDomainSearchResponse)(nil), "caos.zitadel.management.api.v1.OrgDomainSearchResponse")
+ proto.RegisterType((*OrgDomainSearchRequest)(nil), "caos.zitadel.management.api.v1.OrgDomainSearchRequest")
+ proto.RegisterType((*OrgDomainSearchQuery)(nil), "caos.zitadel.management.api.v1.OrgDomainSearchQuery")
+ proto.RegisterType((*OrgMemberRoles)(nil), "caos.zitadel.management.api.v1.OrgMemberRoles")
+ proto.RegisterType((*OrgMember)(nil), "caos.zitadel.management.api.v1.OrgMember")
+ proto.RegisterType((*AddOrgMemberRequest)(nil), "caos.zitadel.management.api.v1.AddOrgMemberRequest")
+ proto.RegisterType((*ChangeOrgMemberRequest)(nil), "caos.zitadel.management.api.v1.ChangeOrgMemberRequest")
+ proto.RegisterType((*RemoveOrgMemberRequest)(nil), "caos.zitadel.management.api.v1.RemoveOrgMemberRequest")
+ proto.RegisterType((*OrgMemberSearchResponse)(nil), "caos.zitadel.management.api.v1.OrgMemberSearchResponse")
+ proto.RegisterType((*OrgMemberView)(nil), "caos.zitadel.management.api.v1.OrgMemberView")
+ proto.RegisterType((*OrgMemberSearchRequest)(nil), "caos.zitadel.management.api.v1.OrgMemberSearchRequest")
+ proto.RegisterType((*OrgMemberSearchQuery)(nil), "caos.zitadel.management.api.v1.OrgMemberSearchQuery")
+ proto.RegisterType((*ProjectCreateRequest)(nil), "caos.zitadel.management.api.v1.ProjectCreateRequest")
+ proto.RegisterType((*ProjectUpdateRequest)(nil), "caos.zitadel.management.api.v1.ProjectUpdateRequest")
+ proto.RegisterType((*ProjectSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectSearchResponse")
+ proto.RegisterType((*ProjectView)(nil), "caos.zitadel.management.api.v1.ProjectView")
+ proto.RegisterType((*ProjectSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectSearchRequest")
+ proto.RegisterType((*ProjectSearchQuery)(nil), "caos.zitadel.management.api.v1.ProjectSearchQuery")
+ proto.RegisterType((*Projects)(nil), "caos.zitadel.management.api.v1.Projects")
+ proto.RegisterType((*Project)(nil), "caos.zitadel.management.api.v1.Project")
+ proto.RegisterType((*ProjectMemberRoles)(nil), "caos.zitadel.management.api.v1.ProjectMemberRoles")
+ proto.RegisterType((*ProjectMember)(nil), "caos.zitadel.management.api.v1.ProjectMember")
+ proto.RegisterType((*ProjectMemberAdd)(nil), "caos.zitadel.management.api.v1.ProjectMemberAdd")
+ proto.RegisterType((*ProjectMemberChange)(nil), "caos.zitadel.management.api.v1.ProjectMemberChange")
+ proto.RegisterType((*ProjectMemberRemove)(nil), "caos.zitadel.management.api.v1.ProjectMemberRemove")
+ proto.RegisterType((*ProjectRoleAdd)(nil), "caos.zitadel.management.api.v1.ProjectRoleAdd")
+ proto.RegisterType((*ProjectRoleChange)(nil), "caos.zitadel.management.api.v1.ProjectRoleChange")
+ proto.RegisterType((*ProjectRole)(nil), "caos.zitadel.management.api.v1.ProjectRole")
+ proto.RegisterType((*ProjectRoleView)(nil), "caos.zitadel.management.api.v1.ProjectRoleView")
+ proto.RegisterType((*ProjectRoleRemove)(nil), "caos.zitadel.management.api.v1.ProjectRoleRemove")
+ proto.RegisterType((*ProjectRoleSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectRoleSearchResponse")
+ proto.RegisterType((*ProjectRoleSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectRoleSearchRequest")
+ proto.RegisterType((*ProjectRoleSearchQuery)(nil), "caos.zitadel.management.api.v1.ProjectRoleSearchQuery")
+ proto.RegisterType((*ProjectMemberView)(nil), "caos.zitadel.management.api.v1.ProjectMemberView")
+ proto.RegisterType((*ProjectMemberSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectMemberSearchResponse")
+ proto.RegisterType((*ProjectMemberSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectMemberSearchRequest")
+ proto.RegisterType((*ProjectMemberSearchQuery)(nil), "caos.zitadel.management.api.v1.ProjectMemberSearchQuery")
+ proto.RegisterType((*Application)(nil), "caos.zitadel.management.api.v1.Application")
+ proto.RegisterType((*ApplicationUpdate)(nil), "caos.zitadel.management.api.v1.ApplicationUpdate")
+ proto.RegisterType((*OIDCConfig)(nil), "caos.zitadel.management.api.v1.OIDCConfig")
+ proto.RegisterType((*OIDCApplicationCreate)(nil), "caos.zitadel.management.api.v1.OIDCApplicationCreate")
+ proto.RegisterType((*OIDCConfigUpdate)(nil), "caos.zitadel.management.api.v1.OIDCConfigUpdate")
+ proto.RegisterType((*ClientSecret)(nil), "caos.zitadel.management.api.v1.ClientSecret")
+ proto.RegisterType((*ApplicationView)(nil), "caos.zitadel.management.api.v1.ApplicationView")
+ proto.RegisterType((*ApplicationSearchResponse)(nil), "caos.zitadel.management.api.v1.ApplicationSearchResponse")
+ proto.RegisterType((*ApplicationSearchRequest)(nil), "caos.zitadel.management.api.v1.ApplicationSearchRequest")
+ proto.RegisterType((*ApplicationSearchQuery)(nil), "caos.zitadel.management.api.v1.ApplicationSearchQuery")
+ proto.RegisterType((*ProjectGrant)(nil), "caos.zitadel.management.api.v1.ProjectGrant")
+ proto.RegisterType((*ProjectGrantCreate)(nil), "caos.zitadel.management.api.v1.ProjectGrantCreate")
+ proto.RegisterType((*ProjectGrantUpdate)(nil), "caos.zitadel.management.api.v1.ProjectGrantUpdate")
+ proto.RegisterType((*ProjectGrantID)(nil), "caos.zitadel.management.api.v1.ProjectGrantID")
+ proto.RegisterType((*ProjectGrantView)(nil), "caos.zitadel.management.api.v1.ProjectGrantView")
+ proto.RegisterType((*ProjectGrantSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectGrantSearchResponse")
+ proto.RegisterType((*ProjectGrantSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectGrantSearchRequest")
+ proto.RegisterType((*GrantedProjectSearchRequest)(nil), "caos.zitadel.management.api.v1.GrantedProjectSearchRequest")
+ proto.RegisterType((*ProjectGrantMemberRoles)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberRoles")
+ proto.RegisterType((*ProjectGrantMember)(nil), "caos.zitadel.management.api.v1.ProjectGrantMember")
+ proto.RegisterType((*ProjectGrantMemberAdd)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberAdd")
+ proto.RegisterType((*ProjectGrantMemberChange)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberChange")
+ proto.RegisterType((*ProjectGrantMemberRemove)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberRemove")
+ proto.RegisterType((*ProjectGrantMemberView)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberView")
+ proto.RegisterType((*ProjectGrantMemberSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberSearchResponse")
+ proto.RegisterType((*ProjectGrantMemberSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberSearchRequest")
+ proto.RegisterType((*ProjectGrantMemberSearchQuery)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberSearchQuery")
+ proto.RegisterType((*UserGrant)(nil), "caos.zitadel.management.api.v1.UserGrant")
+ proto.RegisterType((*UserGrantCreate)(nil), "caos.zitadel.management.api.v1.UserGrantCreate")
+ proto.RegisterType((*UserGrantUpdate)(nil), "caos.zitadel.management.api.v1.UserGrantUpdate")
+ proto.RegisterType((*UserGrantID)(nil), "caos.zitadel.management.api.v1.UserGrantID")
+ proto.RegisterType((*ProjectUserGrantID)(nil), "caos.zitadel.management.api.v1.ProjectUserGrantID")
+ proto.RegisterType((*ProjectUserGrantUpdate)(nil), "caos.zitadel.management.api.v1.ProjectUserGrantUpdate")
+ proto.RegisterType((*ProjectGrantUserGrantID)(nil), "caos.zitadel.management.api.v1.ProjectGrantUserGrantID")
+ proto.RegisterType((*ProjectGrantUserGrantCreate)(nil), "caos.zitadel.management.api.v1.ProjectGrantUserGrantCreate")
+ proto.RegisterType((*ProjectGrantUserGrantUpdate)(nil), "caos.zitadel.management.api.v1.ProjectGrantUserGrantUpdate")
+ proto.RegisterType((*UserGrantView)(nil), "caos.zitadel.management.api.v1.UserGrantView")
+ proto.RegisterType((*UserGrantSearchResponse)(nil), "caos.zitadel.management.api.v1.UserGrantSearchResponse")
+ proto.RegisterType((*UserGrantSearchRequest)(nil), "caos.zitadel.management.api.v1.UserGrantSearchRequest")
+ proto.RegisterType((*UserGrantSearchQuery)(nil), "caos.zitadel.management.api.v1.UserGrantSearchQuery")
+ proto.RegisterType((*ProjectUserGrantSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectUserGrantSearchRequest")
+ proto.RegisterType((*ProjectGrantUserGrantSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectGrantUserGrantSearchRequest")
+ proto.RegisterType((*AuthGrantSearchRequest)(nil), "caos.zitadel.management.api.v1.AuthGrantSearchRequest")
+ proto.RegisterType((*AuthGrantSearchQuery)(nil), "caos.zitadel.management.api.v1.AuthGrantSearchQuery")
+ proto.RegisterType((*AuthGrantSearchResponse)(nil), "caos.zitadel.management.api.v1.AuthGrantSearchResponse")
+ proto.RegisterType((*AuthGrant)(nil), "caos.zitadel.management.api.v1.AuthGrant")
}
-var (
- file_management_proto_rawDescOnce sync.Once
- file_management_proto_rawDescData = file_management_proto_rawDesc
-)
+func init() { proto.RegisterFile("management.proto", fileDescriptor_edc174f991dc0a25) }
-func file_management_proto_rawDescGZIP() []byte {
- file_management_proto_rawDescOnce.Do(func() {
- file_management_proto_rawDescData = protoimpl.X.CompressGZIP(file_management_proto_rawDescData)
- })
- return file_management_proto_rawDescData
-}
-
-var file_management_proto_enumTypes = make([]protoimpl.EnumInfo, 27)
-var file_management_proto_msgTypes = make([]protoimpl.MessageInfo, 136)
-var file_management_proto_goTypes = []interface{}{
- (UserState)(0), // 0: caos.zitadel.management.api.v1.UserState
- (Gender)(0), // 1: caos.zitadel.management.api.v1.Gender
- (UserSearchKey)(0), // 2: caos.zitadel.management.api.v1.UserSearchKey
- (SearchMethod)(0), // 3: caos.zitadel.management.api.v1.SearchMethod
- (MfaType)(0), // 4: caos.zitadel.management.api.v1.MfaType
- (MFAState)(0), // 5: caos.zitadel.management.api.v1.MFAState
- (NotificationType)(0), // 6: caos.zitadel.management.api.v1.NotificationType
- (PolicyState)(0), // 7: caos.zitadel.management.api.v1.PolicyState
- (OrgState)(0), // 8: caos.zitadel.management.api.v1.OrgState
- (OrgDomainSearchKey)(0), // 9: caos.zitadel.management.api.v1.OrgDomainSearchKey
- (OrgMemberSearchKey)(0), // 10: caos.zitadel.management.api.v1.OrgMemberSearchKey
- (ProjectSearchKey)(0), // 11: caos.zitadel.management.api.v1.ProjectSearchKey
- (ProjectState)(0), // 12: caos.zitadel.management.api.v1.ProjectState
- (ProjectType)(0), // 13: caos.zitadel.management.api.v1.ProjectType
- (ProjectRoleSearchKey)(0), // 14: caos.zitadel.management.api.v1.ProjectRoleSearchKey
- (ProjectMemberSearchKey)(0), // 15: caos.zitadel.management.api.v1.ProjectMemberSearchKey
- (AppState)(0), // 16: caos.zitadel.management.api.v1.AppState
- (OIDCResponseType)(0), // 17: caos.zitadel.management.api.v1.OIDCResponseType
- (OIDCGrantType)(0), // 18: caos.zitadel.management.api.v1.OIDCGrantType
- (OIDCApplicationType)(0), // 19: caos.zitadel.management.api.v1.OIDCApplicationType
- (OIDCAuthMethodType)(0), // 20: caos.zitadel.management.api.v1.OIDCAuthMethodType
- (ApplicationSearchKey)(0), // 21: caos.zitadel.management.api.v1.ApplicationSearchKey
- (ProjectGrantState)(0), // 22: caos.zitadel.management.api.v1.ProjectGrantState
- (ProjectGrantMemberSearchKey)(0), // 23: caos.zitadel.management.api.v1.ProjectGrantMemberSearchKey
- (UserGrantState)(0), // 24: caos.zitadel.management.api.v1.UserGrantState
- (UserGrantSearchKey)(0), // 25: caos.zitadel.management.api.v1.UserGrantSearchKey
- (AuthGrantSearchKey)(0), // 26: caos.zitadel.management.api.v1.AuthGrantSearchKey
- (*Iam)(nil), // 27: caos.zitadel.management.api.v1.Iam
- (*ChangeRequest)(nil), // 28: caos.zitadel.management.api.v1.ChangeRequest
- (*Changes)(nil), // 29: caos.zitadel.management.api.v1.Changes
- (*Change)(nil), // 30: caos.zitadel.management.api.v1.Change
- (*ApplicationID)(nil), // 31: caos.zitadel.management.api.v1.ApplicationID
- (*ProjectID)(nil), // 32: caos.zitadel.management.api.v1.ProjectID
- (*UserID)(nil), // 33: caos.zitadel.management.api.v1.UserID
- (*UserEmailID)(nil), // 34: caos.zitadel.management.api.v1.UserEmailID
- (*UniqueUserRequest)(nil), // 35: caos.zitadel.management.api.v1.UniqueUserRequest
- (*UniqueUserResponse)(nil), // 36: caos.zitadel.management.api.v1.UniqueUserResponse
- (*CreateUserRequest)(nil), // 37: caos.zitadel.management.api.v1.CreateUserRequest
- (*User)(nil), // 38: caos.zitadel.management.api.v1.User
- (*UserView)(nil), // 39: caos.zitadel.management.api.v1.UserView
- (*UserSearchRequest)(nil), // 40: caos.zitadel.management.api.v1.UserSearchRequest
- (*UserSearchQuery)(nil), // 41: caos.zitadel.management.api.v1.UserSearchQuery
- (*UserSearchResponse)(nil), // 42: caos.zitadel.management.api.v1.UserSearchResponse
- (*UserProfile)(nil), // 43: caos.zitadel.management.api.v1.UserProfile
- (*UserProfileView)(nil), // 44: caos.zitadel.management.api.v1.UserProfileView
- (*UpdateUserProfileRequest)(nil), // 45: caos.zitadel.management.api.v1.UpdateUserProfileRequest
- (*UserEmail)(nil), // 46: caos.zitadel.management.api.v1.UserEmail
- (*UserEmailView)(nil), // 47: caos.zitadel.management.api.v1.UserEmailView
- (*UpdateUserEmailRequest)(nil), // 48: caos.zitadel.management.api.v1.UpdateUserEmailRequest
- (*UserPhone)(nil), // 49: caos.zitadel.management.api.v1.UserPhone
- (*UserPhoneView)(nil), // 50: caos.zitadel.management.api.v1.UserPhoneView
- (*UpdateUserPhoneRequest)(nil), // 51: caos.zitadel.management.api.v1.UpdateUserPhoneRequest
- (*UserAddress)(nil), // 52: caos.zitadel.management.api.v1.UserAddress
- (*UserAddressView)(nil), // 53: caos.zitadel.management.api.v1.UserAddressView
- (*UpdateUserAddressRequest)(nil), // 54: caos.zitadel.management.api.v1.UpdateUserAddressRequest
- (*MultiFactors)(nil), // 55: caos.zitadel.management.api.v1.MultiFactors
- (*MultiFactor)(nil), // 56: caos.zitadel.management.api.v1.MultiFactor
- (*PasswordID)(nil), // 57: caos.zitadel.management.api.v1.PasswordID
- (*PasswordRequest)(nil), // 58: caos.zitadel.management.api.v1.PasswordRequest
- (*ResetPasswordRequest)(nil), // 59: caos.zitadel.management.api.v1.ResetPasswordRequest
- (*SetPasswordNotificationRequest)(nil), // 60: caos.zitadel.management.api.v1.SetPasswordNotificationRequest
- (*PasswordComplexityPolicyID)(nil), // 61: caos.zitadel.management.api.v1.PasswordComplexityPolicyID
- (*PasswordComplexityPolicy)(nil), // 62: caos.zitadel.management.api.v1.PasswordComplexityPolicy
- (*PasswordComplexityPolicyCreate)(nil), // 63: caos.zitadel.management.api.v1.PasswordComplexityPolicyCreate
- (*PasswordComplexityPolicyUpdate)(nil), // 64: caos.zitadel.management.api.v1.PasswordComplexityPolicyUpdate
- (*PasswordAgePolicyID)(nil), // 65: caos.zitadel.management.api.v1.PasswordAgePolicyID
- (*PasswordAgePolicy)(nil), // 66: caos.zitadel.management.api.v1.PasswordAgePolicy
- (*PasswordAgePolicyCreate)(nil), // 67: caos.zitadel.management.api.v1.PasswordAgePolicyCreate
- (*PasswordAgePolicyUpdate)(nil), // 68: caos.zitadel.management.api.v1.PasswordAgePolicyUpdate
- (*PasswordLockoutPolicyID)(nil), // 69: caos.zitadel.management.api.v1.PasswordLockoutPolicyID
- (*PasswordLockoutPolicy)(nil), // 70: caos.zitadel.management.api.v1.PasswordLockoutPolicy
- (*PasswordLockoutPolicyCreate)(nil), // 71: caos.zitadel.management.api.v1.PasswordLockoutPolicyCreate
- (*PasswordLockoutPolicyUpdate)(nil), // 72: caos.zitadel.management.api.v1.PasswordLockoutPolicyUpdate
- (*OrgID)(nil), // 73: caos.zitadel.management.api.v1.OrgID
- (*Org)(nil), // 74: caos.zitadel.management.api.v1.Org
- (*OrgDomains)(nil), // 75: caos.zitadel.management.api.v1.OrgDomains
- (*OrgDomain)(nil), // 76: caos.zitadel.management.api.v1.OrgDomain
- (*OrgDomainView)(nil), // 77: caos.zitadel.management.api.v1.OrgDomainView
- (*AddOrgDomainRequest)(nil), // 78: caos.zitadel.management.api.v1.AddOrgDomainRequest
- (*RemoveOrgDomainRequest)(nil), // 79: caos.zitadel.management.api.v1.RemoveOrgDomainRequest
- (*OrgDomainSearchResponse)(nil), // 80: caos.zitadel.management.api.v1.OrgDomainSearchResponse
- (*OrgDomainSearchRequest)(nil), // 81: caos.zitadel.management.api.v1.OrgDomainSearchRequest
- (*OrgDomainSearchQuery)(nil), // 82: caos.zitadel.management.api.v1.OrgDomainSearchQuery
- (*OrgMemberRoles)(nil), // 83: caos.zitadel.management.api.v1.OrgMemberRoles
- (*OrgMember)(nil), // 84: caos.zitadel.management.api.v1.OrgMember
- (*AddOrgMemberRequest)(nil), // 85: caos.zitadel.management.api.v1.AddOrgMemberRequest
- (*ChangeOrgMemberRequest)(nil), // 86: caos.zitadel.management.api.v1.ChangeOrgMemberRequest
- (*RemoveOrgMemberRequest)(nil), // 87: caos.zitadel.management.api.v1.RemoveOrgMemberRequest
- (*OrgMemberSearchResponse)(nil), // 88: caos.zitadel.management.api.v1.OrgMemberSearchResponse
- (*OrgMemberView)(nil), // 89: caos.zitadel.management.api.v1.OrgMemberView
- (*OrgMemberSearchRequest)(nil), // 90: caos.zitadel.management.api.v1.OrgMemberSearchRequest
- (*OrgMemberSearchQuery)(nil), // 91: caos.zitadel.management.api.v1.OrgMemberSearchQuery
- (*ProjectCreateRequest)(nil), // 92: caos.zitadel.management.api.v1.ProjectCreateRequest
- (*ProjectUpdateRequest)(nil), // 93: caos.zitadel.management.api.v1.ProjectUpdateRequest
- (*ProjectSearchResponse)(nil), // 94: caos.zitadel.management.api.v1.ProjectSearchResponse
- (*ProjectView)(nil), // 95: caos.zitadel.management.api.v1.ProjectView
- (*ProjectSearchRequest)(nil), // 96: caos.zitadel.management.api.v1.ProjectSearchRequest
- (*ProjectSearchQuery)(nil), // 97: caos.zitadel.management.api.v1.ProjectSearchQuery
- (*Projects)(nil), // 98: caos.zitadel.management.api.v1.Projects
- (*Project)(nil), // 99: caos.zitadel.management.api.v1.Project
- (*ProjectMemberRoles)(nil), // 100: caos.zitadel.management.api.v1.ProjectMemberRoles
- (*ProjectMember)(nil), // 101: caos.zitadel.management.api.v1.ProjectMember
- (*ProjectMemberAdd)(nil), // 102: caos.zitadel.management.api.v1.ProjectMemberAdd
- (*ProjectMemberChange)(nil), // 103: caos.zitadel.management.api.v1.ProjectMemberChange
- (*ProjectMemberRemove)(nil), // 104: caos.zitadel.management.api.v1.ProjectMemberRemove
- (*ProjectRoleAdd)(nil), // 105: caos.zitadel.management.api.v1.ProjectRoleAdd
- (*ProjectRoleChange)(nil), // 106: caos.zitadel.management.api.v1.ProjectRoleChange
- (*ProjectRole)(nil), // 107: caos.zitadel.management.api.v1.ProjectRole
- (*ProjectRoleView)(nil), // 108: caos.zitadel.management.api.v1.ProjectRoleView
- (*ProjectRoleRemove)(nil), // 109: caos.zitadel.management.api.v1.ProjectRoleRemove
- (*ProjectRoleSearchResponse)(nil), // 110: caos.zitadel.management.api.v1.ProjectRoleSearchResponse
- (*ProjectRoleSearchRequest)(nil), // 111: caos.zitadel.management.api.v1.ProjectRoleSearchRequest
- (*ProjectRoleSearchQuery)(nil), // 112: caos.zitadel.management.api.v1.ProjectRoleSearchQuery
- (*ProjectMemberView)(nil), // 113: caos.zitadel.management.api.v1.ProjectMemberView
- (*ProjectMemberSearchResponse)(nil), // 114: caos.zitadel.management.api.v1.ProjectMemberSearchResponse
- (*ProjectMemberSearchRequest)(nil), // 115: caos.zitadel.management.api.v1.ProjectMemberSearchRequest
- (*ProjectMemberSearchQuery)(nil), // 116: caos.zitadel.management.api.v1.ProjectMemberSearchQuery
- (*Application)(nil), // 117: caos.zitadel.management.api.v1.Application
- (*ApplicationUpdate)(nil), // 118: caos.zitadel.management.api.v1.ApplicationUpdate
- (*OIDCConfig)(nil), // 119: caos.zitadel.management.api.v1.OIDCConfig
- (*OIDCApplicationCreate)(nil), // 120: caos.zitadel.management.api.v1.OIDCApplicationCreate
- (*OIDCConfigUpdate)(nil), // 121: caos.zitadel.management.api.v1.OIDCConfigUpdate
- (*ClientSecret)(nil), // 122: caos.zitadel.management.api.v1.ClientSecret
- (*ApplicationView)(nil), // 123: caos.zitadel.management.api.v1.ApplicationView
- (*ApplicationSearchResponse)(nil), // 124: caos.zitadel.management.api.v1.ApplicationSearchResponse
- (*ApplicationSearchRequest)(nil), // 125: caos.zitadel.management.api.v1.ApplicationSearchRequest
- (*ApplicationSearchQuery)(nil), // 126: caos.zitadel.management.api.v1.ApplicationSearchQuery
- (*ProjectGrant)(nil), // 127: caos.zitadel.management.api.v1.ProjectGrant
- (*ProjectGrantCreate)(nil), // 128: caos.zitadel.management.api.v1.ProjectGrantCreate
- (*ProjectGrantUpdate)(nil), // 129: caos.zitadel.management.api.v1.ProjectGrantUpdate
- (*ProjectGrantID)(nil), // 130: caos.zitadel.management.api.v1.ProjectGrantID
- (*ProjectGrantView)(nil), // 131: caos.zitadel.management.api.v1.ProjectGrantView
- (*ProjectGrantSearchResponse)(nil), // 132: caos.zitadel.management.api.v1.ProjectGrantSearchResponse
- (*ProjectGrantSearchRequest)(nil), // 133: caos.zitadel.management.api.v1.ProjectGrantSearchRequest
- (*GrantedProjectSearchRequest)(nil), // 134: caos.zitadel.management.api.v1.GrantedProjectSearchRequest
- (*ProjectGrantMemberRoles)(nil), // 135: caos.zitadel.management.api.v1.ProjectGrantMemberRoles
- (*ProjectGrantMember)(nil), // 136: caos.zitadel.management.api.v1.ProjectGrantMember
- (*ProjectGrantMemberAdd)(nil), // 137: caos.zitadel.management.api.v1.ProjectGrantMemberAdd
- (*ProjectGrantMemberChange)(nil), // 138: caos.zitadel.management.api.v1.ProjectGrantMemberChange
- (*ProjectGrantMemberRemove)(nil), // 139: caos.zitadel.management.api.v1.ProjectGrantMemberRemove
- (*ProjectGrantMemberView)(nil), // 140: caos.zitadel.management.api.v1.ProjectGrantMemberView
- (*ProjectGrantMemberSearchResponse)(nil), // 141: caos.zitadel.management.api.v1.ProjectGrantMemberSearchResponse
- (*ProjectGrantMemberSearchRequest)(nil), // 142: caos.zitadel.management.api.v1.ProjectGrantMemberSearchRequest
- (*ProjectGrantMemberSearchQuery)(nil), // 143: caos.zitadel.management.api.v1.ProjectGrantMemberSearchQuery
- (*UserGrant)(nil), // 144: caos.zitadel.management.api.v1.UserGrant
- (*UserGrantCreate)(nil), // 145: caos.zitadel.management.api.v1.UserGrantCreate
- (*UserGrantUpdate)(nil), // 146: caos.zitadel.management.api.v1.UserGrantUpdate
- (*UserGrantID)(nil), // 147: caos.zitadel.management.api.v1.UserGrantID
- (*ProjectUserGrantID)(nil), // 148: caos.zitadel.management.api.v1.ProjectUserGrantID
- (*ProjectUserGrantUpdate)(nil), // 149: caos.zitadel.management.api.v1.ProjectUserGrantUpdate
- (*ProjectGrantUserGrantID)(nil), // 150: caos.zitadel.management.api.v1.ProjectGrantUserGrantID
- (*ProjectGrantUserGrantCreate)(nil), // 151: caos.zitadel.management.api.v1.ProjectGrantUserGrantCreate
- (*ProjectGrantUserGrantUpdate)(nil), // 152: caos.zitadel.management.api.v1.ProjectGrantUserGrantUpdate
- (*UserGrantView)(nil), // 153: caos.zitadel.management.api.v1.UserGrantView
- (*UserGrantSearchResponse)(nil), // 154: caos.zitadel.management.api.v1.UserGrantSearchResponse
- (*UserGrantSearchRequest)(nil), // 155: caos.zitadel.management.api.v1.UserGrantSearchRequest
- (*UserGrantSearchQuery)(nil), // 156: caos.zitadel.management.api.v1.UserGrantSearchQuery
- (*ProjectUserGrantSearchRequest)(nil), // 157: caos.zitadel.management.api.v1.ProjectUserGrantSearchRequest
- (*ProjectGrantUserGrantSearchRequest)(nil), // 158: caos.zitadel.management.api.v1.ProjectGrantUserGrantSearchRequest
- (*AuthGrantSearchRequest)(nil), // 159: caos.zitadel.management.api.v1.AuthGrantSearchRequest
- (*AuthGrantSearchQuery)(nil), // 160: caos.zitadel.management.api.v1.AuthGrantSearchQuery
- (*AuthGrantSearchResponse)(nil), // 161: caos.zitadel.management.api.v1.AuthGrantSearchResponse
- (*AuthGrant)(nil), // 162: caos.zitadel.management.api.v1.AuthGrant
- (*timestamp.Timestamp)(nil), // 163: google.protobuf.Timestamp
- (*_struct.Struct)(nil), // 164: google.protobuf.Struct
- (*empty.Empty)(nil), // 165: google.protobuf.Empty
-}
-var file_management_proto_depIdxs = []int32{
- 30, // 0: caos.zitadel.management.api.v1.Changes.changes:type_name -> caos.zitadel.management.api.v1.Change
- 163, // 1: caos.zitadel.management.api.v1.Change.change_date:type_name -> google.protobuf.Timestamp
- 164, // 2: caos.zitadel.management.api.v1.Change.data:type_name -> google.protobuf.Struct
- 1, // 3: caos.zitadel.management.api.v1.CreateUserRequest.gender:type_name -> caos.zitadel.management.api.v1.Gender
- 0, // 4: caos.zitadel.management.api.v1.User.state:type_name -> caos.zitadel.management.api.v1.UserState
- 163, // 5: caos.zitadel.management.api.v1.User.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 6: caos.zitadel.management.api.v1.User.change_date:type_name -> google.protobuf.Timestamp
- 1, // 7: caos.zitadel.management.api.v1.User.gender:type_name -> caos.zitadel.management.api.v1.Gender
- 0, // 8: caos.zitadel.management.api.v1.UserView.state:type_name -> caos.zitadel.management.api.v1.UserState
- 163, // 9: caos.zitadel.management.api.v1.UserView.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 10: caos.zitadel.management.api.v1.UserView.change_date:type_name -> google.protobuf.Timestamp
- 163, // 11: caos.zitadel.management.api.v1.UserView.last_login:type_name -> google.protobuf.Timestamp
- 163, // 12: caos.zitadel.management.api.v1.UserView.password_changed:type_name -> google.protobuf.Timestamp
- 1, // 13: caos.zitadel.management.api.v1.UserView.gender:type_name -> caos.zitadel.management.api.v1.Gender
- 2, // 14: caos.zitadel.management.api.v1.UserSearchRequest.sorting_column:type_name -> caos.zitadel.management.api.v1.UserSearchKey
- 41, // 15: caos.zitadel.management.api.v1.UserSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.UserSearchQuery
- 2, // 16: caos.zitadel.management.api.v1.UserSearchQuery.key:type_name -> caos.zitadel.management.api.v1.UserSearchKey
- 3, // 17: caos.zitadel.management.api.v1.UserSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 39, // 18: caos.zitadel.management.api.v1.UserSearchResponse.result:type_name -> caos.zitadel.management.api.v1.UserView
- 1, // 19: caos.zitadel.management.api.v1.UserProfile.gender:type_name -> caos.zitadel.management.api.v1.Gender
- 163, // 20: caos.zitadel.management.api.v1.UserProfile.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 21: caos.zitadel.management.api.v1.UserProfile.change_date:type_name -> google.protobuf.Timestamp
- 1, // 22: caos.zitadel.management.api.v1.UserProfileView.gender:type_name -> caos.zitadel.management.api.v1.Gender
- 163, // 23: caos.zitadel.management.api.v1.UserProfileView.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 24: caos.zitadel.management.api.v1.UserProfileView.change_date:type_name -> google.protobuf.Timestamp
- 1, // 25: caos.zitadel.management.api.v1.UpdateUserProfileRequest.gender:type_name -> caos.zitadel.management.api.v1.Gender
- 163, // 26: caos.zitadel.management.api.v1.UserEmail.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 27: caos.zitadel.management.api.v1.UserEmail.change_date:type_name -> google.protobuf.Timestamp
- 163, // 28: caos.zitadel.management.api.v1.UserEmailView.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 29: caos.zitadel.management.api.v1.UserEmailView.change_date:type_name -> google.protobuf.Timestamp
- 163, // 30: caos.zitadel.management.api.v1.UserPhone.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 31: caos.zitadel.management.api.v1.UserPhone.change_date:type_name -> google.protobuf.Timestamp
- 163, // 32: caos.zitadel.management.api.v1.UserPhoneView.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 33: caos.zitadel.management.api.v1.UserPhoneView.change_date:type_name -> google.protobuf.Timestamp
- 163, // 34: caos.zitadel.management.api.v1.UserAddress.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 35: caos.zitadel.management.api.v1.UserAddress.change_date:type_name -> google.protobuf.Timestamp
- 163, // 36: caos.zitadel.management.api.v1.UserAddressView.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 37: caos.zitadel.management.api.v1.UserAddressView.change_date:type_name -> google.protobuf.Timestamp
- 56, // 38: caos.zitadel.management.api.v1.MultiFactors.mfas:type_name -> caos.zitadel.management.api.v1.MultiFactor
- 4, // 39: caos.zitadel.management.api.v1.MultiFactor.type:type_name -> caos.zitadel.management.api.v1.MfaType
- 5, // 40: caos.zitadel.management.api.v1.MultiFactor.state:type_name -> caos.zitadel.management.api.v1.MFAState
- 6, // 41: caos.zitadel.management.api.v1.SetPasswordNotificationRequest.type:type_name -> caos.zitadel.management.api.v1.NotificationType
- 7, // 42: caos.zitadel.management.api.v1.PasswordComplexityPolicy.state:type_name -> caos.zitadel.management.api.v1.PolicyState
- 163, // 43: caos.zitadel.management.api.v1.PasswordComplexityPolicy.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 44: caos.zitadel.management.api.v1.PasswordComplexityPolicy.change_date:type_name -> google.protobuf.Timestamp
- 7, // 45: caos.zitadel.management.api.v1.PasswordAgePolicy.state:type_name -> caos.zitadel.management.api.v1.PolicyState
- 163, // 46: caos.zitadel.management.api.v1.PasswordAgePolicy.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 47: caos.zitadel.management.api.v1.PasswordAgePolicy.change_date:type_name -> google.protobuf.Timestamp
- 7, // 48: caos.zitadel.management.api.v1.PasswordLockoutPolicy.state:type_name -> caos.zitadel.management.api.v1.PolicyState
- 163, // 49: caos.zitadel.management.api.v1.PasswordLockoutPolicy.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 50: caos.zitadel.management.api.v1.PasswordLockoutPolicy.change_date:type_name -> google.protobuf.Timestamp
- 8, // 51: caos.zitadel.management.api.v1.Org.state:type_name -> caos.zitadel.management.api.v1.OrgState
- 163, // 52: caos.zitadel.management.api.v1.Org.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 53: caos.zitadel.management.api.v1.Org.change_date:type_name -> google.protobuf.Timestamp
- 76, // 54: caos.zitadel.management.api.v1.OrgDomains.domains:type_name -> caos.zitadel.management.api.v1.OrgDomain
- 163, // 55: caos.zitadel.management.api.v1.OrgDomain.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 56: caos.zitadel.management.api.v1.OrgDomain.change_date:type_name -> google.protobuf.Timestamp
- 163, // 57: caos.zitadel.management.api.v1.OrgDomainView.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 58: caos.zitadel.management.api.v1.OrgDomainView.change_date:type_name -> google.protobuf.Timestamp
- 77, // 59: caos.zitadel.management.api.v1.OrgDomainSearchResponse.result:type_name -> caos.zitadel.management.api.v1.OrgDomainView
- 82, // 60: caos.zitadel.management.api.v1.OrgDomainSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.OrgDomainSearchQuery
- 9, // 61: caos.zitadel.management.api.v1.OrgDomainSearchQuery.key:type_name -> caos.zitadel.management.api.v1.OrgDomainSearchKey
- 3, // 62: caos.zitadel.management.api.v1.OrgDomainSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 163, // 63: caos.zitadel.management.api.v1.OrgMember.change_date:type_name -> google.protobuf.Timestamp
- 163, // 64: caos.zitadel.management.api.v1.OrgMember.creation_date:type_name -> google.protobuf.Timestamp
- 89, // 65: caos.zitadel.management.api.v1.OrgMemberSearchResponse.result:type_name -> caos.zitadel.management.api.v1.OrgMemberView
- 163, // 66: caos.zitadel.management.api.v1.OrgMemberView.change_date:type_name -> google.protobuf.Timestamp
- 163, // 67: caos.zitadel.management.api.v1.OrgMemberView.creation_date:type_name -> google.protobuf.Timestamp
- 91, // 68: caos.zitadel.management.api.v1.OrgMemberSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.OrgMemberSearchQuery
- 10, // 69: caos.zitadel.management.api.v1.OrgMemberSearchQuery.key:type_name -> caos.zitadel.management.api.v1.OrgMemberSearchKey
- 3, // 70: caos.zitadel.management.api.v1.OrgMemberSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 95, // 71: caos.zitadel.management.api.v1.ProjectSearchResponse.result:type_name -> caos.zitadel.management.api.v1.ProjectView
- 12, // 72: caos.zitadel.management.api.v1.ProjectView.state:type_name -> caos.zitadel.management.api.v1.ProjectState
- 163, // 73: caos.zitadel.management.api.v1.ProjectView.change_date:type_name -> google.protobuf.Timestamp
- 163, // 74: caos.zitadel.management.api.v1.ProjectView.creation_date:type_name -> google.protobuf.Timestamp
- 97, // 75: caos.zitadel.management.api.v1.ProjectSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.ProjectSearchQuery
- 11, // 76: caos.zitadel.management.api.v1.ProjectSearchQuery.key:type_name -> caos.zitadel.management.api.v1.ProjectSearchKey
- 3, // 77: caos.zitadel.management.api.v1.ProjectSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 99, // 78: caos.zitadel.management.api.v1.Projects.projects:type_name -> caos.zitadel.management.api.v1.Project
- 12, // 79: caos.zitadel.management.api.v1.Project.state:type_name -> caos.zitadel.management.api.v1.ProjectState
- 163, // 80: caos.zitadel.management.api.v1.Project.change_date:type_name -> google.protobuf.Timestamp
- 163, // 81: caos.zitadel.management.api.v1.Project.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 82: caos.zitadel.management.api.v1.ProjectMember.change_date:type_name -> google.protobuf.Timestamp
- 163, // 83: caos.zitadel.management.api.v1.ProjectMember.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 84: caos.zitadel.management.api.v1.ProjectRole.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 85: caos.zitadel.management.api.v1.ProjectRole.change_date:type_name -> google.protobuf.Timestamp
- 163, // 86: caos.zitadel.management.api.v1.ProjectRoleView.creation_date:type_name -> google.protobuf.Timestamp
- 108, // 87: caos.zitadel.management.api.v1.ProjectRoleSearchResponse.result:type_name -> caos.zitadel.management.api.v1.ProjectRoleView
- 112, // 88: caos.zitadel.management.api.v1.ProjectRoleSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.ProjectRoleSearchQuery
- 14, // 89: caos.zitadel.management.api.v1.ProjectRoleSearchQuery.key:type_name -> caos.zitadel.management.api.v1.ProjectRoleSearchKey
- 3, // 90: caos.zitadel.management.api.v1.ProjectRoleSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 163, // 91: caos.zitadel.management.api.v1.ProjectMemberView.change_date:type_name -> google.protobuf.Timestamp
- 163, // 92: caos.zitadel.management.api.v1.ProjectMemberView.creation_date:type_name -> google.protobuf.Timestamp
- 113, // 93: caos.zitadel.management.api.v1.ProjectMemberSearchResponse.result:type_name -> caos.zitadel.management.api.v1.ProjectMemberView
- 116, // 94: caos.zitadel.management.api.v1.ProjectMemberSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.ProjectMemberSearchQuery
- 15, // 95: caos.zitadel.management.api.v1.ProjectMemberSearchQuery.key:type_name -> caos.zitadel.management.api.v1.ProjectMemberSearchKey
- 3, // 96: caos.zitadel.management.api.v1.ProjectMemberSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 16, // 97: caos.zitadel.management.api.v1.Application.state:type_name -> caos.zitadel.management.api.v1.AppState
- 163, // 98: caos.zitadel.management.api.v1.Application.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 99: caos.zitadel.management.api.v1.Application.change_date:type_name -> google.protobuf.Timestamp
- 119, // 100: caos.zitadel.management.api.v1.Application.oidc_config:type_name -> caos.zitadel.management.api.v1.OIDCConfig
- 17, // 101: caos.zitadel.management.api.v1.OIDCConfig.response_types:type_name -> caos.zitadel.management.api.v1.OIDCResponseType
- 18, // 102: caos.zitadel.management.api.v1.OIDCConfig.grant_types:type_name -> caos.zitadel.management.api.v1.OIDCGrantType
- 19, // 103: caos.zitadel.management.api.v1.OIDCConfig.application_type:type_name -> caos.zitadel.management.api.v1.OIDCApplicationType
- 20, // 104: caos.zitadel.management.api.v1.OIDCConfig.auth_method_type:type_name -> caos.zitadel.management.api.v1.OIDCAuthMethodType
- 17, // 105: caos.zitadel.management.api.v1.OIDCApplicationCreate.response_types:type_name -> caos.zitadel.management.api.v1.OIDCResponseType
- 18, // 106: caos.zitadel.management.api.v1.OIDCApplicationCreate.grant_types:type_name -> caos.zitadel.management.api.v1.OIDCGrantType
- 19, // 107: caos.zitadel.management.api.v1.OIDCApplicationCreate.application_type:type_name -> caos.zitadel.management.api.v1.OIDCApplicationType
- 20, // 108: caos.zitadel.management.api.v1.OIDCApplicationCreate.auth_method_type:type_name -> caos.zitadel.management.api.v1.OIDCAuthMethodType
- 17, // 109: caos.zitadel.management.api.v1.OIDCConfigUpdate.response_types:type_name -> caos.zitadel.management.api.v1.OIDCResponseType
- 18, // 110: caos.zitadel.management.api.v1.OIDCConfigUpdate.grant_types:type_name -> caos.zitadel.management.api.v1.OIDCGrantType
- 19, // 111: caos.zitadel.management.api.v1.OIDCConfigUpdate.application_type:type_name -> caos.zitadel.management.api.v1.OIDCApplicationType
- 20, // 112: caos.zitadel.management.api.v1.OIDCConfigUpdate.auth_method_type:type_name -> caos.zitadel.management.api.v1.OIDCAuthMethodType
- 16, // 113: caos.zitadel.management.api.v1.ApplicationView.state:type_name -> caos.zitadel.management.api.v1.AppState
- 163, // 114: caos.zitadel.management.api.v1.ApplicationView.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 115: caos.zitadel.management.api.v1.ApplicationView.change_date:type_name -> google.protobuf.Timestamp
- 119, // 116: caos.zitadel.management.api.v1.ApplicationView.oidc_config:type_name -> caos.zitadel.management.api.v1.OIDCConfig
- 123, // 117: caos.zitadel.management.api.v1.ApplicationSearchResponse.result:type_name -> caos.zitadel.management.api.v1.ApplicationView
- 126, // 118: caos.zitadel.management.api.v1.ApplicationSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.ApplicationSearchQuery
- 21, // 119: caos.zitadel.management.api.v1.ApplicationSearchQuery.key:type_name -> caos.zitadel.management.api.v1.ApplicationSearchKey
- 3, // 120: caos.zitadel.management.api.v1.ApplicationSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 22, // 121: caos.zitadel.management.api.v1.ProjectGrant.state:type_name -> caos.zitadel.management.api.v1.ProjectGrantState
- 163, // 122: caos.zitadel.management.api.v1.ProjectGrant.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 123: caos.zitadel.management.api.v1.ProjectGrant.change_date:type_name -> google.protobuf.Timestamp
- 22, // 124: caos.zitadel.management.api.v1.ProjectGrantView.state:type_name -> caos.zitadel.management.api.v1.ProjectGrantState
- 163, // 125: caos.zitadel.management.api.v1.ProjectGrantView.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 126: caos.zitadel.management.api.v1.ProjectGrantView.change_date:type_name -> google.protobuf.Timestamp
- 131, // 127: caos.zitadel.management.api.v1.ProjectGrantSearchResponse.result:type_name -> caos.zitadel.management.api.v1.ProjectGrantView
- 97, // 128: caos.zitadel.management.api.v1.GrantedProjectSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.ProjectSearchQuery
- 163, // 129: caos.zitadel.management.api.v1.ProjectGrantMember.change_date:type_name -> google.protobuf.Timestamp
- 163, // 130: caos.zitadel.management.api.v1.ProjectGrantMember.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 131: caos.zitadel.management.api.v1.ProjectGrantMemberView.change_date:type_name -> google.protobuf.Timestamp
- 163, // 132: caos.zitadel.management.api.v1.ProjectGrantMemberView.creation_date:type_name -> google.protobuf.Timestamp
- 140, // 133: caos.zitadel.management.api.v1.ProjectGrantMemberSearchResponse.result:type_name -> caos.zitadel.management.api.v1.ProjectGrantMemberView
- 143, // 134: caos.zitadel.management.api.v1.ProjectGrantMemberSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.ProjectGrantMemberSearchQuery
- 23, // 135: caos.zitadel.management.api.v1.ProjectGrantMemberSearchQuery.key:type_name -> caos.zitadel.management.api.v1.ProjectGrantMemberSearchKey
- 3, // 136: caos.zitadel.management.api.v1.ProjectGrantMemberSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 24, // 137: caos.zitadel.management.api.v1.UserGrant.state:type_name -> caos.zitadel.management.api.v1.UserGrantState
- 163, // 138: caos.zitadel.management.api.v1.UserGrant.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 139: caos.zitadel.management.api.v1.UserGrant.change_date:type_name -> google.protobuf.Timestamp
- 24, // 140: caos.zitadel.management.api.v1.UserGrantView.state:type_name -> caos.zitadel.management.api.v1.UserGrantState
- 163, // 141: caos.zitadel.management.api.v1.UserGrantView.creation_date:type_name -> google.protobuf.Timestamp
- 163, // 142: caos.zitadel.management.api.v1.UserGrantView.change_date:type_name -> google.protobuf.Timestamp
- 153, // 143: caos.zitadel.management.api.v1.UserGrantSearchResponse.result:type_name -> caos.zitadel.management.api.v1.UserGrantView
- 156, // 144: caos.zitadel.management.api.v1.UserGrantSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.UserGrantSearchQuery
- 25, // 145: caos.zitadel.management.api.v1.UserGrantSearchQuery.key:type_name -> caos.zitadel.management.api.v1.UserGrantSearchKey
- 3, // 146: caos.zitadel.management.api.v1.UserGrantSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 156, // 147: caos.zitadel.management.api.v1.ProjectUserGrantSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.UserGrantSearchQuery
- 156, // 148: caos.zitadel.management.api.v1.ProjectGrantUserGrantSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.UserGrantSearchQuery
- 26, // 149: caos.zitadel.management.api.v1.AuthGrantSearchRequest.sorting_column:type_name -> caos.zitadel.management.api.v1.AuthGrantSearchKey
- 160, // 150: caos.zitadel.management.api.v1.AuthGrantSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.AuthGrantSearchQuery
- 26, // 151: caos.zitadel.management.api.v1.AuthGrantSearchQuery.key:type_name -> caos.zitadel.management.api.v1.AuthGrantSearchKey
- 3, // 152: caos.zitadel.management.api.v1.AuthGrantSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 162, // 153: caos.zitadel.management.api.v1.AuthGrantSearchResponse.result:type_name -> caos.zitadel.management.api.v1.AuthGrant
- 165, // 154: caos.zitadel.management.api.v1.ManagementService.Healthz:input_type -> google.protobuf.Empty
- 165, // 155: caos.zitadel.management.api.v1.ManagementService.Ready:input_type -> google.protobuf.Empty
- 165, // 156: caos.zitadel.management.api.v1.ManagementService.Validate:input_type -> google.protobuf.Empty
- 165, // 157: caos.zitadel.management.api.v1.ManagementService.GetIam:input_type -> google.protobuf.Empty
- 33, // 158: caos.zitadel.management.api.v1.ManagementService.GetUserByID:input_type -> caos.zitadel.management.api.v1.UserID
- 34, // 159: caos.zitadel.management.api.v1.ManagementService.GetUserByEmailGlobal:input_type -> caos.zitadel.management.api.v1.UserEmailID
- 40, // 160: caos.zitadel.management.api.v1.ManagementService.SearchUsers:input_type -> caos.zitadel.management.api.v1.UserSearchRequest
- 35, // 161: caos.zitadel.management.api.v1.ManagementService.IsUserUnique:input_type -> caos.zitadel.management.api.v1.UniqueUserRequest
- 37, // 162: caos.zitadel.management.api.v1.ManagementService.CreateUser:input_type -> caos.zitadel.management.api.v1.CreateUserRequest
- 33, // 163: caos.zitadel.management.api.v1.ManagementService.DeactivateUser:input_type -> caos.zitadel.management.api.v1.UserID
- 33, // 164: caos.zitadel.management.api.v1.ManagementService.ReactivateUser:input_type -> caos.zitadel.management.api.v1.UserID
- 33, // 165: caos.zitadel.management.api.v1.ManagementService.LockUser:input_type -> caos.zitadel.management.api.v1.UserID
- 33, // 166: caos.zitadel.management.api.v1.ManagementService.UnlockUser:input_type -> caos.zitadel.management.api.v1.UserID
- 33, // 167: caos.zitadel.management.api.v1.ManagementService.DeleteUser:input_type -> caos.zitadel.management.api.v1.UserID
- 28, // 168: caos.zitadel.management.api.v1.ManagementService.UserChanges:input_type -> caos.zitadel.management.api.v1.ChangeRequest
- 28, // 169: caos.zitadel.management.api.v1.ManagementService.ApplicationChanges:input_type -> caos.zitadel.management.api.v1.ChangeRequest
- 28, // 170: caos.zitadel.management.api.v1.ManagementService.OrgChanges:input_type -> caos.zitadel.management.api.v1.ChangeRequest
- 28, // 171: caos.zitadel.management.api.v1.ManagementService.ProjectChanges:input_type -> caos.zitadel.management.api.v1.ChangeRequest
- 33, // 172: caos.zitadel.management.api.v1.ManagementService.GetUserProfile:input_type -> caos.zitadel.management.api.v1.UserID
- 45, // 173: caos.zitadel.management.api.v1.ManagementService.UpdateUserProfile:input_type -> caos.zitadel.management.api.v1.UpdateUserProfileRequest
- 33, // 174: caos.zitadel.management.api.v1.ManagementService.GetUserEmail:input_type -> caos.zitadel.management.api.v1.UserID
- 48, // 175: caos.zitadel.management.api.v1.ManagementService.ChangeUserEmail:input_type -> caos.zitadel.management.api.v1.UpdateUserEmailRequest
- 33, // 176: caos.zitadel.management.api.v1.ManagementService.ResendEmailVerificationMail:input_type -> caos.zitadel.management.api.v1.UserID
- 33, // 177: caos.zitadel.management.api.v1.ManagementService.GetUserPhone:input_type -> caos.zitadel.management.api.v1.UserID
- 51, // 178: caos.zitadel.management.api.v1.ManagementService.ChangeUserPhone:input_type -> caos.zitadel.management.api.v1.UpdateUserPhoneRequest
- 33, // 179: caos.zitadel.management.api.v1.ManagementService.ResendPhoneVerificationCode:input_type -> caos.zitadel.management.api.v1.UserID
- 33, // 180: caos.zitadel.management.api.v1.ManagementService.GetUserAddress:input_type -> caos.zitadel.management.api.v1.UserID
- 54, // 181: caos.zitadel.management.api.v1.ManagementService.UpdateUserAddress:input_type -> caos.zitadel.management.api.v1.UpdateUserAddressRequest
- 33, // 182: caos.zitadel.management.api.v1.ManagementService.GetUserMfas:input_type -> caos.zitadel.management.api.v1.UserID
- 60, // 183: caos.zitadel.management.api.v1.ManagementService.SendSetPasswordNotification:input_type -> caos.zitadel.management.api.v1.SetPasswordNotificationRequest
- 58, // 184: caos.zitadel.management.api.v1.ManagementService.SetInitialPassword:input_type -> caos.zitadel.management.api.v1.PasswordRequest
- 165, // 185: caos.zitadel.management.api.v1.ManagementService.GetPasswordComplexityPolicy:input_type -> google.protobuf.Empty
- 63, // 186: caos.zitadel.management.api.v1.ManagementService.CreatePasswordComplexityPolicy:input_type -> caos.zitadel.management.api.v1.PasswordComplexityPolicyCreate
- 64, // 187: caos.zitadel.management.api.v1.ManagementService.UpdatePasswordComplexityPolicy:input_type -> caos.zitadel.management.api.v1.PasswordComplexityPolicyUpdate
- 61, // 188: caos.zitadel.management.api.v1.ManagementService.DeletePasswordComplexityPolicy:input_type -> caos.zitadel.management.api.v1.PasswordComplexityPolicyID
- 165, // 189: caos.zitadel.management.api.v1.ManagementService.GetPasswordAgePolicy:input_type -> google.protobuf.Empty
- 67, // 190: caos.zitadel.management.api.v1.ManagementService.CreatePasswordAgePolicy:input_type -> caos.zitadel.management.api.v1.PasswordAgePolicyCreate
- 68, // 191: caos.zitadel.management.api.v1.ManagementService.UpdatePasswordAgePolicy:input_type -> caos.zitadel.management.api.v1.PasswordAgePolicyUpdate
- 65, // 192: caos.zitadel.management.api.v1.ManagementService.DeletePasswordAgePolicy:input_type -> caos.zitadel.management.api.v1.PasswordAgePolicyID
- 165, // 193: caos.zitadel.management.api.v1.ManagementService.GetPasswordLockoutPolicy:input_type -> google.protobuf.Empty
- 71, // 194: caos.zitadel.management.api.v1.ManagementService.CreatePasswordLockoutPolicy:input_type -> caos.zitadel.management.api.v1.PasswordLockoutPolicyCreate
- 72, // 195: caos.zitadel.management.api.v1.ManagementService.UpdatePasswordLockoutPolicy:input_type -> caos.zitadel.management.api.v1.PasswordLockoutPolicyUpdate
- 69, // 196: caos.zitadel.management.api.v1.ManagementService.DeletePasswordLockoutPolicy:input_type -> caos.zitadel.management.api.v1.PasswordLockoutPolicyID
- 73, // 197: caos.zitadel.management.api.v1.ManagementService.GetOrgByID:input_type -> caos.zitadel.management.api.v1.OrgID
- 76, // 198: caos.zitadel.management.api.v1.ManagementService.GetOrgByDomainGlobal:input_type -> caos.zitadel.management.api.v1.OrgDomain
- 73, // 199: caos.zitadel.management.api.v1.ManagementService.DeactivateOrg:input_type -> caos.zitadel.management.api.v1.OrgID
- 73, // 200: caos.zitadel.management.api.v1.ManagementService.ReactivateOrg:input_type -> caos.zitadel.management.api.v1.OrgID
- 81, // 201: caos.zitadel.management.api.v1.ManagementService.SearchMyOrgDomains:input_type -> caos.zitadel.management.api.v1.OrgDomainSearchRequest
- 78, // 202: caos.zitadel.management.api.v1.ManagementService.AddMyOrgDomain:input_type -> caos.zitadel.management.api.v1.AddOrgDomainRequest
- 79, // 203: caos.zitadel.management.api.v1.ManagementService.RemoveMyOrgDomain:input_type -> caos.zitadel.management.api.v1.RemoveOrgDomainRequest
- 165, // 204: caos.zitadel.management.api.v1.ManagementService.GetOrgMemberRoles:input_type -> google.protobuf.Empty
- 85, // 205: caos.zitadel.management.api.v1.ManagementService.AddMyOrgMember:input_type -> caos.zitadel.management.api.v1.AddOrgMemberRequest
- 86, // 206: caos.zitadel.management.api.v1.ManagementService.ChangeMyOrgMember:input_type -> caos.zitadel.management.api.v1.ChangeOrgMemberRequest
- 87, // 207: caos.zitadel.management.api.v1.ManagementService.RemoveMyOrgMember:input_type -> caos.zitadel.management.api.v1.RemoveOrgMemberRequest
- 90, // 208: caos.zitadel.management.api.v1.ManagementService.SearchMyOrgMembers:input_type -> caos.zitadel.management.api.v1.OrgMemberSearchRequest
- 96, // 209: caos.zitadel.management.api.v1.ManagementService.SearchProjects:input_type -> caos.zitadel.management.api.v1.ProjectSearchRequest
- 32, // 210: caos.zitadel.management.api.v1.ManagementService.ProjectByID:input_type -> caos.zitadel.management.api.v1.ProjectID
- 92, // 211: caos.zitadel.management.api.v1.ManagementService.CreateProject:input_type -> caos.zitadel.management.api.v1.ProjectCreateRequest
- 93, // 212: caos.zitadel.management.api.v1.ManagementService.UpdateProject:input_type -> caos.zitadel.management.api.v1.ProjectUpdateRequest
- 32, // 213: caos.zitadel.management.api.v1.ManagementService.DeactivateProject:input_type -> caos.zitadel.management.api.v1.ProjectID
- 32, // 214: caos.zitadel.management.api.v1.ManagementService.ReactivateProject:input_type -> caos.zitadel.management.api.v1.ProjectID
- 134, // 215: caos.zitadel.management.api.v1.ManagementService.SearchGrantedProjects:input_type -> caos.zitadel.management.api.v1.GrantedProjectSearchRequest
- 130, // 216: caos.zitadel.management.api.v1.ManagementService.GetGrantedProjectByID:input_type -> caos.zitadel.management.api.v1.ProjectGrantID
- 165, // 217: caos.zitadel.management.api.v1.ManagementService.GetProjectMemberRoles:input_type -> google.protobuf.Empty
- 115, // 218: caos.zitadel.management.api.v1.ManagementService.SearchProjectMembers:input_type -> caos.zitadel.management.api.v1.ProjectMemberSearchRequest
- 102, // 219: caos.zitadel.management.api.v1.ManagementService.AddProjectMember:input_type -> caos.zitadel.management.api.v1.ProjectMemberAdd
- 103, // 220: caos.zitadel.management.api.v1.ManagementService.ChangeProjectMember:input_type -> caos.zitadel.management.api.v1.ProjectMemberChange
- 104, // 221: caos.zitadel.management.api.v1.ManagementService.RemoveProjectMember:input_type -> caos.zitadel.management.api.v1.ProjectMemberRemove
- 111, // 222: caos.zitadel.management.api.v1.ManagementService.SearchProjectRoles:input_type -> caos.zitadel.management.api.v1.ProjectRoleSearchRequest
- 105, // 223: caos.zitadel.management.api.v1.ManagementService.AddProjectRole:input_type -> caos.zitadel.management.api.v1.ProjectRoleAdd
- 106, // 224: caos.zitadel.management.api.v1.ManagementService.ChangeProjectRole:input_type -> caos.zitadel.management.api.v1.ProjectRoleChange
- 109, // 225: caos.zitadel.management.api.v1.ManagementService.RemoveProjectRole:input_type -> caos.zitadel.management.api.v1.ProjectRoleRemove
- 125, // 226: caos.zitadel.management.api.v1.ManagementService.SearchApplications:input_type -> caos.zitadel.management.api.v1.ApplicationSearchRequest
- 31, // 227: caos.zitadel.management.api.v1.ManagementService.ApplicationByID:input_type -> caos.zitadel.management.api.v1.ApplicationID
- 120, // 228: caos.zitadel.management.api.v1.ManagementService.CreateOIDCApplication:input_type -> caos.zitadel.management.api.v1.OIDCApplicationCreate
- 118, // 229: caos.zitadel.management.api.v1.ManagementService.UpdateApplication:input_type -> caos.zitadel.management.api.v1.ApplicationUpdate
- 31, // 230: caos.zitadel.management.api.v1.ManagementService.DeactivateApplication:input_type -> caos.zitadel.management.api.v1.ApplicationID
- 31, // 231: caos.zitadel.management.api.v1.ManagementService.ReactivateApplication:input_type -> caos.zitadel.management.api.v1.ApplicationID
- 31, // 232: caos.zitadel.management.api.v1.ManagementService.RemoveApplication:input_type -> caos.zitadel.management.api.v1.ApplicationID
- 121, // 233: caos.zitadel.management.api.v1.ManagementService.UpdateApplicationOIDCConfig:input_type -> caos.zitadel.management.api.v1.OIDCConfigUpdate
- 31, // 234: caos.zitadel.management.api.v1.ManagementService.RegenerateOIDCClientSecret:input_type -> caos.zitadel.management.api.v1.ApplicationID
- 133, // 235: caos.zitadel.management.api.v1.ManagementService.SearchProjectGrants:input_type -> caos.zitadel.management.api.v1.ProjectGrantSearchRequest
- 130, // 236: caos.zitadel.management.api.v1.ManagementService.ProjectGrantByID:input_type -> caos.zitadel.management.api.v1.ProjectGrantID
- 128, // 237: caos.zitadel.management.api.v1.ManagementService.CreateProjectGrant:input_type -> caos.zitadel.management.api.v1.ProjectGrantCreate
- 129, // 238: caos.zitadel.management.api.v1.ManagementService.UpdateProjectGrant:input_type -> caos.zitadel.management.api.v1.ProjectGrantUpdate
- 130, // 239: caos.zitadel.management.api.v1.ManagementService.DeactivateProjectGrant:input_type -> caos.zitadel.management.api.v1.ProjectGrantID
- 130, // 240: caos.zitadel.management.api.v1.ManagementService.ReactivateProjectGrant:input_type -> caos.zitadel.management.api.v1.ProjectGrantID
- 130, // 241: caos.zitadel.management.api.v1.ManagementService.RemoveProjectGrant:input_type -> caos.zitadel.management.api.v1.ProjectGrantID
- 165, // 242: caos.zitadel.management.api.v1.ManagementService.GetProjectGrantMemberRoles:input_type -> google.protobuf.Empty
- 142, // 243: caos.zitadel.management.api.v1.ManagementService.SearchProjectGrantMembers:input_type -> caos.zitadel.management.api.v1.ProjectGrantMemberSearchRequest
- 137, // 244: caos.zitadel.management.api.v1.ManagementService.AddProjectGrantMember:input_type -> caos.zitadel.management.api.v1.ProjectGrantMemberAdd
- 138, // 245: caos.zitadel.management.api.v1.ManagementService.ChangeProjectGrantMember:input_type -> caos.zitadel.management.api.v1.ProjectGrantMemberChange
- 139, // 246: caos.zitadel.management.api.v1.ManagementService.RemoveProjectGrantMember:input_type -> caos.zitadel.management.api.v1.ProjectGrantMemberRemove
- 155, // 247: caos.zitadel.management.api.v1.ManagementService.SearchUserGrants:input_type -> caos.zitadel.management.api.v1.UserGrantSearchRequest
- 147, // 248: caos.zitadel.management.api.v1.ManagementService.UserGrantByID:input_type -> caos.zitadel.management.api.v1.UserGrantID
- 145, // 249: caos.zitadel.management.api.v1.ManagementService.CreateUserGrant:input_type -> caos.zitadel.management.api.v1.UserGrantCreate
- 146, // 250: caos.zitadel.management.api.v1.ManagementService.UpdateUserGrant:input_type -> caos.zitadel.management.api.v1.UserGrantUpdate
- 147, // 251: caos.zitadel.management.api.v1.ManagementService.DeactivateUserGrant:input_type -> caos.zitadel.management.api.v1.UserGrantID
- 147, // 252: caos.zitadel.management.api.v1.ManagementService.ReactivateUserGrant:input_type -> caos.zitadel.management.api.v1.UserGrantID
- 147, // 253: caos.zitadel.management.api.v1.ManagementService.RemoveUserGrant:input_type -> caos.zitadel.management.api.v1.UserGrantID
- 157, // 254: caos.zitadel.management.api.v1.ManagementService.SearchProjectUserGrants:input_type -> caos.zitadel.management.api.v1.ProjectUserGrantSearchRequest
- 148, // 255: caos.zitadel.management.api.v1.ManagementService.ProjectUserGrantByID:input_type -> caos.zitadel.management.api.v1.ProjectUserGrantID
- 145, // 256: caos.zitadel.management.api.v1.ManagementService.CreateProjectUserGrant:input_type -> caos.zitadel.management.api.v1.UserGrantCreate
- 149, // 257: caos.zitadel.management.api.v1.ManagementService.UpdateProjectUserGrant:input_type -> caos.zitadel.management.api.v1.ProjectUserGrantUpdate
- 148, // 258: caos.zitadel.management.api.v1.ManagementService.DeactivateProjectUserGrant:input_type -> caos.zitadel.management.api.v1.ProjectUserGrantID
- 148, // 259: caos.zitadel.management.api.v1.ManagementService.ReactivateProjectUserGrant:input_type -> caos.zitadel.management.api.v1.ProjectUserGrantID
- 158, // 260: caos.zitadel.management.api.v1.ManagementService.SearchProjectGrantUserGrants:input_type -> caos.zitadel.management.api.v1.ProjectGrantUserGrantSearchRequest
- 150, // 261: caos.zitadel.management.api.v1.ManagementService.ProjectGrantUserGrantByID:input_type -> caos.zitadel.management.api.v1.ProjectGrantUserGrantID
- 151, // 262: caos.zitadel.management.api.v1.ManagementService.CreateProjectGrantUserGrant:input_type -> caos.zitadel.management.api.v1.ProjectGrantUserGrantCreate
- 152, // 263: caos.zitadel.management.api.v1.ManagementService.UpdateProjectGrantUserGrant:input_type -> caos.zitadel.management.api.v1.ProjectGrantUserGrantUpdate
- 150, // 264: caos.zitadel.management.api.v1.ManagementService.DeactivateProjectGrantUserGrant:input_type -> caos.zitadel.management.api.v1.ProjectGrantUserGrantID
- 150, // 265: caos.zitadel.management.api.v1.ManagementService.ReactivateProjectGrantUserGrant:input_type -> caos.zitadel.management.api.v1.ProjectGrantUserGrantID
- 159, // 266: caos.zitadel.management.api.v1.ManagementService.SearchAuthGrant:input_type -> caos.zitadel.management.api.v1.AuthGrantSearchRequest
- 165, // 267: caos.zitadel.management.api.v1.ManagementService.Healthz:output_type -> google.protobuf.Empty
- 165, // 268: caos.zitadel.management.api.v1.ManagementService.Ready:output_type -> google.protobuf.Empty
- 164, // 269: caos.zitadel.management.api.v1.ManagementService.Validate:output_type -> google.protobuf.Struct
- 27, // 270: caos.zitadel.management.api.v1.ManagementService.GetIam:output_type -> caos.zitadel.management.api.v1.Iam
- 39, // 271: caos.zitadel.management.api.v1.ManagementService.GetUserByID:output_type -> caos.zitadel.management.api.v1.UserView
- 39, // 272: caos.zitadel.management.api.v1.ManagementService.GetUserByEmailGlobal:output_type -> caos.zitadel.management.api.v1.UserView
- 42, // 273: caos.zitadel.management.api.v1.ManagementService.SearchUsers:output_type -> caos.zitadel.management.api.v1.UserSearchResponse
- 36, // 274: caos.zitadel.management.api.v1.ManagementService.IsUserUnique:output_type -> caos.zitadel.management.api.v1.UniqueUserResponse
- 38, // 275: caos.zitadel.management.api.v1.ManagementService.CreateUser:output_type -> caos.zitadel.management.api.v1.User
- 38, // 276: caos.zitadel.management.api.v1.ManagementService.DeactivateUser:output_type -> caos.zitadel.management.api.v1.User
- 38, // 277: caos.zitadel.management.api.v1.ManagementService.ReactivateUser:output_type -> caos.zitadel.management.api.v1.User
- 38, // 278: caos.zitadel.management.api.v1.ManagementService.LockUser:output_type -> caos.zitadel.management.api.v1.User
- 38, // 279: caos.zitadel.management.api.v1.ManagementService.UnlockUser:output_type -> caos.zitadel.management.api.v1.User
- 165, // 280: caos.zitadel.management.api.v1.ManagementService.DeleteUser:output_type -> google.protobuf.Empty
- 29, // 281: caos.zitadel.management.api.v1.ManagementService.UserChanges:output_type -> caos.zitadel.management.api.v1.Changes
- 29, // 282: caos.zitadel.management.api.v1.ManagementService.ApplicationChanges:output_type -> caos.zitadel.management.api.v1.Changes
- 29, // 283: caos.zitadel.management.api.v1.ManagementService.OrgChanges:output_type -> caos.zitadel.management.api.v1.Changes
- 29, // 284: caos.zitadel.management.api.v1.ManagementService.ProjectChanges:output_type -> caos.zitadel.management.api.v1.Changes
- 44, // 285: caos.zitadel.management.api.v1.ManagementService.GetUserProfile:output_type -> caos.zitadel.management.api.v1.UserProfileView
- 43, // 286: caos.zitadel.management.api.v1.ManagementService.UpdateUserProfile:output_type -> caos.zitadel.management.api.v1.UserProfile
- 47, // 287: caos.zitadel.management.api.v1.ManagementService.GetUserEmail:output_type -> caos.zitadel.management.api.v1.UserEmailView
- 46, // 288: caos.zitadel.management.api.v1.ManagementService.ChangeUserEmail:output_type -> caos.zitadel.management.api.v1.UserEmail
- 165, // 289: caos.zitadel.management.api.v1.ManagementService.ResendEmailVerificationMail:output_type -> google.protobuf.Empty
- 50, // 290: caos.zitadel.management.api.v1.ManagementService.GetUserPhone:output_type -> caos.zitadel.management.api.v1.UserPhoneView
- 49, // 291: caos.zitadel.management.api.v1.ManagementService.ChangeUserPhone:output_type -> caos.zitadel.management.api.v1.UserPhone
- 165, // 292: caos.zitadel.management.api.v1.ManagementService.ResendPhoneVerificationCode:output_type -> google.protobuf.Empty
- 53, // 293: caos.zitadel.management.api.v1.ManagementService.GetUserAddress:output_type -> caos.zitadel.management.api.v1.UserAddressView
- 52, // 294: caos.zitadel.management.api.v1.ManagementService.UpdateUserAddress:output_type -> caos.zitadel.management.api.v1.UserAddress
- 55, // 295: caos.zitadel.management.api.v1.ManagementService.GetUserMfas:output_type -> caos.zitadel.management.api.v1.MultiFactors
- 165, // 296: caos.zitadel.management.api.v1.ManagementService.SendSetPasswordNotification:output_type -> google.protobuf.Empty
- 165, // 297: caos.zitadel.management.api.v1.ManagementService.SetInitialPassword:output_type -> google.protobuf.Empty
- 62, // 298: caos.zitadel.management.api.v1.ManagementService.GetPasswordComplexityPolicy:output_type -> caos.zitadel.management.api.v1.PasswordComplexityPolicy
- 62, // 299: caos.zitadel.management.api.v1.ManagementService.CreatePasswordComplexityPolicy:output_type -> caos.zitadel.management.api.v1.PasswordComplexityPolicy
- 62, // 300: caos.zitadel.management.api.v1.ManagementService.UpdatePasswordComplexityPolicy:output_type -> caos.zitadel.management.api.v1.PasswordComplexityPolicy
- 165, // 301: caos.zitadel.management.api.v1.ManagementService.DeletePasswordComplexityPolicy:output_type -> google.protobuf.Empty
- 66, // 302: caos.zitadel.management.api.v1.ManagementService.GetPasswordAgePolicy:output_type -> caos.zitadel.management.api.v1.PasswordAgePolicy
- 66, // 303: caos.zitadel.management.api.v1.ManagementService.CreatePasswordAgePolicy:output_type -> caos.zitadel.management.api.v1.PasswordAgePolicy
- 66, // 304: caos.zitadel.management.api.v1.ManagementService.UpdatePasswordAgePolicy:output_type -> caos.zitadel.management.api.v1.PasswordAgePolicy
- 165, // 305: caos.zitadel.management.api.v1.ManagementService.DeletePasswordAgePolicy:output_type -> google.protobuf.Empty
- 70, // 306: caos.zitadel.management.api.v1.ManagementService.GetPasswordLockoutPolicy:output_type -> caos.zitadel.management.api.v1.PasswordLockoutPolicy
- 70, // 307: caos.zitadel.management.api.v1.ManagementService.CreatePasswordLockoutPolicy:output_type -> caos.zitadel.management.api.v1.PasswordLockoutPolicy
- 70, // 308: caos.zitadel.management.api.v1.ManagementService.UpdatePasswordLockoutPolicy:output_type -> caos.zitadel.management.api.v1.PasswordLockoutPolicy
- 165, // 309: caos.zitadel.management.api.v1.ManagementService.DeletePasswordLockoutPolicy:output_type -> google.protobuf.Empty
- 74, // 310: caos.zitadel.management.api.v1.ManagementService.GetOrgByID:output_type -> caos.zitadel.management.api.v1.Org
- 74, // 311: caos.zitadel.management.api.v1.ManagementService.GetOrgByDomainGlobal:output_type -> caos.zitadel.management.api.v1.Org
- 74, // 312: caos.zitadel.management.api.v1.ManagementService.DeactivateOrg:output_type -> caos.zitadel.management.api.v1.Org
- 74, // 313: caos.zitadel.management.api.v1.ManagementService.ReactivateOrg:output_type -> caos.zitadel.management.api.v1.Org
- 80, // 314: caos.zitadel.management.api.v1.ManagementService.SearchMyOrgDomains:output_type -> caos.zitadel.management.api.v1.OrgDomainSearchResponse
- 76, // 315: caos.zitadel.management.api.v1.ManagementService.AddMyOrgDomain:output_type -> caos.zitadel.management.api.v1.OrgDomain
- 165, // 316: caos.zitadel.management.api.v1.ManagementService.RemoveMyOrgDomain:output_type -> google.protobuf.Empty
- 83, // 317: caos.zitadel.management.api.v1.ManagementService.GetOrgMemberRoles:output_type -> caos.zitadel.management.api.v1.OrgMemberRoles
- 84, // 318: caos.zitadel.management.api.v1.ManagementService.AddMyOrgMember:output_type -> caos.zitadel.management.api.v1.OrgMember
- 84, // 319: caos.zitadel.management.api.v1.ManagementService.ChangeMyOrgMember:output_type -> caos.zitadel.management.api.v1.OrgMember
- 165, // 320: caos.zitadel.management.api.v1.ManagementService.RemoveMyOrgMember:output_type -> google.protobuf.Empty
- 88, // 321: caos.zitadel.management.api.v1.ManagementService.SearchMyOrgMembers:output_type -> caos.zitadel.management.api.v1.OrgMemberSearchResponse
- 94, // 322: caos.zitadel.management.api.v1.ManagementService.SearchProjects:output_type -> caos.zitadel.management.api.v1.ProjectSearchResponse
- 99, // 323: caos.zitadel.management.api.v1.ManagementService.ProjectByID:output_type -> caos.zitadel.management.api.v1.Project
- 99, // 324: caos.zitadel.management.api.v1.ManagementService.CreateProject:output_type -> caos.zitadel.management.api.v1.Project
- 99, // 325: caos.zitadel.management.api.v1.ManagementService.UpdateProject:output_type -> caos.zitadel.management.api.v1.Project
- 99, // 326: caos.zitadel.management.api.v1.ManagementService.DeactivateProject:output_type -> caos.zitadel.management.api.v1.Project
- 99, // 327: caos.zitadel.management.api.v1.ManagementService.ReactivateProject:output_type -> caos.zitadel.management.api.v1.Project
- 132, // 328: caos.zitadel.management.api.v1.ManagementService.SearchGrantedProjects:output_type -> caos.zitadel.management.api.v1.ProjectGrantSearchResponse
- 131, // 329: caos.zitadel.management.api.v1.ManagementService.GetGrantedProjectByID:output_type -> caos.zitadel.management.api.v1.ProjectGrantView
- 100, // 330: caos.zitadel.management.api.v1.ManagementService.GetProjectMemberRoles:output_type -> caos.zitadel.management.api.v1.ProjectMemberRoles
- 114, // 331: caos.zitadel.management.api.v1.ManagementService.SearchProjectMembers:output_type -> caos.zitadel.management.api.v1.ProjectMemberSearchResponse
- 101, // 332: caos.zitadel.management.api.v1.ManagementService.AddProjectMember:output_type -> caos.zitadel.management.api.v1.ProjectMember
- 101, // 333: caos.zitadel.management.api.v1.ManagementService.ChangeProjectMember:output_type -> caos.zitadel.management.api.v1.ProjectMember
- 165, // 334: caos.zitadel.management.api.v1.ManagementService.RemoveProjectMember:output_type -> google.protobuf.Empty
- 110, // 335: caos.zitadel.management.api.v1.ManagementService.SearchProjectRoles:output_type -> caos.zitadel.management.api.v1.ProjectRoleSearchResponse
- 107, // 336: caos.zitadel.management.api.v1.ManagementService.AddProjectRole:output_type -> caos.zitadel.management.api.v1.ProjectRole
- 107, // 337: caos.zitadel.management.api.v1.ManagementService.ChangeProjectRole:output_type -> caos.zitadel.management.api.v1.ProjectRole
- 165, // 338: caos.zitadel.management.api.v1.ManagementService.RemoveProjectRole:output_type -> google.protobuf.Empty
- 124, // 339: caos.zitadel.management.api.v1.ManagementService.SearchApplications:output_type -> caos.zitadel.management.api.v1.ApplicationSearchResponse
- 117, // 340: caos.zitadel.management.api.v1.ManagementService.ApplicationByID:output_type -> caos.zitadel.management.api.v1.Application
- 117, // 341: caos.zitadel.management.api.v1.ManagementService.CreateOIDCApplication:output_type -> caos.zitadel.management.api.v1.Application
- 117, // 342: caos.zitadel.management.api.v1.ManagementService.UpdateApplication:output_type -> caos.zitadel.management.api.v1.Application
- 117, // 343: caos.zitadel.management.api.v1.ManagementService.DeactivateApplication:output_type -> caos.zitadel.management.api.v1.Application
- 117, // 344: caos.zitadel.management.api.v1.ManagementService.ReactivateApplication:output_type -> caos.zitadel.management.api.v1.Application
- 165, // 345: caos.zitadel.management.api.v1.ManagementService.RemoveApplication:output_type -> google.protobuf.Empty
- 119, // 346: caos.zitadel.management.api.v1.ManagementService.UpdateApplicationOIDCConfig:output_type -> caos.zitadel.management.api.v1.OIDCConfig
- 122, // 347: caos.zitadel.management.api.v1.ManagementService.RegenerateOIDCClientSecret:output_type -> caos.zitadel.management.api.v1.ClientSecret
- 132, // 348: caos.zitadel.management.api.v1.ManagementService.SearchProjectGrants:output_type -> caos.zitadel.management.api.v1.ProjectGrantSearchResponse
- 127, // 349: caos.zitadel.management.api.v1.ManagementService.ProjectGrantByID:output_type -> caos.zitadel.management.api.v1.ProjectGrant
- 127, // 350: caos.zitadel.management.api.v1.ManagementService.CreateProjectGrant:output_type -> caos.zitadel.management.api.v1.ProjectGrant
- 127, // 351: caos.zitadel.management.api.v1.ManagementService.UpdateProjectGrant:output_type -> caos.zitadel.management.api.v1.ProjectGrant
- 127, // 352: caos.zitadel.management.api.v1.ManagementService.DeactivateProjectGrant:output_type -> caos.zitadel.management.api.v1.ProjectGrant
- 127, // 353: caos.zitadel.management.api.v1.ManagementService.ReactivateProjectGrant:output_type -> caos.zitadel.management.api.v1.ProjectGrant
- 165, // 354: caos.zitadel.management.api.v1.ManagementService.RemoveProjectGrant:output_type -> google.protobuf.Empty
- 135, // 355: caos.zitadel.management.api.v1.ManagementService.GetProjectGrantMemberRoles:output_type -> caos.zitadel.management.api.v1.ProjectGrantMemberRoles
- 141, // 356: caos.zitadel.management.api.v1.ManagementService.SearchProjectGrantMembers:output_type -> caos.zitadel.management.api.v1.ProjectGrantMemberSearchResponse
- 136, // 357: caos.zitadel.management.api.v1.ManagementService.AddProjectGrantMember:output_type -> caos.zitadel.management.api.v1.ProjectGrantMember
- 136, // 358: caos.zitadel.management.api.v1.ManagementService.ChangeProjectGrantMember:output_type -> caos.zitadel.management.api.v1.ProjectGrantMember
- 165, // 359: caos.zitadel.management.api.v1.ManagementService.RemoveProjectGrantMember:output_type -> google.protobuf.Empty
- 154, // 360: caos.zitadel.management.api.v1.ManagementService.SearchUserGrants:output_type -> caos.zitadel.management.api.v1.UserGrantSearchResponse
- 144, // 361: caos.zitadel.management.api.v1.ManagementService.UserGrantByID:output_type -> caos.zitadel.management.api.v1.UserGrant
- 144, // 362: caos.zitadel.management.api.v1.ManagementService.CreateUserGrant:output_type -> caos.zitadel.management.api.v1.UserGrant
- 144, // 363: caos.zitadel.management.api.v1.ManagementService.UpdateUserGrant:output_type -> caos.zitadel.management.api.v1.UserGrant
- 144, // 364: caos.zitadel.management.api.v1.ManagementService.DeactivateUserGrant:output_type -> caos.zitadel.management.api.v1.UserGrant
- 144, // 365: caos.zitadel.management.api.v1.ManagementService.ReactivateUserGrant:output_type -> caos.zitadel.management.api.v1.UserGrant
- 165, // 366: caos.zitadel.management.api.v1.ManagementService.RemoveUserGrant:output_type -> google.protobuf.Empty
- 154, // 367: caos.zitadel.management.api.v1.ManagementService.SearchProjectUserGrants:output_type -> caos.zitadel.management.api.v1.UserGrantSearchResponse
- 144, // 368: caos.zitadel.management.api.v1.ManagementService.ProjectUserGrantByID:output_type -> caos.zitadel.management.api.v1.UserGrant
- 144, // 369: caos.zitadel.management.api.v1.ManagementService.CreateProjectUserGrant:output_type -> caos.zitadel.management.api.v1.UserGrant
- 144, // 370: caos.zitadel.management.api.v1.ManagementService.UpdateProjectUserGrant:output_type -> caos.zitadel.management.api.v1.UserGrant
- 144, // 371: caos.zitadel.management.api.v1.ManagementService.DeactivateProjectUserGrant:output_type -> caos.zitadel.management.api.v1.UserGrant
- 144, // 372: caos.zitadel.management.api.v1.ManagementService.ReactivateProjectUserGrant:output_type -> caos.zitadel.management.api.v1.UserGrant
- 154, // 373: caos.zitadel.management.api.v1.ManagementService.SearchProjectGrantUserGrants:output_type -> caos.zitadel.management.api.v1.UserGrantSearchResponse
- 144, // 374: caos.zitadel.management.api.v1.ManagementService.ProjectGrantUserGrantByID:output_type -> caos.zitadel.management.api.v1.UserGrant
- 144, // 375: caos.zitadel.management.api.v1.ManagementService.CreateProjectGrantUserGrant:output_type -> caos.zitadel.management.api.v1.UserGrant
- 144, // 376: caos.zitadel.management.api.v1.ManagementService.UpdateProjectGrantUserGrant:output_type -> caos.zitadel.management.api.v1.UserGrant
- 144, // 377: caos.zitadel.management.api.v1.ManagementService.DeactivateProjectGrantUserGrant:output_type -> caos.zitadel.management.api.v1.UserGrant
- 144, // 378: caos.zitadel.management.api.v1.ManagementService.ReactivateProjectGrantUserGrant:output_type -> caos.zitadel.management.api.v1.UserGrant
- 161, // 379: caos.zitadel.management.api.v1.ManagementService.SearchAuthGrant:output_type -> caos.zitadel.management.api.v1.AuthGrantSearchResponse
- 267, // [267:380] is the sub-list for method output_type
- 154, // [154:267] is the sub-list for method input_type
- 154, // [154:154] is the sub-list for extension type_name
- 154, // [154:154] is the sub-list for extension extendee
- 0, // [0:154] is the sub-list for field type_name
-}
-
-func init() { file_management_proto_init() }
-func file_management_proto_init() {
- if File_management_proto != nil {
- return
- }
- if !protoimpl.UnsafeEnabled {
- file_management_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Iam); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ChangeRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Changes); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Change); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ApplicationID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserEmailID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UniqueUserRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UniqueUserResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*CreateUserRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*User); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserProfile); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserProfileView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UpdateUserProfileRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserEmail); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserEmailView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UpdateUserEmailRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserPhone); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserPhoneView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UpdateUserPhoneRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserAddress); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserAddressView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UpdateUserAddressRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MultiFactors); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MultiFactor); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ResetPasswordRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*SetPasswordNotificationRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordComplexityPolicyID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordComplexityPolicy); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordComplexityPolicyCreate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordComplexityPolicyUpdate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordAgePolicyID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordAgePolicy); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordAgePolicyCreate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordAgePolicyUpdate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordLockoutPolicyID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordLockoutPolicy); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordLockoutPolicyCreate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordLockoutPolicyUpdate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Org); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgDomains); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgDomain); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgDomainView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AddOrgDomainRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*RemoveOrgDomainRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgDomainSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgDomainSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgDomainSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgMemberRoles); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgMember); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AddOrgMemberRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ChangeOrgMemberRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*RemoveOrgMemberRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgMemberSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgMemberView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgMemberSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgMemberSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectCreateRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectUpdateRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Projects); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Project); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMemberRoles); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMember); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMemberAdd); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMemberChange); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMemberRemove); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRoleAdd); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRoleChange); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[80].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRole); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[81].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRoleView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[82].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRoleRemove); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[83].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRoleSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRoleSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRoleSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[86].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMemberView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[87].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMemberSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[88].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMemberSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[89].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMemberSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[90].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Application); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[91].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ApplicationUpdate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[92].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OIDCConfig); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[93].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OIDCApplicationCreate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[94].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OIDCConfigUpdate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[95].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ClientSecret); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[96].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ApplicationView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[97].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ApplicationSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[98].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ApplicationSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[99].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ApplicationSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[100].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrant); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[101].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantCreate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[102].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantUpdate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[103].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[104].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[105].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[106].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[107].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GrantedProjectSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[108].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMemberRoles); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[109].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMember); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[110].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMemberAdd); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[111].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMemberChange); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[112].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMemberRemove); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[113].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMemberView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[114].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMemberSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[115].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMemberSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[116].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMemberSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[117].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrant); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[118].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantCreate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[119].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantUpdate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[120].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[121].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectUserGrantID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[122].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectUserGrantUpdate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[123].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantUserGrantID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[124].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantUserGrantCreate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[125].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantUserGrantUpdate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[126].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[127].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[128].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[129].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[130].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectUserGrantSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[131].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantUserGrantSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[132].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AuthGrantSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[133].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AuthGrantSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[134].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AuthGrantSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[135].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AuthGrant); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- }
- file_management_proto_msgTypes[90].OneofWrappers = []interface{}{
- (*Application_OidcConfig)(nil),
- }
- file_management_proto_msgTypes[96].OneofWrappers = []interface{}{
- (*ApplicationView_OidcConfig)(nil),
- }
- type x struct{}
- out := protoimpl.TypeBuilder{
- File: protoimpl.DescBuilder{
- GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_management_proto_rawDesc,
- NumEnums: 27,
- NumMessages: 136,
- NumExtensions: 0,
- NumServices: 1,
- },
- GoTypes: file_management_proto_goTypes,
- DependencyIndexes: file_management_proto_depIdxs,
- EnumInfos: file_management_proto_enumTypes,
- MessageInfos: file_management_proto_msgTypes,
- }.Build()
- File_management_proto = out.File
- file_management_proto_rawDesc = nil
- file_management_proto_goTypes = nil
- file_management_proto_depIdxs = nil
+var fileDescriptor_edc174f991dc0a25 = []byte{
+ // 8888 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x79, 0x6c, 0x1c, 0x59,
+ 0x7a, 0xdf, 0x54, 0x77, 0xf3, 0xfa, 0x78, 0x35, 0x1f, 0xaf, 0x56, 0x53, 0xa2, 0x38, 0x35, 0xd2,
+ 0x48, 0x6a, 0x49, 0x6c, 0x89, 0x33, 0xa3, 0x39, 0xe4, 0x1d, 0x4d, 0x8b, 0xdd, 0xa2, 0xda, 0x43,
+ 0xb2, 0x39, 0x4d, 0x6a, 0x94, 0xd9, 0x18, 0xdb, 0x5b, 0xd3, 0x5d, 0x22, 0xdb, 0x6a, 0x76, 0xf7,
+ 0x56, 0x55, 0x4b, 0xc3, 0x9d, 0x0c, 0x90, 0x70, 0x80, 0xc0, 0xd8, 0x64, 0xed, 0xec, 0x4e, 0xd6,
+ 0x41, 0x16, 0x5e, 0xef, 0x11, 0x38, 0x0e, 0x9c, 0x6c, 0x16, 0x46, 0xcc, 0x64, 0x36, 0x76, 0xec,
+ 0x20, 0x89, 0x73, 0xd8, 0x09, 0x90, 0x4d, 0x0c, 0xdb, 0x01, 0x72, 0x20, 0xeb, 0x20, 0x07, 0x10,
+ 0xc0, 0xc8, 0x85, 0xc0, 0x13, 0xc0, 0x08, 0xde, 0x51, 0x55, 0xef, 0xd5, 0xd1, 0x55, 0xd5, 0x24,
+ 0x35, 0x5a, 0xcd, 0xfc, 0x45, 0xf6, 0x3b, 0x7f, 0xdf, 0xf7, 0xbe, 0xef, 0x7b, 0xdf, 0xf7, 0xde,
+ 0xab, 0xf7, 0x20, 0xb9, 0xab, 0x34, 0x95, 0x6d, 0x75, 0x57, 0x6d, 0x1a, 0x8b, 0x6d, 0xad, 0x65,
+ 0xb4, 0xd0, 0x7c, 0x55, 0x69, 0xe9, 0x8b, 0x5f, 0xac, 0x1b, 0x4a, 0x4d, 0x6d, 0x2c, 0x72, 0xd9,
+ 0x4a, 0xbb, 0xbe, 0xf8, 0xe0, 0x6a, 0xfa, 0xe4, 0x76, 0xab, 0xb5, 0xdd, 0x50, 0xb3, 0x4a, 0xbb,
+ 0x9e, 0x55, 0x9a, 0xcd, 0x96, 0xa1, 0x18, 0xf5, 0x56, 0x53, 0xa7, 0xb5, 0xd3, 0x73, 0x2c, 0x97,
+ 0xfc, 0x7a, 0xbb, 0x73, 0x2f, 0xab, 0xee, 0xb6, 0x8d, 0x3d, 0x96, 0x79, 0xd2, 0x99, 0xa9, 0x1b,
+ 0x5a, 0xa7, 0xca, 0x3a, 0x4e, 0x9f, 0x76, 0xe6, 0x1a, 0xf5, 0x5d, 0x55, 0x37, 0x94, 0xdd, 0x36,
+ 0x2b, 0x70, 0x89, 0xfc, 0xa9, 0x5e, 0xde, 0x56, 0x9b, 0x97, 0xf5, 0x87, 0xca, 0xf6, 0xb6, 0xaa,
+ 0x65, 0x5b, 0x6d, 0xd2, 0xbb, 0x07, 0x92, 0xd9, 0x07, 0x4a, 0xa3, 0x5e, 0x53, 0x0c, 0x35, 0x6b,
+ 0xfe, 0xc3, 0x32, 0x16, 0x9c, 0xfd, 0xd4, 0x54, 0xbd, 0xaa, 0xd5, 0xdb, 0x46, 0x4b, 0x63, 0x25,
+ 0x52, 0x4a, 0xc7, 0xd8, 0xa1, 0x2d, 0x9b, 0x1d, 0xd0, 0x1c, 0xf9, 0x6b, 0x12, 0xc4, 0x8b, 0xca,
+ 0x2e, 0x92, 0x61, 0x74, 0xbb, 0xd1, 0x7a, 0x5b, 0x69, 0x54, 0x5a, 0xda, 0x76, 0xa5, 0x5e, 0x4b,
+ 0x49, 0x0b, 0xd2, 0xf9, 0xa1, 0xf2, 0x30, 0x4d, 0x2c, 0x69, 0xdb, 0xc5, 0x1a, 0x3a, 0x03, 0x63,
+ 0x75, 0x65, 0xb7, 0xd2, 0xd6, 0x5a, 0x3f, 0xa9, 0x56, 0x0d, 0x5c, 0x28, 0x46, 0x0a, 0x8d, 0xd4,
+ 0x95, 0xdd, 0x0d, 0x9a, 0x58, 0xac, 0xa1, 0x79, 0x18, 0xd6, 0x55, 0xa3, 0xd2, 0x69, 0x57, 0x6a,
+ 0xad, 0xa6, 0x9a, 0x8a, 0x2f, 0x48, 0xe7, 0x07, 0xcb, 0x43, 0xba, 0x6a, 0xdc, 0x69, 0xe7, 0x5b,
+ 0x4d, 0x15, 0xb7, 0xc2, 0xf2, 0x75, 0x43, 0xd1, 0x0c, 0xb5, 0x96, 0x4a, 0x90, 0x22, 0x23, 0xa4,
+ 0xc8, 0x26, 0x4d, 0x93, 0x3b, 0x30, 0xba, 0xbc, 0xa3, 0x34, 0xb7, 0xd5, 0xb2, 0xfa, 0x85, 0x8e,
+ 0xaa, 0x1b, 0x68, 0x0c, 0x62, 0x16, 0xaa, 0x58, 0xbd, 0x86, 0xa6, 0xa1, 0x5f, 0x57, 0xab, 0x36,
+ 0x88, 0x3e, 0x5d, 0xad, 0x16, 0x6b, 0x68, 0x0a, 0xfa, 0x1a, 0xf5, 0xdd, 0xba, 0x41, 0xfa, 0x4d,
+ 0x94, 0xe9, 0x0f, 0x74, 0x0e, 0xc6, 0x75, 0xdc, 0x4e, 0xb3, 0xaa, 0x56, 0x5a, 0xf7, 0xee, 0xe9,
+ 0xaa, 0x41, 0x3a, 0x4d, 0x94, 0xc7, 0xcc, 0xe4, 0x12, 0x49, 0x95, 0xf7, 0x60, 0x80, 0x76, 0xab,
+ 0xa3, 0xd7, 0x60, 0xa0, 0x4a, 0xff, 0x4d, 0x49, 0x0b, 0xf1, 0xf3, 0xc3, 0x4b, 0xcf, 0x2e, 0x76,
+ 0x17, 0xa4, 0x45, 0x06, 0xd8, 0xac, 0x86, 0x66, 0xa0, 0x9f, 0x75, 0x16, 0x23, 0x9d, 0xb1, 0x5f,
+ 0xde, 0x18, 0xe5, 0xdf, 0x94, 0xa0, 0x9f, 0xb6, 0x80, 0xae, 0xc3, 0x30, 0x6d, 0xa3, 0x82, 0x47,
+ 0x99, 0x10, 0x3d, 0xbc, 0x94, 0x5e, 0xa4, 0xc3, 0xbc, 0x68, 0x0e, 0xf3, 0xe2, 0x96, 0x29, 0x4e,
+ 0x65, 0xa0, 0xc5, 0xf3, 0x8a, 0xa1, 0xa2, 0x53, 0x00, 0xea, 0x03, 0xb5, 0x69, 0x54, 0x8c, 0xbd,
+ 0xb6, 0xca, 0x98, 0x33, 0x44, 0x52, 0xb6, 0xf6, 0xda, 0x2a, 0x4a, 0xc3, 0xa0, 0x49, 0x33, 0xeb,
+ 0xdf, 0xfa, 0x8d, 0x01, 0xab, 0xb5, 0xba, 0xd1, 0xd2, 0x08, 0x77, 0x86, 0xca, 0xec, 0x17, 0xba,
+ 0x08, 0x89, 0x9a, 0x62, 0x28, 0xa9, 0x3e, 0x02, 0x64, 0xd6, 0x05, 0x64, 0x93, 0x48, 0x7d, 0x99,
+ 0x14, 0x92, 0x5f, 0x85, 0xd1, 0x5c, 0xbb, 0xdd, 0xa8, 0x57, 0x89, 0xf0, 0x16, 0xf3, 0xae, 0x91,
+ 0x3b, 0x05, 0xe0, 0x12, 0xa1, 0xa1, 0xb6, 0x29, 0x3f, 0xf2, 0x1c, 0x0c, 0x99, 0xc2, 0xe4, 0xaa,
+ 0x2b, 0xa7, 0xa0, 0xff, 0x8e, 0xae, 0x6a, 0x1e, 0x39, 0xcf, 0xc0, 0x30, 0xce, 0x29, 0xec, 0x2a,
+ 0xf5, 0x46, 0x31, 0x8f, 0x79, 0xac, 0xe2, 0x7f, 0x59, 0x09, 0xfa, 0x43, 0xfe, 0x1c, 0x4c, 0xdc,
+ 0x69, 0xd6, 0xbf, 0xd0, 0x51, 0x71, 0x51, 0x53, 0xb2, 0xce, 0xc1, 0x50, 0x47, 0x57, 0xb5, 0x4a,
+ 0x53, 0xd9, 0xa5, 0xbc, 0x1e, 0xba, 0x09, 0x1f, 0xdd, 0x1c, 0xd0, 0xfa, 0x92, 0x52, 0xea, 0x9f,
+ 0x4a, 0xe5, 0x41, 0x9c, 0xb9, 0xae, 0xec, 0xaa, 0x68, 0xc1, 0x6c, 0x33, 0xe6, 0x2a, 0xc4, 0xda,
+ 0xbf, 0x0a, 0x88, 0x6f, 0x5f, 0x6f, 0xb7, 0x9a, 0xba, 0x8a, 0xe6, 0x60, 0xa8, 0xae, 0x57, 0x3a,
+ 0x24, 0x83, 0x74, 0x30, 0x58, 0x1e, 0xac, 0xeb, 0xb4, 0xa0, 0xfc, 0x61, 0x1f, 0x4c, 0x2c, 0x6b,
+ 0xaa, 0x62, 0xf4, 0x86, 0xe9, 0x02, 0xc0, 0xbd, 0xba, 0xa6, 0x1b, 0xb4, 0xa4, 0x1b, 0xd8, 0x10,
+ 0xc9, 0x25, 0x45, 0xcf, 0xc1, 0x50, 0x43, 0x31, 0x4b, 0xc6, 0xdd, 0x6d, 0xe2, 0x4c, 0x52, 0xf0,
+ 0x2c, 0x0c, 0x35, 0xeb, 0xd5, 0xfb, 0xb4, 0x20, 0x91, 0x84, 0x9b, 0x83, 0x1f, 0xdd, 0xec, 0xd3,
+ 0xe2, 0xa4, 0x18, 0xce, 0x22, 0xc5, 0x5e, 0x04, 0xd4, 0xd6, 0xd4, 0x7b, 0xaa, 0xa6, 0xa9, 0xb5,
+ 0x4a, 0x43, 0x69, 0x6e, 0x77, 0x94, 0x6d, 0x95, 0xc8, 0x08, 0x5f, 0x7e, 0xc2, 0x2a, 0xb3, 0xca,
+ 0x8a, 0xa0, 0x57, 0xa1, 0x7f, 0x5b, 0x6d, 0xd6, 0x54, 0x2d, 0xd5, 0xbf, 0x20, 0x9d, 0x1f, 0x0b,
+ 0x56, 0xac, 0x15, 0x52, 0xba, 0xcc, 0x6a, 0x21, 0xd9, 0x1c, 0x87, 0x01, 0xd2, 0xd7, 0xc8, 0x47,
+ 0x37, 0x87, 0xb4, 0x01, 0x42, 0xc4, 0xe7, 0xcd, 0x91, 0x40, 0x19, 0x98, 0xa8, 0xeb, 0x15, 0xf2,
+ 0x7f, 0xe5, 0x81, 0xaa, 0xd5, 0xef, 0xd5, 0xd5, 0x5a, 0x6a, 0x90, 0xf0, 0x7e, 0xbc, 0xae, 0x13,
+ 0x29, 0x79, 0x93, 0x25, 0xa3, 0x53, 0xd0, 0xd7, 0xde, 0xc1, 0xb6, 0x6a, 0x88, 0xb4, 0x37, 0xf0,
+ 0xd1, 0xcd, 0x84, 0x16, 0x4b, 0x4d, 0x95, 0x69, 0x2a, 0x6b, 0x8a, 0xfc, 0x6f, 0x37, 0x05, 0x66,
+ 0x53, 0x1b, 0x38, 0xdd, 0x6a, 0x4a, 0x86, 0x81, 0x6a, 0xab, 0xd3, 0x34, 0xb4, 0xbd, 0xd4, 0xb0,
+ 0x83, 0x11, 0x66, 0x06, 0x3a, 0x03, 0x83, 0x8d, 0x56, 0x55, 0x69, 0xd4, 0x8d, 0xbd, 0xd4, 0x88,
+ 0x93, 0xbb, 0x66, 0x0e, 0xba, 0x00, 0xc3, 0xed, 0x96, 0x6e, 0x28, 0x8d, 0x4a, 0xb5, 0x55, 0x53,
+ 0x53, 0xa3, 0x8e, 0x82, 0x40, 0x33, 0x97, 0x5b, 0x35, 0x2c, 0x97, 0xfd, 0x9a, 0xba, 0x5d, 0x6f,
+ 0x35, 0x53, 0x63, 0x8e, 0x52, 0x2c, 0x1d, 0x65, 0x61, 0x4c, 0x37, 0x34, 0x55, 0x35, 0x2a, 0x4a,
+ 0xad, 0xa6, 0xa9, 0xba, 0x9e, 0x1a, 0x77, 0x94, 0x1c, 0xa5, 0xf9, 0x39, 0x9a, 0x8d, 0x9e, 0x81,
+ 0xc1, 0xb6, 0xa2, 0xeb, 0x0f, 0x5b, 0x5a, 0x2d, 0x95, 0xe4, 0xb9, 0x72, 0xbb, 0x6c, 0x65, 0xc8,
+ 0x1f, 0xf4, 0x43, 0x02, 0x0b, 0xad, 0x4b, 0xc3, 0x6f, 0x40, 0x9f, 0x6e, 0x60, 0xcb, 0x15, 0x23,
+ 0xe3, 0x7b, 0x21, 0x68, 0x7c, 0x71, 0x23, 0x9b, 0xb8, 0x42, 0x99, 0xd6, 0x43, 0x37, 0x60, 0xb4,
+ 0x8a, 0x75, 0xa2, 0xde, 0x6a, 0x52, 0x13, 0x18, 0x0f, 0x34, 0x81, 0x23, 0x66, 0x05, 0x62, 0x04,
+ 0x1d, 0x16, 0x34, 0x11, 0xc9, 0x82, 0xce, 0xf1, 0xca, 0x47, 0xe4, 0x99, 0x53, 0xb8, 0x53, 0x82,
+ 0xc2, 0xf5, 0x53, 0xeb, 0x65, 0x2b, 0xd9, 0x1c, 0xaf, 0x64, 0x03, 0xb4, 0xae, 0xa5, 0x58, 0x4f,
+ 0xc3, 0x48, 0xad, 0xae, 0xb7, 0x1b, 0xca, 0x1e, 0xcd, 0x1f, 0xa4, 0x73, 0x2c, 0x4b, 0x33, 0xeb,
+ 0xdb, 0xba, 0x37, 0x44, 0xeb, 0x5b, 0x1a, 0x77, 0xd9, 0x53, 0xe3, 0x80, 0x94, 0xea, 0xaa, 0x67,
+ 0xc3, 0x3d, 0xe9, 0x99, 0x65, 0x43, 0x47, 0x38, 0x1b, 0xea, 0xad, 0x59, 0xa3, 0xde, 0x9a, 0x35,
+ 0x65, 0x6a, 0xd6, 0x18, 0x6d, 0xa1, 0x8b, 0x42, 0x8d, 0x7b, 0x2b, 0x54, 0xca, 0x56, 0x28, 0x22,
+ 0x87, 0xb6, 0x1a, 0xa5, 0x39, 0x35, 0x9a, 0x60, 0x8c, 0x36, 0x95, 0xe7, 0xb4, 0xa8, 0x3c, 0x88,
+ 0x64, 0xf3, 0x2a, 0x33, 0x63, 0xa9, 0xcc, 0x24, 0x9d, 0xe9, 0x98, 0xa2, 0x9c, 0x75, 0x29, 0xca,
+ 0x14, 0xc9, 0x77, 0xa8, 0x07, 0x3f, 0x89, 0x4e, 0x8b, 0x93, 0xa8, 0xfc, 0xc1, 0x20, 0x0c, 0x62,
+ 0x81, 0x7e, 0xb3, 0xae, 0x3e, 0x7c, 0xd2, 0x34, 0xe3, 0x65, 0x00, 0x22, 0xdd, 0x8d, 0xd6, 0x76,
+ 0xbd, 0xc9, 0xdc, 0x81, 0x6e, 0x75, 0x89, 0x2e, 0xac, 0xe2, 0xc2, 0xa8, 0x00, 0x49, 0xd3, 0x70,
+ 0x54, 0x68, 0x8b, 0x35, 0xa2, 0x3d, 0xdd, 0x1b, 0x18, 0x37, 0xeb, 0x50, 0xcf, 0xa8, 0x26, 0xea,
+ 0xe6, 0x40, 0x57, 0xdd, 0x1c, 0xec, 0xaa, 0x9b, 0x43, 0x01, 0xba, 0x09, 0x01, 0xba, 0x39, 0x1c,
+ 0x4a, 0x37, 0x47, 0x82, 0x75, 0x73, 0xf4, 0x70, 0xba, 0x39, 0x16, 0xa8, 0x9b, 0xe3, 0x01, 0xba,
+ 0x99, 0x0c, 0xd4, 0xcd, 0x89, 0x40, 0xdd, 0x44, 0xfe, 0xba, 0x39, 0xd9, 0x5d, 0x37, 0xa7, 0xba,
+ 0xe8, 0xe6, 0x74, 0x80, 0x6e, 0xce, 0x04, 0xe9, 0xe6, 0xac, 0xc3, 0xc1, 0x3d, 0x0b, 0x63, 0x9a,
+ 0xaa, 0xb7, 0x3a, 0x1a, 0x8e, 0x03, 0x1e, 0x36, 0x55, 0x2d, 0x95, 0xa2, 0x4d, 0x98, 0xa9, 0x25,
+ 0x9c, 0x88, 0x21, 0x12, 0x09, 0x27, 0x23, 0xad, 0xa7, 0x4e, 0x2c, 0xc4, 0x31, 0x44, 0x92, 0x84,
+ 0xc7, 0x5a, 0x47, 0x57, 0x60, 0x8a, 0x1b, 0x6c, 0xab, 0x68, 0x6a, 0x8e, 0xb4, 0x66, 0x0b, 0xc2,
+ 0xaa, 0x59, 0x45, 0xfe, 0x63, 0x09, 0x26, 0x88, 0x32, 0xab, 0x8a, 0x56, 0xdd, 0x31, 0xdd, 0x3c,
+ 0x3b, 0x42, 0x90, 0xbc, 0x23, 0x84, 0x18, 0x1f, 0xc5, 0x7c, 0x0e, 0xc6, 0xf4, 0x96, 0x66, 0xd4,
+ 0x9b, 0xdb, 0x95, 0x6a, 0xab, 0xd1, 0xd9, 0x6d, 0x12, 0xe5, 0x1f, 0x5b, 0xba, 0x1c, 0xca, 0x8a,
+ 0x90, 0x8e, 0x5f, 0x57, 0xf7, 0xc8, 0xa4, 0xbf, 0x2f, 0xc5, 0x16, 0x9e, 0x2a, 0x8f, 0xb2, 0xe6,
+ 0x96, 0x49, 0x6b, 0x28, 0x09, 0x71, 0x45, 0xaf, 0xb2, 0x70, 0x0c, 0xff, 0x8b, 0x8a, 0x30, 0xf0,
+ 0x85, 0x8e, 0xaa, 0xd5, 0x55, 0x3d, 0xd5, 0x47, 0x62, 0xa0, 0x6c, 0xf8, 0xae, 0xde, 0xe8, 0xa8,
+ 0xda, 0x5e, 0xd9, 0xac, 0x2f, 0x7f, 0x28, 0xc1, 0xb8, 0x23, 0x13, 0x15, 0x21, 0x7e, 0x5f, 0xdd,
+ 0x23, 0xb4, 0x1f, 0x82, 0x0a, 0xdc, 0x06, 0xca, 0x43, 0xff, 0xae, 0x6a, 0xec, 0xb4, 0x6a, 0xcc,
+ 0xb2, 0x5e, 0x0a, 0x6a, 0x8d, 0xb6, 0xb4, 0x46, 0xea, 0x94, 0x59, 0x5d, 0xcc, 0xf7, 0x07, 0x4a,
+ 0xa3, 0xc3, 0xdc, 0xe3, 0x32, 0xfd, 0x21, 0xff, 0xa2, 0x04, 0x88, 0x1f, 0x3b, 0xe6, 0xd6, 0x47,
+ 0x1b, 0xbc, 0xa7, 0x61, 0xc4, 0x68, 0x61, 0xa9, 0xd7, 0x54, 0xbd, 0xd3, 0x30, 0x63, 0xbf, 0x61,
+ 0x92, 0x56, 0x26, 0x49, 0xe8, 0x35, 0x2c, 0xf8, 0x24, 0x33, 0x41, 0x98, 0x7d, 0x3e, 0x0c, 0x47,
+ 0xf0, 0x34, 0x53, 0x66, 0xf5, 0xe4, 0xdf, 0x88, 0xd3, 0x28, 0x68, 0x43, 0x6b, 0xdd, 0xab, 0x37,
+ 0x54, 0xaf, 0xd0, 0xcb, 0x19, 0x2d, 0xf8, 0x1a, 0xc8, 0xb8, 0xc3, 0x40, 0xce, 0xb9, 0xa2, 0x02,
+ 0xce, 0xfa, 0x39, 0xad, 0x67, 0x9f, 0xdb, 0x7a, 0x7a, 0x1b, 0xc8, 0xfe, 0x60, 0x03, 0x39, 0xd0,
+ 0x93, 0x81, 0x14, 0x26, 0x8a, 0x41, 0xc7, 0x44, 0xc1, 0xdb, 0x88, 0x21, 0x87, 0x8d, 0x70, 0xcd,
+ 0xb0, 0x70, 0xb8, 0x19, 0x76, 0x38, 0xca, 0x0c, 0x2b, 0xff, 0x6c, 0x82, 0xaa, 0x09, 0x1b, 0x41,
+ 0x4f, 0x27, 0xe2, 0xd3, 0x51, 0x7c, 0xcc, 0x47, 0xd1, 0x39, 0x81, 0x8c, 0x1c, 0xc1, 0x04, 0xf2,
+ 0xf3, 0x31, 0x48, 0xdd, 0x69, 0xd7, 0xd8, 0x3a, 0x01, 0x13, 0x0f, 0xbf, 0xc5, 0xb1, 0x4f, 0xe0,
+ 0xaa, 0x80, 0xfc, 0x7f, 0x25, 0x18, 0xb2, 0x56, 0x80, 0x5c, 0x1c, 0x99, 0x12, 0xd6, 0x6e, 0xba,
+ 0xfa, 0x4b, 0x71, 0x6f, 0x7f, 0x89, 0x97, 0xb6, 0x44, 0x90, 0xb4, 0xf5, 0x1d, 0x4e, 0xda, 0xfa,
+ 0x23, 0xd9, 0x8c, 0xff, 0x27, 0xc1, 0xa8, 0x45, 0xb9, 0xa7, 0xc5, 0x78, 0x92, 0xa9, 0x7f, 0x00,
+ 0x33, 0xb6, 0x5e, 0x10, 0xd0, 0x7e, 0x5a, 0x11, 0xb8, 0x7e, 0x17, 0x85, 0x23, 0x96, 0xbc, 0x11,
+ 0x9f, 0xd8, 0x8b, 0xe3, 0xd4, 0xbb, 0x8e, 0x05, 0x7a, 0xd7, 0x71, 0x6f, 0xef, 0x9a, 0xe7, 0x78,
+ 0x5f, 0x10, 0xc7, 0xfb, 0x0f, 0xc7, 0xf1, 0x81, 0x9e, 0xe4, 0x8d, 0xe2, 0xf5, 0x91, 0xb7, 0x27,
+ 0x96, 0xfa, 0x0e, 0x2f, 0x6f, 0x04, 0xb4, 0x9f, 0xbc, 0x9d, 0x16, 0xb8, 0x70, 0x73, 0xe8, 0xa3,
+ 0x9b, 0xfd, 0x5a, 0x22, 0x29, 0x05, 0xac, 0x2c, 0x7a, 0x33, 0x44, 0xfe, 0x17, 0x31, 0xea, 0xda,
+ 0x99, 0x61, 0x8e, 0xb3, 0x33, 0x2e, 0x18, 0x8b, 0xf9, 0x07, 0x63, 0xf1, 0xee, 0xc1, 0x58, 0xa2,
+ 0x4b, 0x30, 0xd6, 0x17, 0x10, 0x8c, 0xf5, 0x07, 0x05, 0x63, 0x03, 0x41, 0xc3, 0x38, 0x78, 0xb8,
+ 0x61, 0x1c, 0x8a, 0x34, 0x8c, 0x3f, 0x88, 0x51, 0x47, 0x8b, 0x21, 0xf5, 0x14, 0xe3, 0x4f, 0x79,
+ 0x1a, 0x8d, 0xa7, 0xff, 0x53, 0xe2, 0x7d, 0x14, 0x86, 0xd7, 0x4f, 0x3b, 0x64, 0x07, 0x73, 0x83,
+ 0x96, 0xca, 0xe3, 0x61, 0x97, 0xca, 0x13, 0xa1, 0x96, 0xca, 0xfb, 0x42, 0x2f, 0x95, 0xf7, 0x77,
+ 0x5d, 0x2a, 0x97, 0x4b, 0x30, 0xb2, 0xd6, 0x69, 0x18, 0xf5, 0x5b, 0x4a, 0xd5, 0x68, 0x69, 0x3a,
+ 0xba, 0x01, 0x89, 0xdd, 0x7b, 0x8a, 0xb9, 0x69, 0x78, 0x31, 0xc8, 0x8b, 0xe1, 0xea, 0x96, 0x49,
+ 0x45, 0xf9, 0x4b, 0x12, 0x0c, 0x73, 0xa9, 0xe8, 0x3a, 0x24, 0xc8, 0x56, 0x1e, 0x0d, 0x93, 0xcf,
+ 0x05, 0x36, 0x78, 0x4f, 0xd9, 0xda, 0x6b, 0xab, 0x65, 0x52, 0x09, 0xbd, 0x2a, 0x2e, 0x38, 0x06,
+ 0x86, 0x94, 0x6b, 0xb7, 0x72, 0xfc, 0x7a, 0xa3, 0x7c, 0x12, 0x60, 0x83, 0x2d, 0xc1, 0x79, 0x6c,
+ 0xba, 0xdd, 0x86, 0x71, 0x33, 0xd7, 0x6f, 0x98, 0xcf, 0x72, 0x3b, 0x09, 0x0e, 0x3b, 0xc8, 0xef,
+ 0x25, 0x3c, 0x0b, 0x53, 0x65, 0x55, 0x57, 0x8d, 0x80, 0xe6, 0xe4, 0x07, 0x30, 0xbf, 0x69, 0x97,
+ 0x5a, 0x6f, 0x19, 0xf5, 0x7b, 0x6c, 0xa7, 0xd1, 0x0f, 0x40, 0x9e, 0xb1, 0x8f, 0x32, 0xe0, 0x4a,
+ 0x10, 0x03, 0xf8, 0x26, 0x6d, 0x3e, 0xca, 0x97, 0x20, 0x6d, 0x76, 0xba, 0xdc, 0xda, 0x6d, 0x37,
+ 0xd4, 0x77, 0xea, 0xc6, 0xde, 0x46, 0xab, 0x51, 0xaf, 0xee, 0x79, 0xf0, 0xe5, 0x0f, 0xe3, 0x90,
+ 0xf2, 0x2b, 0xee, 0xe1, 0x96, 0x0c, 0x9b, 0x1b, 0xf6, 0x58, 0x30, 0x63, 0x2c, 0xe8, 0xb2, 0x93,
+ 0x50, 0xce, 0x1c, 0x44, 0xba, 0xde, 0x13, 0x28, 0x53, 0xb4, 0xa3, 0xee, 0xeb, 0xc6, 0x89, 0xc3,
+ 0x19, 0x86, 0xbe, 0xa8, 0x7b, 0xd2, 0xbb, 0xf5, 0x66, 0xa5, 0xa1, 0x36, 0xb7, 0x8d, 0x1d, 0xa2,
+ 0x50, 0x89, 0xf2, 0xd0, 0x6e, 0xbd, 0xb9, 0x4a, 0x12, 0xd0, 0x33, 0x30, 0xba, 0xa3, 0xe8, 0x95,
+ 0x46, 0xeb, 0xa1, 0xaa, 0x55, 0x15, 0x9d, 0x9a, 0xb5, 0xc1, 0xf2, 0xc8, 0x8e, 0xa2, 0xaf, 0x9a,
+ 0x69, 0x66, 0xa1, 0x4e, 0xbb, 0xcd, 0x0a, 0x0d, 0x5a, 0x85, 0xee, 0x98, 0x69, 0xb8, 0x23, 0x5c,
+ 0xa8, 0xd9, 0xd9, 0x7d, 0x5b, 0xd5, 0x88, 0xf5, 0x1a, 0x2c, 0x0f, 0xed, 0x28, 0xfa, 0x3a, 0x49,
+ 0x30, 0xb3, 0xf5, 0xbd, 0xdd, 0xb7, 0x5b, 0x0d, 0xb6, 0x87, 0x87, 0xb3, 0x37, 0x49, 0x82, 0x60,
+ 0x59, 0x87, 0x1d, 0x96, 0xf5, 0x14, 0x40, 0x5d, 0xaf, 0xd4, 0xd4, 0x7b, 0x4a, 0xa7, 0x61, 0x90,
+ 0x75, 0xdd, 0xc1, 0xf2, 0x50, 0x5d, 0xcf, 0xd3, 0x04, 0xf9, 0x7f, 0x49, 0x30, 0xef, 0x37, 0xe2,
+ 0x74, 0x7b, 0x17, 0x65, 0xc4, 0x71, 0x96, 0x78, 0xb3, 0xf2, 0xbf, 0xe3, 0xe2, 0x88, 0x8b, 0x0c,
+ 0x8b, 0x05, 0x32, 0x2c, 0x1e, 0x86, 0x61, 0x89, 0x40, 0x86, 0xf5, 0x75, 0x67, 0x58, 0xbf, 0x83,
+ 0x61, 0xf2, 0xfb, 0x31, 0x7f, 0xaa, 0xe9, 0x44, 0xe0, 0x92, 0xf6, 0x8c, 0x87, 0xb4, 0x87, 0xe3,
+ 0x42, 0x3c, 0x90, 0x0b, 0x89, 0x30, 0x5c, 0xe8, 0x0b, 0xe4, 0x42, 0x7f, 0x77, 0x2e, 0x0c, 0x38,
+ 0xb9, 0x70, 0x16, 0x26, 0x4d, 0x26, 0xe4, 0xb6, 0x55, 0x5f, 0xa3, 0xf0, 0xe5, 0x38, 0x4c, 0xb8,
+ 0xca, 0x7d, 0x12, 0xad, 0xc1, 0x02, 0x8c, 0xec, 0x2a, 0xef, 0x54, 0x14, 0x52, 0x7b, 0x4f, 0x67,
+ 0xf6, 0x00, 0x76, 0x95, 0x77, 0x72, 0xb8, 0xc4, 0x9e, 0x8e, 0xce, 0x43, 0x52, 0x7d, 0xa7, 0x5d,
+ 0xd7, 0xd4, 0xca, 0x43, 0x45, 0x6b, 0xd2, 0x52, 0xd4, 0xd5, 0x19, 0xa3, 0xe9, 0x77, 0x15, 0xad,
+ 0x49, 0x4a, 0xf2, 0x2a, 0x3b, 0xd8, 0x55, 0x65, 0x87, 0x9c, 0x2a, 0xfb, 0x15, 0x09, 0x66, 0x5d,
+ 0xe3, 0xd1, 0x83, 0xae, 0x3a, 0xc9, 0x89, 0x85, 0x22, 0x27, 0xee, 0x45, 0x8e, 0xfc, 0x6d, 0x2f,
+ 0x4c, 0x47, 0xa0, 0x49, 0x4e, 0x8c, 0xf1, 0x50, 0x18, 0x13, 0x9e, 0x18, 0x2f, 0xd8, 0x10, 0x57,
+ 0x5b, 0xd5, 0xfb, 0xad, 0x8e, 0xe1, 0x2b, 0xf2, 0xdf, 0x88, 0xc3, 0xb4, 0x67, 0xd9, 0x4f, 0xa2,
+ 0xd8, 0x3f, 0xcd, 0xc6, 0xc0, 0x30, 0xd4, 0xdd, 0xb6, 0x61, 0x8a, 0xfd, 0x30, 0x1e, 0x03, 0x96,
+ 0x84, 0x9e, 0x83, 0x19, 0x7d, 0xa7, 0xf5, 0xb0, 0xd2, 0x68, 0x55, 0xef, 0x57, 0x5a, 0x1d, 0xa3,
+ 0x72, 0x4f, 0xa9, 0x37, 0x3a, 0x9a, 0xaa, 0x33, 0xa3, 0x33, 0x89, 0x73, 0x31, 0x23, 0x4b, 0x1d,
+ 0xe3, 0x16, 0xcb, 0x3a, 0x8c, 0x0a, 0x7c, 0x5b, 0x82, 0x39, 0xcf, 0xf1, 0xe9, 0x41, 0x0d, 0x9c,
+ 0xe4, 0xc5, 0xa2, 0x90, 0x17, 0xf7, 0x25, 0x4f, 0xfe, 0x65, 0x3f, 0x8c, 0x47, 0xa0, 0x16, 0x4e,
+ 0xcc, 0xf1, 0x28, 0x98, 0x13, 0xfe, 0x98, 0x67, 0xa1, 0xaf, 0xa4, 0x6d, 0x7b, 0x28, 0xc4, 0xfb,
+ 0x31, 0x88, 0x97, 0xb4, 0x6d, 0x17, 0xe8, 0xa8, 0x6e, 0x7a, 0x49, 0xdb, 0x7e, 0x8c, 0x8e, 0x05,
+ 0x20, 0x48, 0x70, 0xfb, 0x05, 0xe4, 0x7f, 0x41, 0x2a, 0xfb, 0x1d, 0x47, 0x24, 0xde, 0x00, 0x28,
+ 0x69, 0xdb, 0xf9, 0xd6, 0xae, 0x52, 0x6f, 0xea, 0x68, 0x19, 0x06, 0x6a, 0xf4, 0x5f, 0x16, 0x33,
+ 0x5d, 0x08, 0x41, 0x3d, 0xad, 0x5c, 0x36, 0x6b, 0xca, 0x5f, 0x8a, 0xc1, 0x90, 0x95, 0x8c, 0xa6,
+ 0xa1, 0x5f, 0x38, 0xc6, 0xda, 0xd7, 0x22, 0x07, 0x58, 0x5d, 0x5c, 0x8a, 0x1d, 0x8e, 0x4b, 0xf1,
+ 0x48, 0x5c, 0x9a, 0x81, 0x7e, 0x8a, 0xd6, 0x3c, 0x5d, 0x49, 0x7f, 0x61, 0x4e, 0x59, 0x8b, 0x3f,
+ 0xd4, 0x39, 0xb1, 0x7e, 0xa3, 0x14, 0x0c, 0xb4, 0xb5, 0xfa, 0xae, 0xa2, 0xed, 0x31, 0xaf, 0xc4,
+ 0xfc, 0xd9, 0x6d, 0x15, 0x40, 0xfe, 0xe9, 0x18, 0x8c, 0x5a, 0xcc, 0x20, 0x2b, 0x1b, 0x9f, 0x70,
+ 0x86, 0xbc, 0x0c, 0x93, 0xb9, 0x5a, 0xcd, 0x16, 0x1b, 0x16, 0x2a, 0xca, 0x16, 0x00, 0xf7, 0x11,
+ 0x4b, 0x96, 0x23, 0xff, 0x18, 0xcc, 0x94, 0xd5, 0xdd, 0xd6, 0x03, 0xb5, 0xa7, 0xda, 0xbf, 0x2c,
+ 0xc1, 0xac, 0x55, 0xf1, 0xb8, 0xf7, 0x8f, 0x0b, 0x8e, 0xfd, 0xe3, 0xcb, 0xa1, 0xf5, 0x48, 0xd8,
+ 0x44, 0xfe, 0x59, 0x09, 0x66, 0x5c, 0x98, 0x7b, 0x39, 0xaf, 0xb0, 0x6e, 0x9f, 0x1e, 0x88, 0x13,
+ 0x40, 0xcf, 0x87, 0x06, 0xe4, 0x79, 0x84, 0xe0, 0x1f, 0x48, 0x30, 0xe5, 0x55, 0x02, 0xad, 0xf3,
+ 0xe7, 0x08, 0x96, 0x22, 0x76, 0xf2, 0x88, 0x0f, 0x13, 0x3c, 0x0b, 0x63, 0x25, 0x6d, 0x7b, 0x4d,
+ 0xc5, 0x81, 0x45, 0xb9, 0xd5, 0x50, 0x75, 0x5c, 0x4e, 0xc3, 0xff, 0x10, 0xeb, 0x37, 0x54, 0xa6,
+ 0x3f, 0xe4, 0xdf, 0x91, 0x88, 0x41, 0xa3, 0x05, 0xd1, 0x2c, 0x0c, 0x90, 0x7d, 0x50, 0x4b, 0x81,
+ 0xfb, 0xf1, 0x4f, 0x7a, 0xde, 0x9d, 0x56, 0x8e, 0x71, 0x95, 0x0f, 0xa7, 0x96, 0x87, 0xf6, 0x92,
+ 0xba, 0xac, 0xdd, 0xcb, 0x79, 0x53, 0x13, 0x19, 0x07, 0x98, 0x60, 0x45, 0xa3, 0x4f, 0x5e, 0x81,
+ 0x19, 0x7a, 0x20, 0xec, 0xb0, 0x0d, 0x5d, 0xe5, 0xb4, 0x3b, 0x5c, 0x43, 0xa6, 0x4a, 0xd3, 0xd2,
+ 0x8f, 0xa3, 0x4a, 0x53, 0x64, 0x82, 0x4a, 0xff, 0x13, 0x3a, 0x21, 0xd8, 0x39, 0x4f, 0x8c, 0x40,
+ 0x89, 0x27, 0x04, 0xfa, 0x1d, 0x27, 0x04, 0xa6, 0x84, 0x93, 0xe2, 0xe6, 0x2e, 0xdf, 0x21, 0x8e,
+ 0x09, 0x9a, 0xc6, 0x51, 0x1c, 0xfd, 0x47, 0x66, 0x1c, 0xf9, 0x6e, 0xbd, 0x8d, 0xa3, 0xab, 0x44,
+ 0x74, 0xe3, 0xc8, 0x37, 0xf1, 0x88, 0x8d, 0xe3, 0x35, 0x98, 0x62, 0xdf, 0x7e, 0xd0, 0x00, 0xc4,
+ 0x64, 0xed, 0x3c, 0x73, 0x30, 0xdd, 0x13, 0x2d, 0x49, 0x97, 0x6f, 0x59, 0xf5, 0x68, 0x50, 0xe0,
+ 0xb7, 0x16, 0x6c, 0xb6, 0x13, 0xf3, 0x69, 0xe7, 0xbb, 0x12, 0x4c, 0xb3, 0x86, 0x8e, 0x5b, 0xb3,
+ 0x97, 0x1d, 0x9a, 0x1d, 0x1c, 0xcf, 0x52, 0x5c, 0x82, 0x5e, 0xff, 0x66, 0x0c, 0x86, 0xb9, 0x74,
+ 0xc7, 0xa7, 0x35, 0x92, 0xe3, 0xd3, 0x1a, 0xcb, 0x4f, 0x8f, 0x71, 0x7e, 0xfa, 0x4d, 0x31, 0xac,
+ 0xbe, 0x14, 0x12, 0x86, 0x10, 0x7d, 0x1c, 0x2a, 0x78, 0x38, 0xf4, 0xe9, 0x01, 0xf7, 0xa1, 0xce,
+ 0x7e, 0xaf, 0x43, 0x9d, 0xdd, 0xfc, 0xc3, 0xaf, 0x4a, 0x96, 0x00, 0x1d, 0x46, 0xa7, 0x57, 0x9d,
+ 0x3a, 0xbd, 0x14, 0x96, 0x9b, 0x5e, 0x1a, 0xfd, 0xeb, 0x12, 0x20, 0x77, 0x3e, 0x5a, 0xe5, 0xf5,
+ 0xf9, 0x4a, 0xa4, 0x0e, 0x1e, 0xb1, 0x36, 0x97, 0x60, 0x90, 0x75, 0x8f, 0x83, 0xbc, 0x41, 0x26,
+ 0x87, 0x66, 0x94, 0x77, 0x2e, 0x24, 0xf4, 0xb2, 0x55, 0x51, 0xfe, 0x73, 0x31, 0x18, 0x60, 0xa9,
+ 0x2e, 0xd5, 0x7e, 0x32, 0x65, 0xbb, 0x5b, 0x14, 0x9d, 0xb1, 0xc4, 0x23, 0xd8, 0x9b, 0xfc, 0x7d,
+ 0x09, 0x46, 0x85, 0xc2, 0x4f, 0x8e, 0x47, 0xf9, 0x06, 0x24, 0x05, 0xca, 0x72, 0xb5, 0x9a, 0x4b,
+ 0x38, 0x38, 0x62, 0x63, 0xde, 0xc4, 0xc6, 0x79, 0x6e, 0x6d, 0xc1, 0xa4, 0xd0, 0x24, 0xfb, 0x2c,
+ 0xf3, 0x90, 0xad, 0xbe, 0xea, 0x68, 0x95, 0x3a, 0x9e, 0xa1, 0x5b, 0x95, 0xef, 0xc3, 0x98, 0xa9,
+ 0x12, 0xad, 0x86, 0xea, 0x45, 0x66, 0x92, 0x9a, 0x06, 0x5a, 0x8d, 0xa8, 0xb7, 0xf3, 0x44, 0x67,
+ 0xdc, 0x7d, 0xa2, 0x73, 0x0a, 0xfa, 0xb6, 0xb5, 0x56, 0xa7, 0xcd, 0x82, 0x70, 0xfa, 0x43, 0x6e,
+ 0xc2, 0x04, 0xd7, 0x99, 0x0f, 0x03, 0x8e, 0xb0, 0xbf, 0xaf, 0xd8, 0x33, 0x19, 0xee, 0x30, 0x68,
+ 0x26, 0xeb, 0xa9, 0xe7, 0x8f, 0x77, 0xf9, 0xd7, 0xa2, 0xbb, 0x9f, 0xa3, 0xbb, 0xeb, 0xac, 0xf4,
+ 0xfb, 0x12, 0x8c, 0x73, 0x3c, 0x09, 0x33, 0xc3, 0x7f, 0x3c, 0x7c, 0x89, 0x4e, 0xda, 0x0b, 0x82,
+ 0x78, 0xf9, 0x68, 0x82, 0x8b, 0x18, 0xf9, 0x40, 0x82, 0x13, 0x5c, 0xbd, 0xe3, 0xf6, 0xd1, 0x56,
+ 0x1c, 0x3e, 0x5a, 0x36, 0xec, 0x94, 0xc5, 0x46, 0xcb, 0xf2, 0xd3, 0xbe, 0x2f, 0x41, 0xca, 0x03,
+ 0x37, 0xf5, 0x31, 0x02, 0x86, 0x34, 0xd2, 0x57, 0xe4, 0x68, 0xc3, 0x76, 0x41, 0x28, 0xe6, 0x6b,
+ 0x11, 0x30, 0x7b, 0xba, 0x21, 0xff, 0x58, 0x82, 0x19, 0xef, 0x32, 0x68, 0x83, 0x77, 0x45, 0x9e,
+ 0x8f, 0xdc, 0xd1, 0x23, 0x76, 0x47, 0x7e, 0x3b, 0x66, 0x09, 0x5d, 0x98, 0x40, 0x58, 0x08, 0x2c,
+ 0x63, 0x7e, 0x81, 0x65, 0xdc, 0x3f, 0xb0, 0x4c, 0x74, 0x0d, 0x2c, 0xfb, 0x1c, 0x07, 0xf3, 0xad,
+ 0x39, 0xa3, 0xbf, 0xcb, 0xb4, 0x3b, 0x70, 0xb8, 0x69, 0x77, 0xf0, 0x10, 0xd3, 0x2e, 0x38, 0x34,
+ 0xf8, 0xfb, 0x12, 0xcc, 0x09, 0xdc, 0x3c, 0x6e, 0x65, 0x2c, 0x3a, 0x94, 0xf1, 0x6a, 0x48, 0x79,
+ 0xf3, 0x58, 0x0e, 0xf9, 0x7b, 0x12, 0xa4, 0x3d, 0xb1, 0x1f, 0x83, 0x42, 0x96, 0x9d, 0x0a, 0xf9,
+ 0x52, 0x24, 0xdc, 0x9e, 0x2a, 0xf9, 0x5b, 0xb6, 0x39, 0x71, 0xc7, 0xfb, 0x65, 0x5e, 0x29, 0xaf,
+ 0xf5, 0xd0, 0xd9, 0x23, 0x56, 0xcb, 0xff, 0x1a, 0x83, 0x61, 0xee, 0xc2, 0x88, 0x43, 0x6f, 0x8d,
+ 0xe5, 0xda, 0xed, 0xc7, 0x7c, 0x6b, 0x6c, 0x0d, 0x86, 0x5b, 0xf5, 0x5a, 0xb5, 0x52, 0x6d, 0x35,
+ 0xef, 0xd5, 0xb7, 0x99, 0x56, 0x66, 0x02, 0x57, 0x66, 0x8a, 0xf9, 0xe5, 0x65, 0x52, 0xe3, 0xf6,
+ 0x53, 0x65, 0xc0, 0x0d, 0xd0, 0x5f, 0xdd, 0x3e, 0x83, 0xb9, 0x39, 0x02, 0xa0, 0xb4, 0xdb, 0xac,
+ 0x27, 0xf9, 0x6d, 0x98, 0xe0, 0x38, 0xcd, 0xf6, 0x4f, 0x03, 0xa4, 0x9d, 0x0e, 0x47, 0xcc, 0xb5,
+ 0x84, 0xd2, 0xe7, 0xb3, 0x84, 0xf2, 0xb5, 0x04, 0x80, 0x0d, 0x15, 0x3d, 0x03, 0xa3, 0x9a, 0x5a,
+ 0xab, 0x6b, 0xb8, 0xf9, 0x8e, 0x56, 0x37, 0xc3, 0x92, 0x11, 0x33, 0xf1, 0x8e, 0x56, 0xd7, 0xd1,
+ 0x5d, 0x12, 0xc1, 0x13, 0xbb, 0x41, 0x6e, 0x2d, 0xa1, 0xb1, 0x47, 0x88, 0xe8, 0x16, 0x77, 0x64,
+ 0x5a, 0x1c, 0x72, 0x58, 0x6f, 0x54, 0xe3, 0x7e, 0xe9, 0x68, 0x1d, 0x86, 0xb7, 0x35, 0x85, 0xdd,
+ 0x85, 0x42, 0xdd, 0xf1, 0x10, 0x1f, 0x1a, 0xe2, 0x56, 0x57, 0x70, 0x35, 0xd2, 0x24, 0x6c, 0x9b,
+ 0xff, 0xea, 0xe8, 0x73, 0x90, 0x54, 0x6c, 0x06, 0xd2, 0x1b, 0x56, 0x12, 0x44, 0x2c, 0x9f, 0x0b,
+ 0xd3, 0x28, 0xc7, 0x7c, 0xd2, 0xf4, 0xb8, 0x22, 0x26, 0xe0, 0x19, 0xa2, 0xda, 0xa8, 0xab, 0x4d,
+ 0x32, 0x14, 0x6c, 0x86, 0xa0, 0x09, 0xc5, 0x1a, 0x66, 0x25, 0xcb, 0xd4, 0xd5, 0xaa, 0xa6, 0x1a,
+ 0xcc, 0xdb, 0x1a, 0xa1, 0x89, 0x9b, 0x24, 0x0d, 0xfd, 0x04, 0x24, 0x95, 0x8e, 0xb1, 0x53, 0xa1,
+ 0x2a, 0x47, 0x11, 0x0e, 0x84, 0x5c, 0xfa, 0xc3, 0x08, 0x3b, 0x06, 0xd3, 0x5a, 0x02, 0x70, 0x4c,
+ 0x11, 0x7e, 0xa3, 0x97, 0xe1, 0x44, 0xbb, 0x45, 0xbf, 0xff, 0x6e, 0x75, 0x8c, 0x8a, 0x38, 0xb2,
+ 0x83, 0x64, 0x64, 0x67, 0x70, 0x81, 0x55, 0x92, 0x5f, 0xe6, 0xc6, 0x58, 0xfe, 0x46, 0x02, 0xa6,
+ 0x1d, 0x3c, 0x60, 0x87, 0x0c, 0x02, 0x04, 0x30, 0x60, 0xcd, 0xce, 0x2d, 0x61, 0xf1, 0x50, 0x12,
+ 0x96, 0x38, 0x16, 0x09, 0xeb, 0x3b, 0x0e, 0x09, 0xeb, 0x3f, 0x42, 0x09, 0x7b, 0x6c, 0xe5, 0xe3,
+ 0x9b, 0x09, 0x48, 0xda, 0x76, 0x23, 0x9c, 0x6d, 0x3a, 0x0b, 0x63, 0x3c, 0xb3, 0x2c, 0x3b, 0x35,
+ 0xca, 0xa5, 0x52, 0xc5, 0xf9, 0x54, 0x42, 0x7e, 0xf4, 0x25, 0xe4, 0x39, 0x18, 0x59, 0xe6, 0x4d,
+ 0x9d, 0xcb, 0x1e, 0x4a, 0x6e, 0x7b, 0x28, 0xff, 0xf7, 0x18, 0x8c, 0x73, 0x24, 0x7b, 0x7e, 0xe6,
+ 0xf1, 0xa9, 0x87, 0x71, 0x64, 0x1e, 0x06, 0x0e, 0xd0, 0x39, 0x76, 0x3f, 0x76, 0x01, 0xba, 0x43,
+ 0x14, 0x84, 0x00, 0xdd, 0x03, 0xf7, 0x63, 0x11, 0xa0, 0xbb, 0x70, 0x79, 0x04, 0xe8, 0xde, 0x65,
+ 0x22, 0x06, 0xe8, 0xae, 0x46, 0x1e, 0x71, 0x24, 0xf0, 0x07, 0x31, 0x18, 0x61, 0xf1, 0x08, 0x31,
+ 0x7d, 0x11, 0x6f, 0x8e, 0x43, 0x67, 0x60, 0x8c, 0xd8, 0x49, 0xb5, 0x66, 0x5e, 0x62, 0x48, 0x9b,
+ 0x1f, 0x61, 0xa9, 0xf4, 0x16, 0xc3, 0x39, 0x18, 0xc2, 0xb1, 0x75, 0xe5, 0xbe, 0xba, 0x47, 0x87,
+ 0x60, 0xa8, 0x3c, 0x88, 0x13, 0x5e, 0x57, 0xf7, 0x74, 0xb4, 0x62, 0x9a, 0x82, 0x3e, 0x42, 0x5d,
+ 0xd8, 0x18, 0x93, 0xc0, 0xed, 0x6e, 0x13, 0x1e, 0xe5, 0x37, 0x8a, 0xdd, 0x14, 0x56, 0x7e, 0x60,
+ 0x6d, 0x1b, 0x10, 0xd4, 0xe1, 0x9c, 0x30, 0x37, 0x6b, 0x63, 0x41, 0xac, 0x8d, 0x8b, 0xac, 0x95,
+ 0x3f, 0x2f, 0xf6, 0xdb, 0x5b, 0xf4, 0xd1, 0xb5, 0x87, 0x1b, 0xd6, 0x02, 0x39, 0xe9, 0xa1, 0x98,
+ 0x8f, 0xd8, 0xba, 0xfc, 0xc3, 0xb8, 0xb5, 0x97, 0x40, 0x5a, 0xf0, 0xbb, 0x7d, 0xe1, 0xf0, 0x42,
+ 0x78, 0x1e, 0x92, 0x7c, 0x29, 0x6e, 0xbd, 0x68, 0xcc, 0x2e, 0x47, 0xd6, 0x85, 0x2e, 0x01, 0xe2,
+ 0x4b, 0xb2, 0x13, 0x67, 0xd4, 0xd8, 0x27, 0xed, 0xb2, 0xec, 0xe0, 0xa3, 0xc0, 0x9f, 0x7e, 0x3f,
+ 0xe1, 0x1e, 0x38, 0x6a, 0xe1, 0x7e, 0x94, 0x5f, 0x19, 0xe2, 0x79, 0xc1, 0x1c, 0x00, 0xfe, 0xa6,
+ 0x26, 0x96, 0xe6, 0xba, 0x19, 0xc2, 0xf1, 0x21, 0x8f, 0xfc, 0x77, 0xec, 0xc5, 0x1f, 0x4a, 0xd9,
+ 0x31, 0xcf, 0x51, 0xb7, 0x1d, 0x73, 0xd4, 0x95, 0x28, 0x6c, 0x17, 0x26, 0xa9, 0x1d, 0x6b, 0xf1,
+ 0x5b, 0x00, 0x7e, 0xf4, 0x93, 0x94, 0xfc, 0x97, 0x25, 0x98, 0x5b, 0xa1, 0xb2, 0xf5, 0xd8, 0x6d,
+ 0x8b, 0x67, 0x61, 0x96, 0xe7, 0x42, 0xf0, 0xde, 0xe7, 0xbf, 0x93, 0x44, 0xcb, 0xf3, 0xa4, 0x6d,
+ 0x80, 0xfe, 0x69, 0xfb, 0xd0, 0x0a, 0x47, 0x5f, 0xae, 0x56, 0x0b, 0x92, 0x89, 0x13, 0x30, 0x48,
+ 0x23, 0x13, 0xcb, 0x8e, 0x0d, 0x90, 0xdf, 0x45, 0x61, 0x13, 0x32, 0xee, 0xcd, 0x9c, 0x04, 0xcf,
+ 0xe2, 0xf7, 0xed, 0x05, 0x49, 0x0e, 0x02, 0xdb, 0x35, 0x7c, 0x64, 0x28, 0x76, 0xbd, 0x40, 0xb0,
+ 0xbd, 0xa5, 0xa3, 0x07, 0x21, 0xff, 0xcb, 0x98, 0xb5, 0x31, 0xc2, 0xf5, 0xf7, 0xe9, 0xa6, 0x42,
+ 0x04, 0x51, 0x76, 0xfa, 0x26, 0xff, 0x50, 0x82, 0x05, 0x37, 0x4b, 0x8f, 0xdb, 0x42, 0xaf, 0x3b,
+ 0x2c, 0xf4, 0xb5, 0x28, 0x16, 0xda, 0x63, 0x7b, 0xe1, 0x87, 0x12, 0x9c, 0xf6, 0xa7, 0x22, 0x94,
+ 0xb9, 0xee, 0x22, 0x8f, 0x36, 0xf9, 0x71, 0x6f, 0xf2, 0x13, 0x3c, 0xf9, 0x77, 0x9d, 0x37, 0xb8,
+ 0x7d, 0x26, 0x3a, 0x71, 0x9e, 0x66, 0xf8, 0x77, 0x24, 0x38, 0xd5, 0xb5, 0x28, 0xba, 0xcb, 0x07,
+ 0x1f, 0xd7, 0x7b, 0xed, 0xf6, 0x11, 0xc7, 0x20, 0xff, 0x25, 0x46, 0x6f, 0x75, 0xf1, 0x0e, 0x40,
+ 0x7c, 0x4f, 0x7c, 0xd8, 0xdf, 0x57, 0xc4, 0xf9, 0xef, 0x2b, 0xc4, 0x51, 0x4e, 0x38, 0x47, 0x59,
+ 0xf0, 0xd6, 0xfa, 0x1c, 0xde, 0x5a, 0xde, 0xf4, 0xd6, 0xe8, 0xe2, 0xce, 0x62, 0x98, 0xcb, 0xe0,
+ 0x42, 0xb8, 0x6a, 0x03, 0x87, 0x73, 0xd5, 0x06, 0x8f, 0x2c, 0x0e, 0xb9, 0x47, 0xef, 0xdf, 0xe0,
+ 0x83, 0x10, 0x5f, 0xb3, 0x19, 0xe0, 0x73, 0x77, 0x8d, 0x0a, 0xee, 0x72, 0xfd, 0xb0, 0xa0, 0xc3,
+ 0xb7, 0x9f, 0x48, 0xe1, 0xc6, 0x35, 0x7a, 0x21, 0x8b, 0x19, 0x6b, 0x84, 0x6d, 0x54, 0xfe, 0x09,
+ 0xcb, 0x1d, 0xe1, 0xab, 0x07, 0x18, 0x04, 0x5f, 0xc9, 0xa3, 0xad, 0xc7, 0xad, 0xd6, 0xdf, 0xb3,
+ 0x26, 0x25, 0x27, 0xd5, 0x47, 0xd4, 0x43, 0xd7, 0x00, 0x5a, 0x6e, 0x88, 0xde, 0x19, 0x4f, 0xe1,
+ 0x79, 0x48, 0x9a, 0xfd, 0x5b, 0xb6, 0x8d, 0xa2, 0x18, 0x6b, 0xf3, 0x61, 0x5b, 0x04, 0x62, 0x7f,
+ 0xcd, 0xde, 0x84, 0x16, 0xbb, 0x0b, 0x12, 0x28, 0x5b, 0x5f, 0x63, 0xbc, 0xbe, 0x7a, 0x41, 0x8c,
+ 0x7b, 0x42, 0x7c, 0xd6, 0xad, 0xd9, 0xec, 0x8a, 0xec, 0xa4, 0x14, 0x56, 0xc5, 0xe5, 0x2f, 0xfb,
+ 0xc1, 0x67, 0x23, 0x76, 0xf4, 0x1c, 0xeb, 0x3e, 0x78, 0xff, 0x3e, 0x41, 0x2f, 0x76, 0xf2, 0x0f,
+ 0x7e, 0x3f, 0x35, 0x80, 0x83, 0xbd, 0x5f, 0x25, 0x3e, 0xd4, 0xf5, 0xba, 0x62, 0xe8, 0xea, 0xd9,
+ 0x0d, 0xbb, 0x3d, 0x3b, 0x8f, 0xbb, 0xb9, 0x4f, 0xc0, 0xa0, 0xb5, 0x9c, 0x30, 0x4a, 0xdd, 0x86,
+ 0x16, 0x5b, 0x47, 0x38, 0x05, 0xc0, 0xad, 0x1f, 0xd0, 0x5b, 0x83, 0x87, 0x5a, 0xd6, 0xc2, 0x81,
+ 0x33, 0xa8, 0x1e, 0xef, 0x1e, 0x54, 0x27, 0x03, 0x2f, 0xd6, 0x9d, 0xf0, 0x38, 0x83, 0x4d, 0xbe,
+ 0x9d, 0xb1, 0x87, 0xe9, 0x71, 0xfb, 0x76, 0x46, 0x10, 0x7d, 0xe1, 0x73, 0x38, 0x17, 0xe6, 0x47,
+ 0xf3, 0xc5, 0x87, 0xa3, 0x5b, 0x87, 0x07, 0xf6, 0xcf, 0x25, 0x98, 0xf2, 0x2a, 0x11, 0xf1, 0x8b,
+ 0x0f, 0x47, 0x13, 0x1e, 0xfe, 0xd6, 0xfa, 0x61, 0xfc, 0x2d, 0xb3, 0xb1, 0xd4, 0x53, 0x01, 0x9e,
+ 0xd7, 0xaf, 0xd9, 0x0e, 0xa5, 0x0f, 0xbb, 0x8f, 0x74, 0x1d, 0x7e, 0xdd, 0xb9, 0x0e, 0x7f, 0xf8,
+ 0xd1, 0x90, 0x3d, 0x6d, 0xb9, 0x48, 0x43, 0x78, 0x93, 0xfe, 0xf1, 0x92, 0xf3, 0xe5, 0x18, 0xcc,
+ 0xe4, 0x3a, 0xc6, 0xce, 0xa1, 0xa5, 0xbe, 0xea, 0x73, 0x69, 0x75, 0xa0, 0x5c, 0x3a, 0x7a, 0x8f,
+ 0x78, 0x73, 0xf5, 0xba, 0x33, 0xee, 0x79, 0x3e, 0x62, 0x7f, 0x1e, 0xca, 0xe6, 0x55, 0x22, 0xa2,
+ 0xb2, 0x75, 0x25, 0xea, 0x11, 0x2a, 0xdb, 0x77, 0x25, 0x98, 0x75, 0x0d, 0xef, 0x71, 0x19, 0xe2,
+ 0x9c, 0xc3, 0x10, 0x5f, 0x08, 0xcd, 0x25, 0xcb, 0x08, 0xef, 0xc2, 0x90, 0x95, 0x88, 0x81, 0x10,
+ 0xef, 0x42, 0xfc, 0x96, 0xfd, 0x24, 0xd8, 0xb6, 0xc0, 0x1d, 0x22, 0xcc, 0x00, 0xf3, 0x54, 0xc2,
+ 0xac, 0x24, 0x65, 0xbe, 0xc7, 0xee, 0xf6, 0x24, 0x9e, 0x04, 0x3a, 0x01, 0xd3, 0x77, 0x36, 0x0b,
+ 0xe5, 0xcd, 0xad, 0xdc, 0x56, 0xa1, 0x72, 0x67, 0x7d, 0x73, 0xa3, 0xb0, 0x5c, 0xbc, 0x55, 0x2c,
+ 0xe4, 0x93, 0x4f, 0xa1, 0x29, 0x48, 0xda, 0x59, 0xb9, 0xe5, 0xad, 0xe2, 0x9b, 0x85, 0xa4, 0x84,
+ 0x66, 0x00, 0xd9, 0xa9, 0xc5, 0x75, 0x96, 0x1e, 0x43, 0xd3, 0x30, 0x61, 0xa7, 0xe7, 0x0b, 0xab,
+ 0x85, 0xad, 0x42, 0x3e, 0x19, 0x17, 0x1b, 0x59, 0x2d, 0x2d, 0xbf, 0x5e, 0xc8, 0x27, 0x13, 0x62,
+ 0xe1, 0xcd, 0x3b, 0x9b, 0x1b, 0x85, 0xf5, 0x7c, 0xb2, 0x4f, 0x4c, 0x2e, 0xae, 0x17, 0xb7, 0x8a,
+ 0xb9, 0xd5, 0x64, 0x7f, 0xe6, 0x4f, 0x40, 0x3f, 0xbd, 0x0f, 0x17, 0x77, 0xbe, 0x52, 0x58, 0xcf,
+ 0x17, 0xca, 0x0e, 0xa8, 0x13, 0x30, 0xca, 0xd2, 0x6f, 0x15, 0xd6, 0x72, 0xab, 0x18, 0xe7, 0x38,
+ 0x0c, 0xb3, 0x24, 0x92, 0x10, 0x43, 0x08, 0xc6, 0x58, 0x42, 0xbe, 0xf8, 0x66, 0xa1, 0xbc, 0x59,
+ 0x48, 0xc6, 0x33, 0xff, 0x87, 0xdd, 0xf6, 0x69, 0x49, 0x2c, 0x3a, 0x05, 0x27, 0x08, 0x84, 0x42,
+ 0xae, 0xbc, 0x7c, 0xfb, 0xf5, 0xc2, 0x5b, 0x8e, 0x8e, 0xe6, 0x60, 0xd6, 0x91, 0xbd, 0x59, 0x28,
+ 0x57, 0xd6, 0x73, 0x6b, 0xb8, 0xcb, 0x93, 0x90, 0x12, 0x33, 0x6f, 0x15, 0xcb, 0x9b, 0x5b, 0x34,
+ 0x37, 0xe6, 0xae, 0xba, 0x9a, 0x33, 0x33, 0xe3, 0xee, 0xcc, 0xf5, 0xe2, 0xf2, 0xeb, 0x34, 0x33,
+ 0x81, 0xe6, 0x21, 0x2d, 0x66, 0xe6, 0x8b, 0x9b, 0x1b, 0xab, 0xb9, 0xb7, 0x68, 0x7e, 0x1f, 0x9a,
+ 0x85, 0x49, 0x31, 0xbf, 0xb0, 0x96, 0x2b, 0xae, 0x26, 0xfb, 0xdd, 0x19, 0x84, 0xb3, 0xc9, 0x81,
+ 0xcc, 0xef, 0x4a, 0x30, 0xc2, 0xeb, 0x16, 0x2e, 0x49, 0x4b, 0xad, 0x15, 0xb6, 0x6e, 0x97, 0xf2,
+ 0x95, 0xc2, 0x1b, 0x77, 0x72, 0xab, 0x9b, 0xc9, 0xa7, 0x30, 0x4d, 0x42, 0xc6, 0xe6, 0x56, 0xae,
+ 0xbc, 0xb5, 0x59, 0xb9, 0x5b, 0xdc, 0xba, 0x9d, 0x94, 0xb0, 0xf4, 0x08, 0xb9, 0xcb, 0xa5, 0xf5,
+ 0xad, 0x5c, 0x71, 0x7d, 0x33, 0x19, 0x43, 0xcf, 0xc0, 0x69, 0x8f, 0x16, 0x2b, 0xc5, 0x95, 0xf5,
+ 0x52, 0xb9, 0x50, 0x59, 0xce, 0x61, 0xfe, 0xa3, 0xf3, 0x70, 0xc6, 0xaf, 0x75, 0xa1, 0x64, 0x02,
+ 0x9d, 0x85, 0xa7, 0x3d, 0x7b, 0x12, 0x8a, 0xf5, 0x65, 0xf2, 0x30, 0xc0, 0xee, 0x08, 0xc4, 0x24,
+ 0xad, 0xdd, 0xca, 0x6d, 0xbd, 0xb5, 0xe1, 0x94, 0xeb, 0x71, 0x18, 0x36, 0x33, 0x36, 0xd7, 0x36,
+ 0xa9, 0xa8, 0x98, 0x09, 0xa5, 0xad, 0x8d, 0x64, 0x2c, 0x73, 0x0f, 0x06, 0xcd, 0xbb, 0x02, 0x51,
+ 0x0a, 0xa6, 0xf0, 0xff, 0x1e, 0xfa, 0x31, 0x03, 0xc8, 0xca, 0x59, 0x2f, 0x6d, 0x55, 0xca, 0x85,
+ 0x5c, 0xfe, 0xad, 0xa4, 0x84, 0x05, 0xcd, 0x4a, 0xa7, 0x69, 0x31, 0xac, 0x06, 0x5c, 0xda, 0x5a,
+ 0xe9, 0x4d, 0xac, 0x1c, 0x99, 0xdb, 0x90, 0x74, 0x5e, 0xc9, 0x87, 0xd2, 0x30, 0xb3, 0x5e, 0xda,
+ 0x2a, 0xde, 0x2a, 0x2e, 0xe7, 0xb6, 0x8a, 0xa5, 0x75, 0x82, 0x8a, 0x8e, 0xe7, 0x53, 0x18, 0x8b,
+ 0x2b, 0x8f, 0x90, 0x90, 0xe9, 0xc0, 0x30, 0x77, 0x27, 0x10, 0x16, 0xa7, 0x8d, 0xd2, 0x6a, 0x71,
+ 0xf9, 0x2d, 0x1f, 0xdc, 0x7c, 0xa6, 0xa5, 0xd9, 0x29, 0x98, 0xe2, 0xd3, 0x39, 0xdd, 0x9e, 0x85,
+ 0x49, 0x3e, 0xc7, 0xd2, 0xee, 0xcc, 0x06, 0x0c, 0x9a, 0xb7, 0xb5, 0xe0, 0xea, 0xa5, 0xf2, 0x8a,
+ 0x57, 0x87, 0x93, 0x30, 0x6e, 0xe5, 0x58, 0xbd, 0x4d, 0xc3, 0x84, 0x95, 0x68, 0x77, 0x95, 0xb9,
+ 0x0b, 0xc8, 0x7d, 0x87, 0x01, 0x92, 0x61, 0xbe, 0x54, 0x5e, 0xc9, 0x97, 0xd6, 0xf0, 0x90, 0xfb,
+ 0xa8, 0xe6, 0x29, 0x38, 0xe1, 0x51, 0x86, 0xfe, 0x4e, 0x4a, 0x99, 0x5f, 0x95, 0x48, 0xcb, 0x8e,
+ 0xe5, 0x37, 0xd6, 0xf2, 0x5a, 0x61, 0xed, 0xa6, 0xbf, 0xd2, 0x3f, 0x0d, 0xa7, 0x3c, 0xca, 0x70,
+ 0xca, 0x2d, 0xa1, 0x05, 0x38, 0xe9, 0x51, 0xc4, 0xd6, 0xf0, 0x18, 0x56, 0x24, 0x8f, 0x12, 0x74,
+ 0x64, 0xe3, 0x58, 0xc5, 0xbd, 0x60, 0x60, 0xe3, 0x52, 0xcc, 0x27, 0x13, 0x99, 0xbb, 0xd6, 0xe6,
+ 0xad, 0x0d, 0x7d, 0x01, 0x4e, 0x6e, 0x94, 0x4b, 0x3f, 0x5e, 0x58, 0xde, 0xea, 0x02, 0xdc, 0x55,
+ 0x82, 0x25, 0x30, 0xe0, 0x99, 0xcf, 0x5b, 0xc7, 0x12, 0xe8, 0x28, 0x9e, 0x84, 0x94, 0x59, 0xc5,
+ 0x63, 0x24, 0xb1, 0x20, 0xf0, 0xb9, 0xd6, 0x68, 0x9e, 0x80, 0x69, 0x21, 0x83, 0x1b, 0xd1, 0xcf,
+ 0x5a, 0x1f, 0x3f, 0xb1, 0x63, 0xa0, 0xb3, 0xac, 0xa4, 0x87, 0x6a, 0x4e, 0xc3, 0x04, 0x9f, 0x59,
+ 0xba, 0xbb, 0x5e, 0xc8, 0x27, 0x25, 0xae, 0x5b, 0x92, 0xbc, 0x52, 0xce, 0xad, 0x63, 0xf9, 0x8b,
+ 0x65, 0xfe, 0x8c, 0xfd, 0x6d, 0xab, 0xf0, 0xe9, 0x05, 0x3a, 0x03, 0x0b, 0xac, 0x46, 0xb9, 0xb4,
+ 0x5a, 0xf0, 0xe3, 0x8f, 0x4d, 0xac, 0x58, 0xea, 0xf5, 0x02, 0xd6, 0xe3, 0xb3, 0xf0, 0xb4, 0x67,
+ 0xae, 0x60, 0x7d, 0x63, 0x99, 0x3f, 0xb2, 0xbf, 0x21, 0x71, 0x0a, 0xd7, 0xb3, 0x20, 0xb3, 0x16,
+ 0xba, 0x0b, 0x98, 0xdd, 0x53, 0x57, 0x21, 0xb3, 0x89, 0xea, 0x26, 0x68, 0xb6, 0x58, 0xf8, 0x09,
+ 0x9b, 0x0c, 0xf3, 0x7e, 0xb0, 0x4c, 0x81, 0xeb, 0xd2, 0x97, 0x3d, 0xe3, 0xf5, 0x61, 0xfd, 0x37,
+ 0x0f, 0x8c, 0x61, 0xfd, 0xcf, 0x6d, 0x6c, 0xf8, 0xe8, 0xbf, 0x95, 0xc3, 0xeb, 0xbf, 0x95, 0xc8,
+ 0x49, 0xcb, 0x0e, 0x3d, 0x29, 0xc9, 0x1f, 0x3a, 0xc4, 0xc2, 0x45, 0xd2, 0x0a, 0x9b, 0x1b, 0xa5,
+ 0xf5, 0xcd, 0x02, 0x91, 0x81, 0xe5, 0x52, 0xbe, 0xc0, 0x94, 0xde, 0x99, 0x55, 0xcc, 0x57, 0xb6,
+ 0x4a, 0xaf, 0x17, 0xd6, 0x93, 0x12, 0x36, 0xa6, 0xae, 0x6c, 0x9a, 0x17, 0xcb, 0x68, 0x30, 0x2a,
+ 0x1c, 0x44, 0xc4, 0x24, 0x93, 0x04, 0x2c, 0x5d, 0xa4, 0x64, 0xee, 0xce, 0xd6, 0xed, 0x52, 0xb9,
+ 0xf8, 0x59, 0x62, 0x6c, 0xcd, 0x1e, 0x59, 0x93, 0x76, 0xa9, 0xe2, 0xda, 0xc6, 0x6a, 0x71, 0xb9,
+ 0xb8, 0x95, 0x94, 0xd0, 0x69, 0x98, 0x13, 0xf3, 0xca, 0x85, 0x5b, 0xe5, 0xc2, 0xe6, 0x6d, 0xab,
+ 0xcf, 0x07, 0x30, 0xe9, 0x71, 0x4e, 0x11, 0xeb, 0x04, 0x49, 0xde, 0xc0, 0x2d, 0xd9, 0xa6, 0xfd,
+ 0x6e, 0xe1, 0x66, 0xf2, 0x29, 0x62, 0xa1, 0x3c, 0x32, 0xc9, 0x30, 0xe4, 0x56, 0x0a, 0xeb, 0xb8,
+ 0x63, 0x6c, 0x3e, 0x3c, 0xca, 0xac, 0xe7, 0x18, 0x57, 0x1b, 0x80, 0xdc, 0xe7, 0x17, 0x89, 0x49,
+ 0xc2, 0xa9, 0x77, 0xb6, 0xd8, 0xac, 0x4a, 0x2a, 0xdd, 0xcc, 0x6d, 0x16, 0x97, 0xa9, 0xab, 0xe3,
+ 0x91, 0xbb, 0x51, 0xda, 0xc4, 0x1d, 0x7a, 0x67, 0xae, 0x97, 0xd6, 0x71, 0x6f, 0x15, 0x98, 0xf2,
+ 0x3a, 0x6e, 0x85, 0x19, 0xcc, 0x21, 0xdc, 0x2c, 0x94, 0x73, 0x3e, 0x46, 0x4b, 0x28, 0x65, 0xca,
+ 0x5d, 0x6e, 0x63, 0xc3, 0x34, 0x5a, 0x86, 0xf5, 0xb1, 0x93, 0xbd, 0x26, 0xc6, 0x19, 0x3b, 0xc2,
+ 0x7f, 0x2f, 0x41, 0xb4, 0xf5, 0x9d, 0x2b, 0x62, 0x49, 0xe4, 0x3c, 0xa4, 0xdd, 0xb9, 0x9c, 0x68,
+ 0xfe, 0x5c, 0x4c, 0x5c, 0xd1, 0x74, 0x6a, 0xfb, 0x45, 0x38, 0xc7, 0xd7, 0xef, 0xae, 0xf2, 0x19,
+ 0x78, 0xb6, 0x5b, 0x61, 0x41, 0xef, 0x2f, 0xc0, 0xd9, 0x6e, 0x65, 0x79, 0xe5, 0xb7, 0x2d, 0x89,
+ 0x67, 0x51, 0xd3, 0x02, 0x9c, 0x83, 0x67, 0xba, 0x42, 0xb5, 0xcc, 0x40, 0x40, 0xd7, 0xbc, 0x2d,
+ 0xd8, 0x81, 0x31, 0x71, 0x95, 0xd2, 0xf4, 0x5b, 0x7d, 0x87, 0x83, 0xc5, 0x1e, 0x5e, 0x63, 0xc1,
+ 0xfc, 0x61, 0xef, 0x81, 0xf8, 0x3a, 0x7b, 0xb3, 0x48, 0x0c, 0x36, 0xb1, 0xa2, 0xd8, 0x75, 0xfc,
+ 0x67, 0x44, 0x8f, 0x32, 0xe6, 0x9c, 0x58, 0xcc, 0x53, 0x31, 0xf0, 0x6a, 0x86, 0xb1, 0x24, 0x66,
+ 0x46, 0x08, 0x8e, 0xfc, 0x52, 0x79, 0x05, 0x67, 0xc7, 0x09, 0x38, 0x77, 0x24, 0x8c, 0xc1, 0x61,
+ 0x65, 0xe9, 0x0a, 0xee, 0x14, 0x9c, 0xf0, 0x28, 0xc3, 0x5a, 0x96, 0x88, 0x62, 0xb8, 0xb3, 0x39,
+ 0xec, 0x31, 0x8c, 0xdd, 0xab, 0x17, 0x86, 0x3d, 0xbe, 0xf4, 0xad, 0x6f, 0x49, 0x30, 0xb1, 0x66,
+ 0xc5, 0xa4, 0x9b, 0xaa, 0xf6, 0xa0, 0x5e, 0x55, 0xd1, 0xeb, 0x30, 0x70, 0x5b, 0x55, 0x1a, 0xc6,
+ 0xce, 0x17, 0xd1, 0x8c, 0x6b, 0xf1, 0xb7, 0xb0, 0xdb, 0x36, 0xf6, 0xd2, 0x3e, 0xe9, 0x72, 0x72,
+ 0xff, 0x5f, 0xff, 0xa7, 0x0f, 0x62, 0x80, 0x06, 0xb3, 0x3b, 0xac, 0x85, 0x15, 0xe8, 0x2b, 0xab,
+ 0x4a, 0x6d, 0x2f, 0x72, 0x53, 0x63, 0xa4, 0xa9, 0x41, 0xd4, 0x9f, 0xd5, 0x48, 0xfd, 0x75, 0x18,
+ 0x7c, 0x93, 0x3d, 0x06, 0xed, 0xdb, 0x96, 0xdf, 0x7b, 0xbd, 0xf2, 0x04, 0x69, 0x6c, 0x18, 0x0d,
+ 0x59, 0x0f, 0x4a, 0xa3, 0x7b, 0x38, 0x8c, 0x34, 0x8a, 0xca, 0xae, 0x6f, 0x6b, 0xcf, 0x04, 0x05,
+ 0xef, 0x45, 0x65, 0x57, 0x3e, 0xbd, 0x7f, 0x90, 0x1a, 0x87, 0x51, 0xa5, 0x63, 0xec, 0xa8, 0x4d,
+ 0x03, 0x1b, 0x39, 0xb5, 0x46, 0x3a, 0xeb, 0x47, 0x89, 0x6c, 0x5d, 0xd9, 0x45, 0xef, 0x4b, 0x30,
+ 0xbc, 0xa2, 0x92, 0x45, 0xb2, 0x9b, 0x7b, 0xc5, 0x3c, 0x7a, 0x36, 0xcc, 0x6a, 0x55, 0x31, 0x9f,
+ 0x0e, 0xfd, 0x24, 0x96, 0x2c, 0xef, 0x1f, 0xa4, 0x86, 0xe9, 0xea, 0xfb, 0x22, 0xe6, 0x15, 0xe9,
+ 0x7e, 0x14, 0x0d, 0x67, 0x71, 0x8a, 0x9e, 0x7d, 0xb7, 0x5e, 0x7b, 0x0f, 0x7d, 0x5b, 0x82, 0x29,
+ 0x0b, 0x05, 0x79, 0xdd, 0x63, 0x85, 0x3c, 0x77, 0x8d, 0x2e, 0x86, 0xe9, 0x86, 0x3d, 0x35, 0x1c,
+ 0x01, 0xd3, 0x92, 0x17, 0xa6, 0x53, 0x68, 0x2e, 0x4b, 0x5f, 0xd9, 0x66, 0xd0, 0xc8, 0x52, 0x7e,
+ 0xf6, 0x5d, 0xf2, 0xe7, 0x3d, 0xf4, 0xf3, 0x12, 0x0c, 0x53, 0x15, 0xc1, 0xcd, 0xe8, 0xe8, 0x6a,
+ 0xf8, 0x67, 0xd2, 0xd8, 0x82, 0x5d, 0x7a, 0x29, 0x4a, 0x15, 0xea, 0x53, 0xc8, 0xe7, 0xbd, 0xa0,
+ 0x4e, 0xca, 0x63, 0x0c, 0x63, 0x45, 0x27, 0xc5, 0x5f, 0x91, 0x32, 0x18, 0xe0, 0x48, 0x51, 0xc7,
+ 0x4d, 0xd0, 0x17, 0x8d, 0x43, 0x20, 0x74, 0x3e, 0xc1, 0x1c, 0x02, 0xa1, 0xeb, 0x55, 0x65, 0xf9,
+ 0x9c, 0x17, 0x42, 0x84, 0x92, 0x26, 0xc2, 0xba, 0x4e, 0x5f, 0x5c, 0x46, 0x3f, 0x25, 0x01, 0xd8,
+ 0x2f, 0x2c, 0x07, 0xc3, 0x73, 0xbd, 0xc6, 0x9c, 0x3e, 0x13, 0x86, 0x81, 0xf2, 0xd3, 0xfb, 0x07,
+ 0xa9, 0x11, 0x00, 0x02, 0xe8, 0xa1, 0x56, 0x37, 0x54, 0xaa, 0x5e, 0x72, 0x3f, 0x45, 0x84, 0x79,
+ 0xf5, 0x55, 0x09, 0xc6, 0xf2, 0xaa, 0x52, 0x35, 0xea, 0x0f, 0x4c, 0x38, 0x61, 0x25, 0x3f, 0x1c,
+ 0x86, 0x25, 0x4f, 0x0c, 0x27, 0xd3, 0xb3, 0x9c, 0xd8, 0x67, 0x2b, 0x35, 0x0b, 0x82, 0x09, 0xaa,
+ 0xfc, 0xf1, 0x83, 0xd2, 0x04, 0x50, 0x7f, 0x56, 0x82, 0xc1, 0xd5, 0x56, 0xf5, 0xfe, 0x31, 0xc0,
+ 0xb9, 0xe4, 0x09, 0x67, 0x26, 0x3d, 0x21, 0xc0, 0x69, 0xb4, 0xaa, 0xf7, 0x31, 0x90, 0x2f, 0x49,
+ 0x00, 0x77, 0x9a, 0x8d, 0xe3, 0x81, 0xb2, 0xe8, 0x09, 0x25, 0x95, 0x9e, 0x14, 0xa0, 0x74, 0x9a,
+ 0x26, 0x18, 0x0d, 0x20, 0xaf, 0x36, 0xd4, 0x88, 0xa3, 0xe4, 0x37, 0x99, 0x9c, 0xd9, 0x3f, 0x48,
+ 0x8d, 0xc2, 0x30, 0xe9, 0xbd, 0x46, 0x9a, 0xa5, 0x46, 0x32, 0x23, 0x18, 0xc9, 0xaf, 0x48, 0xf4,
+ 0x9c, 0x83, 0xf9, 0x2e, 0xfe, 0xe5, 0x90, 0xcf, 0xe0, 0x33, 0xdd, 0x39, 0x17, 0xae, 0xb8, 0x2e,
+ 0x67, 0xbc, 0xf4, 0x79, 0x1a, 0x09, 0xac, 0x30, 0x5f, 0xd6, 0xff, 0x10, 0x3b, 0x10, 0xdc, 0x87,
+ 0x84, 0xc7, 0x0c, 0xed, 0xc7, 0xf7, 0x0f, 0x52, 0xc8, 0xda, 0xb8, 0x59, 0x54, 0xda, 0x6d, 0x1b,
+ 0xe1, 0x22, 0xba, 0x94, 0x35, 0x2f, 0x28, 0xa2, 0x20, 0xb9, 0x0f, 0xaa, 0xf4, 0xec, 0xbb, 0xba,
+ 0x5a, 0xad, 0xf0, 0xd0, 0x7f, 0x5a, 0x22, 0x97, 0xdf, 0x1e, 0x37, 0x64, 0x6c, 0xbf, 0x81, 0xec,
+ 0x06, 0xdb, 0x50, 0xa7, 0x10, 0xca, 0xb6, 0xb4, 0x6d, 0x07, 0x2f, 0xbf, 0x2e, 0x59, 0xc7, 0xe6,
+ 0x8f, 0x1b, 0xd4, 0x95, 0xfd, 0x83, 0xd4, 0x98, 0xb5, 0xd1, 0x6c, 0x03, 0x4b, 0xa1, 0x19, 0x07,
+ 0x0f, 0x4d, 0x70, 0x5f, 0x93, 0x60, 0x8c, 0xcd, 0xd0, 0xe6, 0x9b, 0x96, 0x61, 0xa5, 0x3e, 0xd4,
+ 0x53, 0xa5, 0xdc, 0x33, 0x8b, 0xa1, 0x04, 0xb0, 0xcd, 0x40, 0xfc, 0x92, 0x04, 0x13, 0xae, 0xd7,
+ 0xf8, 0x50, 0xe0, 0xa7, 0xfd, 0x7e, 0x0f, 0xf8, 0xa5, 0x2f, 0x46, 0x00, 0x1b, 0xce, 0x6a, 0x30,
+ 0xa4, 0xd8, 0x6a, 0xfc, 0x8c, 0x04, 0x23, 0x8c, 0x89, 0xf4, 0x71, 0xbc, 0xb0, 0x2c, 0xbc, 0x1c,
+ 0xda, 0x0d, 0x22, 0x0c, 0xf4, 0xf6, 0x19, 0x90, 0x60, 0x57, 0xe9, 0x39, 0x85, 0xef, 0x48, 0x30,
+ 0x4e, 0x85, 0xc2, 0x06, 0x75, 0x2d, 0x3c, 0xf3, 0xf8, 0x57, 0xde, 0xd2, 0x17, 0x42, 0x83, 0x0c,
+ 0x67, 0xf9, 0x09, 0x42, 0xcc, 0xb6, 0x6f, 0x4a, 0x30, 0x57, 0x56, 0x75, 0xb5, 0x59, 0xe3, 0x1e,
+ 0x7e, 0xa3, 0x7a, 0xbd, 0x16, 0x85, 0x8b, 0x7e, 0xe6, 0xf7, 0x35, 0x4f, 0x34, 0x19, 0xf9, 0xac,
+ 0x0b, 0x0d, 0x9e, 0x1c, 0x31, 0x8e, 0x07, 0x1c, 0x04, 0xc7, 0xc0, 0xd2, 0x57, 0xe8, 0x8e, 0x74,
+ 0x60, 0xad, 0xe7, 0xdd, 0x42, 0x0d, 0x2c, 0x7d, 0xd1, 0x4c, 0x1c, 0x58, 0x0a, 0x2a, 0xc2, 0xc0,
+ 0xf2, 0xcf, 0xa9, 0x85, 0x1b, 0x58, 0x52, 0x23, 0xdc, 0xc0, 0x12, 0x84, 0xe2, 0xc0, 0x72, 0x4f,
+ 0xac, 0xb1, 0x99, 0xa4, 0x55, 0x53, 0x1f, 0xcd, 0xc0, 0x12, 0x34, 0x7e, 0x03, 0xcb, 0x99, 0x3d,
+ 0xf3, 0xd5, 0xaf, 0x23, 0x35, 0x7b, 0xdc, 0xa3, 0x67, 0xa1, 0xcc, 0x1e, 0x7b, 0x0a, 0xcb, 0x61,
+ 0xf6, 0x4c, 0x68, 0x11, 0xcc, 0x9e, 0xf8, 0x26, 0x58, 0x38, 0xb3, 0x67, 0x3e, 0xb4, 0x15, 0xca,
+ 0xec, 0x31, 0xa4, 0x98, 0x89, 0x7f, 0xde, 0x8e, 0x31, 0xd7, 0xee, 0x29, 0xe1, 0x39, 0x78, 0x29,
+ 0xc2, 0x93, 0x5d, 0x7a, 0x50, 0x18, 0x42, 0x40, 0xed, 0xe2, 0xee, 0xff, 0xa6, 0x04, 0x73, 0x9b,
+ 0x6a, 0xb3, 0xe6, 0xf3, 0x7c, 0x15, 0x7a, 0x35, 0x78, 0xa3, 0xbf, 0xdb, 0xbb, 0x57, 0xbe, 0xd2,
+ 0xf8, 0xa2, 0x27, 0xdb, 0x9e, 0x96, 0x4f, 0x0a, 0x3e, 0x26, 0x96, 0x42, 0x5d, 0x35, 0xda, 0x0f,
+ 0x9b, 0xb8, 0xe9, 0x3d, 0xcc, 0xbf, 0x0f, 0x24, 0x40, 0x9b, 0xaa, 0x51, 0x6c, 0xd6, 0x8d, 0xba,
+ 0xd2, 0x30, 0xbb, 0x46, 0xc1, 0x97, 0x60, 0x89, 0x4f, 0x78, 0xf9, 0x02, 0x7b, 0xde, 0x13, 0xd8,
+ 0xbc, 0x7c, 0xc2, 0x01, 0xcc, 0xa8, 0x53, 0x04, 0xed, 0x87, 0x18, 0xd5, 0x5f, 0x93, 0x60, 0x6e,
+ 0xc5, 0xe6, 0x84, 0xeb, 0x75, 0x2d, 0xbf, 0x75, 0x8b, 0x97, 0xc2, 0xc2, 0x76, 0xb6, 0x48, 0x18,
+ 0x38, 0x0a, 0xc3, 0x6d, 0xf2, 0xcb, 0x1e, 0xe3, 0x05, 0x34, 0x9f, 0x25, 0x69, 0x75, 0x55, 0xcf,
+ 0x9a, 0xef, 0x98, 0xe9, 0xd9, 0xaa, 0x55, 0x1d, 0xfd, 0x9e, 0x04, 0xf3, 0x34, 0x98, 0xf4, 0x45,
+ 0xfb, 0x6a, 0xaf, 0xa8, 0x68, 0xbb, 0x87, 0xa0, 0xea, 0x3a, 0xf3, 0xc5, 0x28, 0x55, 0x36, 0xff,
+ 0x9f, 0x91, 0x03, 0xc8, 0xc2, 0x83, 0x80, 0x29, 0xa3, 0x4a, 0x7d, 0xf4, 0x94, 0xd1, 0x76, 0x8f,
+ 0x83, 0xb2, 0x74, 0x08, 0xca, 0xbe, 0x27, 0xc1, 0x3c, 0x0d, 0xb1, 0x7c, 0x29, 0x7b, 0xa5, 0x57,
+ 0x64, 0x5d, 0xa6, 0x8c, 0x97, 0xe9, 0x82, 0x19, 0xc3, 0xcc, 0x05, 0x63, 0x0b, 0x99, 0x20, 0x29,
+ 0xfb, 0x80, 0x2e, 0x62, 0xb9, 0x5f, 0x96, 0xf2, 0xd3, 0x84, 0xab, 0x61, 0xf1, 0x5b, 0x4d, 0x11,
+ 0xc7, 0xdd, 0x43, 0x05, 0x4e, 0xa0, 0x59, 0x2f, 0x70, 0xca, 0xb6, 0x8a, 0x7e, 0x55, 0x82, 0x59,
+ 0x51, 0xf6, 0x6d, 0x60, 0x2f, 0x46, 0x06, 0xc0, 0xa4, 0xbd, 0x07, 0xe4, 0xcf, 0xfb, 0x08, 0xc3,
+ 0x49, 0xd9, 0x0f, 0x3a, 0x96, 0x02, 0x8c, 0x5e, 0x94, 0xef, 0xc3, 0xa0, 0x67, 0x12, 0x7d, 0x94,
+ 0xe8, 0xd3, 0xdd, 0xd0, 0x7f, 0x5d, 0x82, 0x59, 0x51, 0x86, 0x6d, 0xf4, 0xcf, 0x45, 0x06, 0xd1,
+ 0x45, 0x6a, 0x97, 0xfc, 0xa4, 0xf6, 0x44, 0xc6, 0x57, 0x30, 0xbe, 0x29, 0x41, 0x8a, 0x13, 0x57,
+ 0xf1, 0x55, 0x28, 0x3f, 0x91, 0x7d, 0x21, 0x2c, 0x6a, 0xa1, 0x39, 0xc2, 0x3e, 0x0f, 0xb1, 0x3d,
+ 0x85, 0xe6, 0xbc, 0xd0, 0x35, 0x68, 0x5d, 0xf4, 0xdb, 0x12, 0xcc, 0x89, 0xa2, 0x2b, 0x82, 0xbc,
+ 0xde, 0x13, 0x18, 0x26, 0xc2, 0x3d, 0x52, 0xf2, 0x92, 0x8f, 0x20, 0x2c, 0xc8, 0xdd, 0x48, 0xc1,
+ 0xc2, 0x80, 0xa9, 0x11, 0x45, 0xf9, 0x28, 0xa8, 0x61, 0x22, 0x7d, 0xd4, 0xd4, 0xa4, 0x83, 0xa8,
+ 0xf9, 0xab, 0x12, 0xcc, 0x89, 0xa2, 0x2d, 0x52, 0xf3, 0x62, 0x4f, 0x80, 0xba, 0x88, 0xf8, 0x35,
+ 0x3f, 0x11, 0x3f, 0x95, 0xe9, 0x2a, 0x44, 0x5f, 0x04, 0x58, 0x51, 0x8d, 0x92, 0xb6, 0x4d, 0xb6,
+ 0x37, 0xce, 0x86, 0xb8, 0x76, 0xbf, 0x98, 0x0f, 0xde, 0x5b, 0x29, 0x69, 0xdb, 0xf2, 0x82, 0xc7,
+ 0xca, 0xce, 0x08, 0x02, 0x7b, 0x65, 0x07, 0xeb, 0xff, 0x94, 0xd9, 0x39, 0x3d, 0x25, 0xc4, 0xb6,
+ 0x35, 0xc2, 0x3f, 0xac, 0x14, 0x0e, 0xca, 0x92, 0x07, 0x94, 0x79, 0x74, 0xd2, 0xdc, 0xce, 0x20,
+ 0x88, 0xe8, 0x07, 0x07, 0xd9, 0x77, 0xe9, 0xdf, 0xf7, 0xd0, 0x97, 0x25, 0x18, 0xb5, 0x97, 0xc0,
+ 0x4b, 0xda, 0xf6, 0x91, 0x32, 0xe7, 0x0a, 0xf5, 0xc6, 0x31, 0x22, 0x5b, 0xac, 0xe6, 0xd2, 0x33,
+ 0xdc, 0xba, 0x97, 0x63, 0xf5, 0x1b, 0xe3, 0x29, 0x7f, 0xac, 0x78, 0xc4, 0x85, 0xef, 0x0f, 0x89,
+ 0xd7, 0x4d, 0x8e, 0x1d, 0xee, 0x71, 0x8f, 0x64, 0x5d, 0x8b, 0xf8, 0xaa, 0x8d, 0xe9, 0x7c, 0xbf,
+ 0x18, 0xb9, 0x1e, 0xdb, 0x5e, 0xb9, 0xea, 0x31, 0xb6, 0xa7, 0xe4, 0x14, 0x05, 0xbe, 0xab, 0xb2,
+ 0x71, 0x15, 0x76, 0x82, 0x7e, 0x4e, 0x82, 0xb1, 0x5c, 0xad, 0xc6, 0xe1, 0x0e, 0x9e, 0x6e, 0x3c,
+ 0x9e, 0x65, 0x4a, 0x87, 0x17, 0x53, 0x33, 0x78, 0x15, 0xf9, 0x3b, 0x2d, 0x27, 0x9d, 0x30, 0x59,
+ 0x50, 0x3d, 0x41, 0xbf, 0x06, 0xe7, 0x11, 0x06, 0x32, 0xd6, 0xfb, 0xf5, 0x27, 0x5f, 0x83, 0xe1,
+ 0x3d, 0xe2, 0x99, 0x13, 0x2e, 0xc6, 0xf1, 0x1a, 0x31, 0x41, 0xd5, 0x95, 0xbf, 0xcb, 0xc0, 0x6f,
+ 0x2a, 0x5c, 0x0c, 0xfd, 0x82, 0x07, 0x69, 0x87, 0xe0, 0x99, 0x80, 0x71, 0x8c, 0x67, 0x97, 0x24,
+ 0x8b, 0x41, 0x3e, 0x43, 0x85, 0x33, 0xf4, 0x2c, 0xfd, 0x3c, 0xfc, 0xaf, 0x70, 0xc3, 0xc8, 0xee,
+ 0x4a, 0x08, 0x39, 0x8c, 0xc2, 0x0b, 0x3a, 0xa1, 0x86, 0x91, 0xd6, 0x20, 0xc2, 0x86, 0x20, 0xc9,
+ 0x81, 0xf4, 0x1e, 0x4d, 0x06, 0x14, 0x8f, 0xe6, 0xdf, 0x92, 0x60, 0x82, 0xae, 0x34, 0xf1, 0x40,
+ 0xaf, 0x85, 0x5b, 0x8a, 0x3e, 0x0c, 0xd6, 0xeb, 0x5d, 0xb0, 0x9e, 0x4e, 0xa7, 0x9d, 0x58, 0xb3,
+ 0xef, 0xb2, 0x0f, 0xe6, 0xde, 0x63, 0x9b, 0xa5, 0xbc, 0x0c, 0x86, 0x45, 0xed, 0xfd, 0x46, 0x51,
+ 0xd7, 0x68, 0x62, 0x12, 0x26, 0x38, 0x88, 0xdc, 0xc4, 0x75, 0x32, 0xd3, 0x05, 0x23, 0xfa, 0x0d,
+ 0xd1, 0xfc, 0xd0, 0xfe, 0xc2, 0x99, 0x1f, 0x8f, 0xcf, 0xdc, 0x43, 0x99, 0x1f, 0xaf, 0x8f, 0xfc,
+ 0x89, 0x8b, 0xe0, 0x23, 0xb6, 0xbc, 0x15, 0x32, 0x09, 0xe0, 0xac, 0xd0, 0x77, 0x25, 0x18, 0xa3,
+ 0x8d, 0x59, 0x8f, 0x4f, 0x3c, 0x1f, 0xe9, 0xbe, 0x11, 0x13, 0xfb, 0x0b, 0x11, 0x6b, 0x31, 0xe4,
+ 0x8b, 0x3e, 0x9b, 0x1c, 0x33, 0xf2, 0x84, 0xbd, 0xc9, 0xc1, 0xe1, 0xfd, 0x19, 0xc9, 0x3a, 0xfc,
+ 0x49, 0x7c, 0x85, 0x0b, 0x21, 0xbb, 0x2d, 0xe6, 0xd3, 0x61, 0x9f, 0xd0, 0x20, 0xeb, 0xa3, 0x48,
+ 0xc4, 0x84, 0x62, 0x45, 0x8a, 0x2b, 0x89, 0xc6, 0xc4, 0xcd, 0x17, 0xf4, 0x97, 0x24, 0x18, 0x65,
+ 0x0e, 0x30, 0x7b, 0x6c, 0x23, 0x2c, 0x03, 0x85, 0x57, 0x7b, 0xc2, 0xc3, 0x3b, 0xc7, 0x9c, 0x2c,
+ 0x06, 0xcf, 0xd6, 0xa7, 0x31, 0x79, 0xc8, 0xc2, 0x86, 0x79, 0xf5, 0x2d, 0x09, 0x46, 0x99, 0x33,
+ 0x1b, 0x11, 0x99, 0xf0, 0x2e, 0x50, 0x78, 0x64, 0x57, 0x88, 0x26, 0x89, 0xc8, 0x2c, 0xce, 0x4d,
+ 0xa6, 0x1d, 0x9c, 0xc3, 0x10, 0x7f, 0x41, 0x82, 0x09, 0xdb, 0xbf, 0x31, 0x61, 0x1e, 0xc7, 0xa0,
+ 0xfe, 0x58, 0x37, 0x6c, 0xd8, 0x12, 0x89, 0x5b, 0x6a, 0x0e, 0xbf, 0xe7, 0x17, 0x88, 0x25, 0x7a,
+ 0x1c, 0x71, 0x8a, 0xfe, 0xd0, 0xbf, 0x92, 0x60, 0x9a, 0x6a, 0x98, 0x78, 0x21, 0x91, 0x1e, 0x1c,
+ 0xb9, 0x74, 0xb9, 0xc1, 0x28, 0xfd, 0x4a, 0xa4, 0xcb, 0xaf, 0x44, 0x0d, 0x7f, 0x6d, 0xff, 0x20,
+ 0x75, 0xc2, 0xa1, 0x4d, 0x43, 0x26, 0x63, 0x6c, 0x1b, 0xc5, 0x2e, 0xe7, 0xf2, 0xd2, 0xf9, 0x5f,
+ 0x97, 0x60, 0x7a, 0x45, 0x35, 0x44, 0x80, 0x44, 0xfb, 0x17, 0xa3, 0xe0, 0x2a, 0xe6, 0xd3, 0x91,
+ 0x6f, 0x93, 0x92, 0x97, 0x7d, 0xec, 0xd3, 0x45, 0x74, 0xc1, 0x05, 0xf9, 0x5d, 0xfb, 0x7b, 0xcb,
+ 0xf7, 0x68, 0x26, 0x33, 0x11, 0xdf, 0xa0, 0x04, 0x78, 0xbc, 0x3f, 0xe3, 0xe7, 0xb7, 0x2c, 0x45,
+ 0xba, 0x89, 0x9c, 0xfa, 0x2e, 0x78, 0x12, 0x98, 0x86, 0x49, 0x13, 0xaa, 0x73, 0x22, 0x20, 0xcb,
+ 0x4f, 0x26, 0x54, 0xd1, 0x87, 0xf9, 0xcf, 0x12, 0x4c, 0x09, 0x93, 0x80, 0x39, 0x91, 0xbd, 0xd2,
+ 0xc3, 0x85, 0xe8, 0xa6, 0xcc, 0x5c, 0xef, 0xa9, 0x2e, 0x13, 0x9a, 0x3b, 0xfb, 0x07, 0xa9, 0x05,
+ 0x4f, 0x5a, 0x9c, 0xb2, 0x73, 0x51, 0x7e, 0x36, 0xeb, 0x3d, 0x02, 0x1e, 0xb3, 0xdd, 0xaf, 0x48,
+ 0x90, 0xcc, 0xd5, 0x6a, 0xe2, 0xdb, 0x3e, 0x57, 0x22, 0x01, 0xcd, 0xd5, 0x6a, 0xc1, 0x1b, 0x82,
+ 0x42, 0x0d, 0xf9, 0xc6, 0xfe, 0x41, 0x2a, 0x0d, 0x53, 0x0e, 0x62, 0x44, 0xcd, 0x9e, 0x93, 0x9d,
+ 0x9b, 0xfa, 0x9c, 0xf7, 0xf6, 0x8f, 0x24, 0x98, 0xa4, 0xae, 0x98, 0x88, 0xfc, 0xb9, 0x48, 0x38,
+ 0x68, 0x0b, 0x51, 0xc1, 0x17, 0x43, 0x80, 0x3f, 0x9b, 0x5e, 0xf0, 0x06, 0x2f, 0xba, 0x73, 0x7f,
+ 0x5d, 0x82, 0x49, 0xea, 0x9b, 0x1d, 0x86, 0x0c, 0xda, 0x82, 0xaf, 0x37, 0xb7, 0xb2, 0x7f, 0x90,
+ 0x9a, 0x83, 0x69, 0x07, 0x5e, 0xea, 0xd1, 0x59, 0x80, 0xe5, 0x4c, 0x20, 0x60, 0xf4, 0x6f, 0x2d,
+ 0xdf, 0x8e, 0xfb, 0x1e, 0x24, 0xc4, 0xf6, 0x9d, 0xdf, 0xcb, 0x25, 0xe9, 0x97, 0x7b, 0xa8, 0xc9,
+ 0xd4, 0xe1, 0x8d, 0xfd, 0x83, 0xd4, 0x3c, 0x4c, 0x58, 0x56, 0xa8, 0xd5, 0x50, 0x3d, 0x95, 0xe1,
+ 0x82, 0x7c, 0xc6, 0x47, 0x19, 0x88, 0xa2, 0xf3, 0xaa, 0xf0, 0x4b, 0x34, 0x6e, 0xe1, 0x5f, 0x11,
+ 0x5a, 0x8c, 0x00, 0x10, 0xab, 0xc1, 0xc5, 0x08, 0xe5, 0x49, 0x20, 0x90, 0x02, 0x24, 0x90, 0x20,
+ 0x4a, 0xd1, 0x09, 0x79, 0xca, 0x31, 0x28, 0x04, 0x34, 0x06, 0xfb, 0xb7, 0xad, 0xf0, 0x85, 0xc7,
+ 0x7b, 0x35, 0x42, 0xff, 0x4c, 0xf8, 0x23, 0x41, 0xce, 0x05, 0x42, 0x76, 0xcf, 0xc7, 0x94, 0xcf,
+ 0xef, 0xde, 0x57, 0xf7, 0xde, 0x63, 0x9b, 0xe7, 0x13, 0x82, 0xc8, 0x47, 0x06, 0x1e, 0x20, 0xee,
+ 0x37, 0xc8, 0xec, 0x3a, 0x29, 0x60, 0x74, 0x08, 0x3b, 0x0e, 0x61, 0x7c, 0x41, 0xa2, 0x1f, 0x5a,
+ 0x62, 0xce, 0x1d, 0x11, 0x0b, 0x21, 0xe6, 0x7e, 0xf7, 0xff, 0x06, 0x8b, 0xb9, 0xef, 0x8d, 0xc7,
+ 0xf2, 0xdd, 0xfd, 0x83, 0xd4, 0x29, 0xf7, 0xc9, 0x31, 0xa7, 0x94, 0x5f, 0x91, 0x2f, 0xfa, 0x48,
+ 0xb9, 0x70, 0x98, 0x8c, 0x13, 0xf6, 0xbf, 0x2f, 0x09, 0xf7, 0x5a, 0x13, 0xdf, 0xe1, 0x72, 0x04,
+ 0x9c, 0xc5, 0x7c, 0xb0, 0xe4, 0x70, 0xc5, 0x89, 0xbe, 0x86, 0x20, 0x24, 0x83, 0xce, 0x87, 0x21,
+ 0x84, 0xf8, 0x10, 0x3f, 0x90, 0x60, 0x9a, 0x06, 0x0c, 0x8e, 0xef, 0x7d, 0xd0, 0x0b, 0x11, 0x2f,
+ 0x32, 0x67, 0x6b, 0xeb, 0x91, 0x08, 0xda, 0x12, 0x0d, 0x10, 0x26, 0x88, 0x6a, 0x82, 0x83, 0xa2,
+ 0x4b, 0xf2, 0x39, 0x1f, 0x8a, 0x5a, 0xf5, 0x5a, 0x95, 0xa7, 0x0a, 0x0f, 0xcb, 0x6f, 0x59, 0x07,
+ 0x24, 0x78, 0x7a, 0xae, 0x46, 0x00, 0xc6, 0x56, 0xd6, 0x23, 0xd1, 0x72, 0x27, 0x24, 0x2d, 0x97,
+ 0xd3, 0xa1, 0x47, 0x07, 0x13, 0xf3, 0xbb, 0x12, 0x4c, 0xdb, 0xa1, 0x0c, 0x4f, 0xd0, 0x71, 0x4a,
+ 0x9a, 0x12, 0x92, 0x98, 0x97, 0xd3, 0xcf, 0x87, 0x25, 0xc6, 0x19, 0xfb, 0x60, 0xc2, 0xca, 0x4f,
+ 0x06, 0x61, 0x62, 0xb0, 0xf4, 0x3d, 0xcb, 0x38, 0x1f, 0x82, 0x28, 0x3f, 0xc3, 0xbc, 0xb9, 0x7f,
+ 0x90, 0x3a, 0x6d, 0x4f, 0x1e, 0x18, 0x3f, 0xb3, 0xcb, 0x4e, 0x23, 0x90, 0x09, 0x6f, 0x04, 0xfe,
+ 0x9b, 0xb5, 0x3d, 0xc5, 0x81, 0xe0, 0xde, 0x8f, 0xb9, 0x12, 0xfe, 0xd2, 0x7a, 0xa6, 0x39, 0x11,
+ 0xae, 0xb9, 0x97, 0x1b, 0x21, 0x87, 0x24, 0x9f, 0xbe, 0x11, 0x8a, 0x22, 0xf1, 0x35, 0x0a, 0x6a,
+ 0x22, 0xe8, 0xcd, 0xf8, 0x78, 0x74, 0xfe, 0x50, 0x82, 0x74, 0x59, 0xdd, 0x56, 0x9b, 0xaa, 0xc6,
+ 0x8c, 0x9e, 0xf0, 0x9e, 0x41, 0xc4, 0x61, 0x0a, 0x3c, 0xa6, 0xc4, 0x37, 0x2e, 0x1b, 0x21, 0x29,
+ 0x5d, 0x4d, 0xaf, 0x84, 0x16, 0x3e, 0x9b, 0xba, 0x6c, 0x85, 0x1e, 0xd8, 0xa5, 0x4f, 0x2f, 0xd0,
+ 0xe7, 0x18, 0x30, 0xc5, 0xff, 0x51, 0x82, 0x49, 0xc1, 0xe3, 0x24, 0x61, 0xa8, 0x8e, 0x5e, 0xee,
+ 0x25, 0xfa, 0x3e, 0x7c, 0xe0, 0xee, 0x90, 0x60, 0x12, 0xd0, 0x7a, 0x4f, 0x63, 0xf2, 0xd9, 0x6c,
+ 0xd7, 0x20, 0xd8, 0x11, 0x81, 0xf1, 0x7d, 0xf6, 0x14, 0xc6, 0x5f, 0x8a, 0x52, 0x5e, 0xbe, 0xb9,
+ 0x7f, 0x90, 0x9a, 0xf2, 0xa2, 0x83, 0x80, 0x3f, 0x83, 0xe4, 0x6c, 0x70, 0x04, 0xff, 0x7d, 0x09,
+ 0x90, 0xb0, 0xc8, 0x47, 0xef, 0x56, 0x59, 0x8a, 0x02, 0x84, 0xcd, 0xbb, 0xd1, 0xc0, 0xe7, 0xc4,
+ 0xa0, 0x9e, 0x82, 0xb7, 0x97, 0xfc, 0x64, 0xf9, 0x54, 0x57, 0xf4, 0x6c, 0xf9, 0x04, 0x09, 0xcb,
+ 0x80, 0x3d, 0x60, 0x67, 0xd6, 0x22, 0x1a, 0xf6, 0x5b, 0xdd, 0xb1, 0x9f, 0x4b, 0x87, 0xe0, 0x3c,
+ 0x73, 0x13, 0x66, 0x5c, 0x8b, 0x84, 0x94, 0x88, 0xe3, 0x95, 0x9c, 0x72, 0x77, 0x02, 0x9e, 0x4b,
+ 0x2f, 0x06, 0x13, 0xe0, 0x9c, 0x4d, 0x31, 0x31, 0xe5, 0x1f, 0x5d, 0x62, 0xc4, 0x19, 0xf4, 0x3b,
+ 0x12, 0x20, 0x21, 0xbc, 0xe9, 0x8d, 0x10, 0xbf, 0x39, 0x34, 0xbf, 0x7f, 0x90, 0x9a, 0xb1, 0xd7,
+ 0x1e, 0x28, 0x64, 0x6e, 0x73, 0xe6, 0x4c, 0x26, 0x8c, 0xee, 0xfe, 0x8a, 0x04, 0x69, 0x7b, 0xf5,
+ 0xcd, 0x75, 0x0d, 0xba, 0xdf, 0x12, 0xdc, 0x8b, 0xd1, 0xef, 0xe0, 0xa5, 0xeb, 0x70, 0x05, 0xb2,
+ 0x02, 0x71, 0x42, 0x44, 0xed, 0x5c, 0x8d, 0x23, 0xe7, 0x21, 0x4d, 0xe8, 0x0c, 0xad, 0xb8, 0x28,
+ 0xb7, 0x1f, 0x83, 0x13, 0xee, 0xd9, 0xc0, 0x5c, 0x99, 0xbb, 0xd1, 0xeb, 0x0d, 0xc1, 0xe6, 0xcc,
+ 0xf0, 0x5a, 0xef, 0x0d, 0xb0, 0xf9, 0xe1, 0xed, 0x30, 0x74, 0x7e, 0x46, 0x7e, 0x29, 0x60, 0x88,
+ 0xcc, 0x8b, 0xdd, 0x3c, 0x17, 0xec, 0xfe, 0x83, 0x04, 0xd3, 0xf6, 0x2a, 0x05, 0x7f, 0x21, 0xfd,
+ 0x0b, 0xd1, 0xf1, 0xe7, 0x6a, 0xb5, 0xf4, 0x52, 0xf4, 0x6a, 0xf2, 0x9f, 0xdc, 0x3f, 0x48, 0x9d,
+ 0x84, 0xb4, 0x27, 0xa1, 0xb6, 0x02, 0xbd, 0x20, 0x5f, 0x89, 0x4a, 0x29, 0x73, 0x73, 0x52, 0xc2,
+ 0xd2, 0x06, 0x4f, 0xe4, 0x4b, 0xd1, 0xd1, 0xb2, 0x85, 0x8e, 0x5e, 0xe8, 0x54, 0x43, 0xd1, 0x79,
+ 0x23, 0xfd, 0x4a, 0xe4, 0x11, 0x15, 0x96, 0x01, 0x7f, 0x20, 0x41, 0xca, 0x6d, 0x34, 0x7a, 0xa7,
+ 0x38, 0x60, 0x85, 0xa4, 0x4a, 0x62, 0xf1, 0x39, 0x4f, 0xaa, 0x38, 0x5b, 0xf2, 0x63, 0x99, 0x43,
+ 0x90, 0x85, 0xfe, 0xae, 0x04, 0x49, 0xfb, 0xbb, 0x63, 0xe6, 0xb7, 0x5d, 0x8b, 0x78, 0xa9, 0x60,
+ 0xe8, 0x6d, 0x60, 0x9f, 0x4b, 0x41, 0xe5, 0x17, 0xe8, 0x36, 0x30, 0x39, 0x23, 0xee, 0x70, 0x73,
+ 0xd2, 0xf2, 0x34, 0x3b, 0x28, 0xee, 0xf6, 0xc9, 0xbe, 0x23, 0x71, 0x17, 0xd9, 0x12, 0x87, 0xec,
+ 0x62, 0x68, 0x04, 0xc5, 0x7c, 0xb8, 0x2f, 0x4f, 0xe8, 0x1c, 0xf4, 0xb2, 0x3f, 0xc0, 0x79, 0x64,
+ 0x1d, 0xb1, 0x37, 0xb9, 0x2a, 0x58, 0xf1, 0x5f, 0x94, 0x60, 0xdc, 0xfe, 0xd6, 0x98, 0xce, 0x33,
+ 0xd9, 0xd0, 0x3d, 0x33, 0xdf, 0x2b, 0x02, 0xd4, 0x97, 0xe8, 0xc1, 0x05, 0x0e, 0xaa, 0x78, 0x1c,
+ 0xd6, 0x1b, 0x2b, 0x66, 0xe7, 0xdf, 0x90, 0x60, 0xdc, 0xfe, 0x86, 0x23, 0x2a, 0x52, 0xe6, 0x69,
+ 0x45, 0x40, 0xfa, 0x99, 0x2e, 0x48, 0x9f, 0x4e, 0x77, 0xe5, 0x2a, 0x3b, 0x42, 0x35, 0x29, 0x7e,
+ 0x65, 0x4d, 0x21, 0x1f, 0x97, 0x0c, 0x14, 0xbb, 0xc0, 0xbd, 0x9c, 0x3e, 0xdf, 0x0d, 0xae, 0xd3,
+ 0x97, 0xfa, 0x90, 0x6c, 0x28, 0xfc, 0x88, 0x40, 0x17, 0x3d, 0xa7, 0x0f, 0x24, 0x18, 0xa7, 0x86,
+ 0xab, 0x47, 0xd8, 0x7e, 0xe6, 0xee, 0x3a, 0x3d, 0xcd, 0xc2, 0x61, 0xe4, 0x8c, 0xdc, 0x7c, 0xa6,
+ 0xbb, 0x92, 0xfd, 0x0f, 0x09, 0x66, 0x05, 0x9f, 0x83, 0xb3, 0x66, 0x61, 0x9f, 0x42, 0x38, 0x6a,
+ 0xa3, 0xf6, 0xb9, 0xfd, 0x83, 0xd4, 0x19, 0x98, 0x35, 0xed, 0xb7, 0xc3, 0x76, 0x84, 0x5f, 0x1b,
+ 0xf6, 0xb3, 0x7e, 0xff, 0xc6, 0xbe, 0xf1, 0x4b, 0x34, 0x82, 0x4b, 0x51, 0x09, 0x8e, 0x26, 0x4c,
+ 0x6f, 0x47, 0xa2, 0xeb, 0x79, 0xb4, 0xd4, 0x95, 0x2e, 0xef, 0xf1, 0xfc, 0x3d, 0x09, 0x66, 0x84,
+ 0xb0, 0xf5, 0xd1, 0xd8, 0x4e, 0x65, 0xff, 0x20, 0x75, 0x16, 0x52, 0x1e, 0xa4, 0x79, 0xae, 0xa2,
+ 0x2c, 0xc9, 0x97, 0x23, 0xd1, 0x86, 0x47, 0xed, 0x0f, 0x24, 0x98, 0x11, 0x82, 0x5a, 0x9b, 0xb2,
+ 0x6b, 0x51, 0xc7, 0x2d, 0xba, 0xc9, 0xbd, 0x17, 0x8d, 0xc0, 0x17, 0xd3, 0x3d, 0x0c, 0x9e, 0xb9,
+ 0x06, 0xe6, 0x8a, 0x7c, 0x6d, 0x4a, 0x8f, 0x59, 0x42, 0xb5, 0x68, 0x54, 0x2e, 0xa7, 0x5f, 0x8d,
+ 0x4e, 0xa5, 0xd3, 0xa4, 0xd3, 0x55, 0xbf, 0x27, 0x9b, 0x62, 0x71, 0x26, 0xf8, 0x4a, 0x0c, 0x4e,
+ 0xba, 0xe3, 0x3c, 0xce, 0xf0, 0xde, 0x8c, 0xb4, 0x50, 0x73, 0xc4, 0xd6, 0xd7, 0xd8, 0x3f, 0x48,
+ 0x65, 0xe1, 0x94, 0xe8, 0x3d, 0x3b, 0x6d, 0x95, 0xf8, 0x90, 0x20, 0xe5, 0xcd, 0x75, 0xf9, 0x9a,
+ 0xc9, 0x1b, 0x93, 0x78, 0xe7, 0x55, 0xde, 0xfe, 0x36, 0xf9, 0x8f, 0x24, 0xf1, 0xf1, 0x36, 0xd1,
+ 0x30, 0xbf, 0xd8, 0x13, 0x43, 0xa2, 0x49, 0xc2, 0x3b, 0xbd, 0xd2, 0x7d, 0x03, 0x7d, 0x26, 0x2c,
+ 0xdd, 0xde, 0x36, 0xfb, 0x8f, 0xed, 0x0f, 0x6a, 0xbc, 0xc8, 0x40, 0xd7, 0x7b, 0xa2, 0x3e, 0xba,
+ 0x11, 0x7f, 0xb8, 0x7f, 0x90, 0xba, 0x02, 0xf3, 0xbe, 0x1c, 0xa0, 0x1a, 0xe1, 0xc5, 0x02, 0x2e,
+ 0xe6, 0x8f, 0xca, 0x02, 0x3c, 0xf8, 0xef, 0xc7, 0xac, 0x6f, 0x70, 0x8e, 0x90, 0x01, 0xd1, 0x8d,
+ 0xfc, 0x9f, 0xea, 0x99, 0x01, 0x37, 0xd3, 0x87, 0x93, 0x01, 0xcc, 0x85, 0xbf, 0x10, 0x83, 0xd3,
+ 0xde, 0x8b, 0x9e, 0x36, 0x27, 0x1e, 0x85, 0x22, 0xfc, 0x94, 0xd4, 0x33, 0x1b, 0xd6, 0xd3, 0xc5,
+ 0x43, 0xb1, 0xc1, 0x39, 0x37, 0x60, 0x96, 0x94, 0x3f, 0xe9, 0x2c, 0x71, 0x2d, 0xc0, 0x8e, 0xb3,
+ 0xd3, 0x1b, 0xd6, 0x85, 0xef, 0xd7, 0x22, 0x5e, 0xab, 0x1f, 0x7a, 0x8e, 0xf0, 0xb9, 0x02, 0x5f,
+ 0x9e, 0xa7, 0x57, 0x0b, 0xc8, 0x93, 0x59, 0xa5, 0x63, 0xec, 0xb8, 0xac, 0xf9, 0xcd, 0x7f, 0x26,
+ 0x7d, 0x35, 0xf7, 0x17, 0x25, 0xb4, 0x02, 0x63, 0xf6, 0x45, 0x81, 0x0b, 0xb9, 0x8d, 0xa2, 0x7c,
+ 0x05, 0x2d, 0xee, 0x18, 0x46, 0x5b, 0x7f, 0x25, 0x9b, 0xdd, 0xae, 0x1b, 0x3b, 0x9d, 0xb7, 0x17,
+ 0xab, 0xad, 0xdd, 0x2c, 0x46, 0x91, 0x65, 0x28, 0xb2, 0xed, 0xfb, 0xdb, 0x59, 0x1b, 0xc9, 0x52,
+ 0xfc, 0xca, 0xe2, 0xd5, 0x8c, 0x14, 0x5b, 0xe2, 0x1f, 0x75, 0xcf, 0xfe, 0xa4, 0xde, 0x6a, 0x8a,
+ 0x29, 0xdb, 0x5a, 0xbb, 0xfa, 0x8a, 0xab, 0xcc, 0x2b, 0xae, 0x32, 0x9f, 0x0d, 0xd9, 0x6f, 0x56,
+ 0x69, 0xd7, 0x49, 0x85, 0xb7, 0xfb, 0x49, 0xb8, 0xf5, 0xdc, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff,
+ 0xb8, 0xd6, 0x5d, 0x2e, 0x39, 0xcb, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -18615,343 +12182,343 @@ type ManagementServiceServer interface {
type UnimplementedManagementServiceServer struct {
}
-func (*UnimplementedManagementServiceServer) Healthz(context.Context, *empty.Empty) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) Healthz(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method Healthz not implemented")
}
-func (*UnimplementedManagementServiceServer) Ready(context.Context, *empty.Empty) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) Ready(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method Ready not implemented")
}
-func (*UnimplementedManagementServiceServer) Validate(context.Context, *empty.Empty) (*_struct.Struct, error) {
+func (*UnimplementedManagementServiceServer) Validate(ctx context.Context, req *empty.Empty) (*_struct.Struct, error) {
return nil, status.Errorf(codes.Unimplemented, "method Validate not implemented")
}
-func (*UnimplementedManagementServiceServer) GetIam(context.Context, *empty.Empty) (*Iam, error) {
+func (*UnimplementedManagementServiceServer) GetIam(ctx context.Context, req *empty.Empty) (*Iam, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetIam not implemented")
}
-func (*UnimplementedManagementServiceServer) GetUserByID(context.Context, *UserID) (*UserView, error) {
+func (*UnimplementedManagementServiceServer) GetUserByID(ctx context.Context, req *UserID) (*UserView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetUserByID not implemented")
}
-func (*UnimplementedManagementServiceServer) GetUserByEmailGlobal(context.Context, *UserEmailID) (*UserView, error) {
+func (*UnimplementedManagementServiceServer) GetUserByEmailGlobal(ctx context.Context, req *UserEmailID) (*UserView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetUserByEmailGlobal not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchUsers(context.Context, *UserSearchRequest) (*UserSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchUsers(ctx context.Context, req *UserSearchRequest) (*UserSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchUsers not implemented")
}
-func (*UnimplementedManagementServiceServer) IsUserUnique(context.Context, *UniqueUserRequest) (*UniqueUserResponse, error) {
+func (*UnimplementedManagementServiceServer) IsUserUnique(ctx context.Context, req *UniqueUserRequest) (*UniqueUserResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method IsUserUnique not implemented")
}
-func (*UnimplementedManagementServiceServer) CreateUser(context.Context, *CreateUserRequest) (*User, error) {
+func (*UnimplementedManagementServiceServer) CreateUser(ctx context.Context, req *CreateUserRequest) (*User, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateUser not implemented")
}
-func (*UnimplementedManagementServiceServer) DeactivateUser(context.Context, *UserID) (*User, error) {
+func (*UnimplementedManagementServiceServer) DeactivateUser(ctx context.Context, req *UserID) (*User, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeactivateUser not implemented")
}
-func (*UnimplementedManagementServiceServer) ReactivateUser(context.Context, *UserID) (*User, error) {
+func (*UnimplementedManagementServiceServer) ReactivateUser(ctx context.Context, req *UserID) (*User, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReactivateUser not implemented")
}
-func (*UnimplementedManagementServiceServer) LockUser(context.Context, *UserID) (*User, error) {
+func (*UnimplementedManagementServiceServer) LockUser(ctx context.Context, req *UserID) (*User, error) {
return nil, status.Errorf(codes.Unimplemented, "method LockUser not implemented")
}
-func (*UnimplementedManagementServiceServer) UnlockUser(context.Context, *UserID) (*User, error) {
+func (*UnimplementedManagementServiceServer) UnlockUser(ctx context.Context, req *UserID) (*User, error) {
return nil, status.Errorf(codes.Unimplemented, "method UnlockUser not implemented")
}
-func (*UnimplementedManagementServiceServer) DeleteUser(context.Context, *UserID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) DeleteUser(ctx context.Context, req *UserID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteUser not implemented")
}
-func (*UnimplementedManagementServiceServer) UserChanges(context.Context, *ChangeRequest) (*Changes, error) {
+func (*UnimplementedManagementServiceServer) UserChanges(ctx context.Context, req *ChangeRequest) (*Changes, error) {
return nil, status.Errorf(codes.Unimplemented, "method UserChanges not implemented")
}
-func (*UnimplementedManagementServiceServer) ApplicationChanges(context.Context, *ChangeRequest) (*Changes, error) {
+func (*UnimplementedManagementServiceServer) ApplicationChanges(ctx context.Context, req *ChangeRequest) (*Changes, error) {
return nil, status.Errorf(codes.Unimplemented, "method ApplicationChanges not implemented")
}
-func (*UnimplementedManagementServiceServer) OrgChanges(context.Context, *ChangeRequest) (*Changes, error) {
+func (*UnimplementedManagementServiceServer) OrgChanges(ctx context.Context, req *ChangeRequest) (*Changes, error) {
return nil, status.Errorf(codes.Unimplemented, "method OrgChanges not implemented")
}
-func (*UnimplementedManagementServiceServer) ProjectChanges(context.Context, *ChangeRequest) (*Changes, error) {
+func (*UnimplementedManagementServiceServer) ProjectChanges(ctx context.Context, req *ChangeRequest) (*Changes, error) {
return nil, status.Errorf(codes.Unimplemented, "method ProjectChanges not implemented")
}
-func (*UnimplementedManagementServiceServer) GetUserProfile(context.Context, *UserID) (*UserProfileView, error) {
+func (*UnimplementedManagementServiceServer) GetUserProfile(ctx context.Context, req *UserID) (*UserProfileView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetUserProfile not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateUserProfile(context.Context, *UpdateUserProfileRequest) (*UserProfile, error) {
+func (*UnimplementedManagementServiceServer) UpdateUserProfile(ctx context.Context, req *UpdateUserProfileRequest) (*UserProfile, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateUserProfile not implemented")
}
-func (*UnimplementedManagementServiceServer) GetUserEmail(context.Context, *UserID) (*UserEmailView, error) {
+func (*UnimplementedManagementServiceServer) GetUserEmail(ctx context.Context, req *UserID) (*UserEmailView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetUserEmail not implemented")
}
-func (*UnimplementedManagementServiceServer) ChangeUserEmail(context.Context, *UpdateUserEmailRequest) (*UserEmail, error) {
+func (*UnimplementedManagementServiceServer) ChangeUserEmail(ctx context.Context, req *UpdateUserEmailRequest) (*UserEmail, error) {
return nil, status.Errorf(codes.Unimplemented, "method ChangeUserEmail not implemented")
}
-func (*UnimplementedManagementServiceServer) ResendEmailVerificationMail(context.Context, *UserID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) ResendEmailVerificationMail(ctx context.Context, req *UserID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method ResendEmailVerificationMail not implemented")
}
-func (*UnimplementedManagementServiceServer) GetUserPhone(context.Context, *UserID) (*UserPhoneView, error) {
+func (*UnimplementedManagementServiceServer) GetUserPhone(ctx context.Context, req *UserID) (*UserPhoneView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetUserPhone not implemented")
}
-func (*UnimplementedManagementServiceServer) ChangeUserPhone(context.Context, *UpdateUserPhoneRequest) (*UserPhone, error) {
+func (*UnimplementedManagementServiceServer) ChangeUserPhone(ctx context.Context, req *UpdateUserPhoneRequest) (*UserPhone, error) {
return nil, status.Errorf(codes.Unimplemented, "method ChangeUserPhone not implemented")
}
-func (*UnimplementedManagementServiceServer) ResendPhoneVerificationCode(context.Context, *UserID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) ResendPhoneVerificationCode(ctx context.Context, req *UserID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method ResendPhoneVerificationCode not implemented")
}
-func (*UnimplementedManagementServiceServer) GetUserAddress(context.Context, *UserID) (*UserAddressView, error) {
+func (*UnimplementedManagementServiceServer) GetUserAddress(ctx context.Context, req *UserID) (*UserAddressView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetUserAddress not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateUserAddress(context.Context, *UpdateUserAddressRequest) (*UserAddress, error) {
+func (*UnimplementedManagementServiceServer) UpdateUserAddress(ctx context.Context, req *UpdateUserAddressRequest) (*UserAddress, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateUserAddress not implemented")
}
-func (*UnimplementedManagementServiceServer) GetUserMfas(context.Context, *UserID) (*MultiFactors, error) {
+func (*UnimplementedManagementServiceServer) GetUserMfas(ctx context.Context, req *UserID) (*MultiFactors, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetUserMfas not implemented")
}
-func (*UnimplementedManagementServiceServer) SendSetPasswordNotification(context.Context, *SetPasswordNotificationRequest) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) SendSetPasswordNotification(ctx context.Context, req *SetPasswordNotificationRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method SendSetPasswordNotification not implemented")
}
-func (*UnimplementedManagementServiceServer) SetInitialPassword(context.Context, *PasswordRequest) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) SetInitialPassword(ctx context.Context, req *PasswordRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method SetInitialPassword not implemented")
}
-func (*UnimplementedManagementServiceServer) GetPasswordComplexityPolicy(context.Context, *empty.Empty) (*PasswordComplexityPolicy, error) {
+func (*UnimplementedManagementServiceServer) GetPasswordComplexityPolicy(ctx context.Context, req *empty.Empty) (*PasswordComplexityPolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetPasswordComplexityPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) CreatePasswordComplexityPolicy(context.Context, *PasswordComplexityPolicyCreate) (*PasswordComplexityPolicy, error) {
+func (*UnimplementedManagementServiceServer) CreatePasswordComplexityPolicy(ctx context.Context, req *PasswordComplexityPolicyCreate) (*PasswordComplexityPolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreatePasswordComplexityPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdatePasswordComplexityPolicy(context.Context, *PasswordComplexityPolicyUpdate) (*PasswordComplexityPolicy, error) {
+func (*UnimplementedManagementServiceServer) UpdatePasswordComplexityPolicy(ctx context.Context, req *PasswordComplexityPolicyUpdate) (*PasswordComplexityPolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdatePasswordComplexityPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) DeletePasswordComplexityPolicy(context.Context, *PasswordComplexityPolicyID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) DeletePasswordComplexityPolicy(ctx context.Context, req *PasswordComplexityPolicyID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeletePasswordComplexityPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) GetPasswordAgePolicy(context.Context, *empty.Empty) (*PasswordAgePolicy, error) {
+func (*UnimplementedManagementServiceServer) GetPasswordAgePolicy(ctx context.Context, req *empty.Empty) (*PasswordAgePolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetPasswordAgePolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) CreatePasswordAgePolicy(context.Context, *PasswordAgePolicyCreate) (*PasswordAgePolicy, error) {
+func (*UnimplementedManagementServiceServer) CreatePasswordAgePolicy(ctx context.Context, req *PasswordAgePolicyCreate) (*PasswordAgePolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreatePasswordAgePolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdatePasswordAgePolicy(context.Context, *PasswordAgePolicyUpdate) (*PasswordAgePolicy, error) {
+func (*UnimplementedManagementServiceServer) UpdatePasswordAgePolicy(ctx context.Context, req *PasswordAgePolicyUpdate) (*PasswordAgePolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdatePasswordAgePolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) DeletePasswordAgePolicy(context.Context, *PasswordAgePolicyID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) DeletePasswordAgePolicy(ctx context.Context, req *PasswordAgePolicyID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeletePasswordAgePolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) GetPasswordLockoutPolicy(context.Context, *empty.Empty) (*PasswordLockoutPolicy, error) {
+func (*UnimplementedManagementServiceServer) GetPasswordLockoutPolicy(ctx context.Context, req *empty.Empty) (*PasswordLockoutPolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetPasswordLockoutPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) CreatePasswordLockoutPolicy(context.Context, *PasswordLockoutPolicyCreate) (*PasswordLockoutPolicy, error) {
+func (*UnimplementedManagementServiceServer) CreatePasswordLockoutPolicy(ctx context.Context, req *PasswordLockoutPolicyCreate) (*PasswordLockoutPolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreatePasswordLockoutPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdatePasswordLockoutPolicy(context.Context, *PasswordLockoutPolicyUpdate) (*PasswordLockoutPolicy, error) {
+func (*UnimplementedManagementServiceServer) UpdatePasswordLockoutPolicy(ctx context.Context, req *PasswordLockoutPolicyUpdate) (*PasswordLockoutPolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdatePasswordLockoutPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) DeletePasswordLockoutPolicy(context.Context, *PasswordLockoutPolicyID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) DeletePasswordLockoutPolicy(ctx context.Context, req *PasswordLockoutPolicyID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeletePasswordLockoutPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) GetOrgByID(context.Context, *OrgID) (*Org, error) {
+func (*UnimplementedManagementServiceServer) GetOrgByID(ctx context.Context, req *OrgID) (*Org, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetOrgByID not implemented")
}
-func (*UnimplementedManagementServiceServer) GetOrgByDomainGlobal(context.Context, *OrgDomain) (*Org, error) {
+func (*UnimplementedManagementServiceServer) GetOrgByDomainGlobal(ctx context.Context, req *OrgDomain) (*Org, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetOrgByDomainGlobal not implemented")
}
-func (*UnimplementedManagementServiceServer) DeactivateOrg(context.Context, *OrgID) (*Org, error) {
+func (*UnimplementedManagementServiceServer) DeactivateOrg(ctx context.Context, req *OrgID) (*Org, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeactivateOrg not implemented")
}
-func (*UnimplementedManagementServiceServer) ReactivateOrg(context.Context, *OrgID) (*Org, error) {
+func (*UnimplementedManagementServiceServer) ReactivateOrg(ctx context.Context, req *OrgID) (*Org, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReactivateOrg not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchMyOrgDomains(context.Context, *OrgDomainSearchRequest) (*OrgDomainSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchMyOrgDomains(ctx context.Context, req *OrgDomainSearchRequest) (*OrgDomainSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchMyOrgDomains not implemented")
}
-func (*UnimplementedManagementServiceServer) AddMyOrgDomain(context.Context, *AddOrgDomainRequest) (*OrgDomain, error) {
+func (*UnimplementedManagementServiceServer) AddMyOrgDomain(ctx context.Context, req *AddOrgDomainRequest) (*OrgDomain, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddMyOrgDomain not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveMyOrgDomain(context.Context, *RemoveOrgDomainRequest) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveMyOrgDomain(ctx context.Context, req *RemoveOrgDomainRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveMyOrgDomain not implemented")
}
-func (*UnimplementedManagementServiceServer) GetOrgMemberRoles(context.Context, *empty.Empty) (*OrgMemberRoles, error) {
+func (*UnimplementedManagementServiceServer) GetOrgMemberRoles(ctx context.Context, req *empty.Empty) (*OrgMemberRoles, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetOrgMemberRoles not implemented")
}
-func (*UnimplementedManagementServiceServer) AddMyOrgMember(context.Context, *AddOrgMemberRequest) (*OrgMember, error) {
+func (*UnimplementedManagementServiceServer) AddMyOrgMember(ctx context.Context, req *AddOrgMemberRequest) (*OrgMember, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddMyOrgMember not implemented")
}
-func (*UnimplementedManagementServiceServer) ChangeMyOrgMember(context.Context, *ChangeOrgMemberRequest) (*OrgMember, error) {
+func (*UnimplementedManagementServiceServer) ChangeMyOrgMember(ctx context.Context, req *ChangeOrgMemberRequest) (*OrgMember, error) {
return nil, status.Errorf(codes.Unimplemented, "method ChangeMyOrgMember not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveMyOrgMember(context.Context, *RemoveOrgMemberRequest) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveMyOrgMember(ctx context.Context, req *RemoveOrgMemberRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveMyOrgMember not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchMyOrgMembers(context.Context, *OrgMemberSearchRequest) (*OrgMemberSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchMyOrgMembers(ctx context.Context, req *OrgMemberSearchRequest) (*OrgMemberSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchMyOrgMembers not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchProjects(context.Context, *ProjectSearchRequest) (*ProjectSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchProjects(ctx context.Context, req *ProjectSearchRequest) (*ProjectSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchProjects not implemented")
}
-func (*UnimplementedManagementServiceServer) ProjectByID(context.Context, *ProjectID) (*Project, error) {
+func (*UnimplementedManagementServiceServer) ProjectByID(ctx context.Context, req *ProjectID) (*Project, error) {
return nil, status.Errorf(codes.Unimplemented, "method ProjectByID not implemented")
}
-func (*UnimplementedManagementServiceServer) CreateProject(context.Context, *ProjectCreateRequest) (*Project, error) {
+func (*UnimplementedManagementServiceServer) CreateProject(ctx context.Context, req *ProjectCreateRequest) (*Project, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateProject not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateProject(context.Context, *ProjectUpdateRequest) (*Project, error) {
+func (*UnimplementedManagementServiceServer) UpdateProject(ctx context.Context, req *ProjectUpdateRequest) (*Project, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateProject not implemented")
}
-func (*UnimplementedManagementServiceServer) DeactivateProject(context.Context, *ProjectID) (*Project, error) {
+func (*UnimplementedManagementServiceServer) DeactivateProject(ctx context.Context, req *ProjectID) (*Project, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeactivateProject not implemented")
}
-func (*UnimplementedManagementServiceServer) ReactivateProject(context.Context, *ProjectID) (*Project, error) {
+func (*UnimplementedManagementServiceServer) ReactivateProject(ctx context.Context, req *ProjectID) (*Project, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReactivateProject not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchGrantedProjects(context.Context, *GrantedProjectSearchRequest) (*ProjectGrantSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchGrantedProjects(ctx context.Context, req *GrantedProjectSearchRequest) (*ProjectGrantSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchGrantedProjects not implemented")
}
-func (*UnimplementedManagementServiceServer) GetGrantedProjectByID(context.Context, *ProjectGrantID) (*ProjectGrantView, error) {
+func (*UnimplementedManagementServiceServer) GetGrantedProjectByID(ctx context.Context, req *ProjectGrantID) (*ProjectGrantView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetGrantedProjectByID not implemented")
}
-func (*UnimplementedManagementServiceServer) GetProjectMemberRoles(context.Context, *empty.Empty) (*ProjectMemberRoles, error) {
+func (*UnimplementedManagementServiceServer) GetProjectMemberRoles(ctx context.Context, req *empty.Empty) (*ProjectMemberRoles, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetProjectMemberRoles not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchProjectMembers(context.Context, *ProjectMemberSearchRequest) (*ProjectMemberSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchProjectMembers(ctx context.Context, req *ProjectMemberSearchRequest) (*ProjectMemberSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchProjectMembers not implemented")
}
-func (*UnimplementedManagementServiceServer) AddProjectMember(context.Context, *ProjectMemberAdd) (*ProjectMember, error) {
+func (*UnimplementedManagementServiceServer) AddProjectMember(ctx context.Context, req *ProjectMemberAdd) (*ProjectMember, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddProjectMember not implemented")
}
-func (*UnimplementedManagementServiceServer) ChangeProjectMember(context.Context, *ProjectMemberChange) (*ProjectMember, error) {
+func (*UnimplementedManagementServiceServer) ChangeProjectMember(ctx context.Context, req *ProjectMemberChange) (*ProjectMember, error) {
return nil, status.Errorf(codes.Unimplemented, "method ChangeProjectMember not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveProjectMember(context.Context, *ProjectMemberRemove) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveProjectMember(ctx context.Context, req *ProjectMemberRemove) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveProjectMember not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchProjectRoles(context.Context, *ProjectRoleSearchRequest) (*ProjectRoleSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchProjectRoles(ctx context.Context, req *ProjectRoleSearchRequest) (*ProjectRoleSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchProjectRoles not implemented")
}
-func (*UnimplementedManagementServiceServer) AddProjectRole(context.Context, *ProjectRoleAdd) (*ProjectRole, error) {
+func (*UnimplementedManagementServiceServer) AddProjectRole(ctx context.Context, req *ProjectRoleAdd) (*ProjectRole, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddProjectRole not implemented")
}
-func (*UnimplementedManagementServiceServer) ChangeProjectRole(context.Context, *ProjectRoleChange) (*ProjectRole, error) {
+func (*UnimplementedManagementServiceServer) ChangeProjectRole(ctx context.Context, req *ProjectRoleChange) (*ProjectRole, error) {
return nil, status.Errorf(codes.Unimplemented, "method ChangeProjectRole not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveProjectRole(context.Context, *ProjectRoleRemove) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveProjectRole(ctx context.Context, req *ProjectRoleRemove) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveProjectRole not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchApplications(context.Context, *ApplicationSearchRequest) (*ApplicationSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchApplications(ctx context.Context, req *ApplicationSearchRequest) (*ApplicationSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchApplications not implemented")
}
-func (*UnimplementedManagementServiceServer) ApplicationByID(context.Context, *ApplicationID) (*Application, error) {
+func (*UnimplementedManagementServiceServer) ApplicationByID(ctx context.Context, req *ApplicationID) (*Application, error) {
return nil, status.Errorf(codes.Unimplemented, "method ApplicationByID not implemented")
}
-func (*UnimplementedManagementServiceServer) CreateOIDCApplication(context.Context, *OIDCApplicationCreate) (*Application, error) {
+func (*UnimplementedManagementServiceServer) CreateOIDCApplication(ctx context.Context, req *OIDCApplicationCreate) (*Application, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateOIDCApplication not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateApplication(context.Context, *ApplicationUpdate) (*Application, error) {
+func (*UnimplementedManagementServiceServer) UpdateApplication(ctx context.Context, req *ApplicationUpdate) (*Application, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateApplication not implemented")
}
-func (*UnimplementedManagementServiceServer) DeactivateApplication(context.Context, *ApplicationID) (*Application, error) {
+func (*UnimplementedManagementServiceServer) DeactivateApplication(ctx context.Context, req *ApplicationID) (*Application, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeactivateApplication not implemented")
}
-func (*UnimplementedManagementServiceServer) ReactivateApplication(context.Context, *ApplicationID) (*Application, error) {
+func (*UnimplementedManagementServiceServer) ReactivateApplication(ctx context.Context, req *ApplicationID) (*Application, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReactivateApplication not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveApplication(context.Context, *ApplicationID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveApplication(ctx context.Context, req *ApplicationID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveApplication not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateApplicationOIDCConfig(context.Context, *OIDCConfigUpdate) (*OIDCConfig, error) {
+func (*UnimplementedManagementServiceServer) UpdateApplicationOIDCConfig(ctx context.Context, req *OIDCConfigUpdate) (*OIDCConfig, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateApplicationOIDCConfig not implemented")
}
-func (*UnimplementedManagementServiceServer) RegenerateOIDCClientSecret(context.Context, *ApplicationID) (*ClientSecret, error) {
+func (*UnimplementedManagementServiceServer) RegenerateOIDCClientSecret(ctx context.Context, req *ApplicationID) (*ClientSecret, error) {
return nil, status.Errorf(codes.Unimplemented, "method RegenerateOIDCClientSecret not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchProjectGrants(context.Context, *ProjectGrantSearchRequest) (*ProjectGrantSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchProjectGrants(ctx context.Context, req *ProjectGrantSearchRequest) (*ProjectGrantSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchProjectGrants not implemented")
}
-func (*UnimplementedManagementServiceServer) ProjectGrantByID(context.Context, *ProjectGrantID) (*ProjectGrant, error) {
+func (*UnimplementedManagementServiceServer) ProjectGrantByID(ctx context.Context, req *ProjectGrantID) (*ProjectGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method ProjectGrantByID not implemented")
}
-func (*UnimplementedManagementServiceServer) CreateProjectGrant(context.Context, *ProjectGrantCreate) (*ProjectGrant, error) {
+func (*UnimplementedManagementServiceServer) CreateProjectGrant(ctx context.Context, req *ProjectGrantCreate) (*ProjectGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateProjectGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateProjectGrant(context.Context, *ProjectGrantUpdate) (*ProjectGrant, error) {
+func (*UnimplementedManagementServiceServer) UpdateProjectGrant(ctx context.Context, req *ProjectGrantUpdate) (*ProjectGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateProjectGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) DeactivateProjectGrant(context.Context, *ProjectGrantID) (*ProjectGrant, error) {
+func (*UnimplementedManagementServiceServer) DeactivateProjectGrant(ctx context.Context, req *ProjectGrantID) (*ProjectGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeactivateProjectGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) ReactivateProjectGrant(context.Context, *ProjectGrantID) (*ProjectGrant, error) {
+func (*UnimplementedManagementServiceServer) ReactivateProjectGrant(ctx context.Context, req *ProjectGrantID) (*ProjectGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReactivateProjectGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveProjectGrant(context.Context, *ProjectGrantID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveProjectGrant(ctx context.Context, req *ProjectGrantID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveProjectGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) GetProjectGrantMemberRoles(context.Context, *empty.Empty) (*ProjectGrantMemberRoles, error) {
+func (*UnimplementedManagementServiceServer) GetProjectGrantMemberRoles(ctx context.Context, req *empty.Empty) (*ProjectGrantMemberRoles, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetProjectGrantMemberRoles not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchProjectGrantMembers(context.Context, *ProjectGrantMemberSearchRequest) (*ProjectGrantMemberSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchProjectGrantMembers(ctx context.Context, req *ProjectGrantMemberSearchRequest) (*ProjectGrantMemberSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchProjectGrantMembers not implemented")
}
-func (*UnimplementedManagementServiceServer) AddProjectGrantMember(context.Context, *ProjectGrantMemberAdd) (*ProjectGrantMember, error) {
+func (*UnimplementedManagementServiceServer) AddProjectGrantMember(ctx context.Context, req *ProjectGrantMemberAdd) (*ProjectGrantMember, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddProjectGrantMember not implemented")
}
-func (*UnimplementedManagementServiceServer) ChangeProjectGrantMember(context.Context, *ProjectGrantMemberChange) (*ProjectGrantMember, error) {
+func (*UnimplementedManagementServiceServer) ChangeProjectGrantMember(ctx context.Context, req *ProjectGrantMemberChange) (*ProjectGrantMember, error) {
return nil, status.Errorf(codes.Unimplemented, "method ChangeProjectGrantMember not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveProjectGrantMember(context.Context, *ProjectGrantMemberRemove) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveProjectGrantMember(ctx context.Context, req *ProjectGrantMemberRemove) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveProjectGrantMember not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchUserGrants(context.Context, *UserGrantSearchRequest) (*UserGrantSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchUserGrants(ctx context.Context, req *UserGrantSearchRequest) (*UserGrantSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchUserGrants not implemented")
}
-func (*UnimplementedManagementServiceServer) UserGrantByID(context.Context, *UserGrantID) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) UserGrantByID(ctx context.Context, req *UserGrantID) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method UserGrantByID not implemented")
}
-func (*UnimplementedManagementServiceServer) CreateUserGrant(context.Context, *UserGrantCreate) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) CreateUserGrant(ctx context.Context, req *UserGrantCreate) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateUserGrant(context.Context, *UserGrantUpdate) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) UpdateUserGrant(ctx context.Context, req *UserGrantUpdate) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) DeactivateUserGrant(context.Context, *UserGrantID) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) DeactivateUserGrant(ctx context.Context, req *UserGrantID) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeactivateUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) ReactivateUserGrant(context.Context, *UserGrantID) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) ReactivateUserGrant(ctx context.Context, req *UserGrantID) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReactivateUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveUserGrant(context.Context, *UserGrantID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveUserGrant(ctx context.Context, req *UserGrantID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchProjectUserGrants(context.Context, *ProjectUserGrantSearchRequest) (*UserGrantSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchProjectUserGrants(ctx context.Context, req *ProjectUserGrantSearchRequest) (*UserGrantSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchProjectUserGrants not implemented")
}
-func (*UnimplementedManagementServiceServer) ProjectUserGrantByID(context.Context, *ProjectUserGrantID) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) ProjectUserGrantByID(ctx context.Context, req *ProjectUserGrantID) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method ProjectUserGrantByID not implemented")
}
-func (*UnimplementedManagementServiceServer) CreateProjectUserGrant(context.Context, *UserGrantCreate) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) CreateProjectUserGrant(ctx context.Context, req *UserGrantCreate) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateProjectUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateProjectUserGrant(context.Context, *ProjectUserGrantUpdate) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) UpdateProjectUserGrant(ctx context.Context, req *ProjectUserGrantUpdate) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateProjectUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) DeactivateProjectUserGrant(context.Context, *ProjectUserGrantID) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) DeactivateProjectUserGrant(ctx context.Context, req *ProjectUserGrantID) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeactivateProjectUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) ReactivateProjectUserGrant(context.Context, *ProjectUserGrantID) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) ReactivateProjectUserGrant(ctx context.Context, req *ProjectUserGrantID) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReactivateProjectUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchProjectGrantUserGrants(context.Context, *ProjectGrantUserGrantSearchRequest) (*UserGrantSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchProjectGrantUserGrants(ctx context.Context, req *ProjectGrantUserGrantSearchRequest) (*UserGrantSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchProjectGrantUserGrants not implemented")
}
-func (*UnimplementedManagementServiceServer) ProjectGrantUserGrantByID(context.Context, *ProjectGrantUserGrantID) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) ProjectGrantUserGrantByID(ctx context.Context, req *ProjectGrantUserGrantID) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method ProjectGrantUserGrantByID not implemented")
}
-func (*UnimplementedManagementServiceServer) CreateProjectGrantUserGrant(context.Context, *ProjectGrantUserGrantCreate) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) CreateProjectGrantUserGrant(ctx context.Context, req *ProjectGrantUserGrantCreate) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateProjectGrantUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateProjectGrantUserGrant(context.Context, *ProjectGrantUserGrantUpdate) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) UpdateProjectGrantUserGrant(ctx context.Context, req *ProjectGrantUserGrantUpdate) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateProjectGrantUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) DeactivateProjectGrantUserGrant(context.Context, *ProjectGrantUserGrantID) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) DeactivateProjectGrantUserGrant(ctx context.Context, req *ProjectGrantUserGrantID) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeactivateProjectGrantUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) ReactivateProjectGrantUserGrant(context.Context, *ProjectGrantUserGrantID) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) ReactivateProjectGrantUserGrant(ctx context.Context, req *ProjectGrantUserGrantID) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReactivateProjectGrantUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchAuthGrant(context.Context, *AuthGrantSearchRequest) (*AuthGrantSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchAuthGrant(ctx context.Context, req *AuthGrantSearchRequest) (*AuthGrantSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchAuthGrant not implemented")
}
diff --git a/pkg/management/api/grpc/management.pb.gw.go b/pkg/management/api/grpc/management.pb.gw.go
index 9df3075633..6df9025382 100644
--- a/pkg/management/api/grpc/management.pb.gw.go
+++ b/pkg/management/api/grpc/management.pb.gw.go
@@ -38,6 +38,15 @@ func request_ManagementService_Healthz_0(ctx context.Context, marshaler runtime.
}
+func local_request_ManagementService_Healthz_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.Healthz(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_Ready_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -47,6 +56,15 @@ func request_ManagementService_Ready_0(ctx context.Context, marshaler runtime.Ma
}
+func local_request_ManagementService_Ready_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.Ready(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_Validate_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -56,6 +74,15 @@ func request_ManagementService_Validate_0(ctx context.Context, marshaler runtime
}
+func local_request_ManagementService_Validate_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.Validate(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_GetIam_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -65,6 +92,15 @@ func request_ManagementService_GetIam_0(ctx context.Context, marshaler runtime.M
}
+func local_request_ManagementService_GetIam_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.GetIam(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_GetUserByID_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserID
var metadata runtime.ServerMetadata
@@ -92,6 +128,33 @@ func request_ManagementService_GetUserByID_0(ctx context.Context, marshaler runt
}
+func local_request_ManagementService_GetUserByID_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.GetUserByID(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_GetUserByEmailGlobal_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserEmailID
var metadata runtime.ServerMetadata
@@ -119,6 +182,33 @@ func request_ManagementService_GetUserByEmailGlobal_0(ctx context.Context, marsh
}
+func local_request_ManagementService_GetUserByEmailGlobal_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserEmailID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["email"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "email")
+ }
+
+ protoReq.Email, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "email", err)
+ }
+
+ msg, err := server.GetUserByEmailGlobal(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SearchUsers_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserSearchRequest
var metadata runtime.ServerMetadata
@@ -136,6 +226,23 @@ func request_ManagementService_SearchUsers_0(ctx context.Context, marshaler runt
}
+func local_request_ManagementService_SearchUsers_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.SearchUsers(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
var (
filter_ManagementService_IsUserUnique_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)}
)
@@ -144,7 +251,10 @@ func request_ManagementService_IsUserUnique_0(ctx context.Context, marshaler run
var protoReq UniqueUserRequest
var metadata runtime.ServerMetadata
- if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_IsUserUnique_0); err != nil {
+ if err := req.ParseForm(); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+ if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_ManagementService_IsUserUnique_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
@@ -153,6 +263,19 @@ func request_ManagementService_IsUserUnique_0(ctx context.Context, marshaler run
}
+func local_request_ManagementService_IsUserUnique_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UniqueUserRequest
+ var metadata runtime.ServerMetadata
+
+ if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_IsUserUnique_0); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.IsUserUnique(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_CreateUser_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq CreateUserRequest
var metadata runtime.ServerMetadata
@@ -170,6 +293,23 @@ func request_ManagementService_CreateUser_0(ctx context.Context, marshaler runti
}
+func local_request_ManagementService_CreateUser_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq CreateUserRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.CreateUser(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_DeactivateUser_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserID
var metadata runtime.ServerMetadata
@@ -205,6 +345,41 @@ func request_ManagementService_DeactivateUser_0(ctx context.Context, marshaler r
}
+func local_request_ManagementService_DeactivateUser_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.DeactivateUser(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ReactivateUser_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserID
var metadata runtime.ServerMetadata
@@ -240,6 +415,41 @@ func request_ManagementService_ReactivateUser_0(ctx context.Context, marshaler r
}
+func local_request_ManagementService_ReactivateUser_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ReactivateUser(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_LockUser_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserID
var metadata runtime.ServerMetadata
@@ -275,6 +485,41 @@ func request_ManagementService_LockUser_0(ctx context.Context, marshaler runtime
}
+func local_request_ManagementService_LockUser_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.LockUser(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_UnlockUser_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserID
var metadata runtime.ServerMetadata
@@ -310,6 +555,41 @@ func request_ManagementService_UnlockUser_0(ctx context.Context, marshaler runti
}
+func local_request_ManagementService_UnlockUser_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.UnlockUser(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_DeleteUser_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserID
var metadata runtime.ServerMetadata
@@ -337,6 +617,33 @@ func request_ManagementService_DeleteUser_0(ctx context.Context, marshaler runti
}
+func local_request_ManagementService_DeleteUser_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.DeleteUser(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
var (
filter_ManagementService_UserChanges_0 = &utilities.DoubleArray{Encoding: map[string]int{"id": 0}, Base: []int{1, 1, 0}, Check: []int{0, 1, 2}}
)
@@ -363,7 +670,10 @@ func request_ManagementService_UserChanges_0(ctx context.Context, marshaler runt
return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
}
- if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_UserChanges_0); err != nil {
+ if err := req.ParseForm(); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+ if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_ManagementService_UserChanges_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
@@ -372,6 +682,37 @@ func request_ManagementService_UserChanges_0(ctx context.Context, marshaler runt
}
+func local_request_ManagementService_UserChanges_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ChangeRequest
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_UserChanges_0); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.UserChanges(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
var (
filter_ManagementService_ApplicationChanges_0 = &utilities.DoubleArray{Encoding: map[string]int{"id": 0, "sec_id": 1}, Base: []int{1, 1, 2, 0, 0}, Check: []int{0, 1, 1, 2, 3}}
)
@@ -409,7 +750,10 @@ func request_ManagementService_ApplicationChanges_0(ctx context.Context, marshal
return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "sec_id", err)
}
- if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_ApplicationChanges_0); err != nil {
+ if err := req.ParseForm(); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+ if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_ManagementService_ApplicationChanges_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
@@ -418,6 +762,48 @@ func request_ManagementService_ApplicationChanges_0(ctx context.Context, marshal
}
+func local_request_ManagementService_ApplicationChanges_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ChangeRequest
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ val, ok = pathParams["sec_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "sec_id")
+ }
+
+ protoReq.SecId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "sec_id", err)
+ }
+
+ if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_ApplicationChanges_0); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.ApplicationChanges(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
var (
filter_ManagementService_OrgChanges_0 = &utilities.DoubleArray{Encoding: map[string]int{"id": 0}, Base: []int{1, 1, 0}, Check: []int{0, 1, 2}}
)
@@ -444,7 +830,10 @@ func request_ManagementService_OrgChanges_0(ctx context.Context, marshaler runti
return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
}
- if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_OrgChanges_0); err != nil {
+ if err := req.ParseForm(); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+ if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_ManagementService_OrgChanges_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
@@ -453,6 +842,37 @@ func request_ManagementService_OrgChanges_0(ctx context.Context, marshaler runti
}
+func local_request_ManagementService_OrgChanges_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ChangeRequest
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_OrgChanges_0); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.OrgChanges(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
var (
filter_ManagementService_ProjectChanges_0 = &utilities.DoubleArray{Encoding: map[string]int{"id": 0}, Base: []int{1, 1, 0}, Check: []int{0, 1, 2}}
)
@@ -479,7 +899,10 @@ func request_ManagementService_ProjectChanges_0(ctx context.Context, marshaler r
return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
}
- if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_ProjectChanges_0); err != nil {
+ if err := req.ParseForm(); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+ if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_ManagementService_ProjectChanges_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
@@ -488,6 +911,37 @@ func request_ManagementService_ProjectChanges_0(ctx context.Context, marshaler r
}
+func local_request_ManagementService_ProjectChanges_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ChangeRequest
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_ProjectChanges_0); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.ProjectChanges(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_GetUserProfile_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserID
var metadata runtime.ServerMetadata
@@ -515,6 +969,33 @@ func request_ManagementService_GetUserProfile_0(ctx context.Context, marshaler r
}
+func local_request_ManagementService_GetUserProfile_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.GetUserProfile(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_UpdateUserProfile_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UpdateUserProfileRequest
var metadata runtime.ServerMetadata
@@ -550,6 +1031,41 @@ func request_ManagementService_UpdateUserProfile_0(ctx context.Context, marshale
}
+func local_request_ManagementService_UpdateUserProfile_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UpdateUserProfileRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.UpdateUserProfile(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_GetUserEmail_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserID
var metadata runtime.ServerMetadata
@@ -577,6 +1093,33 @@ func request_ManagementService_GetUserEmail_0(ctx context.Context, marshaler run
}
+func local_request_ManagementService_GetUserEmail_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.GetUserEmail(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ChangeUserEmail_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UpdateUserEmailRequest
var metadata runtime.ServerMetadata
@@ -612,6 +1155,41 @@ func request_ManagementService_ChangeUserEmail_0(ctx context.Context, marshaler
}
+func local_request_ManagementService_ChangeUserEmail_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UpdateUserEmailRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ChangeUserEmail(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ResendEmailVerificationMail_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserID
var metadata runtime.ServerMetadata
@@ -647,6 +1225,41 @@ func request_ManagementService_ResendEmailVerificationMail_0(ctx context.Context
}
+func local_request_ManagementService_ResendEmailVerificationMail_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ResendEmailVerificationMail(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_GetUserPhone_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserID
var metadata runtime.ServerMetadata
@@ -674,6 +1287,33 @@ func request_ManagementService_GetUserPhone_0(ctx context.Context, marshaler run
}
+func local_request_ManagementService_GetUserPhone_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.GetUserPhone(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ChangeUserPhone_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UpdateUserPhoneRequest
var metadata runtime.ServerMetadata
@@ -709,6 +1349,41 @@ func request_ManagementService_ChangeUserPhone_0(ctx context.Context, marshaler
}
+func local_request_ManagementService_ChangeUserPhone_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UpdateUserPhoneRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ChangeUserPhone(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ResendPhoneVerificationCode_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserID
var metadata runtime.ServerMetadata
@@ -744,6 +1419,41 @@ func request_ManagementService_ResendPhoneVerificationCode_0(ctx context.Context
}
+func local_request_ManagementService_ResendPhoneVerificationCode_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ResendPhoneVerificationCode(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_GetUserAddress_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserID
var metadata runtime.ServerMetadata
@@ -771,6 +1481,33 @@ func request_ManagementService_GetUserAddress_0(ctx context.Context, marshaler r
}
+func local_request_ManagementService_GetUserAddress_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.GetUserAddress(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_UpdateUserAddress_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UpdateUserAddressRequest
var metadata runtime.ServerMetadata
@@ -806,6 +1543,41 @@ func request_ManagementService_UpdateUserAddress_0(ctx context.Context, marshale
}
+func local_request_ManagementService_UpdateUserAddress_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UpdateUserAddressRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.UpdateUserAddress(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_GetUserMfas_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserID
var metadata runtime.ServerMetadata
@@ -833,6 +1605,33 @@ func request_ManagementService_GetUserMfas_0(ctx context.Context, marshaler runt
}
+func local_request_ManagementService_GetUserMfas_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.GetUserMfas(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SendSetPasswordNotification_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq SetPasswordNotificationRequest
var metadata runtime.ServerMetadata
@@ -868,6 +1667,41 @@ func request_ManagementService_SendSetPasswordNotification_0(ctx context.Context
}
+func local_request_ManagementService_SendSetPasswordNotification_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq SetPasswordNotificationRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.SendSetPasswordNotification(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SetInitialPassword_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq PasswordRequest
var metadata runtime.ServerMetadata
@@ -903,6 +1737,41 @@ func request_ManagementService_SetInitialPassword_0(ctx context.Context, marshal
}
+func local_request_ManagementService_SetInitialPassword_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq PasswordRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.SetInitialPassword(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_GetPasswordComplexityPolicy_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -912,6 +1781,15 @@ func request_ManagementService_GetPasswordComplexityPolicy_0(ctx context.Context
}
+func local_request_ManagementService_GetPasswordComplexityPolicy_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.GetPasswordComplexityPolicy(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_CreatePasswordComplexityPolicy_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq PasswordComplexityPolicyCreate
var metadata runtime.ServerMetadata
@@ -929,6 +1807,23 @@ func request_ManagementService_CreatePasswordComplexityPolicy_0(ctx context.Cont
}
+func local_request_ManagementService_CreatePasswordComplexityPolicy_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq PasswordComplexityPolicyCreate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.CreatePasswordComplexityPolicy(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_UpdatePasswordComplexityPolicy_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq PasswordComplexityPolicyUpdate
var metadata runtime.ServerMetadata
@@ -946,6 +1841,23 @@ func request_ManagementService_UpdatePasswordComplexityPolicy_0(ctx context.Cont
}
+func local_request_ManagementService_UpdatePasswordComplexityPolicy_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq PasswordComplexityPolicyUpdate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.UpdatePasswordComplexityPolicy(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
var (
filter_ManagementService_DeletePasswordComplexityPolicy_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)}
)
@@ -954,7 +1866,10 @@ func request_ManagementService_DeletePasswordComplexityPolicy_0(ctx context.Cont
var protoReq PasswordComplexityPolicyID
var metadata runtime.ServerMetadata
- if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_DeletePasswordComplexityPolicy_0); err != nil {
+ if err := req.ParseForm(); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+ if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_ManagementService_DeletePasswordComplexityPolicy_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
@@ -963,6 +1878,19 @@ func request_ManagementService_DeletePasswordComplexityPolicy_0(ctx context.Cont
}
+func local_request_ManagementService_DeletePasswordComplexityPolicy_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq PasswordComplexityPolicyID
+ var metadata runtime.ServerMetadata
+
+ if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_DeletePasswordComplexityPolicy_0); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.DeletePasswordComplexityPolicy(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_GetPasswordAgePolicy_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -972,6 +1900,15 @@ func request_ManagementService_GetPasswordAgePolicy_0(ctx context.Context, marsh
}
+func local_request_ManagementService_GetPasswordAgePolicy_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.GetPasswordAgePolicy(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_CreatePasswordAgePolicy_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq PasswordAgePolicyCreate
var metadata runtime.ServerMetadata
@@ -989,6 +1926,23 @@ func request_ManagementService_CreatePasswordAgePolicy_0(ctx context.Context, ma
}
+func local_request_ManagementService_CreatePasswordAgePolicy_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq PasswordAgePolicyCreate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.CreatePasswordAgePolicy(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_UpdatePasswordAgePolicy_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq PasswordAgePolicyUpdate
var metadata runtime.ServerMetadata
@@ -1006,6 +1960,23 @@ func request_ManagementService_UpdatePasswordAgePolicy_0(ctx context.Context, ma
}
+func local_request_ManagementService_UpdatePasswordAgePolicy_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq PasswordAgePolicyUpdate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.UpdatePasswordAgePolicy(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
var (
filter_ManagementService_DeletePasswordAgePolicy_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)}
)
@@ -1014,7 +1985,10 @@ func request_ManagementService_DeletePasswordAgePolicy_0(ctx context.Context, ma
var protoReq PasswordAgePolicyID
var metadata runtime.ServerMetadata
- if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_DeletePasswordAgePolicy_0); err != nil {
+ if err := req.ParseForm(); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+ if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_ManagementService_DeletePasswordAgePolicy_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
@@ -1023,6 +1997,19 @@ func request_ManagementService_DeletePasswordAgePolicy_0(ctx context.Context, ma
}
+func local_request_ManagementService_DeletePasswordAgePolicy_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq PasswordAgePolicyID
+ var metadata runtime.ServerMetadata
+
+ if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_DeletePasswordAgePolicy_0); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.DeletePasswordAgePolicy(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_GetPasswordLockoutPolicy_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -1032,6 +2019,15 @@ func request_ManagementService_GetPasswordLockoutPolicy_0(ctx context.Context, m
}
+func local_request_ManagementService_GetPasswordLockoutPolicy_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.GetPasswordLockoutPolicy(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_CreatePasswordLockoutPolicy_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq PasswordLockoutPolicyCreate
var metadata runtime.ServerMetadata
@@ -1049,6 +2045,23 @@ func request_ManagementService_CreatePasswordLockoutPolicy_0(ctx context.Context
}
+func local_request_ManagementService_CreatePasswordLockoutPolicy_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq PasswordLockoutPolicyCreate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.CreatePasswordLockoutPolicy(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_UpdatePasswordLockoutPolicy_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq PasswordLockoutPolicyUpdate
var metadata runtime.ServerMetadata
@@ -1066,6 +2079,23 @@ func request_ManagementService_UpdatePasswordLockoutPolicy_0(ctx context.Context
}
+func local_request_ManagementService_UpdatePasswordLockoutPolicy_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq PasswordLockoutPolicyUpdate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.UpdatePasswordLockoutPolicy(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
var (
filter_ManagementService_DeletePasswordLockoutPolicy_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)}
)
@@ -1074,7 +2104,10 @@ func request_ManagementService_DeletePasswordLockoutPolicy_0(ctx context.Context
var protoReq PasswordLockoutPolicyID
var metadata runtime.ServerMetadata
- if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_DeletePasswordLockoutPolicy_0); err != nil {
+ if err := req.ParseForm(); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+ if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_ManagementService_DeletePasswordLockoutPolicy_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
@@ -1083,6 +2116,19 @@ func request_ManagementService_DeletePasswordLockoutPolicy_0(ctx context.Context
}
+func local_request_ManagementService_DeletePasswordLockoutPolicy_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq PasswordLockoutPolicyID
+ var metadata runtime.ServerMetadata
+
+ if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_DeletePasswordLockoutPolicy_0); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.DeletePasswordLockoutPolicy(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_GetOrgByID_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq OrgID
var metadata runtime.ServerMetadata
@@ -1110,6 +2156,33 @@ func request_ManagementService_GetOrgByID_0(ctx context.Context, marshaler runti
}
+func local_request_ManagementService_GetOrgByID_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq OrgID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.GetOrgByID(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
var (
filter_ManagementService_GetOrgByDomainGlobal_0 = &utilities.DoubleArray{Encoding: map[string]int{"domain": 0}, Base: []int{1, 1, 0}, Check: []int{0, 1, 2}}
)
@@ -1136,7 +2209,10 @@ func request_ManagementService_GetOrgByDomainGlobal_0(ctx context.Context, marsh
return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain", err)
}
- if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_GetOrgByDomainGlobal_0); err != nil {
+ if err := req.ParseForm(); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+ if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_ManagementService_GetOrgByDomainGlobal_0); err != nil {
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
}
@@ -1145,6 +2221,37 @@ func request_ManagementService_GetOrgByDomainGlobal_0(ctx context.Context, marsh
}
+func local_request_ManagementService_GetOrgByDomainGlobal_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq OrgDomain
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["domain"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain")
+ }
+
+ protoReq.Domain, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain", err)
+ }
+
+ if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_ManagementService_GetOrgByDomainGlobal_0); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.GetOrgByDomainGlobal(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_DeactivateOrg_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq OrgID
var metadata runtime.ServerMetadata
@@ -1180,6 +2287,41 @@ func request_ManagementService_DeactivateOrg_0(ctx context.Context, marshaler ru
}
+func local_request_ManagementService_DeactivateOrg_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq OrgID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.DeactivateOrg(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ReactivateOrg_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq OrgID
var metadata runtime.ServerMetadata
@@ -1215,6 +2357,41 @@ func request_ManagementService_ReactivateOrg_0(ctx context.Context, marshaler ru
}
+func local_request_ManagementService_ReactivateOrg_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq OrgID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ReactivateOrg(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SearchMyOrgDomains_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq OrgDomainSearchRequest
var metadata runtime.ServerMetadata
@@ -1232,6 +2409,23 @@ func request_ManagementService_SearchMyOrgDomains_0(ctx context.Context, marshal
}
+func local_request_ManagementService_SearchMyOrgDomains_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq OrgDomainSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.SearchMyOrgDomains(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_AddMyOrgDomain_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq AddOrgDomainRequest
var metadata runtime.ServerMetadata
@@ -1249,6 +2443,23 @@ func request_ManagementService_AddMyOrgDomain_0(ctx context.Context, marshaler r
}
+func local_request_ManagementService_AddMyOrgDomain_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq AddOrgDomainRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.AddMyOrgDomain(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_RemoveMyOrgDomain_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq RemoveOrgDomainRequest
var metadata runtime.ServerMetadata
@@ -1276,6 +2487,33 @@ func request_ManagementService_RemoveMyOrgDomain_0(ctx context.Context, marshale
}
+func local_request_ManagementService_RemoveMyOrgDomain_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq RemoveOrgDomainRequest
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["domain"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "domain")
+ }
+
+ protoReq.Domain, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "domain", err)
+ }
+
+ msg, err := server.RemoveMyOrgDomain(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_GetOrgMemberRoles_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -1285,6 +2523,15 @@ func request_ManagementService_GetOrgMemberRoles_0(ctx context.Context, marshale
}
+func local_request_ManagementService_GetOrgMemberRoles_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.GetOrgMemberRoles(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_AddMyOrgMember_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq AddOrgMemberRequest
var metadata runtime.ServerMetadata
@@ -1302,6 +2549,23 @@ func request_ManagementService_AddMyOrgMember_0(ctx context.Context, marshaler r
}
+func local_request_ManagementService_AddMyOrgMember_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq AddOrgMemberRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.AddMyOrgMember(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ChangeMyOrgMember_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ChangeOrgMemberRequest
var metadata runtime.ServerMetadata
@@ -1337,6 +2601,41 @@ func request_ManagementService_ChangeMyOrgMember_0(ctx context.Context, marshale
}
+func local_request_ManagementService_ChangeMyOrgMember_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ChangeOrgMemberRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ msg, err := server.ChangeMyOrgMember(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_RemoveMyOrgMember_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq RemoveOrgMemberRequest
var metadata runtime.ServerMetadata
@@ -1364,6 +2663,33 @@ func request_ManagementService_RemoveMyOrgMember_0(ctx context.Context, marshale
}
+func local_request_ManagementService_RemoveMyOrgMember_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq RemoveOrgMemberRequest
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ msg, err := server.RemoveMyOrgMember(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SearchMyOrgMembers_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq OrgMemberSearchRequest
var metadata runtime.ServerMetadata
@@ -1381,6 +2707,23 @@ func request_ManagementService_SearchMyOrgMembers_0(ctx context.Context, marshal
}
+func local_request_ManagementService_SearchMyOrgMembers_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq OrgMemberSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.SearchMyOrgMembers(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SearchProjects_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectSearchRequest
var metadata runtime.ServerMetadata
@@ -1398,6 +2741,23 @@ func request_ManagementService_SearchProjects_0(ctx context.Context, marshaler r
}
+func local_request_ManagementService_SearchProjects_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.SearchProjects(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ProjectByID_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectID
var metadata runtime.ServerMetadata
@@ -1425,6 +2785,33 @@ func request_ManagementService_ProjectByID_0(ctx context.Context, marshaler runt
}
+func local_request_ManagementService_ProjectByID_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ProjectByID(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_CreateProject_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectCreateRequest
var metadata runtime.ServerMetadata
@@ -1442,6 +2829,23 @@ func request_ManagementService_CreateProject_0(ctx context.Context, marshaler ru
}
+func local_request_ManagementService_CreateProject_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectCreateRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.CreateProject(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_UpdateProject_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectUpdateRequest
var metadata runtime.ServerMetadata
@@ -1477,6 +2881,41 @@ func request_ManagementService_UpdateProject_0(ctx context.Context, marshaler ru
}
+func local_request_ManagementService_UpdateProject_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectUpdateRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.UpdateProject(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_DeactivateProject_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectID
var metadata runtime.ServerMetadata
@@ -1512,6 +2951,41 @@ func request_ManagementService_DeactivateProject_0(ctx context.Context, marshale
}
+func local_request_ManagementService_DeactivateProject_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.DeactivateProject(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ReactivateProject_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectID
var metadata runtime.ServerMetadata
@@ -1547,6 +3021,41 @@ func request_ManagementService_ReactivateProject_0(ctx context.Context, marshale
}
+func local_request_ManagementService_ReactivateProject_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ReactivateProject(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SearchGrantedProjects_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq GrantedProjectSearchRequest
var metadata runtime.ServerMetadata
@@ -1564,6 +3073,23 @@ func request_ManagementService_SearchGrantedProjects_0(ctx context.Context, mars
}
+func local_request_ManagementService_SearchGrantedProjects_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq GrantedProjectSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.SearchGrantedProjects(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_GetGrantedProjectByID_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantID
var metadata runtime.ServerMetadata
@@ -1602,6 +3128,44 @@ func request_ManagementService_GetGrantedProjectByID_0(ctx context.Context, mars
}
+func local_request_ManagementService_GetGrantedProjectByID_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.GetGrantedProjectByID(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_GetProjectMemberRoles_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -1611,6 +3175,15 @@ func request_ManagementService_GetProjectMemberRoles_0(ctx context.Context, mars
}
+func local_request_ManagementService_GetProjectMemberRoles_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.GetProjectMemberRoles(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SearchProjectMembers_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectMemberSearchRequest
var metadata runtime.ServerMetadata
@@ -1646,6 +3219,41 @@ func request_ManagementService_SearchProjectMembers_0(ctx context.Context, marsh
}
+func local_request_ManagementService_SearchProjectMembers_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectMemberSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ msg, err := server.SearchProjectMembers(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_AddProjectMember_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectMemberAdd
var metadata runtime.ServerMetadata
@@ -1681,6 +3289,41 @@ func request_ManagementService_AddProjectMember_0(ctx context.Context, marshaler
}
+func local_request_ManagementService_AddProjectMember_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectMemberAdd
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.AddProjectMember(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ChangeProjectMember_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectMemberChange
var metadata runtime.ServerMetadata
@@ -1727,6 +3370,52 @@ func request_ManagementService_ChangeProjectMember_0(ctx context.Context, marsha
}
+func local_request_ManagementService_ChangeProjectMember_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectMemberChange
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ msg, err := server.ChangeProjectMember(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_RemoveProjectMember_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectMemberRemove
var metadata runtime.ServerMetadata
@@ -1765,6 +3454,44 @@ func request_ManagementService_RemoveProjectMember_0(ctx context.Context, marsha
}
+func local_request_ManagementService_RemoveProjectMember_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectMemberRemove
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ msg, err := server.RemoveProjectMember(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SearchProjectRoles_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectRoleSearchRequest
var metadata runtime.ServerMetadata
@@ -1800,6 +3527,41 @@ func request_ManagementService_SearchProjectRoles_0(ctx context.Context, marshal
}
+func local_request_ManagementService_SearchProjectRoles_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectRoleSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ msg, err := server.SearchProjectRoles(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_AddProjectRole_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectRoleAdd
var metadata runtime.ServerMetadata
@@ -1835,6 +3597,41 @@ func request_ManagementService_AddProjectRole_0(ctx context.Context, marshaler r
}
+func local_request_ManagementService_AddProjectRole_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectRoleAdd
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.AddProjectRole(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ChangeProjectRole_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectRoleChange
var metadata runtime.ServerMetadata
@@ -1881,6 +3678,52 @@ func request_ManagementService_ChangeProjectRole_0(ctx context.Context, marshale
}
+func local_request_ManagementService_ChangeProjectRole_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectRoleChange
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ val, ok = pathParams["key"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "key")
+ }
+
+ protoReq.Key, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "key", err)
+ }
+
+ msg, err := server.ChangeProjectRole(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_RemoveProjectRole_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectRoleRemove
var metadata runtime.ServerMetadata
@@ -1919,6 +3762,44 @@ func request_ManagementService_RemoveProjectRole_0(ctx context.Context, marshale
}
+func local_request_ManagementService_RemoveProjectRole_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectRoleRemove
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ val, ok = pathParams["key"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "key")
+ }
+
+ protoReq.Key, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "key", err)
+ }
+
+ msg, err := server.RemoveProjectRole(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SearchApplications_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ApplicationSearchRequest
var metadata runtime.ServerMetadata
@@ -1954,6 +3835,41 @@ func request_ManagementService_SearchApplications_0(ctx context.Context, marshal
}
+func local_request_ManagementService_SearchApplications_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ApplicationSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ msg, err := server.SearchApplications(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ApplicationByID_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ApplicationID
var metadata runtime.ServerMetadata
@@ -1992,6 +3908,44 @@ func request_ManagementService_ApplicationByID_0(ctx context.Context, marshaler
}
+func local_request_ManagementService_ApplicationByID_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ApplicationID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ApplicationByID(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_CreateOIDCApplication_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq OIDCApplicationCreate
var metadata runtime.ServerMetadata
@@ -2027,6 +3981,41 @@ func request_ManagementService_CreateOIDCApplication_0(ctx context.Context, mars
}
+func local_request_ManagementService_CreateOIDCApplication_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq OIDCApplicationCreate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ msg, err := server.CreateOIDCApplication(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_UpdateApplication_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ApplicationUpdate
var metadata runtime.ServerMetadata
@@ -2073,6 +4062,52 @@ func request_ManagementService_UpdateApplication_0(ctx context.Context, marshale
}
+func local_request_ManagementService_UpdateApplication_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ApplicationUpdate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.UpdateApplication(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_DeactivateApplication_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ApplicationID
var metadata runtime.ServerMetadata
@@ -2119,6 +4154,52 @@ func request_ManagementService_DeactivateApplication_0(ctx context.Context, mars
}
+func local_request_ManagementService_DeactivateApplication_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ApplicationID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.DeactivateApplication(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ReactivateApplication_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ApplicationID
var metadata runtime.ServerMetadata
@@ -2165,6 +4246,52 @@ func request_ManagementService_ReactivateApplication_0(ctx context.Context, mars
}
+func local_request_ManagementService_ReactivateApplication_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ApplicationID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ReactivateApplication(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_RemoveApplication_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ApplicationID
var metadata runtime.ServerMetadata
@@ -2203,6 +4330,44 @@ func request_ManagementService_RemoveApplication_0(ctx context.Context, marshale
}
+func local_request_ManagementService_RemoveApplication_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ApplicationID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.RemoveApplication(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_UpdateApplicationOIDCConfig_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq OIDCConfigUpdate
var metadata runtime.ServerMetadata
@@ -2249,6 +4414,52 @@ func request_ManagementService_UpdateApplicationOIDCConfig_0(ctx context.Context
}
+func local_request_ManagementService_UpdateApplicationOIDCConfig_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq OIDCConfigUpdate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["application_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "application_id")
+ }
+
+ protoReq.ApplicationId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "application_id", err)
+ }
+
+ msg, err := server.UpdateApplicationOIDCConfig(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_RegenerateOIDCClientSecret_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ApplicationID
var metadata runtime.ServerMetadata
@@ -2295,6 +4506,52 @@ func request_ManagementService_RegenerateOIDCClientSecret_0(ctx context.Context,
}
+func local_request_ManagementService_RegenerateOIDCClientSecret_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ApplicationID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.RegenerateOIDCClientSecret(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SearchProjectGrants_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantSearchRequest
var metadata runtime.ServerMetadata
@@ -2330,6 +4587,41 @@ func request_ManagementService_SearchProjectGrants_0(ctx context.Context, marsha
}
+func local_request_ManagementService_SearchProjectGrants_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ msg, err := server.SearchProjectGrants(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ProjectGrantByID_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantID
var metadata runtime.ServerMetadata
@@ -2368,6 +4660,44 @@ func request_ManagementService_ProjectGrantByID_0(ctx context.Context, marshaler
}
+func local_request_ManagementService_ProjectGrantByID_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ProjectGrantByID(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_CreateProjectGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantCreate
var metadata runtime.ServerMetadata
@@ -2403,6 +4733,41 @@ func request_ManagementService_CreateProjectGrant_0(ctx context.Context, marshal
}
+func local_request_ManagementService_CreateProjectGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantCreate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ msg, err := server.CreateProjectGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_UpdateProjectGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantUpdate
var metadata runtime.ServerMetadata
@@ -2449,6 +4814,52 @@ func request_ManagementService_UpdateProjectGrant_0(ctx context.Context, marshal
}
+func local_request_ManagementService_UpdateProjectGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantUpdate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.UpdateProjectGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_DeactivateProjectGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantID
var metadata runtime.ServerMetadata
@@ -2495,6 +4906,52 @@ func request_ManagementService_DeactivateProjectGrant_0(ctx context.Context, mar
}
+func local_request_ManagementService_DeactivateProjectGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.DeactivateProjectGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ReactivateProjectGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantID
var metadata runtime.ServerMetadata
@@ -2541,6 +4998,52 @@ func request_ManagementService_ReactivateProjectGrant_0(ctx context.Context, mar
}
+func local_request_ManagementService_ReactivateProjectGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ReactivateProjectGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_RemoveProjectGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantID
var metadata runtime.ServerMetadata
@@ -2579,6 +5082,44 @@ func request_ManagementService_RemoveProjectGrant_0(ctx context.Context, marshal
}
+func local_request_ManagementService_RemoveProjectGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.RemoveProjectGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_GetProjectGrantMemberRoles_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
var metadata runtime.ServerMetadata
@@ -2588,6 +5129,15 @@ func request_ManagementService_GetProjectGrantMemberRoles_0(ctx context.Context,
}
+func local_request_ManagementService_GetProjectGrantMemberRoles_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq empty.Empty
+ var metadata runtime.ServerMetadata
+
+ msg, err := server.GetProjectGrantMemberRoles(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SearchProjectGrantMembers_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantMemberSearchRequest
var metadata runtime.ServerMetadata
@@ -2634,6 +5184,52 @@ func request_ManagementService_SearchProjectGrantMembers_0(ctx context.Context,
}
+func local_request_ManagementService_SearchProjectGrantMembers_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantMemberSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["grant_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "grant_id")
+ }
+
+ protoReq.GrantId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "grant_id", err)
+ }
+
+ msg, err := server.SearchProjectGrantMembers(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_AddProjectGrantMember_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantMemberAdd
var metadata runtime.ServerMetadata
@@ -2680,6 +5276,52 @@ func request_ManagementService_AddProjectGrantMember_0(ctx context.Context, mars
}
+func local_request_ManagementService_AddProjectGrantMember_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantMemberAdd
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["grant_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "grant_id")
+ }
+
+ protoReq.GrantId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "grant_id", err)
+ }
+
+ msg, err := server.AddProjectGrantMember(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ChangeProjectGrantMember_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantMemberChange
var metadata runtime.ServerMetadata
@@ -2737,6 +5379,63 @@ func request_ManagementService_ChangeProjectGrantMember_0(ctx context.Context, m
}
+func local_request_ManagementService_ChangeProjectGrantMember_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantMemberChange
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["grant_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "grant_id")
+ }
+
+ protoReq.GrantId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "grant_id", err)
+ }
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ msg, err := server.ChangeProjectGrantMember(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_RemoveProjectGrantMember_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantMemberRemove
var metadata runtime.ServerMetadata
@@ -2786,6 +5485,55 @@ func request_ManagementService_RemoveProjectGrantMember_0(ctx context.Context, m
}
+func local_request_ManagementService_RemoveProjectGrantMember_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantMemberRemove
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["grant_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "grant_id")
+ }
+
+ protoReq.GrantId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "grant_id", err)
+ }
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ msg, err := server.RemoveProjectGrantMember(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SearchUserGrants_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserGrantSearchRequest
var metadata runtime.ServerMetadata
@@ -2803,6 +5551,23 @@ func request_ManagementService_SearchUserGrants_0(ctx context.Context, marshaler
}
+func local_request_ManagementService_SearchUserGrants_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserGrantSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.SearchUserGrants(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_UserGrantByID_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserGrantID
var metadata runtime.ServerMetadata
@@ -2841,6 +5606,44 @@ func request_ManagementService_UserGrantByID_0(ctx context.Context, marshaler ru
}
+func local_request_ManagementService_UserGrantByID_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserGrantID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.UserGrantByID(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_CreateUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserGrantCreate
var metadata runtime.ServerMetadata
@@ -2876,6 +5679,41 @@ func request_ManagementService_CreateUserGrant_0(ctx context.Context, marshaler
}
+func local_request_ManagementService_CreateUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserGrantCreate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ msg, err := server.CreateUserGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_UpdateUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserGrantUpdate
var metadata runtime.ServerMetadata
@@ -2922,6 +5760,52 @@ func request_ManagementService_UpdateUserGrant_0(ctx context.Context, marshaler
}
+func local_request_ManagementService_UpdateUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserGrantUpdate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.UpdateUserGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_DeactivateUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserGrantID
var metadata runtime.ServerMetadata
@@ -2968,6 +5852,52 @@ func request_ManagementService_DeactivateUserGrant_0(ctx context.Context, marsha
}
+func local_request_ManagementService_DeactivateUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserGrantID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.DeactivateUserGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ReactivateUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserGrantID
var metadata runtime.ServerMetadata
@@ -3014,6 +5944,52 @@ func request_ManagementService_ReactivateUserGrant_0(ctx context.Context, marsha
}
+func local_request_ManagementService_ReactivateUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserGrantID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ReactivateUserGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_RemoveUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserGrantID
var metadata runtime.ServerMetadata
@@ -3052,6 +6028,44 @@ func request_ManagementService_RemoveUserGrant_0(ctx context.Context, marshaler
}
+func local_request_ManagementService_RemoveUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserGrantID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.RemoveUserGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SearchProjectUserGrants_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectUserGrantSearchRequest
var metadata runtime.ServerMetadata
@@ -3087,6 +6101,41 @@ func request_ManagementService_SearchProjectUserGrants_0(ctx context.Context, ma
}
+func local_request_ManagementService_SearchProjectUserGrants_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectUserGrantSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ msg, err := server.SearchProjectUserGrants(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ProjectUserGrantByID_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectUserGrantID
var metadata runtime.ServerMetadata
@@ -3136,6 +6185,55 @@ func request_ManagementService_ProjectUserGrantByID_0(ctx context.Context, marsh
}
+func local_request_ManagementService_ProjectUserGrantByID_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectUserGrantID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ProjectUserGrantByID(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_CreateProjectUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserGrantCreate
var metadata runtime.ServerMetadata
@@ -3182,6 +6280,52 @@ func request_ManagementService_CreateProjectUserGrant_0(ctx context.Context, mar
}
+func local_request_ManagementService_CreateProjectUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq UserGrantCreate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ msg, err := server.CreateProjectUserGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_UpdateProjectUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectUserGrantUpdate
var metadata runtime.ServerMetadata
@@ -3239,6 +6383,63 @@ func request_ManagementService_UpdateProjectUserGrant_0(ctx context.Context, mar
}
+func local_request_ManagementService_UpdateProjectUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectUserGrantUpdate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.UpdateProjectUserGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_DeactivateProjectUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectUserGrantID
var metadata runtime.ServerMetadata
@@ -3296,6 +6497,63 @@ func request_ManagementService_DeactivateProjectUserGrant_0(ctx context.Context,
}
+func local_request_ManagementService_DeactivateProjectUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectUserGrantID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.DeactivateProjectUserGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ReactivateProjectUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectUserGrantID
var metadata runtime.ServerMetadata
@@ -3353,6 +6611,63 @@ func request_ManagementService_ReactivateProjectUserGrant_0(ctx context.Context,
}
+func local_request_ManagementService_ReactivateProjectUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectUserGrantID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_id")
+ }
+
+ protoReq.ProjectId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_id", err)
+ }
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ReactivateProjectUserGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SearchProjectGrantUserGrants_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantUserGrantSearchRequest
var metadata runtime.ServerMetadata
@@ -3388,6 +6703,41 @@ func request_ManagementService_SearchProjectGrantUserGrants_0(ctx context.Contex
}
+func local_request_ManagementService_SearchProjectGrantUserGrants_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantUserGrantSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_grant_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_grant_id")
+ }
+
+ protoReq.ProjectGrantId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_grant_id", err)
+ }
+
+ msg, err := server.SearchProjectGrantUserGrants(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ProjectGrantUserGrantByID_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantUserGrantID
var metadata runtime.ServerMetadata
@@ -3437,6 +6787,55 @@ func request_ManagementService_ProjectGrantUserGrantByID_0(ctx context.Context,
}
+func local_request_ManagementService_ProjectGrantUserGrantByID_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantUserGrantID
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_grant_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_grant_id")
+ }
+
+ protoReq.ProjectGrantId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_grant_id", err)
+ }
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ProjectGrantUserGrantByID(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_CreateProjectGrantUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantUserGrantCreate
var metadata runtime.ServerMetadata
@@ -3483,6 +6882,52 @@ func request_ManagementService_CreateProjectGrantUserGrant_0(ctx context.Context
}
+func local_request_ManagementService_CreateProjectGrantUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantUserGrantCreate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_grant_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_grant_id")
+ }
+
+ protoReq.ProjectGrantId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_grant_id", err)
+ }
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ msg, err := server.CreateProjectGrantUserGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_UpdateProjectGrantUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantUserGrantUpdate
var metadata runtime.ServerMetadata
@@ -3540,6 +6985,63 @@ func request_ManagementService_UpdateProjectGrantUserGrant_0(ctx context.Context
}
+func local_request_ManagementService_UpdateProjectGrantUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantUserGrantUpdate
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_grant_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_grant_id")
+ }
+
+ protoReq.ProjectGrantId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_grant_id", err)
+ }
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.UpdateProjectGrantUserGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_DeactivateProjectGrantUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantUserGrantID
var metadata runtime.ServerMetadata
@@ -3597,6 +7099,63 @@ func request_ManagementService_DeactivateProjectGrantUserGrant_0(ctx context.Con
}
+func local_request_ManagementService_DeactivateProjectGrantUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantUserGrantID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_grant_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_grant_id")
+ }
+
+ protoReq.ProjectGrantId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_grant_id", err)
+ }
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.DeactivateProjectGrantUserGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_ReactivateProjectGrantUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq ProjectGrantUserGrantID
var metadata runtime.ServerMetadata
@@ -3654,6 +7213,63 @@ func request_ManagementService_ReactivateProjectGrantUserGrant_0(ctx context.Con
}
+func local_request_ManagementService_ReactivateProjectGrantUserGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq ProjectGrantUserGrantID
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["project_grant_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "project_grant_id")
+ }
+
+ protoReq.ProjectGrantId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "project_grant_id", err)
+ }
+
+ val, ok = pathParams["user_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "user_id")
+ }
+
+ protoReq.UserId, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "user_id", err)
+ }
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ReactivateProjectGrantUserGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SearchAuthGrant_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq AuthGrantSearchRequest
var metadata runtime.ServerMetadata
@@ -3671,6 +7287,2291 @@ func request_ManagementService_SearchAuthGrant_0(ctx context.Context, marshaler
}
+func local_request_ManagementService_SearchAuthGrant_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq AuthGrantSearchRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.SearchAuthGrant(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
+// RegisterManagementServiceHandlerServer registers the http handlers for service ManagementService to "mux".
+// UnaryRPC :call ManagementServiceServer directly.
+// StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.
+func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server ManagementServiceServer, opts []grpc.DialOption) error {
+
+ mux.Handle("GET", pattern_ManagementService_Healthz_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_Healthz_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_Healthz_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_Ready_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_Ready_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_Ready_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_Validate_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_Validate_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_Validate_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetIam_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetIam_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetIam_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetUserByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetUserByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetUserByID_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetUserByEmailGlobal_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetUserByEmailGlobal_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetUserByEmailGlobal_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_SearchUsers_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_SearchUsers_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_SearchUsers_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_IsUserUnique_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_IsUserUnique_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_IsUserUnique_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_CreateUser_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_CreateUser_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_CreateUser_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_DeactivateUser_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_DeactivateUser_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_DeactivateUser_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_ReactivateUser_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ReactivateUser_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ReactivateUser_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_LockUser_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_LockUser_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_LockUser_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_UnlockUser_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_UnlockUser_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_UnlockUser_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("DELETE", pattern_ManagementService_DeleteUser_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_DeleteUser_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_DeleteUser_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_UserChanges_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_UserChanges_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_UserChanges_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_ApplicationChanges_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ApplicationChanges_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ApplicationChanges_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_OrgChanges_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_OrgChanges_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_OrgChanges_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_ProjectChanges_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ProjectChanges_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ProjectChanges_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetUserProfile_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetUserProfile_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetUserProfile_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_UpdateUserProfile_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_UpdateUserProfile_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_UpdateUserProfile_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetUserEmail_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetUserEmail_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetUserEmail_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_ChangeUserEmail_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ChangeUserEmail_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ChangeUserEmail_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_ResendEmailVerificationMail_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ResendEmailVerificationMail_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ResendEmailVerificationMail_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetUserPhone_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetUserPhone_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetUserPhone_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_ChangeUserPhone_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ChangeUserPhone_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ChangeUserPhone_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_ResendPhoneVerificationCode_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ResendPhoneVerificationCode_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ResendPhoneVerificationCode_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetUserAddress_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetUserAddress_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetUserAddress_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_UpdateUserAddress_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_UpdateUserAddress_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_UpdateUserAddress_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetUserMfas_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetUserMfas_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetUserMfas_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_SendSetPasswordNotification_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_SendSetPasswordNotification_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_SendSetPasswordNotification_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_SetInitialPassword_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_SetInitialPassword_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_SetInitialPassword_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetPasswordComplexityPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetPasswordComplexityPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetPasswordComplexityPolicy_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_CreatePasswordComplexityPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_CreatePasswordComplexityPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_CreatePasswordComplexityPolicy_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_UpdatePasswordComplexityPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_UpdatePasswordComplexityPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_UpdatePasswordComplexityPolicy_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("DELETE", pattern_ManagementService_DeletePasswordComplexityPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_DeletePasswordComplexityPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_DeletePasswordComplexityPolicy_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetPasswordAgePolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetPasswordAgePolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetPasswordAgePolicy_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_CreatePasswordAgePolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_CreatePasswordAgePolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_CreatePasswordAgePolicy_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_UpdatePasswordAgePolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_UpdatePasswordAgePolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_UpdatePasswordAgePolicy_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("DELETE", pattern_ManagementService_DeletePasswordAgePolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_DeletePasswordAgePolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_DeletePasswordAgePolicy_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetPasswordLockoutPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetPasswordLockoutPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetPasswordLockoutPolicy_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_CreatePasswordLockoutPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_CreatePasswordLockoutPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_CreatePasswordLockoutPolicy_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_UpdatePasswordLockoutPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_UpdatePasswordLockoutPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_UpdatePasswordLockoutPolicy_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("DELETE", pattern_ManagementService_DeletePasswordLockoutPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_DeletePasswordLockoutPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_DeletePasswordLockoutPolicy_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetOrgByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetOrgByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetOrgByID_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetOrgByDomainGlobal_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetOrgByDomainGlobal_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetOrgByDomainGlobal_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_DeactivateOrg_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_DeactivateOrg_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_DeactivateOrg_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_ReactivateOrg_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ReactivateOrg_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ReactivateOrg_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_SearchMyOrgDomains_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_SearchMyOrgDomains_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_SearchMyOrgDomains_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_AddMyOrgDomain_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_AddMyOrgDomain_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_AddMyOrgDomain_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("DELETE", pattern_ManagementService_RemoveMyOrgDomain_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_RemoveMyOrgDomain_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_RemoveMyOrgDomain_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetOrgMemberRoles_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetOrgMemberRoles_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetOrgMemberRoles_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_AddMyOrgMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_AddMyOrgMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_AddMyOrgMember_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_ChangeMyOrgMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ChangeMyOrgMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ChangeMyOrgMember_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("DELETE", pattern_ManagementService_RemoveMyOrgMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_RemoveMyOrgMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_RemoveMyOrgMember_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_SearchMyOrgMembers_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_SearchMyOrgMembers_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_SearchMyOrgMembers_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_SearchProjects_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_SearchProjects_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_SearchProjects_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_ProjectByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ProjectByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ProjectByID_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_CreateProject_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_CreateProject_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_CreateProject_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_UpdateProject_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_UpdateProject_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_UpdateProject_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_DeactivateProject_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_DeactivateProject_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_DeactivateProject_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_ReactivateProject_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ReactivateProject_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ReactivateProject_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_SearchGrantedProjects_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_SearchGrantedProjects_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_SearchGrantedProjects_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetGrantedProjectByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetGrantedProjectByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetGrantedProjectByID_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetProjectMemberRoles_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetProjectMemberRoles_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetProjectMemberRoles_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_SearchProjectMembers_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_SearchProjectMembers_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_SearchProjectMembers_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_AddProjectMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_AddProjectMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_AddProjectMember_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_ChangeProjectMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ChangeProjectMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ChangeProjectMember_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("DELETE", pattern_ManagementService_RemoveProjectMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_RemoveProjectMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_RemoveProjectMember_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_SearchProjectRoles_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_SearchProjectRoles_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_SearchProjectRoles_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_AddProjectRole_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_AddProjectRole_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_AddProjectRole_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_ChangeProjectRole_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ChangeProjectRole_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ChangeProjectRole_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("DELETE", pattern_ManagementService_RemoveProjectRole_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_RemoveProjectRole_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_RemoveProjectRole_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_SearchApplications_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_SearchApplications_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_SearchApplications_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_ApplicationByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ApplicationByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ApplicationByID_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_CreateOIDCApplication_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_CreateOIDCApplication_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_CreateOIDCApplication_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_UpdateApplication_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_UpdateApplication_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_UpdateApplication_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_DeactivateApplication_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_DeactivateApplication_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_DeactivateApplication_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_ReactivateApplication_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ReactivateApplication_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ReactivateApplication_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("DELETE", pattern_ManagementService_RemoveApplication_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_RemoveApplication_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_RemoveApplication_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_UpdateApplicationOIDCConfig_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_UpdateApplicationOIDCConfig_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_UpdateApplicationOIDCConfig_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_RegenerateOIDCClientSecret_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_RegenerateOIDCClientSecret_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_RegenerateOIDCClientSecret_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_SearchProjectGrants_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_SearchProjectGrants_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_SearchProjectGrants_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_ProjectGrantByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ProjectGrantByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ProjectGrantByID_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_CreateProjectGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_CreateProjectGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_CreateProjectGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_UpdateProjectGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_UpdateProjectGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_UpdateProjectGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_DeactivateProjectGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_DeactivateProjectGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_DeactivateProjectGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_ReactivateProjectGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ReactivateProjectGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ReactivateProjectGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("DELETE", pattern_ManagementService_RemoveProjectGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_RemoveProjectGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_RemoveProjectGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_GetProjectGrantMemberRoles_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_GetProjectGrantMemberRoles_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_GetProjectGrantMemberRoles_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_SearchProjectGrantMembers_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_SearchProjectGrantMembers_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_SearchProjectGrantMembers_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_AddProjectGrantMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_AddProjectGrantMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_AddProjectGrantMember_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_ChangeProjectGrantMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ChangeProjectGrantMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ChangeProjectGrantMember_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("DELETE", pattern_ManagementService_RemoveProjectGrantMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_RemoveProjectGrantMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_RemoveProjectGrantMember_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_SearchUserGrants_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_SearchUserGrants_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_SearchUserGrants_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_UserGrantByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_UserGrantByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_UserGrantByID_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_CreateUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_CreateUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_CreateUserGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_UpdateUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_UpdateUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_UpdateUserGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_DeactivateUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_DeactivateUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_DeactivateUserGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_ReactivateUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ReactivateUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ReactivateUserGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("DELETE", pattern_ManagementService_RemoveUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_RemoveUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_RemoveUserGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_SearchProjectUserGrants_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_SearchProjectUserGrants_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_SearchProjectUserGrants_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_ProjectUserGrantByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ProjectUserGrantByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ProjectUserGrantByID_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_CreateProjectUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_CreateProjectUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_CreateProjectUserGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_UpdateProjectUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_UpdateProjectUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_UpdateProjectUserGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_DeactivateProjectUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_DeactivateProjectUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_DeactivateProjectUserGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_ReactivateProjectUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ReactivateProjectUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ReactivateProjectUserGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_SearchProjectGrantUserGrants_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_SearchProjectGrantUserGrants_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_SearchProjectGrantUserGrants_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("GET", pattern_ManagementService_ProjectGrantUserGrantByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ProjectGrantUserGrantByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ProjectGrantUserGrantByID_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_CreateProjectGrantUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_CreateProjectGrantUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_CreateProjectGrantUserGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_UpdateProjectGrantUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_UpdateProjectGrantUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_UpdateProjectGrantUserGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_DeactivateProjectGrantUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_DeactivateProjectGrantUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_DeactivateProjectGrantUserGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("PUT", pattern_ManagementService_ReactivateProjectGrantUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ReactivateProjectGrantUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ReactivateProjectGrantUserGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ mux.Handle("POST", pattern_ManagementService_SearchAuthGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_SearchAuthGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_SearchAuthGrant_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
+ return nil
+}
+
// RegisterManagementServiceHandlerFromEndpoint is same as RegisterManagementServiceHandler but
// automatically dials to "endpoint" and closes the connection when "ctx" gets done.
func RegisterManagementServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error) {
@@ -5973,231 +11874,231 @@ func RegisterManagementServiceHandlerClient(ctx context.Context, mux *runtime.Se
}
var (
- pattern_ManagementService_Healthz_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"healthz"}, ""))
+ pattern_ManagementService_Healthz_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"healthz"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_Ready_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"ready"}, ""))
+ pattern_ManagementService_Ready_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"ready"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_Validate_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"validate"}, ""))
+ pattern_ManagementService_Validate_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"validate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetIam_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"iam"}, ""))
+ pattern_ManagementService_GetIam_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"iam"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetUserByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1}, []string{"users", "id"}, ""))
+ pattern_ManagementService_GetUserByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1}, []string{"users", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetUserByEmailGlobal_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 2}, []string{"global", "users", "email"}, ""))
+ pattern_ManagementService_GetUserByEmailGlobal_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 2}, []string{"global", "users", "email"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_SearchUsers_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"users", "_search"}, ""))
+ pattern_ManagementService_SearchUsers_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"users", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_IsUserUnique_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"users", "_isunique"}, ""))
+ pattern_ManagementService_IsUserUnique_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"users", "_isunique"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_CreateUser_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"users"}, ""))
+ pattern_ManagementService_CreateUser_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"users"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_DeactivateUser_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "_deactivate"}, ""))
+ pattern_ManagementService_DeactivateUser_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "_deactivate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ReactivateUser_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "_reactivate"}, ""))
+ pattern_ManagementService_ReactivateUser_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "_reactivate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_LockUser_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "_lock"}, ""))
+ pattern_ManagementService_LockUser_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "_lock"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_UnlockUser_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "_unlock"}, ""))
+ pattern_ManagementService_UnlockUser_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "_unlock"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_DeleteUser_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1}, []string{"users", "id"}, ""))
+ pattern_ManagementService_DeleteUser_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1}, []string{"users", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_UserChanges_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "changes"}, ""))
+ pattern_ManagementService_UserChanges_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "changes"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ApplicationChanges_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projects", "id", "applications", "sec_id", "changes"}, ""))
+ pattern_ManagementService_ApplicationChanges_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projects", "id", "applications", "sec_id", "changes"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_OrgChanges_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"orgs", "id", "changes"}, ""))
+ pattern_ManagementService_OrgChanges_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"orgs", "id", "changes"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ProjectChanges_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"projects", "id", "changes"}, ""))
+ pattern_ManagementService_ProjectChanges_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"projects", "id", "changes"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetUserProfile_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "profile"}, ""))
+ pattern_ManagementService_GetUserProfile_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "profile"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_UpdateUserProfile_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "profile"}, ""))
+ pattern_ManagementService_UpdateUserProfile_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "profile"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetUserEmail_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "email"}, ""))
+ pattern_ManagementService_GetUserEmail_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "email"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ChangeUserEmail_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "email"}, ""))
+ pattern_ManagementService_ChangeUserEmail_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "email"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ResendEmailVerificationMail_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3}, []string{"users", "id", "email", "_resendverification"}, ""))
+ pattern_ManagementService_ResendEmailVerificationMail_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3}, []string{"users", "id", "email", "_resendverification"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetUserPhone_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "phone"}, ""))
+ pattern_ManagementService_GetUserPhone_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "phone"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ChangeUserPhone_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "phone"}, ""))
+ pattern_ManagementService_ChangeUserPhone_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "phone"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ResendPhoneVerificationCode_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3}, []string{"users", "id", "phone", "_resendverification"}, ""))
+ pattern_ManagementService_ResendPhoneVerificationCode_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3}, []string{"users", "id", "phone", "_resendverification"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetUserAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "address"}, ""))
+ pattern_ManagementService_GetUserAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "address"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_UpdateUserAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "address"}, ""))
+ pattern_ManagementService_UpdateUserAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "address"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetUserMfas_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "mfas"}, ""))
+ pattern_ManagementService_GetUserMfas_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "mfas"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_SendSetPasswordNotification_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "_sendsetpwnotify"}, ""))
+ pattern_ManagementService_SendSetPasswordNotification_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "_sendsetpwnotify"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_SetInitialPassword_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "_setinitialpw"}, ""))
+ pattern_ManagementService_SetInitialPassword_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "_setinitialpw"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetPasswordComplexityPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "complexity"}, ""))
+ pattern_ManagementService_GetPasswordComplexityPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "complexity"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_CreatePasswordComplexityPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "complexity"}, ""))
+ pattern_ManagementService_CreatePasswordComplexityPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "complexity"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_UpdatePasswordComplexityPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "complexity"}, ""))
+ pattern_ManagementService_UpdatePasswordComplexityPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "complexity"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_DeletePasswordComplexityPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "complexity"}, ""))
+ pattern_ManagementService_DeletePasswordComplexityPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "complexity"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetPasswordAgePolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "age"}, ""))
+ pattern_ManagementService_GetPasswordAgePolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "age"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_CreatePasswordAgePolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "age"}, ""))
+ pattern_ManagementService_CreatePasswordAgePolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "age"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_UpdatePasswordAgePolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "age"}, ""))
+ pattern_ManagementService_UpdatePasswordAgePolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "age"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_DeletePasswordAgePolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "age"}, ""))
+ pattern_ManagementService_DeletePasswordAgePolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "age"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetPasswordLockoutPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "lockout"}, ""))
+ pattern_ManagementService_GetPasswordLockoutPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "lockout"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_CreatePasswordLockoutPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "lockout"}, ""))
+ pattern_ManagementService_CreatePasswordLockoutPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "lockout"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_UpdatePasswordLockoutPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "lockout"}, ""))
+ pattern_ManagementService_UpdatePasswordLockoutPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "lockout"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_DeletePasswordLockoutPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "lockout"}, ""))
+ pattern_ManagementService_DeletePasswordLockoutPolicy_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"policies", "passwords", "lockout"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetOrgByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1}, []string{"orgs", "id"}, ""))
+ pattern_ManagementService_GetOrgByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1}, []string{"orgs", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetOrgByDomainGlobal_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 2}, []string{"global", "orgs", "domain"}, ""))
+ pattern_ManagementService_GetOrgByDomainGlobal_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 2}, []string{"global", "orgs", "domain"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_DeactivateOrg_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"orgs", "id", "_deactivate"}, ""))
+ pattern_ManagementService_DeactivateOrg_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"orgs", "id", "_deactivate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ReactivateOrg_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"orgs", "id", "_reactivate"}, ""))
+ pattern_ManagementService_ReactivateOrg_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"orgs", "id", "_reactivate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_SearchMyOrgDomains_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"orgs", "me", "domains", "_search"}, ""))
+ pattern_ManagementService_SearchMyOrgDomains_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"orgs", "me", "domains", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_AddMyOrgDomain_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"orgs", "me", "domains"}, ""))
+ pattern_ManagementService_AddMyOrgDomain_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"orgs", "me", "domains"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_RemoveMyOrgDomain_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"orgs", "me", "domains", "domain"}, ""))
+ pattern_ManagementService_RemoveMyOrgDomain_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"orgs", "me", "domains", "domain"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetOrgMemberRoles_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"orgs", "members", "roles"}, ""))
+ pattern_ManagementService_GetOrgMemberRoles_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"orgs", "members", "roles"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_AddMyOrgMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"orgs", "me", "members"}, ""))
+ pattern_ManagementService_AddMyOrgMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"orgs", "me", "members"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ChangeMyOrgMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"orgs", "me", "members", "user_id"}, ""))
+ pattern_ManagementService_ChangeMyOrgMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"orgs", "me", "members", "user_id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_RemoveMyOrgMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"orgs", "me", "members", "user_id"}, ""))
+ pattern_ManagementService_RemoveMyOrgMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"orgs", "me", "members", "user_id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_SearchMyOrgMembers_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"orgs", "me", "members", "_search"}, ""))
+ pattern_ManagementService_SearchMyOrgMembers_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"orgs", "me", "members", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_SearchProjects_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"projects", "_search"}, ""))
+ pattern_ManagementService_SearchProjects_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"projects", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ProjectByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1}, []string{"projects", "id"}, ""))
+ pattern_ManagementService_ProjectByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1}, []string{"projects", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_CreateProject_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"projects"}, ""))
+ pattern_ManagementService_CreateProject_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"projects"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_UpdateProject_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1}, []string{"projects", "id"}, ""))
+ pattern_ManagementService_UpdateProject_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1}, []string{"projects", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_DeactivateProject_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"projects", "id", "_deactivate"}, ""))
+ pattern_ManagementService_DeactivateProject_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"projects", "id", "_deactivate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ReactivateProject_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"projects", "id", "_reactivate"}, ""))
+ pattern_ManagementService_ReactivateProject_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"projects", "id", "_reactivate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_SearchGrantedProjects_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"grantedprojects", "_search"}, ""))
+ pattern_ManagementService_SearchGrantedProjects_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"grantedprojects", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetGrantedProjectByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"grantedprojects", "project_id", "grants", "id"}, ""))
+ pattern_ManagementService_GetGrantedProjectByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"grantedprojects", "project_id", "grants", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetProjectMemberRoles_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"projects", "members", "roles"}, ""))
+ pattern_ManagementService_GetProjectMemberRoles_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"projects", "members", "roles"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_SearchProjectMembers_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3}, []string{"projects", "project_id", "members", "_search"}, ""))
+ pattern_ManagementService_SearchProjectMembers_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3}, []string{"projects", "project_id", "members", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_AddProjectMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"projects", "id", "members"}, ""))
+ pattern_ManagementService_AddProjectMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"projects", "id", "members"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ChangeProjectMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "id", "members", "user_id"}, ""))
+ pattern_ManagementService_ChangeProjectMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "id", "members", "user_id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_RemoveProjectMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "id", "members", "user_id"}, ""))
+ pattern_ManagementService_RemoveProjectMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "id", "members", "user_id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_SearchProjectRoles_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3}, []string{"projects", "project_id", "roles", "_search"}, ""))
+ pattern_ManagementService_SearchProjectRoles_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3}, []string{"projects", "project_id", "roles", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_AddProjectRole_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"projects", "id", "roles"}, ""))
+ pattern_ManagementService_AddProjectRole_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"projects", "id", "roles"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ChangeProjectRole_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "id", "roles", "key"}, ""))
+ pattern_ManagementService_ChangeProjectRole_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "id", "roles", "key"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_RemoveProjectRole_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "id", "roles", "key"}, ""))
+ pattern_ManagementService_RemoveProjectRole_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "id", "roles", "key"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_SearchApplications_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3}, []string{"projects", "project_id", "applications", "_search"}, ""))
+ pattern_ManagementService_SearchApplications_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3}, []string{"projects", "project_id", "applications", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ApplicationByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "project_id", "applications", "id"}, ""))
+ pattern_ManagementService_ApplicationByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "project_id", "applications", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_CreateOIDCApplication_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"projects", "project_id", "oidcapplications"}, ""))
+ pattern_ManagementService_CreateOIDCApplication_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"projects", "project_id", "oidcapplications"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_UpdateApplication_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "project_id", "applications", "id"}, ""))
+ pattern_ManagementService_UpdateApplication_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "project_id", "applications", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_DeactivateApplication_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projects", "project_id", "applications", "id", "_deactivate"}, ""))
+ pattern_ManagementService_DeactivateApplication_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projects", "project_id", "applications", "id", "_deactivate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ReactivateApplication_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projects", "project_id", "applications", "id", "_reactivate"}, ""))
+ pattern_ManagementService_ReactivateApplication_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projects", "project_id", "applications", "id", "_reactivate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_RemoveApplication_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "project_id", "applications", "id"}, ""))
+ pattern_ManagementService_RemoveApplication_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "project_id", "applications", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_UpdateApplicationOIDCConfig_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projects", "project_id", "applications", "application_id", "oidcconfig"}, ""))
+ pattern_ManagementService_UpdateApplicationOIDCConfig_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projects", "project_id", "applications", "application_id", "oidcconfig"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_RegenerateOIDCClientSecret_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 2, 5}, []string{"projects", "project_id", "applications", "id", "oidcconfig", "_changeclientsecret"}, ""))
+ pattern_ManagementService_RegenerateOIDCClientSecret_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 2, 5}, []string{"projects", "project_id", "applications", "id", "oidcconfig", "_changeclientsecret"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_SearchProjectGrants_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3}, []string{"projects", "project_id", "grants", "_search"}, ""))
+ pattern_ManagementService_SearchProjectGrants_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3}, []string{"projects", "project_id", "grants", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ProjectGrantByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "project_id", "grants", "id"}, ""))
+ pattern_ManagementService_ProjectGrantByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "project_id", "grants", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_CreateProjectGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"projects", "project_id", "grants"}, ""))
+ pattern_ManagementService_CreateProjectGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"projects", "project_id", "grants"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_UpdateProjectGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "project_id", "grants", "id"}, ""))
+ pattern_ManagementService_UpdateProjectGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "project_id", "grants", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_DeactivateProjectGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projects", "project_id", "grants", "id", "_deactivate"}, ""))
+ pattern_ManagementService_DeactivateProjectGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projects", "project_id", "grants", "id", "_deactivate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ReactivateProjectGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projects", "project_id", "grants", "id", "_reactivate"}, ""))
+ pattern_ManagementService_ReactivateProjectGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projects", "project_id", "grants", "id", "_reactivate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_RemoveProjectGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "project_id", "grants", "id"}, ""))
+ pattern_ManagementService_RemoveProjectGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"projects", "project_id", "grants", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_GetProjectGrantMemberRoles_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"projects", "grants", "members", "roles"}, ""))
+ pattern_ManagementService_GetProjectGrantMemberRoles_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"projects", "grants", "members", "roles"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_SearchProjectGrantMembers_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 2, 5}, []string{"projects", "project_id", "grants", "grant_id", "members", "_search"}, ""))
+ pattern_ManagementService_SearchProjectGrantMembers_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 2, 5}, []string{"projects", "project_id", "grants", "grant_id", "members", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_AddProjectGrantMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projects", "project_id", "grants", "grant_id", "members"}, ""))
+ pattern_ManagementService_AddProjectGrantMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projects", "project_id", "grants", "grant_id", "members"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ChangeProjectGrantMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"projects", "project_id", "grants", "grant_id", "members", "user_id"}, ""))
+ pattern_ManagementService_ChangeProjectGrantMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"projects", "project_id", "grants", "grant_id", "members", "user_id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_RemoveProjectGrantMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"projects", "project_id", "grants", "grant_id", "members", "user_id"}, ""))
+ pattern_ManagementService_RemoveProjectGrantMember_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"projects", "project_id", "grants", "grant_id", "members", "user_id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_SearchUserGrants_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "grants", "_search"}, ""))
+ pattern_ManagementService_SearchUserGrants_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"users", "grants", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_UserGrantByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"users", "user_id", "grants", "id"}, ""))
+ pattern_ManagementService_UserGrantByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"users", "user_id", "grants", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_CreateUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "user_id", "grants"}, ""))
+ pattern_ManagementService_CreateUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "user_id", "grants"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_UpdateUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"users", "user_id", "grants", "id"}, ""))
+ pattern_ManagementService_UpdateUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"users", "user_id", "grants", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_DeactivateUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"users", "user_id", "grants", "id", "_deactivate"}, ""))
+ pattern_ManagementService_DeactivateUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"users", "user_id", "grants", "id", "_deactivate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ReactivateUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"users", "user_id", "grants", "id", "_reactivate"}, ""))
+ pattern_ManagementService_ReactivateUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"users", "user_id", "grants", "id", "_reactivate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_RemoveUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"users", "user_id", "grants", "id"}, ""))
+ pattern_ManagementService_RemoveUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"users", "user_id", "grants", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_SearchProjectUserGrants_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3, 2, 4}, []string{"projects", "project_id", "users", "grants", "_search"}, ""))
+ pattern_ManagementService_SearchProjectUserGrants_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3, 2, 4}, []string{"projects", "project_id", "users", "grants", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ProjectUserGrantByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"projects", "project_id", "users", "user_id", "grants", "id"}, ""))
+ pattern_ManagementService_ProjectUserGrantByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"projects", "project_id", "users", "user_id", "grants", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_CreateProjectUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projects", "project_id", "users", "user_id", "grants"}, ""))
+ pattern_ManagementService_CreateProjectUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projects", "project_id", "users", "user_id", "grants"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_UpdateProjectUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"projects", "project_id", "users", "user_id", "grants", "id"}, ""))
+ pattern_ManagementService_UpdateProjectUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"projects", "project_id", "users", "user_id", "grants", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_DeactivateProjectUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"projects", "project_id", "users", "user_id", "grants", "id", "_deactivate"}, ""))
+ pattern_ManagementService_DeactivateProjectUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"projects", "project_id", "users", "user_id", "grants", "id", "_deactivate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ReactivateProjectUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"projects", "project_id", "users", "user_id", "grants", "id", "_reactivate"}, ""))
+ pattern_ManagementService_ReactivateProjectUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"projects", "project_id", "users", "user_id", "grants", "id", "_reactivate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_SearchProjectGrantUserGrants_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3, 2, 4}, []string{"projectgrants", "project_grant_id", "users", "grants", "_search"}, ""))
+ pattern_ManagementService_SearchProjectGrantUserGrants_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3, 2, 4}, []string{"projectgrants", "project_grant_id", "users", "grants", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ProjectGrantUserGrantByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"projectgrants", "project_grant_id", "users", "user_id", "grants", "id"}, ""))
+ pattern_ManagementService_ProjectGrantUserGrantByID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"projectgrants", "project_grant_id", "users", "user_id", "grants", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_CreateProjectGrantUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projectgrants", "project_grant_id", "users", "user_id", "grants"}, ""))
+ pattern_ManagementService_CreateProjectGrantUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4}, []string{"projectgrants", "project_grant_id", "users", "user_id", "grants"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_UpdateProjectGrantUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"projectgrants", "project_grant_id", "users", "user_id", "grants", "id"}, ""))
+ pattern_ManagementService_UpdateProjectGrantUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"projectgrants", "project_grant_id", "users", "user_id", "grants", "id"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_DeactivateProjectGrantUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"projectgrants", "project_grant_id", "users", "user_id", "grants", "id", "_deactivate"}, ""))
+ pattern_ManagementService_DeactivateProjectGrantUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"projectgrants", "project_grant_id", "users", "user_id", "grants", "id", "_deactivate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_ReactivateProjectGrantUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"projectgrants", "project_grant_id", "users", "user_id", "grants", "id", "_reactivate"}, ""))
+ pattern_ManagementService_ReactivateProjectGrantUserGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 1, 0, 4, 1, 5, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"projectgrants", "project_grant_id", "users", "user_id", "grants", "id", "_reactivate"}, "", runtime.AssumeColonVerbOpt(true)))
- pattern_ManagementService_SearchAuthGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"authgrants", "_search"}, ""))
+ pattern_ManagementService_SearchAuthGrant_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"authgrants", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
)
var (
diff --git a/pkg/management/api/grpc/management.swagger.json b/pkg/management/api/grpc/management.swagger.json
index c568889420..51cb1c2028 100644
--- a/pkg/management/api/grpc/management.swagger.json
+++ b/pkg/management/api/grpc/management.swagger.json
@@ -3475,7 +3475,7 @@
"200": {
"description": "A successful response.",
"schema": {
- "$ref": "#/definitions/protobufStruct"
+ "type": "object"
}
}
},
@@ -3486,19 +3486,6 @@
}
},
"definitions": {
- "protobufListValue": {
- "type": "object",
- "properties": {
- "values": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/protobufValue"
- },
- "description": "Repeated field of dynamically typed values."
- }
- },
- "description": "`ListValue` is a wrapper around a repeated field of values.\n\nThe JSON representation for `ListValue` is JSON array."
- },
"protobufNullValue": {
"type": "string",
"enum": [
@@ -3507,51 +3494,6 @@
"default": "NULL_VALUE",
"description": "`NullValue` is a singleton enumeration to represent the null value for the\n`Value` type union.\n\n The JSON representation for `NullValue` is JSON `null`.\n\n - NULL_VALUE: Null value."
},
- "protobufStruct": {
- "type": "object",
- "properties": {
- "fields": {
- "type": "object",
- "additionalProperties": {
- "$ref": "#/definitions/protobufValue"
- },
- "description": "Unordered map of dynamically typed values."
- }
- },
- "description": "`Struct` represents a structured data value, consisting of fields\nwhich map to dynamically typed values. In some languages, `Struct`\nmight be supported by a native representation. For example, in\nscripting languages like JS a struct is represented as an\nobject. The details of that representation are described together\nwith the proto support for the language.\n\nThe JSON representation for `Struct` is JSON object."
- },
- "protobufValue": {
- "type": "object",
- "properties": {
- "null_value": {
- "$ref": "#/definitions/protobufNullValue",
- "description": "Represents a null value."
- },
- "number_value": {
- "type": "number",
- "format": "double",
- "description": "Represents a double value."
- },
- "string_value": {
- "type": "string",
- "description": "Represents a string value."
- },
- "bool_value": {
- "type": "boolean",
- "format": "boolean",
- "description": "Represents a boolean value."
- },
- "struct_value": {
- "$ref": "#/definitions/protobufStruct",
- "description": "Represents a structured value."
- },
- "list_value": {
- "$ref": "#/definitions/protobufListValue",
- "description": "Represents a repeated `Value`."
- }
- },
- "description": "`Value` represents a dynamically typed value which can be either\nnull, a number, a string, a boolean, a recursive struct value, or a\nlist of values. A producer of value is expected to set one of that\nvariants, absence of any variant indicates an error.\n\nThe JSON representation for `Value` is JSON value."
- },
"v1AddOrgDomainRequest": {
"type": "object",
"properties": {
@@ -3844,7 +3786,7 @@
"type": "string"
},
"data": {
- "$ref": "#/definitions/protobufStruct"
+ "type": "object"
}
}
},
@@ -3904,9 +3846,6 @@
"nick_name": {
"type": "string"
},
- "display_name": {
- "type": "string"
- },
"preferred_language": {
"type": "string"
},
@@ -5877,9 +5816,6 @@
"nick_name": {
"type": "string"
},
- "display_name": {
- "type": "string"
- },
"preferred_language": {
"type": "string"
},
diff --git a/pkg/management/api/grpc/mock/management.proto.mock.go b/pkg/management/api/grpc/mock/management.proto.mock.go
index be85bb52a4..a67fcf974c 100644
--- a/pkg/management/api/grpc/mock/management.proto.mock.go
+++ b/pkg/management/api/grpc/mock/management.proto.mock.go
@@ -757,6 +757,26 @@ func (mr *MockManagementServiceClientMockRecorder) GetGrantedProjectByID(arg0, a
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetGrantedProjectByID", reflect.TypeOf((*MockManagementServiceClient)(nil).GetGrantedProjectByID), varargs...)
}
+// GetIam mocks base method
+func (m *MockManagementServiceClient) GetIam(arg0 context.Context, arg1 *emptypb.Empty, arg2 ...grpc0.CallOption) (*grpc.Iam, error) {
+ m.ctrl.T.Helper()
+ varargs := []interface{}{arg0, arg1}
+ for _, a := range arg2 {
+ varargs = append(varargs, a)
+ }
+ ret := m.ctrl.Call(m, "GetIam", varargs...)
+ ret0, _ := ret[0].(*grpc.Iam)
+ ret1, _ := ret[1].(error)
+ return ret0, ret1
+}
+
+// GetIam indicates an expected call of GetIam
+func (mr *MockManagementServiceClientMockRecorder) GetIam(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
+ mr.mock.ctrl.T.Helper()
+ varargs := append([]interface{}{arg0, arg1}, arg2...)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetIam", reflect.TypeOf((*MockManagementServiceClient)(nil).GetIam), varargs...)
+}
+
// GetOrgByDomainGlobal mocks base method
func (m *MockManagementServiceClient) GetOrgByDomainGlobal(arg0 context.Context, arg1 *grpc.OrgDomain, arg2 ...grpc0.CallOption) (*grpc.Org, error) {
m.ctrl.T.Helper()
@@ -918,14 +938,14 @@ func (mr *MockManagementServiceClientMockRecorder) GetProjectMemberRoles(arg0, a
}
// GetUserAddress mocks base method
-func (m *MockManagementServiceClient) GetUserAddress(arg0 context.Context, arg1 *grpc.UserID, arg2 ...grpc0.CallOption) (*grpc.UserAddress, error) {
+func (m *MockManagementServiceClient) GetUserAddress(arg0 context.Context, arg1 *grpc.UserID, arg2 ...grpc0.CallOption) (*grpc.UserAddressView, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "GetUserAddress", varargs...)
- ret0, _ := ret[0].(*grpc.UserAddress)
+ ret0, _ := ret[0].(*grpc.UserAddressView)
ret1, _ := ret[1].(error)
return ret0, ret1
}
@@ -958,14 +978,14 @@ func (mr *MockManagementServiceClientMockRecorder) GetUserByEmailGlobal(arg0, ar
}
// GetUserByID mocks base method
-func (m *MockManagementServiceClient) GetUserByID(arg0 context.Context, arg1 *grpc.UserID, arg2 ...grpc0.CallOption) (*grpc.User, error) {
+func (m *MockManagementServiceClient) GetUserByID(arg0 context.Context, arg1 *grpc.UserID, arg2 ...grpc0.CallOption) (*grpc.UserView, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "GetUserByID", varargs...)
- ret0, _ := ret[0].(*grpc.User)
+ ret0, _ := ret[0].(*grpc.UserView)
ret1, _ := ret[1].(error)
return ret0, ret1
}
@@ -978,14 +998,14 @@ func (mr *MockManagementServiceClientMockRecorder) GetUserByID(arg0, arg1 interf
}
// GetUserEmail mocks base method
-func (m *MockManagementServiceClient) GetUserEmail(arg0 context.Context, arg1 *grpc.UserID, arg2 ...grpc0.CallOption) (*grpc.UserEmail, error) {
+func (m *MockManagementServiceClient) GetUserEmail(arg0 context.Context, arg1 *grpc.UserID, arg2 ...grpc0.CallOption) (*grpc.UserEmailView, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "GetUserEmail", varargs...)
- ret0, _ := ret[0].(*grpc.UserEmail)
+ ret0, _ := ret[0].(*grpc.UserEmailView)
ret1, _ := ret[1].(error)
return ret0, ret1
}
@@ -1018,14 +1038,14 @@ func (mr *MockManagementServiceClientMockRecorder) GetUserMfas(arg0, arg1 interf
}
// GetUserPhone mocks base method
-func (m *MockManagementServiceClient) GetUserPhone(arg0 context.Context, arg1 *grpc.UserID, arg2 ...grpc0.CallOption) (*grpc.UserPhone, error) {
+func (m *MockManagementServiceClient) GetUserPhone(arg0 context.Context, arg1 *grpc.UserID, arg2 ...grpc0.CallOption) (*grpc.UserPhoneView, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "GetUserPhone", varargs...)
- ret0, _ := ret[0].(*grpc.UserPhone)
+ ret0, _ := ret[0].(*grpc.UserPhoneView)
ret1, _ := ret[1].(error)
return ret0, ret1
}
@@ -1038,14 +1058,14 @@ func (mr *MockManagementServiceClientMockRecorder) GetUserPhone(arg0, arg1 inter
}
// GetUserProfile mocks base method
-func (m *MockManagementServiceClient) GetUserProfile(arg0 context.Context, arg1 *grpc.UserID, arg2 ...grpc0.CallOption) (*grpc.UserProfile, error) {
+func (m *MockManagementServiceClient) GetUserProfile(arg0 context.Context, arg1 *grpc.UserID, arg2 ...grpc0.CallOption) (*grpc.UserProfileView, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "GetUserProfile", varargs...)
- ret0, _ := ret[0].(*grpc.UserProfile)
+ ret0, _ := ret[0].(*grpc.UserProfileView)
ret1, _ := ret[1].(error)
return ret0, ret1
}
diff --git a/pkg/management/api/grpc/user_converter.go b/pkg/management/api/grpc/user_converter.go
index 0d2035b1b6..74752c3dba 100644
--- a/pkg/management/api/grpc/user_converter.go
+++ b/pkg/management/api/grpc/user_converter.go
@@ -61,7 +61,6 @@ func userCreateToModel(u *CreateUserRequest) *usr_model.User {
FirstName: u.FirstName,
LastName: u.LastName,
NickName: u.NickName,
- DisplayName: u.DisplayName,
PreferredLanguage: preferredLanguage,
Gender: genderToModel(u.Gender),
},
@@ -193,7 +192,6 @@ func updateProfileToModel(u *UpdateUserProfileRequest) *usr_model.Profile {
FirstName: u.FirstName,
LastName: u.LastName,
NickName: u.NickName,
- DisplayName: u.DisplayName,
PreferredLanguage: preferredLanguage,
Gender: genderToModel(u.Gender),
}
diff --git a/pkg/management/api/proto/management.proto b/pkg/management/api/proto/management.proto
index dc5ce00bb6..f6526925e0 100644
--- a/pkg/management/api/proto/management.proto
+++ b/pkg/management/api/proto/management.proto
@@ -1336,19 +1336,18 @@ message CreateUserRequest {
string first_name = 2 [(validate.rules).string = {min_len: 1, max_len: 200}];
string last_name = 3 [(validate.rules).string = {min_len: 1, max_len: 200}];
string nick_name = 4 [(validate.rules).string = {max_len: 200}];
- string display_name = 5[(validate.rules).string = {max_len: 200}];
- string preferred_language = 6[(validate.rules).string = {max_len: 200}];
- Gender gender = 7;
- string email = 8 [(validate.rules).string = {min_len: 1, max_len: 200, email: true}];
- bool is_email_verified = 9;
- string phone = 11 [(validate.rules).string = {max_len: 20}];
- bool is_phone_verified = 12;
- string country = 13 [(validate.rules).string = {max_len: 200}];
- string locality = 14 [(validate.rules).string = {max_len: 200}];
- string postal_code = 15 [(validate.rules).string = {max_len: 200}];
- string region = 16 [(validate.rules).string = {max_len: 200}];
- string street_address = 17 [(validate.rules).string = {max_len: 200}];
- string password = 18 [(validate.rules).string = {max_len: 72}];
+ string preferred_language = 5[(validate.rules).string = {max_len: 200}];
+ Gender gender = 6;
+ string email = 7 [(validate.rules).string = {min_len: 1, max_len: 200, email: true}];
+ bool is_email_verified = 8;
+ string phone = 9 [(validate.rules).string = {max_len: 20}];
+ bool is_phone_verified = 10;
+ string country = 11 [(validate.rules).string = {max_len: 200}];
+ string locality = 12 [(validate.rules).string = {max_len: 200}];
+ string postal_code = 13 [(validate.rules).string = {max_len: 200}];
+ string region = 14 [(validate.rules).string = {max_len: 200}];
+ string street_address = 15 [(validate.rules).string = {max_len: 200}];
+ string password = 16 [(validate.rules).string = {max_len: 72}];
}
message User {
@@ -1497,9 +1496,8 @@ message UpdateUserProfileRequest {
string first_name = 2 [(validate.rules).string = {min_len: 1, max_len: 200}];
string last_name = 3 [(validate.rules).string = {min_len: 1, max_len: 200}];
string nick_name = 4 [(validate.rules).string = {max_len: 200}];
- string display_name = 5 [(validate.rules).string = {max_len: 200}];
- string preferred_language = 6 [(validate.rules).string = {max_len: 200}];
- Gender gender = 7;
+ string preferred_language = 5 [(validate.rules).string = {max_len: 200}];
+ Gender gender = 6;
}
message UserEmail {