mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +00:00
12570 lines
485 KiB
Go
12570 lines
485 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// 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"
|
|
_ "github.com/golang/protobuf/protoc-gen-go/descriptor"
|
|
empty "github.com/golang/protobuf/ptypes/empty"
|
|
_struct "github.com/golang/protobuf/ptypes/struct"
|
|
timestamp "github.com/golang/protobuf/ptypes/timestamp"
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger/options"
|
|
_ "google.golang.org/genproto/googleapis/api/annotations"
|
|
grpc "google.golang.org/grpc"
|
|
codes "google.golang.org/grpc/codes"
|
|
status "google.golang.org/grpc/status"
|
|
math "math"
|
|
)
|
|
|
|
// 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 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
|
|
|
|
const (
|
|
UserState_USERSTATE_UNSPECIFIED UserState = 0
|
|
UserState_USERSTATE_ACTIVE UserState = 1
|
|
UserState_USERSTATE_INACTIVE UserState = 2
|
|
UserState_USERSTATE_DELETED UserState = 3
|
|
UserState_USERSTATE_LOCKED UserState = 4
|
|
UserState_USERSTATE_SUSPEND UserState = 5
|
|
UserState_USERSTATE_INITIAL UserState = 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",
|
|
}
|
|
|
|
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 proto.EnumName(UserState_name, int32(x))
|
|
}
|
|
|
|
func (UserState) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{0}
|
|
}
|
|
|
|
type Gender int32
|
|
|
|
const (
|
|
Gender_GENDER_UNSPECIFIED Gender = 0
|
|
Gender_GENDER_FEMALE Gender = 1
|
|
Gender_GENDER_MALE Gender = 2
|
|
Gender_GENDER_DIVERSE Gender = 3
|
|
)
|
|
|
|
var Gender_name = map[int32]string{
|
|
0: "GENDER_UNSPECIFIED",
|
|
1: "GENDER_FEMALE",
|
|
2: "GENDER_MALE",
|
|
3: "GENDER_DIVERSE",
|
|
}
|
|
|
|
var Gender_value = map[string]int32{
|
|
"GENDER_UNSPECIFIED": 0,
|
|
"GENDER_FEMALE": 1,
|
|
"GENDER_MALE": 2,
|
|
"GENDER_DIVERSE": 3,
|
|
}
|
|
|
|
func (x Gender) String() string {
|
|
return proto.EnumName(Gender_name, int32(x))
|
|
}
|
|
|
|
func (Gender) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{1}
|
|
}
|
|
|
|
type UserSearchKey int32
|
|
|
|
const (
|
|
UserSearchKey_USERSEARCHKEY_UNSPECIFIED UserSearchKey = 0
|
|
UserSearchKey_USERSEARCHKEY_USER_NAME UserSearchKey = 1
|
|
UserSearchKey_USERSEARCHKEY_FIRST_NAME UserSearchKey = 2
|
|
UserSearchKey_USERSEARCHKEY_LAST_NAME UserSearchKey = 3
|
|
UserSearchKey_USERSEARCHKEY_NICK_NAME UserSearchKey = 4
|
|
UserSearchKey_USERSEARCHKEY_DISPLAY_NAME UserSearchKey = 5
|
|
UserSearchKey_USERSEARCHKEY_EMAIL UserSearchKey = 6
|
|
UserSearchKey_USERSEARCHKEY_STATE UserSearchKey = 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",
|
|
}
|
|
|
|
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 proto.EnumName(UserSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (UserSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{2}
|
|
}
|
|
|
|
type SearchMethod int32
|
|
|
|
const (
|
|
SearchMethod_SEARCHMETHOD_EQUALS SearchMethod = 0
|
|
SearchMethod_SEARCHMETHOD_STARTS_WITH SearchMethod = 1
|
|
SearchMethod_SEARCHMETHOD_CONTAINS SearchMethod = 2
|
|
)
|
|
|
|
var SearchMethod_name = map[int32]string{
|
|
0: "SEARCHMETHOD_EQUALS",
|
|
1: "SEARCHMETHOD_STARTS_WITH",
|
|
2: "SEARCHMETHOD_CONTAINS",
|
|
}
|
|
|
|
var SearchMethod_value = map[string]int32{
|
|
"SEARCHMETHOD_EQUALS": 0,
|
|
"SEARCHMETHOD_STARTS_WITH": 1,
|
|
"SEARCHMETHOD_CONTAINS": 2,
|
|
}
|
|
|
|
func (x SearchMethod) String() string {
|
|
return proto.EnumName(SearchMethod_name, int32(x))
|
|
}
|
|
|
|
func (SearchMethod) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{3}
|
|
}
|
|
|
|
type MfaType int32
|
|
|
|
const (
|
|
MfaType_MFATYPE_UNSPECIFIED MfaType = 0
|
|
MfaType_MFATYPE_SMS MfaType = 1
|
|
MfaType_MFATYPE_OTP MfaType = 2
|
|
)
|
|
|
|
var MfaType_name = map[int32]string{
|
|
0: "MFATYPE_UNSPECIFIED",
|
|
1: "MFATYPE_SMS",
|
|
2: "MFATYPE_OTP",
|
|
}
|
|
|
|
var MfaType_value = map[string]int32{
|
|
"MFATYPE_UNSPECIFIED": 0,
|
|
"MFATYPE_SMS": 1,
|
|
"MFATYPE_OTP": 2,
|
|
}
|
|
|
|
func (x MfaType) String() string {
|
|
return proto.EnumName(MfaType_name, int32(x))
|
|
}
|
|
|
|
func (MfaType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{4}
|
|
}
|
|
|
|
type MFAState int32
|
|
|
|
const (
|
|
MFAState_MFASTATE_UNSPECIFIED MFAState = 0
|
|
MFAState_MFASTATE_NOT_READY MFAState = 1
|
|
MFAState_MFASTATE_READY MFAState = 2
|
|
MFAState_MFASTATE_REMOVED MFAState = 3
|
|
)
|
|
|
|
var MFAState_name = map[int32]string{
|
|
0: "MFASTATE_UNSPECIFIED",
|
|
1: "MFASTATE_NOT_READY",
|
|
2: "MFASTATE_READY",
|
|
3: "MFASTATE_REMOVED",
|
|
}
|
|
|
|
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 proto.EnumName(MFAState_name, int32(x))
|
|
}
|
|
|
|
func (MFAState) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{5}
|
|
}
|
|
|
|
type NotificationType int32
|
|
|
|
const (
|
|
NotificationType_NOTIFICATIONTYPE_EMAIL NotificationType = 0
|
|
NotificationType_NOTIFICATIONTYPE_SMS NotificationType = 1
|
|
)
|
|
|
|
var NotificationType_name = map[int32]string{
|
|
0: "NOTIFICATIONTYPE_EMAIL",
|
|
1: "NOTIFICATIONTYPE_SMS",
|
|
}
|
|
|
|
var NotificationType_value = map[string]int32{
|
|
"NOTIFICATIONTYPE_EMAIL": 0,
|
|
"NOTIFICATIONTYPE_SMS": 1,
|
|
}
|
|
|
|
func (x NotificationType) String() string {
|
|
return proto.EnumName(NotificationType_name, int32(x))
|
|
}
|
|
|
|
func (NotificationType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{6}
|
|
}
|
|
|
|
type PolicyState int32
|
|
|
|
const (
|
|
PolicyState_POLICYSTATE_UNSPECIFIED PolicyState = 0
|
|
PolicyState_POLICYSTATE_ACTIVE PolicyState = 1
|
|
PolicyState_POLICYSTATE_INACTIVE PolicyState = 2
|
|
PolicyState_POLICYSTATE_DELETED PolicyState = 3
|
|
)
|
|
|
|
var PolicyState_name = map[int32]string{
|
|
0: "POLICYSTATE_UNSPECIFIED",
|
|
1: "POLICYSTATE_ACTIVE",
|
|
2: "POLICYSTATE_INACTIVE",
|
|
3: "POLICYSTATE_DELETED",
|
|
}
|
|
|
|
var PolicyState_value = map[string]int32{
|
|
"POLICYSTATE_UNSPECIFIED": 0,
|
|
"POLICYSTATE_ACTIVE": 1,
|
|
"POLICYSTATE_INACTIVE": 2,
|
|
"POLICYSTATE_DELETED": 3,
|
|
}
|
|
|
|
func (x PolicyState) String() string {
|
|
return proto.EnumName(PolicyState_name, int32(x))
|
|
}
|
|
|
|
func (PolicyState) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{7}
|
|
}
|
|
|
|
type OrgState int32
|
|
|
|
const (
|
|
OrgState_ORGSTATE_UNSPECIFIED OrgState = 0
|
|
OrgState_ORGSTATE_ACTIVE OrgState = 1
|
|
OrgState_ORGSTATE_INACTIVE OrgState = 2
|
|
)
|
|
|
|
var OrgState_name = map[int32]string{
|
|
0: "ORGSTATE_UNSPECIFIED",
|
|
1: "ORGSTATE_ACTIVE",
|
|
2: "ORGSTATE_INACTIVE",
|
|
}
|
|
|
|
var OrgState_value = map[string]int32{
|
|
"ORGSTATE_UNSPECIFIED": 0,
|
|
"ORGSTATE_ACTIVE": 1,
|
|
"ORGSTATE_INACTIVE": 2,
|
|
}
|
|
|
|
func (x OrgState) String() string {
|
|
return proto.EnumName(OrgState_name, int32(x))
|
|
}
|
|
|
|
func (OrgState) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{8}
|
|
}
|
|
|
|
type OrgMemberSearchKey int32
|
|
|
|
const (
|
|
OrgMemberSearchKey_ORGMEMBERSEARCHKEY_UNSPECIFIED OrgMemberSearchKey = 0
|
|
OrgMemberSearchKey_ORGMEMBERSEARCHKEY_FIRST_NAME OrgMemberSearchKey = 1
|
|
OrgMemberSearchKey_ORGMEMBERSEARCHKEY_LAST_NAME OrgMemberSearchKey = 2
|
|
OrgMemberSearchKey_ORGMEMBERSEARCHKEY_EMAIL OrgMemberSearchKey = 3
|
|
OrgMemberSearchKey_ORGMEMBERSEARCHKEY_USER_ID OrgMemberSearchKey = 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",
|
|
}
|
|
|
|
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 proto.EnumName(OrgMemberSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (OrgMemberSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{9}
|
|
}
|
|
|
|
type ProjectState int32
|
|
|
|
const (
|
|
ProjectState_PROJECTSTATE_UNSPECIFIED ProjectState = 0
|
|
ProjectState_PROJECTSTATE_ACTIVE ProjectState = 1
|
|
ProjectState_PROJECTSSTATE_INACTIVE ProjectState = 2
|
|
)
|
|
|
|
var ProjectState_name = map[int32]string{
|
|
0: "PROJECTSTATE_UNSPECIFIED",
|
|
1: "PROJECTSTATE_ACTIVE",
|
|
2: "PROJECTSSTATE_INACTIVE",
|
|
}
|
|
|
|
var ProjectState_value = map[string]int32{
|
|
"PROJECTSTATE_UNSPECIFIED": 0,
|
|
"PROJECTSTATE_ACTIVE": 1,
|
|
"PROJECTSSTATE_INACTIVE": 2,
|
|
}
|
|
|
|
func (x ProjectState) String() string {
|
|
return proto.EnumName(ProjectState_name, int32(x))
|
|
}
|
|
|
|
func (ProjectState) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{10}
|
|
}
|
|
|
|
type ProjectType int32
|
|
|
|
const (
|
|
ProjectType_PROJECTTYPE_UNKNOWN ProjectType = 0
|
|
ProjectType_PROJECTTYPE_SELF ProjectType = 1
|
|
ProjectType_PROJECTTYPE_GRANTED ProjectType = 2
|
|
)
|
|
|
|
var ProjectType_name = map[int32]string{
|
|
0: "PROJECTTYPE_UNKNOWN",
|
|
1: "PROJECTTYPE_SELF",
|
|
2: "PROJECTTYPE_GRANTED",
|
|
}
|
|
|
|
var ProjectType_value = map[string]int32{
|
|
"PROJECTTYPE_UNKNOWN": 0,
|
|
"PROJECTTYPE_SELF": 1,
|
|
"PROJECTTYPE_GRANTED": 2,
|
|
}
|
|
|
|
func (x ProjectType) String() string {
|
|
return proto.EnumName(ProjectType_name, int32(x))
|
|
}
|
|
|
|
func (ProjectType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{11}
|
|
}
|
|
|
|
type ProjectSearchKey int32
|
|
|
|
const (
|
|
ProjectSearchKey_PROJECTSEARCHKEY_UNSPECIFIED ProjectSearchKey = 0
|
|
ProjectSearchKey_PROJECTSEARCHKEY_PROJECT_NAME ProjectSearchKey = 1
|
|
)
|
|
|
|
var ProjectSearchKey_name = map[int32]string{
|
|
0: "PROJECTSEARCHKEY_UNSPECIFIED",
|
|
1: "PROJECTSEARCHKEY_PROJECT_NAME",
|
|
}
|
|
|
|
var ProjectSearchKey_value = map[string]int32{
|
|
"PROJECTSEARCHKEY_UNSPECIFIED": 0,
|
|
"PROJECTSEARCHKEY_PROJECT_NAME": 1,
|
|
}
|
|
|
|
func (x ProjectSearchKey) String() string {
|
|
return proto.EnumName(ProjectSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (ProjectSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{12}
|
|
}
|
|
|
|
type ProjectRoleSearchKey int32
|
|
|
|
const (
|
|
ProjectRoleSearchKey_PROJECTROLESEARCHKEY_UNSPECIFIED ProjectRoleSearchKey = 0
|
|
ProjectRoleSearchKey_PROJECTROLESEARCHKEY_NAME ProjectRoleSearchKey = 1
|
|
ProjectRoleSearchKey_PROJECTROLESEARCHKEY_DISPLAY_NAME ProjectRoleSearchKey = 2
|
|
)
|
|
|
|
var ProjectRoleSearchKey_name = map[int32]string{
|
|
0: "PROJECTROLESEARCHKEY_UNSPECIFIED",
|
|
1: "PROJECTROLESEARCHKEY_NAME",
|
|
2: "PROJECTROLESEARCHKEY_DISPLAY_NAME",
|
|
}
|
|
|
|
var ProjectRoleSearchKey_value = map[string]int32{
|
|
"PROJECTROLESEARCHKEY_UNSPECIFIED": 0,
|
|
"PROJECTROLESEARCHKEY_NAME": 1,
|
|
"PROJECTROLESEARCHKEY_DISPLAY_NAME": 2,
|
|
}
|
|
|
|
func (x ProjectRoleSearchKey) String() string {
|
|
return proto.EnumName(ProjectRoleSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (ProjectRoleSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{13}
|
|
}
|
|
|
|
type ProjectMemberSearchKey int32
|
|
|
|
const (
|
|
ProjectMemberSearchKey_PROJECTMEMBERSEARCHKEY_UNSPECIFIED ProjectMemberSearchKey = 0
|
|
ProjectMemberSearchKey_PROJECTMEMBERSEARCHKEY_FIRST_NAME ProjectMemberSearchKey = 1
|
|
ProjectMemberSearchKey_PROJECTMEMBERSEARCHKEY_LAST_NAME ProjectMemberSearchKey = 2
|
|
ProjectMemberSearchKey_PROJECTMEMBERSEARCHKEY_EMAIL ProjectMemberSearchKey = 3
|
|
ProjectMemberSearchKey_PROJECTMEMBERSEARCHKEY_USER_ID ProjectMemberSearchKey = 4
|
|
)
|
|
|
|
var ProjectMemberSearchKey_name = map[int32]string{
|
|
0: "PROJECTMEMBERSEARCHKEY_UNSPECIFIED",
|
|
1: "PROJECTMEMBERSEARCHKEY_FIRST_NAME",
|
|
2: "PROJECTMEMBERSEARCHKEY_LAST_NAME",
|
|
3: "PROJECTMEMBERSEARCHKEY_EMAIL",
|
|
4: "PROJECTMEMBERSEARCHKEY_USER_ID",
|
|
}
|
|
|
|
var ProjectMemberSearchKey_value = map[string]int32{
|
|
"PROJECTMEMBERSEARCHKEY_UNSPECIFIED": 0,
|
|
"PROJECTMEMBERSEARCHKEY_FIRST_NAME": 1,
|
|
"PROJECTMEMBERSEARCHKEY_LAST_NAME": 2,
|
|
"PROJECTMEMBERSEARCHKEY_EMAIL": 3,
|
|
"PROJECTMEMBERSEARCHKEY_USER_ID": 4,
|
|
}
|
|
|
|
func (x ProjectMemberSearchKey) String() string {
|
|
return proto.EnumName(ProjectMemberSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (ProjectMemberSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{14}
|
|
}
|
|
|
|
type AppState int32
|
|
|
|
const (
|
|
AppState_APPSTATE_UNSPECIFIED AppState = 0
|
|
AppState_APPSTATE_ACTIVE AppState = 1
|
|
AppState_APPSTATE_INACTIVE AppState = 2
|
|
)
|
|
|
|
var AppState_name = map[int32]string{
|
|
0: "APPSTATE_UNSPECIFIED",
|
|
1: "APPSTATE_ACTIVE",
|
|
2: "APPSTATE_INACTIVE",
|
|
}
|
|
|
|
var AppState_value = map[string]int32{
|
|
"APPSTATE_UNSPECIFIED": 0,
|
|
"APPSTATE_ACTIVE": 1,
|
|
"APPSTATE_INACTIVE": 2,
|
|
}
|
|
|
|
func (x AppState) String() string {
|
|
return proto.EnumName(AppState_name, int32(x))
|
|
}
|
|
|
|
func (AppState) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{15}
|
|
}
|
|
|
|
type OIDCResponseType int32
|
|
|
|
const (
|
|
OIDCResponseType_OIDCRESPONSETYPE_CODE OIDCResponseType = 0
|
|
OIDCResponseType_OIDCRESPONSETYPE_ID_TOKEN OIDCResponseType = 1
|
|
OIDCResponseType_OIDCRESPONSETYPE_TOKEN_ID_TOKEN OIDCResponseType = 2
|
|
)
|
|
|
|
var OIDCResponseType_name = map[int32]string{
|
|
0: "OIDCRESPONSETYPE_CODE",
|
|
1: "OIDCRESPONSETYPE_ID_TOKEN",
|
|
2: "OIDCRESPONSETYPE_TOKEN_ID_TOKEN",
|
|
}
|
|
|
|
var OIDCResponseType_value = map[string]int32{
|
|
"OIDCRESPONSETYPE_CODE": 0,
|
|
"OIDCRESPONSETYPE_ID_TOKEN": 1,
|
|
"OIDCRESPONSETYPE_TOKEN_ID_TOKEN": 2,
|
|
}
|
|
|
|
func (x OIDCResponseType) String() string {
|
|
return proto.EnumName(OIDCResponseType_name, int32(x))
|
|
}
|
|
|
|
func (OIDCResponseType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{16}
|
|
}
|
|
|
|
type OIDCGrantType int32
|
|
|
|
const (
|
|
OIDCGrantType_OIDCGRANTTYPE_AUTHORIZATION_CODE OIDCGrantType = 0
|
|
OIDCGrantType_OIDCGRANTTYPE_IMPLICIT OIDCGrantType = 1
|
|
OIDCGrantType_OIDCGRANTTYPE_REFRESH_TOKEN OIDCGrantType = 2
|
|
)
|
|
|
|
var OIDCGrantType_name = map[int32]string{
|
|
0: "OIDCGRANTTYPE_AUTHORIZATION_CODE",
|
|
1: "OIDCGRANTTYPE_IMPLICIT",
|
|
2: "OIDCGRANTTYPE_REFRESH_TOKEN",
|
|
}
|
|
|
|
var OIDCGrantType_value = map[string]int32{
|
|
"OIDCGRANTTYPE_AUTHORIZATION_CODE": 0,
|
|
"OIDCGRANTTYPE_IMPLICIT": 1,
|
|
"OIDCGRANTTYPE_REFRESH_TOKEN": 2,
|
|
}
|
|
|
|
func (x OIDCGrantType) String() string {
|
|
return proto.EnumName(OIDCGrantType_name, int32(x))
|
|
}
|
|
|
|
func (OIDCGrantType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{17}
|
|
}
|
|
|
|
type OIDCApplicationType int32
|
|
|
|
const (
|
|
OIDCApplicationType_OIDCAPPLICATIONTYPE_WEB OIDCApplicationType = 0
|
|
OIDCApplicationType_OIDCAPPLICATIONTYPE_USER_AGENT OIDCApplicationType = 1
|
|
OIDCApplicationType_OIDCAPPLICATIONTYPE_NATIVE OIDCApplicationType = 2
|
|
)
|
|
|
|
var OIDCApplicationType_name = map[int32]string{
|
|
0: "OIDCAPPLICATIONTYPE_WEB",
|
|
1: "OIDCAPPLICATIONTYPE_USER_AGENT",
|
|
2: "OIDCAPPLICATIONTYPE_NATIVE",
|
|
}
|
|
|
|
var OIDCApplicationType_value = map[string]int32{
|
|
"OIDCAPPLICATIONTYPE_WEB": 0,
|
|
"OIDCAPPLICATIONTYPE_USER_AGENT": 1,
|
|
"OIDCAPPLICATIONTYPE_NATIVE": 2,
|
|
}
|
|
|
|
func (x OIDCApplicationType) String() string {
|
|
return proto.EnumName(OIDCApplicationType_name, int32(x))
|
|
}
|
|
|
|
func (OIDCApplicationType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{18}
|
|
}
|
|
|
|
type OIDCAuthMethodType int32
|
|
|
|
const (
|
|
OIDCAuthMethodType_OIDCAUTHMETHODTYPE_BASIC OIDCAuthMethodType = 0
|
|
OIDCAuthMethodType_OIDCAUTHMETHODTYPE_POST OIDCAuthMethodType = 1
|
|
OIDCAuthMethodType_OIDCAUTHMETHODTYPE_NONE OIDCAuthMethodType = 2
|
|
)
|
|
|
|
var OIDCAuthMethodType_name = map[int32]string{
|
|
0: "OIDCAUTHMETHODTYPE_BASIC",
|
|
1: "OIDCAUTHMETHODTYPE_POST",
|
|
2: "OIDCAUTHMETHODTYPE_NONE",
|
|
}
|
|
|
|
var OIDCAuthMethodType_value = map[string]int32{
|
|
"OIDCAUTHMETHODTYPE_BASIC": 0,
|
|
"OIDCAUTHMETHODTYPE_POST": 1,
|
|
"OIDCAUTHMETHODTYPE_NONE": 2,
|
|
}
|
|
|
|
func (x OIDCAuthMethodType) String() string {
|
|
return proto.EnumName(OIDCAuthMethodType_name, int32(x))
|
|
}
|
|
|
|
func (OIDCAuthMethodType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{19}
|
|
}
|
|
|
|
type ApplicationSearchKey int32
|
|
|
|
const (
|
|
ApplicationSearchKey_APPLICATIONSERACHKEY_UNSPECIFIED ApplicationSearchKey = 0
|
|
ApplicationSearchKey_APPLICATIONSEARCHKEY_APP_NAME ApplicationSearchKey = 1
|
|
)
|
|
|
|
var ApplicationSearchKey_name = map[int32]string{
|
|
0: "APPLICATIONSERACHKEY_UNSPECIFIED",
|
|
1: "APPLICATIONSEARCHKEY_APP_NAME",
|
|
}
|
|
|
|
var ApplicationSearchKey_value = map[string]int32{
|
|
"APPLICATIONSERACHKEY_UNSPECIFIED": 0,
|
|
"APPLICATIONSEARCHKEY_APP_NAME": 1,
|
|
}
|
|
|
|
func (x ApplicationSearchKey) String() string {
|
|
return proto.EnumName(ApplicationSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (ApplicationSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{20}
|
|
}
|
|
|
|
type ProjectGrantState int32
|
|
|
|
const (
|
|
ProjectGrantState_PROJECTGRANTSTATE_UNSPECIFIED ProjectGrantState = 0
|
|
ProjectGrantState_PROJECTGRANTSTATE_ACTIVE ProjectGrantState = 1
|
|
ProjectGrantState_PROJECTGRANTSTATE_INACTIVE ProjectGrantState = 2
|
|
)
|
|
|
|
var ProjectGrantState_name = map[int32]string{
|
|
0: "PROJECTGRANTSTATE_UNSPECIFIED",
|
|
1: "PROJECTGRANTSTATE_ACTIVE",
|
|
2: "PROJECTGRANTSTATE_INACTIVE",
|
|
}
|
|
|
|
var ProjectGrantState_value = map[string]int32{
|
|
"PROJECTGRANTSTATE_UNSPECIFIED": 0,
|
|
"PROJECTGRANTSTATE_ACTIVE": 1,
|
|
"PROJECTGRANTSTATE_INACTIVE": 2,
|
|
}
|
|
|
|
func (x ProjectGrantState) String() string {
|
|
return proto.EnumName(ProjectGrantState_name, int32(x))
|
|
}
|
|
|
|
func (ProjectGrantState) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{21}
|
|
}
|
|
|
|
type ProjectGrantMemberSearchKey int32
|
|
|
|
const (
|
|
ProjectGrantMemberSearchKey_PROJECTGRANTMEMBERSEARCHKEY_UNSPECIFIED ProjectGrantMemberSearchKey = 0
|
|
ProjectGrantMemberSearchKey_PROJECTGRANTMEMBERSEARCHKEY_FIRST_NAME ProjectGrantMemberSearchKey = 1
|
|
ProjectGrantMemberSearchKey_PROJECTGRANTMEMBERSEARCHKEY_LAST_NAME ProjectGrantMemberSearchKey = 2
|
|
ProjectGrantMemberSearchKey_PROJECTGRANTMEMBERSEARCHKEY_EMAIL ProjectGrantMemberSearchKey = 3
|
|
ProjectGrantMemberSearchKey_PROJECTGRANTMEMBERSEARCHKEY_USER_ID ProjectGrantMemberSearchKey = 4
|
|
)
|
|
|
|
var ProjectGrantMemberSearchKey_name = map[int32]string{
|
|
0: "PROJECTGRANTMEMBERSEARCHKEY_UNSPECIFIED",
|
|
1: "PROJECTGRANTMEMBERSEARCHKEY_FIRST_NAME",
|
|
2: "PROJECTGRANTMEMBERSEARCHKEY_LAST_NAME",
|
|
3: "PROJECTGRANTMEMBERSEARCHKEY_EMAIL",
|
|
4: "PROJECTGRANTMEMBERSEARCHKEY_USER_ID",
|
|
}
|
|
|
|
var ProjectGrantMemberSearchKey_value = map[string]int32{
|
|
"PROJECTGRANTMEMBERSEARCHKEY_UNSPECIFIED": 0,
|
|
"PROJECTGRANTMEMBERSEARCHKEY_FIRST_NAME": 1,
|
|
"PROJECTGRANTMEMBERSEARCHKEY_LAST_NAME": 2,
|
|
"PROJECTGRANTMEMBERSEARCHKEY_EMAIL": 3,
|
|
"PROJECTGRANTMEMBERSEARCHKEY_USER_ID": 4,
|
|
}
|
|
|
|
func (x ProjectGrantMemberSearchKey) String() string {
|
|
return proto.EnumName(ProjectGrantMemberSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (ProjectGrantMemberSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{22}
|
|
}
|
|
|
|
type UserGrantState int32
|
|
|
|
const (
|
|
UserGrantState_USERGRANTSTATE_UNSPECIFIED UserGrantState = 0
|
|
UserGrantState_USERGRANTSTATE_ACTIVE UserGrantState = 1
|
|
UserGrantState_USERGRANTSTATE_INACTIVE UserGrantState = 2
|
|
)
|
|
|
|
var UserGrantState_name = map[int32]string{
|
|
0: "USERGRANTSTATE_UNSPECIFIED",
|
|
1: "USERGRANTSTATE_ACTIVE",
|
|
2: "USERGRANTSTATE_INACTIVE",
|
|
}
|
|
|
|
var UserGrantState_value = map[string]int32{
|
|
"USERGRANTSTATE_UNSPECIFIED": 0,
|
|
"USERGRANTSTATE_ACTIVE": 1,
|
|
"USERGRANTSTATE_INACTIVE": 2,
|
|
}
|
|
|
|
func (x UserGrantState) String() string {
|
|
return proto.EnumName(UserGrantState_name, int32(x))
|
|
}
|
|
|
|
func (UserGrantState) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{23}
|
|
}
|
|
|
|
type UserGrantSearchKey int32
|
|
|
|
const (
|
|
UserGrantSearchKey_USERGRANTSEARCHKEY_UNSPECIFIED UserGrantSearchKey = 0
|
|
UserGrantSearchKey_USERGRANTSEARCHKEY_PROJECT_ID UserGrantSearchKey = 1
|
|
UserGrantSearchKey_USERGRANTSEARCHKEY_USER_ID UserGrantSearchKey = 2
|
|
UserGrantSearchKey_USERGRANTSEARCHKEY_ORG_ID UserGrantSearchKey = 3
|
|
)
|
|
|
|
var UserGrantSearchKey_name = map[int32]string{
|
|
0: "USERGRANTSEARCHKEY_UNSPECIFIED",
|
|
1: "USERGRANTSEARCHKEY_PROJECT_ID",
|
|
2: "USERGRANTSEARCHKEY_USER_ID",
|
|
3: "USERGRANTSEARCHKEY_ORG_ID",
|
|
}
|
|
|
|
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 proto.EnumName(UserGrantSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (UserGrantSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{24}
|
|
}
|
|
|
|
type AuthGrantSearchKey int32
|
|
|
|
const (
|
|
AuthGrantSearchKey_AUTHGRANTSEARCHKEY_UNSPECIFIED AuthGrantSearchKey = 0
|
|
AuthGrantSearchKey_AUTHGRANTSEARCHKEY_ORG_ID AuthGrantSearchKey = 1
|
|
AuthGrantSearchKey_AUTHGRANTSEARCHKEY_PROJECT_ID AuthGrantSearchKey = 2
|
|
AuthGrantSearchKey_AUTHGRANTSEARCHKEY_USER_ID AuthGrantSearchKey = 3
|
|
)
|
|
|
|
var AuthGrantSearchKey_name = map[int32]string{
|
|
0: "AUTHGRANTSEARCHKEY_UNSPECIFIED",
|
|
1: "AUTHGRANTSEARCHKEY_ORG_ID",
|
|
2: "AUTHGRANTSEARCHKEY_PROJECT_ID",
|
|
3: "AUTHGRANTSEARCHKEY_USER_ID",
|
|
}
|
|
|
|
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 proto.EnumName(AuthGrantSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (AuthGrantSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{25}
|
|
}
|
|
|
|
type ChangeRequest struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
|
|
SequenceOffset uint64 `protobuf:"varint,3,opt,name=sequence_offset,json=sequenceOffset,proto3" json:"sequence_offset,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ChangeRequest) Reset() { *m = ChangeRequest{} }
|
|
func (m *ChangeRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ChangeRequest) ProtoMessage() {}
|
|
func (*ChangeRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{0}
|
|
}
|
|
|
|
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 (m *ChangeRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ChangeRequest) GetSequenceOffset() uint64 {
|
|
if m != nil {
|
|
return m.SequenceOffset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type Changes struct {
|
|
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 (m *Changes) Reset() { *m = Changes{} }
|
|
func (m *Changes) String() string { return proto.CompactTextString(m) }
|
|
func (*Changes) ProtoMessage() {}
|
|
func (*Changes) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{1}
|
|
}
|
|
|
|
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 (m *Changes) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Changes) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type Change struct {
|
|
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"`
|
|
Modifier string `protobuf:"bytes,4,opt,name=modifier,proto3" json:"modifier,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 (m *Change) Reset() { *m = Change{} }
|
|
func (m *Change) String() string { return proto.CompactTextString(m) }
|
|
func (*Change) ProtoMessage() {}
|
|
func (*Change) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{2}
|
|
}
|
|
|
|
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 (m *Change) GetEventType() string {
|
|
if m != nil {
|
|
return m.EventType
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Change) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Change) GetModifier() string {
|
|
if m != nil {
|
|
return m.Modifier
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Change) GetData() *_struct.Struct {
|
|
if m != nil {
|
|
return m.Data
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ApplicationID struct {
|
|
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 (m *ApplicationID) Reset() { *m = ApplicationID{} }
|
|
func (m *ApplicationID) String() string { return proto.CompactTextString(m) }
|
|
func (*ApplicationID) ProtoMessage() {}
|
|
func (*ApplicationID) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{3}
|
|
}
|
|
|
|
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 (m *ApplicationID) GetProjectId() string {
|
|
if m != nil {
|
|
return m.ProjectId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectID struct {
|
|
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 (m *ProjectID) Reset() { *m = ProjectID{} }
|
|
func (m *ProjectID) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectID) ProtoMessage() {}
|
|
func (*ProjectID) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{4}
|
|
}
|
|
|
|
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 {
|
|
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 (m *UserID) Reset() { *m = UserID{} }
|
|
func (m *UserID) String() string { return proto.CompactTextString(m) }
|
|
func (*UserID) ProtoMessage() {}
|
|
func (*UserID) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{5}
|
|
}
|
|
|
|
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 {
|
|
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 (m *UserEmailID) Reset() { *m = UserEmailID{} }
|
|
func (m *UserEmailID) String() string { return proto.CompactTextString(m) }
|
|
func (*UserEmailID) ProtoMessage() {}
|
|
func (*UserEmailID) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{6}
|
|
}
|
|
|
|
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 {
|
|
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 (m *UniqueUserRequest) Reset() { *m = UniqueUserRequest{} }
|
|
func (m *UniqueUserRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*UniqueUserRequest) ProtoMessage() {}
|
|
func (*UniqueUserRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{7}
|
|
}
|
|
|
|
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 (m *UniqueUserRequest) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type UniqueUserResponse struct {
|
|
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 (m *UniqueUserResponse) Reset() { *m = UniqueUserResponse{} }
|
|
func (m *UniqueUserResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*UniqueUserResponse) ProtoMessage() {}
|
|
func (*UniqueUserResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{8}
|
|
}
|
|
|
|
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 {
|
|
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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CreateUserRequest) Reset() { *m = CreateUserRequest{} }
|
|
func (m *CreateUserRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*CreateUserRequest) ProtoMessage() {}
|
|
func (*CreateUserRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{9}
|
|
}
|
|
|
|
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 (m *CreateUserRequest) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetNickName() string {
|
|
if m != nil {
|
|
return m.NickName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetPreferredLanguage() string {
|
|
if m != nil {
|
|
return m.PreferredLanguage
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetGender() Gender {
|
|
if m != nil {
|
|
return m.Gender
|
|
}
|
|
return Gender_GENDER_UNSPECIFIED
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetIsEmailVerified() bool {
|
|
if m != nil {
|
|
return m.IsEmailVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetPhone() string {
|
|
if m != nil {
|
|
return m.Phone
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetIsPhoneVerified() bool {
|
|
if m != nil {
|
|
return m.IsPhoneVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetCountry() string {
|
|
if m != nil {
|
|
return m.Country
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetLocality() string {
|
|
if m != nil {
|
|
return m.Locality
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetPostalCode() string {
|
|
if m != nil {
|
|
return m.PostalCode
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetRegion() string {
|
|
if m != nil {
|
|
return m.Region
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetStreetAddress() string {
|
|
if m != nil {
|
|
return m.StreetAddress
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetPassword() string {
|
|
if m != nil {
|
|
return m.Password
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type User struct {
|
|
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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *User) Reset() { *m = User{} }
|
|
func (m *User) String() string { return proto.CompactTextString(m) }
|
|
func (*User) ProtoMessage() {}
|
|
func (*User) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{10}
|
|
}
|
|
|
|
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 (m *User) GetState() UserState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return UserState_USERSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *User) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *User) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *User) GetLastLogin() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.LastLogin
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *User) GetPasswordChanged() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.PasswordChanged
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *User) GetUserName() string {
|
|
if m != nil {
|
|
return m.UserName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *User) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *User) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *User) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *User) GetNickName() string {
|
|
if m != nil {
|
|
return m.NickName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *User) GetPreferredLanguage() string {
|
|
if m != nil {
|
|
return m.PreferredLanguage
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *User) GetGender() Gender {
|
|
if m != nil {
|
|
return m.Gender
|
|
}
|
|
return Gender_GENDER_UNSPECIFIED
|
|
}
|
|
|
|
func (m *User) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *User) GetIsEmailVerified() bool {
|
|
if m != nil {
|
|
return m.IsEmailVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *User) GetPhone() string {
|
|
if m != nil {
|
|
return m.Phone
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *User) GetIsPhoneVerified() bool {
|
|
if m != nil {
|
|
return m.IsPhoneVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *User) GetCountry() string {
|
|
if m != nil {
|
|
return m.Country
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *User) GetLocality() string {
|
|
if m != nil {
|
|
return m.Locality
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *User) GetPostalCode() string {
|
|
if m != nil {
|
|
return m.PostalCode
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *User) GetRegion() string {
|
|
if m != nil {
|
|
return m.Region
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *User) GetStreetAddress() string {
|
|
if m != nil {
|
|
return m.StreetAddress
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type UserSearchRequest struct {
|
|
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 (m *UserSearchRequest) Reset() { *m = UserSearchRequest{} }
|
|
func (m *UserSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*UserSearchRequest) ProtoMessage() {}
|
|
func (*UserSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{11}
|
|
}
|
|
|
|
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 (m *UserSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserSearchRequest) GetSortingColumn() UserSearchKey {
|
|
if m != nil {
|
|
return m.SortingColumn
|
|
}
|
|
return UserSearchKey_USERSEARCHKEY_UNSPECIFIED
|
|
}
|
|
|
|
func (m *UserSearchRequest) GetAsc() bool {
|
|
if m != nil {
|
|
return m.Asc
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *UserSearchRequest) GetQueries() []*UserSearchQuery {
|
|
if m != nil {
|
|
return m.Queries
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UserSearchQuery struct {
|
|
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 (m *UserSearchQuery) Reset() { *m = UserSearchQuery{} }
|
|
func (m *UserSearchQuery) String() string { return proto.CompactTextString(m) }
|
|
func (*UserSearchQuery) ProtoMessage() {}
|
|
func (*UserSearchQuery) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{12}
|
|
}
|
|
|
|
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 (m *UserSearchQuery) GetMethod() SearchMethod {
|
|
if m != nil {
|
|
return m.Method
|
|
}
|
|
return SearchMethod_SEARCHMETHOD_EQUALS
|
|
}
|
|
|
|
func (m *UserSearchQuery) GetValue() string {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type UserSearchResponse struct {
|
|
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 []*User `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserSearchResponse) Reset() { *m = UserSearchResponse{} }
|
|
func (m *UserSearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*UserSearchResponse) ProtoMessage() {}
|
|
func (*UserSearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{13}
|
|
}
|
|
|
|
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 (m *UserSearchResponse) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserSearchResponse) GetTotalResult() uint64 {
|
|
if m != nil {
|
|
return m.TotalResult
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserSearchResponse) GetResult() []*User {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UserProfile struct {
|
|
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"`
|
|
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.management.api.v1.Gender" json:"gender,omitempty"`
|
|
UserName string `protobuf:"bytes,9,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserProfile) Reset() { *m = UserProfile{} }
|
|
func (m *UserProfile) String() string { return proto.CompactTextString(m) }
|
|
func (*UserProfile) ProtoMessage() {}
|
|
func (*UserProfile) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{14}
|
|
}
|
|
|
|
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 (m *UserProfile) GetState() UserState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return UserState_USERSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *UserProfile) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserProfile) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserProfile) GetNickName() string {
|
|
if m != nil {
|
|
return m.NickName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserProfile) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserProfile) GetPreferredLanguage() string {
|
|
if m != nil {
|
|
return m.PreferredLanguage
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserProfile) GetGender() Gender {
|
|
if m != nil {
|
|
return m.Gender
|
|
}
|
|
return Gender_GENDER_UNSPECIFIED
|
|
}
|
|
|
|
func (m *UserProfile) GetUserName() string {
|
|
if m != nil {
|
|
return m.UserName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type UpdateUserProfileRequest struct {
|
|
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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UpdateUserProfileRequest) Reset() { *m = UpdateUserProfileRequest{} }
|
|
func (m *UpdateUserProfileRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdateUserProfileRequest) ProtoMessage() {}
|
|
func (*UpdateUserProfileRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{15}
|
|
}
|
|
|
|
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 (m *UpdateUserProfileRequest) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateUserProfileRequest) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateUserProfileRequest) GetNickName() string {
|
|
if m != nil {
|
|
return m.NickName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateUserProfileRequest) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateUserProfileRequest) GetPreferredLanguage() string {
|
|
if m != nil {
|
|
return m.PreferredLanguage
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateUserProfileRequest) GetGender() Gender {
|
|
if m != nil {
|
|
return m.Gender
|
|
}
|
|
return Gender_GENDER_UNSPECIFIED
|
|
}
|
|
|
|
type UserEmail struct {
|
|
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 (m *UserEmail) Reset() { *m = UserEmail{} }
|
|
func (m *UserEmail) String() string { return proto.CompactTextString(m) }
|
|
func (*UserEmail) ProtoMessage() {}
|
|
func (*UserEmail) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{16}
|
|
}
|
|
|
|
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 (m *UserEmail) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserEmail) GetIsEmailVerified() bool {
|
|
if m != nil {
|
|
return m.IsEmailVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
type UpdateUserEmailRequest struct {
|
|
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 (m *UpdateUserEmailRequest) Reset() { *m = UpdateUserEmailRequest{} }
|
|
func (m *UpdateUserEmailRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdateUserEmailRequest) ProtoMessage() {}
|
|
func (*UpdateUserEmailRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{17}
|
|
}
|
|
|
|
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 (m *UpdateUserEmailRequest) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateUserEmailRequest) GetIsEmailVerified() bool {
|
|
if m != nil {
|
|
return m.IsEmailVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
type UserPhone struct {
|
|
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 (m *UserPhone) Reset() { *m = UserPhone{} }
|
|
func (m *UserPhone) String() string { return proto.CompactTextString(m) }
|
|
func (*UserPhone) ProtoMessage() {}
|
|
func (*UserPhone) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{18}
|
|
}
|
|
|
|
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 (m *UserPhone) GetPhone() string {
|
|
if m != nil {
|
|
return m.Phone
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserPhone) GetIsPhoneVerified() bool {
|
|
if m != nil {
|
|
return m.IsPhoneVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
type UpdateUserPhoneRequest struct {
|
|
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 (m *UpdateUserPhoneRequest) Reset() { *m = UpdateUserPhoneRequest{} }
|
|
func (m *UpdateUserPhoneRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdateUserPhoneRequest) ProtoMessage() {}
|
|
func (*UpdateUserPhoneRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{19}
|
|
}
|
|
|
|
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 (m *UpdateUserPhoneRequest) GetPhone() string {
|
|
if m != nil {
|
|
return m.Phone
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateUserPhoneRequest) GetIsPhoneVerified() bool {
|
|
if m != nil {
|
|
return m.IsPhoneVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
type UserAddress struct {
|
|
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 (m *UserAddress) Reset() { *m = UserAddress{} }
|
|
func (m *UserAddress) String() string { return proto.CompactTextString(m) }
|
|
func (*UserAddress) ProtoMessage() {}
|
|
func (*UserAddress) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{20}
|
|
}
|
|
|
|
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 (m *UserAddress) GetCountry() string {
|
|
if m != nil {
|
|
return m.Country
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserAddress) GetLocality() string {
|
|
if m != nil {
|
|
return m.Locality
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserAddress) GetPostalCode() string {
|
|
if m != nil {
|
|
return m.PostalCode
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserAddress) GetRegion() string {
|
|
if m != nil {
|
|
return m.Region
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserAddress) GetStreetAddress() string {
|
|
if m != nil {
|
|
return m.StreetAddress
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type UpdateUserAddressRequest struct {
|
|
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 (m *UpdateUserAddressRequest) Reset() { *m = UpdateUserAddressRequest{} }
|
|
func (m *UpdateUserAddressRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdateUserAddressRequest) ProtoMessage() {}
|
|
func (*UpdateUserAddressRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{21}
|
|
}
|
|
|
|
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 (m *UpdateUserAddressRequest) GetCountry() string {
|
|
if m != nil {
|
|
return m.Country
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateUserAddressRequest) GetLocality() string {
|
|
if m != nil {
|
|
return m.Locality
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateUserAddressRequest) GetPostalCode() string {
|
|
if m != nil {
|
|
return m.PostalCode
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateUserAddressRequest) GetRegion() string {
|
|
if m != nil {
|
|
return m.Region
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateUserAddressRequest) GetStreetAddress() string {
|
|
if m != nil {
|
|
return m.StreetAddress
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type MultiFactors struct {
|
|
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 (m *MultiFactors) Reset() { *m = MultiFactors{} }
|
|
func (m *MultiFactors) String() string { return proto.CompactTextString(m) }
|
|
func (*MultiFactors) ProtoMessage() {}
|
|
func (*MultiFactors) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{22}
|
|
}
|
|
|
|
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 {
|
|
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 (m *MultiFactor) Reset() { *m = MultiFactor{} }
|
|
func (m *MultiFactor) String() string { return proto.CompactTextString(m) }
|
|
func (*MultiFactor) ProtoMessage() {}
|
|
func (*MultiFactor) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{23}
|
|
}
|
|
|
|
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 (m *MultiFactor) GetState() MFAState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return MFAState_MFASTATE_UNSPECIFIED
|
|
}
|
|
|
|
type PasswordID struct {
|
|
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 (m *PasswordID) Reset() { *m = PasswordID{} }
|
|
func (m *PasswordID) String() string { return proto.CompactTextString(m) }
|
|
func (*PasswordID) ProtoMessage() {}
|
|
func (*PasswordID) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{24}
|
|
}
|
|
|
|
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 {
|
|
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 (m *PasswordRequest) Reset() { *m = PasswordRequest{} }
|
|
func (m *PasswordRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*PasswordRequest) ProtoMessage() {}
|
|
func (*PasswordRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{25}
|
|
}
|
|
|
|
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 (m *PasswordRequest) GetPassword() string {
|
|
if m != nil {
|
|
return m.Password
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ResetPasswordRequest struct {
|
|
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 (m *ResetPasswordRequest) Reset() { *m = ResetPasswordRequest{} }
|
|
func (m *ResetPasswordRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ResetPasswordRequest) ProtoMessage() {}
|
|
func (*ResetPasswordRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{26}
|
|
}
|
|
|
|
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 {
|
|
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 (m *SetPasswordNotificationRequest) Reset() { *m = SetPasswordNotificationRequest{} }
|
|
func (m *SetPasswordNotificationRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*SetPasswordNotificationRequest) ProtoMessage() {}
|
|
func (*SetPasswordNotificationRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{27}
|
|
}
|
|
|
|
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 (m *SetPasswordNotificationRequest) GetType() NotificationType {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return NotificationType_NOTIFICATIONTYPE_EMAIL
|
|
}
|
|
|
|
type PasswordComplexityPolicyID struct {
|
|
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 (m *PasswordComplexityPolicyID) Reset() { *m = PasswordComplexityPolicyID{} }
|
|
func (m *PasswordComplexityPolicyID) String() string { return proto.CompactTextString(m) }
|
|
func (*PasswordComplexityPolicyID) ProtoMessage() {}
|
|
func (*PasswordComplexityPolicyID) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{28}
|
|
}
|
|
|
|
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 {
|
|
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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicy) Reset() { *m = PasswordComplexityPolicy{} }
|
|
func (m *PasswordComplexityPolicy) String() string { return proto.CompactTextString(m) }
|
|
func (*PasswordComplexityPolicy) ProtoMessage() {}
|
|
func (*PasswordComplexityPolicy) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{29}
|
|
}
|
|
|
|
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 (m *PasswordComplexityPolicy) GetDescription() string {
|
|
if m != nil {
|
|
return m.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicy) GetState() PolicyState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return PolicyState_POLICYSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicy) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicy) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicy) GetMinLength() uint64 {
|
|
if m != nil {
|
|
return m.MinLength
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicy) GetHasLowercase() bool {
|
|
if m != nil {
|
|
return m.HasLowercase
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicy) GetHasUppercase() bool {
|
|
if m != nil {
|
|
return m.HasUppercase
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicy) GetHasNumber() bool {
|
|
if m != nil {
|
|
return m.HasNumber
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicy) GetHasSymbol() bool {
|
|
if m != nil {
|
|
return m.HasSymbol
|
|
}
|
|
return false
|
|
}
|
|
|
|
type PasswordComplexityPolicyCreate struct {
|
|
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 (m *PasswordComplexityPolicyCreate) Reset() { *m = PasswordComplexityPolicyCreate{} }
|
|
func (m *PasswordComplexityPolicyCreate) String() string { return proto.CompactTextString(m) }
|
|
func (*PasswordComplexityPolicyCreate) ProtoMessage() {}
|
|
func (*PasswordComplexityPolicyCreate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{30}
|
|
}
|
|
|
|
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 (m *PasswordComplexityPolicyCreate) GetMinLength() uint64 {
|
|
if m != nil {
|
|
return m.MinLength
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicyCreate) GetHasLowercase() bool {
|
|
if m != nil {
|
|
return m.HasLowercase
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicyCreate) GetHasUppercase() bool {
|
|
if m != nil {
|
|
return m.HasUppercase
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicyCreate) GetHasNumber() bool {
|
|
if m != nil {
|
|
return m.HasNumber
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicyCreate) GetHasSymbol() bool {
|
|
if m != nil {
|
|
return m.HasSymbol
|
|
}
|
|
return false
|
|
}
|
|
|
|
type PasswordComplexityPolicyUpdate struct {
|
|
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 (m *PasswordComplexityPolicyUpdate) Reset() { *m = PasswordComplexityPolicyUpdate{} }
|
|
func (m *PasswordComplexityPolicyUpdate) String() string { return proto.CompactTextString(m) }
|
|
func (*PasswordComplexityPolicyUpdate) ProtoMessage() {}
|
|
func (*PasswordComplexityPolicyUpdate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{31}
|
|
}
|
|
|
|
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 (m *PasswordComplexityPolicyUpdate) GetDescription() string {
|
|
if m != nil {
|
|
return m.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicyUpdate) GetMinLength() uint64 {
|
|
if m != nil {
|
|
return m.MinLength
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicyUpdate) GetHasLowercase() bool {
|
|
if m != nil {
|
|
return m.HasLowercase
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicyUpdate) GetHasUppercase() bool {
|
|
if m != nil {
|
|
return m.HasUppercase
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicyUpdate) GetHasNumber() bool {
|
|
if m != nil {
|
|
return m.HasNumber
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicyUpdate) GetHasSymbol() bool {
|
|
if m != nil {
|
|
return m.HasSymbol
|
|
}
|
|
return false
|
|
}
|
|
|
|
type PasswordAgePolicyID struct {
|
|
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 (m *PasswordAgePolicyID) Reset() { *m = PasswordAgePolicyID{} }
|
|
func (m *PasswordAgePolicyID) String() string { return proto.CompactTextString(m) }
|
|
func (*PasswordAgePolicyID) ProtoMessage() {}
|
|
func (*PasswordAgePolicyID) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{32}
|
|
}
|
|
|
|
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 {
|
|
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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *PasswordAgePolicy) Reset() { *m = PasswordAgePolicy{} }
|
|
func (m *PasswordAgePolicy) String() string { return proto.CompactTextString(m) }
|
|
func (*PasswordAgePolicy) ProtoMessage() {}
|
|
func (*PasswordAgePolicy) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{33}
|
|
}
|
|
|
|
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 (m *PasswordAgePolicy) GetDescription() string {
|
|
if m != nil {
|
|
return m.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *PasswordAgePolicy) GetState() PolicyState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return PolicyState_POLICYSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *PasswordAgePolicy) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *PasswordAgePolicy) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *PasswordAgePolicy) GetMaxAgeDays() uint64 {
|
|
if m != nil {
|
|
return m.MaxAgeDays
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *PasswordAgePolicy) GetExpireWarnDays() uint64 {
|
|
if m != nil {
|
|
return m.ExpireWarnDays
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type PasswordAgePolicyCreate struct {
|
|
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 (m *PasswordAgePolicyCreate) Reset() { *m = PasswordAgePolicyCreate{} }
|
|
func (m *PasswordAgePolicyCreate) String() string { return proto.CompactTextString(m) }
|
|
func (*PasswordAgePolicyCreate) ProtoMessage() {}
|
|
func (*PasswordAgePolicyCreate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{34}
|
|
}
|
|
|
|
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 (m *PasswordAgePolicyCreate) GetMaxAgeDays() uint64 {
|
|
if m != nil {
|
|
return m.MaxAgeDays
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *PasswordAgePolicyCreate) GetExpireWarnDays() uint64 {
|
|
if m != nil {
|
|
return m.ExpireWarnDays
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type PasswordAgePolicyUpdate struct {
|
|
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 (m *PasswordAgePolicyUpdate) Reset() { *m = PasswordAgePolicyUpdate{} }
|
|
func (m *PasswordAgePolicyUpdate) String() string { return proto.CompactTextString(m) }
|
|
func (*PasswordAgePolicyUpdate) ProtoMessage() {}
|
|
func (*PasswordAgePolicyUpdate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{35}
|
|
}
|
|
|
|
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 (m *PasswordAgePolicyUpdate) GetDescription() string {
|
|
if m != nil {
|
|
return m.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *PasswordAgePolicyUpdate) GetMaxAgeDays() uint64 {
|
|
if m != nil {
|
|
return m.MaxAgeDays
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *PasswordAgePolicyUpdate) GetExpireWarnDays() uint64 {
|
|
if m != nil {
|
|
return m.ExpireWarnDays
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type PasswordLockoutPolicyID struct {
|
|
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 (m *PasswordLockoutPolicyID) Reset() { *m = PasswordLockoutPolicyID{} }
|
|
func (m *PasswordLockoutPolicyID) String() string { return proto.CompactTextString(m) }
|
|
func (*PasswordLockoutPolicyID) ProtoMessage() {}
|
|
func (*PasswordLockoutPolicyID) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{36}
|
|
}
|
|
|
|
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 {
|
|
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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *PasswordLockoutPolicy) Reset() { *m = PasswordLockoutPolicy{} }
|
|
func (m *PasswordLockoutPolicy) String() string { return proto.CompactTextString(m) }
|
|
func (*PasswordLockoutPolicy) ProtoMessage() {}
|
|
func (*PasswordLockoutPolicy) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{37}
|
|
}
|
|
|
|
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 (m *PasswordLockoutPolicy) GetDescription() string {
|
|
if m != nil {
|
|
return m.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *PasswordLockoutPolicy) GetState() PolicyState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return PolicyState_POLICYSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *PasswordLockoutPolicy) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *PasswordLockoutPolicy) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *PasswordLockoutPolicy) GetMaxAttempts() uint64 {
|
|
if m != nil {
|
|
return m.MaxAttempts
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *PasswordLockoutPolicy) GetShowLockOutFailures() bool {
|
|
if m != nil {
|
|
return m.ShowLockOutFailures
|
|
}
|
|
return false
|
|
}
|
|
|
|
type PasswordLockoutPolicyCreate struct {
|
|
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 (m *PasswordLockoutPolicyCreate) Reset() { *m = PasswordLockoutPolicyCreate{} }
|
|
func (m *PasswordLockoutPolicyCreate) String() string { return proto.CompactTextString(m) }
|
|
func (*PasswordLockoutPolicyCreate) ProtoMessage() {}
|
|
func (*PasswordLockoutPolicyCreate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{38}
|
|
}
|
|
|
|
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 (m *PasswordLockoutPolicyCreate) GetMaxAttempts() uint64 {
|
|
if m != nil {
|
|
return m.MaxAttempts
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *PasswordLockoutPolicyCreate) GetShowLockOutFailures() bool {
|
|
if m != nil {
|
|
return m.ShowLockOutFailures
|
|
}
|
|
return false
|
|
}
|
|
|
|
type PasswordLockoutPolicyUpdate struct {
|
|
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 (m *PasswordLockoutPolicyUpdate) Reset() { *m = PasswordLockoutPolicyUpdate{} }
|
|
func (m *PasswordLockoutPolicyUpdate) String() string { return proto.CompactTextString(m) }
|
|
func (*PasswordLockoutPolicyUpdate) ProtoMessage() {}
|
|
func (*PasswordLockoutPolicyUpdate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{39}
|
|
}
|
|
|
|
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 (m *PasswordLockoutPolicyUpdate) GetDescription() string {
|
|
if m != nil {
|
|
return m.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *PasswordLockoutPolicyUpdate) GetMaxAttempts() uint64 {
|
|
if m != nil {
|
|
return m.MaxAttempts
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *PasswordLockoutPolicyUpdate) GetShowLockOutFailures() bool {
|
|
if m != nil {
|
|
return m.ShowLockOutFailures
|
|
}
|
|
return false
|
|
}
|
|
|
|
type OrgID struct {
|
|
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 (m *OrgID) Reset() { *m = OrgID{} }
|
|
func (m *OrgID) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgID) ProtoMessage() {}
|
|
func (*OrgID) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{40}
|
|
}
|
|
|
|
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 OrgDomain struct {
|
|
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 (m *OrgDomain) Reset() { *m = OrgDomain{} }
|
|
func (m *OrgDomain) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgDomain) ProtoMessage() {}
|
|
func (*OrgDomain) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{41}
|
|
}
|
|
|
|
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) GetDomain() string {
|
|
if m != nil {
|
|
return m.Domain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Org struct {
|
|
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"`
|
|
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 (m *Org) Reset() { *m = Org{} }
|
|
func (m *Org) String() string { return proto.CompactTextString(m) }
|
|
func (*Org) ProtoMessage() {}
|
|
func (*Org) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{42}
|
|
}
|
|
|
|
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 (m *Org) GetState() OrgState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return OrgState_ORGSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *Org) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Org) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Org) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Org) GetDomain() string {
|
|
if m != nil {
|
|
return m.Domain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type OrgMemberRoles struct {
|
|
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 (m *OrgMemberRoles) Reset() { *m = OrgMemberRoles{} }
|
|
func (m *OrgMemberRoles) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgMemberRoles) ProtoMessage() {}
|
|
func (*OrgMemberRoles) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{43}
|
|
}
|
|
|
|
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 {
|
|
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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OrgMember) Reset() { *m = OrgMember{} }
|
|
func (m *OrgMember) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgMember) ProtoMessage() {}
|
|
func (*OrgMember) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{44}
|
|
}
|
|
|
|
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 (m *OrgMember) GetUserName() string {
|
|
if m != nil {
|
|
return m.UserName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgMember) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgMember) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgMember) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgMember) GetRoles() []string {
|
|
if m != nil {
|
|
return m.Roles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OrgMember) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OrgMember) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type AddOrgMemberRequest struct {
|
|
OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_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 (m *AddOrgMemberRequest) Reset() { *m = AddOrgMemberRequest{} }
|
|
func (m *AddOrgMemberRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*AddOrgMemberRequest) ProtoMessage() {}
|
|
func (*AddOrgMemberRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{45}
|
|
}
|
|
|
|
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) GetOrgId() string {
|
|
if m != nil {
|
|
return m.OrgId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AddOrgMemberRequest) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AddOrgMemberRequest) GetRoles() []string {
|
|
if m != nil {
|
|
return m.Roles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ChangeOrgMemberRequest struct {
|
|
OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_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 (m *ChangeOrgMemberRequest) Reset() { *m = ChangeOrgMemberRequest{} }
|
|
func (m *ChangeOrgMemberRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ChangeOrgMemberRequest) ProtoMessage() {}
|
|
func (*ChangeOrgMemberRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{46}
|
|
}
|
|
|
|
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) GetOrgId() string {
|
|
if m != nil {
|
|
return m.OrgId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ChangeOrgMemberRequest) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ChangeOrgMemberRequest) GetRoles() []string {
|
|
if m != nil {
|
|
return m.Roles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type RemoveOrgMemberRequest struct {
|
|
OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_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 (m *RemoveOrgMemberRequest) Reset() { *m = RemoveOrgMemberRequest{} }
|
|
func (m *RemoveOrgMemberRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*RemoveOrgMemberRequest) ProtoMessage() {}
|
|
func (*RemoveOrgMemberRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{47}
|
|
}
|
|
|
|
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) GetOrgId() string {
|
|
if m != nil {
|
|
return m.OrgId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *RemoveOrgMemberRequest) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type OrgMemberSearchResponse struct {
|
|
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 []*OrgMember `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OrgMemberSearchResponse) Reset() { *m = OrgMemberSearchResponse{} }
|
|
func (m *OrgMemberSearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgMemberSearchResponse) ProtoMessage() {}
|
|
func (*OrgMemberSearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{48}
|
|
}
|
|
|
|
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 (m *OrgMemberSearchResponse) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *OrgMemberSearchResponse) GetTotalResult() uint64 {
|
|
if m != nil {
|
|
return m.TotalResult
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *OrgMemberSearchResponse) GetResult() []*OrgMember {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type OrgMemberSearchRequest struct {
|
|
OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_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 []*OrgMemberSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OrgMemberSearchRequest) Reset() { *m = OrgMemberSearchRequest{} }
|
|
func (m *OrgMemberSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgMemberSearchRequest) ProtoMessage() {}
|
|
func (*OrgMemberSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{49}
|
|
}
|
|
|
|
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) GetOrgId() string {
|
|
if m != nil {
|
|
return m.OrgId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgMemberSearchRequest) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *OrgMemberSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *OrgMemberSearchRequest) GetQueries() []*OrgMemberSearchQuery {
|
|
if m != nil {
|
|
return m.Queries
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type OrgMemberSearchQuery struct {
|
|
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 (m *OrgMemberSearchQuery) Reset() { *m = OrgMemberSearchQuery{} }
|
|
func (m *OrgMemberSearchQuery) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgMemberSearchQuery) ProtoMessage() {}
|
|
func (*OrgMemberSearchQuery) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{50}
|
|
}
|
|
|
|
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 (m *OrgMemberSearchQuery) GetMethod() SearchMethod {
|
|
if m != nil {
|
|
return m.Method
|
|
}
|
|
return SearchMethod_SEARCHMETHOD_EQUALS
|
|
}
|
|
|
|
func (m *OrgMemberSearchQuery) GetValue() string {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectCreateRequest struct {
|
|
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 (m *ProjectCreateRequest) Reset() { *m = ProjectCreateRequest{} }
|
|
func (m *ProjectCreateRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectCreateRequest) ProtoMessage() {}
|
|
func (*ProjectCreateRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{51}
|
|
}
|
|
|
|
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 {
|
|
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 (m *ProjectUpdateRequest) Reset() { *m = ProjectUpdateRequest{} }
|
|
func (m *ProjectUpdateRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectUpdateRequest) ProtoMessage() {}
|
|
func (*ProjectUpdateRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{52}
|
|
}
|
|
|
|
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 (m *ProjectUpdateRequest) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Projects struct {
|
|
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 (m *Projects) Reset() { *m = Projects{} }
|
|
func (m *Projects) String() string { return proto.CompactTextString(m) }
|
|
func (*Projects) ProtoMessage() {}
|
|
func (*Projects) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{53}
|
|
}
|
|
|
|
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 {
|
|
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"`
|
|
Type ProjectType `protobuf:"varint,6,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.ProjectType" json:"type,omitempty"`
|
|
ResourceOwner string `protobuf:"bytes,7,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
|
|
OrgId string `protobuf:"bytes,8,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
|
|
OrgName string `protobuf:"bytes,9,opt,name=org_name,json=orgName,proto3" json:"org_name,omitempty"`
|
|
OrgDomain string `protobuf:"bytes,10,opt,name=org_domain,json=orgDomain,proto3" json:"org_domain,omitempty"`
|
|
GrantId string `protobuf:"bytes,11,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Project) Reset() { *m = Project{} }
|
|
func (m *Project) String() string { return proto.CompactTextString(m) }
|
|
func (*Project) ProtoMessage() {}
|
|
func (*Project) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{54}
|
|
}
|
|
|
|
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 (m *Project) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Project) GetState() ProjectState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return ProjectState_PROJECTSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *Project) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Project) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Project) GetType() ProjectType {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return ProjectType_PROJECTTYPE_UNKNOWN
|
|
}
|
|
|
|
func (m *Project) GetResourceOwner() string {
|
|
if m != nil {
|
|
return m.ResourceOwner
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Project) GetOrgId() string {
|
|
if m != nil {
|
|
return m.OrgId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Project) GetOrgName() string {
|
|
if m != nil {
|
|
return m.OrgName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Project) GetOrgDomain() string {
|
|
if m != nil {
|
|
return m.OrgDomain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Project) GetGrantId() string {
|
|
if m != nil {
|
|
return m.GrantId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectSearchResponse struct {
|
|
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 []*Project `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectSearchResponse) Reset() { *m = ProjectSearchResponse{} }
|
|
func (m *ProjectSearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectSearchResponse) ProtoMessage() {}
|
|
func (*ProjectSearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{55}
|
|
}
|
|
|
|
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 (m *ProjectSearchResponse) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectSearchResponse) GetTotalResult() uint64 {
|
|
if m != nil {
|
|
return m.TotalResult
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectSearchResponse) GetResult() []*Project {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectSearchRequest struct {
|
|
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 (m *ProjectSearchRequest) Reset() { *m = ProjectSearchRequest{} }
|
|
func (m *ProjectSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectSearchRequest) ProtoMessage() {}
|
|
func (*ProjectSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{56}
|
|
}
|
|
|
|
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 (m *ProjectSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectSearchRequest) GetQueries() []*ProjectSearchQuery {
|
|
if m != nil {
|
|
return m.Queries
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectSearchQuery struct {
|
|
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 (m *ProjectSearchQuery) Reset() { *m = ProjectSearchQuery{} }
|
|
func (m *ProjectSearchQuery) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectSearchQuery) ProtoMessage() {}
|
|
func (*ProjectSearchQuery) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{57}
|
|
}
|
|
|
|
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 (m *ProjectSearchQuery) GetMethod() SearchMethod {
|
|
if m != nil {
|
|
return m.Method
|
|
}
|
|
return SearchMethod_SEARCHMETHOD_EQUALS
|
|
}
|
|
|
|
func (m *ProjectSearchQuery) GetValue() string {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectMemberRoles struct {
|
|
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 (m *ProjectMemberRoles) Reset() { *m = ProjectMemberRoles{} }
|
|
func (m *ProjectMemberRoles) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectMemberRoles) ProtoMessage() {}
|
|
func (*ProjectMemberRoles) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{58}
|
|
}
|
|
|
|
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 {
|
|
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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectMember) Reset() { *m = ProjectMember{} }
|
|
func (m *ProjectMember) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectMember) ProtoMessage() {}
|
|
func (*ProjectMember) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{59}
|
|
}
|
|
|
|
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 (m *ProjectMember) GetUserName() string {
|
|
if m != nil {
|
|
return m.UserName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectMember) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectMember) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectMember) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectMember) GetRoles() []string {
|
|
if m != nil {
|
|
return m.Roles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectMember) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectMember) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectMemberAdd struct {
|
|
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 (m *ProjectMemberAdd) Reset() { *m = ProjectMemberAdd{} }
|
|
func (m *ProjectMemberAdd) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectMemberAdd) ProtoMessage() {}
|
|
func (*ProjectMemberAdd) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{60}
|
|
}
|
|
|
|
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 (m *ProjectMemberAdd) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectMemberAdd) GetRoles() []string {
|
|
if m != nil {
|
|
return m.Roles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectMemberChange struct {
|
|
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 (m *ProjectMemberChange) Reset() { *m = ProjectMemberChange{} }
|
|
func (m *ProjectMemberChange) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectMemberChange) ProtoMessage() {}
|
|
func (*ProjectMemberChange) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{61}
|
|
}
|
|
|
|
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 (m *ProjectMemberChange) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectMemberChange) GetRoles() []string {
|
|
if m != nil {
|
|
return m.Roles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectMemberRemove struct {
|
|
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 (m *ProjectMemberRemove) Reset() { *m = ProjectMemberRemove{} }
|
|
func (m *ProjectMemberRemove) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectMemberRemove) ProtoMessage() {}
|
|
func (*ProjectMemberRemove) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{62}
|
|
}
|
|
|
|
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 (m *ProjectMemberRemove) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectRoleAdd struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,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 (m *ProjectRoleAdd) Reset() { *m = ProjectRoleAdd{} }
|
|
func (m *ProjectRoleAdd) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectRoleAdd) ProtoMessage() {}
|
|
func (*ProjectRoleAdd) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{63}
|
|
}
|
|
|
|
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 (m *ProjectRoleAdd) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectRoleAdd) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectRoleAdd) GetGroup() string {
|
|
if m != nil {
|
|
return m.Group
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectRole struct {
|
|
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"`
|
|
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,5,opt,name=group,proto3" json:"group,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectRole) Reset() { *m = ProjectRole{} }
|
|
func (m *ProjectRole) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectRole) ProtoMessage() {}
|
|
func (*ProjectRole) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{64}
|
|
}
|
|
|
|
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 (m *ProjectRole) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectRole) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectRole) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectRole) GetGroup() string {
|
|
if m != nil {
|
|
return m.Group
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectRoleRemove struct {
|
|
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 (m *ProjectRoleRemove) Reset() { *m = ProjectRoleRemove{} }
|
|
func (m *ProjectRoleRemove) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectRoleRemove) ProtoMessage() {}
|
|
func (*ProjectRoleRemove) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{65}
|
|
}
|
|
|
|
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 (m *ProjectRoleRemove) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectRoleSearchResponse struct {
|
|
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 []*ProjectRole `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectRoleSearchResponse) Reset() { *m = ProjectRoleSearchResponse{} }
|
|
func (m *ProjectRoleSearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectRoleSearchResponse) ProtoMessage() {}
|
|
func (*ProjectRoleSearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{66}
|
|
}
|
|
|
|
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 (m *ProjectRoleSearchResponse) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectRoleSearchResponse) GetTotalResult() uint64 {
|
|
if m != nil {
|
|
return m.TotalResult
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectRoleSearchResponse) GetResult() []*ProjectRole {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectRoleSearchRequest struct {
|
|
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 (m *ProjectRoleSearchRequest) Reset() { *m = ProjectRoleSearchRequest{} }
|
|
func (m *ProjectRoleSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectRoleSearchRequest) ProtoMessage() {}
|
|
func (*ProjectRoleSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{67}
|
|
}
|
|
|
|
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 (m *ProjectRoleSearchRequest) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectRoleSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectRoleSearchRequest) GetQueries() []*ProjectRoleSearchQuery {
|
|
if m != nil {
|
|
return m.Queries
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectRoleSearchQuery struct {
|
|
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 (m *ProjectRoleSearchQuery) Reset() { *m = ProjectRoleSearchQuery{} }
|
|
func (m *ProjectRoleSearchQuery) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectRoleSearchQuery) ProtoMessage() {}
|
|
func (*ProjectRoleSearchQuery) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{68}
|
|
}
|
|
|
|
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 (m *ProjectRoleSearchQuery) GetMethod() SearchMethod {
|
|
if m != nil {
|
|
return m.Method
|
|
}
|
|
return SearchMethod_SEARCHMETHOD_EQUALS
|
|
}
|
|
|
|
func (m *ProjectRoleSearchQuery) GetValue() string {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectMemberSearchResponse struct {
|
|
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 []*ProjectMember `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectMemberSearchResponse) Reset() { *m = ProjectMemberSearchResponse{} }
|
|
func (m *ProjectMemberSearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectMemberSearchResponse) ProtoMessage() {}
|
|
func (*ProjectMemberSearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{69}
|
|
}
|
|
|
|
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 (m *ProjectMemberSearchResponse) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectMemberSearchResponse) GetTotalResult() uint64 {
|
|
if m != nil {
|
|
return m.TotalResult
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectMemberSearchResponse) GetResult() []*ProjectMember {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectMemberSearchRequest struct {
|
|
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 (m *ProjectMemberSearchRequest) Reset() { *m = ProjectMemberSearchRequest{} }
|
|
func (m *ProjectMemberSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectMemberSearchRequest) ProtoMessage() {}
|
|
func (*ProjectMemberSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{70}
|
|
}
|
|
|
|
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 (m *ProjectMemberSearchRequest) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectMemberSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectMemberSearchRequest) GetQueries() []*ProjectMemberSearchQuery {
|
|
if m != nil {
|
|
return m.Queries
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectMemberSearchQuery struct {
|
|
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 (m *ProjectMemberSearchQuery) Reset() { *m = ProjectMemberSearchQuery{} }
|
|
func (m *ProjectMemberSearchQuery) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectMemberSearchQuery) ProtoMessage() {}
|
|
func (*ProjectMemberSearchQuery) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{71}
|
|
}
|
|
|
|
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 (m *ProjectMemberSearchQuery) GetMethod() SearchMethod {
|
|
if m != nil {
|
|
return m.Method
|
|
}
|
|
return SearchMethod_SEARCHMETHOD_EQUALS
|
|
}
|
|
|
|
func (m *ProjectMemberSearchQuery) GetValue() string {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Application struct {
|
|
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 valid to be assigned to AppConfig:
|
|
// *Application_OidcConfig
|
|
AppConfig isApplication_AppConfig `protobuf_oneof:"app_config"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Application) Reset() { *m = Application{} }
|
|
func (m *Application) String() string { return proto.CompactTextString(m) }
|
|
func (*Application) ProtoMessage() {}
|
|
func (*Application) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{72}
|
|
}
|
|
|
|
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 (m *Application) GetState() AppState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return AppState_APPSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *Application) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Application) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Application) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type isApplication_AppConfig interface {
|
|
isApplication_AppConfig()
|
|
}
|
|
|
|
type Application_OidcConfig struct {
|
|
OidcConfig *OIDCConfig `protobuf:"bytes,8,opt,name=oidc_config,json=oidcConfig,proto3,oneof"`
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
// XXX_OneofWrappers is for the internal use of the proto package.
|
|
func (*Application) XXX_OneofWrappers() []interface{} {
|
|
return []interface{}{
|
|
(*Application_OidcConfig)(nil),
|
|
}
|
|
}
|
|
|
|
type ApplicationUpdate struct {
|
|
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 (m *ApplicationUpdate) Reset() { *m = ApplicationUpdate{} }
|
|
func (m *ApplicationUpdate) String() string { return proto.CompactTextString(m) }
|
|
func (*ApplicationUpdate) ProtoMessage() {}
|
|
func (*ApplicationUpdate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{73}
|
|
}
|
|
|
|
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 (m *ApplicationUpdate) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ApplicationUpdate) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type OIDCConfig struct {
|
|
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"`
|
|
ApplicationType OIDCApplicationType `protobuf:"varint,4,opt,name=application_type,json=applicationType,proto3,enum=caos.zitadel.management.api.v1.OIDCApplicationType" json:"application_type,omitempty"`
|
|
ClientId string `protobuf:"bytes,5,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
|
|
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 (m *OIDCConfig) Reset() { *m = OIDCConfig{} }
|
|
func (m *OIDCConfig) String() string { return proto.CompactTextString(m) }
|
|
func (*OIDCConfig) ProtoMessage() {}
|
|
func (*OIDCConfig) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{74}
|
|
}
|
|
|
|
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 (m *OIDCConfig) GetResponseTypes() []OIDCResponseType {
|
|
if m != nil {
|
|
return m.ResponseTypes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OIDCConfig) GetGrantTypes() []OIDCGrantType {
|
|
if m != nil {
|
|
return m.GrantTypes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OIDCConfig) GetApplicationType() OIDCApplicationType {
|
|
if m != nil {
|
|
return m.ApplicationType
|
|
}
|
|
return OIDCApplicationType_OIDCAPPLICATIONTYPE_WEB
|
|
}
|
|
|
|
func (m *OIDCConfig) GetClientId() string {
|
|
if m != nil {
|
|
return m.ClientId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OIDCConfig) GetClientSecret() string {
|
|
if m != nil {
|
|
return m.ClientSecret
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OIDCConfig) GetAuthMethodType() OIDCAuthMethodType {
|
|
if m != nil {
|
|
return m.AuthMethodType
|
|
}
|
|
return OIDCAuthMethodType_OIDCAUTHMETHODTYPE_BASIC
|
|
}
|
|
|
|
func (m *OIDCConfig) GetPostLogoutRedirectUris() []string {
|
|
if m != nil {
|
|
return m.PostLogoutRedirectUris
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type OIDCApplicationCreate struct {
|
|
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"`
|
|
ResponseTypes []OIDCResponseType `protobuf:"varint,4,rep,packed,name=response_types,json=responseTypes,proto3,enum=caos.zitadel.management.api.v1.OIDCResponseType" json:"response_types,omitempty"`
|
|
GrantTypes []OIDCGrantType `protobuf:"varint,5,rep,packed,name=grant_types,json=grantTypes,proto3,enum=caos.zitadel.management.api.v1.OIDCGrantType" json:"grant_types,omitempty"`
|
|
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 (m *OIDCApplicationCreate) Reset() { *m = OIDCApplicationCreate{} }
|
|
func (m *OIDCApplicationCreate) String() string { return proto.CompactTextString(m) }
|
|
func (*OIDCApplicationCreate) ProtoMessage() {}
|
|
func (*OIDCApplicationCreate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{75}
|
|
}
|
|
|
|
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 (m *OIDCApplicationCreate) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OIDCApplicationCreate) GetRedirectUris() []string {
|
|
if m != nil {
|
|
return m.RedirectUris
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OIDCApplicationCreate) GetResponseTypes() []OIDCResponseType {
|
|
if m != nil {
|
|
return m.ResponseTypes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OIDCApplicationCreate) GetGrantTypes() []OIDCGrantType {
|
|
if m != nil {
|
|
return m.GrantTypes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OIDCApplicationCreate) GetApplicationType() OIDCApplicationType {
|
|
if m != nil {
|
|
return m.ApplicationType
|
|
}
|
|
return OIDCApplicationType_OIDCAPPLICATIONTYPE_WEB
|
|
}
|
|
|
|
func (m *OIDCApplicationCreate) GetAuthMethodType() OIDCAuthMethodType {
|
|
if m != nil {
|
|
return m.AuthMethodType
|
|
}
|
|
return OIDCAuthMethodType_OIDCAUTHMETHODTYPE_BASIC
|
|
}
|
|
|
|
func (m *OIDCApplicationCreate) GetPostLogoutRedirectUris() []string {
|
|
if m != nil {
|
|
return m.PostLogoutRedirectUris
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type OIDCConfigUpdate struct {
|
|
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"`
|
|
ResponseTypes []OIDCResponseType `protobuf:"varint,4,rep,packed,name=response_types,json=responseTypes,proto3,enum=caos.zitadel.management.api.v1.OIDCResponseType" json:"response_types,omitempty"`
|
|
GrantTypes []OIDCGrantType `protobuf:"varint,5,rep,packed,name=grant_types,json=grantTypes,proto3,enum=caos.zitadel.management.api.v1.OIDCGrantType" json:"grant_types,omitempty"`
|
|
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 (m *OIDCConfigUpdate) Reset() { *m = OIDCConfigUpdate{} }
|
|
func (m *OIDCConfigUpdate) String() string { return proto.CompactTextString(m) }
|
|
func (*OIDCConfigUpdate) ProtoMessage() {}
|
|
func (*OIDCConfigUpdate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{76}
|
|
}
|
|
|
|
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 (m *OIDCConfigUpdate) GetApplicationId() string {
|
|
if m != nil {
|
|
return m.ApplicationId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OIDCConfigUpdate) GetRedirectUris() []string {
|
|
if m != nil {
|
|
return m.RedirectUris
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OIDCConfigUpdate) GetResponseTypes() []OIDCResponseType {
|
|
if m != nil {
|
|
return m.ResponseTypes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OIDCConfigUpdate) GetGrantTypes() []OIDCGrantType {
|
|
if m != nil {
|
|
return m.GrantTypes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OIDCConfigUpdate) GetApplicationType() OIDCApplicationType {
|
|
if m != nil {
|
|
return m.ApplicationType
|
|
}
|
|
return OIDCApplicationType_OIDCAPPLICATIONTYPE_WEB
|
|
}
|
|
|
|
func (m *OIDCConfigUpdate) GetAuthMethodType() OIDCAuthMethodType {
|
|
if m != nil {
|
|
return m.AuthMethodType
|
|
}
|
|
return OIDCAuthMethodType_OIDCAUTHMETHODTYPE_BASIC
|
|
}
|
|
|
|
func (m *OIDCConfigUpdate) GetPostLogoutRedirectUris() []string {
|
|
if m != nil {
|
|
return m.PostLogoutRedirectUris
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ClientSecret struct {
|
|
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 (m *ClientSecret) Reset() { *m = ClientSecret{} }
|
|
func (m *ClientSecret) String() string { return proto.CompactTextString(m) }
|
|
func (*ClientSecret) ProtoMessage() {}
|
|
func (*ClientSecret) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{77}
|
|
}
|
|
|
|
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 ApplicationSearchResponse struct {
|
|
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 []*Application `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ApplicationSearchResponse) Reset() { *m = ApplicationSearchResponse{} }
|
|
func (m *ApplicationSearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ApplicationSearchResponse) ProtoMessage() {}
|
|
func (*ApplicationSearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{78}
|
|
}
|
|
|
|
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 (m *ApplicationSearchResponse) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ApplicationSearchResponse) GetTotalResult() uint64 {
|
|
if m != nil {
|
|
return m.TotalResult
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ApplicationSearchResponse) GetResult() []*Application {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ApplicationSearchRequest struct {
|
|
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 (m *ApplicationSearchRequest) Reset() { *m = ApplicationSearchRequest{} }
|
|
func (m *ApplicationSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ApplicationSearchRequest) ProtoMessage() {}
|
|
func (*ApplicationSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{79}
|
|
}
|
|
|
|
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 (m *ApplicationSearchRequest) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ApplicationSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ApplicationSearchRequest) GetQueries() []*ApplicationSearchQuery {
|
|
if m != nil {
|
|
return m.Queries
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ApplicationSearchQuery struct {
|
|
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 (m *ApplicationSearchQuery) Reset() { *m = ApplicationSearchQuery{} }
|
|
func (m *ApplicationSearchQuery) String() string { return proto.CompactTextString(m) }
|
|
func (*ApplicationSearchQuery) ProtoMessage() {}
|
|
func (*ApplicationSearchQuery) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{80}
|
|
}
|
|
|
|
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 (m *ApplicationSearchQuery) GetMethod() SearchMethod {
|
|
if m != nil {
|
|
return m.Method
|
|
}
|
|
return SearchMethod_SEARCHMETHOD_EQUALS
|
|
}
|
|
|
|
func (m *ApplicationSearchQuery) GetValue() string {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectGrant struct {
|
|
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"`
|
|
RoleNames []string `protobuf:"bytes,6,rep,name=role_names,json=roleNames,proto3" json:"role_names,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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectGrant) Reset() { *m = ProjectGrant{} }
|
|
func (m *ProjectGrant) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrant) ProtoMessage() {}
|
|
func (*ProjectGrant) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{81}
|
|
}
|
|
|
|
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 (m *ProjectGrant) GetProjectId() string {
|
|
if m != nil {
|
|
return m.ProjectId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrant) GetGrantedOrgId() string {
|
|
if m != nil {
|
|
return m.GrantedOrgId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrant) GetGrantedOrgName() string {
|
|
if m != nil {
|
|
return m.GrantedOrgName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrant) GetGrantedOrgDomain() string {
|
|
if m != nil {
|
|
return m.GrantedOrgDomain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrant) GetRoleNames() []string {
|
|
if m != nil {
|
|
return m.RoleNames
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectGrant) GetState() ProjectGrantState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return ProjectGrantState_PROJECTGRANTSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *ProjectGrant) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectGrant) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectGrant) GetProjectName() string {
|
|
if m != nil {
|
|
return m.ProjectName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectGrantCreate struct {
|
|
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"`
|
|
RoleNames []string `protobuf:"bytes,3,rep,name=role_names,json=roleNames,proto3" json:"role_names,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectGrantCreate) Reset() { *m = ProjectGrantCreate{} }
|
|
func (m *ProjectGrantCreate) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantCreate) ProtoMessage() {}
|
|
func (*ProjectGrantCreate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{82}
|
|
}
|
|
|
|
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 (m *ProjectGrantCreate) GetGrantedOrgId() string {
|
|
if m != nil {
|
|
return m.GrantedOrgId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantCreate) GetRoleNames() []string {
|
|
if m != nil {
|
|
return m.RoleNames
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectGrantUpdate struct {
|
|
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"`
|
|
RoleNames []string `protobuf:"bytes,3,rep,name=role_names,json=roleNames,proto3" json:"role_names,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectGrantUpdate) Reset() { *m = ProjectGrantUpdate{} }
|
|
func (m *ProjectGrantUpdate) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantUpdate) ProtoMessage() {}
|
|
func (*ProjectGrantUpdate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{83}
|
|
}
|
|
|
|
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 (m *ProjectGrantUpdate) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantUpdate) GetRoleNames() []string {
|
|
if m != nil {
|
|
return m.RoleNames
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectGrantID struct {
|
|
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 (m *ProjectGrantID) Reset() { *m = ProjectGrantID{} }
|
|
func (m *ProjectGrantID) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantID) ProtoMessage() {}
|
|
func (*ProjectGrantID) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{84}
|
|
}
|
|
|
|
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 (m *ProjectGrantID) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type GrantedGrantID struct {
|
|
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 (m *GrantedGrantID) Reset() { *m = GrantedGrantID{} }
|
|
func (m *GrantedGrantID) String() string { return proto.CompactTextString(m) }
|
|
func (*GrantedGrantID) ProtoMessage() {}
|
|
func (*GrantedGrantID) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{85}
|
|
}
|
|
|
|
func (m *GrantedGrantID) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GrantedGrantID.Unmarshal(m, b)
|
|
}
|
|
func (m *GrantedGrantID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GrantedGrantID.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GrantedGrantID) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GrantedGrantID.Merge(m, src)
|
|
}
|
|
func (m *GrantedGrantID) XXX_Size() int {
|
|
return xxx_messageInfo_GrantedGrantID.Size(m)
|
|
}
|
|
func (m *GrantedGrantID) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GrantedGrantID.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GrantedGrantID proto.InternalMessageInfo
|
|
|
|
func (m *GrantedGrantID) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectGrantSearchResponse struct {
|
|
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 []*ProjectGrant `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectGrantSearchResponse) Reset() { *m = ProjectGrantSearchResponse{} }
|
|
func (m *ProjectGrantSearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantSearchResponse) ProtoMessage() {}
|
|
func (*ProjectGrantSearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{86}
|
|
}
|
|
|
|
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 (m *ProjectGrantSearchResponse) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectGrantSearchResponse) GetTotalResult() uint64 {
|
|
if m != nil {
|
|
return m.TotalResult
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectGrantSearchResponse) GetResult() []*ProjectGrant {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectGrantSearchRequest struct {
|
|
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 (m *ProjectGrantSearchRequest) Reset() { *m = ProjectGrantSearchRequest{} }
|
|
func (m *ProjectGrantSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantSearchRequest) ProtoMessage() {}
|
|
func (*ProjectGrantSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{87}
|
|
}
|
|
|
|
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 (m *ProjectGrantSearchRequest) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectGrantSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type ProjectGrantMemberRoles struct {
|
|
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 (m *ProjectGrantMemberRoles) Reset() { *m = ProjectGrantMemberRoles{} }
|
|
func (m *ProjectGrantMemberRoles) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantMemberRoles) ProtoMessage() {}
|
|
func (*ProjectGrantMemberRoles) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{88}
|
|
}
|
|
|
|
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 {
|
|
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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectGrantMember) Reset() { *m = ProjectGrantMember{} }
|
|
func (m *ProjectGrantMember) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantMember) ProtoMessage() {}
|
|
func (*ProjectGrantMember) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{89}
|
|
}
|
|
|
|
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 (m *ProjectGrantMember) GetUserName() string {
|
|
if m != nil {
|
|
return m.UserName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantMember) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantMember) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantMember) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantMember) GetRoles() []string {
|
|
if m != nil {
|
|
return m.Roles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectGrantMember) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectGrantMember) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectGrantMemberAdd struct {
|
|
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 (m *ProjectGrantMemberAdd) Reset() { *m = ProjectGrantMemberAdd{} }
|
|
func (m *ProjectGrantMemberAdd) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantMemberAdd) ProtoMessage() {}
|
|
func (*ProjectGrantMemberAdd) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{90}
|
|
}
|
|
|
|
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 (m *ProjectGrantMemberAdd) GetGrantId() string {
|
|
if m != nil {
|
|
return m.GrantId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantMemberAdd) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantMemberAdd) GetRoles() []string {
|
|
if m != nil {
|
|
return m.Roles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectGrantMemberChange struct {
|
|
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 (m *ProjectGrantMemberChange) Reset() { *m = ProjectGrantMemberChange{} }
|
|
func (m *ProjectGrantMemberChange) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantMemberChange) ProtoMessage() {}
|
|
func (*ProjectGrantMemberChange) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{91}
|
|
}
|
|
|
|
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 (m *ProjectGrantMemberChange) GetGrantId() string {
|
|
if m != nil {
|
|
return m.GrantId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantMemberChange) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantMemberChange) GetRoles() []string {
|
|
if m != nil {
|
|
return m.Roles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectGrantMemberRemove struct {
|
|
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 (m *ProjectGrantMemberRemove) Reset() { *m = ProjectGrantMemberRemove{} }
|
|
func (m *ProjectGrantMemberRemove) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantMemberRemove) ProtoMessage() {}
|
|
func (*ProjectGrantMemberRemove) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{92}
|
|
}
|
|
|
|
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 (m *ProjectGrantMemberRemove) GetGrantId() string {
|
|
if m != nil {
|
|
return m.GrantId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantMemberRemove) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectGrantMemberSearchResponse struct {
|
|
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 []*ProjectGrantMember `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectGrantMemberSearchResponse) Reset() { *m = ProjectGrantMemberSearchResponse{} }
|
|
func (m *ProjectGrantMemberSearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantMemberSearchResponse) ProtoMessage() {}
|
|
func (*ProjectGrantMemberSearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{93}
|
|
}
|
|
|
|
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 (m *ProjectGrantMemberSearchResponse) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectGrantMemberSearchResponse) GetTotalResult() uint64 {
|
|
if m != nil {
|
|
return m.TotalResult
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectGrantMemberSearchResponse) GetResult() []*ProjectGrantMember {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectGrantMemberSearchRequest struct {
|
|
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 (m *ProjectGrantMemberSearchRequest) Reset() { *m = ProjectGrantMemberSearchRequest{} }
|
|
func (m *ProjectGrantMemberSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantMemberSearchRequest) ProtoMessage() {}
|
|
func (*ProjectGrantMemberSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{94}
|
|
}
|
|
|
|
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 (m *ProjectGrantMemberSearchRequest) GetGrantId() string {
|
|
if m != nil {
|
|
return m.GrantId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantMemberSearchRequest) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectGrantMemberSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectGrantMemberSearchRequest) GetQueries() []*ProjectGrantMemberSearchQuery {
|
|
if m != nil {
|
|
return m.Queries
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectGrantMemberSearchQuery struct {
|
|
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 (m *ProjectGrantMemberSearchQuery) Reset() { *m = ProjectGrantMemberSearchQuery{} }
|
|
func (m *ProjectGrantMemberSearchQuery) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantMemberSearchQuery) ProtoMessage() {}
|
|
func (*ProjectGrantMemberSearchQuery) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{95}
|
|
}
|
|
|
|
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 (m *ProjectGrantMemberSearchQuery) GetMethod() SearchMethod {
|
|
if m != nil {
|
|
return m.Method
|
|
}
|
|
return SearchMethod_SEARCHMETHOD_EQUALS
|
|
}
|
|
|
|
func (m *ProjectGrantMemberSearchQuery) GetValue() string {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type UserGrant struct {
|
|
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"`
|
|
RoleNames []string `protobuf:"bytes,5,rep,name=role_names,json=roleNames,proto3" json:"role_names,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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserGrant) Reset() { *m = UserGrant{} }
|
|
func (m *UserGrant) String() string { return proto.CompactTextString(m) }
|
|
func (*UserGrant) ProtoMessage() {}
|
|
func (*UserGrant) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{96}
|
|
}
|
|
|
|
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 (m *UserGrant) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrant) GetOrgId() string {
|
|
if m != nil {
|
|
return m.OrgId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrant) GetProjectId() string {
|
|
if m != nil {
|
|
return m.ProjectId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrant) GetRoleNames() []string {
|
|
if m != nil {
|
|
return m.RoleNames
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserGrant) GetState() UserGrantState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return UserGrantState_USERGRANTSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *UserGrant) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserGrant) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserGrant) GetUserName() string {
|
|
if m != nil {
|
|
return m.UserName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrant) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrant) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrant) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrant) GetOrgName() string {
|
|
if m != nil {
|
|
return m.OrgName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrant) GetOrgDomain() string {
|
|
if m != nil {
|
|
return m.OrgDomain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrant) GetProjectName() string {
|
|
if m != nil {
|
|
return m.ProjectName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type UserGrantCreate struct {
|
|
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"`
|
|
ProjectId string `protobuf:"bytes,3,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
|
|
RoleNames []string `protobuf:"bytes,4,rep,name=role_names,json=roleNames,proto3" json:"role_names,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserGrantCreate) Reset() { *m = UserGrantCreate{} }
|
|
func (m *UserGrantCreate) String() string { return proto.CompactTextString(m) }
|
|
func (*UserGrantCreate) ProtoMessage() {}
|
|
func (*UserGrantCreate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{97}
|
|
}
|
|
|
|
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 (m *UserGrantCreate) GetOrgId() string {
|
|
if m != nil {
|
|
return m.OrgId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantCreate) GetProjectId() string {
|
|
if m != nil {
|
|
return m.ProjectId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantCreate) GetRoleNames() []string {
|
|
if m != nil {
|
|
return m.RoleNames
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UserGrantUpdate struct {
|
|
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"`
|
|
RoleNames []string `protobuf:"bytes,3,rep,name=role_names,json=roleNames,proto3" json:"role_names,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserGrantUpdate) Reset() { *m = UserGrantUpdate{} }
|
|
func (m *UserGrantUpdate) String() string { return proto.CompactTextString(m) }
|
|
func (*UserGrantUpdate) ProtoMessage() {}
|
|
func (*UserGrantUpdate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{98}
|
|
}
|
|
|
|
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 (m *UserGrantUpdate) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantUpdate) GetRoleNames() []string {
|
|
if m != nil {
|
|
return m.RoleNames
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UserGrantID struct {
|
|
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 (m *UserGrantID) Reset() { *m = UserGrantID{} }
|
|
func (m *UserGrantID) String() string { return proto.CompactTextString(m) }
|
|
func (*UserGrantID) ProtoMessage() {}
|
|
func (*UserGrantID) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{99}
|
|
}
|
|
|
|
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 (m *UserGrantID) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectUserGrantID struct {
|
|
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 (m *ProjectUserGrantID) Reset() { *m = ProjectUserGrantID{} }
|
|
func (m *ProjectUserGrantID) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectUserGrantID) ProtoMessage() {}
|
|
func (*ProjectUserGrantID) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{100}
|
|
}
|
|
|
|
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 (m *ProjectUserGrantID) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectUserGrantID) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectUserGrantUpdate struct {
|
|
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"`
|
|
RoleNames []string `protobuf:"bytes,4,rep,name=role_names,json=roleNames,proto3" json:"role_names,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectUserGrantUpdate) Reset() { *m = ProjectUserGrantUpdate{} }
|
|
func (m *ProjectUserGrantUpdate) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectUserGrantUpdate) ProtoMessage() {}
|
|
func (*ProjectUserGrantUpdate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{101}
|
|
}
|
|
|
|
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 (m *ProjectUserGrantUpdate) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectUserGrantUpdate) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectUserGrantUpdate) GetRoleNames() []string {
|
|
if m != nil {
|
|
return m.RoleNames
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectGrantUserGrantID struct {
|
|
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 (m *ProjectGrantUserGrantID) Reset() { *m = ProjectGrantUserGrantID{} }
|
|
func (m *ProjectGrantUserGrantID) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantUserGrantID) ProtoMessage() {}
|
|
func (*ProjectGrantUserGrantID) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{102}
|
|
}
|
|
|
|
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 (m *ProjectGrantUserGrantID) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantUserGrantID) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectGrantUserGrantCreate struct {
|
|
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"`
|
|
RoleNames []string `protobuf:"bytes,5,rep,name=role_names,json=roleNames,proto3" json:"role_names,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectGrantUserGrantCreate) Reset() { *m = ProjectGrantUserGrantCreate{} }
|
|
func (m *ProjectGrantUserGrantCreate) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantUserGrantCreate) ProtoMessage() {}
|
|
func (*ProjectGrantUserGrantCreate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{103}
|
|
}
|
|
|
|
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 (m *ProjectGrantUserGrantCreate) GetOrgId() string {
|
|
if m != nil {
|
|
return m.OrgId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantUserGrantCreate) GetProjectGrantId() string {
|
|
if m != nil {
|
|
return m.ProjectGrantId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantUserGrantCreate) GetProjectId() string {
|
|
if m != nil {
|
|
return m.ProjectId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantUserGrantCreate) GetRoleNames() []string {
|
|
if m != nil {
|
|
return m.RoleNames
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectGrantUserGrantUpdate struct {
|
|
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"`
|
|
RoleNames []string `protobuf:"bytes,4,rep,name=role_names,json=roleNames,proto3" json:"role_names,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectGrantUserGrantUpdate) Reset() { *m = ProjectGrantUserGrantUpdate{} }
|
|
func (m *ProjectGrantUserGrantUpdate) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantUserGrantUpdate) ProtoMessage() {}
|
|
func (*ProjectGrantUserGrantUpdate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{104}
|
|
}
|
|
|
|
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 (m *ProjectGrantUserGrantUpdate) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantUserGrantUpdate) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantUserGrantUpdate) GetRoleNames() []string {
|
|
if m != nil {
|
|
return m.RoleNames
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UserGrantSearchResponse struct {
|
|
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 []*UserGrant `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserGrantSearchResponse) Reset() { *m = UserGrantSearchResponse{} }
|
|
func (m *UserGrantSearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*UserGrantSearchResponse) ProtoMessage() {}
|
|
func (*UserGrantSearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{105}
|
|
}
|
|
|
|
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 (m *UserGrantSearchResponse) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserGrantSearchResponse) GetTotalResult() uint64 {
|
|
if m != nil {
|
|
return m.TotalResult
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserGrantSearchResponse) GetResult() []*UserGrant {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UserGrantSearchRequest struct {
|
|
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 (m *UserGrantSearchRequest) Reset() { *m = UserGrantSearchRequest{} }
|
|
func (m *UserGrantSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*UserGrantSearchRequest) ProtoMessage() {}
|
|
func (*UserGrantSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{106}
|
|
}
|
|
|
|
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 (m *UserGrantSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserGrantSearchRequest) GetQueries() []*UserGrantSearchQuery {
|
|
if m != nil {
|
|
return m.Queries
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UserGrantSearchQuery struct {
|
|
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 (m *UserGrantSearchQuery) Reset() { *m = UserGrantSearchQuery{} }
|
|
func (m *UserGrantSearchQuery) String() string { return proto.CompactTextString(m) }
|
|
func (*UserGrantSearchQuery) ProtoMessage() {}
|
|
func (*UserGrantSearchQuery) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{107}
|
|
}
|
|
|
|
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 (m *UserGrantSearchQuery) GetMethod() SearchMethod {
|
|
if m != nil {
|
|
return m.Method
|
|
}
|
|
return SearchMethod_SEARCHMETHOD_EQUALS
|
|
}
|
|
|
|
func (m *UserGrantSearchQuery) GetValue() string {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProjectUserGrantSearchRequest struct {
|
|
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 (m *ProjectUserGrantSearchRequest) Reset() { *m = ProjectUserGrantSearchRequest{} }
|
|
func (m *ProjectUserGrantSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectUserGrantSearchRequest) ProtoMessage() {}
|
|
func (*ProjectUserGrantSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{108}
|
|
}
|
|
|
|
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 (m *ProjectUserGrantSearchRequest) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectUserGrantSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectUserGrantSearchRequest) GetQueries() []*UserGrantSearchQuery {
|
|
if m != nil {
|
|
return m.Queries
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectGrantUserGrantSearchRequest struct {
|
|
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 (m *ProjectGrantUserGrantSearchRequest) Reset() { *m = ProjectGrantUserGrantSearchRequest{} }
|
|
func (m *ProjectGrantUserGrantSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantUserGrantSearchRequest) ProtoMessage() {}
|
|
func (*ProjectGrantUserGrantSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{109}
|
|
}
|
|
|
|
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 (m *ProjectGrantUserGrantSearchRequest) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectGrantUserGrantSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectGrantUserGrantSearchRequest) GetQueries() []*UserGrantSearchQuery {
|
|
if m != nil {
|
|
return m.Queries
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type AuthGrantSearchRequest struct {
|
|
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 (m *AuthGrantSearchRequest) Reset() { *m = AuthGrantSearchRequest{} }
|
|
func (m *AuthGrantSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*AuthGrantSearchRequest) ProtoMessage() {}
|
|
func (*AuthGrantSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{110}
|
|
}
|
|
|
|
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 (m *AuthGrantSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *AuthGrantSearchRequest) GetSortingColumn() AuthGrantSearchKey {
|
|
if m != nil {
|
|
return m.SortingColumn
|
|
}
|
|
return AuthGrantSearchKey_AUTHGRANTSEARCHKEY_UNSPECIFIED
|
|
}
|
|
|
|
func (m *AuthGrantSearchRequest) GetAsc() bool {
|
|
if m != nil {
|
|
return m.Asc
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *AuthGrantSearchRequest) GetQueries() []*AuthGrantSearchQuery {
|
|
if m != nil {
|
|
return m.Queries
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type AuthGrantSearchQuery struct {
|
|
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 (m *AuthGrantSearchQuery) Reset() { *m = AuthGrantSearchQuery{} }
|
|
func (m *AuthGrantSearchQuery) String() string { return proto.CompactTextString(m) }
|
|
func (*AuthGrantSearchQuery) ProtoMessage() {}
|
|
func (*AuthGrantSearchQuery) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{111}
|
|
}
|
|
|
|
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 (m *AuthGrantSearchQuery) GetMethod() SearchMethod {
|
|
if m != nil {
|
|
return m.Method
|
|
}
|
|
return SearchMethod_SEARCHMETHOD_EQUALS
|
|
}
|
|
|
|
func (m *AuthGrantSearchQuery) GetValue() string {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type AuthGrantSearchResponse struct {
|
|
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 (m *AuthGrantSearchResponse) Reset() { *m = AuthGrantSearchResponse{} }
|
|
func (m *AuthGrantSearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*AuthGrantSearchResponse) ProtoMessage() {}
|
|
func (*AuthGrantSearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{112}
|
|
}
|
|
|
|
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 (m *AuthGrantSearchResponse) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *AuthGrantSearchResponse) GetTotalResult() uint64 {
|
|
if m != nil {
|
|
return m.TotalResult
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *AuthGrantSearchResponse) GetResult() []*AuthGrant {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type AuthGrant struct {
|
|
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 (m *AuthGrant) Reset() { *m = AuthGrant{} }
|
|
func (m *AuthGrant) String() string { return proto.CompactTextString(m) }
|
|
func (*AuthGrant) ProtoMessage() {}
|
|
func (*AuthGrant) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{113}
|
|
}
|
|
|
|
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 (m *AuthGrant) GetProjectId() string {
|
|
if m != nil {
|
|
return m.ProjectId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AuthGrant) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AuthGrant) GetRoles() []string {
|
|
if m != nil {
|
|
return m.Roles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
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.OrgMemberSearchKey", OrgMemberSearchKey_name, OrgMemberSearchKey_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.ProjectSearchKey", ProjectSearchKey_name, ProjectSearchKey_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((*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((*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((*UpdateUserProfileRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserProfileRequest")
|
|
proto.RegisterType((*UserEmail)(nil), "caos.zitadel.management.api.v1.UserEmail")
|
|
proto.RegisterType((*UpdateUserEmailRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserEmailRequest")
|
|
proto.RegisterType((*UserPhone)(nil), "caos.zitadel.management.api.v1.UserPhone")
|
|
proto.RegisterType((*UpdateUserPhoneRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserPhoneRequest")
|
|
proto.RegisterType((*UserAddress)(nil), "caos.zitadel.management.api.v1.UserAddress")
|
|
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((*OrgDomain)(nil), "caos.zitadel.management.api.v1.OrgDomain")
|
|
proto.RegisterType((*Org)(nil), "caos.zitadel.management.api.v1.Org")
|
|
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((*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((*Projects)(nil), "caos.zitadel.management.api.v1.Projects")
|
|
proto.RegisterType((*Project)(nil), "caos.zitadel.management.api.v1.Project")
|
|
proto.RegisterType((*ProjectSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectSearchResponse")
|
|
proto.RegisterType((*ProjectSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectSearchRequest")
|
|
proto.RegisterType((*ProjectSearchQuery)(nil), "caos.zitadel.management.api.v1.ProjectSearchQuery")
|
|
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((*ProjectRole)(nil), "caos.zitadel.management.api.v1.ProjectRole")
|
|
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((*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((*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((*GrantedGrantID)(nil), "caos.zitadel.management.api.v1.GrantedGrantID")
|
|
proto.RegisterType((*ProjectGrantSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectGrantSearchResponse")
|
|
proto.RegisterType((*ProjectGrantSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectGrantSearchRequest")
|
|
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((*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((*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")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("management.proto", fileDescriptor_edc174f991dc0a25) }
|
|
|
|
var fileDescriptor_edc174f991dc0a25 = []byte{
|
|
// 7935 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6b, 0x70, 0x1b, 0x59,
|
|
0x76, 0xde, 0x34, 0x00, 0xbe, 0x0e, 0x5f, 0xe0, 0xe5, 0x0b, 0x02, 0x1f, 0xa2, 0x5a, 0x6f, 0x48,
|
|
0x22, 0x24, 0x8e, 0x46, 0x9a, 0x91, 0x76, 0xa4, 0x01, 0x09, 0x88, 0x82, 0x87, 0x04, 0xb8, 0x20,
|
|
0x35, 0xca, 0xd8, 0xce, 0xc0, 0x2d, 0xa0, 0x05, 0xc2, 0x03, 0xa2, 0xb1, 0xdd, 0x0d, 0x69, 0xb8,
|
|
0x93, 0xa9, 0x4d, 0x71, 0xab, 0x52, 0x2e, 0x27, 0x8e, 0xbd, 0xbb, 0x71, 0x52, 0xd9, 0xaa, 0xcd,
|
|
0x26, 0x9b, 0x87, 0x93, 0x6c, 0x26, 0x8f, 0xf2, 0xb0, 0x6a, 0x6d, 0x27, 0x1b, 0x57, 0x36, 0x49,
|
|
0x25, 0xb6, 0x7f, 0xc4, 0xd9, 0x54, 0x5c, 0xa9, 0xf2, 0x9f, 0x6c, 0x12, 0x57, 0xe5, 0x57, 0xca,
|
|
0x79, 0xfc, 0xf0, 0xfc, 0x70, 0x5c, 0xf7, 0xd1, 0xdd, 0xb7, 0x5f, 0x40, 0x37, 0x48, 0x6a, 0xb5,
|
|
0xde, 0xf9, 0x25, 0xe2, 0x3e, 0xbf, 0x73, 0xee, 0x39, 0xe7, 0x9e, 0x7b, 0xee, 0xed, 0x23, 0x88,
|
|
0xef, 0x49, 0x4d, 0xa9, 0x26, 0xef, 0xc9, 0x4d, 0x7d, 0xb9, 0xa5, 0x2a, 0xba, 0x82, 0x16, 0x2b,
|
|
0x92, 0xa2, 0x2d, 0x7f, 0xb1, 0xae, 0x4b, 0x55, 0xb9, 0xb1, 0xcc, 0x55, 0x4b, 0xad, 0xfa, 0xf2,
|
|
0xb3, 0x1b, 0xc9, 0xf9, 0x9a, 0xa2, 0xd4, 0x1a, 0x72, 0x5a, 0x6a, 0xd5, 0xd3, 0x52, 0xb3, 0xa9,
|
|
0xe8, 0x92, 0x5e, 0x57, 0x9a, 0x1a, 0xed, 0x9d, 0x9c, 0x63, 0xb5, 0xe4, 0xd7, 0x93, 0xf6, 0xd3,
|
|
0xb4, 0xbc, 0xd7, 0xd2, 0xf7, 0x59, 0xe5, 0xbc, 0xb3, 0x52, 0xd3, 0xd5, 0x76, 0x85, 0x4d, 0x9c,
|
|
0x3c, 0xed, 0xac, 0xd5, 0xeb, 0x7b, 0xb2, 0xa6, 0x4b, 0x7b, 0x2d, 0xd6, 0xe0, 0x2a, 0xf9, 0xa7,
|
|
0x72, 0xad, 0x26, 0x37, 0xaf, 0x69, 0xcf, 0xa5, 0x5a, 0x4d, 0x56, 0xd3, 0x4a, 0x8b, 0xcc, 0xee,
|
|
0x81, 0x64, 0xf6, 0x99, 0xd4, 0xa8, 0x57, 0x25, 0x5d, 0x4e, 0x1b, 0x7f, 0xb0, 0x8a, 0x25, 0xe7,
|
|
0x3c, 0x55, 0x59, 0xab, 0xa8, 0xf5, 0x96, 0xae, 0xa8, 0xac, 0x45, 0x42, 0x6a, 0xeb, 0xbb, 0x74,
|
|
0x64, 0x63, 0x02, 0x5a, 0x23, 0xbe, 0x07, 0xa3, 0x6b, 0xbb, 0x52, 0xb3, 0x26, 0x97, 0xe4, 0x2f,
|
|
0xb4, 0x65, 0x4d, 0x47, 0x63, 0x10, 0xa9, 0x57, 0x13, 0xc2, 0x92, 0x70, 0x69, 0xa8, 0x14, 0xa9,
|
|
0x57, 0xd1, 0x14, 0xf4, 0x35, 0xea, 0x7b, 0x75, 0x3d, 0x11, 0x59, 0x12, 0x2e, 0xc5, 0x4a, 0xf4,
|
|
0x07, 0xba, 0x08, 0xe3, 0x1a, 0xee, 0xd0, 0xac, 0xc8, 0x65, 0xe5, 0xe9, 0x53, 0x4d, 0xd6, 0x13,
|
|
0x51, 0x52, 0x3f, 0x66, 0x14, 0x17, 0x49, 0xa9, 0xb8, 0x0f, 0x03, 0x74, 0x7c, 0x0d, 0xbd, 0x05,
|
|
0x03, 0x15, 0xfa, 0x67, 0x42, 0x58, 0x8a, 0x5e, 0x1a, 0x5e, 0xb9, 0xb0, 0xdc, 0x79, 0x65, 0x96,
|
|
0x19, 0x32, 0xa3, 0x1b, 0x9a, 0x81, 0x7e, 0x36, 0x19, 0x05, 0xc3, 0x7e, 0x59, 0x18, 0xa3, 0x1c,
|
|
0x46, 0xf1, 0xdf, 0x0b, 0xd0, 0x4f, 0x47, 0x40, 0x77, 0x61, 0x98, 0x8e, 0x51, 0xc6, 0x6c, 0x23,
|
|
0xd4, 0x0d, 0xaf, 0x24, 0x97, 0x29, 0xdf, 0x96, 0x0d, 0xbe, 0x2d, 0xef, 0x18, 0xeb, 0x53, 0x02,
|
|
0xda, 0x3c, 0x2b, 0xe9, 0x32, 0x5a, 0x00, 0x90, 0x9f, 0xc9, 0x4d, 0xbd, 0xac, 0xef, 0xb7, 0x64,
|
|
0x32, 0xf3, 0x50, 0x69, 0x88, 0x94, 0xec, 0xec, 0xb7, 0x64, 0x94, 0x84, 0x41, 0x83, 0x66, 0x36,
|
|
0xbf, 0xf9, 0x1b, 0xd7, 0xed, 0x29, 0xd5, 0xfa, 0xd3, 0xba, 0xac, 0x26, 0x62, 0xa4, 0xa3, 0xf9,
|
|
0x1b, 0x5d, 0x81, 0x58, 0x55, 0xd2, 0xa5, 0x44, 0x1f, 0x01, 0x33, 0xeb, 0x02, 0xb3, 0x4d, 0x44,
|
|
0xa9, 0x44, 0x1a, 0x89, 0xf7, 0x60, 0x34, 0xd3, 0x6a, 0x35, 0xea, 0x15, 0x22, 0x11, 0xf9, 0xac,
|
|
0x6b, 0x99, 0x16, 0x00, 0x5a, 0xaa, 0xf2, 0xb3, 0x72, 0x45, 0x2f, 0xd7, 0xab, 0x06, 0x48, 0x56,
|
|
0x92, 0xaf, 0x8a, 0x73, 0x30, 0xb4, 0xc5, 0x7e, 0xb8, 0xfa, 0x8a, 0x09, 0xe8, 0x7f, 0xa4, 0xc9,
|
|
0xaa, 0x47, 0xcd, 0x59, 0x18, 0xc6, 0x35, 0xb9, 0x3d, 0xa9, 0xde, 0xc8, 0x67, 0x31, 0x9f, 0x65,
|
|
0xfc, 0x27, 0x6b, 0x41, 0x7f, 0x88, 0xef, 0xc1, 0xc4, 0xa3, 0x66, 0xfd, 0x0b, 0x6d, 0x19, 0x37,
|
|
0x35, 0xc4, 0xe8, 0x22, 0x0c, 0xb5, 0x35, 0x59, 0x2d, 0x37, 0xa5, 0x3d, 0xca, 0xef, 0xa1, 0x55,
|
|
0xf8, 0x74, 0x75, 0x40, 0xed, 0x8b, 0x0b, 0x89, 0x7f, 0x27, 0x94, 0x06, 0x71, 0x65, 0x41, 0xda,
|
|
0x93, 0xd1, 0x92, 0x31, 0x66, 0xc4, 0xd5, 0x88, 0x8d, 0x7f, 0x03, 0x10, 0x3f, 0xbe, 0xd6, 0x52,
|
|
0x9a, 0x9a, 0x8c, 0xe6, 0x60, 0xa8, 0xae, 0x95, 0xdb, 0xa4, 0x82, 0x4c, 0x30, 0x58, 0x1a, 0xac,
|
|
0x6b, 0xb4, 0xa1, 0xf8, 0x3f, 0xfa, 0x60, 0x62, 0x4d, 0x95, 0x25, 0xbd, 0x37, 0x4c, 0x97, 0x01,
|
|
0x9e, 0xd6, 0x55, 0x4d, 0xa7, 0x2d, 0xdd, 0xc0, 0x86, 0x48, 0x2d, 0x69, 0x7a, 0x11, 0x86, 0x1a,
|
|
0x92, 0xd1, 0x32, 0xea, 0x1e, 0x13, 0x57, 0x92, 0x86, 0xe7, 0x61, 0xa8, 0x59, 0xaf, 0xbc, 0x4f,
|
|
0x1b, 0x12, 0x59, 0x58, 0x1d, 0xfc, 0x74, 0xb5, 0x4f, 0x8d, 0x92, 0x66, 0xb8, 0x8a, 0x34, 0xbb,
|
|
0x02, 0x23, 0xd5, 0xba, 0xd6, 0x6a, 0x48, 0xfb, 0xb4, 0x65, 0x9f, 0xa3, 0xe5, 0x30, 0xab, 0x25,
|
|
0x8d, 0x6f, 0x03, 0x6a, 0xa9, 0xf2, 0x53, 0x59, 0x55, 0xe5, 0x6a, 0xb9, 0x21, 0x35, 0x6b, 0x6d,
|
|
0xa9, 0x26, 0x27, 0xfa, 0x1d, 0x5d, 0x26, 0xcc, 0x36, 0x1b, 0xac, 0x09, 0xba, 0x07, 0xfd, 0x35,
|
|
0xb9, 0x59, 0x95, 0xd5, 0xc4, 0xc0, 0x92, 0x70, 0x69, 0xac, 0xbb, 0x26, 0xae, 0x93, 0xd6, 0x25,
|
|
0xd6, 0x0b, 0x89, 0xc6, 0xa2, 0x0d, 0x92, 0xb9, 0x46, 0x3e, 0x5d, 0x1d, 0x52, 0x07, 0x08, 0xc5,
|
|
0x3f, 0x63, 0x2c, 0x1b, 0x4a, 0xc1, 0x44, 0x5d, 0x2b, 0x93, 0xbf, 0xcb, 0xcf, 0x64, 0x15, 0x0b,
|
|
0x7d, 0x35, 0x31, 0x44, 0x16, 0x6a, 0xbc, 0xae, 0x11, 0x91, 0x7a, 0x87, 0x15, 0xa3, 0x05, 0xe8,
|
|
0x6b, 0xed, 0x2a, 0x4d, 0x39, 0x31, 0x4c, 0xc6, 0x1b, 0xf8, 0x74, 0x35, 0xa6, 0x46, 0x12, 0x53,
|
|
0x25, 0x5a, 0xca, 0x86, 0x22, 0x7f, 0x5b, 0x43, 0x8d, 0x18, 0x43, 0x6d, 0xe1, 0x72, 0x73, 0x28,
|
|
0x11, 0x06, 0x2a, 0x4a, 0xbb, 0xa9, 0xab, 0xfb, 0x89, 0x51, 0x07, 0x23, 0x8c, 0x0a, 0x74, 0x0e,
|
|
0x06, 0x1b, 0x4a, 0x45, 0x6a, 0xd4, 0xf5, 0xfd, 0xc4, 0x98, 0x73, 0x29, 0x8c, 0x1a, 0x74, 0x19,
|
|
0x86, 0x5b, 0x8a, 0xa6, 0x4b, 0x8d, 0x72, 0x45, 0xa9, 0xca, 0x89, 0x71, 0x47, 0x43, 0xa0, 0x95,
|
|
0x6b, 0x4a, 0x15, 0x0b, 0x71, 0xbf, 0x2a, 0xd7, 0xea, 0x4a, 0x33, 0x11, 0x77, 0xb4, 0x62, 0xe5,
|
|
0x28, 0x0d, 0x63, 0x9a, 0xae, 0xca, 0xb2, 0x5e, 0x96, 0xaa, 0x55, 0x55, 0xd6, 0xb4, 0xc4, 0x84,
|
|
0xa3, 0xe5, 0x28, 0xad, 0xcf, 0xd0, 0x6a, 0x74, 0x16, 0x06, 0x5b, 0x92, 0xa6, 0x3d, 0x57, 0xd4,
|
|
0x6a, 0x02, 0xf1, 0x5c, 0x79, 0x58, 0x32, 0x2b, 0xc4, 0x3f, 0xea, 0x87, 0x18, 0x96, 0x70, 0x97,
|
|
0x39, 0xb8, 0x0f, 0x7d, 0x9a, 0x8e, 0x4d, 0x5d, 0x84, 0xac, 0xef, 0xe5, 0x6e, 0xeb, 0x8b, 0x07,
|
|
0xd9, 0xc6, 0x1d, 0x4a, 0xb4, 0x1f, 0xba, 0x0f, 0xa3, 0x15, 0xac, 0x40, 0x75, 0xa5, 0x49, 0x6d,
|
|
0x66, 0xb4, 0xab, 0xcd, 0x1c, 0x31, 0x3a, 0x10, 0xab, 0xe9, 0x30, 0xb9, 0xb1, 0x50, 0x26, 0xf7,
|
|
0x0d, 0x00, 0xa2, 0x55, 0x0d, 0xa5, 0x56, 0x6f, 0x32, 0x0b, 0xd9, 0xa9, 0x2f, 0xd1, 0xc1, 0x0d,
|
|
0xdc, 0x18, 0xe5, 0x20, 0x6e, 0xb0, 0xa7, 0x4c, 0x47, 0xac, 0x12, 0x8d, 0xe8, 0x3c, 0xc0, 0xb8,
|
|
0xd1, 0x87, 0x6e, 0x18, 0x55, 0x6c, 0x5e, 0x2c, 0x5b, 0x31, 0x40, 0x4d, 0xb7, 0x69, 0x1f, 0x16,
|
|
0x6c, 0xf6, 0x61, 0x90, 0x1a, 0x5b, 0xcb, 0x26, 0xcc, 0xf1, 0x36, 0x61, 0x88, 0xf6, 0x35, 0xed,
|
|
0xc0, 0x19, 0x87, 0x82, 0x03, 0xa9, 0xb7, 0xa9, 0xf5, 0x1c, 0x6f, 0x2a, 0x86, 0x69, 0x7f, 0xd3,
|
|
0x40, 0x5c, 0xf3, 0xd4, 0xf9, 0x11, 0xd2, 0xaa, 0xa3, 0xa6, 0x8f, 0xf6, 0xa4, 0xe9, 0xa6, 0xc9,
|
|
0x1f, 0xe3, 0x4c, 0xbe, 0xb7, 0x6e, 0x8f, 0x7b, 0xeb, 0xf6, 0x94, 0xa1, 0xdb, 0x71, 0x3a, 0x42,
|
|
0x07, 0x95, 0x9e, 0xf0, 0x56, 0xe9, 0x84, 0xa5, 0xd2, 0x44, 0x13, 0x2c, 0x45, 0x4e, 0x72, 0x8a,
|
|
0x3c, 0xc9, 0x18, 0x6d, 0xa8, 0xef, 0x69, 0xbb, 0xfa, 0x4e, 0x91, 0x6a, 0x5e, 0x69, 0x67, 0x4c,
|
|
0xa5, 0x9d, 0x26, 0x75, 0x86, 0xaa, 0x9e, 0x77, 0xa9, 0xea, 0x0c, 0xa9, 0xb7, 0x2b, 0xa8, 0xf8,
|
|
0xc7, 0x02, 0x4c, 0x10, 0xb5, 0x91, 0x25, 0xb5, 0xb2, 0x6b, 0xec, 0x31, 0x96, 0x8b, 0x22, 0x78,
|
|
0xbb, 0x28, 0x36, 0x37, 0xea, 0x3d, 0x18, 0xd3, 0x14, 0x55, 0xaf, 0x37, 0x6b, 0xe5, 0x8a, 0xd2,
|
|
0x68, 0xef, 0x35, 0x89, 0x9a, 0x8d, 0xad, 0x5c, 0x0b, 0xa4, 0xaf, 0x64, 0xe2, 0xb7, 0xe5, 0x7d,
|
|
0x62, 0x44, 0x0e, 0x84, 0xc8, 0xd2, 0x2b, 0xa5, 0x51, 0x36, 0xdc, 0x1a, 0x19, 0x0d, 0xc5, 0x21,
|
|
0x2a, 0x69, 0x15, 0xa2, 0x7c, 0x83, 0x25, 0xfc, 0x27, 0xca, 0xc3, 0xc0, 0x17, 0xda, 0xb2, 0x5a,
|
|
0x97, 0xb5, 0x44, 0x1f, 0x71, 0xc2, 0xd2, 0xc1, 0xa7, 0xfa, 0x7c, 0x5b, 0x56, 0xf7, 0x4b, 0x46,
|
|
0x7f, 0xf1, 0x3b, 0x02, 0x8c, 0x3b, 0x2a, 0x51, 0x1e, 0xa2, 0xef, 0xcb, 0xfb, 0x84, 0xf6, 0x23,
|
|
0x50, 0x81, 0xc7, 0x40, 0x59, 0xe8, 0xdf, 0x93, 0xf5, 0x5d, 0xa5, 0xca, 0x6c, 0xd8, 0xd5, 0x6e,
|
|
0xa3, 0xd1, 0x91, 0x36, 0x49, 0x9f, 0x12, 0xeb, 0x8b, 0xf9, 0xfe, 0x4c, 0x6a, 0xb4, 0xd9, 0xde,
|
|
0x5c, 0xa2, 0x3f, 0xc4, 0xbf, 0x2d, 0x00, 0xe2, 0xd7, 0x8e, 0xf9, 0x14, 0xe1, 0x16, 0xef, 0x0c,
|
|
0x8c, 0xe8, 0x0a, 0x96, 0x2f, 0x55, 0xd6, 0xda, 0x0d, 0xc3, 0xf9, 0x1c, 0x26, 0x65, 0x25, 0x52,
|
|
0x84, 0x3e, 0x87, 0x45, 0x8c, 0x54, 0xc6, 0x08, 0xb3, 0xcf, 0x05, 0xe1, 0x48, 0x89, 0xf5, 0x11,
|
|
0xff, 0x20, 0x42, 0xdd, 0xaf, 0x2d, 0x55, 0x79, 0x5a, 0x6f, 0xc8, 0xc7, 0x6f, 0xe4, 0xed, 0x76,
|
|
0x2c, 0xda, 0xd1, 0x8e, 0xc5, 0x1c, 0x76, 0xcc, 0x66, 0xa4, 0xfa, 0x1c, 0x46, 0xca, 0x69, 0xe4,
|
|
0xfa, 0xdd, 0x46, 0xce, 0xdb, 0x8e, 0x0d, 0x74, 0xb7, 0x63, 0x83, 0x3d, 0xd9, 0x31, 0x9b, 0x3d,
|
|
0x1f, 0xb2, 0xdb, 0x73, 0xf1, 0xb7, 0x23, 0x90, 0x78, 0xd4, 0xaa, 0x32, 0x77, 0x91, 0xb1, 0xdb,
|
|
0xef, 0x40, 0xf4, 0x99, 0x73, 0xd8, 0x99, 0xd5, 0xe2, 0x9f, 0x85, 0x21, 0xf3, 0xd0, 0xe0, 0x75,
|
|
0x9c, 0xe4, 0xdc, 0xfd, 0x8e, 0xfb, 0x49, 0xd4, 0x73, 0x3f, 0x11, 0x9f, 0xc1, 0x8c, 0xb5, 0x56,
|
|
0xa4, 0xca, 0x6f, 0xa5, 0xba, 0x1e, 0x2d, 0x42, 0xcd, 0xcb, 0xc8, 0x22, 0x5b, 0x93, 0x17, 0x59,
|
|
0x74, 0x93, 0x8b, 0x74, 0xdd, 0xe4, 0xa2, 0x9e, 0x9b, 0x9c, 0xd8, 0xe6, 0xc9, 0x22, 0x55, 0x7e,
|
|
0x64, 0x9d, 0xb6, 0xcd, 0xb5, 0x3a, 0xf4, 0xe9, 0x6a, 0xbf, 0x1a, 0x8b, 0x0b, 0x5d, 0xdc, 0x65,
|
|
0x9f, 0x69, 0x7f, 0x55, 0xa0, 0x36, 0xc6, 0x70, 0x3b, 0x9d, 0x93, 0x71, 0x7b, 0x6f, 0xc4, 0x7f,
|
|
0xef, 0x8d, 0x76, 0xde, 0x7b, 0x63, 0x1d, 0xf6, 0xde, 0xbe, 0x2e, 0x7b, 0x6f, 0xbf, 0xd7, 0xde,
|
|
0xfb, 0xbf, 0x05, 0x5e, 0x61, 0x59, 0xa9, 0x1f, 0xbf, 0x44, 0x07, 0x09, 0xdd, 0x4e, 0x04, 0xd1,
|
|
0xa0, 0x27, 0x82, 0x58, 0xa0, 0x13, 0x41, 0x5f, 0xe0, 0x13, 0x41, 0x7f, 0xc7, 0x13, 0x81, 0x58,
|
|
0x84, 0x91, 0xcd, 0x76, 0x43, 0xaf, 0x3f, 0x90, 0x2a, 0xba, 0xa2, 0x6a, 0xe8, 0x3e, 0xc4, 0xf6,
|
|
0x9e, 0x4a, 0x46, 0x30, 0xe5, 0x4a, 0x37, 0x2d, 0xe5, 0xfa, 0x96, 0x48, 0x47, 0xf1, 0xe7, 0x05,
|
|
0x18, 0xe6, 0x4a, 0xd1, 0x5d, 0x88, 0x91, 0x10, 0x07, 0xdd, 0xbd, 0x2f, 0x76, 0x1d, 0xf0, 0xa9,
|
|
0xb4, 0xb3, 0xdf, 0x92, 0x4b, 0xa4, 0x13, 0xba, 0x67, 0xdf, 0x8c, 0x2e, 0x75, 0xed, 0xfd, 0x20,
|
|
0xc3, 0xef, 0x45, 0xe2, 0x3c, 0xc0, 0x16, 0xf3, 0xc1, 0x3d, 0x02, 0x11, 0x0f, 0x61, 0xdc, 0xa8,
|
|
0xf5, 0x5b, 0xe6, 0xf3, 0xdc, 0x81, 0xc9, 0xa1, 0x19, 0xfc, 0x91, 0xe9, 0x02, 0x4c, 0x95, 0x64,
|
|
0x4d, 0xd6, 0xbb, 0x0c, 0x27, 0x3e, 0x83, 0xc5, 0x6d, 0xab, 0x55, 0x41, 0xd1, 0xeb, 0x4f, 0x59,
|
|
0xf4, 0xc5, 0x0f, 0x40, 0x96, 0xb1, 0x8f, 0x32, 0xe0, 0x7a, 0x37, 0x06, 0xf0, 0x43, 0x5a, 0x7c,
|
|
0x14, 0xaf, 0x42, 0xd2, 0x98, 0x74, 0x4d, 0xd9, 0x6b, 0x35, 0xe4, 0x0f, 0xea, 0xfa, 0xfe, 0x96,
|
|
0xd2, 0xa8, 0x57, 0xf6, 0x3d, 0xf8, 0xf2, 0x49, 0x14, 0x12, 0x7e, 0xcd, 0x3d, 0xec, 0xe1, 0xb0,
|
|
0x11, 0x19, 0xc4, 0x82, 0x19, 0x61, 0x9b, 0xb2, 0x55, 0x84, 0x32, 0xc6, 0x22, 0x52, 0x37, 0xb4,
|
|
0xab, 0x4c, 0xd1, 0x89, 0x3a, 0x1f, 0x1c, 0x63, 0x47, 0x3b, 0x38, 0xf6, 0x85, 0x8d, 0xd5, 0xed,
|
|
0xd5, 0x9b, 0xe5, 0x86, 0xdc, 0xac, 0xe9, 0xbb, 0x44, 0xa1, 0x62, 0xa5, 0xa1, 0xbd, 0x7a, 0x73,
|
|
0x83, 0x14, 0xa0, 0xb3, 0x30, 0xba, 0x2b, 0x69, 0xe5, 0x86, 0xf2, 0x5c, 0x56, 0x2b, 0x92, 0x46,
|
|
0xfd, 0x8d, 0xc1, 0xd2, 0xc8, 0xae, 0xa4, 0x6d, 0x18, 0x65, 0x46, 0xa3, 0x76, 0xab, 0xc5, 0x1a,
|
|
0x0d, 0x9a, 0x8d, 0x1e, 0x19, 0x65, 0x78, 0x22, 0xdc, 0xa8, 0xd9, 0xde, 0x7b, 0x22, 0xab, 0x2c,
|
|
0xac, 0x31, 0xb4, 0x2b, 0x69, 0x05, 0x52, 0x60, 0x54, 0x6b, 0xfb, 0x7b, 0x4f, 0x94, 0x06, 0x39,
|
|
0xe3, 0xd1, 0xea, 0x6d, 0x52, 0x20, 0xfe, 0x1f, 0x01, 0x16, 0xfd, 0x96, 0x8d, 0xc6, 0xad, 0x50,
|
|
0xca, 0xbe, 0x58, 0x02, 0x6f, 0x1b, 0xfe, 0x6f, 0xd4, 0xbe, 0x6c, 0x76, 0xaa, 0x23, 0x5d, 0xa9,
|
|
0x8e, 0x06, 0xa1, 0x3a, 0xd6, 0x95, 0xea, 0xbe, 0xce, 0x54, 0xf7, 0x3b, 0xa9, 0xfe, 0x72, 0xc4,
|
|
0x9f, 0x6a, 0x6a, 0xcd, 0x5d, 0x22, 0x9b, 0xf2, 0x10, 0xd9, 0x60, 0x5c, 0x88, 0x76, 0xe5, 0x42,
|
|
0x2c, 0x08, 0x17, 0xfa, 0xba, 0x72, 0xa1, 0xbf, 0x33, 0x17, 0x06, 0x9c, 0x5c, 0x38, 0x0f, 0x93,
|
|
0x06, 0x13, 0x32, 0x35, 0xd9, 0x57, 0xb3, 0xff, 0x63, 0x04, 0x26, 0x5c, 0xed, 0x7e, 0x1c, 0x55,
|
|
0x7a, 0x09, 0x46, 0xf6, 0xa4, 0x0f, 0xca, 0x12, 0xe9, 0xbd, 0xaf, 0x31, 0xa5, 0x86, 0x3d, 0xe9,
|
|
0x83, 0x0c, 0x6e, 0xb1, 0xaf, 0xa1, 0x4b, 0x10, 0x97, 0x3f, 0x68, 0xd5, 0x55, 0xb9, 0xfc, 0x5c,
|
|
0x52, 0x9b, 0xb4, 0xd5, 0x00, 0xbd, 0x8d, 0xa0, 0xe5, 0x8f, 0x25, 0xb5, 0x89, 0x5b, 0x8a, 0x5f,
|
|
0x11, 0x60, 0xd6, 0xc5, 0xd4, 0x1e, 0x14, 0xce, 0x89, 0x29, 0x12, 0x08, 0x53, 0xd4, 0x13, 0xd3,
|
|
0xdf, 0xf2, 0xc2, 0x74, 0x0c, 0xea, 0xe0, 0xc4, 0x18, 0x0d, 0x84, 0x31, 0xe6, 0x89, 0xf1, 0xb2,
|
|
0x05, 0x71, 0x43, 0xa9, 0xbc, 0xaf, 0xb4, 0x75, 0x5f, 0xb9, 0xfd, 0x41, 0x04, 0xa6, 0x3d, 0xdb,
|
|
0xfe, 0x38, 0xca, 0xee, 0x19, 0xb6, 0x06, 0xba, 0x2e, 0xef, 0xb5, 0x74, 0x43, 0x76, 0x87, 0xf1,
|
|
0x1a, 0xb0, 0x22, 0xf4, 0x2a, 0xcc, 0x68, 0xbb, 0xca, 0xf3, 0x72, 0x43, 0xa9, 0xbc, 0x5f, 0x56,
|
|
0xda, 0x7a, 0xf9, 0xa9, 0x54, 0x6f, 0xb4, 0x55, 0x59, 0x63, 0x96, 0x63, 0x12, 0xd7, 0x62, 0x46,
|
|
0x16, 0xdb, 0xfa, 0x03, 0x56, 0x85, 0x65, 0x66, 0xce, 0x93, 0xc9, 0x3d, 0xc8, 0xb2, 0x13, 0x63,
|
|
0x24, 0x0c, 0xc6, 0xa8, 0x3f, 0xc6, 0x7f, 0xe6, 0x87, 0xf1, 0x18, 0x64, 0xdb, 0x89, 0x39, 0x1a,
|
|
0x06, 0x73, 0xcc, 0x1f, 0xf3, 0x2c, 0xf4, 0x15, 0xd5, 0x9a, 0xe7, 0x45, 0xd8, 0x50, 0x51, 0xad,
|
|
0x65, 0x95, 0x3d, 0xa9, 0xde, 0xc4, 0x87, 0x97, 0x2a, 0xf9, 0x8b, 0x35, 0x60, 0xbf, 0xc4, 0xff,
|
|
0x2f, 0x40, 0xb4, 0xa8, 0xd6, 0x5c, 0x94, 0x85, 0x75, 0x8d, 0x8b, 0x6a, 0xed, 0x25, 0x8a, 0xc5,
|
|
0x23, 0x88, 0x71, 0x31, 0x1e, 0xf2, 0x37, 0xc7, 0x81, 0x7e, 0x1b, 0x07, 0x2e, 0xc0, 0x58, 0x51,
|
|
0xad, 0x6d, 0xca, 0x78, 0x1f, 0x2c, 0x29, 0x0d, 0x59, 0xc3, 0x07, 0x63, 0x15, 0xff, 0x41, 0x4e,
|
|
0x29, 0x43, 0x25, 0xfa, 0x43, 0xfc, 0x95, 0x08, 0xe1, 0x27, 0x6d, 0x88, 0x66, 0x61, 0x80, 0xc4,
|
|
0x66, 0x4c, 0xa6, 0xf5, 0xe3, 0x9f, 0x79, 0x47, 0x10, 0x3e, 0xe2, 0x08, 0xc2, 0x9b, 0x91, 0x84,
|
|
0x28, 0x1f, 0x49, 0xb0, 0x87, 0xb4, 0x62, 0x1d, 0x43, 0x5a, 0x7d, 0x8e, 0x90, 0x96, 0x89, 0xb5,
|
|
0x9f, 0xc3, 0xea, 0x64, 0xde, 0x40, 0x28, 0xe6, 0xb9, 0x96, 0x6e, 0x30, 0xdc, 0xd2, 0x89, 0x3f,
|
|
0x05, 0x93, 0x99, 0x6a, 0xd5, 0x62, 0x2a, 0x3b, 0x7b, 0x4c, 0x43, 0xbf, 0xa2, 0xd6, 0x2c, 0x8e,
|
|
0xf5, 0x29, 0x6a, 0x2d, 0x5f, 0xe5, 0x39, 0x19, 0xb1, 0x71, 0xd2, 0x24, 0x2d, 0xca, 0x2f, 0xc3,
|
|
0x7b, 0x30, 0x43, 0xef, 0x3b, 0x4e, 0x68, 0xfc, 0x87, 0x30, 0x53, 0x92, 0xf7, 0x94, 0x67, 0x47,
|
|
0x1e, 0x5f, 0xfc, 0x58, 0x80, 0x59, 0x73, 0x90, 0x93, 0x8e, 0xda, 0x66, 0x1c, 0x51, 0xdb, 0xcb,
|
|
0x01, 0x14, 0x96, 0x91, 0x67, 0x84, 0x6e, 0x3f, 0x16, 0x60, 0xc6, 0x85, 0xb7, 0x23, 0xe9, 0xa1,
|
|
0xde, 0x36, 0xa0, 0x82, 0x15, 0xc6, 0xa7, 0x18, 0x6f, 0x06, 0xc6, 0xe8, 0x19, 0xcb, 0xff, 0x57,
|
|
0x02, 0x4c, 0x79, 0xb5, 0x40, 0x05, 0x3e, 0xa0, 0xbf, 0x12, 0x72, 0x92, 0x17, 0x1c, 0xd5, 0xbf,
|
|
0x05, 0x53, 0xec, 0x91, 0x03, 0xdd, 0x06, 0x0d, 0x8e, 0x2f, 0x32, 0x0b, 0xe6, 0xbe, 0xf2, 0x27,
|
|
0xe5, 0xe2, 0x03, 0xb3, 0x1f, 0xdd, 0x9a, 0xfc, 0x0e, 0xf8, 0xc6, 0x38, 0x11, 0x9f, 0x71, 0x8a,
|
|
0x30, 0xc8, 0xc6, 0xd1, 0xd0, 0x1a, 0x0c, 0xb2, 0xd7, 0x17, 0x46, 0x80, 0xa6, 0x6b, 0x3c, 0x85,
|
|
0xf5, 0x2d, 0x99, 0x1d, 0xc5, 0xef, 0x45, 0x61, 0x80, 0x95, 0xba, 0xc0, 0x20, 0x1e, 0x0c, 0x33,
|
|
0xcb, 0xab, 0x76, 0x7f, 0xe9, 0x6a, 0xc0, 0x19, 0x6d, 0x9b, 0xcd, 0x91, 0xf6, 0x0a, 0x97, 0xb9,
|
|
0xeb, 0x0b, 0xb9, 0x53, 0xdd, 0x67, 0x31, 0x94, 0xfe, 0x80, 0x0e, 0x1f, 0x25, 0x80, 0x0b, 0x43,
|
|
0x9d, 0x87, 0x31, 0x55, 0xd6, 0x94, 0xb6, 0x5a, 0x91, 0xcb, 0xca, 0xf3, 0x26, 0x0b, 0x62, 0x0f,
|
|
0x95, 0x46, 0x8d, 0xd2, 0x22, 0x2e, 0xe4, 0x94, 0x70, 0x90, 0x57, 0xc2, 0x53, 0x30, 0x88, 0x8b,
|
|
0xb9, 0x4b, 0x82, 0x01, 0x45, 0xad, 0x19, 0x77, 0xbe, 0xb8, 0x8a, 0x6d, 0x7b, 0xf4, 0xd6, 0x76,
|
|
0x48, 0x31, 0x7d, 0x82, 0x53, 0x30, 0x58, 0x53, 0xa5, 0x26, 0x79, 0x7d, 0x43, 0xaf, 0x6c, 0x07,
|
|
0xc8, 0xef, 0x7c, 0x55, 0xfc, 0x07, 0x02, 0x4c, 0x1b, 0x9c, 0x3e, 0x61, 0xcb, 0x75, 0xdf, 0x61,
|
|
0xb9, 0x02, 0xcb, 0x9c, 0x61, 0xb7, 0xbe, 0x2a, 0x98, 0xba, 0x70, 0x94, 0x7b, 0xcd, 0x0d, 0xcb,
|
|
0x3c, 0x45, 0x09, 0x90, 0x95, 0xa0, 0xa2, 0xe8, 0x65, 0x9c, 0xbe, 0x2b, 0x00, 0x72, 0xd7, 0xa3,
|
|
0x0d, 0xde, 0x34, 0x5d, 0x0f, 0x35, 0xc1, 0x0b, 0x36, 0x4c, 0x29, 0x13, 0x7f, 0x77, 0xd7, 0xe8,
|
|
0xdb, 0x11, 0x18, 0xb5, 0x35, 0xfe, 0xcc, 0x3d, 0xea, 0xe0, 0x1e, 0x7d, 0x1e, 0xe2, 0x36, 0x66,
|
|
0x65, 0xaa, 0x55, 0x97, 0xa5, 0x0c, 0xe9, 0xb4, 0xec, 0xc0, 0xa4, 0x6d, 0x48, 0xf6, 0x84, 0xf0,
|
|
0x88, 0xa3, 0xde, 0x73, 0x8c, 0x4a, 0xfd, 0xa2, 0xc0, 0xa3, 0x8a, 0x7b, 0x30, 0x66, 0xe8, 0xaa,
|
|
0xd2, 0x90, 0xbd, 0xc8, 0xf4, 0xda, 0x10, 0x9c, 0xf7, 0xb0, 0x51, 0xf7, 0x3d, 0xec, 0x14, 0xf4,
|
|
0xd5, 0x54, 0xa5, 0xdd, 0x62, 0xc2, 0x40, 0x7f, 0x88, 0xbf, 0x2e, 0xc0, 0x30, 0x37, 0x9f, 0xe3,
|
|
0x79, 0xa1, 0xe0, 0x78, 0x5e, 0xd8, 0xeb, 0xdc, 0x47, 0x3e, 0x9c, 0x9b, 0xe0, 0xfb, 0x78, 0xf0,
|
|
0xb7, 0x61, 0x82, 0xc3, 0xee, 0xc3, 0x69, 0x0f, 0xc8, 0xf8, 0xc8, 0x7a, 0x8a, 0xeb, 0x79, 0xd2,
|
|
0xd6, 0x7a, 0xcd, 0x61, 0xad, 0x83, 0x6e, 0x77, 0x84, 0x2a, 0xc3, 0x62, 0xff, 0x9a, 0x00, 0x09,
|
|
0x0f, 0xcc, 0xd4, 0x6a, 0x77, 0x59, 0xb6, 0x70, 0x3e, 0xe7, 0x96, 0xd3, 0xe7, 0xbc, 0x15, 0x02,
|
|
0xaf, 0xa7, 0x61, 0xff, 0xb7, 0x02, 0xcc, 0x78, 0xb7, 0x41, 0x5b, 0xbc, 0x71, 0xbf, 0x19, 0x7a,
|
|
0xa2, 0x17, 0x6c, 0xe0, 0x0f, 0x05, 0x98, 0xb3, 0xa9, 0xf7, 0x49, 0x8b, 0x4e, 0xce, 0x21, 0x3a,
|
|
0xd7, 0x02, 0x72, 0xc8, 0x71, 0x4c, 0xf9, 0x17, 0x02, 0x24, 0x3d, 0x71, 0x9f, 0x80, 0xf8, 0x94,
|
|
0x9c, 0xe2, 0xf3, 0x7a, 0x28, 0xcc, 0x9e, 0x02, 0xf4, 0x5b, 0x96, 0xf0, 0xbb, 0x8f, 0x2e, 0x25,
|
|
0x5e, 0x84, 0x6e, 0xf5, 0x30, 0xd9, 0x0b, 0x16, 0xa2, 0xdf, 0x89, 0xc0, 0x30, 0xf7, 0xc8, 0xfb,
|
|
0xc8, 0x61, 0xa4, 0x4c, 0xab, 0xf5, 0x92, 0x87, 0x91, 0x36, 0x61, 0x58, 0xa9, 0x57, 0x2b, 0xe5,
|
|
0x8a, 0xd2, 0x7c, 0x5a, 0xaf, 0xb1, 0xcd, 0x3f, 0xd5, 0xf5, 0x90, 0x99, 0xcf, 0xae, 0xad, 0x91,
|
|
0x1e, 0x0f, 0x5f, 0x29, 0x01, 0x1e, 0x80, 0xfe, 0x5a, 0x1d, 0x01, 0x90, 0x5a, 0x2d, 0x36, 0x9a,
|
|
0xf8, 0x04, 0x26, 0x38, 0x6e, 0xb2, 0xa0, 0x63, 0x17, 0x89, 0xa6, 0x2c, 0x8f, 0xb8, 0x4e, 0x7c,
|
|
0x7d, 0x3e, 0x27, 0xbe, 0x5f, 0x8e, 0x01, 0x58, 0x70, 0xd0, 0x59, 0x18, 0x55, 0xe5, 0x6a, 0x5d,
|
|
0xc5, 0xc3, 0xb7, 0xd5, 0xba, 0xe1, 0xd9, 0x8d, 0x18, 0x85, 0x8f, 0xd4, 0xba, 0x86, 0x1e, 0x93,
|
|
0x13, 0x0a, 0xb1, 0x0b, 0xe4, 0x8b, 0x02, 0x2d, 0x11, 0x59, 0x8a, 0x06, 0xf1, 0x60, 0xf1, 0x44,
|
|
0x86, 0x45, 0x21, 0x27, 0x9e, 0x51, 0x95, 0xfb, 0xa5, 0xa1, 0x02, 0x0c, 0xd3, 0x23, 0x08, 0x1d,
|
|
0x35, 0x4a, 0x46, 0xbd, 0x16, 0x64, 0xd4, 0x75, 0xdc, 0x8d, 0x0c, 0x09, 0x35, 0xe3, 0x4f, 0x0d,
|
|
0xbd, 0x07, 0x71, 0xc9, 0x62, 0x20, 0xfd, 0xfa, 0x21, 0x46, 0x44, 0xef, 0xd5, 0x20, 0x83, 0x72,
|
|
0xcc, 0x27, 0x43, 0x8f, 0x4b, 0xf6, 0x02, 0xec, 0x6c, 0x56, 0x1a, 0x75, 0x99, 0x9e, 0x99, 0x98,
|
|
0xb3, 0x49, 0x0b, 0xf2, 0x55, 0xcc, 0x4a, 0x56, 0xa9, 0xc9, 0x15, 0x55, 0xd6, 0x59, 0xa0, 0x71,
|
|
0x84, 0x16, 0x6e, 0x93, 0x32, 0xf4, 0xd3, 0x10, 0x97, 0xda, 0xfa, 0x6e, 0x99, 0xaa, 0x15, 0x45,
|
|
0x38, 0x10, 0x30, 0x52, 0x81, 0x11, 0xb6, 0x75, 0xa6, 0x99, 0x04, 0xe0, 0x98, 0x64, 0xfb, 0x8d,
|
|
0xde, 0x80, 0x53, 0x2d, 0x85, 0x3e, 0x42, 0x56, 0xda, 0x7a, 0xd9, 0xbe, 0xb2, 0x83, 0x64, 0x65,
|
|
0x67, 0x70, 0x83, 0x0d, 0x52, 0x5f, 0xe2, 0xd6, 0x58, 0xfc, 0x46, 0x0c, 0xa6, 0x1d, 0x3c, 0x60,
|
|
0x91, 0xf9, 0x2e, 0x02, 0xd8, 0x25, 0xc4, 0xe0, 0x96, 0xb0, 0x68, 0x20, 0x09, 0x8b, 0x9d, 0x88,
|
|
0x84, 0xf5, 0x9d, 0x84, 0x84, 0xf5, 0x1f, 0xa3, 0x84, 0xbd, 0xb4, 0xf2, 0xf1, 0xcd, 0x18, 0xc4,
|
|
0x2d, 0xbb, 0x11, 0xcc, 0x36, 0x9d, 0x87, 0x31, 0x9e, 0x59, 0xa6, 0x9d, 0x1a, 0xe5, 0x4a, 0xa9,
|
|
0xe2, 0x7c, 0x26, 0x21, 0x3f, 0xfa, 0x12, 0xf2, 0x2a, 0x8c, 0xac, 0xf1, 0xa6, 0xce, 0x65, 0x0f,
|
|
0x05, 0xb7, 0x3d, 0x24, 0xe7, 0x17, 0x8e, 0xe4, 0x97, 0xee, 0xfc, 0xc2, 0x61, 0xb3, 0x9d, 0x5f,
|
|
0x3c, 0x30, 0xbf, 0x14, 0xe7, 0x17, 0x17, 0x2e, 0x8f, 0xf3, 0x8b, 0x77, 0x9b, 0x90, 0xe7, 0x17,
|
|
0xd7, 0x20, 0x2f, 0xd8, 0xf5, 0xfc, 0xd7, 0x51, 0x18, 0x61, 0x0e, 0x30, 0xd1, 0xc3, 0x90, 0x9f,
|
|
0x17, 0xa2, 0x73, 0x30, 0x46, 0x94, 0x56, 0xae, 0x96, 0x59, 0x58, 0x95, 0x0e, 0x3f, 0xc2, 0x4a,
|
|
0x8b, 0x24, 0xba, 0x7a, 0x09, 0xe2, 0x7c, 0x2b, 0x2e, 0x04, 0x35, 0x66, 0xb5, 0x23, 0x81, 0x81,
|
|
0xab, 0x80, 0xf8, 0x96, 0x2c, 0xe8, 0x4a, 0x7d, 0x84, 0xb8, 0xd5, 0x96, 0xc5, 0x5e, 0x17, 0x00,
|
|
0x54, 0xa5, 0x21, 0x93, 0x01, 0x8d, 0xe8, 0xd4, 0x10, 0x2e, 0xc1, 0x63, 0x69, 0x68, 0xdd, 0xf0,
|
|
0x9b, 0xa9, 0x62, 0xdf, 0x08, 0x78, 0x12, 0x20, 0x8c, 0xe8, 0xec, 0x40, 0x0f, 0x1e, 0xcd, 0x81,
|
|
0x1e, 0x0a, 0xfb, 0x96, 0xc0, 0x58, 0x02, 0xfe, 0xc3, 0x21, 0x56, 0x46, 0xde, 0xb1, 0x7f, 0x60,
|
|
0xc6, 0x19, 0x09, 0xf8, 0x60, 0x2e, 0x87, 0x7b, 0xed, 0x22, 0x1e, 0x6b, 0x67, 0xe7, 0x71, 0xd4,
|
|
0xc1, 0x63, 0xf1, 0x89, 0x7d, 0xe6, 0xde, 0xbc, 0xed, 0x2e, 0x73, 0xdc, 0x37, 0x43, 0x60, 0x64,
|
|
0x8e, 0x7c, 0x36, 0xe4, 0xf8, 0xe2, 0x12, 0x8c, 0xad, 0x53, 0x9a, 0x8c, 0x01, 0x9c, 0xd7, 0xfc,
|
|
0xbf, 0x6a, 0x9d, 0x87, 0xe9, 0xf2, 0x9f, 0xb0, 0x05, 0xcd, 0x3a, 0x2c, 0xe8, 0xd5, 0x30, 0xb2,
|
|
0x69, 0x9a, 0xd0, 0x5d, 0x33, 0x6a, 0x65, 0x03, 0x7d, 0xfc, 0x26, 0x54, 0x4c, 0xc3, 0x2c, 0x3f,
|
|
0x53, 0xf7, 0x68, 0xf6, 0x3f, 0x8d, 0xd8, 0x05, 0xe3, 0xb3, 0x90, 0x76, 0xd7, 0x90, 0xf6, 0x9f,
|
|
0xb7, 0xae, 0x8b, 0x38, 0x96, 0x65, 0xaa, 0xd5, 0x6e, 0x4b, 0xc9, 0x5f, 0x41, 0x45, 0x6c, 0x57,
|
|
0x50, 0x3c, 0xbf, 0xa3, 0xde, 0xc1, 0xea, 0x18, 0xbf, 0x6a, 0x5f, 0xb6, 0xc2, 0x2a, 0x1c, 0x04,
|
|
0x16, 0x08, 0x7f, 0x61, 0x28, 0xf6, 0xbc, 0x40, 0xb0, 0x68, 0xee, 0xf1, 0x83, 0x10, 0xff, 0xa5,
|
|
0x00, 0x4b, 0xee, 0xf9, 0x4e, 0xda, 0x02, 0xfc, 0x84, 0xc3, 0x02, 0xac, 0x84, 0xb1, 0x00, 0x8e,
|
|
0x68, 0xde, 0x0f, 0x04, 0x38, 0xed, 0x4f, 0x41, 0x20, 0x73, 0xd0, 0x81, 0x71, 0x16, 0xe9, 0x51,
|
|
0x6f, 0xd2, 0x63, 0x3c, 0xe9, 0x8f, 0x9d, 0xdf, 0x19, 0xbe, 0x19, 0x9e, 0x30, 0x4f, 0x9f, 0xeb,
|
|
0x3f, 0x09, 0xb0, 0xd0, 0xb1, 0x29, 0x7a, 0xcc, 0xbb, 0x5e, 0x77, 0x7b, 0x9d, 0xf6, 0x05, 0x7b,
|
|
0x60, 0x7f, 0x3d, 0x46, 0x3f, 0x2f, 0xf2, 0x76, 0xbf, 0x7c, 0x2f, 0x9b, 0xac, 0x7b, 0xec, 0x28,
|
|
0x7f, 0x8f, 0x6d, 0x5f, 0xe5, 0x98, 0x73, 0x95, 0xed, 0x1b, 0x6d, 0x9f, 0xd3, 0x61, 0xca, 0x1a,
|
|
0x0e, 0x13, 0x3d, 0x69, 0x2d, 0x07, 0xf9, 0xae, 0x30, 0x80, 0xb7, 0x34, 0x70, 0x34, 0x6f, 0x69,
|
|
0x30, 0x94, 0x19, 0xee, 0xf4, 0xbd, 0x9f, 0x63, 0xcb, 0x80, 0x8e, 0x5b, 0xc6, 0xb0, 0x7b, 0xcb,
|
|
0xa0, 0x9b, 0xd0, 0x08, 0xbf, 0x09, 0xf1, 0x0f, 0x07, 0x46, 0x3b, 0x3d, 0x1c, 0x18, 0x73, 0x3e,
|
|
0x1c, 0x70, 0xba, 0x75, 0xe3, 0x6e, 0xb7, 0xee, 0x4b, 0xf4, 0x3b, 0x5b, 0xde, 0xa7, 0xf3, 0xdd,
|
|
0x40, 0x2d, 0x81, 0x88, 0xf8, 0x0b, 0x44, 0xb4, 0xb3, 0x40, 0xc4, 0x9c, 0x9e, 0xd7, 0xbb, 0x1c,
|
|
0x00, 0xe6, 0xda, 0xf9, 0x02, 0x08, 0xe9, 0xd4, 0xdd, 0xa2, 0x9f, 0x9f, 0x19, 0x0e, 0x59, 0xd0,
|
|
0x61, 0xc5, 0x9f, 0x36, 0xfd, 0x0a, 0xbe, 0x7b, 0x17, 0xeb, 0xe6, 0xab, 0x46, 0x74, 0xf4, 0xa8,
|
|
0x39, 0xfa, 0x97, 0xcc, 0x7b, 0x29, 0x27, 0xdd, 0xc7, 0x34, 0x43, 0x37, 0x8e, 0x37, 0xec, 0x8e,
|
|
0x16, 0x4f, 0xe3, 0x25, 0x88, 0x1b, 0x08, 0x4c, 0x53, 0x4d, 0x71, 0x8c, 0xb5, 0x78, 0xf7, 0x38,
|
|
0x04, 0xb9, 0xdf, 0xb5, 0xae, 0xaf, 0xec, 0xd3, 0xf5, 0x28, 0x6d, 0x5e, 0x10, 0xa3, 0x9e, 0x10,
|
|
0x2f, 0xb8, 0x0d, 0x15, 0xcb, 0x73, 0x11, 0x17, 0x82, 0x5b, 0x2c, 0xf1, 0x17, 0xfd, 0x08, 0x60,
|
|
0xab, 0x76, 0xfc, 0x3c, 0xeb, 0xb6, 0x80, 0x1f, 0x0b, 0x30, 0x6b, 0xd9, 0xc5, 0x97, 0xed, 0xc1,
|
|
0xa2, 0x89, 0xcc, 0xf4, 0x1d, 0xfe, 0xaa, 0x00, 0x33, 0x2e, 0xbc, 0xbd, 0x3c, 0xfd, 0x29, 0x38,
|
|
0x9f, 0xfe, 0xdc, 0x0c, 0xbe, 0x7d, 0x78, 0xed, 0xf7, 0xbf, 0x23, 0xc0, 0x94, 0x57, 0x8b, 0x90,
|
|
0x2f, 0x13, 0x1d, 0x43, 0x78, 0xec, 0xee, 0x85, 0xa3, 0xec, 0xee, 0xc6, 0x60, 0x89, 0x57, 0xba,
|
|
0xec, 0xf3, 0xff, 0xdc, 0x72, 0x5f, 0x7c, 0xd8, 0x7d, 0xac, 0x31, 0xaf, 0xf0, 0xef, 0x44, 0xbb,
|
|
0xae, 0x86, 0xe8, 0xa9, 0x68, 0x76, 0x1a, 0x82, 0xeb, 0xdb, 0x0f, 0x97, 0x9c, 0x5f, 0x88, 0xc0,
|
|
0x4c, 0xa6, 0xad, 0xef, 0x1e, 0x59, 0xea, 0x2b, 0x3e, 0x89, 0x3c, 0xba, 0xca, 0xa5, 0x63, 0xf6,
|
|
0x90, 0xd9, 0x3c, 0x0a, 0x4e, 0x2f, 0xfb, 0x66, 0xc8, 0xf9, 0x3c, 0x94, 0xcd, 0xab, 0x45, 0x48,
|
|
0x65, 0xeb, 0x48, 0xd4, 0x0b, 0x54, 0x36, 0x6c, 0x84, 0x5d, 0xcb, 0xfb, 0xd2, 0x18, 0x61, 0x13,
|
|
0x99, 0x69, 0x84, 0xf7, 0x60, 0xc8, 0x2c, 0xc4, 0x40, 0xc8, 0x6e, 0x6a, 0x7f, 0x26, 0x3e, 0x0f,
|
|
0x96, 0x2d, 0x70, 0xc7, 0x61, 0x67, 0x80, 0x6d, 0x57, 0x41, 0x0e, 0xd8, 0xa9, 0x7f, 0x22, 0xd0,
|
|
0x33, 0x07, 0x71, 0xdb, 0xd1, 0x29, 0x98, 0x7e, 0xb4, 0x9d, 0x2b, 0x6d, 0xef, 0x64, 0x76, 0x72,
|
|
0xe5, 0x47, 0x85, 0xed, 0xad, 0xdc, 0x5a, 0xfe, 0x41, 0x3e, 0x97, 0x8d, 0xbf, 0x82, 0xa6, 0x20,
|
|
0x6e, 0x55, 0x65, 0xd6, 0x76, 0xf2, 0xef, 0xe4, 0xe2, 0x02, 0x9a, 0x01, 0x64, 0x95, 0xe6, 0x0b,
|
|
0xac, 0x3c, 0x82, 0xa6, 0x61, 0xc2, 0x2a, 0xcf, 0xe6, 0x36, 0x72, 0x3b, 0xb9, 0x6c, 0x3c, 0x6a,
|
|
0x1f, 0x64, 0xa3, 0xb8, 0xf6, 0x76, 0x2e, 0x1b, 0x8f, 0xd9, 0x1b, 0x6f, 0x3f, 0xda, 0xde, 0xca,
|
|
0x15, 0xb2, 0xf1, 0x3e, 0x7b, 0x71, 0xbe, 0x90, 0xdf, 0xc9, 0x67, 0x36, 0xe2, 0xfd, 0xa9, 0x3f,
|
|
0x03, 0xfd, 0x34, 0xd9, 0x04, 0x9e, 0x7c, 0x3d, 0x57, 0xc8, 0xe6, 0x4a, 0x0e, 0xa8, 0x13, 0x30,
|
|
0xca, 0xca, 0x1f, 0xe4, 0x36, 0x33, 0x1b, 0x18, 0xe7, 0x38, 0x0c, 0xb3, 0x22, 0x52, 0x10, 0x41,
|
|
0x08, 0xc6, 0x58, 0x41, 0x36, 0xff, 0x4e, 0xae, 0xb4, 0x9d, 0x8b, 0x47, 0x53, 0xff, 0x4f, 0x80,
|
|
0x51, 0x5b, 0x3a, 0x1a, 0xb4, 0x00, 0xa7, 0x08, 0x84, 0x5c, 0xa6, 0xb4, 0xf6, 0xf0, 0xed, 0xdc,
|
|
0xbb, 0x8e, 0x89, 0xe6, 0x60, 0xd6, 0x51, 0xbd, 0x9d, 0x2b, 0x95, 0x0b, 0x99, 0x4d, 0x3c, 0xe5,
|
|
0x3c, 0x24, 0xec, 0x95, 0x0f, 0xf2, 0xa5, 0xed, 0x1d, 0x5a, 0x1b, 0x71, 0x77, 0xdd, 0xc8, 0x18,
|
|
0x95, 0x51, 0x77, 0x65, 0x21, 0xbf, 0xf6, 0x36, 0xad, 0x8c, 0xa1, 0x45, 0x48, 0xda, 0x2b, 0xb3,
|
|
0xf9, 0xed, 0xad, 0x8d, 0xcc, 0xbb, 0xb4, 0xbe, 0x0f, 0xcd, 0xc2, 0xa4, 0xbd, 0x3e, 0xb7, 0x99,
|
|
0xc9, 0x6f, 0xc4, 0xfb, 0xdd, 0x15, 0x84, 0xb3, 0xf1, 0x81, 0xd4, 0xcf, 0xc0, 0x08, 0xaf, 0x5a,
|
|
0xb8, 0x21, 0x6d, 0xb4, 0x99, 0xdb, 0x79, 0x58, 0xcc, 0x96, 0x73, 0x9f, 0x7f, 0x94, 0xd9, 0xd8,
|
|
0x8e, 0xbf, 0x82, 0x49, 0xb2, 0x55, 0x6c, 0xef, 0x64, 0x4a, 0x3b, 0xdb, 0xe5, 0xc7, 0xf9, 0x9d,
|
|
0x87, 0x71, 0x01, 0x0b, 0x8f, 0xad, 0x76, 0xad, 0x58, 0xd8, 0xc9, 0xe4, 0x0b, 0xdb, 0xf1, 0x48,
|
|
0x2a, 0x0b, 0x03, 0x2c, 0x53, 0x00, 0x1e, 0x7c, 0xf3, 0x41, 0x66, 0xe7, 0xdd, 0x2d, 0xa7, 0x80,
|
|
0x8d, 0xc3, 0xb0, 0x51, 0xb1, 0xbd, 0xb9, 0x4d, 0xd7, 0xcc, 0x28, 0x28, 0xee, 0x6c, 0xc5, 0x23,
|
|
0xa9, 0xa7, 0x30, 0x68, 0x64, 0x0c, 0x40, 0x09, 0x98, 0xc2, 0x7f, 0x7b, 0x08, 0xea, 0x0c, 0x20,
|
|
0xb3, 0xa6, 0x50, 0xdc, 0x29, 0x97, 0x72, 0x99, 0xec, 0xbb, 0x71, 0x01, 0xaf, 0xb8, 0x59, 0x4e,
|
|
0xcb, 0x22, 0x58, 0x1e, 0xb9, 0xb2, 0xcd, 0xe2, 0x3b, 0x58, 0x4a, 0x53, 0x0f, 0x21, 0xee, 0xfc,
|
|
0x30, 0x1f, 0x25, 0x61, 0xa6, 0x50, 0xdc, 0xc9, 0x3f, 0xc8, 0xaf, 0x65, 0x76, 0xf2, 0xc5, 0x02,
|
|
0x41, 0x45, 0x19, 0xfb, 0x0a, 0xc6, 0xe2, 0xaa, 0x23, 0x24, 0xa4, 0xda, 0x30, 0xcc, 0x7d, 0x8f,
|
|
0x88, 0xd7, 0x75, 0xab, 0xb8, 0x91, 0x5f, 0x7b, 0xd7, 0x07, 0x37, 0x5f, 0x69, 0xaa, 0x58, 0x02,
|
|
0xa6, 0xf8, 0x72, 0x4e, 0xc9, 0x66, 0x61, 0x92, 0xaf, 0x31, 0xd5, 0x2c, 0xb5, 0x05, 0x83, 0xc6,
|
|
0xf7, 0x63, 0xb8, 0x7b, 0xb1, 0xb4, 0xee, 0x35, 0xe1, 0x24, 0x8c, 0x9b, 0x35, 0xe6, 0x6c, 0xd3,
|
|
0x30, 0x61, 0x16, 0x5a, 0x53, 0xa5, 0x7e, 0x43, 0x00, 0xe4, 0xfe, 0xb0, 0x03, 0x89, 0xb0, 0x58,
|
|
0x2c, 0xad, 0x6f, 0xe6, 0x36, 0x57, 0xfd, 0x95, 0xe4, 0x0c, 0x2c, 0x78, 0xb4, 0xe1, 0x94, 0x41,
|
|
0x40, 0x4b, 0x30, 0xef, 0xd1, 0xc4, 0xd2, 0x88, 0x08, 0x96, 0x3c, 0x8f, 0x16, 0x74, 0x01, 0xa2,
|
|
0x58, 0x25, 0xbc, 0x60, 0x60, 0x65, 0xcc, 0x67, 0xe3, 0xb1, 0x94, 0x64, 0xde, 0x6c, 0x51, 0x9e,
|
|
0xcc, 0x43, 0x62, 0xab, 0x54, 0xfc, 0x89, 0xdc, 0xda, 0x8e, 0x17, 0x5f, 0x30, 0x5b, 0xf9, 0x5a,
|
|
0x93, 0x37, 0x49, 0x98, 0x31, 0x2a, 0x5c, 0x0c, 0x7a, 0x64, 0xbe, 0x95, 0x35, 0xa4, 0x9c, 0x35,
|
|
0x65, 0x92, 0xfe, 0x76, 0xa1, 0xf8, 0xb8, 0x40, 0xcd, 0x28, 0x5f, 0xb1, 0x9d, 0xdb, 0x78, 0x10,
|
|
0x17, 0x9c, 0xcd, 0xd7, 0x4b, 0x99, 0x02, 0x5e, 0xc9, 0x48, 0xea, 0xb1, 0xf9, 0xb6, 0xd9, 0x62,
|
|
0xfa, 0x12, 0xcc, 0x1b, 0x30, 0xfc, 0x59, 0xee, 0x6a, 0xc1, 0x0a, 0x18, 0xcb, 0x53, 0x07, 0xd6,
|
|
0x23, 0x7f, 0xdb, 0x8b, 0x49, 0x74, 0x0e, 0x96, 0x58, 0xd3, 0x52, 0x71, 0x23, 0xe7, 0x37, 0xc3,
|
|
0x02, 0x9c, 0xf2, 0x6c, 0xc5, 0x16, 0xf4, 0x3c, 0x9c, 0xf1, 0xac, 0xb6, 0x99, 0xaa, 0x48, 0xea,
|
|
0xfb, 0xd6, 0xdb, 0x4f, 0xa7, 0x64, 0x5d, 0x00, 0x91, 0x8d, 0xd0, 0x59, 0xba, 0xac, 0x99, 0x3a,
|
|
0x4a, 0x98, 0x45, 0x55, 0x27, 0x29, 0xb3, 0x38, 0xeb, 0x27, 0x69, 0x22, 0x2c, 0xfa, 0xc1, 0x32,
|
|
0xa5, 0x6d, 0x0b, 0x06, 0x8d, 0x67, 0x77, 0x58, 0xfb, 0x32, 0x5b, 0x5b, 0x3e, 0xda, 0x67, 0xd6,
|
|
0xf0, 0xda, 0x67, 0x16, 0x72, 0xc2, 0xf5, 0x05, 0xfa, 0x52, 0x84, 0x7f, 0x74, 0x81, 0xad, 0x2d,
|
|
0x29, 0xcb, 0x6d, 0x6f, 0x15, 0x0b, 0xdb, 0x39, 0x22, 0x37, 0x6b, 0xc5, 0x6c, 0x8e, 0x2e, 0x8e,
|
|
0xab, 0x2a, 0x9f, 0x2d, 0xef, 0x14, 0xdf, 0xce, 0x15, 0xe2, 0x02, 0x3a, 0x0b, 0xa7, 0x5d, 0xd5,
|
|
0xa4, 0xce, 0x6a, 0x14, 0x49, 0xa9, 0x30, 0x6a, 0x7b, 0x91, 0x81, 0x39, 0x48, 0x0a, 0xb0, 0x68,
|
|
0x92, 0x2e, 0x99, 0x47, 0x3b, 0x0f, 0x8b, 0xa5, 0xfc, 0x4f, 0x12, 0x9b, 0x67, 0x4c, 0x9d, 0x84,
|
|
0x19, 0x7b, 0xab, 0xfc, 0xe6, 0xd6, 0x46, 0x7e, 0x2d, 0xbf, 0x13, 0x17, 0xd0, 0x69, 0x98, 0xb3,
|
|
0xd7, 0x95, 0x72, 0x0f, 0x4a, 0xb9, 0xed, 0x87, 0xe6, 0x9c, 0xcf, 0x60, 0xd2, 0xe3, 0xc1, 0x06,
|
|
0xb6, 0x9a, 0xa4, 0x78, 0x0b, 0x8f, 0x64, 0x59, 0xd8, 0xc7, 0xb9, 0xd5, 0xf8, 0x2b, 0xc4, 0x02,
|
|
0x79, 0x54, 0x92, 0xd5, 0xc8, 0xac, 0xe7, 0x0a, 0x78, 0x62, 0x6c, 0x1e, 0x3c, 0xda, 0x14, 0x32,
|
|
0x8c, 0xbd, 0x0d, 0x40, 0xee, 0x87, 0x1c, 0xc4, 0xe4, 0xe0, 0xd2, 0x47, 0x3b, 0x6c, 0x43, 0x23,
|
|
0x9d, 0x56, 0x33, 0xdb, 0xf9, 0x35, 0xba, 0xf5, 0x7b, 0xd4, 0x6e, 0x15, 0xb7, 0xf1, 0x84, 0xde,
|
|
0x95, 0x85, 0x62, 0x01, 0xcf, 0x56, 0x86, 0x29, 0xaf, 0xab, 0x7e, 0xcc, 0x60, 0x0e, 0xe1, 0x76,
|
|
0xae, 0x94, 0xf1, 0x51, 0x6d, 0x5b, 0x2b, 0x43, 0xfc, 0x32, 0x5b, 0x5b, 0x86, 0x6a, 0xeb, 0xe6,
|
|
0xd3, 0x77, 0x2b, 0x20, 0xcb, 0x99, 0x04, 0xc2, 0x7f, 0x2f, 0x89, 0xb4, 0xac, 0x22, 0xd7, 0xc4,
|
|
0x14, 0xcd, 0x45, 0x48, 0xba, 0x6b, 0x39, 0x19, 0xfd, 0x43, 0x47, 0xf8, 0xc5, 0xa9, 0xd0, 0x57,
|
|
0xe0, 0x22, 0xdf, 0xbf, 0xb3, 0x56, 0xa7, 0xe0, 0x42, 0xa7, 0xc6, 0x36, 0xd5, 0xbe, 0x0c, 0xe7,
|
|
0x3b, 0xb5, 0xe5, 0xf5, 0xdb, 0x32, 0x16, 0x9e, 0x4d, 0x0d, 0x25, 0xbf, 0x08, 0x67, 0x3b, 0x42,
|
|
0x35, 0x35, 0x7d, 0x17, 0xc6, 0xec, 0x71, 0x6f, 0xc3, 0x39, 0xf3, 0xe5, 0x31, 0x73, 0xb0, 0xbd,
|
|
0x18, 0xcc, 0x9c, 0x3e, 0x6f, 0xee, 0x7e, 0x9d, 0x25, 0x2b, 0xb4, 0x9f, 0xa8, 0xb0, 0xf4, 0x5b,
|
|
0x7d, 0xfc, 0x37, 0x03, 0x8f, 0x36, 0xc6, 0x76, 0x90, 0xcf, 0xd2, 0xb5, 0xf5, 0x1a, 0x86, 0xd1,
|
|
0x19, 0x31, 0xdc, 0x60, 0x47, 0x7d, 0xb1, 0xb4, 0x8e, 0xab, 0xa3, 0x04, 0x9c, 0xfb, 0xb8, 0x87,
|
|
0xc1, 0x61, 0x0d, 0xe8, 0x08, 0x6e, 0x01, 0x4e, 0x79, 0xb4, 0x61, 0x23, 0x0b, 0x44, 0xda, 0xdd,
|
|
0xd5, 0x1c, 0xf6, 0x08, 0xc6, 0xee, 0x35, 0x0b, 0xc3, 0x1e, 0x5d, 0xf9, 0xea, 0xd7, 0x04, 0x98,
|
|
0xd8, 0x34, 0x0f, 0x5e, 0xdb, 0xb2, 0xfa, 0xac, 0x5e, 0x91, 0xd1, 0xdb, 0x30, 0xf0, 0x50, 0x96,
|
|
0x1a, 0xfa, 0xee, 0x17, 0xd1, 0x8c, 0xeb, 0x3a, 0x21, 0xb7, 0xd7, 0xd2, 0xf7, 0x93, 0x3e, 0xe5,
|
|
0x62, 0xfc, 0xe0, 0xfb, 0xff, 0xfd, 0x6b, 0x11, 0x40, 0x83, 0xe9, 0x5d, 0x36, 0xc2, 0x3a, 0xf4,
|
|
0x95, 0x64, 0xa9, 0xba, 0x1f, 0x7a, 0xa8, 0x31, 0x32, 0xd4, 0x20, 0xea, 0x4f, 0xab, 0xa4, 0x7f,
|
|
0x01, 0x06, 0xdf, 0x61, 0x79, 0xdd, 0x7d, 0xc7, 0xf2, 0xcb, 0x12, 0x2e, 0x4e, 0x90, 0xc1, 0x86,
|
|
0xd1, 0x90, 0x99, 0x1b, 0x1e, 0x7d, 0x09, 0x86, 0xd7, 0x65, 0x12, 0xa0, 0x59, 0xdd, 0xcf, 0x67,
|
|
0xd1, 0x85, 0x20, 0x91, 0x92, 0x7c, 0x36, 0x19, 0x28, 0x45, 0xa5, 0x28, 0x1e, 0x1c, 0x26, 0x86,
|
|
0xe9, 0x15, 0xcb, 0x32, 0x86, 0x4f, 0xa6, 0x1f, 0x45, 0xc3, 0x69, 0x5c, 0xa2, 0xa5, 0x3f, 0xac,
|
|
0x57, 0x3f, 0x42, 0xdf, 0x10, 0x60, 0xca, 0x44, 0x40, 0x72, 0xe9, 0xad, 0x37, 0x94, 0x27, 0x52,
|
|
0x03, 0x5d, 0x09, 0x32, 0x05, 0xcb, 0x39, 0x1e, 0x10, 0xcf, 0x8a, 0x17, 0x9e, 0x05, 0x34, 0x97,
|
|
0xae, 0x91, 0x29, 0x19, 0x2c, 0x72, 0x57, 0x93, 0xfe, 0x90, 0xfc, 0xf3, 0x11, 0xfa, 0x1b, 0x02,
|
|
0x0c, 0x53, 0x89, 0xc5, 0x43, 0x68, 0xe8, 0x46, 0xf0, 0x74, 0xa5, 0x2c, 0x48, 0x94, 0x5c, 0x09,
|
|
0xd3, 0x85, 0x6e, 0xe0, 0xe2, 0x25, 0x2f, 0xa8, 0x93, 0xe2, 0x18, 0xc3, 0x58, 0xd6, 0x48, 0xf3,
|
|
0x3b, 0x42, 0x0a, 0x03, 0x1c, 0xc9, 0x6b, 0x78, 0x08, 0x9a, 0xd6, 0x3c, 0x00, 0x42, 0x67, 0x1e,
|
|
0xf6, 0x00, 0x08, 0x5d, 0xa9, 0xd5, 0xc5, 0x8b, 0x5e, 0x08, 0x11, 0x8a, 0x1b, 0x08, 0xeb, 0x1a,
|
|
0x4d, 0xbb, 0x8e, 0x7e, 0x4e, 0x00, 0xb0, 0xd2, 0xac, 0x77, 0x87, 0xe7, 0x4a, 0xc9, 0x1e, 0x70,
|
|
0x75, 0xcf, 0x1c, 0x1c, 0x26, 0x46, 0x00, 0x08, 0xa0, 0xe7, 0x6a, 0x5d, 0x97, 0xa9, 0xb4, 0x8b,
|
|
0xfd, 0x14, 0x11, 0xe6, 0xd5, 0x57, 0x05, 0x18, 0xcb, 0xca, 0x52, 0x45, 0xaf, 0x3f, 0x33, 0xe0,
|
|
0x1c, 0xaf, 0xc4, 0xaf, 0x78, 0x62, 0x98, 0x4f, 0xce, 0x72, 0x22, 0x9f, 0x2e, 0x57, 0x4d, 0x08,
|
|
0x06, 0xa8, 0xd2, 0x0f, 0x1f, 0x94, 0x6a, 0x03, 0xf5, 0x17, 0x04, 0x18, 0xdc, 0x50, 0x2a, 0xef,
|
|
0x9f, 0x00, 0x9c, 0xab, 0x9e, 0x70, 0x66, 0x92, 0x13, 0x36, 0x38, 0x0d, 0xa5, 0xf2, 0x3e, 0x06,
|
|
0xf2, 0xf3, 0x02, 0xc0, 0xa3, 0x66, 0xe3, 0x64, 0xa0, 0x2c, 0x7b, 0x42, 0x49, 0x24, 0x27, 0x6d,
|
|
0x50, 0xda, 0x4d, 0x03, 0x8c, 0x0a, 0x90, 0x95, 0x1b, 0x72, 0xc8, 0x55, 0xf2, 0xb3, 0xed, 0xe7,
|
|
0x0e, 0x0e, 0x13, 0xa3, 0x30, 0x4c, 0x66, 0xaf, 0x92, 0x61, 0xa9, 0x81, 0x4c, 0xd9, 0x0c, 0xe4,
|
|
0x57, 0x58, 0xee, 0x4d, 0xe3, 0x3f, 0xc8, 0xb8, 0x16, 0xf0, 0xff, 0xc3, 0x60, 0xba, 0x73, 0x31,
|
|
0x58, 0x73, 0x4d, 0x4c, 0x79, 0xe9, 0xf3, 0x34, 0xb2, 0xb1, 0xc2, 0xf8, 0x2f, 0x36, 0xfe, 0x1e,
|
|
0xde, 0xcf, 0xb9, 0xaf, 0x16, 0x4e, 0x18, 0xda, 0xeb, 0x07, 0x87, 0x09, 0x64, 0x5e, 0x16, 0x2c,
|
|
0x4b, 0xad, 0x96, 0x85, 0x70, 0x1e, 0x25, 0xd3, 0xdc, 0x7b, 0x6d, 0x07, 0xd0, 0xbf, 0x2c, 0x00,
|
|
0x14, 0xd5, 0xda, 0x49, 0x03, 0xc4, 0xd6, 0x1a, 0xc8, 0xe5, 0xbe, 0x05, 0x6c, 0x0a, 0xa1, 0xb4,
|
|
0xa2, 0xd6, 0x1c, 0x80, 0xbe, 0x2e, 0x98, 0xef, 0x13, 0x4f, 0x1a, 0xd4, 0xf5, 0x83, 0xc3, 0xc4,
|
|
0x98, 0xf9, 0x6e, 0xc0, 0x02, 0x96, 0x40, 0x33, 0x69, 0x23, 0x79, 0x84, 0x1d, 0xdc, 0x57, 0x04,
|
|
0x18, 0x63, 0x7b, 0xb1, 0x91, 0x4d, 0x3a, 0xa8, 0x8c, 0x07, 0xda, 0xad, 0xd9, 0xa0, 0x81, 0x44,
|
|
0xad, 0xc5, 0x00, 0xfc, 0x43, 0x01, 0x26, 0x5c, 0x59, 0x97, 0x51, 0xd7, 0xaf, 0x02, 0xfd, 0x12,
|
|
0x35, 0x87, 0x03, 0x1a, 0xc8, 0x3e, 0x30, 0xa4, 0xd8, 0x3e, 0xfc, 0x45, 0x01, 0x46, 0x18, 0x03,
|
|
0x69, 0x62, 0xe3, 0xa0, 0xec, 0xbb, 0x1c, 0xd8, 0xd9, 0xf1, 0xf1, 0x0c, 0x90, 0xcd, 0x7a, 0xd2,
|
|
0xe7, 0x26, 0xdf, 0x12, 0x60, 0x9c, 0x0a, 0x83, 0x05, 0xe8, 0x56, 0x70, 0xc6, 0xf1, 0x59, 0x93,
|
|
0xc3, 0x00, 0x0c, 0x64, 0xdf, 0x09, 0x42, 0xcc, 0xb2, 0x6f, 0x0a, 0x30, 0x57, 0x92, 0x35, 0xb9,
|
|
0x59, 0xe5, 0x12, 0x29, 0x53, 0x5d, 0xde, 0x0c, 0xc3, 0x41, 0x3f, 0x23, 0xfb, 0x96, 0x27, 0x9a,
|
|
0x94, 0x78, 0xde, 0x85, 0x06, 0x6f, 0x81, 0x18, 0xc7, 0x33, 0x0e, 0x82, 0x63, 0x51, 0x69, 0x5a,
|
|
0xe7, 0x63, 0x5d, 0x54, 0x32, 0x64, 0xa0, 0x45, 0xa5, 0x69, 0x9b, 0xed, 0x8b, 0x4a, 0x01, 0x85,
|
|
0x58, 0x54, 0x3e, 0x67, 0x74, 0x18, 0x80, 0x81, 0x16, 0x95, 0x20, 0xb4, 0x2f, 0x2a, 0x97, 0x47,
|
|
0x9a, 0xed, 0x15, 0x4a, 0x55, 0x7e, 0x31, 0x8b, 0x4a, 0xd0, 0xf8, 0x2d, 0x2a, 0x67, 0xea, 0x8c,
|
|
0xa4, 0xd6, 0xc7, 0x6a, 0xea, 0x8c, 0x74, 0xcc, 0x41, 0x4c, 0x1d, 0xcb, 0xec, 0xec, 0x30, 0x75,
|
|
0x06, 0xac, 0x10, 0xa6, 0xce, 0x9e, 0xe2, 0x3a, 0x1c, 0xd0, 0x40, 0xa6, 0x8e, 0x21, 0xc5, 0x0c,
|
|
0xfc, 0x4b, 0x82, 0x79, 0x72, 0xdc, 0x7c, 0x2a, 0x05, 0xe7, 0xde, 0xd5, 0x10, 0x19, 0xa8, 0xb5,
|
|
0x6e, 0x87, 0x0c, 0x02, 0x6a, 0x0f, 0x4f, 0xff, 0x8f, 0x05, 0x98, 0xdb, 0x96, 0x9b, 0x55, 0x9f,
|
|
0x6c, 0xcc, 0xe8, 0x5e, 0xf7, 0xab, 0xe3, 0x4e, 0x69, 0x9c, 0x7d, 0x25, 0xf1, 0xb6, 0x27, 0xdb,
|
|
0xce, 0x88, 0xf3, 0x36, 0x0f, 0x12, 0x4b, 0xa0, 0x26, 0xeb, 0xad, 0xe7, 0x4d, 0x3c, 0xf4, 0x3e,
|
|
0xe6, 0xdf, 0xd7, 0x04, 0x40, 0xdb, 0xb2, 0x9e, 0x6f, 0xd6, 0xf5, 0xba, 0xd4, 0x30, 0xa6, 0x46,
|
|
0x5d, 0xff, 0xa3, 0x0d, 0x47, 0x46, 0x6a, 0x5f, 0x60, 0x37, 0x3d, 0x81, 0x2d, 0x8a, 0xa7, 0x1c,
|
|
0xc0, 0xf4, 0x3a, 0x45, 0xd0, 0x7a, 0x8e, 0x51, 0xfd, 0x7d, 0x01, 0xe6, 0xd6, 0x2d, 0x4e, 0xb8,
|
|
0x92, 0x45, 0xfb, 0x85, 0x1c, 0x5e, 0x0f, 0x0a, 0xdb, 0x39, 0x22, 0x61, 0xe0, 0x28, 0x0c, 0xb7,
|
|
0xc8, 0x2f, 0x6b, 0x8d, 0x97, 0xd0, 0x62, 0x9a, 0x94, 0xd5, 0x65, 0x2d, 0x6d, 0xa4, 0xe5, 0xd6,
|
|
0xd2, 0x15, 0xb3, 0x3b, 0xfa, 0x3d, 0x01, 0x16, 0xe9, 0x51, 0xd1, 0x17, 0xed, 0xbd, 0x5e, 0x51,
|
|
0xd1, 0x71, 0x8f, 0x40, 0xd5, 0x5d, 0xe6, 0x7b, 0x51, 0xaa, 0x2c, 0xfe, 0x9f, 0x15, 0xbb, 0x90,
|
|
0x85, 0x17, 0xe1, 0xf7, 0x05, 0x58, 0xa4, 0x4a, 0x7d, 0xfc, 0x94, 0xd1, 0x71, 0x8f, 0x40, 0xd9,
|
|
0x5b, 0x3e, 0x94, 0x5d, 0x4a, 0x9e, 0xed, 0x4c, 0x19, 0x91, 0x38, 0x4c, 0xde, 0x27, 0x02, 0x2c,
|
|
0xd2, 0x53, 0x94, 0x2f, 0x79, 0x77, 0x7a, 0x85, 0xd7, 0x61, 0xcf, 0xb8, 0x77, 0x70, 0x98, 0x18,
|
|
0x87, 0x51, 0x06, 0x9c, 0x3b, 0x6f, 0x9d, 0x4f, 0x05, 0x41, 0x8e, 0x15, 0x76, 0x8a, 0x53, 0x0d,
|
|
0x2b, 0xdb, 0xb2, 0x9f, 0x4e, 0xdc, 0x08, 0x4a, 0x84, 0x39, 0x14, 0x71, 0xd9, 0x3d, 0x94, 0xe1,
|
|
0x14, 0x9a, 0xf5, 0x42, 0x28, 0xd5, 0x64, 0xf4, 0x1b, 0x02, 0xcc, 0xda, 0xb5, 0xc0, 0x02, 0x76,
|
|
0x3b, 0x34, 0x00, 0x26, 0xf7, 0x3d, 0x20, 0xbf, 0xe9, 0x23, 0x16, 0xf3, 0xa2, 0x1f, 0x74, 0x2c,
|
|
0x0a, 0xbf, 0x29, 0xc0, 0xac, 0x5d, 0xd2, 0x8f, 0x82, 0x9e, 0xc9, 0x76, 0x0f, 0xe8, 0xdf, 0xf0,
|
|
0x41, 0x7f, 0x26, 0x39, 0xef, 0x83, 0xde, 0x94, 0xe6, 0x6f, 0x0a, 0x30, 0x6b, 0x97, 0x66, 0x8b,
|
|
0x84, 0x57, 0x43, 0x23, 0xe9, 0x20, 0xbf, 0xb7, 0xfd, 0xe4, 0x77, 0x31, 0xd5, 0x11, 0x24, 0x46,
|
|
0x98, 0xe0, 0x04, 0xd7, 0x9e, 0x6e, 0xd9, 0x4f, 0x78, 0x5f, 0x0b, 0x0a, 0xdd, 0x36, 0x1c, 0x11,
|
|
0x03, 0x0f, 0x01, 0x5e, 0x40, 0x73, 0x5e, 0x10, 0x1b, 0xb4, 0x2f, 0xfa, 0x6d, 0x01, 0xe6, 0xec,
|
|
0x42, 0x6c, 0x07, 0x79, 0xb7, 0x27, 0x30, 0x4c, 0x98, 0x7b, 0xa4, 0xe4, 0x75, 0x1f, 0x91, 0x58,
|
|
0x12, 0x3b, 0x91, 0x82, 0x25, 0xe2, 0x3f, 0x08, 0x30, 0x67, 0x17, 0xea, 0xe3, 0xa0, 0x86, 0x09,
|
|
0x77, 0x8f, 0xd4, 0xbc, 0xe9, 0x43, 0xcd, 0xf9, 0xe4, 0x52, 0x07, 0x6a, 0x4c, 0x21, 0xff, 0xb6,
|
|
0x00, 0x73, 0x76, 0x21, 0xb7, 0x93, 0x74, 0xbb, 0x27, 0x54, 0x1d, 0x84, 0xfd, 0xae, 0x9f, 0xb0,
|
|
0x8b, 0xa9, 0xae, 0x80, 0xd1, 0x17, 0x01, 0xd6, 0x65, 0xbd, 0xa8, 0xd6, 0xc8, 0x95, 0xc6, 0xf9,
|
|
0x00, 0xe9, 0x48, 0xf3, 0xd9, 0xe4, 0xd9, 0x00, 0xcd, 0xc4, 0x25, 0x8f, 0x38, 0xcf, 0x08, 0x02,
|
|
0x2b, 0xce, 0x83, 0xbe, 0x4e, 0x77, 0x09, 0x32, 0x39, 0xfd, 0x76, 0x83, 0x5d, 0x67, 0x04, 0x49,
|
|
0x0f, 0x4b, 0x3b, 0x04, 0x83, 0xb2, 0xe2, 0x01, 0x65, 0x11, 0xcd, 0x1b, 0x57, 0x19, 0x04, 0x11,
|
|
0xfd, 0x9a, 0x24, 0xfd, 0x21, 0xfd, 0xf7, 0x23, 0xf4, 0x0b, 0x02, 0x8c, 0x5a, 0xe1, 0xef, 0xa2,
|
|
0x5a, 0x3b, 0x56, 0xe6, 0x5c, 0xa7, 0xbe, 0x3a, 0x46, 0x64, 0x09, 0xd8, 0x5c, 0x72, 0x86, 0x8b,
|
|
0x82, 0x39, 0x22, 0xdf, 0x18, 0x4f, 0xe9, 0x87, 0x8a, 0x47, 0x75, 0xe2, 0x99, 0xa0, 0x8b, 0xc7,
|
|
0x7f, 0xb3, 0xea, 0x67, 0x22, 0x97, 0x83, 0x27, 0xfc, 0x25, 0x5f, 0x2a, 0x62, 0x3c, 0x13, 0x30,
|
|
0x8e, 0xf1, 0xec, 0x91, 0x62, 0xfb, 0x81, 0x90, 0xa0, 0xa2, 0x15, 0x5a, 0x9a, 0x7e, 0x62, 0xfa,
|
|
0x57, 0x04, 0x18, 0xe1, 0xf3, 0x3a, 0x77, 0xdf, 0x50, 0x3c, 0xb2, 0x40, 0x77, 0xdc, 0x50, 0x10,
|
|
0xc4, 0x39, 0x3c, 0x1c, 0x9b, 0x44, 0x83, 0x4d, 0xf4, 0xcb, 0x8d, 0x8f, 0x0c, 0x64, 0x98, 0x4d,
|
|
0x7f, 0xc7, 0x0c, 0x41, 0x58, 0xc8, 0x6e, 0x05, 0x8b, 0x4a, 0x06, 0x06, 0x97, 0xe9, 0x00, 0x0e,
|
|
0x1b, 0x2d, 0x4f, 0x70, 0xe9, 0x0f, 0xd9, 0x57, 0x19, 0xc4, 0x68, 0x7d, 0x4b, 0x80, 0x71, 0x47,
|
|
0x62, 0xe9, 0xee, 0x30, 0xbd, 0x33, 0x51, 0xfb, 0xc2, 0xbc, 0x7f, 0x70, 0x98, 0x98, 0x84, 0x09,
|
|
0x0e, 0xa6, 0xc3, 0x56, 0x75, 0xc1, 0x89, 0xbe, 0x27, 0x40, 0x9c, 0x5e, 0xfd, 0x99, 0x73, 0x6a,
|
|
0xdd, 0x51, 0x7a, 0x27, 0x8d, 0x4e, 0xde, 0x0e, 0xdd, 0x8f, 0xdd, 0xe5, 0xdd, 0xf3, 0x17, 0x4d,
|
|
0x7c, 0x62, 0xf1, 0x26, 0x82, 0xbb, 0x83, 0xfc, 0x58, 0x80, 0x31, 0x3a, 0xa4, 0x99, 0xda, 0xf8,
|
|
0x66, 0xa8, 0x54, 0xab, 0x06, 0x05, 0xaf, 0x85, 0xec, 0xc5, 0xf0, 0x2f, 0xfb, 0x84, 0xba, 0x67,
|
|
0xc4, 0x09, 0x2b, 0xd4, 0xcd, 0xe1, 0xfd, 0x45, 0x2b, 0x71, 0x25, 0xd9, 0x23, 0x2e, 0x07, 0x9c,
|
|
0x36, 0x9f, 0x4d, 0x06, 0x4d, 0x96, 0x4b, 0x22, 0x66, 0xc8, 0x8e, 0x09, 0x45, 0xf2, 0x14, 0x57,
|
|
0x1c, 0x8d, 0xd9, 0x43, 0xf0, 0xe8, 0xaf, 0x09, 0x30, 0xca, 0x5c, 0x20, 0x96, 0xca, 0x39, 0x28,
|
|
0x03, 0x6d, 0x59, 0xac, 0x83, 0xc3, 0xbb, 0xc8, 0x76, 0x58, 0x06, 0xcf, 0xd2, 0xae, 0x31, 0x71,
|
|
0xc8, 0xc4, 0x86, 0x79, 0xf5, 0x37, 0x05, 0x18, 0x65, 0xee, 0x4c, 0x48, 0x64, 0xb6, 0x3c, 0xd9,
|
|
0xc1, 0x91, 0x5d, 0x27, 0x3a, 0x65, 0x47, 0x66, 0x72, 0x6e, 0x32, 0xe9, 0xe0, 0x1c, 0x86, 0xf8,
|
|
0x77, 0x05, 0x98, 0xb0, 0xf6, 0x35, 0x03, 0xe6, 0x49, 0x2c, 0xea, 0xe7, 0x3a, 0x61, 0x3b, 0x9d,
|
|
0x4c, 0x3a, 0x2e, 0x56, 0x1c, 0xfb, 0x1d, 0xc6, 0x59, 0x7a, 0x29, 0x71, 0xda, 0xf7, 0xc1, 0x6f,
|
|
0x09, 0x90, 0x5c, 0x97, 0x75, 0x96, 0x06, 0x83, 0x7f, 0xb3, 0x45, 0xb4, 0xa5, 0xeb, 0xc6, 0x67,
|
|
0xcf, 0x9f, 0x91, 0x0c, 0x95, 0xaf, 0x42, 0xbc, 0xe0, 0xa3, 0xcb, 0x63, 0x68, 0x24, 0x4d, 0x3e,
|
|
0x13, 0xb2, 0x1e, 0x8e, 0x4c, 0xe3, 0x63, 0x8d, 0x3b, 0x65, 0xb2, 0xdf, 0x86, 0xbd, 0x12, 0x2e,
|
|
0xfd, 0x25, 0xd9, 0xb4, 0xf1, 0x31, 0x60, 0x1a, 0x26, 0x0d, 0x34, 0x4e, 0xeb, 0x48, 0x4e, 0xe6,
|
|
0x06, 0x2b, 0xed, 0x9b, 0xf7, 0x1f, 0x08, 0x30, 0x65, 0xb3, 0x89, 0x86, 0x75, 0xbf, 0xd3, 0x43,
|
|
0x92, 0x49, 0x43, 0x89, 0xee, 0xf6, 0xd4, 0x97, 0x59, 0xc9, 0x47, 0x07, 0x87, 0x89, 0x25, 0x4f,
|
|
0x5a, 0x90, 0xf9, 0xff, 0xfe, 0x53, 0xb2, 0xae, 0x88, 0x17, 0x38, 0x09, 0xb1, 0x3e, 0x34, 0xf3,
|
|
0x34, 0xfe, 0xdf, 0x10, 0x20, 0x9e, 0xa9, 0x56, 0xed, 0xe9, 0xa8, 0xaf, 0x87, 0x02, 0x9a, 0xa9,
|
|
0x56, 0x3b, 0x6e, 0xb1, 0x49, 0x98, 0x72, 0xa0, 0xb6, 0x4b, 0x34, 0x76, 0x57, 0xec, 0x12, 0xcd,
|
|
0xb9, 0x2b, 0x1f, 0x0b, 0x30, 0x49, 0xbd, 0x0f, 0x3b, 0xc4, 0x57, 0x43, 0x41, 0xa4, 0x23, 0xf8,
|
|
0xa2, 0xcc, 0x07, 0x40, 0x49, 0x0e, 0x5b, 0x5e, 0x28, 0xed, 0x7e, 0xcb, 0xb7, 0x05, 0x98, 0xa4,
|
|
0x6e, 0xc8, 0x51, 0xf0, 0xd2, 0x11, 0x7c, 0xf1, 0xae, 0x1f, 0x1c, 0x26, 0xe6, 0x60, 0xda, 0x81,
|
|
0x97, 0x3a, 0x2f, 0x26, 0x60, 0x72, 0xd8, 0xea, 0x0c, 0x18, 0xfd, 0x3e, 0x89, 0x63, 0x73, 0x62,
|
|
0x4e, 0x75, 0xf0, 0xf5, 0xd0, 0xc9, 0x78, 0x0d, 0x11, 0x7f, 0xa3, 0x87, 0x9e, 0x4c, 0xc0, 0x3f,
|
|
0x7f, 0x70, 0x98, 0x58, 0x84, 0x09, 0xd3, 0x74, 0x28, 0x0d, 0xd9, 0x53, 0xbc, 0x2f, 0x8b, 0xe7,
|
|
0x7c, 0xc4, 0x9b, 0xa8, 0x2e, 0x2f, 0xdc, 0xbf, 0x2c, 0xc0, 0x98, 0x25, 0xdc, 0x24, 0xcb, 0xf5,
|
|
0x72, 0x08, 0x80, 0x9d, 0x04, 0x1b, 0x9f, 0x71, 0x13, 0x80, 0x6c, 0x68, 0xed, 0x02, 0x73, 0x4a,
|
|
0x9c, 0x72, 0xf0, 0x9f, 0xe0, 0x63, 0xbb, 0xf2, 0x84, 0x4d, 0x48, 0x08, 0xb4, 0x1b, 0x61, 0x72,
|
|
0x43, 0x77, 0x16, 0x90, 0xb7, 0x0e, 0x0e, 0x13, 0xa7, 0x2c, 0x63, 0x41, 0xd0, 0x39, 0xc4, 0x63,
|
|
0x21, 0x35, 0xe7, 0x05, 0x2f, 0xfd, 0x61, 0x53, 0xda, 0x93, 0x3f, 0x42, 0x3f, 0x30, 0x25, 0x83,
|
|
0x7b, 0x2a, 0x12, 0x40, 0x32, 0xfc, 0xf2, 0xbc, 0x75, 0x97, 0x0c, 0xdf, 0xac, 0x76, 0xe2, 0xe3,
|
|
0x83, 0xc3, 0xc4, 0x82, 0xfb, 0x05, 0x89, 0x53, 0x30, 0xae, 0x8b, 0x57, 0x7c, 0x04, 0xc3, 0xf6,
|
|
0xc4, 0x84, 0x93, 0x8f, 0xdf, 0x14, 0x60, 0x9c, 0x9b, 0x96, 0xec, 0x8f, 0xd7, 0x42, 0xe0, 0x0c,
|
|
0x72, 0x9f, 0xc8, 0x35, 0x27, 0x22, 0x1e, 0x80, 0x90, 0x14, 0xba, 0x14, 0x84, 0x10, 0xb2, 0x91,
|
|
0xfe, 0xae, 0x00, 0xd3, 0xd4, 0x89, 0x74, 0xbc, 0xad, 0x47, 0xaf, 0x85, 0xcc, 0x9e, 0xc8, 0x22,
|
|
0x6e, 0xa1, 0x08, 0xda, 0xb1, 0xeb, 0x2c, 0x26, 0x88, 0x2a, 0x81, 0x83, 0xa2, 0xab, 0xe2, 0x45,
|
|
0x1f, 0x8a, 0x94, 0x7a, 0xb5, 0xc2, 0x53, 0x85, 0x97, 0xe5, 0xb7, 0xcc, 0xab, 0x54, 0x9e, 0x9e,
|
|
0x1b, 0x21, 0x80, 0xb1, 0x78, 0x5b, 0x28, 0x5a, 0x1e, 0x05, 0xa4, 0xe5, 0x5a, 0x32, 0xf0, 0xea,
|
|
0x60, 0x62, 0xfe, 0xb3, 0x00, 0xd3, 0x96, 0x7b, 0xcb, 0x13, 0x74, 0x92, 0x92, 0x26, 0x05, 0x24,
|
|
0xe6, 0x8d, 0xe4, 0xcd, 0xa0, 0xc4, 0x38, 0xfd, 0x61, 0x4c, 0x58, 0xe9, 0x4f, 0x07, 0x61, 0x76,
|
|
0x07, 0xfa, 0x7f, 0x9a, 0x21, 0x60, 0x6e, 0x62, 0x2e, 0x05, 0xf4, 0xf5, 0xe0, 0xd9, 0xab, 0x99,
|
|
0x1c, 0x86, 0xc8, 0x77, 0x2d, 0x36, 0x02, 0x12, 0x98, 0x4d, 0xde, 0x0f, 0x44, 0xa0, 0x3d, 0xa1,
|
|
0x2c, 0x55, 0x38, 0x9a, 0x3e, 0x1b, 0xd3, 0xfa, 0xbf, 0x04, 0x48, 0x96, 0xe4, 0x9a, 0xdc, 0x94,
|
|
0x55, 0x66, 0x42, 0x6c, 0x29, 0x49, 0x43, 0xae, 0x64, 0xd7, 0xb3, 0x02, 0x3f, 0xb8, 0xa8, 0x07,
|
|
0xa4, 0x74, 0x23, 0xb9, 0x1e, 0x78, 0x29, 0x2d, 0xea, 0xd2, 0x65, 0xfa, 0x30, 0x8e, 0x66, 0x4f,
|
|
0xa5, 0x19, 0x55, 0x31, 0xc5, 0xff, 0x55, 0x80, 0x49, 0x9b, 0xcb, 0x43, 0x0e, 0x2e, 0x1a, 0x7a,
|
|
0x23, 0x54, 0xce, 0x48, 0xdb, 0xd6, 0x76, 0xa7, 0x97, 0xae, 0x6c, 0x6f, 0xdb, 0x3e, 0x38, 0x4c,
|
|
0x9c, 0xb6, 0xfc, 0x08, 0x72, 0x46, 0xf2, 0xde, 0x14, 0xc4, 0xf3, 0x3e, 0x5c, 0x60, 0xe7, 0x2a,
|
|
0x6e, 0x5f, 0xfb, 0x44, 0x30, 0xbf, 0x2b, 0x0c, 0x71, 0xf0, 0xb3, 0x67, 0x5e, 0x0c, 0x79, 0xf0,
|
|
0x5b, 0x3d, 0x38, 0x4c, 0x4c, 0x79, 0xd1, 0x41, 0xc0, 0x9f, 0x43, 0x62, 0x67, 0xf0, 0x64, 0x2f,
|
|
0xfb, 0x35, 0x01, 0x90, 0x2d, 0x8c, 0x42, 0xbf, 0x92, 0x0f, 0x95, 0x2f, 0x8d, 0xed, 0x62, 0xe1,
|
|
0xc0, 0x67, 0xec, 0xe7, 0x44, 0x0a, 0xde, 0x0a, 0xaa, 0x88, 0xe2, 0x42, 0x47, 0xf4, 0x98, 0xe5,
|
|
0xdf, 0x15, 0x00, 0xd9, 0x02, 0x2d, 0x3d, 0x60, 0x67, 0xd6, 0x22, 0x1c, 0xf6, 0x07, 0x9d, 0xb1,
|
|
0x5f, 0x4c, 0x06, 0xe0, 0x3c, 0xdb, 0x74, 0x67, 0x5c, 0x61, 0x18, 0x4a, 0xc4, 0xc9, 0x4a, 0x4e,
|
|
0xa9, 0x33, 0x01, 0xaf, 0x26, 0x97, 0xbb, 0x13, 0xe0, 0xdc, 0x9b, 0x30, 0x31, 0xa5, 0x1f, 0x5d,
|
|
0x62, 0xec, 0xfb, 0xd1, 0x27, 0x34, 0xa0, 0xe3, 0x97, 0x95, 0xd3, 0x2f, 0x60, 0x72, 0xbb, 0x87,
|
|
0x34, 0x83, 0x24, 0x6a, 0x92, 0x23, 0xa7, 0xcb, 0x53, 0x76, 0x1a, 0x9c, 0xb1, 0x13, 0xf2, 0xc4,
|
|
0xc7, 0xa0, 0x84, 0x81, 0xb7, 0x87, 0x50, 0x0e, 0x22, 0x70, 0xca, 0x6d, 0x68, 0x8d, 0x38, 0xca,
|
|
0xfd, 0x5e, 0x93, 0xf6, 0x19, 0x46, 0xf7, 0xad, 0xde, 0x07, 0x60, 0xa6, 0xf7, 0x49, 0x10, 0x3a,
|
|
0xdf, 0x14, 0x5f, 0xef, 0xb2, 0x62, 0x46, 0xf6, 0x1b, 0xcf, 0xf0, 0xca, 0xf7, 0x04, 0x98, 0xb6,
|
|
0x4e, 0xa0, 0x7c, 0x7e, 0xd4, 0xd7, 0xc2, 0xe3, 0xef, 0x74, 0x1e, 0xfd, 0xa9, 0x83, 0xc3, 0xc4,
|
|
0x3c, 0x24, 0x3d, 0x89, 0xb1, 0xe4, 0xef, 0x35, 0xf1, 0x7a, 0x58, 0x6a, 0x30, 0x15, 0xdf, 0x17,
|
|
0x20, 0x61, 0x0b, 0xc2, 0xf0, 0x84, 0xbc, 0x1e, 0x9e, 0x90, 0x2e, 0xe1, 0x18, 0x39, 0x10, 0x2d,
|
|
0xf7, 0x93, 0x77, 0x42, 0xaf, 0x8c, 0x2d, 0x54, 0xf3, 0xbb, 0x02, 0x24, 0x6c, 0xa7, 0xf0, 0x23,
|
|
0x52, 0xd5, 0xe5, 0x4c, 0x5e, 0x21, 0x87, 0xbf, 0x39, 0x4f, 0xaa, 0xb8, 0x7b, 0xa7, 0xcf, 0xa5,
|
|
0x8e, 0x40, 0x16, 0xfa, 0x75, 0xf3, 0x46, 0xca, 0xfc, 0x9c, 0x34, 0xc0, 0x8d, 0x94, 0x77, 0x8a,
|
|
0xa7, 0xee, 0x16, 0xc4, 0x27, 0xfb, 0x99, 0xf8, 0x1a, 0xbd, 0x91, 0x22, 0xcf, 0x17, 0x1d, 0x9e,
|
|
0x40, 0x52, 0x9c, 0x66, 0x6f, 0x18, 0xdd, 0x6e, 0xcb, 0xb7, 0x58, 0x82, 0x16, 0xcb, 0x67, 0xb9,
|
|
0x12, 0x18, 0x41, 0xd0, 0x17, 0xdb, 0xd4, 0x4c, 0xbf, 0xe1, 0x0f, 0x70, 0x11, 0x99, 0xaf, 0x3f,
|
|
0x0d, 0xae, 0xda, 0x9c, 0x94, 0x5f, 0x11, 0x60, 0xdc, 0xfa, 0xc8, 0x8d, 0xee, 0x29, 0xe9, 0xc0,
|
|
0x33, 0x33, 0xf7, 0x24, 0x04, 0x54, 0xf6, 0xf9, 0x0c, 0x07, 0xd5, 0xfe, 0x3e, 0xcb, 0x1b, 0x2b,
|
|
0x66, 0xe7, 0x3f, 0x12, 0x60, 0xdc, 0x7a, 0x5e, 0x1c, 0x16, 0x29, 0x73, 0x46, 0x42, 0x20, 0x7d,
|
|
0xb3, 0x03, 0xd2, 0x33, 0xc9, 0x8e, 0x5c, 0xc5, 0x70, 0xbf, 0x23, 0xc0, 0xa4, 0xfd, 0xf3, 0x3e,
|
|
0x0a, 0xf9, 0xa4, 0x64, 0x20, 0xdf, 0x01, 0x2e, 0x3e, 0xe3, 0x77, 0x80, 0xeb, 0x74, 0x37, 0xbe,
|
|
0x43, 0x82, 0xbe, 0x3f, 0x22, 0xd0, 0xed, 0xce, 0xc5, 0x1f, 0x0a, 0x30, 0x6b, 0xdb, 0xa5, 0x39,
|
|
0xbb, 0x11, 0x34, 0x9f, 0xef, 0x71, 0x9b, 0x8f, 0xf7, 0x0e, 0x0e, 0x13, 0xe7, 0x60, 0xd6, 0xb0,
|
|
0x94, 0x0e, 0x2d, 0x0d, 0x1e, 0xf6, 0xf3, 0xb3, 0x33, 0xff, 0xc5, 0x4a, 0x8e, 0x62, 0x37, 0x37,
|
|
0x2b, 0x61, 0x09, 0x0e, 0xb7, 0x6c, 0x4f, 0x42, 0xd1, 0x75, 0x13, 0xad, 0x74, 0xa4, 0xcb, 0xdb,
|
|
0x3c, 0xfd, 0x9e, 0x00, 0x33, 0xb6, 0x33, 0xd4, 0x8b, 0xb1, 0x52, 0xd2, 0xc1, 0x61, 0xe2, 0x3c,
|
|
0x24, 0x3c, 0x48, 0xf3, 0x3c, 0xd2, 0xaf, 0x88, 0xd7, 0x42, 0xd1, 0x86, 0x57, 0xed, 0xbf, 0x09,
|
|
0x30, 0x63, 0x3b, 0x61, 0x59, 0x94, 0xdd, 0x0a, 0xbb, 0x6e, 0xe1, 0x8d, 0xdb, 0xd3, 0x70, 0x04,
|
|
0xde, 0x4e, 0xf6, 0xb0, 0x78, 0x46, 0x40, 0xc6, 0x75, 0x0c, 0xb3, 0x28, 0x3d, 0x61, 0x09, 0x55,
|
|
0xc3, 0x51, 0xb9, 0x96, 0xbc, 0x17, 0x9e, 0x4a, 0xa7, 0xf1, 0xa4, 0x21, 0xa8, 0x3f, 0xdd, 0x14,
|
|
0xdb, 0x6d, 0xee, 0x57, 0x22, 0x30, 0xef, 0x3e, 0x19, 0x71, 0x86, 0x77, 0x35, 0x54, 0xd4, 0xe0,
|
|
0x98, 0xad, 0xaf, 0x7e, 0x70, 0x98, 0x48, 0xc3, 0x82, 0xdd, 0x4f, 0x75, 0xda, 0x2a, 0xfb, 0x7f,
|
|
0xd3, 0x41, 0x79, 0x73, 0x57, 0xbc, 0x65, 0xf0, 0xc6, 0x20, 0xde, 0x99, 0x21, 0xd4, 0xdf, 0x26,
|
|
0xff, 0x91, 0x60, 0xff, 0x1f, 0x2e, 0xec, 0x86, 0xf9, 0x76, 0x4f, 0x0c, 0x09, 0x27, 0x09, 0x1f,
|
|
0xf4, 0x4a, 0xf7, 0x7d, 0xf4, 0x66, 0x50, 0xba, 0xbd, 0x6d, 0xf6, 0x1f, 0x5b, 0x2f, 0xa8, 0xbd,
|
|
0xc8, 0x40, 0x77, 0x7b, 0xa2, 0x3e, 0xbc, 0x11, 0x7f, 0x7e, 0x70, 0x98, 0xb8, 0x0e, 0x8b, 0xbe,
|
|
0x1c, 0xa0, 0x1a, 0xe1, 0xc5, 0x02, 0xee, 0x94, 0x1c, 0x96, 0x05, 0x78, 0xf1, 0xbf, 0x1c, 0x31,
|
|
0x1f, 0x5d, 0x1f, 0x23, 0x03, 0xc2, 0x1b, 0xf9, 0x3f, 0xd7, 0x33, 0x03, 0x56, 0x93, 0x47, 0x93,
|
|
0x01, 0xcc, 0x85, 0x5f, 0x8a, 0xc0, 0x69, 0xef, 0x08, 0x9c, 0xc5, 0x89, 0x17, 0xa1, 0x08, 0x3f,
|
|
0x27, 0xf4, 0xcc, 0x86, 0x42, 0x32, 0x7f, 0x24, 0x36, 0x38, 0xf7, 0x06, 0xcc, 0x92, 0xd2, 0x8f,
|
|
0x3b, 0x4b, 0x5c, 0xcf, 0xbb, 0xc6, 0xd9, 0xc5, 0xbc, 0x99, 0x47, 0xf6, 0x56, 0xc8, 0x6c, 0xbd,
|
|
0x81, 0xf7, 0x08, 0x9f, 0xcc, 0xba, 0xe2, 0x22, 0xfd, 0xbe, 0x54, 0x9c, 0x4c, 0x4b, 0x6d, 0x7d,
|
|
0xd7, 0x65, 0xcd, 0x57, 0xff, 0x8d, 0xf0, 0xd5, 0xcc, 0x2f, 0x09, 0x68, 0x0d, 0xc6, 0xac, 0xd4,
|
|
0x4c, 0x4b, 0x99, 0xad, 0xbc, 0x78, 0x15, 0xa5, 0x76, 0x75, 0xbd, 0xa5, 0xdd, 0x49, 0xa7, 0x6b,
|
|
0x75, 0x7d, 0xb7, 0xfd, 0x64, 0xb9, 0xa2, 0xec, 0xa5, 0x31, 0x8a, 0x34, 0x43, 0x91, 0xb6, 0x50,
|
|
0xac, 0x44, 0xaf, 0x2f, 0xdf, 0x48, 0x09, 0x91, 0x15, 0xfe, 0x3f, 0x08, 0x4c, 0xff, 0xac, 0xa6,
|
|
0x34, 0xed, 0x25, 0x35, 0xb5, 0x55, 0xb9, 0xe3, 0x6a, 0x73, 0xc7, 0xd5, 0xe6, 0x27, 0x7d, 0xe7,
|
|
0x6c, 0xbd, 0x5f, 0xe3, 0xe6, 0x4d, 0x4b, 0xad, 0x3a, 0xe9, 0xf0, 0xa4, 0x9f, 0xc4, 0x70, 0x5e,
|
|
0xfd, 0x93, 0x00, 0x00, 0x00, 0xff, 0xff, 0x95, 0x4a, 0x9c, 0x64, 0x72, 0xa8, 0x00, 0x00,
|
|
}
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ context.Context
|
|
var _ grpc.ClientConnInterface
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
const _ = grpc.SupportPackageIsVersion6
|
|
|
|
// ManagementServiceClient is the client API for ManagementService service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
|
type ManagementServiceClient interface {
|
|
//READINESS
|
|
Healthz(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
Ready(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
Validate(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*_struct.Struct, error)
|
|
//USER
|
|
GetUserByID(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*User, error)
|
|
GetUserByEmailGlobal(ctx context.Context, in *UserEmailID, opts ...grpc.CallOption) (*User, error)
|
|
SearchUsers(ctx context.Context, in *UserSearchRequest, opts ...grpc.CallOption) (*UserSearchResponse, error)
|
|
IsUserUnique(ctx context.Context, in *UniqueUserRequest, opts ...grpc.CallOption) (*UniqueUserResponse, error)
|
|
CreateUser(ctx context.Context, in *CreateUserRequest, opts ...grpc.CallOption) (*User, error)
|
|
DeactivateUser(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*User, error)
|
|
ReactivateUser(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*User, error)
|
|
LockUser(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*User, error)
|
|
UnlockUser(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*User, error)
|
|
DeleteUser(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
UserChanges(ctx context.Context, in *ChangeRequest, opts ...grpc.CallOption) (*Changes, error)
|
|
ApplicationChanges(ctx context.Context, in *ChangeRequest, opts ...grpc.CallOption) (*Changes, error)
|
|
OrgChanges(ctx context.Context, in *ChangeRequest, opts ...grpc.CallOption) (*Changes, error)
|
|
ProjectChanges(ctx context.Context, in *ChangeRequest, opts ...grpc.CallOption) (*Changes, error)
|
|
//USER_PROFILE
|
|
GetUserProfile(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserProfile, error)
|
|
UpdateUserProfile(ctx context.Context, in *UpdateUserProfileRequest, opts ...grpc.CallOption) (*UserProfile, error)
|
|
//USER_EMAIL
|
|
GetUserEmail(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserEmail, error)
|
|
ChangeUserEmail(ctx context.Context, in *UpdateUserEmailRequest, opts ...grpc.CallOption) (*UserEmail, error)
|
|
ResendEmailVerificationMail(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
//USER_PHONE
|
|
GetUserPhone(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserPhone, error)
|
|
ChangeUserPhone(ctx context.Context, in *UpdateUserPhoneRequest, opts ...grpc.CallOption) (*UserPhone, error)
|
|
ResendPhoneVerificationCode(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
//USER_ADDRESS
|
|
GetUserAddress(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserAddress, error)
|
|
UpdateUserAddress(ctx context.Context, in *UpdateUserAddressRequest, opts ...grpc.CallOption) (*UserAddress, error)
|
|
//MFA
|
|
GetUserMfas(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*MultiFactors, error)
|
|
//PASSWORD
|
|
// Sends an Notification (Email/SMS) with a password reset Link
|
|
SendSetPasswordNotification(ctx context.Context, in *SetPasswordNotificationRequest, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
// A Manager is only allowed to set an initial password, on the next login the user has to change his password
|
|
SetInitialPassword(ctx context.Context, in *PasswordRequest, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
//PASSWORD_COMPLEXITY_POLICY
|
|
GetPasswordComplexityPolicy(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*PasswordComplexityPolicy, error)
|
|
CreatePasswordComplexityPolicy(ctx context.Context, in *PasswordComplexityPolicyCreate, opts ...grpc.CallOption) (*PasswordComplexityPolicy, error)
|
|
UpdatePasswordComplexityPolicy(ctx context.Context, in *PasswordComplexityPolicyUpdate, opts ...grpc.CallOption) (*PasswordComplexityPolicy, error)
|
|
DeletePasswordComplexityPolicy(ctx context.Context, in *PasswordComplexityPolicyID, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
//PASSWORD_AGE_POLICY
|
|
GetPasswordAgePolicy(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*PasswordAgePolicy, error)
|
|
CreatePasswordAgePolicy(ctx context.Context, in *PasswordAgePolicyCreate, opts ...grpc.CallOption) (*PasswordAgePolicy, error)
|
|
UpdatePasswordAgePolicy(ctx context.Context, in *PasswordAgePolicyUpdate, opts ...grpc.CallOption) (*PasswordAgePolicy, error)
|
|
DeletePasswordAgePolicy(ctx context.Context, in *PasswordAgePolicyID, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
//PASSWORD_LOCKOUT_POLICY
|
|
GetPasswordLockoutPolicy(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*PasswordLockoutPolicy, error)
|
|
CreatePasswordLockoutPolicy(ctx context.Context, in *PasswordLockoutPolicyCreate, opts ...grpc.CallOption) (*PasswordLockoutPolicy, error)
|
|
UpdatePasswordLockoutPolicy(ctx context.Context, in *PasswordLockoutPolicyUpdate, opts ...grpc.CallOption) (*PasswordLockoutPolicy, error)
|
|
DeletePasswordLockoutPolicy(ctx context.Context, in *PasswordLockoutPolicyID, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
//ORG
|
|
GetOrgByID(ctx context.Context, in *OrgID, opts ...grpc.CallOption) (*Org, error)
|
|
GetOrgByDomainGlobal(ctx context.Context, in *OrgDomain, opts ...grpc.CallOption) (*Org, error)
|
|
DeactivateOrg(ctx context.Context, in *OrgID, opts ...grpc.CallOption) (*Org, error)
|
|
ReactivateOrg(ctx context.Context, in *OrgID, opts ...grpc.CallOption) (*Org, error)
|
|
//ORG_MEMBERS
|
|
GetOrgMemberRoles(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*OrgMemberRoles, error)
|
|
AddOrgMember(ctx context.Context, in *AddOrgMemberRequest, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
ChangeOrgMember(ctx context.Context, in *ChangeOrgMemberRequest, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
RemoveOrgMember(ctx context.Context, in *RemoveOrgMemberRequest, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
SearchOrgMembers(ctx context.Context, in *OrgMemberSearchRequest, opts ...grpc.CallOption) (*OrgMemberSearchResponse, error)
|
|
//PROJECTS
|
|
SearchProjects(ctx context.Context, in *ProjectSearchRequest, opts ...grpc.CallOption) (*ProjectSearchResponse, error)
|
|
ProjectByID(ctx context.Context, in *ProjectID, opts ...grpc.CallOption) (*Project, error)
|
|
CreateProject(ctx context.Context, in *ProjectCreateRequest, opts ...grpc.CallOption) (*Project, error)
|
|
UpdateProject(ctx context.Context, in *ProjectUpdateRequest, opts ...grpc.CallOption) (*Project, error)
|
|
DeactivateProject(ctx context.Context, in *ProjectID, opts ...grpc.CallOption) (*Project, error)
|
|
ReactivateProject(ctx context.Context, in *ProjectID, opts ...grpc.CallOption) (*Project, error)
|
|
//GRANTED_PROJECT_GRANTS
|
|
GetGrantedProjectGrantByID(ctx context.Context, in *GrantedGrantID, opts ...grpc.CallOption) (*ProjectGrant, error)
|
|
//PROJECT_MEMBERS
|
|
GetProjectMemberRoles(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*ProjectMemberRoles, error)
|
|
SearchProjectMembers(ctx context.Context, in *ProjectMemberSearchRequest, opts ...grpc.CallOption) (*ProjectMemberSearchResponse, error)
|
|
AddProjectMember(ctx context.Context, in *ProjectMemberAdd, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
ChangeProjectMember(ctx context.Context, in *ProjectMemberChange, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
RemoveProjectMember(ctx context.Context, in *ProjectMemberRemove, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
//PROJECT_ROLES
|
|
SearchProjectRoles(ctx context.Context, in *ProjectRoleSearchRequest, opts ...grpc.CallOption) (*ProjectRoleSearchResponse, error)
|
|
AddProjectRole(ctx context.Context, in *ProjectRoleAdd, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
RemoveProjectRole(ctx context.Context, in *ProjectRoleRemove, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
//APPLICATIONS
|
|
SearchApplications(ctx context.Context, in *ApplicationSearchRequest, opts ...grpc.CallOption) (*ApplicationSearchResponse, error)
|
|
ApplicationByID(ctx context.Context, in *ApplicationID, opts ...grpc.CallOption) (*Application, error)
|
|
CreateOIDCApplication(ctx context.Context, in *OIDCApplicationCreate, opts ...grpc.CallOption) (*Application, error)
|
|
UpdateApplication(ctx context.Context, in *ApplicationUpdate, opts ...grpc.CallOption) (*Application, error)
|
|
DeactivateApplication(ctx context.Context, in *ApplicationID, opts ...grpc.CallOption) (*Application, error)
|
|
ReactivateApplication(ctx context.Context, in *ApplicationID, opts ...grpc.CallOption) (*Application, error)
|
|
UpdateApplicationOIDCConfig(ctx context.Context, in *OIDCConfigUpdate, opts ...grpc.CallOption) (*OIDCConfig, error)
|
|
RegenerateOIDCClientSecret(ctx context.Context, in *ApplicationID, opts ...grpc.CallOption) (*ClientSecret, error)
|
|
//PROJECT_GRANT
|
|
SearchProjectGrants(ctx context.Context, in *ProjectGrantSearchRequest, opts ...grpc.CallOption) (*ProjectGrantSearchResponse, error)
|
|
ProjectGrantByID(ctx context.Context, in *ProjectGrantID, opts ...grpc.CallOption) (*ProjectGrant, error)
|
|
CreateProjectGrant(ctx context.Context, in *ProjectGrantCreate, opts ...grpc.CallOption) (*ProjectGrant, error)
|
|
UpdateProjectGrant(ctx context.Context, in *ProjectGrantUpdate, opts ...grpc.CallOption) (*ProjectGrant, error)
|
|
DeactivateProjectGrant(ctx context.Context, in *ProjectGrantID, opts ...grpc.CallOption) (*ProjectGrant, error)
|
|
ReactivateProjectGrant(ctx context.Context, in *ProjectGrantID, opts ...grpc.CallOption) (*ProjectGrant, error)
|
|
//PROJECT_GRANT_MEMBER
|
|
GetProjectGrantMemberRoles(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*ProjectGrantMemberRoles, error)
|
|
SearchProjectGrantMembers(ctx context.Context, in *ProjectGrantMemberSearchRequest, opts ...grpc.CallOption) (*ProjectGrantMemberSearchResponse, error)
|
|
AddProjectGrantMember(ctx context.Context, in *ProjectGrantMemberAdd, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
ChangeProjectGrantMember(ctx context.Context, in *ProjectGrantMemberChange, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
RemoveProjectGrantMember(ctx context.Context, in *ProjectGrantMemberRemove, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
//USER_GRANT
|
|
SearchUserGrants(ctx context.Context, in *UserGrantSearchRequest, opts ...grpc.CallOption) (*UserGrantSearchResponse, error)
|
|
UserGrantByID(ctx context.Context, in *UserGrantID, opts ...grpc.CallOption) (*UserGrant, error)
|
|
CreateUserGrant(ctx context.Context, in *UserGrantCreate, opts ...grpc.CallOption) (*UserGrant, error)
|
|
UpdateUserGrant(ctx context.Context, in *UserGrantUpdate, opts ...grpc.CallOption) (*UserGrant, error)
|
|
DeactivateUserGrant(ctx context.Context, in *UserGrantID, opts ...grpc.CallOption) (*UserGrant, error)
|
|
ReactivateUserGrant(ctx context.Context, in *UserGrantID, opts ...grpc.CallOption) (*UserGrant, error)
|
|
//PROJECT_USER_GRANT
|
|
SearchProjectUserGrants(ctx context.Context, in *ProjectUserGrantSearchRequest, opts ...grpc.CallOption) (*UserGrantSearchResponse, error)
|
|
ProjectUserGrantByID(ctx context.Context, in *ProjectUserGrantID, opts ...grpc.CallOption) (*UserGrant, error)
|
|
CreateProjectUserGrant(ctx context.Context, in *UserGrantCreate, opts ...grpc.CallOption) (*UserGrant, error)
|
|
UpdateProjectUserGrant(ctx context.Context, in *ProjectUserGrantUpdate, opts ...grpc.CallOption) (*UserGrant, error)
|
|
DeactivateProjectUserGrant(ctx context.Context, in *ProjectUserGrantID, opts ...grpc.CallOption) (*UserGrant, error)
|
|
ReactivateProjectUserGrant(ctx context.Context, in *ProjectUserGrantID, opts ...grpc.CallOption) (*UserGrant, error)
|
|
//PROJECT_GRANT_USER_GRANT
|
|
SearchProjectGrantUserGrants(ctx context.Context, in *ProjectGrantUserGrantSearchRequest, opts ...grpc.CallOption) (*UserGrantSearchResponse, error)
|
|
ProjectGrantUserGrantByID(ctx context.Context, in *ProjectGrantUserGrantID, opts ...grpc.CallOption) (*UserGrant, error)
|
|
CreateProjectGrantUserGrant(ctx context.Context, in *ProjectGrantUserGrantCreate, opts ...grpc.CallOption) (*UserGrant, error)
|
|
UpdateProjectGrantUserGrant(ctx context.Context, in *ProjectGrantUserGrantUpdate, opts ...grpc.CallOption) (*UserGrant, error)
|
|
DeactivateProjectGrantUserGrant(ctx context.Context, in *ProjectGrantUserGrantID, opts ...grpc.CallOption) (*UserGrant, error)
|
|
ReactivateProjectGrantUserGrant(ctx context.Context, in *ProjectGrantUserGrantID, opts ...grpc.CallOption) (*UserGrant, error)
|
|
//Grant
|
|
SearchAuthGrant(ctx context.Context, in *AuthGrantSearchRequest, opts ...grpc.CallOption) (*AuthGrantSearchResponse, error)
|
|
}
|
|
|
|
type managementServiceClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewManagementServiceClient(cc grpc.ClientConnInterface) ManagementServiceClient {
|
|
return &managementServiceClient{cc}
|
|
}
|
|
|
|
func (c *managementServiceClient) Healthz(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/Healthz", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) Ready(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/Ready", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) Validate(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*_struct.Struct, error) {
|
|
out := new(_struct.Struct)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/Validate", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetUserByID(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*User, error) {
|
|
out := new(User)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetUserByID", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetUserByEmailGlobal(ctx context.Context, in *UserEmailID, opts ...grpc.CallOption) (*User, error) {
|
|
out := new(User)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetUserByEmailGlobal", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchUsers(ctx context.Context, in *UserSearchRequest, opts ...grpc.CallOption) (*UserSearchResponse, error) {
|
|
out := new(UserSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchUsers", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) IsUserUnique(ctx context.Context, in *UniqueUserRequest, opts ...grpc.CallOption) (*UniqueUserResponse, error) {
|
|
out := new(UniqueUserResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/IsUserUnique", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) CreateUser(ctx context.Context, in *CreateUserRequest, opts ...grpc.CallOption) (*User, error) {
|
|
out := new(User)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/CreateUser", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) DeactivateUser(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*User, error) {
|
|
out := new(User)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/DeactivateUser", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ReactivateUser(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*User, error) {
|
|
out := new(User)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ReactivateUser", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) LockUser(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*User, error) {
|
|
out := new(User)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/LockUser", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UnlockUser(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*User, error) {
|
|
out := new(User)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UnlockUser", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) DeleteUser(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/DeleteUser", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UserChanges(ctx context.Context, in *ChangeRequest, opts ...grpc.CallOption) (*Changes, error) {
|
|
out := new(Changes)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UserChanges", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ApplicationChanges(ctx context.Context, in *ChangeRequest, opts ...grpc.CallOption) (*Changes, error) {
|
|
out := new(Changes)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ApplicationChanges", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) OrgChanges(ctx context.Context, in *ChangeRequest, opts ...grpc.CallOption) (*Changes, error) {
|
|
out := new(Changes)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/OrgChanges", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ProjectChanges(ctx context.Context, in *ChangeRequest, opts ...grpc.CallOption) (*Changes, error) {
|
|
out := new(Changes)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ProjectChanges", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetUserProfile(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserProfile, error) {
|
|
out := new(UserProfile)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetUserProfile", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UpdateUserProfile(ctx context.Context, in *UpdateUserProfileRequest, opts ...grpc.CallOption) (*UserProfile, error) {
|
|
out := new(UserProfile)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UpdateUserProfile", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetUserEmail(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserEmail, error) {
|
|
out := new(UserEmail)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetUserEmail", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ChangeUserEmail(ctx context.Context, in *UpdateUserEmailRequest, opts ...grpc.CallOption) (*UserEmail, error) {
|
|
out := new(UserEmail)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ChangeUserEmail", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ResendEmailVerificationMail(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ResendEmailVerificationMail", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetUserPhone(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserPhone, error) {
|
|
out := new(UserPhone)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetUserPhone", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ChangeUserPhone(ctx context.Context, in *UpdateUserPhoneRequest, opts ...grpc.CallOption) (*UserPhone, error) {
|
|
out := new(UserPhone)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ChangeUserPhone", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ResendPhoneVerificationCode(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ResendPhoneVerificationCode", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetUserAddress(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserAddress, error) {
|
|
out := new(UserAddress)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetUserAddress", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UpdateUserAddress(ctx context.Context, in *UpdateUserAddressRequest, opts ...grpc.CallOption) (*UserAddress, error) {
|
|
out := new(UserAddress)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UpdateUserAddress", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetUserMfas(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*MultiFactors, error) {
|
|
out := new(MultiFactors)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetUserMfas", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SendSetPasswordNotification(ctx context.Context, in *SetPasswordNotificationRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SendSetPasswordNotification", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SetInitialPassword(ctx context.Context, in *PasswordRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SetInitialPassword", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetPasswordComplexityPolicy(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*PasswordComplexityPolicy, error) {
|
|
out := new(PasswordComplexityPolicy)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetPasswordComplexityPolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) CreatePasswordComplexityPolicy(ctx context.Context, in *PasswordComplexityPolicyCreate, opts ...grpc.CallOption) (*PasswordComplexityPolicy, error) {
|
|
out := new(PasswordComplexityPolicy)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/CreatePasswordComplexityPolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UpdatePasswordComplexityPolicy(ctx context.Context, in *PasswordComplexityPolicyUpdate, opts ...grpc.CallOption) (*PasswordComplexityPolicy, error) {
|
|
out := new(PasswordComplexityPolicy)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UpdatePasswordComplexityPolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) DeletePasswordComplexityPolicy(ctx context.Context, in *PasswordComplexityPolicyID, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/DeletePasswordComplexityPolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetPasswordAgePolicy(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*PasswordAgePolicy, error) {
|
|
out := new(PasswordAgePolicy)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetPasswordAgePolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) CreatePasswordAgePolicy(ctx context.Context, in *PasswordAgePolicyCreate, opts ...grpc.CallOption) (*PasswordAgePolicy, error) {
|
|
out := new(PasswordAgePolicy)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/CreatePasswordAgePolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UpdatePasswordAgePolicy(ctx context.Context, in *PasswordAgePolicyUpdate, opts ...grpc.CallOption) (*PasswordAgePolicy, error) {
|
|
out := new(PasswordAgePolicy)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UpdatePasswordAgePolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) DeletePasswordAgePolicy(ctx context.Context, in *PasswordAgePolicyID, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/DeletePasswordAgePolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetPasswordLockoutPolicy(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*PasswordLockoutPolicy, error) {
|
|
out := new(PasswordLockoutPolicy)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetPasswordLockoutPolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) CreatePasswordLockoutPolicy(ctx context.Context, in *PasswordLockoutPolicyCreate, opts ...grpc.CallOption) (*PasswordLockoutPolicy, error) {
|
|
out := new(PasswordLockoutPolicy)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/CreatePasswordLockoutPolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UpdatePasswordLockoutPolicy(ctx context.Context, in *PasswordLockoutPolicyUpdate, opts ...grpc.CallOption) (*PasswordLockoutPolicy, error) {
|
|
out := new(PasswordLockoutPolicy)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UpdatePasswordLockoutPolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) DeletePasswordLockoutPolicy(ctx context.Context, in *PasswordLockoutPolicyID, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/DeletePasswordLockoutPolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetOrgByID(ctx context.Context, in *OrgID, opts ...grpc.CallOption) (*Org, error) {
|
|
out := new(Org)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetOrgByID", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetOrgByDomainGlobal(ctx context.Context, in *OrgDomain, opts ...grpc.CallOption) (*Org, error) {
|
|
out := new(Org)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetOrgByDomainGlobal", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) DeactivateOrg(ctx context.Context, in *OrgID, opts ...grpc.CallOption) (*Org, error) {
|
|
out := new(Org)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/DeactivateOrg", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ReactivateOrg(ctx context.Context, in *OrgID, opts ...grpc.CallOption) (*Org, error) {
|
|
out := new(Org)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ReactivateOrg", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetOrgMemberRoles(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*OrgMemberRoles, error) {
|
|
out := new(OrgMemberRoles)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetOrgMemberRoles", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) AddOrgMember(ctx context.Context, in *AddOrgMemberRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/AddOrgMember", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ChangeOrgMember(ctx context.Context, in *ChangeOrgMemberRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ChangeOrgMember", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) RemoveOrgMember(ctx context.Context, in *RemoveOrgMemberRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/RemoveOrgMember", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchOrgMembers(ctx context.Context, in *OrgMemberSearchRequest, opts ...grpc.CallOption) (*OrgMemberSearchResponse, error) {
|
|
out := new(OrgMemberSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchOrgMembers", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchProjects(ctx context.Context, in *ProjectSearchRequest, opts ...grpc.CallOption) (*ProjectSearchResponse, error) {
|
|
out := new(ProjectSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchProjects", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ProjectByID(ctx context.Context, in *ProjectID, opts ...grpc.CallOption) (*Project, error) {
|
|
out := new(Project)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ProjectByID", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) CreateProject(ctx context.Context, in *ProjectCreateRequest, opts ...grpc.CallOption) (*Project, error) {
|
|
out := new(Project)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/CreateProject", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UpdateProject(ctx context.Context, in *ProjectUpdateRequest, opts ...grpc.CallOption) (*Project, error) {
|
|
out := new(Project)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UpdateProject", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) DeactivateProject(ctx context.Context, in *ProjectID, opts ...grpc.CallOption) (*Project, error) {
|
|
out := new(Project)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/DeactivateProject", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ReactivateProject(ctx context.Context, in *ProjectID, opts ...grpc.CallOption) (*Project, error) {
|
|
out := new(Project)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ReactivateProject", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetGrantedProjectGrantByID(ctx context.Context, in *GrantedGrantID, opts ...grpc.CallOption) (*ProjectGrant, error) {
|
|
out := new(ProjectGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetGrantedProjectGrantByID", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetProjectMemberRoles(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*ProjectMemberRoles, error) {
|
|
out := new(ProjectMemberRoles)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetProjectMemberRoles", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchProjectMembers(ctx context.Context, in *ProjectMemberSearchRequest, opts ...grpc.CallOption) (*ProjectMemberSearchResponse, error) {
|
|
out := new(ProjectMemberSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchProjectMembers", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) AddProjectMember(ctx context.Context, in *ProjectMemberAdd, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/AddProjectMember", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ChangeProjectMember(ctx context.Context, in *ProjectMemberChange, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ChangeProjectMember", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) RemoveProjectMember(ctx context.Context, in *ProjectMemberRemove, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/RemoveProjectMember", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchProjectRoles(ctx context.Context, in *ProjectRoleSearchRequest, opts ...grpc.CallOption) (*ProjectRoleSearchResponse, error) {
|
|
out := new(ProjectRoleSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchProjectRoles", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) AddProjectRole(ctx context.Context, in *ProjectRoleAdd, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/AddProjectRole", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) RemoveProjectRole(ctx context.Context, in *ProjectRoleRemove, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/RemoveProjectRole", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchApplications(ctx context.Context, in *ApplicationSearchRequest, opts ...grpc.CallOption) (*ApplicationSearchResponse, error) {
|
|
out := new(ApplicationSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchApplications", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ApplicationByID(ctx context.Context, in *ApplicationID, opts ...grpc.CallOption) (*Application, error) {
|
|
out := new(Application)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ApplicationByID", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) CreateOIDCApplication(ctx context.Context, in *OIDCApplicationCreate, opts ...grpc.CallOption) (*Application, error) {
|
|
out := new(Application)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/CreateOIDCApplication", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UpdateApplication(ctx context.Context, in *ApplicationUpdate, opts ...grpc.CallOption) (*Application, error) {
|
|
out := new(Application)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UpdateApplication", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) DeactivateApplication(ctx context.Context, in *ApplicationID, opts ...grpc.CallOption) (*Application, error) {
|
|
out := new(Application)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/DeactivateApplication", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ReactivateApplication(ctx context.Context, in *ApplicationID, opts ...grpc.CallOption) (*Application, error) {
|
|
out := new(Application)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ReactivateApplication", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UpdateApplicationOIDCConfig(ctx context.Context, in *OIDCConfigUpdate, opts ...grpc.CallOption) (*OIDCConfig, error) {
|
|
out := new(OIDCConfig)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UpdateApplicationOIDCConfig", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) RegenerateOIDCClientSecret(ctx context.Context, in *ApplicationID, opts ...grpc.CallOption) (*ClientSecret, error) {
|
|
out := new(ClientSecret)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/RegenerateOIDCClientSecret", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchProjectGrants(ctx context.Context, in *ProjectGrantSearchRequest, opts ...grpc.CallOption) (*ProjectGrantSearchResponse, error) {
|
|
out := new(ProjectGrantSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchProjectGrants", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ProjectGrantByID(ctx context.Context, in *ProjectGrantID, opts ...grpc.CallOption) (*ProjectGrant, error) {
|
|
out := new(ProjectGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ProjectGrantByID", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) CreateProjectGrant(ctx context.Context, in *ProjectGrantCreate, opts ...grpc.CallOption) (*ProjectGrant, error) {
|
|
out := new(ProjectGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/CreateProjectGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UpdateProjectGrant(ctx context.Context, in *ProjectGrantUpdate, opts ...grpc.CallOption) (*ProjectGrant, error) {
|
|
out := new(ProjectGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UpdateProjectGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) DeactivateProjectGrant(ctx context.Context, in *ProjectGrantID, opts ...grpc.CallOption) (*ProjectGrant, error) {
|
|
out := new(ProjectGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/DeactivateProjectGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ReactivateProjectGrant(ctx context.Context, in *ProjectGrantID, opts ...grpc.CallOption) (*ProjectGrant, error) {
|
|
out := new(ProjectGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ReactivateProjectGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetProjectGrantMemberRoles(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*ProjectGrantMemberRoles, error) {
|
|
out := new(ProjectGrantMemberRoles)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetProjectGrantMemberRoles", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchProjectGrantMembers(ctx context.Context, in *ProjectGrantMemberSearchRequest, opts ...grpc.CallOption) (*ProjectGrantMemberSearchResponse, error) {
|
|
out := new(ProjectGrantMemberSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchProjectGrantMembers", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) AddProjectGrantMember(ctx context.Context, in *ProjectGrantMemberAdd, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/AddProjectGrantMember", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ChangeProjectGrantMember(ctx context.Context, in *ProjectGrantMemberChange, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ChangeProjectGrantMember", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) RemoveProjectGrantMember(ctx context.Context, in *ProjectGrantMemberRemove, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/RemoveProjectGrantMember", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchUserGrants(ctx context.Context, in *UserGrantSearchRequest, opts ...grpc.CallOption) (*UserGrantSearchResponse, error) {
|
|
out := new(UserGrantSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchUserGrants", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UserGrantByID(ctx context.Context, in *UserGrantID, opts ...grpc.CallOption) (*UserGrant, error) {
|
|
out := new(UserGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UserGrantByID", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) CreateUserGrant(ctx context.Context, in *UserGrantCreate, opts ...grpc.CallOption) (*UserGrant, error) {
|
|
out := new(UserGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/CreateUserGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UpdateUserGrant(ctx context.Context, in *UserGrantUpdate, opts ...grpc.CallOption) (*UserGrant, error) {
|
|
out := new(UserGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UpdateUserGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) DeactivateUserGrant(ctx context.Context, in *UserGrantID, opts ...grpc.CallOption) (*UserGrant, error) {
|
|
out := new(UserGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/DeactivateUserGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ReactivateUserGrant(ctx context.Context, in *UserGrantID, opts ...grpc.CallOption) (*UserGrant, error) {
|
|
out := new(UserGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ReactivateUserGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchProjectUserGrants(ctx context.Context, in *ProjectUserGrantSearchRequest, opts ...grpc.CallOption) (*UserGrantSearchResponse, error) {
|
|
out := new(UserGrantSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchProjectUserGrants", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ProjectUserGrantByID(ctx context.Context, in *ProjectUserGrantID, opts ...grpc.CallOption) (*UserGrant, error) {
|
|
out := new(UserGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ProjectUserGrantByID", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) CreateProjectUserGrant(ctx context.Context, in *UserGrantCreate, opts ...grpc.CallOption) (*UserGrant, error) {
|
|
out := new(UserGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/CreateProjectUserGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UpdateProjectUserGrant(ctx context.Context, in *ProjectUserGrantUpdate, opts ...grpc.CallOption) (*UserGrant, error) {
|
|
out := new(UserGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UpdateProjectUserGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) DeactivateProjectUserGrant(ctx context.Context, in *ProjectUserGrantID, opts ...grpc.CallOption) (*UserGrant, error) {
|
|
out := new(UserGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/DeactivateProjectUserGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ReactivateProjectUserGrant(ctx context.Context, in *ProjectUserGrantID, opts ...grpc.CallOption) (*UserGrant, error) {
|
|
out := new(UserGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ReactivateProjectUserGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchProjectGrantUserGrants(ctx context.Context, in *ProjectGrantUserGrantSearchRequest, opts ...grpc.CallOption) (*UserGrantSearchResponse, error) {
|
|
out := new(UserGrantSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchProjectGrantUserGrants", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ProjectGrantUserGrantByID(ctx context.Context, in *ProjectGrantUserGrantID, opts ...grpc.CallOption) (*UserGrant, error) {
|
|
out := new(UserGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ProjectGrantUserGrantByID", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) CreateProjectGrantUserGrant(ctx context.Context, in *ProjectGrantUserGrantCreate, opts ...grpc.CallOption) (*UserGrant, error) {
|
|
out := new(UserGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/CreateProjectGrantUserGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UpdateProjectGrantUserGrant(ctx context.Context, in *ProjectGrantUserGrantUpdate, opts ...grpc.CallOption) (*UserGrant, error) {
|
|
out := new(UserGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UpdateProjectGrantUserGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) DeactivateProjectGrantUserGrant(ctx context.Context, in *ProjectGrantUserGrantID, opts ...grpc.CallOption) (*UserGrant, error) {
|
|
out := new(UserGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/DeactivateProjectGrantUserGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ReactivateProjectGrantUserGrant(ctx context.Context, in *ProjectGrantUserGrantID, opts ...grpc.CallOption) (*UserGrant, error) {
|
|
out := new(UserGrant)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ReactivateProjectGrantUserGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchAuthGrant(ctx context.Context, in *AuthGrantSearchRequest, opts ...grpc.CallOption) (*AuthGrantSearchResponse, error) {
|
|
out := new(AuthGrantSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchAuthGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// ManagementServiceServer is the server API for ManagementService service.
|
|
type ManagementServiceServer interface {
|
|
//READINESS
|
|
Healthz(context.Context, *empty.Empty) (*empty.Empty, error)
|
|
Ready(context.Context, *empty.Empty) (*empty.Empty, error)
|
|
Validate(context.Context, *empty.Empty) (*_struct.Struct, error)
|
|
//USER
|
|
GetUserByID(context.Context, *UserID) (*User, error)
|
|
GetUserByEmailGlobal(context.Context, *UserEmailID) (*User, error)
|
|
SearchUsers(context.Context, *UserSearchRequest) (*UserSearchResponse, error)
|
|
IsUserUnique(context.Context, *UniqueUserRequest) (*UniqueUserResponse, error)
|
|
CreateUser(context.Context, *CreateUserRequest) (*User, error)
|
|
DeactivateUser(context.Context, *UserID) (*User, error)
|
|
ReactivateUser(context.Context, *UserID) (*User, error)
|
|
LockUser(context.Context, *UserID) (*User, error)
|
|
UnlockUser(context.Context, *UserID) (*User, error)
|
|
DeleteUser(context.Context, *UserID) (*empty.Empty, error)
|
|
UserChanges(context.Context, *ChangeRequest) (*Changes, error)
|
|
ApplicationChanges(context.Context, *ChangeRequest) (*Changes, error)
|
|
OrgChanges(context.Context, *ChangeRequest) (*Changes, error)
|
|
ProjectChanges(context.Context, *ChangeRequest) (*Changes, error)
|
|
//USER_PROFILE
|
|
GetUserProfile(context.Context, *UserID) (*UserProfile, error)
|
|
UpdateUserProfile(context.Context, *UpdateUserProfileRequest) (*UserProfile, error)
|
|
//USER_EMAIL
|
|
GetUserEmail(context.Context, *UserID) (*UserEmail, error)
|
|
ChangeUserEmail(context.Context, *UpdateUserEmailRequest) (*UserEmail, error)
|
|
ResendEmailVerificationMail(context.Context, *UserID) (*empty.Empty, error)
|
|
//USER_PHONE
|
|
GetUserPhone(context.Context, *UserID) (*UserPhone, error)
|
|
ChangeUserPhone(context.Context, *UpdateUserPhoneRequest) (*UserPhone, error)
|
|
ResendPhoneVerificationCode(context.Context, *UserID) (*empty.Empty, error)
|
|
//USER_ADDRESS
|
|
GetUserAddress(context.Context, *UserID) (*UserAddress, error)
|
|
UpdateUserAddress(context.Context, *UpdateUserAddressRequest) (*UserAddress, error)
|
|
//MFA
|
|
GetUserMfas(context.Context, *UserID) (*MultiFactors, error)
|
|
//PASSWORD
|
|
// Sends an Notification (Email/SMS) with a password reset Link
|
|
SendSetPasswordNotification(context.Context, *SetPasswordNotificationRequest) (*empty.Empty, error)
|
|
// A Manager is only allowed to set an initial password, on the next login the user has to change his password
|
|
SetInitialPassword(context.Context, *PasswordRequest) (*empty.Empty, error)
|
|
//PASSWORD_COMPLEXITY_POLICY
|
|
GetPasswordComplexityPolicy(context.Context, *empty.Empty) (*PasswordComplexityPolicy, error)
|
|
CreatePasswordComplexityPolicy(context.Context, *PasswordComplexityPolicyCreate) (*PasswordComplexityPolicy, error)
|
|
UpdatePasswordComplexityPolicy(context.Context, *PasswordComplexityPolicyUpdate) (*PasswordComplexityPolicy, error)
|
|
DeletePasswordComplexityPolicy(context.Context, *PasswordComplexityPolicyID) (*empty.Empty, error)
|
|
//PASSWORD_AGE_POLICY
|
|
GetPasswordAgePolicy(context.Context, *empty.Empty) (*PasswordAgePolicy, error)
|
|
CreatePasswordAgePolicy(context.Context, *PasswordAgePolicyCreate) (*PasswordAgePolicy, error)
|
|
UpdatePasswordAgePolicy(context.Context, *PasswordAgePolicyUpdate) (*PasswordAgePolicy, error)
|
|
DeletePasswordAgePolicy(context.Context, *PasswordAgePolicyID) (*empty.Empty, error)
|
|
//PASSWORD_LOCKOUT_POLICY
|
|
GetPasswordLockoutPolicy(context.Context, *empty.Empty) (*PasswordLockoutPolicy, error)
|
|
CreatePasswordLockoutPolicy(context.Context, *PasswordLockoutPolicyCreate) (*PasswordLockoutPolicy, error)
|
|
UpdatePasswordLockoutPolicy(context.Context, *PasswordLockoutPolicyUpdate) (*PasswordLockoutPolicy, error)
|
|
DeletePasswordLockoutPolicy(context.Context, *PasswordLockoutPolicyID) (*empty.Empty, error)
|
|
//ORG
|
|
GetOrgByID(context.Context, *OrgID) (*Org, error)
|
|
GetOrgByDomainGlobal(context.Context, *OrgDomain) (*Org, error)
|
|
DeactivateOrg(context.Context, *OrgID) (*Org, error)
|
|
ReactivateOrg(context.Context, *OrgID) (*Org, error)
|
|
//ORG_MEMBERS
|
|
GetOrgMemberRoles(context.Context, *empty.Empty) (*OrgMemberRoles, error)
|
|
AddOrgMember(context.Context, *AddOrgMemberRequest) (*empty.Empty, error)
|
|
ChangeOrgMember(context.Context, *ChangeOrgMemberRequest) (*empty.Empty, error)
|
|
RemoveOrgMember(context.Context, *RemoveOrgMemberRequest) (*empty.Empty, error)
|
|
SearchOrgMembers(context.Context, *OrgMemberSearchRequest) (*OrgMemberSearchResponse, error)
|
|
//PROJECTS
|
|
SearchProjects(context.Context, *ProjectSearchRequest) (*ProjectSearchResponse, error)
|
|
ProjectByID(context.Context, *ProjectID) (*Project, error)
|
|
CreateProject(context.Context, *ProjectCreateRequest) (*Project, error)
|
|
UpdateProject(context.Context, *ProjectUpdateRequest) (*Project, error)
|
|
DeactivateProject(context.Context, *ProjectID) (*Project, error)
|
|
ReactivateProject(context.Context, *ProjectID) (*Project, error)
|
|
//GRANTED_PROJECT_GRANTS
|
|
GetGrantedProjectGrantByID(context.Context, *GrantedGrantID) (*ProjectGrant, error)
|
|
//PROJECT_MEMBERS
|
|
GetProjectMemberRoles(context.Context, *empty.Empty) (*ProjectMemberRoles, error)
|
|
SearchProjectMembers(context.Context, *ProjectMemberSearchRequest) (*ProjectMemberSearchResponse, error)
|
|
AddProjectMember(context.Context, *ProjectMemberAdd) (*empty.Empty, error)
|
|
ChangeProjectMember(context.Context, *ProjectMemberChange) (*empty.Empty, error)
|
|
RemoveProjectMember(context.Context, *ProjectMemberRemove) (*empty.Empty, error)
|
|
//PROJECT_ROLES
|
|
SearchProjectRoles(context.Context, *ProjectRoleSearchRequest) (*ProjectRoleSearchResponse, error)
|
|
AddProjectRole(context.Context, *ProjectRoleAdd) (*empty.Empty, error)
|
|
RemoveProjectRole(context.Context, *ProjectRoleRemove) (*empty.Empty, error)
|
|
//APPLICATIONS
|
|
SearchApplications(context.Context, *ApplicationSearchRequest) (*ApplicationSearchResponse, error)
|
|
ApplicationByID(context.Context, *ApplicationID) (*Application, error)
|
|
CreateOIDCApplication(context.Context, *OIDCApplicationCreate) (*Application, error)
|
|
UpdateApplication(context.Context, *ApplicationUpdate) (*Application, error)
|
|
DeactivateApplication(context.Context, *ApplicationID) (*Application, error)
|
|
ReactivateApplication(context.Context, *ApplicationID) (*Application, error)
|
|
UpdateApplicationOIDCConfig(context.Context, *OIDCConfigUpdate) (*OIDCConfig, error)
|
|
RegenerateOIDCClientSecret(context.Context, *ApplicationID) (*ClientSecret, error)
|
|
//PROJECT_GRANT
|
|
SearchProjectGrants(context.Context, *ProjectGrantSearchRequest) (*ProjectGrantSearchResponse, error)
|
|
ProjectGrantByID(context.Context, *ProjectGrantID) (*ProjectGrant, error)
|
|
CreateProjectGrant(context.Context, *ProjectGrantCreate) (*ProjectGrant, error)
|
|
UpdateProjectGrant(context.Context, *ProjectGrantUpdate) (*ProjectGrant, error)
|
|
DeactivateProjectGrant(context.Context, *ProjectGrantID) (*ProjectGrant, error)
|
|
ReactivateProjectGrant(context.Context, *ProjectGrantID) (*ProjectGrant, error)
|
|
//PROJECT_GRANT_MEMBER
|
|
GetProjectGrantMemberRoles(context.Context, *empty.Empty) (*ProjectGrantMemberRoles, error)
|
|
SearchProjectGrantMembers(context.Context, *ProjectGrantMemberSearchRequest) (*ProjectGrantMemberSearchResponse, error)
|
|
AddProjectGrantMember(context.Context, *ProjectGrantMemberAdd) (*empty.Empty, error)
|
|
ChangeProjectGrantMember(context.Context, *ProjectGrantMemberChange) (*empty.Empty, error)
|
|
RemoveProjectGrantMember(context.Context, *ProjectGrantMemberRemove) (*empty.Empty, error)
|
|
//USER_GRANT
|
|
SearchUserGrants(context.Context, *UserGrantSearchRequest) (*UserGrantSearchResponse, error)
|
|
UserGrantByID(context.Context, *UserGrantID) (*UserGrant, error)
|
|
CreateUserGrant(context.Context, *UserGrantCreate) (*UserGrant, error)
|
|
UpdateUserGrant(context.Context, *UserGrantUpdate) (*UserGrant, error)
|
|
DeactivateUserGrant(context.Context, *UserGrantID) (*UserGrant, error)
|
|
ReactivateUserGrant(context.Context, *UserGrantID) (*UserGrant, error)
|
|
//PROJECT_USER_GRANT
|
|
SearchProjectUserGrants(context.Context, *ProjectUserGrantSearchRequest) (*UserGrantSearchResponse, error)
|
|
ProjectUserGrantByID(context.Context, *ProjectUserGrantID) (*UserGrant, error)
|
|
CreateProjectUserGrant(context.Context, *UserGrantCreate) (*UserGrant, error)
|
|
UpdateProjectUserGrant(context.Context, *ProjectUserGrantUpdate) (*UserGrant, error)
|
|
DeactivateProjectUserGrant(context.Context, *ProjectUserGrantID) (*UserGrant, error)
|
|
ReactivateProjectUserGrant(context.Context, *ProjectUserGrantID) (*UserGrant, error)
|
|
//PROJECT_GRANT_USER_GRANT
|
|
SearchProjectGrantUserGrants(context.Context, *ProjectGrantUserGrantSearchRequest) (*UserGrantSearchResponse, error)
|
|
ProjectGrantUserGrantByID(context.Context, *ProjectGrantUserGrantID) (*UserGrant, error)
|
|
CreateProjectGrantUserGrant(context.Context, *ProjectGrantUserGrantCreate) (*UserGrant, error)
|
|
UpdateProjectGrantUserGrant(context.Context, *ProjectGrantUserGrantUpdate) (*UserGrant, error)
|
|
DeactivateProjectGrantUserGrant(context.Context, *ProjectGrantUserGrantID) (*UserGrant, error)
|
|
ReactivateProjectGrantUserGrant(context.Context, *ProjectGrantUserGrantID) (*UserGrant, error)
|
|
//Grant
|
|
SearchAuthGrant(context.Context, *AuthGrantSearchRequest) (*AuthGrantSearchResponse, error)
|
|
}
|
|
|
|
// UnimplementedManagementServiceServer can be embedded to have forward compatible implementations.
|
|
type UnimplementedManagementServiceServer struct {
|
|
}
|
|
|
|
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(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Ready not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) Validate(ctx context.Context, req *empty.Empty) (*_struct.Struct, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Validate not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetUserByID(ctx context.Context, req *UserID) (*User, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetUserByID not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetUserByEmailGlobal(ctx context.Context, req *UserEmailID) (*User, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetUserByEmailGlobal not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchUsers(ctx context.Context, req *UserSearchRequest) (*UserSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchUsers not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) IsUserUnique(ctx context.Context, req *UniqueUserRequest) (*UniqueUserResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method IsUserUnique not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) CreateUser(ctx context.Context, req *CreateUserRequest) (*User, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method CreateUser not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) DeactivateUser(ctx context.Context, req *UserID) (*User, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DeactivateUser not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ReactivateUser(ctx context.Context, req *UserID) (*User, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReactivateUser not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) LockUser(ctx context.Context, req *UserID) (*User, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method LockUser not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UnlockUser(ctx context.Context, req *UserID) (*User, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UnlockUser not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) DeleteUser(ctx context.Context, req *UserID) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DeleteUser not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UserChanges(ctx context.Context, req *ChangeRequest) (*Changes, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UserChanges not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ApplicationChanges(ctx context.Context, req *ChangeRequest) (*Changes, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ApplicationChanges not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) OrgChanges(ctx context.Context, req *ChangeRequest) (*Changes, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method OrgChanges not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ProjectChanges(ctx context.Context, req *ChangeRequest) (*Changes, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ProjectChanges not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetUserProfile(ctx context.Context, req *UserID) (*UserProfile, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetUserProfile not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UpdateUserProfile(ctx context.Context, req *UpdateUserProfileRequest) (*UserProfile, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UpdateUserProfile not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetUserEmail(ctx context.Context, req *UserID) (*UserEmail, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetUserEmail not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ChangeUserEmail(ctx context.Context, req *UpdateUserEmailRequest) (*UserEmail, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ChangeUserEmail not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ResendEmailVerificationMail(ctx context.Context, req *UserID) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ResendEmailVerificationMail not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetUserPhone(ctx context.Context, req *UserID) (*UserPhone, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetUserPhone not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ChangeUserPhone(ctx context.Context, req *UpdateUserPhoneRequest) (*UserPhone, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ChangeUserPhone not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ResendPhoneVerificationCode(ctx context.Context, req *UserID) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ResendPhoneVerificationCode not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetUserAddress(ctx context.Context, req *UserID) (*UserAddress, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetUserAddress not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UpdateUserAddress(ctx context.Context, req *UpdateUserAddressRequest) (*UserAddress, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UpdateUserAddress not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetUserMfas(ctx context.Context, req *UserID) (*MultiFactors, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetUserMfas not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SendSetPasswordNotification(ctx context.Context, req *SetPasswordNotificationRequest) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SendSetPasswordNotification not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SetInitialPassword(ctx context.Context, req *PasswordRequest) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SetInitialPassword not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetPasswordComplexityPolicy(ctx context.Context, req *empty.Empty) (*PasswordComplexityPolicy, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetPasswordComplexityPolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) CreatePasswordComplexityPolicy(ctx context.Context, req *PasswordComplexityPolicyCreate) (*PasswordComplexityPolicy, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method CreatePasswordComplexityPolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UpdatePasswordComplexityPolicy(ctx context.Context, req *PasswordComplexityPolicyUpdate) (*PasswordComplexityPolicy, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UpdatePasswordComplexityPolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) DeletePasswordComplexityPolicy(ctx context.Context, req *PasswordComplexityPolicyID) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DeletePasswordComplexityPolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetPasswordAgePolicy(ctx context.Context, req *empty.Empty) (*PasswordAgePolicy, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetPasswordAgePolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) CreatePasswordAgePolicy(ctx context.Context, req *PasswordAgePolicyCreate) (*PasswordAgePolicy, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method CreatePasswordAgePolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UpdatePasswordAgePolicy(ctx context.Context, req *PasswordAgePolicyUpdate) (*PasswordAgePolicy, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UpdatePasswordAgePolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) DeletePasswordAgePolicy(ctx context.Context, req *PasswordAgePolicyID) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DeletePasswordAgePolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetPasswordLockoutPolicy(ctx context.Context, req *empty.Empty) (*PasswordLockoutPolicy, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetPasswordLockoutPolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) CreatePasswordLockoutPolicy(ctx context.Context, req *PasswordLockoutPolicyCreate) (*PasswordLockoutPolicy, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method CreatePasswordLockoutPolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UpdatePasswordLockoutPolicy(ctx context.Context, req *PasswordLockoutPolicyUpdate) (*PasswordLockoutPolicy, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UpdatePasswordLockoutPolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) DeletePasswordLockoutPolicy(ctx context.Context, req *PasswordLockoutPolicyID) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DeletePasswordLockoutPolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetOrgByID(ctx context.Context, req *OrgID) (*Org, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetOrgByID not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetOrgByDomainGlobal(ctx context.Context, req *OrgDomain) (*Org, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetOrgByDomainGlobal not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) DeactivateOrg(ctx context.Context, req *OrgID) (*Org, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DeactivateOrg not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ReactivateOrg(ctx context.Context, req *OrgID) (*Org, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReactivateOrg not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetOrgMemberRoles(ctx context.Context, req *empty.Empty) (*OrgMemberRoles, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetOrgMemberRoles not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) AddOrgMember(ctx context.Context, req *AddOrgMemberRequest) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method AddOrgMember not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ChangeOrgMember(ctx context.Context, req *ChangeOrgMemberRequest) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ChangeOrgMember not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) RemoveOrgMember(ctx context.Context, req *RemoveOrgMemberRequest) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RemoveOrgMember not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchOrgMembers(ctx context.Context, req *OrgMemberSearchRequest) (*OrgMemberSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchOrgMembers not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchProjects(ctx context.Context, req *ProjectSearchRequest) (*ProjectSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchProjects not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ProjectByID(ctx context.Context, req *ProjectID) (*Project, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ProjectByID not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) CreateProject(ctx context.Context, req *ProjectCreateRequest) (*Project, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method CreateProject not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UpdateProject(ctx context.Context, req *ProjectUpdateRequest) (*Project, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UpdateProject not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) DeactivateProject(ctx context.Context, req *ProjectID) (*Project, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DeactivateProject not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ReactivateProject(ctx context.Context, req *ProjectID) (*Project, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReactivateProject not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetGrantedProjectGrantByID(ctx context.Context, req *GrantedGrantID) (*ProjectGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetGrantedProjectGrantByID not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetProjectMemberRoles(ctx context.Context, req *empty.Empty) (*ProjectMemberRoles, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetProjectMemberRoles not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchProjectMembers(ctx context.Context, req *ProjectMemberSearchRequest) (*ProjectMemberSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchProjectMembers not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) AddProjectMember(ctx context.Context, req *ProjectMemberAdd) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method AddProjectMember not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ChangeProjectMember(ctx context.Context, req *ProjectMemberChange) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ChangeProjectMember not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) RemoveProjectMember(ctx context.Context, req *ProjectMemberRemove) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RemoveProjectMember not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchProjectRoles(ctx context.Context, req *ProjectRoleSearchRequest) (*ProjectRoleSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchProjectRoles not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) AddProjectRole(ctx context.Context, req *ProjectRoleAdd) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method AddProjectRole not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) RemoveProjectRole(ctx context.Context, req *ProjectRoleRemove) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RemoveProjectRole not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchApplications(ctx context.Context, req *ApplicationSearchRequest) (*ApplicationSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchApplications not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ApplicationByID(ctx context.Context, req *ApplicationID) (*Application, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ApplicationByID not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) CreateOIDCApplication(ctx context.Context, req *OIDCApplicationCreate) (*Application, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method CreateOIDCApplication not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UpdateApplication(ctx context.Context, req *ApplicationUpdate) (*Application, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UpdateApplication not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) DeactivateApplication(ctx context.Context, req *ApplicationID) (*Application, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DeactivateApplication not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ReactivateApplication(ctx context.Context, req *ApplicationID) (*Application, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReactivateApplication not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UpdateApplicationOIDCConfig(ctx context.Context, req *OIDCConfigUpdate) (*OIDCConfig, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UpdateApplicationOIDCConfig not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) RegenerateOIDCClientSecret(ctx context.Context, req *ApplicationID) (*ClientSecret, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RegenerateOIDCClientSecret not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchProjectGrants(ctx context.Context, req *ProjectGrantSearchRequest) (*ProjectGrantSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchProjectGrants not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ProjectGrantByID(ctx context.Context, req *ProjectGrantID) (*ProjectGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ProjectGrantByID not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) CreateProjectGrant(ctx context.Context, req *ProjectGrantCreate) (*ProjectGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method CreateProjectGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UpdateProjectGrant(ctx context.Context, req *ProjectGrantUpdate) (*ProjectGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UpdateProjectGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) DeactivateProjectGrant(ctx context.Context, req *ProjectGrantID) (*ProjectGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DeactivateProjectGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ReactivateProjectGrant(ctx context.Context, req *ProjectGrantID) (*ProjectGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReactivateProjectGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetProjectGrantMemberRoles(ctx context.Context, req *empty.Empty) (*ProjectGrantMemberRoles, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetProjectGrantMemberRoles not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchProjectGrantMembers(ctx context.Context, req *ProjectGrantMemberSearchRequest) (*ProjectGrantMemberSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchProjectGrantMembers not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) AddProjectGrantMember(ctx context.Context, req *ProjectGrantMemberAdd) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method AddProjectGrantMember not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ChangeProjectGrantMember(ctx context.Context, req *ProjectGrantMemberChange) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ChangeProjectGrantMember not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) RemoveProjectGrantMember(ctx context.Context, req *ProjectGrantMemberRemove) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RemoveProjectGrantMember not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchUserGrants(ctx context.Context, req *UserGrantSearchRequest) (*UserGrantSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchUserGrants not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UserGrantByID(ctx context.Context, req *UserGrantID) (*UserGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UserGrantByID not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) CreateUserGrant(ctx context.Context, req *UserGrantCreate) (*UserGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method CreateUserGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UpdateUserGrant(ctx context.Context, req *UserGrantUpdate) (*UserGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UpdateUserGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) DeactivateUserGrant(ctx context.Context, req *UserGrantID) (*UserGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DeactivateUserGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ReactivateUserGrant(ctx context.Context, req *UserGrantID) (*UserGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReactivateUserGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchProjectUserGrants(ctx context.Context, req *ProjectUserGrantSearchRequest) (*UserGrantSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchProjectUserGrants not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ProjectUserGrantByID(ctx context.Context, req *ProjectUserGrantID) (*UserGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ProjectUserGrantByID not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) CreateProjectUserGrant(ctx context.Context, req *UserGrantCreate) (*UserGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method CreateProjectUserGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UpdateProjectUserGrant(ctx context.Context, req *ProjectUserGrantUpdate) (*UserGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UpdateProjectUserGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) DeactivateProjectUserGrant(ctx context.Context, req *ProjectUserGrantID) (*UserGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DeactivateProjectUserGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ReactivateProjectUserGrant(ctx context.Context, req *ProjectUserGrantID) (*UserGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReactivateProjectUserGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchProjectGrantUserGrants(ctx context.Context, req *ProjectGrantUserGrantSearchRequest) (*UserGrantSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchProjectGrantUserGrants not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ProjectGrantUserGrantByID(ctx context.Context, req *ProjectGrantUserGrantID) (*UserGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ProjectGrantUserGrantByID not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) CreateProjectGrantUserGrant(ctx context.Context, req *ProjectGrantUserGrantCreate) (*UserGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method CreateProjectGrantUserGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UpdateProjectGrantUserGrant(ctx context.Context, req *ProjectGrantUserGrantUpdate) (*UserGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UpdateProjectGrantUserGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) DeactivateProjectGrantUserGrant(ctx context.Context, req *ProjectGrantUserGrantID) (*UserGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DeactivateProjectGrantUserGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ReactivateProjectGrantUserGrant(ctx context.Context, req *ProjectGrantUserGrantID) (*UserGrant, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReactivateProjectGrantUserGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchAuthGrant(ctx context.Context, req *AuthGrantSearchRequest) (*AuthGrantSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchAuthGrant not implemented")
|
|
}
|
|
|
|
func RegisterManagementServiceServer(s *grpc.Server, srv ManagementServiceServer) {
|
|
s.RegisterService(&_ManagementService_serviceDesc, srv)
|
|
}
|
|
|
|
func _ManagementService_Healthz_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(empty.Empty)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).Healthz(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/Healthz",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).Healthz(ctx, req.(*empty.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_Ready_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(empty.Empty)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).Ready(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/Ready",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).Ready(ctx, req.(*empty.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_Validate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(empty.Empty)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).Validate(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/Validate",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).Validate(ctx, req.(*empty.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetUserByID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetUserByID(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetUserByID",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetUserByID(ctx, req.(*UserID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetUserByEmailGlobal_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserEmailID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetUserByEmailGlobal(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetUserByEmailGlobal",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetUserByEmailGlobal(ctx, req.(*UserEmailID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchUsers_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchUsers(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchUsers",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchUsers(ctx, req.(*UserSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_IsUserUnique_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UniqueUserRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).IsUserUnique(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/IsUserUnique",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).IsUserUnique(ctx, req.(*UniqueUserRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_CreateUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(CreateUserRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).CreateUser(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/CreateUser",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).CreateUser(ctx, req.(*CreateUserRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_DeactivateUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).DeactivateUser(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/DeactivateUser",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).DeactivateUser(ctx, req.(*UserID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ReactivateUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ReactivateUser(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ReactivateUser",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ReactivateUser(ctx, req.(*UserID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_LockUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).LockUser(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/LockUser",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).LockUser(ctx, req.(*UserID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UnlockUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UnlockUser(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UnlockUser",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UnlockUser(ctx, req.(*UserID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_DeleteUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).DeleteUser(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/DeleteUser",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).DeleteUser(ctx, req.(*UserID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UserChanges_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ChangeRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UserChanges(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UserChanges",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UserChanges(ctx, req.(*ChangeRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ApplicationChanges_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ChangeRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ApplicationChanges(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ApplicationChanges",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ApplicationChanges(ctx, req.(*ChangeRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_OrgChanges_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ChangeRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).OrgChanges(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/OrgChanges",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).OrgChanges(ctx, req.(*ChangeRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ProjectChanges_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ChangeRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ProjectChanges(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ProjectChanges",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ProjectChanges(ctx, req.(*ChangeRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetUserProfile_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetUserProfile(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetUserProfile",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetUserProfile(ctx, req.(*UserID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UpdateUserProfile_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UpdateUserProfileRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UpdateUserProfile(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UpdateUserProfile",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UpdateUserProfile(ctx, req.(*UpdateUserProfileRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetUserEmail_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetUserEmail(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetUserEmail",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetUserEmail(ctx, req.(*UserID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ChangeUserEmail_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UpdateUserEmailRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ChangeUserEmail(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ChangeUserEmail",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ChangeUserEmail(ctx, req.(*UpdateUserEmailRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ResendEmailVerificationMail_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ResendEmailVerificationMail(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ResendEmailVerificationMail",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ResendEmailVerificationMail(ctx, req.(*UserID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetUserPhone_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetUserPhone(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetUserPhone",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetUserPhone(ctx, req.(*UserID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ChangeUserPhone_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UpdateUserPhoneRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ChangeUserPhone(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ChangeUserPhone",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ChangeUserPhone(ctx, req.(*UpdateUserPhoneRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ResendPhoneVerificationCode_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ResendPhoneVerificationCode(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ResendPhoneVerificationCode",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ResendPhoneVerificationCode(ctx, req.(*UserID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetUserAddress_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetUserAddress(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetUserAddress",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetUserAddress(ctx, req.(*UserID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UpdateUserAddress_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UpdateUserAddressRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UpdateUserAddress(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UpdateUserAddress",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UpdateUserAddress(ctx, req.(*UpdateUserAddressRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetUserMfas_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetUserMfas(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetUserMfas",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetUserMfas(ctx, req.(*UserID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SendSetPasswordNotification_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(SetPasswordNotificationRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SendSetPasswordNotification(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SendSetPasswordNotification",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SendSetPasswordNotification(ctx, req.(*SetPasswordNotificationRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SetInitialPassword_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(PasswordRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SetInitialPassword(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SetInitialPassword",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SetInitialPassword(ctx, req.(*PasswordRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetPasswordComplexityPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(empty.Empty)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetPasswordComplexityPolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetPasswordComplexityPolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetPasswordComplexityPolicy(ctx, req.(*empty.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_CreatePasswordComplexityPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(PasswordComplexityPolicyCreate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).CreatePasswordComplexityPolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/CreatePasswordComplexityPolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).CreatePasswordComplexityPolicy(ctx, req.(*PasswordComplexityPolicyCreate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UpdatePasswordComplexityPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(PasswordComplexityPolicyUpdate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UpdatePasswordComplexityPolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UpdatePasswordComplexityPolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UpdatePasswordComplexityPolicy(ctx, req.(*PasswordComplexityPolicyUpdate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_DeletePasswordComplexityPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(PasswordComplexityPolicyID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).DeletePasswordComplexityPolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/DeletePasswordComplexityPolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).DeletePasswordComplexityPolicy(ctx, req.(*PasswordComplexityPolicyID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetPasswordAgePolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(empty.Empty)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetPasswordAgePolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetPasswordAgePolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetPasswordAgePolicy(ctx, req.(*empty.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_CreatePasswordAgePolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(PasswordAgePolicyCreate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).CreatePasswordAgePolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/CreatePasswordAgePolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).CreatePasswordAgePolicy(ctx, req.(*PasswordAgePolicyCreate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UpdatePasswordAgePolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(PasswordAgePolicyUpdate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UpdatePasswordAgePolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UpdatePasswordAgePolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UpdatePasswordAgePolicy(ctx, req.(*PasswordAgePolicyUpdate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_DeletePasswordAgePolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(PasswordAgePolicyID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).DeletePasswordAgePolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/DeletePasswordAgePolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).DeletePasswordAgePolicy(ctx, req.(*PasswordAgePolicyID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetPasswordLockoutPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(empty.Empty)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetPasswordLockoutPolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetPasswordLockoutPolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetPasswordLockoutPolicy(ctx, req.(*empty.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_CreatePasswordLockoutPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(PasswordLockoutPolicyCreate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).CreatePasswordLockoutPolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/CreatePasswordLockoutPolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).CreatePasswordLockoutPolicy(ctx, req.(*PasswordLockoutPolicyCreate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UpdatePasswordLockoutPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(PasswordLockoutPolicyUpdate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UpdatePasswordLockoutPolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UpdatePasswordLockoutPolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UpdatePasswordLockoutPolicy(ctx, req.(*PasswordLockoutPolicyUpdate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_DeletePasswordLockoutPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(PasswordLockoutPolicyID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).DeletePasswordLockoutPolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/DeletePasswordLockoutPolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).DeletePasswordLockoutPolicy(ctx, req.(*PasswordLockoutPolicyID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetOrgByID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(OrgID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetOrgByID(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetOrgByID",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetOrgByID(ctx, req.(*OrgID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetOrgByDomainGlobal_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(OrgDomain)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetOrgByDomainGlobal(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetOrgByDomainGlobal",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetOrgByDomainGlobal(ctx, req.(*OrgDomain))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_DeactivateOrg_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(OrgID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).DeactivateOrg(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/DeactivateOrg",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).DeactivateOrg(ctx, req.(*OrgID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ReactivateOrg_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(OrgID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ReactivateOrg(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ReactivateOrg",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ReactivateOrg(ctx, req.(*OrgID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetOrgMemberRoles_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(empty.Empty)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetOrgMemberRoles(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetOrgMemberRoles",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetOrgMemberRoles(ctx, req.(*empty.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_AddOrgMember_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(AddOrgMemberRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).AddOrgMember(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/AddOrgMember",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).AddOrgMember(ctx, req.(*AddOrgMemberRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ChangeOrgMember_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ChangeOrgMemberRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ChangeOrgMember(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ChangeOrgMember",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ChangeOrgMember(ctx, req.(*ChangeOrgMemberRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_RemoveOrgMember_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(RemoveOrgMemberRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).RemoveOrgMember(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/RemoveOrgMember",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).RemoveOrgMember(ctx, req.(*RemoveOrgMemberRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchOrgMembers_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(OrgMemberSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchOrgMembers(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchOrgMembers",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchOrgMembers(ctx, req.(*OrgMemberSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchProjects_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchProjects(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchProjects",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchProjects(ctx, req.(*ProjectSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ProjectByID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ProjectByID(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ProjectByID",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ProjectByID(ctx, req.(*ProjectID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_CreateProject_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectCreateRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).CreateProject(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/CreateProject",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).CreateProject(ctx, req.(*ProjectCreateRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UpdateProject_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectUpdateRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UpdateProject(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UpdateProject",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UpdateProject(ctx, req.(*ProjectUpdateRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_DeactivateProject_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).DeactivateProject(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/DeactivateProject",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).DeactivateProject(ctx, req.(*ProjectID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ReactivateProject_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ReactivateProject(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ReactivateProject",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ReactivateProject(ctx, req.(*ProjectID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetGrantedProjectGrantByID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GrantedGrantID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetGrantedProjectGrantByID(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetGrantedProjectGrantByID",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetGrantedProjectGrantByID(ctx, req.(*GrantedGrantID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetProjectMemberRoles_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(empty.Empty)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetProjectMemberRoles(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetProjectMemberRoles",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetProjectMemberRoles(ctx, req.(*empty.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchProjectMembers_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectMemberSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchProjectMembers(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchProjectMembers",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchProjectMembers(ctx, req.(*ProjectMemberSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_AddProjectMember_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectMemberAdd)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).AddProjectMember(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/AddProjectMember",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).AddProjectMember(ctx, req.(*ProjectMemberAdd))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ChangeProjectMember_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectMemberChange)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ChangeProjectMember(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ChangeProjectMember",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ChangeProjectMember(ctx, req.(*ProjectMemberChange))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_RemoveProjectMember_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectMemberRemove)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).RemoveProjectMember(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/RemoveProjectMember",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).RemoveProjectMember(ctx, req.(*ProjectMemberRemove))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchProjectRoles_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectRoleSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchProjectRoles(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchProjectRoles",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchProjectRoles(ctx, req.(*ProjectRoleSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_AddProjectRole_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectRoleAdd)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).AddProjectRole(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/AddProjectRole",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).AddProjectRole(ctx, req.(*ProjectRoleAdd))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_RemoveProjectRole_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectRoleRemove)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).RemoveProjectRole(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/RemoveProjectRole",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).RemoveProjectRole(ctx, req.(*ProjectRoleRemove))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchApplications_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ApplicationSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchApplications(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchApplications",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchApplications(ctx, req.(*ApplicationSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ApplicationByID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ApplicationID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ApplicationByID(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ApplicationByID",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ApplicationByID(ctx, req.(*ApplicationID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_CreateOIDCApplication_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(OIDCApplicationCreate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).CreateOIDCApplication(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/CreateOIDCApplication",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).CreateOIDCApplication(ctx, req.(*OIDCApplicationCreate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UpdateApplication_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ApplicationUpdate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UpdateApplication(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UpdateApplication",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UpdateApplication(ctx, req.(*ApplicationUpdate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_DeactivateApplication_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ApplicationID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).DeactivateApplication(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/DeactivateApplication",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).DeactivateApplication(ctx, req.(*ApplicationID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ReactivateApplication_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ApplicationID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ReactivateApplication(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ReactivateApplication",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ReactivateApplication(ctx, req.(*ApplicationID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UpdateApplicationOIDCConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(OIDCConfigUpdate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UpdateApplicationOIDCConfig(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UpdateApplicationOIDCConfig",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UpdateApplicationOIDCConfig(ctx, req.(*OIDCConfigUpdate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_RegenerateOIDCClientSecret_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ApplicationID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).RegenerateOIDCClientSecret(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/RegenerateOIDCClientSecret",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).RegenerateOIDCClientSecret(ctx, req.(*ApplicationID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchProjectGrants_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectGrantSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchProjectGrants(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchProjectGrants",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchProjectGrants(ctx, req.(*ProjectGrantSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ProjectGrantByID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectGrantID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ProjectGrantByID(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ProjectGrantByID",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ProjectGrantByID(ctx, req.(*ProjectGrantID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_CreateProjectGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectGrantCreate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).CreateProjectGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/CreateProjectGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).CreateProjectGrant(ctx, req.(*ProjectGrantCreate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UpdateProjectGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectGrantUpdate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UpdateProjectGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UpdateProjectGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UpdateProjectGrant(ctx, req.(*ProjectGrantUpdate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_DeactivateProjectGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectGrantID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).DeactivateProjectGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/DeactivateProjectGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).DeactivateProjectGrant(ctx, req.(*ProjectGrantID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ReactivateProjectGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectGrantID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ReactivateProjectGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ReactivateProjectGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ReactivateProjectGrant(ctx, req.(*ProjectGrantID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetProjectGrantMemberRoles_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(empty.Empty)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetProjectGrantMemberRoles(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetProjectGrantMemberRoles",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetProjectGrantMemberRoles(ctx, req.(*empty.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchProjectGrantMembers_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectGrantMemberSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchProjectGrantMembers(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchProjectGrantMembers",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchProjectGrantMembers(ctx, req.(*ProjectGrantMemberSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_AddProjectGrantMember_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectGrantMemberAdd)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).AddProjectGrantMember(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/AddProjectGrantMember",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).AddProjectGrantMember(ctx, req.(*ProjectGrantMemberAdd))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ChangeProjectGrantMember_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectGrantMemberChange)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ChangeProjectGrantMember(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ChangeProjectGrantMember",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ChangeProjectGrantMember(ctx, req.(*ProjectGrantMemberChange))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_RemoveProjectGrantMember_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectGrantMemberRemove)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).RemoveProjectGrantMember(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/RemoveProjectGrantMember",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).RemoveProjectGrantMember(ctx, req.(*ProjectGrantMemberRemove))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchUserGrants_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserGrantSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchUserGrants(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchUserGrants",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchUserGrants(ctx, req.(*UserGrantSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UserGrantByID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserGrantID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UserGrantByID(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UserGrantByID",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UserGrantByID(ctx, req.(*UserGrantID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_CreateUserGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserGrantCreate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).CreateUserGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/CreateUserGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).CreateUserGrant(ctx, req.(*UserGrantCreate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UpdateUserGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserGrantUpdate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UpdateUserGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UpdateUserGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UpdateUserGrant(ctx, req.(*UserGrantUpdate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_DeactivateUserGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserGrantID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).DeactivateUserGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/DeactivateUserGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).DeactivateUserGrant(ctx, req.(*UserGrantID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ReactivateUserGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserGrantID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ReactivateUserGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ReactivateUserGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ReactivateUserGrant(ctx, req.(*UserGrantID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchProjectUserGrants_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectUserGrantSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchProjectUserGrants(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchProjectUserGrants",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchProjectUserGrants(ctx, req.(*ProjectUserGrantSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ProjectUserGrantByID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectUserGrantID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ProjectUserGrantByID(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ProjectUserGrantByID",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ProjectUserGrantByID(ctx, req.(*ProjectUserGrantID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_CreateProjectUserGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserGrantCreate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).CreateProjectUserGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/CreateProjectUserGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).CreateProjectUserGrant(ctx, req.(*UserGrantCreate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UpdateProjectUserGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectUserGrantUpdate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UpdateProjectUserGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UpdateProjectUserGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UpdateProjectUserGrant(ctx, req.(*ProjectUserGrantUpdate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_DeactivateProjectUserGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectUserGrantID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).DeactivateProjectUserGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/DeactivateProjectUserGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).DeactivateProjectUserGrant(ctx, req.(*ProjectUserGrantID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ReactivateProjectUserGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectUserGrantID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ReactivateProjectUserGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ReactivateProjectUserGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ReactivateProjectUserGrant(ctx, req.(*ProjectUserGrantID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchProjectGrantUserGrants_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectGrantUserGrantSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchProjectGrantUserGrants(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchProjectGrantUserGrants",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchProjectGrantUserGrants(ctx, req.(*ProjectGrantUserGrantSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ProjectGrantUserGrantByID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectGrantUserGrantID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ProjectGrantUserGrantByID(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ProjectGrantUserGrantByID",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ProjectGrantUserGrantByID(ctx, req.(*ProjectGrantUserGrantID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_CreateProjectGrantUserGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectGrantUserGrantCreate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).CreateProjectGrantUserGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/CreateProjectGrantUserGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).CreateProjectGrantUserGrant(ctx, req.(*ProjectGrantUserGrantCreate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UpdateProjectGrantUserGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectGrantUserGrantUpdate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UpdateProjectGrantUserGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UpdateProjectGrantUserGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UpdateProjectGrantUserGrant(ctx, req.(*ProjectGrantUserGrantUpdate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_DeactivateProjectGrantUserGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectGrantUserGrantID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).DeactivateProjectGrantUserGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/DeactivateProjectGrantUserGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).DeactivateProjectGrantUserGrant(ctx, req.(*ProjectGrantUserGrantID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ReactivateProjectGrantUserGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectGrantUserGrantID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ReactivateProjectGrantUserGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ReactivateProjectGrantUserGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ReactivateProjectGrantUserGrant(ctx, req.(*ProjectGrantUserGrantID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchAuthGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(AuthGrantSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchAuthGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchAuthGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchAuthGrant(ctx, req.(*AuthGrantSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
var _ManagementService_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "caos.zitadel.management.api.v1.ManagementService",
|
|
HandlerType: (*ManagementServiceServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Healthz",
|
|
Handler: _ManagementService_Healthz_Handler,
|
|
},
|
|
{
|
|
MethodName: "Ready",
|
|
Handler: _ManagementService_Ready_Handler,
|
|
},
|
|
{
|
|
MethodName: "Validate",
|
|
Handler: _ManagementService_Validate_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetUserByID",
|
|
Handler: _ManagementService_GetUserByID_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetUserByEmailGlobal",
|
|
Handler: _ManagementService_GetUserByEmailGlobal_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchUsers",
|
|
Handler: _ManagementService_SearchUsers_Handler,
|
|
},
|
|
{
|
|
MethodName: "IsUserUnique",
|
|
Handler: _ManagementService_IsUserUnique_Handler,
|
|
},
|
|
{
|
|
MethodName: "CreateUser",
|
|
Handler: _ManagementService_CreateUser_Handler,
|
|
},
|
|
{
|
|
MethodName: "DeactivateUser",
|
|
Handler: _ManagementService_DeactivateUser_Handler,
|
|
},
|
|
{
|
|
MethodName: "ReactivateUser",
|
|
Handler: _ManagementService_ReactivateUser_Handler,
|
|
},
|
|
{
|
|
MethodName: "LockUser",
|
|
Handler: _ManagementService_LockUser_Handler,
|
|
},
|
|
{
|
|
MethodName: "UnlockUser",
|
|
Handler: _ManagementService_UnlockUser_Handler,
|
|
},
|
|
{
|
|
MethodName: "DeleteUser",
|
|
Handler: _ManagementService_DeleteUser_Handler,
|
|
},
|
|
{
|
|
MethodName: "UserChanges",
|
|
Handler: _ManagementService_UserChanges_Handler,
|
|
},
|
|
{
|
|
MethodName: "ApplicationChanges",
|
|
Handler: _ManagementService_ApplicationChanges_Handler,
|
|
},
|
|
{
|
|
MethodName: "OrgChanges",
|
|
Handler: _ManagementService_OrgChanges_Handler,
|
|
},
|
|
{
|
|
MethodName: "ProjectChanges",
|
|
Handler: _ManagementService_ProjectChanges_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetUserProfile",
|
|
Handler: _ManagementService_GetUserProfile_Handler,
|
|
},
|
|
{
|
|
MethodName: "UpdateUserProfile",
|
|
Handler: _ManagementService_UpdateUserProfile_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetUserEmail",
|
|
Handler: _ManagementService_GetUserEmail_Handler,
|
|
},
|
|
{
|
|
MethodName: "ChangeUserEmail",
|
|
Handler: _ManagementService_ChangeUserEmail_Handler,
|
|
},
|
|
{
|
|
MethodName: "ResendEmailVerificationMail",
|
|
Handler: _ManagementService_ResendEmailVerificationMail_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetUserPhone",
|
|
Handler: _ManagementService_GetUserPhone_Handler,
|
|
},
|
|
{
|
|
MethodName: "ChangeUserPhone",
|
|
Handler: _ManagementService_ChangeUserPhone_Handler,
|
|
},
|
|
{
|
|
MethodName: "ResendPhoneVerificationCode",
|
|
Handler: _ManagementService_ResendPhoneVerificationCode_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetUserAddress",
|
|
Handler: _ManagementService_GetUserAddress_Handler,
|
|
},
|
|
{
|
|
MethodName: "UpdateUserAddress",
|
|
Handler: _ManagementService_UpdateUserAddress_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetUserMfas",
|
|
Handler: _ManagementService_GetUserMfas_Handler,
|
|
},
|
|
{
|
|
MethodName: "SendSetPasswordNotification",
|
|
Handler: _ManagementService_SendSetPasswordNotification_Handler,
|
|
},
|
|
{
|
|
MethodName: "SetInitialPassword",
|
|
Handler: _ManagementService_SetInitialPassword_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetPasswordComplexityPolicy",
|
|
Handler: _ManagementService_GetPasswordComplexityPolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "CreatePasswordComplexityPolicy",
|
|
Handler: _ManagementService_CreatePasswordComplexityPolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "UpdatePasswordComplexityPolicy",
|
|
Handler: _ManagementService_UpdatePasswordComplexityPolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "DeletePasswordComplexityPolicy",
|
|
Handler: _ManagementService_DeletePasswordComplexityPolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetPasswordAgePolicy",
|
|
Handler: _ManagementService_GetPasswordAgePolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "CreatePasswordAgePolicy",
|
|
Handler: _ManagementService_CreatePasswordAgePolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "UpdatePasswordAgePolicy",
|
|
Handler: _ManagementService_UpdatePasswordAgePolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "DeletePasswordAgePolicy",
|
|
Handler: _ManagementService_DeletePasswordAgePolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetPasswordLockoutPolicy",
|
|
Handler: _ManagementService_GetPasswordLockoutPolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "CreatePasswordLockoutPolicy",
|
|
Handler: _ManagementService_CreatePasswordLockoutPolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "UpdatePasswordLockoutPolicy",
|
|
Handler: _ManagementService_UpdatePasswordLockoutPolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "DeletePasswordLockoutPolicy",
|
|
Handler: _ManagementService_DeletePasswordLockoutPolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetOrgByID",
|
|
Handler: _ManagementService_GetOrgByID_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetOrgByDomainGlobal",
|
|
Handler: _ManagementService_GetOrgByDomainGlobal_Handler,
|
|
},
|
|
{
|
|
MethodName: "DeactivateOrg",
|
|
Handler: _ManagementService_DeactivateOrg_Handler,
|
|
},
|
|
{
|
|
MethodName: "ReactivateOrg",
|
|
Handler: _ManagementService_ReactivateOrg_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetOrgMemberRoles",
|
|
Handler: _ManagementService_GetOrgMemberRoles_Handler,
|
|
},
|
|
{
|
|
MethodName: "AddOrgMember",
|
|
Handler: _ManagementService_AddOrgMember_Handler,
|
|
},
|
|
{
|
|
MethodName: "ChangeOrgMember",
|
|
Handler: _ManagementService_ChangeOrgMember_Handler,
|
|
},
|
|
{
|
|
MethodName: "RemoveOrgMember",
|
|
Handler: _ManagementService_RemoveOrgMember_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchOrgMembers",
|
|
Handler: _ManagementService_SearchOrgMembers_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchProjects",
|
|
Handler: _ManagementService_SearchProjects_Handler,
|
|
},
|
|
{
|
|
MethodName: "ProjectByID",
|
|
Handler: _ManagementService_ProjectByID_Handler,
|
|
},
|
|
{
|
|
MethodName: "CreateProject",
|
|
Handler: _ManagementService_CreateProject_Handler,
|
|
},
|
|
{
|
|
MethodName: "UpdateProject",
|
|
Handler: _ManagementService_UpdateProject_Handler,
|
|
},
|
|
{
|
|
MethodName: "DeactivateProject",
|
|
Handler: _ManagementService_DeactivateProject_Handler,
|
|
},
|
|
{
|
|
MethodName: "ReactivateProject",
|
|
Handler: _ManagementService_ReactivateProject_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetGrantedProjectGrantByID",
|
|
Handler: _ManagementService_GetGrantedProjectGrantByID_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetProjectMemberRoles",
|
|
Handler: _ManagementService_GetProjectMemberRoles_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchProjectMembers",
|
|
Handler: _ManagementService_SearchProjectMembers_Handler,
|
|
},
|
|
{
|
|
MethodName: "AddProjectMember",
|
|
Handler: _ManagementService_AddProjectMember_Handler,
|
|
},
|
|
{
|
|
MethodName: "ChangeProjectMember",
|
|
Handler: _ManagementService_ChangeProjectMember_Handler,
|
|
},
|
|
{
|
|
MethodName: "RemoveProjectMember",
|
|
Handler: _ManagementService_RemoveProjectMember_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchProjectRoles",
|
|
Handler: _ManagementService_SearchProjectRoles_Handler,
|
|
},
|
|
{
|
|
MethodName: "AddProjectRole",
|
|
Handler: _ManagementService_AddProjectRole_Handler,
|
|
},
|
|
{
|
|
MethodName: "RemoveProjectRole",
|
|
Handler: _ManagementService_RemoveProjectRole_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchApplications",
|
|
Handler: _ManagementService_SearchApplications_Handler,
|
|
},
|
|
{
|
|
MethodName: "ApplicationByID",
|
|
Handler: _ManagementService_ApplicationByID_Handler,
|
|
},
|
|
{
|
|
MethodName: "CreateOIDCApplication",
|
|
Handler: _ManagementService_CreateOIDCApplication_Handler,
|
|
},
|
|
{
|
|
MethodName: "UpdateApplication",
|
|
Handler: _ManagementService_UpdateApplication_Handler,
|
|
},
|
|
{
|
|
MethodName: "DeactivateApplication",
|
|
Handler: _ManagementService_DeactivateApplication_Handler,
|
|
},
|
|
{
|
|
MethodName: "ReactivateApplication",
|
|
Handler: _ManagementService_ReactivateApplication_Handler,
|
|
},
|
|
{
|
|
MethodName: "UpdateApplicationOIDCConfig",
|
|
Handler: _ManagementService_UpdateApplicationOIDCConfig_Handler,
|
|
},
|
|
{
|
|
MethodName: "RegenerateOIDCClientSecret",
|
|
Handler: _ManagementService_RegenerateOIDCClientSecret_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchProjectGrants",
|
|
Handler: _ManagementService_SearchProjectGrants_Handler,
|
|
},
|
|
{
|
|
MethodName: "ProjectGrantByID",
|
|
Handler: _ManagementService_ProjectGrantByID_Handler,
|
|
},
|
|
{
|
|
MethodName: "CreateProjectGrant",
|
|
Handler: _ManagementService_CreateProjectGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "UpdateProjectGrant",
|
|
Handler: _ManagementService_UpdateProjectGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "DeactivateProjectGrant",
|
|
Handler: _ManagementService_DeactivateProjectGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "ReactivateProjectGrant",
|
|
Handler: _ManagementService_ReactivateProjectGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetProjectGrantMemberRoles",
|
|
Handler: _ManagementService_GetProjectGrantMemberRoles_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchProjectGrantMembers",
|
|
Handler: _ManagementService_SearchProjectGrantMembers_Handler,
|
|
},
|
|
{
|
|
MethodName: "AddProjectGrantMember",
|
|
Handler: _ManagementService_AddProjectGrantMember_Handler,
|
|
},
|
|
{
|
|
MethodName: "ChangeProjectGrantMember",
|
|
Handler: _ManagementService_ChangeProjectGrantMember_Handler,
|
|
},
|
|
{
|
|
MethodName: "RemoveProjectGrantMember",
|
|
Handler: _ManagementService_RemoveProjectGrantMember_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchUserGrants",
|
|
Handler: _ManagementService_SearchUserGrants_Handler,
|
|
},
|
|
{
|
|
MethodName: "UserGrantByID",
|
|
Handler: _ManagementService_UserGrantByID_Handler,
|
|
},
|
|
{
|
|
MethodName: "CreateUserGrant",
|
|
Handler: _ManagementService_CreateUserGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "UpdateUserGrant",
|
|
Handler: _ManagementService_UpdateUserGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "DeactivateUserGrant",
|
|
Handler: _ManagementService_DeactivateUserGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "ReactivateUserGrant",
|
|
Handler: _ManagementService_ReactivateUserGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchProjectUserGrants",
|
|
Handler: _ManagementService_SearchProjectUserGrants_Handler,
|
|
},
|
|
{
|
|
MethodName: "ProjectUserGrantByID",
|
|
Handler: _ManagementService_ProjectUserGrantByID_Handler,
|
|
},
|
|
{
|
|
MethodName: "CreateProjectUserGrant",
|
|
Handler: _ManagementService_CreateProjectUserGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "UpdateProjectUserGrant",
|
|
Handler: _ManagementService_UpdateProjectUserGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "DeactivateProjectUserGrant",
|
|
Handler: _ManagementService_DeactivateProjectUserGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "ReactivateProjectUserGrant",
|
|
Handler: _ManagementService_ReactivateProjectUserGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchProjectGrantUserGrants",
|
|
Handler: _ManagementService_SearchProjectGrantUserGrants_Handler,
|
|
},
|
|
{
|
|
MethodName: "ProjectGrantUserGrantByID",
|
|
Handler: _ManagementService_ProjectGrantUserGrantByID_Handler,
|
|
},
|
|
{
|
|
MethodName: "CreateProjectGrantUserGrant",
|
|
Handler: _ManagementService_CreateProjectGrantUserGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "UpdateProjectGrantUserGrant",
|
|
Handler: _ManagementService_UpdateProjectGrantUserGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "DeactivateProjectGrantUserGrant",
|
|
Handler: _ManagementService_DeactivateProjectGrantUserGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "ReactivateProjectGrantUserGrant",
|
|
Handler: _ManagementService_ReactivateProjectGrantUserGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchAuthGrant",
|
|
Handler: _ManagementService_SearchAuthGrant_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "management.proto",
|
|
}
|