mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 20:08:02 +00:00
1a00faf132
* fix: return orgDomain validationType * added missing translations for orgDomain activity * claim org domain * show message if domain token was requested * fix tests * fix tests Co-authored-by: Max Peintner <max@caos.ch>
15883 lines
606 KiB
Go
15883 lines
606 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: management.proto
|
|
|
|
package management
|
|
|
|
import (
|
|
context "context"
|
|
fmt "fmt"
|
|
_ "github.com/caos/zitadel/internal/protoc/protoc-gen-authoption/authoption"
|
|
message "github.com/caos/zitadel/pkg/grpc/message"
|
|
_ "github.com/envoyproxy/protoc-gen-validate/validate"
|
|
proto "github.com/golang/protobuf/proto"
|
|
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
|
|
SearchMethod_SEARCHMETHOD_EQUALS_IGNORE_CASE SearchMethod = 3
|
|
SearchMethod_SEARCHMETHOD_STARTS_WITH_IGNORE_CASE SearchMethod = 4
|
|
SearchMethod_SEARCHMETHOD_CONTAINS_IGNORE_CASE SearchMethod = 5
|
|
SearchMethod_SEARCHMETHOD_NOT_EQUALS SearchMethod = 6
|
|
SearchMethod_SEARCHMETHOD_GREATER_THAN SearchMethod = 7
|
|
SearchMethod_SEARCHMETHOD_LESS_THAN SearchMethod = 8
|
|
SearchMethod_SEARCHMETHOD_IS_ONE_OF SearchMethod = 9
|
|
SearchMethod_SEARCHMETHOD_LIST_CONTAINS SearchMethod = 10
|
|
)
|
|
|
|
var SearchMethod_name = map[int32]string{
|
|
0: "SEARCHMETHOD_EQUALS",
|
|
1: "SEARCHMETHOD_STARTS_WITH",
|
|
2: "SEARCHMETHOD_CONTAINS",
|
|
3: "SEARCHMETHOD_EQUALS_IGNORE_CASE",
|
|
4: "SEARCHMETHOD_STARTS_WITH_IGNORE_CASE",
|
|
5: "SEARCHMETHOD_CONTAINS_IGNORE_CASE",
|
|
6: "SEARCHMETHOD_NOT_EQUALS",
|
|
7: "SEARCHMETHOD_GREATER_THAN",
|
|
8: "SEARCHMETHOD_LESS_THAN",
|
|
9: "SEARCHMETHOD_IS_ONE_OF",
|
|
10: "SEARCHMETHOD_LIST_CONTAINS",
|
|
}
|
|
|
|
var SearchMethod_value = map[string]int32{
|
|
"SEARCHMETHOD_EQUALS": 0,
|
|
"SEARCHMETHOD_STARTS_WITH": 1,
|
|
"SEARCHMETHOD_CONTAINS": 2,
|
|
"SEARCHMETHOD_EQUALS_IGNORE_CASE": 3,
|
|
"SEARCHMETHOD_STARTS_WITH_IGNORE_CASE": 4,
|
|
"SEARCHMETHOD_CONTAINS_IGNORE_CASE": 5,
|
|
"SEARCHMETHOD_NOT_EQUALS": 6,
|
|
"SEARCHMETHOD_GREATER_THAN": 7,
|
|
"SEARCHMETHOD_LESS_THAN": 8,
|
|
"SEARCHMETHOD_IS_ONE_OF": 9,
|
|
"SEARCHMETHOD_LIST_CONTAINS": 10,
|
|
}
|
|
|
|
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 OrgDomainValidationType int32
|
|
|
|
const (
|
|
OrgDomainValidationType_ORGDOMAINVALIDATIONTYPE_UNSPECIFIED OrgDomainValidationType = 0
|
|
OrgDomainValidationType_ORGDOMAINVALIDATIONTYPE_HTTP OrgDomainValidationType = 1
|
|
OrgDomainValidationType_ORGDOMAINVALIDATIONTYPE_DNS OrgDomainValidationType = 2
|
|
)
|
|
|
|
var OrgDomainValidationType_name = map[int32]string{
|
|
0: "ORGDOMAINVALIDATIONTYPE_UNSPECIFIED",
|
|
1: "ORGDOMAINVALIDATIONTYPE_HTTP",
|
|
2: "ORGDOMAINVALIDATIONTYPE_DNS",
|
|
}
|
|
|
|
var OrgDomainValidationType_value = map[string]int32{
|
|
"ORGDOMAINVALIDATIONTYPE_UNSPECIFIED": 0,
|
|
"ORGDOMAINVALIDATIONTYPE_HTTP": 1,
|
|
"ORGDOMAINVALIDATIONTYPE_DNS": 2,
|
|
}
|
|
|
|
func (x OrgDomainValidationType) String() string {
|
|
return proto.EnumName(OrgDomainValidationType_name, int32(x))
|
|
}
|
|
|
|
func (OrgDomainValidationType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{9}
|
|
}
|
|
|
|
type OrgDomainSearchKey int32
|
|
|
|
const (
|
|
OrgDomainSearchKey_ORGDOMAINSEARCHKEY_UNSPECIFIED OrgDomainSearchKey = 0
|
|
OrgDomainSearchKey_ORGDOMAINSEARCHKEY_DOMAIN OrgDomainSearchKey = 1
|
|
)
|
|
|
|
var OrgDomainSearchKey_name = map[int32]string{
|
|
0: "ORGDOMAINSEARCHKEY_UNSPECIFIED",
|
|
1: "ORGDOMAINSEARCHKEY_DOMAIN",
|
|
}
|
|
|
|
var OrgDomainSearchKey_value = map[string]int32{
|
|
"ORGDOMAINSEARCHKEY_UNSPECIFIED": 0,
|
|
"ORGDOMAINSEARCHKEY_DOMAIN": 1,
|
|
}
|
|
|
|
func (x OrgDomainSearchKey) String() string {
|
|
return proto.EnumName(OrgDomainSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (OrgDomainSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{10}
|
|
}
|
|
|
|
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{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 ProjectState int32
|
|
|
|
const (
|
|
ProjectState_PROJECTSTATE_UNSPECIFIED ProjectState = 0
|
|
ProjectState_PROJECTSTATE_ACTIVE ProjectState = 1
|
|
ProjectState_PROJECTSTATE_INACTIVE ProjectState = 2
|
|
)
|
|
|
|
var ProjectState_name = map[int32]string{
|
|
0: "PROJECTSTATE_UNSPECIFIED",
|
|
1: "PROJECTSTATE_ACTIVE",
|
|
2: "PROJECTSTATE_INACTIVE",
|
|
}
|
|
|
|
var ProjectState_value = map[string]int32{
|
|
"PROJECTSTATE_UNSPECIFIED": 0,
|
|
"PROJECTSTATE_ACTIVE": 1,
|
|
"PROJECTSTATE_INACTIVE": 2,
|
|
}
|
|
|
|
func (x ProjectState) String() string {
|
|
return proto.EnumName(ProjectState_name, int32(x))
|
|
}
|
|
|
|
func (ProjectState) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{13}
|
|
}
|
|
|
|
type ProjectType int32
|
|
|
|
const (
|
|
ProjectType_PROJECTTYPE_UNSPECIFIED ProjectType = 0
|
|
ProjectType_PROJECTTYPE_OWNED ProjectType = 1
|
|
ProjectType_PROJECTTYPE_GRANTED ProjectType = 2
|
|
)
|
|
|
|
var ProjectType_name = map[int32]string{
|
|
0: "PROJECTTYPE_UNSPECIFIED",
|
|
1: "PROJECTTYPE_OWNED",
|
|
2: "PROJECTTYPE_GRANTED",
|
|
}
|
|
|
|
var ProjectType_value = map[string]int32{
|
|
"PROJECTTYPE_UNSPECIFIED": 0,
|
|
"PROJECTTYPE_OWNED": 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{14}
|
|
}
|
|
|
|
type ProjectRoleSearchKey int32
|
|
|
|
const (
|
|
ProjectRoleSearchKey_PROJECTROLESEARCHKEY_UNSPECIFIED ProjectRoleSearchKey = 0
|
|
ProjectRoleSearchKey_PROJECTROLESEARCHKEY_KEY ProjectRoleSearchKey = 1
|
|
ProjectRoleSearchKey_PROJECTROLESEARCHKEY_DISPLAY_NAME ProjectRoleSearchKey = 2
|
|
)
|
|
|
|
var ProjectRoleSearchKey_name = map[int32]string{
|
|
0: "PROJECTROLESEARCHKEY_UNSPECIFIED",
|
|
1: "PROJECTROLESEARCHKEY_KEY",
|
|
2: "PROJECTROLESEARCHKEY_DISPLAY_NAME",
|
|
}
|
|
|
|
var ProjectRoleSearchKey_value = map[string]int32{
|
|
"PROJECTROLESEARCHKEY_UNSPECIFIED": 0,
|
|
"PROJECTROLESEARCHKEY_KEY": 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{15}
|
|
}
|
|
|
|
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
|
|
ProjectMemberSearchKey_PROJECTMEMBERSEARCHKEY_USER_NAME ProjectMemberSearchKey = 5
|
|
)
|
|
|
|
var ProjectMemberSearchKey_name = map[int32]string{
|
|
0: "PROJECTMEMBERSEARCHKEY_UNSPECIFIED",
|
|
1: "PROJECTMEMBERSEARCHKEY_FIRST_NAME",
|
|
2: "PROJECTMEMBERSEARCHKEY_LAST_NAME",
|
|
3: "PROJECTMEMBERSEARCHKEY_EMAIL",
|
|
4: "PROJECTMEMBERSEARCHKEY_USER_ID",
|
|
5: "PROJECTMEMBERSEARCHKEY_USER_NAME",
|
|
}
|
|
|
|
var ProjectMemberSearchKey_value = map[string]int32{
|
|
"PROJECTMEMBERSEARCHKEY_UNSPECIFIED": 0,
|
|
"PROJECTMEMBERSEARCHKEY_FIRST_NAME": 1,
|
|
"PROJECTMEMBERSEARCHKEY_LAST_NAME": 2,
|
|
"PROJECTMEMBERSEARCHKEY_EMAIL": 3,
|
|
"PROJECTMEMBERSEARCHKEY_USER_ID": 4,
|
|
"PROJECTMEMBERSEARCHKEY_USER_NAME": 5,
|
|
}
|
|
|
|
func (x ProjectMemberSearchKey) String() string {
|
|
return proto.EnumName(ProjectMemberSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (ProjectMemberSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{16}
|
|
}
|
|
|
|
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{17}
|
|
}
|
|
|
|
type OIDCVersion int32
|
|
|
|
const (
|
|
OIDCVersion_OIDCV1_0 OIDCVersion = 0
|
|
)
|
|
|
|
var OIDCVersion_name = map[int32]string{
|
|
0: "OIDCV1_0",
|
|
}
|
|
|
|
var OIDCVersion_value = map[string]int32{
|
|
"OIDCV1_0": 0,
|
|
}
|
|
|
|
func (x OIDCVersion) String() string {
|
|
return proto.EnumName(OIDCVersion_name, int32(x))
|
|
}
|
|
|
|
func (OIDCVersion) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{18}
|
|
}
|
|
|
|
type OIDCResponseType int32
|
|
|
|
const (
|
|
OIDCResponseType_OIDCRESPONSETYPE_CODE OIDCResponseType = 0
|
|
OIDCResponseType_OIDCRESPONSETYPE_ID_TOKEN OIDCResponseType = 1
|
|
OIDCResponseType_OIDCRESPONSETYPE_ID_TOKEN_TOKEN OIDCResponseType = 2
|
|
)
|
|
|
|
var OIDCResponseType_name = map[int32]string{
|
|
0: "OIDCRESPONSETYPE_CODE",
|
|
1: "OIDCRESPONSETYPE_ID_TOKEN",
|
|
2: "OIDCRESPONSETYPE_ID_TOKEN_TOKEN",
|
|
}
|
|
|
|
var OIDCResponseType_value = map[string]int32{
|
|
"OIDCRESPONSETYPE_CODE": 0,
|
|
"OIDCRESPONSETYPE_ID_TOKEN": 1,
|
|
"OIDCRESPONSETYPE_ID_TOKEN_TOKEN": 2,
|
|
}
|
|
|
|
func (x OIDCResponseType) String() string {
|
|
return proto.EnumName(OIDCResponseType_name, int32(x))
|
|
}
|
|
|
|
func (OIDCResponseType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{19}
|
|
}
|
|
|
|
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{20}
|
|
}
|
|
|
|
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{21}
|
|
}
|
|
|
|
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{22}
|
|
}
|
|
|
|
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{23}
|
|
}
|
|
|
|
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{24}
|
|
}
|
|
|
|
type ProjectGrantSearchKey int32
|
|
|
|
const (
|
|
ProjectGrantSearchKey_PROJECTGRANTSEARCHKEY_UNSPECIFIED ProjectGrantSearchKey = 0
|
|
ProjectGrantSearchKey_PROJECTGRANTSEARCHKEY_PROJECT_NAME ProjectGrantSearchKey = 1
|
|
ProjectGrantSearchKey_PROJECTGRANTSEARCHKEY_ROLE_KEY ProjectGrantSearchKey = 2
|
|
)
|
|
|
|
var ProjectGrantSearchKey_name = map[int32]string{
|
|
0: "PROJECTGRANTSEARCHKEY_UNSPECIFIED",
|
|
1: "PROJECTGRANTSEARCHKEY_PROJECT_NAME",
|
|
2: "PROJECTGRANTSEARCHKEY_ROLE_KEY",
|
|
}
|
|
|
|
var ProjectGrantSearchKey_value = map[string]int32{
|
|
"PROJECTGRANTSEARCHKEY_UNSPECIFIED": 0,
|
|
"PROJECTGRANTSEARCHKEY_PROJECT_NAME": 1,
|
|
"PROJECTGRANTSEARCHKEY_ROLE_KEY": 2,
|
|
}
|
|
|
|
func (x ProjectGrantSearchKey) String() string {
|
|
return proto.EnumName(ProjectGrantSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (ProjectGrantSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{25}
|
|
}
|
|
|
|
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
|
|
ProjectGrantMemberSearchKey_PROJECTGRANTMEMBERSEARCHKEY_USER_NAME ProjectGrantMemberSearchKey = 5
|
|
)
|
|
|
|
var ProjectGrantMemberSearchKey_name = map[int32]string{
|
|
0: "PROJECTGRANTMEMBERSEARCHKEY_UNSPECIFIED",
|
|
1: "PROJECTGRANTMEMBERSEARCHKEY_FIRST_NAME",
|
|
2: "PROJECTGRANTMEMBERSEARCHKEY_LAST_NAME",
|
|
3: "PROJECTGRANTMEMBERSEARCHKEY_EMAIL",
|
|
4: "PROJECTGRANTMEMBERSEARCHKEY_USER_ID",
|
|
5: "PROJECTGRANTMEMBERSEARCHKEY_USER_NAME",
|
|
}
|
|
|
|
var ProjectGrantMemberSearchKey_value = map[string]int32{
|
|
"PROJECTGRANTMEMBERSEARCHKEY_UNSPECIFIED": 0,
|
|
"PROJECTGRANTMEMBERSEARCHKEY_FIRST_NAME": 1,
|
|
"PROJECTGRANTMEMBERSEARCHKEY_LAST_NAME": 2,
|
|
"PROJECTGRANTMEMBERSEARCHKEY_EMAIL": 3,
|
|
"PROJECTGRANTMEMBERSEARCHKEY_USER_ID": 4,
|
|
"PROJECTGRANTMEMBERSEARCHKEY_USER_NAME": 5,
|
|
}
|
|
|
|
func (x ProjectGrantMemberSearchKey) String() string {
|
|
return proto.EnumName(ProjectGrantMemberSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (ProjectGrantMemberSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{26}
|
|
}
|
|
|
|
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{27}
|
|
}
|
|
|
|
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
|
|
UserGrantSearchKey_USERGRANTSEARCHKEY_ROLE_KEY UserGrantSearchKey = 4
|
|
UserGrantSearchKey_USERGRANTSEARCHKEY_GRANT_ID UserGrantSearchKey = 5
|
|
)
|
|
|
|
var UserGrantSearchKey_name = map[int32]string{
|
|
0: "USERGRANTSEARCHKEY_UNSPECIFIED",
|
|
1: "USERGRANTSEARCHKEY_PROJECT_ID",
|
|
2: "USERGRANTSEARCHKEY_USER_ID",
|
|
3: "USERGRANTSEARCHKEY_ORG_ID",
|
|
4: "USERGRANTSEARCHKEY_ROLE_KEY",
|
|
5: "USERGRANTSEARCHKEY_GRANT_ID",
|
|
}
|
|
|
|
var UserGrantSearchKey_value = map[string]int32{
|
|
"USERGRANTSEARCHKEY_UNSPECIFIED": 0,
|
|
"USERGRANTSEARCHKEY_PROJECT_ID": 1,
|
|
"USERGRANTSEARCHKEY_USER_ID": 2,
|
|
"USERGRANTSEARCHKEY_ORG_ID": 3,
|
|
"USERGRANTSEARCHKEY_ROLE_KEY": 4,
|
|
"USERGRANTSEARCHKEY_GRANT_ID": 5,
|
|
}
|
|
|
|
func (x UserGrantSearchKey) String() string {
|
|
return proto.EnumName(UserGrantSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (UserGrantSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{28}
|
|
}
|
|
|
|
type UserMembershipSearchKey int32
|
|
|
|
const (
|
|
UserMembershipSearchKey_USERMEMBERSHIPSEARCHKEY_UNSPECIFIED UserMembershipSearchKey = 0
|
|
UserMembershipSearchKey_USERMEMBERSHIPSEARCHKEY_TYPE UserMembershipSearchKey = 1
|
|
UserMembershipSearchKey_USERMEMBERSHIPSEARCHKEY_OBJECT_ID UserMembershipSearchKey = 2
|
|
)
|
|
|
|
var UserMembershipSearchKey_name = map[int32]string{
|
|
0: "USERMEMBERSHIPSEARCHKEY_UNSPECIFIED",
|
|
1: "USERMEMBERSHIPSEARCHKEY_TYPE",
|
|
2: "USERMEMBERSHIPSEARCHKEY_OBJECT_ID",
|
|
}
|
|
|
|
var UserMembershipSearchKey_value = map[string]int32{
|
|
"USERMEMBERSHIPSEARCHKEY_UNSPECIFIED": 0,
|
|
"USERMEMBERSHIPSEARCHKEY_TYPE": 1,
|
|
"USERMEMBERSHIPSEARCHKEY_OBJECT_ID": 2,
|
|
}
|
|
|
|
func (x UserMembershipSearchKey) String() string {
|
|
return proto.EnumName(UserMembershipSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (UserMembershipSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{29}
|
|
}
|
|
|
|
type MemberType int32
|
|
|
|
const (
|
|
MemberType_MEMBERTYPE_UNSPECIFIED MemberType = 0
|
|
MemberType_MEMBERTYPE_ORGANISATION MemberType = 1
|
|
MemberType_MEMBERTYPE_PROJECT MemberType = 2
|
|
MemberType_MEMBERTYPE_PROJECT_GRANT MemberType = 3
|
|
)
|
|
|
|
var MemberType_name = map[int32]string{
|
|
0: "MEMBERTYPE_UNSPECIFIED",
|
|
1: "MEMBERTYPE_ORGANISATION",
|
|
2: "MEMBERTYPE_PROJECT",
|
|
3: "MEMBERTYPE_PROJECT_GRANT",
|
|
}
|
|
|
|
var MemberType_value = map[string]int32{
|
|
"MEMBERTYPE_UNSPECIFIED": 0,
|
|
"MEMBERTYPE_ORGANISATION": 1,
|
|
"MEMBERTYPE_PROJECT": 2,
|
|
"MEMBERTYPE_PROJECT_GRANT": 3,
|
|
}
|
|
|
|
func (x MemberType) String() string {
|
|
return proto.EnumName(MemberType_name, int32(x))
|
|
}
|
|
|
|
func (MemberType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{30}
|
|
}
|
|
|
|
type ZitadelDocs struct {
|
|
Issuer string `protobuf:"bytes,1,opt,name=issuer,proto3" json:"issuer,omitempty"`
|
|
DiscoveryEndpoint string `protobuf:"bytes,2,opt,name=discovery_endpoint,json=discoveryEndpoint,proto3" json:"discovery_endpoint,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ZitadelDocs) Reset() { *m = ZitadelDocs{} }
|
|
func (m *ZitadelDocs) String() string { return proto.CompactTextString(m) }
|
|
func (*ZitadelDocs) ProtoMessage() {}
|
|
func (*ZitadelDocs) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{0}
|
|
}
|
|
|
|
func (m *ZitadelDocs) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ZitadelDocs.Unmarshal(m, b)
|
|
}
|
|
func (m *ZitadelDocs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ZitadelDocs.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ZitadelDocs) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ZitadelDocs.Merge(m, src)
|
|
}
|
|
func (m *ZitadelDocs) XXX_Size() int {
|
|
return xxx_messageInfo_ZitadelDocs.Size(m)
|
|
}
|
|
func (m *ZitadelDocs) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ZitadelDocs.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ZitadelDocs proto.InternalMessageInfo
|
|
|
|
func (m *ZitadelDocs) GetIssuer() string {
|
|
if m != nil {
|
|
return m.Issuer
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ZitadelDocs) GetDiscoveryEndpoint() string {
|
|
if m != nil {
|
|
return m.DiscoveryEndpoint
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Iam struct {
|
|
GlobalOrgId string `protobuf:"bytes,1,opt,name=global_org_id,json=globalOrgId,proto3" json:"global_org_id,omitempty"`
|
|
IamProjectId string `protobuf:"bytes,2,opt,name=iam_project_id,json=iamProjectId,proto3" json:"iam_project_id,omitempty"`
|
|
SetUpDone bool `protobuf:"varint,3,opt,name=set_up_done,json=setUpDone,proto3" json:"set_up_done,omitempty"`
|
|
SetUpStarted bool `protobuf:"varint,4,opt,name=set_up_started,json=setUpStarted,proto3" json:"set_up_started,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Iam) Reset() { *m = Iam{} }
|
|
func (m *Iam) String() string { return proto.CompactTextString(m) }
|
|
func (*Iam) ProtoMessage() {}
|
|
func (*Iam) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{1}
|
|
}
|
|
|
|
func (m *Iam) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Iam.Unmarshal(m, b)
|
|
}
|
|
func (m *Iam) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Iam.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Iam) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Iam.Merge(m, src)
|
|
}
|
|
func (m *Iam) XXX_Size() int {
|
|
return xxx_messageInfo_Iam.Size(m)
|
|
}
|
|
func (m *Iam) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Iam.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Iam proto.InternalMessageInfo
|
|
|
|
func (m *Iam) GetGlobalOrgId() string {
|
|
if m != nil {
|
|
return m.GlobalOrgId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Iam) GetIamProjectId() string {
|
|
if m != nil {
|
|
return m.IamProjectId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Iam) GetSetUpDone() bool {
|
|
if m != nil {
|
|
return m.SetUpDone
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *Iam) GetSetUpStarted() bool {
|
|
if m != nil {
|
|
return m.SetUpStarted
|
|
}
|
|
return false
|
|
}
|
|
|
|
type ChangeRequest struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
SecId string `protobuf:"bytes,2,opt,name=sec_id,json=secId,proto3" json:"sec_id,omitempty"`
|
|
Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
|
|
SequenceOffset uint64 `protobuf:"varint,4,opt,name=sequence_offset,json=sequenceOffset,proto3" json:"sequence_offset,omitempty"`
|
|
Asc bool `protobuf:"varint,5,opt,name=asc,proto3" json:"asc,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{2}
|
|
}
|
|
|
|
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) GetSecId() string {
|
|
if m != nil {
|
|
return m.SecId
|
|
}
|
|
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
|
|
}
|
|
|
|
func (m *ChangeRequest) GetAsc() bool {
|
|
if m != nil {
|
|
return m.Asc
|
|
}
|
|
return false
|
|
}
|
|
|
|
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{3}
|
|
}
|
|
|
|
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 *message.LocalizedMessage `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"`
|
|
EditorId string `protobuf:"bytes,4,opt,name=editor_id,json=editorId,proto3" json:"editor_id,omitempty"`
|
|
Editor string `protobuf:"bytes,5,opt,name=editor,proto3" json:"editor,omitempty"`
|
|
Data *_struct.Struct `protobuf:"bytes,6,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{4}
|
|
}
|
|
|
|
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() *message.LocalizedMessage {
|
|
if m != nil {
|
|
return m.EventType
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Change) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Change) GetEditorId() string {
|
|
if m != nil {
|
|
return m.EditorId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Change) GetEditor() string {
|
|
if m != nil {
|
|
return m.Editor
|
|
}
|
|
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{5}
|
|
}
|
|
|
|
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{6}
|
|
}
|
|
|
|
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{7}
|
|
}
|
|
|
|
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 Email 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 *Email) Reset() { *m = Email{} }
|
|
func (m *Email) String() string { return proto.CompactTextString(m) }
|
|
func (*Email) ProtoMessage() {}
|
|
func (*Email) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{8}
|
|
}
|
|
|
|
func (m *Email) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Email.Unmarshal(m, b)
|
|
}
|
|
func (m *Email) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Email.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Email) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Email.Merge(m, src)
|
|
}
|
|
func (m *Email) XXX_Size() int {
|
|
return xxx_messageInfo_Email.Size(m)
|
|
}
|
|
func (m *Email) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Email.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Email proto.InternalMessageInfo
|
|
|
|
func (m *Email) 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{9}
|
|
}
|
|
|
|
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{10}
|
|
}
|
|
|
|
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"`
|
|
PreferredLanguage string `protobuf:"bytes,5,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
|
|
Gender Gender `protobuf:"varint,6,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
|
|
Email string `protobuf:"bytes,7,opt,name=email,proto3" json:"email,omitempty"`
|
|
IsEmailVerified bool `protobuf:"varint,8,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
|
|
Phone string `protobuf:"bytes,9,opt,name=phone,proto3" json:"phone,omitempty"`
|
|
IsPhoneVerified bool `protobuf:"varint,10,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
|
|
Country string `protobuf:"bytes,11,opt,name=country,proto3" json:"country,omitempty"`
|
|
Locality string `protobuf:"bytes,12,opt,name=locality,proto3" json:"locality,omitempty"`
|
|
PostalCode string `protobuf:"bytes,13,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
|
|
Region string `protobuf:"bytes,14,opt,name=region,proto3" json:"region,omitempty"`
|
|
StreetAddress string `protobuf:"bytes,15,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
|
|
Password string `protobuf:"bytes,16,opt,name=password,proto3" json:"password,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{11}
|
|
}
|
|
|
|
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) 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"`
|
|
UserName string `protobuf:"bytes,5,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
|
|
FirstName string `protobuf:"bytes,6,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
|
|
LastName string `protobuf:"bytes,7,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
|
|
DisplayName string `protobuf:"bytes,8,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
|
|
NickName string `protobuf:"bytes,9,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
|
|
PreferredLanguage string `protobuf:"bytes,10,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
|
|
Gender Gender `protobuf:"varint,11,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
|
|
Email string `protobuf:"bytes,12,opt,name=email,proto3" json:"email,omitempty"`
|
|
IsEmailVerified bool `protobuf:"varint,13,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
|
|
Phone string `protobuf:"bytes,14,opt,name=phone,proto3" json:"phone,omitempty"`
|
|
IsPhoneVerified bool `protobuf:"varint,15,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
|
|
Country string `protobuf:"bytes,16,opt,name=country,proto3" json:"country,omitempty"`
|
|
Locality string `protobuf:"bytes,17,opt,name=locality,proto3" json:"locality,omitempty"`
|
|
PostalCode string `protobuf:"bytes,18,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
|
|
Region string `protobuf:"bytes,19,opt,name=region,proto3" json:"region,omitempty"`
|
|
StreetAddress string `protobuf:"bytes,20,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,21,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{12}
|
|
}
|
|
|
|
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) 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 ""
|
|
}
|
|
|
|
func (m *User) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type UserView 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"`
|
|
Sequence uint64 `protobuf:"varint,23,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
ResourceOwner string `protobuf:"bytes,24,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
|
|
LoginNames []string `protobuf:"bytes,25,rep,name=login_names,json=loginNames,proto3" json:"login_names,omitempty"`
|
|
PreferredLoginName string `protobuf:"bytes,26,opt,name=preferred_login_name,json=preferredLoginName,proto3" json:"preferred_login_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserView) Reset() { *m = UserView{} }
|
|
func (m *UserView) String() string { return proto.CompactTextString(m) }
|
|
func (*UserView) ProtoMessage() {}
|
|
func (*UserView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{13}
|
|
}
|
|
|
|
func (m *UserView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UserView.Unmarshal(m, b)
|
|
}
|
|
func (m *UserView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UserView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UserView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UserView.Merge(m, src)
|
|
}
|
|
func (m *UserView) XXX_Size() int {
|
|
return xxx_messageInfo_UserView.Size(m)
|
|
}
|
|
func (m *UserView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UserView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UserView proto.InternalMessageInfo
|
|
|
|
func (m *UserView) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserView) GetState() UserState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return UserState_USERSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *UserView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserView) GetLastLogin() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.LastLogin
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserView) GetPasswordChanged() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.PasswordChanged
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserView) GetUserName() string {
|
|
if m != nil {
|
|
return m.UserName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserView) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserView) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserView) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserView) GetNickName() string {
|
|
if m != nil {
|
|
return m.NickName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserView) GetPreferredLanguage() string {
|
|
if m != nil {
|
|
return m.PreferredLanguage
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserView) GetGender() Gender {
|
|
if m != nil {
|
|
return m.Gender
|
|
}
|
|
return Gender_GENDER_UNSPECIFIED
|
|
}
|
|
|
|
func (m *UserView) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserView) GetIsEmailVerified() bool {
|
|
if m != nil {
|
|
return m.IsEmailVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *UserView) GetPhone() string {
|
|
if m != nil {
|
|
return m.Phone
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserView) GetIsPhoneVerified() bool {
|
|
if m != nil {
|
|
return m.IsPhoneVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *UserView) GetCountry() string {
|
|
if m != nil {
|
|
return m.Country
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserView) GetLocality() string {
|
|
if m != nil {
|
|
return m.Locality
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserView) GetPostalCode() string {
|
|
if m != nil {
|
|
return m.PostalCode
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserView) GetRegion() string {
|
|
if m != nil {
|
|
return m.Region
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserView) GetStreetAddress() string {
|
|
if m != nil {
|
|
return m.StreetAddress
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserView) GetResourceOwner() string {
|
|
if m != nil {
|
|
return m.ResourceOwner
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserView) GetLoginNames() []string {
|
|
if m != nil {
|
|
return m.LoginNames
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserView) GetPreferredLoginName() string {
|
|
if m != nil {
|
|
return m.PreferredLoginName
|
|
}
|
|
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{14}
|
|
}
|
|
|
|
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{15}
|
|
}
|
|
|
|
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 []*UserView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
|
|
ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,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{16}
|
|
}
|
|
|
|
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() []*UserView {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserSearchResponse) GetProcessedSequence() uint64 {
|
|
if m != nil {
|
|
return m.ProcessedSequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ViewTimestamp
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UserProfile 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"`
|
|
UserName string `protobuf:"bytes,8,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,10,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,11,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{17}
|
|
}
|
|
|
|
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) 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 ""
|
|
}
|
|
|
|
func (m *UserProfile) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserProfile) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserProfile) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UserProfileView 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"`
|
|
UserName string `protobuf:"bytes,8,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,10,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,11,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
LoginNames []string `protobuf:"bytes,12,rep,name=login_names,json=loginNames,proto3" json:"login_names,omitempty"`
|
|
PreferredLoginName string `protobuf:"bytes,27,opt,name=preferred_login_name,json=preferredLoginName,proto3" json:"preferred_login_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserProfileView) Reset() { *m = UserProfileView{} }
|
|
func (m *UserProfileView) String() string { return proto.CompactTextString(m) }
|
|
func (*UserProfileView) ProtoMessage() {}
|
|
func (*UserProfileView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{18}
|
|
}
|
|
|
|
func (m *UserProfileView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UserProfileView.Unmarshal(m, b)
|
|
}
|
|
func (m *UserProfileView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UserProfileView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UserProfileView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UserProfileView.Merge(m, src)
|
|
}
|
|
func (m *UserProfileView) XXX_Size() int {
|
|
return xxx_messageInfo_UserProfileView.Size(m)
|
|
}
|
|
func (m *UserProfileView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UserProfileView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UserProfileView proto.InternalMessageInfo
|
|
|
|
func (m *UserProfileView) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserProfileView) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserProfileView) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserProfileView) GetNickName() string {
|
|
if m != nil {
|
|
return m.NickName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserProfileView) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserProfileView) GetPreferredLanguage() string {
|
|
if m != nil {
|
|
return m.PreferredLanguage
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserProfileView) GetGender() Gender {
|
|
if m != nil {
|
|
return m.Gender
|
|
}
|
|
return Gender_GENDER_UNSPECIFIED
|
|
}
|
|
|
|
func (m *UserProfileView) GetUserName() string {
|
|
if m != nil {
|
|
return m.UserName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserProfileView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserProfileView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserProfileView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserProfileView) GetLoginNames() []string {
|
|
if m != nil {
|
|
return m.LoginNames
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserProfileView) GetPreferredLoginName() string {
|
|
if m != nil {
|
|
return m.PreferredLoginName
|
|
}
|
|
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"`
|
|
PreferredLanguage string `protobuf:"bytes,5,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
|
|
Gender Gender `protobuf:"varint,6,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{19}
|
|
}
|
|
|
|
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) 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"`
|
|
Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{20}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (m *UserEmail) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserEmail) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserEmail) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UserEmailView 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"`
|
|
Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserEmailView) Reset() { *m = UserEmailView{} }
|
|
func (m *UserEmailView) String() string { return proto.CompactTextString(m) }
|
|
func (*UserEmailView) ProtoMessage() {}
|
|
func (*UserEmailView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{21}
|
|
}
|
|
|
|
func (m *UserEmailView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UserEmailView.Unmarshal(m, b)
|
|
}
|
|
func (m *UserEmailView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UserEmailView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UserEmailView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UserEmailView.Merge(m, src)
|
|
}
|
|
func (m *UserEmailView) XXX_Size() int {
|
|
return xxx_messageInfo_UserEmailView.Size(m)
|
|
}
|
|
func (m *UserEmailView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UserEmailView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UserEmailView proto.InternalMessageInfo
|
|
|
|
func (m *UserEmailView) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserEmailView) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserEmailView) GetIsEmailVerified() bool {
|
|
if m != nil {
|
|
return m.IsEmailVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *UserEmailView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserEmailView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserEmailView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
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{22}
|
|
}
|
|
|
|
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"`
|
|
Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{23}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (m *UserPhone) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserPhone) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserPhone) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UserPhoneView 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"`
|
|
Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserPhoneView) Reset() { *m = UserPhoneView{} }
|
|
func (m *UserPhoneView) String() string { return proto.CompactTextString(m) }
|
|
func (*UserPhoneView) ProtoMessage() {}
|
|
func (*UserPhoneView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{24}
|
|
}
|
|
|
|
func (m *UserPhoneView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UserPhoneView.Unmarshal(m, b)
|
|
}
|
|
func (m *UserPhoneView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UserPhoneView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UserPhoneView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UserPhoneView.Merge(m, src)
|
|
}
|
|
func (m *UserPhoneView) XXX_Size() int {
|
|
return xxx_messageInfo_UserPhoneView.Size(m)
|
|
}
|
|
func (m *UserPhoneView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UserPhoneView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UserPhoneView proto.InternalMessageInfo
|
|
|
|
func (m *UserPhoneView) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserPhoneView) GetPhone() string {
|
|
if m != nil {
|
|
return m.Phone
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserPhoneView) GetIsPhoneVerified() bool {
|
|
if m != nil {
|
|
return m.IsPhoneVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *UserPhoneView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserPhoneView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserPhoneView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
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{25}
|
|
}
|
|
|
|
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"`
|
|
Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{26}
|
|
}
|
|
|
|
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 ""
|
|
}
|
|
|
|
func (m *UserAddress) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserAddress) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserAddress) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UserAddressView 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"`
|
|
Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserAddressView) Reset() { *m = UserAddressView{} }
|
|
func (m *UserAddressView) String() string { return proto.CompactTextString(m) }
|
|
func (*UserAddressView) ProtoMessage() {}
|
|
func (*UserAddressView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{27}
|
|
}
|
|
|
|
func (m *UserAddressView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UserAddressView.Unmarshal(m, b)
|
|
}
|
|
func (m *UserAddressView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UserAddressView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UserAddressView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UserAddressView.Merge(m, src)
|
|
}
|
|
func (m *UserAddressView) XXX_Size() int {
|
|
return xxx_messageInfo_UserAddressView.Size(m)
|
|
}
|
|
func (m *UserAddressView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UserAddressView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UserAddressView proto.InternalMessageInfo
|
|
|
|
func (m *UserAddressView) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserAddressView) GetCountry() string {
|
|
if m != nil {
|
|
return m.Country
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserAddressView) GetLocality() string {
|
|
if m != nil {
|
|
return m.Locality
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserAddressView) GetPostalCode() string {
|
|
if m != nil {
|
|
return m.PostalCode
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserAddressView) GetRegion() string {
|
|
if m != nil {
|
|
return m.Region
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserAddressView) GetStreetAddress() string {
|
|
if m != nil {
|
|
return m.StreetAddress
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserAddressView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserAddressView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserAddressView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
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{28}
|
|
}
|
|
|
|
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{29}
|
|
}
|
|
|
|
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{30}
|
|
}
|
|
|
|
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{31}
|
|
}
|
|
|
|
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{32}
|
|
}
|
|
|
|
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{33}
|
|
}
|
|
|
|
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{34}
|
|
}
|
|
|
|
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{35}
|
|
}
|
|
|
|
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"`
|
|
Sequence uint64 `protobuf:"varint,11,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
IsDefault bool `protobuf:"varint,12,opt,name=is_default,json=isDefault,proto3" json:"is_default,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{36}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicy) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *PasswordComplexityPolicy) GetIsDefault() bool {
|
|
if m != nil {
|
|
return m.IsDefault
|
|
}
|
|
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{37}
|
|
}
|
|
|
|
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{38}
|
|
}
|
|
|
|
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{39}
|
|
}
|
|
|
|
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"`
|
|
Sequence uint64 `protobuf:"varint,8,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
IsDefault bool `protobuf:"varint,9,opt,name=is_default,json=isDefault,proto3" json:"is_default,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{40}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (m *PasswordAgePolicy) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *PasswordAgePolicy) GetIsDefault() bool {
|
|
if m != nil {
|
|
return m.IsDefault
|
|
}
|
|
return false
|
|
}
|
|
|
|
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{41}
|
|
}
|
|
|
|
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{42}
|
|
}
|
|
|
|
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{43}
|
|
}
|
|
|
|
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"`
|
|
Sequence uint64 `protobuf:"varint,8,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
IsDefault bool `protobuf:"varint,9,opt,name=is_default,json=isDefault,proto3" json:"is_default,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{44}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (m *PasswordLockoutPolicy) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *PasswordLockoutPolicy) GetIsDefault() bool {
|
|
if m != nil {
|
|
return m.IsDefault
|
|
}
|
|
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{45}
|
|
}
|
|
|
|
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{46}
|
|
}
|
|
|
|
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 OrgIamPolicy struct {
|
|
OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
|
|
Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
|
|
UserLoginMustBeDomain bool `protobuf:"varint,3,opt,name=user_login_must_be_domain,json=userLoginMustBeDomain,proto3" json:"user_login_must_be_domain,omitempty"`
|
|
Default bool `protobuf:"varint,4,opt,name=default,proto3" json:"default,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OrgIamPolicy) Reset() { *m = OrgIamPolicy{} }
|
|
func (m *OrgIamPolicy) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgIamPolicy) ProtoMessage() {}
|
|
func (*OrgIamPolicy) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{47}
|
|
}
|
|
|
|
func (m *OrgIamPolicy) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OrgIamPolicy.Unmarshal(m, b)
|
|
}
|
|
func (m *OrgIamPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OrgIamPolicy.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OrgIamPolicy) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OrgIamPolicy.Merge(m, src)
|
|
}
|
|
func (m *OrgIamPolicy) XXX_Size() int {
|
|
return xxx_messageInfo_OrgIamPolicy.Size(m)
|
|
}
|
|
func (m *OrgIamPolicy) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OrgIamPolicy.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OrgIamPolicy proto.InternalMessageInfo
|
|
|
|
func (m *OrgIamPolicy) GetOrgId() string {
|
|
if m != nil {
|
|
return m.OrgId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgIamPolicy) GetDescription() string {
|
|
if m != nil {
|
|
return m.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgIamPolicy) GetUserLoginMustBeDomain() bool {
|
|
if m != nil {
|
|
return m.UserLoginMustBeDomain
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *OrgIamPolicy) GetDefault() bool {
|
|
if m != nil {
|
|
return m.Default
|
|
}
|
|
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{48}
|
|
}
|
|
|
|
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 OrgCreateRequest 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 *OrgCreateRequest) Reset() { *m = OrgCreateRequest{} }
|
|
func (m *OrgCreateRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgCreateRequest) ProtoMessage() {}
|
|
func (*OrgCreateRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{49}
|
|
}
|
|
|
|
func (m *OrgCreateRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OrgCreateRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *OrgCreateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OrgCreateRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OrgCreateRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OrgCreateRequest.Merge(m, src)
|
|
}
|
|
func (m *OrgCreateRequest) XXX_Size() int {
|
|
return xxx_messageInfo_OrgCreateRequest.Size(m)
|
|
}
|
|
func (m *OrgCreateRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OrgCreateRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OrgCreateRequest proto.InternalMessageInfo
|
|
|
|
func (m *OrgCreateRequest) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
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"`
|
|
Sequence uint64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{50}
|
|
}
|
|
|
|
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) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type OrgView 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"`
|
|
Sequence uint64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OrgView) Reset() { *m = OrgView{} }
|
|
func (m *OrgView) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgView) ProtoMessage() {}
|
|
func (*OrgView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{51}
|
|
}
|
|
|
|
func (m *OrgView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OrgView.Unmarshal(m, b)
|
|
}
|
|
func (m *OrgView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OrgView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OrgView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OrgView.Merge(m, src)
|
|
}
|
|
func (m *OrgView) XXX_Size() int {
|
|
return xxx_messageInfo_OrgView.Size(m)
|
|
}
|
|
func (m *OrgView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OrgView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OrgView proto.InternalMessageInfo
|
|
|
|
func (m *OrgView) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgView) GetState() OrgState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return OrgState_ORGSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *OrgView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OrgView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OrgView) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type Domain 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 *Domain) Reset() { *m = Domain{} }
|
|
func (m *Domain) String() string { return proto.CompactTextString(m) }
|
|
func (*Domain) ProtoMessage() {}
|
|
func (*Domain) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{52}
|
|
}
|
|
|
|
func (m *Domain) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Domain.Unmarshal(m, b)
|
|
}
|
|
func (m *Domain) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Domain.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Domain) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Domain.Merge(m, src)
|
|
}
|
|
func (m *Domain) XXX_Size() int {
|
|
return xxx_messageInfo_Domain.Size(m)
|
|
}
|
|
func (m *Domain) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Domain.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Domain proto.InternalMessageInfo
|
|
|
|
func (m *Domain) GetDomain() string {
|
|
if m != nil {
|
|
return m.Domain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type OrgDomains struct {
|
|
Domains []*OrgDomain `protobuf:"bytes,1,rep,name=domains,proto3" json:"domains,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OrgDomains) Reset() { *m = OrgDomains{} }
|
|
func (m *OrgDomains) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgDomains) ProtoMessage() {}
|
|
func (*OrgDomains) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{53}
|
|
}
|
|
|
|
func (m *OrgDomains) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OrgDomains.Unmarshal(m, b)
|
|
}
|
|
func (m *OrgDomains) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OrgDomains.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OrgDomains) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OrgDomains.Merge(m, src)
|
|
}
|
|
func (m *OrgDomains) XXX_Size() int {
|
|
return xxx_messageInfo_OrgDomains.Size(m)
|
|
}
|
|
func (m *OrgDomains) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OrgDomains.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OrgDomains proto.InternalMessageInfo
|
|
|
|
func (m *OrgDomains) GetDomains() []*OrgDomain {
|
|
if m != nil {
|
|
return m.Domains
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type OrgDomain struct {
|
|
OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,2,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
Domain string `protobuf:"bytes,4,opt,name=domain,proto3" json:"domain,omitempty"`
|
|
Verified bool `protobuf:"varint,5,opt,name=verified,proto3" json:"verified,omitempty"`
|
|
Primary bool `protobuf:"varint,6,opt,name=primary,proto3" json:"primary,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{54}
|
|
}
|
|
|
|
func (m *OrgDomain) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OrgDomain.Unmarshal(m, b)
|
|
}
|
|
func (m *OrgDomain) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OrgDomain.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OrgDomain) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OrgDomain.Merge(m, src)
|
|
}
|
|
func (m *OrgDomain) XXX_Size() int {
|
|
return xxx_messageInfo_OrgDomain.Size(m)
|
|
}
|
|
func (m *OrgDomain) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OrgDomain.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OrgDomain proto.InternalMessageInfo
|
|
|
|
func (m *OrgDomain) GetOrgId() string {
|
|
if m != nil {
|
|
return m.OrgId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgDomain) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OrgDomain) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OrgDomain) GetDomain() string {
|
|
if m != nil {
|
|
return m.Domain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgDomain) GetVerified() bool {
|
|
if m != nil {
|
|
return m.Verified
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *OrgDomain) GetPrimary() bool {
|
|
if m != nil {
|
|
return m.Primary
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *OrgDomain) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type OrgDomainView struct {
|
|
OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,2,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
Domain string `protobuf:"bytes,4,opt,name=domain,proto3" json:"domain,omitempty"`
|
|
Verified bool `protobuf:"varint,5,opt,name=verified,proto3" json:"verified,omitempty"`
|
|
Primary bool `protobuf:"varint,6,opt,name=primary,proto3" json:"primary,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
ValidationType OrgDomainValidationType `protobuf:"varint,8,opt,name=validation_type,json=validationType,proto3,enum=caos.zitadel.management.api.v1.OrgDomainValidationType" json:"validation_type,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OrgDomainView) Reset() { *m = OrgDomainView{} }
|
|
func (m *OrgDomainView) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgDomainView) ProtoMessage() {}
|
|
func (*OrgDomainView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{55}
|
|
}
|
|
|
|
func (m *OrgDomainView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OrgDomainView.Unmarshal(m, b)
|
|
}
|
|
func (m *OrgDomainView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OrgDomainView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OrgDomainView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OrgDomainView.Merge(m, src)
|
|
}
|
|
func (m *OrgDomainView) XXX_Size() int {
|
|
return xxx_messageInfo_OrgDomainView.Size(m)
|
|
}
|
|
func (m *OrgDomainView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OrgDomainView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OrgDomainView proto.InternalMessageInfo
|
|
|
|
func (m *OrgDomainView) GetOrgId() string {
|
|
if m != nil {
|
|
return m.OrgId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgDomainView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OrgDomainView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OrgDomainView) GetDomain() string {
|
|
if m != nil {
|
|
return m.Domain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgDomainView) GetVerified() bool {
|
|
if m != nil {
|
|
return m.Verified
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *OrgDomainView) GetPrimary() bool {
|
|
if m != nil {
|
|
return m.Primary
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *OrgDomainView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *OrgDomainView) GetValidationType() OrgDomainValidationType {
|
|
if m != nil {
|
|
return m.ValidationType
|
|
}
|
|
return OrgDomainValidationType_ORGDOMAINVALIDATIONTYPE_UNSPECIFIED
|
|
}
|
|
|
|
type AddOrgDomainRequest 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 *AddOrgDomainRequest) Reset() { *m = AddOrgDomainRequest{} }
|
|
func (m *AddOrgDomainRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*AddOrgDomainRequest) ProtoMessage() {}
|
|
func (*AddOrgDomainRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{56}
|
|
}
|
|
|
|
func (m *AddOrgDomainRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_AddOrgDomainRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *AddOrgDomainRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_AddOrgDomainRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *AddOrgDomainRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_AddOrgDomainRequest.Merge(m, src)
|
|
}
|
|
func (m *AddOrgDomainRequest) XXX_Size() int {
|
|
return xxx_messageInfo_AddOrgDomainRequest.Size(m)
|
|
}
|
|
func (m *AddOrgDomainRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_AddOrgDomainRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_AddOrgDomainRequest proto.InternalMessageInfo
|
|
|
|
func (m *AddOrgDomainRequest) GetDomain() string {
|
|
if m != nil {
|
|
return m.Domain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type OrgDomainValidationRequest struct {
|
|
Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
|
|
Type OrgDomainValidationType `protobuf:"varint,2,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.OrgDomainValidationType" json:"type,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OrgDomainValidationRequest) Reset() { *m = OrgDomainValidationRequest{} }
|
|
func (m *OrgDomainValidationRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgDomainValidationRequest) ProtoMessage() {}
|
|
func (*OrgDomainValidationRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{57}
|
|
}
|
|
|
|
func (m *OrgDomainValidationRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OrgDomainValidationRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *OrgDomainValidationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OrgDomainValidationRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OrgDomainValidationRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OrgDomainValidationRequest.Merge(m, src)
|
|
}
|
|
func (m *OrgDomainValidationRequest) XXX_Size() int {
|
|
return xxx_messageInfo_OrgDomainValidationRequest.Size(m)
|
|
}
|
|
func (m *OrgDomainValidationRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OrgDomainValidationRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OrgDomainValidationRequest proto.InternalMessageInfo
|
|
|
|
func (m *OrgDomainValidationRequest) GetDomain() string {
|
|
if m != nil {
|
|
return m.Domain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgDomainValidationRequest) GetType() OrgDomainValidationType {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return OrgDomainValidationType_ORGDOMAINVALIDATIONTYPE_UNSPECIFIED
|
|
}
|
|
|
|
type OrgDomainValidationResponse struct {
|
|
Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
|
|
Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OrgDomainValidationResponse) Reset() { *m = OrgDomainValidationResponse{} }
|
|
func (m *OrgDomainValidationResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgDomainValidationResponse) ProtoMessage() {}
|
|
func (*OrgDomainValidationResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{58}
|
|
}
|
|
|
|
func (m *OrgDomainValidationResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OrgDomainValidationResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *OrgDomainValidationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OrgDomainValidationResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OrgDomainValidationResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OrgDomainValidationResponse.Merge(m, src)
|
|
}
|
|
func (m *OrgDomainValidationResponse) XXX_Size() int {
|
|
return xxx_messageInfo_OrgDomainValidationResponse.Size(m)
|
|
}
|
|
func (m *OrgDomainValidationResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OrgDomainValidationResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OrgDomainValidationResponse proto.InternalMessageInfo
|
|
|
|
func (m *OrgDomainValidationResponse) GetToken() string {
|
|
if m != nil {
|
|
return m.Token
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgDomainValidationResponse) GetUrl() string {
|
|
if m != nil {
|
|
return m.Url
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ValidateOrgDomainRequest 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 *ValidateOrgDomainRequest) Reset() { *m = ValidateOrgDomainRequest{} }
|
|
func (m *ValidateOrgDomainRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ValidateOrgDomainRequest) ProtoMessage() {}
|
|
func (*ValidateOrgDomainRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{59}
|
|
}
|
|
|
|
func (m *ValidateOrgDomainRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ValidateOrgDomainRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ValidateOrgDomainRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ValidateOrgDomainRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ValidateOrgDomainRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ValidateOrgDomainRequest.Merge(m, src)
|
|
}
|
|
func (m *ValidateOrgDomainRequest) XXX_Size() int {
|
|
return xxx_messageInfo_ValidateOrgDomainRequest.Size(m)
|
|
}
|
|
func (m *ValidateOrgDomainRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ValidateOrgDomainRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ValidateOrgDomainRequest proto.InternalMessageInfo
|
|
|
|
func (m *ValidateOrgDomainRequest) GetDomain() string {
|
|
if m != nil {
|
|
return m.Domain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type PrimaryOrgDomainRequest 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 *PrimaryOrgDomainRequest) Reset() { *m = PrimaryOrgDomainRequest{} }
|
|
func (m *PrimaryOrgDomainRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*PrimaryOrgDomainRequest) ProtoMessage() {}
|
|
func (*PrimaryOrgDomainRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{60}
|
|
}
|
|
|
|
func (m *PrimaryOrgDomainRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_PrimaryOrgDomainRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *PrimaryOrgDomainRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_PrimaryOrgDomainRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *PrimaryOrgDomainRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_PrimaryOrgDomainRequest.Merge(m, src)
|
|
}
|
|
func (m *PrimaryOrgDomainRequest) XXX_Size() int {
|
|
return xxx_messageInfo_PrimaryOrgDomainRequest.Size(m)
|
|
}
|
|
func (m *PrimaryOrgDomainRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_PrimaryOrgDomainRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_PrimaryOrgDomainRequest proto.InternalMessageInfo
|
|
|
|
func (m *PrimaryOrgDomainRequest) GetDomain() string {
|
|
if m != nil {
|
|
return m.Domain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type RemoveOrgDomainRequest 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 *RemoveOrgDomainRequest) Reset() { *m = RemoveOrgDomainRequest{} }
|
|
func (m *RemoveOrgDomainRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*RemoveOrgDomainRequest) ProtoMessage() {}
|
|
func (*RemoveOrgDomainRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{61}
|
|
}
|
|
|
|
func (m *RemoveOrgDomainRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_RemoveOrgDomainRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *RemoveOrgDomainRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_RemoveOrgDomainRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *RemoveOrgDomainRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_RemoveOrgDomainRequest.Merge(m, src)
|
|
}
|
|
func (m *RemoveOrgDomainRequest) XXX_Size() int {
|
|
return xxx_messageInfo_RemoveOrgDomainRequest.Size(m)
|
|
}
|
|
func (m *RemoveOrgDomainRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_RemoveOrgDomainRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_RemoveOrgDomainRequest proto.InternalMessageInfo
|
|
|
|
func (m *RemoveOrgDomainRequest) GetDomain() string {
|
|
if m != nil {
|
|
return m.Domain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type OrgDomainSearchResponse struct {
|
|
Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
|
|
Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
|
|
TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
|
|
Result []*OrgDomainView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
|
|
ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OrgDomainSearchResponse) Reset() { *m = OrgDomainSearchResponse{} }
|
|
func (m *OrgDomainSearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgDomainSearchResponse) ProtoMessage() {}
|
|
func (*OrgDomainSearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{62}
|
|
}
|
|
|
|
func (m *OrgDomainSearchResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OrgDomainSearchResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *OrgDomainSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OrgDomainSearchResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OrgDomainSearchResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OrgDomainSearchResponse.Merge(m, src)
|
|
}
|
|
func (m *OrgDomainSearchResponse) XXX_Size() int {
|
|
return xxx_messageInfo_OrgDomainSearchResponse.Size(m)
|
|
}
|
|
func (m *OrgDomainSearchResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OrgDomainSearchResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OrgDomainSearchResponse proto.InternalMessageInfo
|
|
|
|
func (m *OrgDomainSearchResponse) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *OrgDomainSearchResponse) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *OrgDomainSearchResponse) GetTotalResult() uint64 {
|
|
if m != nil {
|
|
return m.TotalResult
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *OrgDomainSearchResponse) GetResult() []*OrgDomainView {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OrgDomainSearchResponse) GetProcessedSequence() uint64 {
|
|
if m != nil {
|
|
return m.ProcessedSequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *OrgDomainSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ViewTimestamp
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type OrgDomainSearchRequest 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 []*OrgDomainSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OrgDomainSearchRequest) Reset() { *m = OrgDomainSearchRequest{} }
|
|
func (m *OrgDomainSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgDomainSearchRequest) ProtoMessage() {}
|
|
func (*OrgDomainSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{63}
|
|
}
|
|
|
|
func (m *OrgDomainSearchRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OrgDomainSearchRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *OrgDomainSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OrgDomainSearchRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OrgDomainSearchRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OrgDomainSearchRequest.Merge(m, src)
|
|
}
|
|
func (m *OrgDomainSearchRequest) XXX_Size() int {
|
|
return xxx_messageInfo_OrgDomainSearchRequest.Size(m)
|
|
}
|
|
func (m *OrgDomainSearchRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OrgDomainSearchRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OrgDomainSearchRequest proto.InternalMessageInfo
|
|
|
|
func (m *OrgDomainSearchRequest) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *OrgDomainSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *OrgDomainSearchRequest) GetQueries() []*OrgDomainSearchQuery {
|
|
if m != nil {
|
|
return m.Queries
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type OrgDomainSearchQuery struct {
|
|
Key OrgDomainSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.OrgDomainSearchKey" json:"key,omitempty"`
|
|
Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
|
|
Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OrgDomainSearchQuery) Reset() { *m = OrgDomainSearchQuery{} }
|
|
func (m *OrgDomainSearchQuery) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgDomainSearchQuery) ProtoMessage() {}
|
|
func (*OrgDomainSearchQuery) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{64}
|
|
}
|
|
|
|
func (m *OrgDomainSearchQuery) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OrgDomainSearchQuery.Unmarshal(m, b)
|
|
}
|
|
func (m *OrgDomainSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OrgDomainSearchQuery.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OrgDomainSearchQuery) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OrgDomainSearchQuery.Merge(m, src)
|
|
}
|
|
func (m *OrgDomainSearchQuery) XXX_Size() int {
|
|
return xxx_messageInfo_OrgDomainSearchQuery.Size(m)
|
|
}
|
|
func (m *OrgDomainSearchQuery) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OrgDomainSearchQuery.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OrgDomainSearchQuery proto.InternalMessageInfo
|
|
|
|
func (m *OrgDomainSearchQuery) GetKey() OrgDomainSearchKey {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
return OrgDomainSearchKey_ORGDOMAINSEARCHKEY_UNSPECIFIED
|
|
}
|
|
|
|
func (m *OrgDomainSearchQuery) GetMethod() SearchMethod {
|
|
if m != nil {
|
|
return m.Method
|
|
}
|
|
return SearchMethod_SEARCHMETHOD_EQUALS
|
|
}
|
|
|
|
func (m *OrgDomainSearchQuery) GetValue() string {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
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{65}
|
|
}
|
|
|
|
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"`
|
|
Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{66}
|
|
}
|
|
|
|
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) 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
|
|
}
|
|
|
|
func (m *OrgMember) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type AddOrgMemberRequest struct {
|
|
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{67}
|
|
}
|
|
|
|
func (m *AddOrgMemberRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_AddOrgMemberRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *AddOrgMemberRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_AddOrgMemberRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *AddOrgMemberRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_AddOrgMemberRequest.Merge(m, src)
|
|
}
|
|
func (m *AddOrgMemberRequest) XXX_Size() int {
|
|
return xxx_messageInfo_AddOrgMemberRequest.Size(m)
|
|
}
|
|
func (m *AddOrgMemberRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_AddOrgMemberRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_AddOrgMemberRequest proto.InternalMessageInfo
|
|
|
|
func (m *AddOrgMemberRequest) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AddOrgMemberRequest) GetRoles() []string {
|
|
if m != nil {
|
|
return m.Roles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ChangeOrgMemberRequest struct {
|
|
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{68}
|
|
}
|
|
|
|
func (m *ChangeOrgMemberRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ChangeOrgMemberRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ChangeOrgMemberRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ChangeOrgMemberRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ChangeOrgMemberRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ChangeOrgMemberRequest.Merge(m, src)
|
|
}
|
|
func (m *ChangeOrgMemberRequest) XXX_Size() int {
|
|
return xxx_messageInfo_ChangeOrgMemberRequest.Size(m)
|
|
}
|
|
func (m *ChangeOrgMemberRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ChangeOrgMemberRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ChangeOrgMemberRequest proto.InternalMessageInfo
|
|
|
|
func (m *ChangeOrgMemberRequest) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ChangeOrgMemberRequest) GetRoles() []string {
|
|
if m != nil {
|
|
return m.Roles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type RemoveOrgMemberRequest struct {
|
|
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{69}
|
|
}
|
|
|
|
func (m *RemoveOrgMemberRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_RemoveOrgMemberRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *RemoveOrgMemberRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_RemoveOrgMemberRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *RemoveOrgMemberRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_RemoveOrgMemberRequest.Merge(m, src)
|
|
}
|
|
func (m *RemoveOrgMemberRequest) XXX_Size() int {
|
|
return xxx_messageInfo_RemoveOrgMemberRequest.Size(m)
|
|
}
|
|
func (m *RemoveOrgMemberRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_RemoveOrgMemberRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_RemoveOrgMemberRequest proto.InternalMessageInfo
|
|
|
|
func (m *RemoveOrgMemberRequest) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type OrgMemberSearchResponse struct {
|
|
Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
|
|
Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
|
|
TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
|
|
Result []*OrgMemberView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
|
|
ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,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{70}
|
|
}
|
|
|
|
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() []*OrgMemberView {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OrgMemberSearchResponse) GetProcessedSequence() uint64 {
|
|
if m != nil {
|
|
return m.ProcessedSequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *OrgMemberSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ViewTimestamp
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type OrgMemberView struct {
|
|
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
UserName string `protobuf:"bytes,6,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
|
|
Email string `protobuf:"bytes,7,opt,name=email,proto3" json:"email,omitempty"`
|
|
FirstName string `protobuf:"bytes,8,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
|
|
LastName string `protobuf:"bytes,9,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
|
|
DisplayName string `protobuf:"bytes,10,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OrgMemberView) Reset() { *m = OrgMemberView{} }
|
|
func (m *OrgMemberView) String() string { return proto.CompactTextString(m) }
|
|
func (*OrgMemberView) ProtoMessage() {}
|
|
func (*OrgMemberView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{71}
|
|
}
|
|
|
|
func (m *OrgMemberView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OrgMemberView.Unmarshal(m, b)
|
|
}
|
|
func (m *OrgMemberView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OrgMemberView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OrgMemberView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OrgMemberView.Merge(m, src)
|
|
}
|
|
func (m *OrgMemberView) XXX_Size() int {
|
|
return xxx_messageInfo_OrgMemberView.Size(m)
|
|
}
|
|
func (m *OrgMemberView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OrgMemberView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OrgMemberView proto.InternalMessageInfo
|
|
|
|
func (m *OrgMemberView) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgMemberView) GetRoles() []string {
|
|
if m != nil {
|
|
return m.Roles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OrgMemberView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OrgMemberView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OrgMemberView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *OrgMemberView) GetUserName() string {
|
|
if m != nil {
|
|
return m.UserName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgMemberView) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgMemberView) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgMemberView) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OrgMemberView) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type OrgMemberSearchRequest 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 []*OrgMemberSearchQuery `protobuf:"bytes,3,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{72}
|
|
}
|
|
|
|
func (m *OrgMemberSearchRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OrgMemberSearchRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *OrgMemberSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OrgMemberSearchRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OrgMemberSearchRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OrgMemberSearchRequest.Merge(m, src)
|
|
}
|
|
func (m *OrgMemberSearchRequest) XXX_Size() int {
|
|
return xxx_messageInfo_OrgMemberSearchRequest.Size(m)
|
|
}
|
|
func (m *OrgMemberSearchRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OrgMemberSearchRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OrgMemberSearchRequest proto.InternalMessageInfo
|
|
|
|
func (m *OrgMemberSearchRequest) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (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{73}
|
|
}
|
|
|
|
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{74}
|
|
}
|
|
|
|
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{75}
|
|
}
|
|
|
|
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 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 []*ProjectView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
|
|
ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,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{76}
|
|
}
|
|
|
|
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() []*ProjectView {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectSearchResponse) GetProcessedSequence() uint64 {
|
|
if m != nil {
|
|
return m.ProcessedSequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ViewTimestamp
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectView 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"`
|
|
State ProjectState `protobuf:"varint,3,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectState" json:"state,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ResourceOwner string `protobuf:"bytes,6,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectView) Reset() { *m = ProjectView{} }
|
|
func (m *ProjectView) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectView) ProtoMessage() {}
|
|
func (*ProjectView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{77}
|
|
}
|
|
|
|
func (m *ProjectView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ProjectView.Unmarshal(m, b)
|
|
}
|
|
func (m *ProjectView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ProjectView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ProjectView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ProjectView.Merge(m, src)
|
|
}
|
|
func (m *ProjectView) XXX_Size() int {
|
|
return xxx_messageInfo_ProjectView.Size(m)
|
|
}
|
|
func (m *ProjectView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ProjectView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ProjectView proto.InternalMessageInfo
|
|
|
|
func (m *ProjectView) GetProjectId() string {
|
|
if m != nil {
|
|
return m.ProjectId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectView) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectView) GetState() ProjectState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return ProjectState_PROJECTSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *ProjectView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectView) GetResourceOwner() string {
|
|
if m != nil {
|
|
return m.ResourceOwner
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
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{78}
|
|
}
|
|
|
|
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{79}
|
|
}
|
|
|
|
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 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{80}
|
|
}
|
|
|
|
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"`
|
|
Sequence uint64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{81}
|
|
}
|
|
|
|
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) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
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{82}
|
|
}
|
|
|
|
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"`
|
|
Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{83}
|
|
}
|
|
|
|
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) 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
|
|
}
|
|
|
|
func (m *ProjectMember) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
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{84}
|
|
}
|
|
|
|
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{85}
|
|
}
|
|
|
|
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{86}
|
|
}
|
|
|
|
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"`
|
|
Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
|
|
DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
|
|
Group string `protobuf:"bytes,4,opt,name=group,proto3" json:"group,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{87}
|
|
}
|
|
|
|
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) GetKey() string {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
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 ProjectRoleAddBulk struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
ProjectRoles []*ProjectRoleAdd `protobuf:"bytes,2,rep,name=project_roles,json=projectRoles,proto3" json:"project_roles,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectRoleAddBulk) Reset() { *m = ProjectRoleAddBulk{} }
|
|
func (m *ProjectRoleAddBulk) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectRoleAddBulk) ProtoMessage() {}
|
|
func (*ProjectRoleAddBulk) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{88}
|
|
}
|
|
|
|
func (m *ProjectRoleAddBulk) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ProjectRoleAddBulk.Unmarshal(m, b)
|
|
}
|
|
func (m *ProjectRoleAddBulk) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ProjectRoleAddBulk.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ProjectRoleAddBulk) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ProjectRoleAddBulk.Merge(m, src)
|
|
}
|
|
func (m *ProjectRoleAddBulk) XXX_Size() int {
|
|
return xxx_messageInfo_ProjectRoleAddBulk.Size(m)
|
|
}
|
|
func (m *ProjectRoleAddBulk) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ProjectRoleAddBulk.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ProjectRoleAddBulk proto.InternalMessageInfo
|
|
|
|
func (m *ProjectRoleAddBulk) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectRoleAddBulk) GetProjectRoles() []*ProjectRoleAdd {
|
|
if m != nil {
|
|
return m.ProjectRoles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectRoleChange struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
|
|
DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
|
|
Group string `protobuf:"bytes,4,opt,name=group,proto3" json:"group,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectRoleChange) Reset() { *m = ProjectRoleChange{} }
|
|
func (m *ProjectRoleChange) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectRoleChange) ProtoMessage() {}
|
|
func (*ProjectRoleChange) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{89}
|
|
}
|
|
|
|
func (m *ProjectRoleChange) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ProjectRoleChange.Unmarshal(m, b)
|
|
}
|
|
func (m *ProjectRoleChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ProjectRoleChange.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ProjectRoleChange) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ProjectRoleChange.Merge(m, src)
|
|
}
|
|
func (m *ProjectRoleChange) XXX_Size() int {
|
|
return xxx_messageInfo_ProjectRoleChange.Size(m)
|
|
}
|
|
func (m *ProjectRoleChange) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ProjectRoleChange.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ProjectRoleChange proto.InternalMessageInfo
|
|
|
|
func (m *ProjectRoleChange) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectRoleChange) GetKey() string {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectRoleChange) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectRoleChange) 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"`
|
|
Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
|
|
DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
Group string `protobuf:"bytes,6,opt,name=group,proto3" json:"group,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{90}
|
|
}
|
|
|
|
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) GetKey() string {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
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) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectRole) GetGroup() string {
|
|
if m != nil {
|
|
return m.Group
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectRole) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type ProjectRoleView struct {
|
|
ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
|
|
Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
|
|
DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
Group string `protobuf:"bytes,6,opt,name=group,proto3" json:"group,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectRoleView) Reset() { *m = ProjectRoleView{} }
|
|
func (m *ProjectRoleView) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectRoleView) ProtoMessage() {}
|
|
func (*ProjectRoleView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{91}
|
|
}
|
|
|
|
func (m *ProjectRoleView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ProjectRoleView.Unmarshal(m, b)
|
|
}
|
|
func (m *ProjectRoleView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ProjectRoleView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ProjectRoleView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ProjectRoleView.Merge(m, src)
|
|
}
|
|
func (m *ProjectRoleView) XXX_Size() int {
|
|
return xxx_messageInfo_ProjectRoleView.Size(m)
|
|
}
|
|
func (m *ProjectRoleView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ProjectRoleView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ProjectRoleView proto.InternalMessageInfo
|
|
|
|
func (m *ProjectRoleView) GetProjectId() string {
|
|
if m != nil {
|
|
return m.ProjectId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectRoleView) GetKey() string {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectRoleView) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectRoleView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectRoleView) GetGroup() string {
|
|
if m != nil {
|
|
return m.Group
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectRoleView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type ProjectRoleRemove struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{92}
|
|
}
|
|
|
|
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) GetKey() string {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
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 []*ProjectRoleView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
|
|
ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,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{93}
|
|
}
|
|
|
|
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() []*ProjectRoleView {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectRoleSearchResponse) GetProcessedSequence() uint64 {
|
|
if m != nil {
|
|
return m.ProcessedSequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectRoleSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ViewTimestamp
|
|
}
|
|
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{94}
|
|
}
|
|
|
|
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{95}
|
|
}
|
|
|
|
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 ProjectMemberView 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"`
|
|
Sequence uint64 `protobuf:"varint,10,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
DisplayName string `protobuf:"bytes,11,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectMemberView) Reset() { *m = ProjectMemberView{} }
|
|
func (m *ProjectMemberView) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectMemberView) ProtoMessage() {}
|
|
func (*ProjectMemberView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{96}
|
|
}
|
|
|
|
func (m *ProjectMemberView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ProjectMemberView.Unmarshal(m, b)
|
|
}
|
|
func (m *ProjectMemberView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ProjectMemberView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ProjectMemberView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ProjectMemberView.Merge(m, src)
|
|
}
|
|
func (m *ProjectMemberView) XXX_Size() int {
|
|
return xxx_messageInfo_ProjectMemberView.Size(m)
|
|
}
|
|
func (m *ProjectMemberView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ProjectMemberView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ProjectMemberView proto.InternalMessageInfo
|
|
|
|
func (m *ProjectMemberView) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectMemberView) GetUserName() string {
|
|
if m != nil {
|
|
return m.UserName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectMemberView) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectMemberView) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectMemberView) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectMemberView) GetRoles() []string {
|
|
if m != nil {
|
|
return m.Roles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectMemberView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectMemberView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectMemberView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectMemberView) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
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 []*ProjectMemberView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
|
|
ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,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{97}
|
|
}
|
|
|
|
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() []*ProjectMemberView {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectMemberSearchResponse) GetProcessedSequence() uint64 {
|
|
if m != nil {
|
|
return m.ProcessedSequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectMemberSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ViewTimestamp
|
|
}
|
|
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{98}
|
|
}
|
|
|
|
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{99}
|
|
}
|
|
|
|
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"`
|
|
Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{100}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (m *Application) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// XXX_OneofWrappers is for the internal use of the proto package.
|
|
func (*Application) XXX_OneofWrappers() []interface{} {
|
|
return []interface{}{
|
|
(*Application_OidcConfig)(nil),
|
|
}
|
|
}
|
|
|
|
type ApplicationUpdate struct {
|
|
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{101}
|
|
}
|
|
|
|
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"`
|
|
Version OIDCVersion `protobuf:"varint,9,opt,name=version,proto3,enum=caos.zitadel.management.api.v1.OIDCVersion" json:"version,omitempty"`
|
|
NoneCompliant bool `protobuf:"varint,10,opt,name=none_compliant,json=noneCompliant,proto3" json:"none_compliant,omitempty"`
|
|
ComplianceProblems []*message.LocalizedMessage `protobuf:"bytes,11,rep,name=compliance_problems,json=complianceProblems,proto3" json:"compliance_problems,omitempty"`
|
|
DevMode bool `protobuf:"varint,12,opt,name=dev_mode,json=devMode,proto3" json:"dev_mode,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{102}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (m *OIDCConfig) GetVersion() OIDCVersion {
|
|
if m != nil {
|
|
return m.Version
|
|
}
|
|
return OIDCVersion_OIDCV1_0
|
|
}
|
|
|
|
func (m *OIDCConfig) GetNoneCompliant() bool {
|
|
if m != nil {
|
|
return m.NoneCompliant
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *OIDCConfig) GetComplianceProblems() []*message.LocalizedMessage {
|
|
if m != nil {
|
|
return m.ComplianceProblems
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OIDCConfig) GetDevMode() bool {
|
|
if m != nil {
|
|
return m.DevMode
|
|
}
|
|
return false
|
|
}
|
|
|
|
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"`
|
|
Version OIDCVersion `protobuf:"varint,9,opt,name=version,proto3,enum=caos.zitadel.management.api.v1.OIDCVersion" json:"version,omitempty"`
|
|
DevMode bool `protobuf:"varint,10,opt,name=dev_mode,json=devMode,proto3" json:"dev_mode,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{103}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (m *OIDCApplicationCreate) GetVersion() OIDCVersion {
|
|
if m != nil {
|
|
return m.Version
|
|
}
|
|
return OIDCVersion_OIDCV1_0
|
|
}
|
|
|
|
func (m *OIDCApplicationCreate) GetDevMode() bool {
|
|
if m != nil {
|
|
return m.DevMode
|
|
}
|
|
return false
|
|
}
|
|
|
|
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"`
|
|
DevMode bool `protobuf:"varint,9,opt,name=dev_mode,json=devMode,proto3" json:"dev_mode,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{104}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (m *OIDCConfigUpdate) GetDevMode() bool {
|
|
if m != nil {
|
|
return m.DevMode
|
|
}
|
|
return false
|
|
}
|
|
|
|
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{105}
|
|
}
|
|
|
|
func (m *ClientSecret) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ClientSecret.Unmarshal(m, b)
|
|
}
|
|
func (m *ClientSecret) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ClientSecret.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ClientSecret) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ClientSecret.Merge(m, src)
|
|
}
|
|
func (m *ClientSecret) XXX_Size() int {
|
|
return xxx_messageInfo_ClientSecret.Size(m)
|
|
}
|
|
func (m *ClientSecret) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ClientSecret.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ClientSecret proto.InternalMessageInfo
|
|
|
|
func (m *ClientSecret) GetClientSecret() string {
|
|
if m != nil {
|
|
return m.ClientSecret
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ApplicationView struct {
|
|
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:
|
|
// *ApplicationView_OidcConfig
|
|
AppConfig isApplicationView_AppConfig `protobuf_oneof:"app_config"`
|
|
Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ApplicationView) Reset() { *m = ApplicationView{} }
|
|
func (m *ApplicationView) String() string { return proto.CompactTextString(m) }
|
|
func (*ApplicationView) ProtoMessage() {}
|
|
func (*ApplicationView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{106}
|
|
}
|
|
|
|
func (m *ApplicationView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ApplicationView.Unmarshal(m, b)
|
|
}
|
|
func (m *ApplicationView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ApplicationView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ApplicationView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ApplicationView.Merge(m, src)
|
|
}
|
|
func (m *ApplicationView) XXX_Size() int {
|
|
return xxx_messageInfo_ApplicationView.Size(m)
|
|
}
|
|
func (m *ApplicationView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ApplicationView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ApplicationView proto.InternalMessageInfo
|
|
|
|
func (m *ApplicationView) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ApplicationView) GetState() AppState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return AppState_APPSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *ApplicationView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ApplicationView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ApplicationView) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type isApplicationView_AppConfig interface {
|
|
isApplicationView_AppConfig()
|
|
}
|
|
|
|
type ApplicationView_OidcConfig struct {
|
|
OidcConfig *OIDCConfig `protobuf:"bytes,8,opt,name=oidc_config,json=oidcConfig,proto3,oneof"`
|
|
}
|
|
|
|
func (*ApplicationView_OidcConfig) isApplicationView_AppConfig() {}
|
|
|
|
func (m *ApplicationView) GetAppConfig() isApplicationView_AppConfig {
|
|
if m != nil {
|
|
return m.AppConfig
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ApplicationView) GetOidcConfig() *OIDCConfig {
|
|
if x, ok := m.GetAppConfig().(*ApplicationView_OidcConfig); ok {
|
|
return x.OidcConfig
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ApplicationView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// XXX_OneofWrappers is for the internal use of the proto package.
|
|
func (*ApplicationView) XXX_OneofWrappers() []interface{} {
|
|
return []interface{}{
|
|
(*ApplicationView_OidcConfig)(nil),
|
|
}
|
|
}
|
|
|
|
type ApplicationSearchResponse struct {
|
|
Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
|
|
Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
|
|
TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
|
|
Result []*ApplicationView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
|
|
ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,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{107}
|
|
}
|
|
|
|
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() []*ApplicationView {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ApplicationSearchResponse) GetProcessedSequence() uint64 {
|
|
if m != nil {
|
|
return m.ProcessedSequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ApplicationSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ViewTimestamp
|
|
}
|
|
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{108}
|
|
}
|
|
|
|
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{109}
|
|
}
|
|
|
|
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"`
|
|
RoleKeys []string `protobuf:"bytes,4,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
|
|
State ProjectGrantState `protobuf:"varint,5,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantState" json:"state,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{110}
|
|
}
|
|
|
|
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) GetRoleKeys() []string {
|
|
if m != nil {
|
|
return m.RoleKeys
|
|
}
|
|
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) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
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"`
|
|
RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{111}
|
|
}
|
|
|
|
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) GetRoleKeys() []string {
|
|
if m != nil {
|
|
return m.RoleKeys
|
|
}
|
|
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"`
|
|
RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{112}
|
|
}
|
|
|
|
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) GetRoleKeys() []string {
|
|
if m != nil {
|
|
return m.RoleKeys
|
|
}
|
|
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{113}
|
|
}
|
|
|
|
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 ProjectGrantView 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"`
|
|
RoleKeys []string `protobuf:"bytes,5,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
|
|
State ProjectGrantState `protobuf:"varint,6,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantState" 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"`
|
|
ProjectName string `protobuf:"bytes,9,opt,name=project_name,json=projectName,proto3" json:"project_name,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,10,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
ResourceOwner string `protobuf:"bytes,11,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
|
|
ResourceOwnerName string `protobuf:"bytes,12,opt,name=resource_owner_name,json=resourceOwnerName,proto3" json:"resource_owner_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectGrantView) Reset() { *m = ProjectGrantView{} }
|
|
func (m *ProjectGrantView) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantView) ProtoMessage() {}
|
|
func (*ProjectGrantView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{114}
|
|
}
|
|
|
|
func (m *ProjectGrantView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ProjectGrantView.Unmarshal(m, b)
|
|
}
|
|
func (m *ProjectGrantView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ProjectGrantView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ProjectGrantView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ProjectGrantView.Merge(m, src)
|
|
}
|
|
func (m *ProjectGrantView) XXX_Size() int {
|
|
return xxx_messageInfo_ProjectGrantView.Size(m)
|
|
}
|
|
func (m *ProjectGrantView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ProjectGrantView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ProjectGrantView proto.InternalMessageInfo
|
|
|
|
func (m *ProjectGrantView) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantView) GetProjectId() string {
|
|
if m != nil {
|
|
return m.ProjectId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantView) GetGrantedOrgId() string {
|
|
if m != nil {
|
|
return m.GrantedOrgId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantView) GetGrantedOrgName() string {
|
|
if m != nil {
|
|
return m.GrantedOrgName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantView) GetRoleKeys() []string {
|
|
if m != nil {
|
|
return m.RoleKeys
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectGrantView) GetState() ProjectGrantState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return ProjectGrantState_PROJECTGRANTSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *ProjectGrantView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectGrantView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectGrantView) GetProjectName() string {
|
|
if m != nil {
|
|
return m.ProjectName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectGrantView) GetResourceOwner() string {
|
|
if m != nil {
|
|
return m.ResourceOwner
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantView) GetResourceOwnerName() string {
|
|
if m != nil {
|
|
return m.ResourceOwnerName
|
|
}
|
|
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 []*ProjectGrantView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
|
|
ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,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{115}
|
|
}
|
|
|
|
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() []*ProjectGrantView {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectGrantSearchResponse) GetProcessedSequence() uint64 {
|
|
if m != nil {
|
|
return m.ProcessedSequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectGrantSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ViewTimestamp
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type GrantedProjectSearchRequest 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 *GrantedProjectSearchRequest) Reset() { *m = GrantedProjectSearchRequest{} }
|
|
func (m *GrantedProjectSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GrantedProjectSearchRequest) ProtoMessage() {}
|
|
func (*GrantedProjectSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{116}
|
|
}
|
|
|
|
func (m *GrantedProjectSearchRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GrantedProjectSearchRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GrantedProjectSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GrantedProjectSearchRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GrantedProjectSearchRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GrantedProjectSearchRequest.Merge(m, src)
|
|
}
|
|
func (m *GrantedProjectSearchRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GrantedProjectSearchRequest.Size(m)
|
|
}
|
|
func (m *GrantedProjectSearchRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GrantedProjectSearchRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GrantedProjectSearchRequest proto.InternalMessageInfo
|
|
|
|
func (m *GrantedProjectSearchRequest) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *GrantedProjectSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *GrantedProjectSearchRequest) GetQueries() []*ProjectSearchQuery {
|
|
if m != nil {
|
|
return m.Queries
|
|
}
|
|
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"`
|
|
Queries []*ProjectGrantSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,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{117}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (m *ProjectGrantSearchRequest) GetQueries() []*ProjectGrantSearchQuery {
|
|
if m != nil {
|
|
return m.Queries
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProjectGrantSearchQuery struct {
|
|
Key ProjectGrantSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantSearchKey" 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 *ProjectGrantSearchQuery) Reset() { *m = ProjectGrantSearchQuery{} }
|
|
func (m *ProjectGrantSearchQuery) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantSearchQuery) ProtoMessage() {}
|
|
func (*ProjectGrantSearchQuery) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{118}
|
|
}
|
|
|
|
func (m *ProjectGrantSearchQuery) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ProjectGrantSearchQuery.Unmarshal(m, b)
|
|
}
|
|
func (m *ProjectGrantSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ProjectGrantSearchQuery.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ProjectGrantSearchQuery) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ProjectGrantSearchQuery.Merge(m, src)
|
|
}
|
|
func (m *ProjectGrantSearchQuery) XXX_Size() int {
|
|
return xxx_messageInfo_ProjectGrantSearchQuery.Size(m)
|
|
}
|
|
func (m *ProjectGrantSearchQuery) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ProjectGrantSearchQuery.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ProjectGrantSearchQuery proto.InternalMessageInfo
|
|
|
|
func (m *ProjectGrantSearchQuery) GetKey() ProjectGrantSearchKey {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
return ProjectGrantSearchKey_PROJECTGRANTSEARCHKEY_UNSPECIFIED
|
|
}
|
|
|
|
func (m *ProjectGrantSearchQuery) GetMethod() SearchMethod {
|
|
if m != nil {
|
|
return m.Method
|
|
}
|
|
return SearchMethod_SEARCHMETHOD_EQUALS
|
|
}
|
|
|
|
func (m *ProjectGrantSearchQuery) GetValue() string {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return ""
|
|
}
|
|
|
|
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{119}
|
|
}
|
|
|
|
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"`
|
|
Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{120}
|
|
}
|
|
|
|
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) 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
|
|
}
|
|
|
|
func (m *ProjectGrantMember) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
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{121}
|
|
}
|
|
|
|
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{122}
|
|
}
|
|
|
|
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{123}
|
|
}
|
|
|
|
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 ProjectGrantMemberView 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"`
|
|
Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
DisplayName string `protobuf:"bytes,10,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ProjectGrantMemberView) Reset() { *m = ProjectGrantMemberView{} }
|
|
func (m *ProjectGrantMemberView) String() string { return proto.CompactTextString(m) }
|
|
func (*ProjectGrantMemberView) ProtoMessage() {}
|
|
func (*ProjectGrantMemberView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{124}
|
|
}
|
|
|
|
func (m *ProjectGrantMemberView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ProjectGrantMemberView.Unmarshal(m, b)
|
|
}
|
|
func (m *ProjectGrantMemberView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ProjectGrantMemberView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ProjectGrantMemberView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ProjectGrantMemberView.Merge(m, src)
|
|
}
|
|
func (m *ProjectGrantMemberView) XXX_Size() int {
|
|
return xxx_messageInfo_ProjectGrantMemberView.Size(m)
|
|
}
|
|
func (m *ProjectGrantMemberView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ProjectGrantMemberView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ProjectGrantMemberView proto.InternalMessageInfo
|
|
|
|
func (m *ProjectGrantMemberView) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantMemberView) GetUserName() string {
|
|
if m != nil {
|
|
return m.UserName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantMemberView) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantMemberView) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantMemberView) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ProjectGrantMemberView) GetRoles() []string {
|
|
if m != nil {
|
|
return m.Roles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectGrantMemberView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectGrantMemberView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectGrantMemberView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectGrantMemberView) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
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 []*ProjectGrantMemberView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
|
|
ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,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{125}
|
|
}
|
|
|
|
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() []*ProjectGrantMemberView {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ProjectGrantMemberSearchResponse) GetProcessedSequence() uint64 {
|
|
if m != nil {
|
|
return m.ProcessedSequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ProjectGrantMemberSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ViewTimestamp
|
|
}
|
|
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{126}
|
|
}
|
|
|
|
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{127}
|
|
}
|
|
|
|
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"`
|
|
RoleKeys []string `protobuf:"bytes,5,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
|
|
State UserGrantState `protobuf:"varint,6,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserGrantState" json:"state,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
GrantId string `protobuf:"bytes,10,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 *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{128}
|
|
}
|
|
|
|
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) GetRoleKeys() []string {
|
|
if m != nil {
|
|
return m.RoleKeys
|
|
}
|
|
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) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserGrant) GetGrantId() string {
|
|
if m != nil {
|
|
return m.GrantId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type UserGrantCreateBulk struct {
|
|
UserGrants []*UserGrantCreate `protobuf:"bytes,1,rep,name=user_grants,json=userGrants,proto3" json:"user_grants,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserGrantCreateBulk) Reset() { *m = UserGrantCreateBulk{} }
|
|
func (m *UserGrantCreateBulk) String() string { return proto.CompactTextString(m) }
|
|
func (*UserGrantCreateBulk) ProtoMessage() {}
|
|
func (*UserGrantCreateBulk) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{129}
|
|
}
|
|
|
|
func (m *UserGrantCreateBulk) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UserGrantCreateBulk.Unmarshal(m, b)
|
|
}
|
|
func (m *UserGrantCreateBulk) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UserGrantCreateBulk.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UserGrantCreateBulk) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UserGrantCreateBulk.Merge(m, src)
|
|
}
|
|
func (m *UserGrantCreateBulk) XXX_Size() int {
|
|
return xxx_messageInfo_UserGrantCreateBulk.Size(m)
|
|
}
|
|
func (m *UserGrantCreateBulk) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UserGrantCreateBulk.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UserGrantCreateBulk proto.InternalMessageInfo
|
|
|
|
func (m *UserGrantCreateBulk) GetUserGrants() []*UserGrantCreate {
|
|
if m != nil {
|
|
return m.UserGrants
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UserGrantCreate struct {
|
|
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
|
|
RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
|
|
GrantId string `protobuf:"bytes,4,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 *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{130}
|
|
}
|
|
|
|
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) GetProjectId() string {
|
|
if m != nil {
|
|
return m.ProjectId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantCreate) GetRoleKeys() []string {
|
|
if m != nil {
|
|
return m.RoleKeys
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserGrantCreate) GetGrantId() string {
|
|
if m != nil {
|
|
return m.GrantId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type UserGrantUpdateBulk struct {
|
|
UserGrants []*UserGrantUpdate `protobuf:"bytes,1,rep,name=user_grants,json=userGrants,proto3" json:"user_grants,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserGrantUpdateBulk) Reset() { *m = UserGrantUpdateBulk{} }
|
|
func (m *UserGrantUpdateBulk) String() string { return proto.CompactTextString(m) }
|
|
func (*UserGrantUpdateBulk) ProtoMessage() {}
|
|
func (*UserGrantUpdateBulk) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{131}
|
|
}
|
|
|
|
func (m *UserGrantUpdateBulk) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UserGrantUpdateBulk.Unmarshal(m, b)
|
|
}
|
|
func (m *UserGrantUpdateBulk) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UserGrantUpdateBulk.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UserGrantUpdateBulk) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UserGrantUpdateBulk.Merge(m, src)
|
|
}
|
|
func (m *UserGrantUpdateBulk) XXX_Size() int {
|
|
return xxx_messageInfo_UserGrantUpdateBulk.Size(m)
|
|
}
|
|
func (m *UserGrantUpdateBulk) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UserGrantUpdateBulk.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UserGrantUpdateBulk proto.InternalMessageInfo
|
|
|
|
func (m *UserGrantUpdateBulk) GetUserGrants() []*UserGrantUpdate {
|
|
if m != nil {
|
|
return m.UserGrants
|
|
}
|
|
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"`
|
|
RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (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{132}
|
|
}
|
|
|
|
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) GetRoleKeys() []string {
|
|
if m != nil {
|
|
return m.RoleKeys
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UserGrantRemoveBulk struct {
|
|
Ids []string `protobuf:"bytes,1,rep,name=ids,proto3" json:"ids,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserGrantRemoveBulk) Reset() { *m = UserGrantRemoveBulk{} }
|
|
func (m *UserGrantRemoveBulk) String() string { return proto.CompactTextString(m) }
|
|
func (*UserGrantRemoveBulk) ProtoMessage() {}
|
|
func (*UserGrantRemoveBulk) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{133}
|
|
}
|
|
|
|
func (m *UserGrantRemoveBulk) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UserGrantRemoveBulk.Unmarshal(m, b)
|
|
}
|
|
func (m *UserGrantRemoveBulk) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UserGrantRemoveBulk.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UserGrantRemoveBulk) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UserGrantRemoveBulk.Merge(m, src)
|
|
}
|
|
func (m *UserGrantRemoveBulk) XXX_Size() int {
|
|
return xxx_messageInfo_UserGrantRemoveBulk.Size(m)
|
|
}
|
|
func (m *UserGrantRemoveBulk) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UserGrantRemoveBulk.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UserGrantRemoveBulk proto.InternalMessageInfo
|
|
|
|
func (m *UserGrantRemoveBulk) GetIds() []string {
|
|
if m != nil {
|
|
return m.Ids
|
|
}
|
|
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{134}
|
|
}
|
|
|
|
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 UserGrantView 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"`
|
|
RoleKeys []string `protobuf:"bytes,5,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
|
|
State UserGrantState `protobuf:"varint,6,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserGrantState" json:"state,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
UserName string `protobuf:"bytes,9,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
|
|
FirstName string `protobuf:"bytes,10,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
|
|
LastName string `protobuf:"bytes,11,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
|
|
Email string `protobuf:"bytes,12,opt,name=email,proto3" json:"email,omitempty"`
|
|
OrgName string `protobuf:"bytes,13,opt,name=org_name,json=orgName,proto3" json:"org_name,omitempty"`
|
|
OrgDomain string `protobuf:"bytes,14,opt,name=org_domain,json=orgDomain,proto3" json:"org_domain,omitempty"`
|
|
ProjectName string `protobuf:"bytes,15,opt,name=project_name,json=projectName,proto3" json:"project_name,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,16,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
ResourceOwner string `protobuf:"bytes,17,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
|
|
DisplayName string `protobuf:"bytes,18,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
|
|
GrantId string `protobuf:"bytes,19,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 *UserGrantView) Reset() { *m = UserGrantView{} }
|
|
func (m *UserGrantView) String() string { return proto.CompactTextString(m) }
|
|
func (*UserGrantView) ProtoMessage() {}
|
|
func (*UserGrantView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{135}
|
|
}
|
|
|
|
func (m *UserGrantView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UserGrantView.Unmarshal(m, b)
|
|
}
|
|
func (m *UserGrantView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UserGrantView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UserGrantView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UserGrantView.Merge(m, src)
|
|
}
|
|
func (m *UserGrantView) XXX_Size() int {
|
|
return xxx_messageInfo_UserGrantView.Size(m)
|
|
}
|
|
func (m *UserGrantView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UserGrantView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UserGrantView proto.InternalMessageInfo
|
|
|
|
func (m *UserGrantView) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantView) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantView) GetOrgId() string {
|
|
if m != nil {
|
|
return m.OrgId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantView) GetProjectId() string {
|
|
if m != nil {
|
|
return m.ProjectId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantView) GetRoleKeys() []string {
|
|
if m != nil {
|
|
return m.RoleKeys
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserGrantView) GetState() UserGrantState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return UserGrantState_USERGRANTSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *UserGrantView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserGrantView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserGrantView) GetUserName() string {
|
|
if m != nil {
|
|
return m.UserName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantView) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantView) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantView) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantView) GetOrgName() string {
|
|
if m != nil {
|
|
return m.OrgName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantView) GetOrgDomain() string {
|
|
if m != nil {
|
|
return m.OrgDomain
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantView) GetProjectName() string {
|
|
if m != nil {
|
|
return m.ProjectName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserGrantView) GetResourceOwner() string {
|
|
if m != nil {
|
|
return m.ResourceOwner
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantView) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserGrantView) GetGrantId() string {
|
|
if m != nil {
|
|
return m.GrantId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
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 []*UserGrantView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
|
|
ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,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{136}
|
|
}
|
|
|
|
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() []*UserGrantView {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserGrantSearchResponse) GetProcessedSequence() uint64 {
|
|
if m != nil {
|
|
return m.ProcessedSequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserGrantSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ViewTimestamp
|
|
}
|
|
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{137}
|
|
}
|
|
|
|
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{138}
|
|
}
|
|
|
|
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{139}
|
|
}
|
|
|
|
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{140}
|
|
}
|
|
|
|
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 UserMembershipSearchResponse 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 []*UserMembershipView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
|
|
ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
|
|
ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserMembershipSearchResponse) Reset() { *m = UserMembershipSearchResponse{} }
|
|
func (m *UserMembershipSearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*UserMembershipSearchResponse) ProtoMessage() {}
|
|
func (*UserMembershipSearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{141}
|
|
}
|
|
|
|
func (m *UserMembershipSearchResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UserMembershipSearchResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *UserMembershipSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UserMembershipSearchResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UserMembershipSearchResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UserMembershipSearchResponse.Merge(m, src)
|
|
}
|
|
func (m *UserMembershipSearchResponse) XXX_Size() int {
|
|
return xxx_messageInfo_UserMembershipSearchResponse.Size(m)
|
|
}
|
|
func (m *UserMembershipSearchResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UserMembershipSearchResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UserMembershipSearchResponse proto.InternalMessageInfo
|
|
|
|
func (m *UserMembershipSearchResponse) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserMembershipSearchResponse) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserMembershipSearchResponse) GetTotalResult() uint64 {
|
|
if m != nil {
|
|
return m.TotalResult
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserMembershipSearchResponse) GetResult() []*UserMembershipView {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserMembershipSearchResponse) GetProcessedSequence() uint64 {
|
|
if m != nil {
|
|
return m.ProcessedSequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserMembershipSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ViewTimestamp
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UserMembershipSearchRequest struct {
|
|
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_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 []*UserMembershipSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserMembershipSearchRequest) Reset() { *m = UserMembershipSearchRequest{} }
|
|
func (m *UserMembershipSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*UserMembershipSearchRequest) ProtoMessage() {}
|
|
func (*UserMembershipSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{142}
|
|
}
|
|
|
|
func (m *UserMembershipSearchRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UserMembershipSearchRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *UserMembershipSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UserMembershipSearchRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UserMembershipSearchRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UserMembershipSearchRequest.Merge(m, src)
|
|
}
|
|
func (m *UserMembershipSearchRequest) XXX_Size() int {
|
|
return xxx_messageInfo_UserMembershipSearchRequest.Size(m)
|
|
}
|
|
func (m *UserMembershipSearchRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UserMembershipSearchRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UserMembershipSearchRequest proto.InternalMessageInfo
|
|
|
|
func (m *UserMembershipSearchRequest) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserMembershipSearchRequest) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserMembershipSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserMembershipSearchRequest) GetQueries() []*UserMembershipSearchQuery {
|
|
if m != nil {
|
|
return m.Queries
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UserMembershipSearchQuery struct {
|
|
Key UserMembershipSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.UserMembershipSearchKey" 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 *UserMembershipSearchQuery) Reset() { *m = UserMembershipSearchQuery{} }
|
|
func (m *UserMembershipSearchQuery) String() string { return proto.CompactTextString(m) }
|
|
func (*UserMembershipSearchQuery) ProtoMessage() {}
|
|
func (*UserMembershipSearchQuery) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{143}
|
|
}
|
|
|
|
func (m *UserMembershipSearchQuery) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UserMembershipSearchQuery.Unmarshal(m, b)
|
|
}
|
|
func (m *UserMembershipSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UserMembershipSearchQuery.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UserMembershipSearchQuery) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UserMembershipSearchQuery.Merge(m, src)
|
|
}
|
|
func (m *UserMembershipSearchQuery) XXX_Size() int {
|
|
return xxx_messageInfo_UserMembershipSearchQuery.Size(m)
|
|
}
|
|
func (m *UserMembershipSearchQuery) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UserMembershipSearchQuery.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UserMembershipSearchQuery proto.InternalMessageInfo
|
|
|
|
func (m *UserMembershipSearchQuery) GetKey() UserMembershipSearchKey {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
return UserMembershipSearchKey_USERMEMBERSHIPSEARCHKEY_UNSPECIFIED
|
|
}
|
|
|
|
func (m *UserMembershipSearchQuery) GetMethod() SearchMethod {
|
|
if m != nil {
|
|
return m.Method
|
|
}
|
|
return SearchMethod_SEARCHMETHOD_EQUALS
|
|
}
|
|
|
|
func (m *UserMembershipSearchQuery) GetValue() string {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type UserMembershipView struct {
|
|
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
MemberType MemberType `protobuf:"varint,2,opt,name=member_type,json=memberType,proto3,enum=caos.zitadel.management.api.v1.MemberType" json:"member_type,omitempty"`
|
|
AggregateId string `protobuf:"bytes,3,opt,name=aggregate_id,json=aggregateId,proto3" json:"aggregate_id,omitempty"`
|
|
ObjectId string `protobuf:"bytes,4,opt,name=object_id,json=objectId,proto3" json:"object_id,omitempty"`
|
|
Roles []string `protobuf:"bytes,5,rep,name=roles,proto3" json:"roles,omitempty"`
|
|
DisplayName string `protobuf:"bytes,6,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
ResourceOwner string `protobuf:"bytes,10,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserMembershipView) Reset() { *m = UserMembershipView{} }
|
|
func (m *UserMembershipView) String() string { return proto.CompactTextString(m) }
|
|
func (*UserMembershipView) ProtoMessage() {}
|
|
func (*UserMembershipView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{144}
|
|
}
|
|
|
|
func (m *UserMembershipView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UserMembershipView.Unmarshal(m, b)
|
|
}
|
|
func (m *UserMembershipView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UserMembershipView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UserMembershipView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UserMembershipView.Merge(m, src)
|
|
}
|
|
func (m *UserMembershipView) XXX_Size() int {
|
|
return xxx_messageInfo_UserMembershipView.Size(m)
|
|
}
|
|
func (m *UserMembershipView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UserMembershipView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UserMembershipView proto.InternalMessageInfo
|
|
|
|
func (m *UserMembershipView) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserMembershipView) GetMemberType() MemberType {
|
|
if m != nil {
|
|
return m.MemberType
|
|
}
|
|
return MemberType_MEMBERTYPE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *UserMembershipView) GetAggregateId() string {
|
|
if m != nil {
|
|
return m.AggregateId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserMembershipView) GetObjectId() string {
|
|
if m != nil {
|
|
return m.ObjectId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserMembershipView) GetRoles() []string {
|
|
if m != nil {
|
|
return m.Roles
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserMembershipView) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserMembershipView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserMembershipView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserMembershipView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserMembershipView) GetResourceOwner() string {
|
|
if m != nil {
|
|
return m.ResourceOwner
|
|
}
|
|
return ""
|
|
}
|
|
|
|
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.OrgDomainValidationType", OrgDomainValidationType_name, OrgDomainValidationType_value)
|
|
proto.RegisterEnum("caos.zitadel.management.api.v1.OrgDomainSearchKey", OrgDomainSearchKey_name, OrgDomainSearchKey_value)
|
|
proto.RegisterEnum("caos.zitadel.management.api.v1.OrgMemberSearchKey", OrgMemberSearchKey_name, OrgMemberSearchKey_value)
|
|
proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectSearchKey", ProjectSearchKey_name, ProjectSearchKey_value)
|
|
proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectState", ProjectState_name, ProjectState_value)
|
|
proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectType", ProjectType_name, ProjectType_value)
|
|
proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectRoleSearchKey", ProjectRoleSearchKey_name, ProjectRoleSearchKey_value)
|
|
proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectMemberSearchKey", ProjectMemberSearchKey_name, ProjectMemberSearchKey_value)
|
|
proto.RegisterEnum("caos.zitadel.management.api.v1.AppState", AppState_name, AppState_value)
|
|
proto.RegisterEnum("caos.zitadel.management.api.v1.OIDCVersion", OIDCVersion_name, OIDCVersion_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.ProjectGrantSearchKey", ProjectGrantSearchKey_name, ProjectGrantSearchKey_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.UserMembershipSearchKey", UserMembershipSearchKey_name, UserMembershipSearchKey_value)
|
|
proto.RegisterEnum("caos.zitadel.management.api.v1.MemberType", MemberType_name, MemberType_value)
|
|
proto.RegisterType((*ZitadelDocs)(nil), "caos.zitadel.management.api.v1.ZitadelDocs")
|
|
proto.RegisterType((*Iam)(nil), "caos.zitadel.management.api.v1.Iam")
|
|
proto.RegisterType((*ChangeRequest)(nil), "caos.zitadel.management.api.v1.ChangeRequest")
|
|
proto.RegisterType((*Changes)(nil), "caos.zitadel.management.api.v1.Changes")
|
|
proto.RegisterType((*Change)(nil), "caos.zitadel.management.api.v1.Change")
|
|
proto.RegisterType((*ApplicationID)(nil), "caos.zitadel.management.api.v1.ApplicationID")
|
|
proto.RegisterType((*ProjectID)(nil), "caos.zitadel.management.api.v1.ProjectID")
|
|
proto.RegisterType((*UserID)(nil), "caos.zitadel.management.api.v1.UserID")
|
|
proto.RegisterType((*Email)(nil), "caos.zitadel.management.api.v1.Email")
|
|
proto.RegisterType((*UniqueUserRequest)(nil), "caos.zitadel.management.api.v1.UniqueUserRequest")
|
|
proto.RegisterType((*UniqueUserResponse)(nil), "caos.zitadel.management.api.v1.UniqueUserResponse")
|
|
proto.RegisterType((*CreateUserRequest)(nil), "caos.zitadel.management.api.v1.CreateUserRequest")
|
|
proto.RegisterType((*User)(nil), "caos.zitadel.management.api.v1.User")
|
|
proto.RegisterType((*UserView)(nil), "caos.zitadel.management.api.v1.UserView")
|
|
proto.RegisterType((*UserSearchRequest)(nil), "caos.zitadel.management.api.v1.UserSearchRequest")
|
|
proto.RegisterType((*UserSearchQuery)(nil), "caos.zitadel.management.api.v1.UserSearchQuery")
|
|
proto.RegisterType((*UserSearchResponse)(nil), "caos.zitadel.management.api.v1.UserSearchResponse")
|
|
proto.RegisterType((*UserProfile)(nil), "caos.zitadel.management.api.v1.UserProfile")
|
|
proto.RegisterType((*UserProfileView)(nil), "caos.zitadel.management.api.v1.UserProfileView")
|
|
proto.RegisterType((*UpdateUserProfileRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserProfileRequest")
|
|
proto.RegisterType((*UserEmail)(nil), "caos.zitadel.management.api.v1.UserEmail")
|
|
proto.RegisterType((*UserEmailView)(nil), "caos.zitadel.management.api.v1.UserEmailView")
|
|
proto.RegisterType((*UpdateUserEmailRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserEmailRequest")
|
|
proto.RegisterType((*UserPhone)(nil), "caos.zitadel.management.api.v1.UserPhone")
|
|
proto.RegisterType((*UserPhoneView)(nil), "caos.zitadel.management.api.v1.UserPhoneView")
|
|
proto.RegisterType((*UpdateUserPhoneRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserPhoneRequest")
|
|
proto.RegisterType((*UserAddress)(nil), "caos.zitadel.management.api.v1.UserAddress")
|
|
proto.RegisterType((*UserAddressView)(nil), "caos.zitadel.management.api.v1.UserAddressView")
|
|
proto.RegisterType((*UpdateUserAddressRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserAddressRequest")
|
|
proto.RegisterType((*MultiFactors)(nil), "caos.zitadel.management.api.v1.MultiFactors")
|
|
proto.RegisterType((*MultiFactor)(nil), "caos.zitadel.management.api.v1.MultiFactor")
|
|
proto.RegisterType((*PasswordID)(nil), "caos.zitadel.management.api.v1.PasswordID")
|
|
proto.RegisterType((*PasswordRequest)(nil), "caos.zitadel.management.api.v1.PasswordRequest")
|
|
proto.RegisterType((*ResetPasswordRequest)(nil), "caos.zitadel.management.api.v1.ResetPasswordRequest")
|
|
proto.RegisterType((*SetPasswordNotificationRequest)(nil), "caos.zitadel.management.api.v1.SetPasswordNotificationRequest")
|
|
proto.RegisterType((*PasswordComplexityPolicyID)(nil), "caos.zitadel.management.api.v1.PasswordComplexityPolicyID")
|
|
proto.RegisterType((*PasswordComplexityPolicy)(nil), "caos.zitadel.management.api.v1.PasswordComplexityPolicy")
|
|
proto.RegisterType((*PasswordComplexityPolicyCreate)(nil), "caos.zitadel.management.api.v1.PasswordComplexityPolicyCreate")
|
|
proto.RegisterType((*PasswordComplexityPolicyUpdate)(nil), "caos.zitadel.management.api.v1.PasswordComplexityPolicyUpdate")
|
|
proto.RegisterType((*PasswordAgePolicyID)(nil), "caos.zitadel.management.api.v1.PasswordAgePolicyID")
|
|
proto.RegisterType((*PasswordAgePolicy)(nil), "caos.zitadel.management.api.v1.PasswordAgePolicy")
|
|
proto.RegisterType((*PasswordAgePolicyCreate)(nil), "caos.zitadel.management.api.v1.PasswordAgePolicyCreate")
|
|
proto.RegisterType((*PasswordAgePolicyUpdate)(nil), "caos.zitadel.management.api.v1.PasswordAgePolicyUpdate")
|
|
proto.RegisterType((*PasswordLockoutPolicyID)(nil), "caos.zitadel.management.api.v1.PasswordLockoutPolicyID")
|
|
proto.RegisterType((*PasswordLockoutPolicy)(nil), "caos.zitadel.management.api.v1.PasswordLockoutPolicy")
|
|
proto.RegisterType((*PasswordLockoutPolicyCreate)(nil), "caos.zitadel.management.api.v1.PasswordLockoutPolicyCreate")
|
|
proto.RegisterType((*PasswordLockoutPolicyUpdate)(nil), "caos.zitadel.management.api.v1.PasswordLockoutPolicyUpdate")
|
|
proto.RegisterType((*OrgIamPolicy)(nil), "caos.zitadel.management.api.v1.OrgIamPolicy")
|
|
proto.RegisterType((*OrgID)(nil), "caos.zitadel.management.api.v1.OrgID")
|
|
proto.RegisterType((*OrgCreateRequest)(nil), "caos.zitadel.management.api.v1.OrgCreateRequest")
|
|
proto.RegisterType((*Org)(nil), "caos.zitadel.management.api.v1.Org")
|
|
proto.RegisterType((*OrgView)(nil), "caos.zitadel.management.api.v1.OrgView")
|
|
proto.RegisterType((*Domain)(nil), "caos.zitadel.management.api.v1.Domain")
|
|
proto.RegisterType((*OrgDomains)(nil), "caos.zitadel.management.api.v1.OrgDomains")
|
|
proto.RegisterType((*OrgDomain)(nil), "caos.zitadel.management.api.v1.OrgDomain")
|
|
proto.RegisterType((*OrgDomainView)(nil), "caos.zitadel.management.api.v1.OrgDomainView")
|
|
proto.RegisterType((*AddOrgDomainRequest)(nil), "caos.zitadel.management.api.v1.AddOrgDomainRequest")
|
|
proto.RegisterType((*OrgDomainValidationRequest)(nil), "caos.zitadel.management.api.v1.OrgDomainValidationRequest")
|
|
proto.RegisterType((*OrgDomainValidationResponse)(nil), "caos.zitadel.management.api.v1.OrgDomainValidationResponse")
|
|
proto.RegisterType((*ValidateOrgDomainRequest)(nil), "caos.zitadel.management.api.v1.ValidateOrgDomainRequest")
|
|
proto.RegisterType((*PrimaryOrgDomainRequest)(nil), "caos.zitadel.management.api.v1.PrimaryOrgDomainRequest")
|
|
proto.RegisterType((*RemoveOrgDomainRequest)(nil), "caos.zitadel.management.api.v1.RemoveOrgDomainRequest")
|
|
proto.RegisterType((*OrgDomainSearchResponse)(nil), "caos.zitadel.management.api.v1.OrgDomainSearchResponse")
|
|
proto.RegisterType((*OrgDomainSearchRequest)(nil), "caos.zitadel.management.api.v1.OrgDomainSearchRequest")
|
|
proto.RegisterType((*OrgDomainSearchQuery)(nil), "caos.zitadel.management.api.v1.OrgDomainSearchQuery")
|
|
proto.RegisterType((*OrgMemberRoles)(nil), "caos.zitadel.management.api.v1.OrgMemberRoles")
|
|
proto.RegisterType((*OrgMember)(nil), "caos.zitadel.management.api.v1.OrgMember")
|
|
proto.RegisterType((*AddOrgMemberRequest)(nil), "caos.zitadel.management.api.v1.AddOrgMemberRequest")
|
|
proto.RegisterType((*ChangeOrgMemberRequest)(nil), "caos.zitadel.management.api.v1.ChangeOrgMemberRequest")
|
|
proto.RegisterType((*RemoveOrgMemberRequest)(nil), "caos.zitadel.management.api.v1.RemoveOrgMemberRequest")
|
|
proto.RegisterType((*OrgMemberSearchResponse)(nil), "caos.zitadel.management.api.v1.OrgMemberSearchResponse")
|
|
proto.RegisterType((*OrgMemberView)(nil), "caos.zitadel.management.api.v1.OrgMemberView")
|
|
proto.RegisterType((*OrgMemberSearchRequest)(nil), "caos.zitadel.management.api.v1.OrgMemberSearchRequest")
|
|
proto.RegisterType((*OrgMemberSearchQuery)(nil), "caos.zitadel.management.api.v1.OrgMemberSearchQuery")
|
|
proto.RegisterType((*ProjectCreateRequest)(nil), "caos.zitadel.management.api.v1.ProjectCreateRequest")
|
|
proto.RegisterType((*ProjectUpdateRequest)(nil), "caos.zitadel.management.api.v1.ProjectUpdateRequest")
|
|
proto.RegisterType((*ProjectSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectSearchResponse")
|
|
proto.RegisterType((*ProjectView)(nil), "caos.zitadel.management.api.v1.ProjectView")
|
|
proto.RegisterType((*ProjectSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectSearchRequest")
|
|
proto.RegisterType((*ProjectSearchQuery)(nil), "caos.zitadel.management.api.v1.ProjectSearchQuery")
|
|
proto.RegisterType((*Projects)(nil), "caos.zitadel.management.api.v1.Projects")
|
|
proto.RegisterType((*Project)(nil), "caos.zitadel.management.api.v1.Project")
|
|
proto.RegisterType((*ProjectMemberRoles)(nil), "caos.zitadel.management.api.v1.ProjectMemberRoles")
|
|
proto.RegisterType((*ProjectMember)(nil), "caos.zitadel.management.api.v1.ProjectMember")
|
|
proto.RegisterType((*ProjectMemberAdd)(nil), "caos.zitadel.management.api.v1.ProjectMemberAdd")
|
|
proto.RegisterType((*ProjectMemberChange)(nil), "caos.zitadel.management.api.v1.ProjectMemberChange")
|
|
proto.RegisterType((*ProjectMemberRemove)(nil), "caos.zitadel.management.api.v1.ProjectMemberRemove")
|
|
proto.RegisterType((*ProjectRoleAdd)(nil), "caos.zitadel.management.api.v1.ProjectRoleAdd")
|
|
proto.RegisterType((*ProjectRoleAddBulk)(nil), "caos.zitadel.management.api.v1.ProjectRoleAddBulk")
|
|
proto.RegisterType((*ProjectRoleChange)(nil), "caos.zitadel.management.api.v1.ProjectRoleChange")
|
|
proto.RegisterType((*ProjectRole)(nil), "caos.zitadel.management.api.v1.ProjectRole")
|
|
proto.RegisterType((*ProjectRoleView)(nil), "caos.zitadel.management.api.v1.ProjectRoleView")
|
|
proto.RegisterType((*ProjectRoleRemove)(nil), "caos.zitadel.management.api.v1.ProjectRoleRemove")
|
|
proto.RegisterType((*ProjectRoleSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectRoleSearchResponse")
|
|
proto.RegisterType((*ProjectRoleSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectRoleSearchRequest")
|
|
proto.RegisterType((*ProjectRoleSearchQuery)(nil), "caos.zitadel.management.api.v1.ProjectRoleSearchQuery")
|
|
proto.RegisterType((*ProjectMemberView)(nil), "caos.zitadel.management.api.v1.ProjectMemberView")
|
|
proto.RegisterType((*ProjectMemberSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectMemberSearchResponse")
|
|
proto.RegisterType((*ProjectMemberSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectMemberSearchRequest")
|
|
proto.RegisterType((*ProjectMemberSearchQuery)(nil), "caos.zitadel.management.api.v1.ProjectMemberSearchQuery")
|
|
proto.RegisterType((*Application)(nil), "caos.zitadel.management.api.v1.Application")
|
|
proto.RegisterType((*ApplicationUpdate)(nil), "caos.zitadel.management.api.v1.ApplicationUpdate")
|
|
proto.RegisterType((*OIDCConfig)(nil), "caos.zitadel.management.api.v1.OIDCConfig")
|
|
proto.RegisterType((*OIDCApplicationCreate)(nil), "caos.zitadel.management.api.v1.OIDCApplicationCreate")
|
|
proto.RegisterType((*OIDCConfigUpdate)(nil), "caos.zitadel.management.api.v1.OIDCConfigUpdate")
|
|
proto.RegisterType((*ClientSecret)(nil), "caos.zitadel.management.api.v1.ClientSecret")
|
|
proto.RegisterType((*ApplicationView)(nil), "caos.zitadel.management.api.v1.ApplicationView")
|
|
proto.RegisterType((*ApplicationSearchResponse)(nil), "caos.zitadel.management.api.v1.ApplicationSearchResponse")
|
|
proto.RegisterType((*ApplicationSearchRequest)(nil), "caos.zitadel.management.api.v1.ApplicationSearchRequest")
|
|
proto.RegisterType((*ApplicationSearchQuery)(nil), "caos.zitadel.management.api.v1.ApplicationSearchQuery")
|
|
proto.RegisterType((*ProjectGrant)(nil), "caos.zitadel.management.api.v1.ProjectGrant")
|
|
proto.RegisterType((*ProjectGrantCreate)(nil), "caos.zitadel.management.api.v1.ProjectGrantCreate")
|
|
proto.RegisterType((*ProjectGrantUpdate)(nil), "caos.zitadel.management.api.v1.ProjectGrantUpdate")
|
|
proto.RegisterType((*ProjectGrantID)(nil), "caos.zitadel.management.api.v1.ProjectGrantID")
|
|
proto.RegisterType((*ProjectGrantView)(nil), "caos.zitadel.management.api.v1.ProjectGrantView")
|
|
proto.RegisterType((*ProjectGrantSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectGrantSearchResponse")
|
|
proto.RegisterType((*GrantedProjectSearchRequest)(nil), "caos.zitadel.management.api.v1.GrantedProjectSearchRequest")
|
|
proto.RegisterType((*ProjectGrantSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectGrantSearchRequest")
|
|
proto.RegisterType((*ProjectGrantSearchQuery)(nil), "caos.zitadel.management.api.v1.ProjectGrantSearchQuery")
|
|
proto.RegisterType((*ProjectGrantMemberRoles)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberRoles")
|
|
proto.RegisterType((*ProjectGrantMember)(nil), "caos.zitadel.management.api.v1.ProjectGrantMember")
|
|
proto.RegisterType((*ProjectGrantMemberAdd)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberAdd")
|
|
proto.RegisterType((*ProjectGrantMemberChange)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberChange")
|
|
proto.RegisterType((*ProjectGrantMemberRemove)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberRemove")
|
|
proto.RegisterType((*ProjectGrantMemberView)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberView")
|
|
proto.RegisterType((*ProjectGrantMemberSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberSearchResponse")
|
|
proto.RegisterType((*ProjectGrantMemberSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberSearchRequest")
|
|
proto.RegisterType((*ProjectGrantMemberSearchQuery)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberSearchQuery")
|
|
proto.RegisterType((*UserGrant)(nil), "caos.zitadel.management.api.v1.UserGrant")
|
|
proto.RegisterType((*UserGrantCreateBulk)(nil), "caos.zitadel.management.api.v1.UserGrantCreateBulk")
|
|
proto.RegisterType((*UserGrantCreate)(nil), "caos.zitadel.management.api.v1.UserGrantCreate")
|
|
proto.RegisterType((*UserGrantUpdateBulk)(nil), "caos.zitadel.management.api.v1.UserGrantUpdateBulk")
|
|
proto.RegisterType((*UserGrantUpdate)(nil), "caos.zitadel.management.api.v1.UserGrantUpdate")
|
|
proto.RegisterType((*UserGrantRemoveBulk)(nil), "caos.zitadel.management.api.v1.UserGrantRemoveBulk")
|
|
proto.RegisterType((*UserGrantID)(nil), "caos.zitadel.management.api.v1.UserGrantID")
|
|
proto.RegisterType((*UserGrantView)(nil), "caos.zitadel.management.api.v1.UserGrantView")
|
|
proto.RegisterType((*UserGrantSearchResponse)(nil), "caos.zitadel.management.api.v1.UserGrantSearchResponse")
|
|
proto.RegisterType((*UserGrantSearchRequest)(nil), "caos.zitadel.management.api.v1.UserGrantSearchRequest")
|
|
proto.RegisterType((*UserGrantSearchQuery)(nil), "caos.zitadel.management.api.v1.UserGrantSearchQuery")
|
|
proto.RegisterType((*ProjectUserGrantSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectUserGrantSearchRequest")
|
|
proto.RegisterType((*ProjectGrantUserGrantSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectGrantUserGrantSearchRequest")
|
|
proto.RegisterType((*UserMembershipSearchResponse)(nil), "caos.zitadel.management.api.v1.UserMembershipSearchResponse")
|
|
proto.RegisterType((*UserMembershipSearchRequest)(nil), "caos.zitadel.management.api.v1.UserMembershipSearchRequest")
|
|
proto.RegisterType((*UserMembershipSearchQuery)(nil), "caos.zitadel.management.api.v1.UserMembershipSearchQuery")
|
|
proto.RegisterType((*UserMembershipView)(nil), "caos.zitadel.management.api.v1.UserMembershipView")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("management.proto", fileDescriptor_edc174f991dc0a25) }
|
|
|
|
var fileDescriptor_edc174f991dc0a25 = []byte{
|
|
// 9697 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6b, 0x90, 0x23, 0xd7,
|
|
0x75, 0x1e, 0x1b, 0xaf, 0xc1, 0x1c, 0xcc, 0x03, 0x73, 0xe7, 0x85, 0xc1, 0xec, 0x63, 0xd8, 0xdc,
|
|
0xe5, 0xee, 0x82, 0xbb, 0x83, 0xdd, 0x25, 0xb9, 0x7c, 0x49, 0xa4, 0x30, 0x03, 0xec, 0x2c, 0xcc,
|
|
0x99, 0xc1, 0x10, 0x98, 0xe5, 0x86, 0x4c, 0x4a, 0x50, 0x2f, 0xd0, 0x8b, 0x81, 0x17, 0x40, 0x83,
|
|
0xdd, 0x8d, 0xa1, 0x46, 0x0c, 0x5d, 0xf1, 0x2a, 0x89, 0x1d, 0x29, 0x4e, 0x4a, 0x62, 0x24, 0xc7,
|
|
0x8a, 0x6c, 0xc5, 0x56, 0xd9, 0x4a, 0xec, 0xa8, 0x54, 0xa9, 0x68, 0x13, 0x5a, 0x4a, 0xec, 0xaa,
|
|
0x94, 0x9d, 0xb8, 0x9c, 0xe4, 0x87, 0x2a, 0x2e, 0xc7, 0x3f, 0xec, 0x72, 0xc5, 0x49, 0xa5, 0x12,
|
|
0x57, 0x2a, 0x4e, 0xc5, 0x79, 0x54, 0x98, 0xaa, 0x24, 0x75, 0x1f, 0xdd, 0x7d, 0xbb, 0xd1, 0x8d,
|
|
0xee, 0x9e, 0xd9, 0x97, 0x48, 0xfe, 0x9a, 0xc1, 0x7d, 0x7e, 0xe7, 0xdc, 0x73, 0xce, 0x3d, 0xf7,
|
|
0xdc, 0xdb, 0xf7, 0x42, 0xba, 0x2b, 0xf5, 0xa4, 0x96, 0xdc, 0x95, 0x7b, 0xfa, 0x6a, 0x5f, 0x55,
|
|
0x74, 0x05, 0x9d, 0x68, 0x48, 0x8a, 0xb6, 0xfa, 0xb9, 0xb6, 0x2e, 0x35, 0xe5, 0xce, 0x2a, 0x97,
|
|
0x2d, 0xf5, 0xdb, 0xab, 0xfb, 0x97, 0xb2, 0xc7, 0x5a, 0x8a, 0xd2, 0xea, 0xc8, 0x79, 0xa9, 0xdf,
|
|
0xce, 0x4b, 0xbd, 0x9e, 0xa2, 0x4b, 0x7a, 0x5b, 0xe9, 0x69, 0xb4, 0x76, 0x76, 0x99, 0xe5, 0x92,
|
|
0x5f, 0x37, 0x07, 0xb7, 0xf2, 0x72, 0xb7, 0xaf, 0x1f, 0xb0, 0xcc, 0x63, 0xce, 0x4c, 0x4d, 0x57,
|
|
0x07, 0x0d, 0xd6, 0x71, 0xf6, 0xa4, 0x33, 0x57, 0x6f, 0x77, 0x65, 0x4d, 0x97, 0xba, 0x7d, 0x56,
|
|
0xe0, 0x3c, 0xf9, 0xd3, 0xb8, 0xd0, 0x92, 0x7b, 0x17, 0xb4, 0xb7, 0xa5, 0x56, 0x4b, 0x56, 0xf3,
|
|
0x4a, 0x9f, 0xf4, 0xee, 0x82, 0x64, 0x71, 0x5f, 0xea, 0xb4, 0x9b, 0x92, 0x2e, 0xe7, 0x8d, 0x7f,
|
|
0x58, 0x46, 0x46, 0x1a, 0xe8, 0x7b, 0xb4, 0x9e, 0x51, 0x9d, 0xe5, 0xcc, 0x92, 0x3f, 0xf9, 0xae,
|
|
0xac, 0x69, 0x52, 0x8b, 0x15, 0x17, 0x77, 0x21, 0xf5, 0x26, 0x65, 0x46, 0x51, 0x69, 0x68, 0x68,
|
|
0x01, 0x12, 0x6d, 0x4d, 0x1b, 0xc8, 0x6a, 0x46, 0x58, 0x11, 0xce, 0x8e, 0x57, 0xd9, 0x2f, 0x74,
|
|
0x01, 0x50, 0xb3, 0xad, 0x35, 0x94, 0x7d, 0x59, 0x3d, 0xa8, 0xcb, 0xbd, 0x66, 0x5f, 0x69, 0xf7,
|
|
0xf4, 0x4c, 0x84, 0x94, 0x99, 0x31, 0x73, 0x4a, 0x2c, 0x43, 0xfc, 0x8a, 0x00, 0xd1, 0xb2, 0xd4,
|
|
0x45, 0x22, 0x4c, 0xb6, 0x3a, 0xca, 0x4d, 0xa9, 0x53, 0x57, 0xd4, 0x56, 0xbd, 0xdd, 0x64, 0xad,
|
|
0xa6, 0x68, 0x62, 0x45, 0x6d, 0x95, 0x9b, 0xe8, 0x14, 0x4c, 0xb5, 0xa5, 0x6e, 0xbd, 0xaf, 0x2a,
|
|
0x3f, 0x2a, 0x37, 0x74, 0x5c, 0x88, 0x36, 0x3b, 0xd1, 0x96, 0xba, 0x3b, 0x34, 0xb1, 0xdc, 0x44,
|
|
0x27, 0x20, 0xa5, 0xc9, 0x7a, 0x7d, 0xd0, 0xaf, 0x37, 0x95, 0x9e, 0x9c, 0x89, 0xae, 0x08, 0x67,
|
|
0x93, 0xd5, 0x71, 0x4d, 0xd6, 0xaf, 0xf7, 0x8b, 0x4a, 0x4f, 0xc6, 0xad, 0xb0, 0x7c, 0x4d, 0x97,
|
|
0x54, 0x5d, 0x6e, 0x66, 0x62, 0xa4, 0xc8, 0x04, 0x29, 0x52, 0xa3, 0x69, 0xe2, 0x4f, 0x08, 0x30,
|
|
0xb9, 0xbe, 0x27, 0xf5, 0x5a, 0x72, 0x55, 0x7e, 0x6b, 0x20, 0x6b, 0x3a, 0x9a, 0x82, 0x88, 0x09,
|
|
0x2b, 0xd2, 0x6e, 0xa2, 0x79, 0x48, 0x68, 0x72, 0xc3, 0x42, 0x11, 0xd7, 0xe4, 0x46, 0xb9, 0x89,
|
|
0xe6, 0x20, 0xde, 0x69, 0x77, 0xdb, 0x3a, 0xe9, 0x38, 0x56, 0xa5, 0x3f, 0xd0, 0x19, 0x98, 0xd6,
|
|
0x70, 0x3b, 0xbd, 0x86, 0x5c, 0x57, 0x6e, 0xdd, 0xd2, 0x64, 0x9d, 0xf4, 0x1a, 0xab, 0x4e, 0x19,
|
|
0xc9, 0x15, 0x92, 0x8a, 0xd2, 0x10, 0x95, 0xb4, 0x46, 0x26, 0x4e, 0x20, 0xe1, 0x7f, 0xc5, 0x03,
|
|
0x18, 0xa3, 0x40, 0x34, 0xf4, 0x29, 0x18, 0x6b, 0xd0, 0x7f, 0x33, 0xc2, 0x4a, 0xf4, 0x6c, 0xea,
|
|
0xf2, 0x93, 0xab, 0xa3, 0x85, 0x74, 0x95, 0x91, 0x60, 0x54, 0xc3, 0xa3, 0xc6, 0xba, 0x8f, 0x90,
|
|
0xee, 0xd9, 0x2f, 0x77, 0xd4, 0xe2, 0x5f, 0x89, 0x40, 0x82, 0xb6, 0x80, 0x5e, 0x82, 0x14, 0x6d,
|
|
0xa3, 0x8e, 0x25, 0x88, 0xb0, 0x21, 0x75, 0x39, 0xbb, 0x4a, 0x45, 0x75, 0xd5, 0x10, 0xd5, 0xd5,
|
|
0x5d, 0x43, 0x54, 0xab, 0x40, 0x8b, 0x17, 0x25, 0x5d, 0x46, 0x45, 0x00, 0x79, 0x5f, 0xee, 0xe9,
|
|
0x75, 0xfd, 0xa0, 0x2f, 0x93, 0x9e, 0x53, 0x97, 0x4f, 0xdb, 0xa1, 0x33, 0xbc, 0x9b, 0x4a, 0x43,
|
|
0xea, 0xb4, 0x3f, 0x27, 0x37, 0xb7, 0xa8, 0xec, 0x55, 0xc7, 0x49, 0xc5, 0xdd, 0x83, 0xbe, 0x8c,
|
|
0xb2, 0x90, 0x34, 0x98, 0xc5, 0x60, 0x9a, 0xbf, 0xd1, 0x32, 0x8c, 0xcb, 0xcd, 0xb6, 0xae, 0xa8,
|
|
0x78, 0x3c, 0x62, 0x64, 0x3c, 0x92, 0x34, 0xa1, 0xdc, 0xc4, 0x44, 0xd3, 0xff, 0x09, 0x5b, 0xc7,
|
|
0xab, 0xec, 0x17, 0x7a, 0x0a, 0x62, 0x4d, 0x49, 0x97, 0x32, 0x09, 0x02, 0x68, 0x71, 0x88, 0x98,
|
|
0x1a, 0xd1, 0xca, 0x2a, 0x29, 0x24, 0xbe, 0x0c, 0x93, 0x85, 0x7e, 0xbf, 0xd3, 0x6e, 0x10, 0xe5,
|
|
0x2a, 0x17, 0x87, 0xe4, 0xe1, 0x38, 0xc0, 0x90, 0x64, 0x8e, 0xf7, 0x0d, 0xb1, 0x14, 0x97, 0x61,
|
|
0xdc, 0x90, 0xd1, 0xa1, 0xba, 0x62, 0x06, 0x12, 0xd7, 0x35, 0x59, 0x75, 0xc9, 0x39, 0x0e, 0xf1,
|
|
0x52, 0x57, 0x6a, 0x77, 0xf0, 0x08, 0xc9, 0xf8, 0x1f, 0x96, 0x47, 0x7f, 0x88, 0x9f, 0x86, 0x99,
|
|
0xeb, 0xbd, 0xf6, 0x5b, 0x03, 0x19, 0x57, 0x37, 0x24, 0xf5, 0x0c, 0x8c, 0x0f, 0x34, 0x59, 0xad,
|
|
0xf7, 0xa4, 0x2e, 0x1d, 0xa9, 0xf1, 0x35, 0xf8, 0x60, 0x6d, 0x4c, 0x8d, 0xa7, 0x85, 0xcc, 0x6f,
|
|
0x09, 0xd5, 0x24, 0xce, 0xdc, 0x96, 0xba, 0x32, 0x5a, 0x31, 0xda, 0x8c, 0x0c, 0x15, 0x62, 0xed,
|
|
0x5f, 0x02, 0xc4, 0xb7, 0xaf, 0xf5, 0x95, 0x9e, 0x46, 0xb8, 0xdd, 0xd6, 0xea, 0x03, 0x92, 0x41,
|
|
0x3a, 0x48, 0x56, 0x93, 0x6d, 0x8d, 0x16, 0x14, 0xdf, 0x8f, 0xc3, 0xcc, 0xba, 0x2a, 0x4b, 0xfa,
|
|
0xe1, 0x30, 0x9d, 0x03, 0xb8, 0xd5, 0x56, 0x35, 0x9d, 0x96, 0x1c, 0x06, 0x36, 0x4e, 0x72, 0x49,
|
|
0xd1, 0x33, 0x30, 0xde, 0x91, 0x8c, 0x92, 0xd1, 0xe1, 0x36, 0x71, 0x26, 0x29, 0x78, 0x1a, 0xc6,
|
|
0x7b, 0xed, 0xc6, 0x6d, 0x5a, 0x90, 0x48, 0xc7, 0x5a, 0xf2, 0x83, 0xb5, 0xb8, 0x1a, 0x25, 0xc5,
|
|
0x70, 0x16, 0x29, 0xf6, 0x1c, 0xa0, 0xbe, 0x2a, 0xdf, 0x92, 0x55, 0x55, 0x6e, 0xd6, 0x3b, 0x52,
|
|
0xaf, 0x35, 0x90, 0x5a, 0x32, 0x95, 0x19, 0xae, 0xfc, 0x8c, 0x59, 0x66, 0x93, 0x15, 0x41, 0x2f,
|
|
0x43, 0xa2, 0x25, 0xf7, 0x9a, 0xb2, 0x4a, 0x44, 0x69, 0xca, 0x5f, 0x2d, 0x37, 0x48, 0xe9, 0x2a,
|
|
0xab, 0x85, 0x44, 0x63, 0x1c, 0xc6, 0x48, 0x5f, 0x13, 0x1f, 0xac, 0x8d, 0xab, 0x63, 0x84, 0x88,
|
|
0xcf, 0x18, 0x23, 0x81, 0x72, 0x30, 0xd3, 0xd6, 0xea, 0xe4, 0xff, 0xfa, 0xbe, 0xac, 0xb6, 0x6f,
|
|
0xb5, 0xe5, 0x66, 0x26, 0x49, 0x78, 0x3f, 0xdd, 0xd6, 0x88, 0x8c, 0xbc, 0xce, 0x92, 0xd1, 0x71,
|
|
0x88, 0xf7, 0xf7, 0xb0, 0xf1, 0x1b, 0x27, 0xed, 0x8d, 0x7d, 0xb0, 0x16, 0x53, 0x23, 0x99, 0xb9,
|
|
0x2a, 0x4d, 0x65, 0x4d, 0x91, 0xff, 0xad, 0xa6, 0xc0, 0x68, 0x6a, 0x07, 0xa7, 0x9b, 0x4d, 0x89,
|
|
0x30, 0xd6, 0x50, 0x06, 0x3d, 0x5d, 0x3d, 0xc8, 0xa4, 0x1c, 0x8c, 0x30, 0x32, 0xd0, 0x29, 0x48,
|
|
0x76, 0x88, 0xde, 0xea, 0x07, 0x99, 0x09, 0x27, 0x77, 0x8d, 0x1c, 0x74, 0x0e, 0x52, 0x7d, 0x45,
|
|
0xd3, 0xa5, 0x4e, 0xbd, 0xa1, 0x34, 0xe5, 0xcc, 0xa4, 0xa3, 0x20, 0xd0, 0xcc, 0x75, 0xa5, 0x89,
|
|
0xe5, 0x32, 0xa1, 0xca, 0xad, 0xb6, 0xd2, 0xcb, 0x4c, 0x39, 0x4a, 0xb1, 0x74, 0x94, 0x87, 0x29,
|
|
0x4d, 0x57, 0x65, 0x59, 0xaf, 0x4b, 0xcd, 0xa6, 0x2a, 0x6b, 0x5a, 0x66, 0xda, 0x51, 0x72, 0x92,
|
|
0xe6, 0x17, 0x68, 0x36, 0x7a, 0x02, 0x92, 0x7d, 0x49, 0xd3, 0xde, 0x56, 0xd4, 0x66, 0x26, 0xcd,
|
|
0x73, 0xe5, 0x5a, 0xd5, 0xcc, 0x10, 0xdf, 0x4b, 0x40, 0x0c, 0x0b, 0xed, 0x90, 0x6e, 0xbf, 0x02,
|
|
0x71, 0x4d, 0xc7, 0x76, 0x2f, 0x42, 0xc6, 0xf7, 0x9c, 0xdf, 0xf8, 0xe2, 0x46, 0x6a, 0xb8, 0x42,
|
|
0x95, 0xd6, 0x43, 0xaf, 0xc0, 0x64, 0x03, 0xeb, 0x44, 0x5b, 0xe9, 0x51, 0x03, 0x1a, 0xf5, 0x35,
|
|
0xa0, 0x13, 0x46, 0x05, 0x62, 0x42, 0x1d, 0xf6, 0x37, 0x16, 0xca, 0xfe, 0x2e, 0xf3, 0xca, 0x47,
|
|
0x6d, 0xa0, 0xa5, 0x70, 0xc7, 0x6d, 0x0a, 0x97, 0xa0, 0x76, 0xcb, 0x52, 0xb2, 0x65, 0x5e, 0xc9,
|
|
0xc6, 0x68, 0x5d, 0x53, 0xb1, 0x1e, 0x87, 0x89, 0x66, 0x5b, 0xeb, 0x77, 0xa4, 0x03, 0x9a, 0x9f,
|
|
0xa4, 0x93, 0x36, 0x4b, 0x33, 0xea, 0x5b, 0xba, 0x37, 0x4e, 0xeb, 0x9b, 0x1a, 0x77, 0xc1, 0x55,
|
|
0xe3, 0x80, 0x3a, 0x0b, 0xa3, 0xf4, 0x2c, 0x75, 0x28, 0x3d, 0x33, 0x6d, 0xe8, 0x04, 0x67, 0x43,
|
|
0xdd, 0x35, 0x6b, 0xd2, 0x5d, 0xb3, 0xe6, 0x0c, 0xcd, 0x9a, 0xa2, 0x2d, 0x8c, 0x50, 0xa8, 0x69,
|
|
0x77, 0x85, 0xca, 0x58, 0x0a, 0x45, 0xe4, 0xd0, 0x52, 0xa3, 0x2c, 0xa7, 0x46, 0x33, 0x8c, 0xd1,
|
|
0x86, 0xf2, 0x9c, 0xb4, 0x2b, 0x0f, 0x22, 0xd9, 0xbc, 0xca, 0x2c, 0x98, 0x2a, 0x33, 0x4b, 0xe7,
|
|
0x38, 0xa6, 0x28, 0xa7, 0x87, 0x14, 0x65, 0x8e, 0xe4, 0x3b, 0xd4, 0x83, 0x9f, 0x5b, 0xe7, 0xed,
|
|
0x73, 0xab, 0xf8, 0x5e, 0x12, 0x92, 0x58, 0xa0, 0x5f, 0x6f, 0xcb, 0x6f, 0x7f, 0xd8, 0x34, 0xe3,
|
|
0x05, 0x00, 0x22, 0xdd, 0x1d, 0xa5, 0xd5, 0xee, 0x11, 0xd5, 0x18, 0x5d, 0x97, 0xe8, 0xc2, 0x26,
|
|
0x2e, 0x8c, 0x4a, 0x90, 0x36, 0x0c, 0x47, 0x9d, 0xb6, 0xd8, 0x64, 0x9e, 0xc4, 0xa8, 0x06, 0xa6,
|
|
0x8d, 0x3a, 0xd4, 0xaf, 0x6a, 0xda, 0x75, 0x73, 0x6c, 0xa4, 0x6e, 0x26, 0x47, 0xea, 0xe6, 0xb8,
|
|
0x8f, 0x6e, 0x82, 0x8f, 0x6e, 0xa6, 0x02, 0xe9, 0xe6, 0x84, 0xbf, 0x6e, 0x4e, 0x1e, 0x4d, 0x37,
|
|
0xa7, 0x7c, 0x75, 0x73, 0xda, 0x47, 0x37, 0xd3, 0xbe, 0xba, 0x39, 0xe3, 0xab, 0x9b, 0xc8, 0x5b,
|
|
0x37, 0x67, 0x47, 0xeb, 0xe6, 0xdc, 0x08, 0xdd, 0x9c, 0xf7, 0xd1, 0xcd, 0x05, 0x3f, 0xdd, 0x5c,
|
|
0x74, 0xf8, 0xbd, 0xa7, 0x61, 0x4a, 0x95, 0x35, 0x65, 0xa0, 0xe2, 0x75, 0xc5, 0xdb, 0x3d, 0x59,
|
|
0xcd, 0x64, 0x68, 0x13, 0x46, 0x6a, 0x05, 0x27, 0x62, 0x88, 0x44, 0xc2, 0xc9, 0x48, 0x6b, 0x99,
|
|
0xa5, 0x95, 0x28, 0x86, 0x48, 0x92, 0xf0, 0x58, 0x6b, 0xe8, 0x22, 0xcc, 0x71, 0x83, 0x6d, 0x16,
|
|
0xcd, 0x64, 0x49, 0x6b, 0x96, 0x20, 0x6c, 0x1a, 0x55, 0xc4, 0xff, 0x2b, 0xc0, 0x0c, 0x51, 0x66,
|
|
0x59, 0x52, 0x1b, 0x7b, 0x86, 0x9b, 0x67, 0xad, 0x2f, 0x04, 0xf7, 0xf5, 0x45, 0x84, 0x5f, 0x15,
|
|
0x7d, 0x1a, 0xa6, 0x34, 0x45, 0xd5, 0xdb, 0xbd, 0x56, 0xbd, 0xa1, 0x74, 0x06, 0xdd, 0x1e, 0x51,
|
|
0xfe, 0xa9, 0xcb, 0x17, 0x02, 0x59, 0x11, 0xd2, 0xf1, 0xab, 0xf2, 0x01, 0x99, 0xf4, 0xef, 0x08,
|
|
0x91, 0x95, 0xc7, 0xaa, 0x93, 0xac, 0xb9, 0x75, 0xd2, 0x9a, 0xb1, 0x98, 0x8a, 0x99, 0x8b, 0x29,
|
|
0x54, 0x86, 0xb1, 0xb7, 0x06, 0xb2, 0xda, 0x96, 0xb5, 0x4c, 0x9c, 0xac, 0xa0, 0xf2, 0xc1, 0xbb,
|
|
0x7a, 0x6d, 0x20, 0xab, 0x07, 0x55, 0xa3, 0xbe, 0xf8, 0xbe, 0x00, 0xd3, 0x8e, 0x4c, 0x54, 0x86,
|
|
0xe8, 0x6d, 0xf9, 0x80, 0xd0, 0x7e, 0x04, 0x2a, 0x70, 0x1b, 0xa8, 0x08, 0x89, 0xae, 0xac, 0xef,
|
|
0x29, 0x4d, 0x66, 0x59, 0xcf, 0xfb, 0xb5, 0x46, 0x5b, 0xda, 0x22, 0x75, 0xaa, 0xac, 0x2e, 0xe6,
|
|
0xfb, 0xbe, 0xd4, 0x19, 0x30, 0xf7, 0xb8, 0x4a, 0x7f, 0x88, 0x3f, 0x13, 0x01, 0xc4, 0x8f, 0x1d,
|
|
0x73, 0xeb, 0xc3, 0x0d, 0xde, 0xe3, 0x30, 0xa1, 0x2b, 0x58, 0xea, 0x55, 0x59, 0x1b, 0x74, 0x8c,
|
|
0x95, 0x63, 0x8a, 0xa4, 0x55, 0x49, 0x12, 0xfa, 0x14, 0x16, 0x7c, 0x92, 0x19, 0x23, 0xcc, 0x3e,
|
|
0x1b, 0x84, 0x23, 0x78, 0x9a, 0xa9, 0xb2, 0x7a, 0xd4, 0x08, 0x29, 0x0d, 0x59, 0xd3, 0xe4, 0x66,
|
|
0xdd, 0xd4, 0x82, 0x38, 0xe9, 0x6a, 0xc6, 0xcc, 0xa9, 0x19, 0xea, 0x50, 0x80, 0xa9, 0xfd, 0xb6,
|
|
0xfc, 0x76, 0xdd, 0x8c, 0x98, 0x04, 0xb0, 0xc8, 0x93, 0xb8, 0x86, 0xf9, 0x53, 0xfc, 0xf5, 0x28,
|
|
0xa4, 0x30, 0x8c, 0x1d, 0x55, 0xb9, 0xd5, 0xee, 0xc8, 0x6e, 0xcb, 0x3c, 0xe7, 0xfa, 0xc4, 0xd3,
|
|
0x24, 0x47, 0x1d, 0x26, 0x79, 0x79, 0x68, 0x1d, 0xc2, 0xd9, 0x5b, 0xa7, 0xbd, 0x8e, 0x0f, 0xdb,
|
|
0x6b, 0x77, 0x93, 0x9c, 0xf0, 0x37, 0xc9, 0x63, 0x87, 0x32, 0xc9, 0xb6, 0xa9, 0x29, 0xe9, 0x98,
|
|
0x9a, 0x78, 0xab, 0x34, 0xee, 0xb0, 0x4a, 0x43, 0x73, 0x3a, 0x1c, 0x6d, 0x4e, 0x4f, 0x85, 0x99,
|
|
0xd3, 0xc5, 0xaf, 0xc6, 0xa8, 0x62, 0xb2, 0x11, 0x74, 0x75, 0x5b, 0x3e, 0x1e, 0xc5, 0x47, 0x7c,
|
|
0x14, 0x9d, 0x53, 0xd6, 0x44, 0xe0, 0x29, 0x6b, 0xd9, 0x73, 0xca, 0xfa, 0xb9, 0x08, 0x64, 0xae,
|
|
0xf7, 0x9b, 0x2c, 0x32, 0xc1, 0xc4, 0xc3, 0x2b, 0xbc, 0xf7, 0x11, 0x8c, 0x43, 0x88, 0xff, 0x4b,
|
|
0x80, 0x71, 0xcc, 0x1a, 0x1a, 0x71, 0x72, 0x72, 0x64, 0xce, 0x16, 0x2d, 0x1a, 0xe9, 0xa1, 0x45,
|
|
0xdd, 0x3d, 0x34, 0x5e, 0xda, 0x62, 0x7e, 0xd2, 0x16, 0x3f, 0x9a, 0xb4, 0x25, 0x42, 0xd9, 0x8c,
|
|
0xff, 0x23, 0xc0, 0xa4, 0x49, 0xb9, 0xab, 0xc5, 0xf8, 0x30, 0x53, 0xbf, 0x0f, 0x0b, 0x96, 0x5e,
|
|
0x10, 0xd0, 0x5e, 0x5a, 0xe1, 0x1b, 0x31, 0x0c, 0xc3, 0x11, 0x53, 0xde, 0x88, 0x17, 0xee, 0xc6,
|
|
0x71, 0xea, 0xcf, 0x47, 0x7c, 0xfd, 0xf9, 0xa8, 0xbb, 0x3f, 0xcf, 0x73, 0x3c, 0xee, 0xc7, 0xf1,
|
|
0xc4, 0xd1, 0x38, 0x3e, 0x76, 0x28, 0x79, 0xa3, 0x78, 0x3d, 0xe4, 0xed, 0x43, 0x4b, 0xfd, 0x80,
|
|
0x97, 0x37, 0x02, 0xda, 0x4b, 0xde, 0x4e, 0xda, 0xb8, 0xb0, 0x36, 0xfe, 0xc1, 0x5a, 0x42, 0x8d,
|
|
0xa5, 0x05, 0x9f, 0x58, 0xa6, 0x3b, 0x43, 0xc4, 0x7f, 0x15, 0xa1, 0xae, 0x9d, 0xb1, 0xb0, 0x72,
|
|
0x76, 0xc6, 0x2d, 0xff, 0x22, 0xde, 0xcb, 0xbf, 0xe8, 0xe8, 0xe5, 0x5f, 0x6c, 0xc4, 0xf2, 0x2f,
|
|
0xee, 0xb3, 0xfc, 0x4b, 0xf8, 0x2d, 0xff, 0xc6, 0xfc, 0x86, 0x31, 0x79, 0xb4, 0x61, 0x1c, 0x0f,
|
|
0x35, 0x8c, 0x3f, 0x88, 0x50, 0x47, 0x8b, 0x21, 0x75, 0x15, 0xe3, 0x8f, 0x79, 0x1a, 0x8e, 0xa7,
|
|
0xff, 0x4d, 0xe0, 0x7d, 0x14, 0x86, 0xd7, 0x4b, 0x3b, 0x44, 0x07, 0x73, 0xfd, 0x82, 0xf3, 0xd1,
|
|
0xa0, 0xc1, 0xf9, 0x58, 0xa0, 0xe0, 0x7c, 0x3c, 0x70, 0x70, 0x3e, 0x31, 0x32, 0x38, 0x2f, 0x56,
|
|
0x60, 0x62, 0x6b, 0xd0, 0xd1, 0xdb, 0x57, 0xa5, 0x86, 0xae, 0xa8, 0x1a, 0x7a, 0x05, 0x62, 0xdd,
|
|
0x5b, 0x92, 0xb1, 0xc9, 0xf9, 0x94, 0x9f, 0x17, 0xc3, 0xd5, 0xad, 0x92, 0x8a, 0xe2, 0x17, 0x04,
|
|
0x48, 0x71, 0xa9, 0xe8, 0x25, 0x88, 0x91, 0xad, 0x47, 0xba, 0x30, 0x3f, 0xe3, 0xdb, 0xe0, 0x2d,
|
|
0x69, 0xf7, 0xa0, 0x2f, 0x57, 0x49, 0x25, 0xf4, 0xb2, 0x3d, 0xc4, 0xe9, 0xbb, 0x88, 0xdd, 0xba,
|
|
0x5a, 0xe0, 0x23, 0x9c, 0xe2, 0x31, 0x80, 0x1d, 0x16, 0xf4, 0x73, 0xd9, 0xe0, 0xbb, 0x06, 0xd3,
|
|
0x46, 0xae, 0xd7, 0x30, 0x9f, 0xe6, 0xf6, 0x2e, 0x1c, 0x76, 0x90, 0xdf, 0xbd, 0x78, 0x12, 0xe6,
|
|
0xaa, 0xb2, 0x26, 0xeb, 0x3e, 0xcd, 0x89, 0xfb, 0x70, 0xa2, 0x66, 0x95, 0xda, 0x56, 0xf4, 0xf6,
|
|
0x2d, 0xb6, 0xab, 0xe9, 0x05, 0xa0, 0xc8, 0xd8, 0x47, 0x19, 0x70, 0xd1, 0x8f, 0x01, 0x7c, 0x93,
|
|
0x16, 0x1f, 0xc5, 0xf3, 0x90, 0x35, 0x3a, 0x5d, 0x57, 0xba, 0xfd, 0x8e, 0xfc, 0xd9, 0xb6, 0x7e,
|
|
0xb0, 0xa3, 0x74, 0xda, 0x8d, 0x03, 0x17, 0xbe, 0xfc, 0x49, 0x14, 0x32, 0x5e, 0xc5, 0x5d, 0xdc,
|
|
0x92, 0x54, 0x53, 0xd6, 0x1a, 0x6a, 0x9b, 0x1c, 0x63, 0x60, 0x96, 0x86, 0x4f, 0x42, 0x05, 0x63,
|
|
0x10, 0x69, 0x84, 0xc9, 0x57, 0xa6, 0x68, 0x47, 0xa3, 0x23, 0xd5, 0xb1, 0xa3, 0x19, 0x86, 0x78,
|
|
0xa8, 0xf5, 0xd0, 0x71, 0x80, 0x6e, 0xbb, 0x57, 0xef, 0xc8, 0xbd, 0x96, 0xbe, 0x47, 0x14, 0x2a,
|
|
0x56, 0x1d, 0xef, 0xb6, 0x7b, 0x9b, 0x24, 0x01, 0x3d, 0x01, 0x93, 0x7b, 0x92, 0x56, 0xef, 0x28,
|
|
0x6f, 0xcb, 0x6a, 0x43, 0xd2, 0xa8, 0x59, 0x4b, 0x56, 0x27, 0xf6, 0x24, 0x6d, 0xd3, 0x48, 0x33,
|
|
0x0a, 0x0d, 0xfa, 0x7d, 0x56, 0x28, 0x69, 0x16, 0xba, 0x6e, 0xa4, 0xe1, 0x8e, 0x70, 0xa1, 0xde,
|
|
0xa0, 0x7b, 0x53, 0x56, 0x89, 0xf5, 0x4a, 0x56, 0xc7, 0xf7, 0x24, 0x6d, 0x9b, 0x24, 0x18, 0xd9,
|
|
0xda, 0x41, 0xf7, 0xa6, 0xd2, 0x61, 0xbb, 0x86, 0x38, 0xbb, 0x46, 0x12, 0x6c, 0x96, 0x35, 0xe5,
|
|
0xb0, 0xac, 0xc7, 0x01, 0xda, 0x5a, 0xbd, 0x29, 0xdf, 0x92, 0x06, 0x1d, 0x9d, 0x44, 0x92, 0x93,
|
|
0xd5, 0xf1, 0xb6, 0x56, 0xa4, 0x09, 0xe2, 0x9f, 0x0a, 0x70, 0xc2, 0x6b, 0xc4, 0xe9, 0x86, 0x32,
|
|
0xca, 0xd9, 0xc7, 0x59, 0xe0, 0xcd, 0xca, 0x7f, 0x8f, 0xda, 0x47, 0xdc, 0xce, 0xb0, 0x88, 0x2f,
|
|
0xc3, 0xa2, 0x41, 0x18, 0x16, 0xf3, 0x65, 0x58, 0x7c, 0x34, 0xc3, 0x12, 0x0e, 0x86, 0x89, 0x9f,
|
|
0x8f, 0x78, 0x53, 0x4d, 0x27, 0x82, 0x21, 0x69, 0xcf, 0xb9, 0x48, 0x7b, 0x30, 0x2e, 0x44, 0x7d,
|
|
0xb9, 0x10, 0x0b, 0xc2, 0x85, 0xb8, 0x2f, 0x17, 0x12, 0xa3, 0xb9, 0x30, 0xe6, 0xe4, 0xc2, 0x69,
|
|
0x98, 0x35, 0x98, 0x50, 0x68, 0xc9, 0x9e, 0x46, 0xe1, 0xa7, 0xa2, 0x30, 0x33, 0x54, 0xee, 0xa3,
|
|
0x68, 0x0d, 0x56, 0x60, 0xa2, 0x2b, 0x7d, 0xb6, 0x2e, 0x91, 0xda, 0x07, 0x1a, 0xb3, 0x07, 0xd0,
|
|
0x95, 0x3e, 0x5b, 0xc0, 0x25, 0x0e, 0x34, 0x74, 0x16, 0xd2, 0xf2, 0x67, 0xfb, 0x6d, 0x55, 0xae,
|
|
0xbf, 0x2d, 0xa9, 0x3d, 0x5a, 0x8a, 0xba, 0x3a, 0x53, 0x34, 0xfd, 0x86, 0xa4, 0xf6, 0x48, 0x49,
|
|
0x5e, 0x65, 0x93, 0x23, 0x55, 0x76, 0xdc, 0xa9, 0xb2, 0x5f, 0x12, 0x60, 0x71, 0x68, 0x3c, 0x0e,
|
|
0xa1, 0xab, 0x4e, 0x72, 0x22, 0x81, 0xc8, 0x89, 0xba, 0x91, 0x23, 0xfe, 0xbc, 0x1b, 0xa6, 0x7b,
|
|
0xa0, 0x49, 0x4e, 0x8c, 0xd1, 0x40, 0x18, 0x63, 0xae, 0x18, 0xcf, 0x59, 0x10, 0x37, 0x95, 0xc6,
|
|
0x6d, 0x65, 0xa0, 0x7b, 0x8a, 0xfc, 0xcf, 0x46, 0x61, 0xde, 0xb5, 0xec, 0x47, 0x51, 0xec, 0x1f,
|
|
0x67, 0x63, 0xa0, 0xeb, 0x72, 0xb7, 0xaf, 0x1b, 0x62, 0x9f, 0xc2, 0x63, 0xc0, 0x92, 0xd0, 0xd3,
|
|
0xb0, 0xa0, 0xed, 0x29, 0x6f, 0xd7, 0x3b, 0x4a, 0xe3, 0x76, 0x5d, 0x19, 0xe8, 0xf5, 0x5b, 0x52,
|
|
0xbb, 0x33, 0x50, 0x65, 0x8d, 0x19, 0x9d, 0x59, 0x9c, 0x8b, 0x19, 0x59, 0x19, 0xe8, 0x57, 0x59,
|
|
0xd6, 0x51, 0x54, 0xe0, 0xe7, 0x05, 0x58, 0x76, 0x1d, 0x9f, 0x43, 0xa8, 0x81, 0x93, 0xbc, 0x48,
|
|
0x18, 0xf2, 0xa2, 0x9e, 0xe4, 0x89, 0x7f, 0xdf, 0x0b, 0xe3, 0x3d, 0x50, 0x0b, 0x27, 0xe6, 0x68,
|
|
0x18, 0xcc, 0x31, 0x6f, 0xcc, 0x7f, 0x4b, 0x80, 0x89, 0x8a, 0xda, 0x2a, 0x4b, 0x5d, 0x26, 0xee,
|
|
0xf3, 0x90, 0xb0, 0x1d, 0x0d, 0x8d, 0x2b, 0xe4, 0x50, 0xa8, 0xbf, 0xd4, 0x3f, 0x0f, 0x4b, 0x24,
|
|
0x00, 0x4e, 0x63, 0xc4, 0xdd, 0x81, 0xa6, 0xd7, 0x6f, 0xca, 0xf5, 0xa6, 0xd2, 0x95, 0xda, 0x3d,
|
|
0xc6, 0xb5, 0x79, 0x5c, 0x80, 0x04, 0x8a, 0xb7, 0x06, 0x9a, 0xbe, 0x26, 0x17, 0x49, 0x26, 0x5e,
|
|
0xbc, 0x1a, 0xe3, 0x4e, 0x91, 0x1a, 0x3f, 0xc5, 0x45, 0x88, 0x63, 0x70, 0xc3, 0xea, 0xfa, 0x24,
|
|
0xa4, 0x2b, 0x6a, 0x8b, 0x8e, 0xbd, 0xe1, 0x4e, 0x23, 0x88, 0x59, 0xc7, 0xde, 0xaa, 0xe4, 0x7f,
|
|
0x3c, 0xed, 0x47, 0x2b, 0x6a, 0x6b, 0x88, 0xf5, 0x61, 0x17, 0x1b, 0x15, 0xb5, 0xf5, 0x08, 0x1d,
|
|
0xa7, 0x30, 0x28, 0x8d, 0x5b, 0x94, 0xda, 0x74, 0x2b, 0xe1, 0x38, 0x5a, 0xf2, 0x13, 0x11, 0x18,
|
|
0xab, 0xa8, 0x2d, 0xd7, 0xc8, 0xc1, 0x47, 0x8b, 0x13, 0x2b, 0x90, 0x60, 0x42, 0xb7, 0x00, 0x09,
|
|
0x26, 0x9b, 0xec, 0x60, 0x35, 0xfd, 0x25, 0xbe, 0x06, 0x50, 0x51, 0x5b, 0xb4, 0x90, 0x86, 0xd6,
|
|
0x61, 0x8c, 0xa6, 0x1b, 0xab, 0xe4, 0x73, 0x01, 0xf8, 0x43, 0x2b, 0x57, 0x8d, 0x9a, 0xe2, 0x17,
|
|
0x22, 0x30, 0x6e, 0x26, 0x7b, 0x29, 0xd8, 0x10, 0x1f, 0x23, 0x47, 0xe3, 0x63, 0x34, 0x14, 0x1f,
|
|
0x2d, 0x6e, 0xc4, 0x78, 0x6e, 0x60, 0x5e, 0x9a, 0xe1, 0x3e, 0xea, 0x8e, 0x9a, 0xbf, 0xb1, 0xda,
|
|
0xf6, 0xd5, 0x76, 0x57, 0x52, 0x0f, 0x98, 0x1f, 0x6a, 0xfc, 0x1c, 0x15, 0xf7, 0x11, 0xff, 0x6b,
|
|
0x04, 0x26, 0x4d, 0x66, 0x10, 0x89, 0xfc, 0x68, 0x33, 0x04, 0x7d, 0x06, 0xa6, 0xd9, 0x17, 0x03,
|
|
0x98, 0x52, 0x12, 0x00, 0x48, 0x12, 0x55, 0x7c, 0x2e, 0xb0, 0xa8, 0xbd, 0x6e, 0xd6, 0x27, 0x71,
|
|
0x80, 0xa9, 0x7d, 0xdb, 0x6f, 0xf1, 0x05, 0x98, 0x2d, 0x34, 0x9b, 0x96, 0x60, 0x32, 0x7b, 0x29,
|
|
0xda, 0x35, 0xc0, 0xb6, 0xcb, 0x60, 0x68, 0xc3, 0x4f, 0x0b, 0x90, 0x75, 0xe9, 0x26, 0x44, 0x13,
|
|
0xe8, 0xba, 0x2d, 0xaa, 0x71, 0x58, 0xa2, 0xb8, 0x73, 0x1b, 0x34, 0xcc, 0x51, 0x82, 0x65, 0x57,
|
|
0x60, 0xec, 0x90, 0xc5, 0x1c, 0xc4, 0x75, 0xe5, 0xb6, 0x6c, 0x68, 0x37, 0xfd, 0x81, 0xd2, 0x10,
|
|
0x1d, 0xa8, 0xc6, 0xde, 0x12, 0xfe, 0x57, 0x7c, 0x19, 0x32, 0xac, 0xb6, 0x7c, 0x28, 0x06, 0x7d,
|
|
0x12, 0x16, 0x77, 0xe8, 0x20, 0x1f, 0xaa, 0xfa, 0x27, 0x60, 0xa1, 0x2a, 0x77, 0x95, 0xfd, 0xc3,
|
|
0x75, 0xfe, 0xcd, 0x08, 0x2c, 0x9a, 0x15, 0xef, 0xf7, 0x29, 0x93, 0x92, 0xe3, 0x94, 0xc9, 0x85,
|
|
0xe0, 0x23, 0xf9, 0x70, 0x8f, 0x9a, 0x7c, 0x55, 0x80, 0x85, 0x21, 0x2e, 0x1d, 0xe6, 0x1c, 0xd5,
|
|
0xb6, 0x75, 0xaa, 0x29, 0x4a, 0x58, 0xf0, 0x4c, 0x60, 0x16, 0xb8, 0x1e, 0x6d, 0xfa, 0xa7, 0x02,
|
|
0xcc, 0xb9, 0x95, 0x40, 0xdb, 0xfc, 0xf9, 0xa6, 0xcb, 0x21, 0x3b, 0x79, 0xc0, 0x87, 0x9c, 0x9e,
|
|
0x84, 0xa9, 0x8a, 0xda, 0xda, 0x92, 0xbb, 0x37, 0x65, 0xb5, 0xaa, 0x74, 0x64, 0x0d, 0x97, 0x53,
|
|
0xf1, 0x3f, 0x64, 0xc6, 0x1c, 0xaf, 0xd2, 0x1f, 0xe2, 0xef, 0x08, 0x64, 0x12, 0xa4, 0x05, 0xd1,
|
|
0x22, 0x8c, 0x11, 0x67, 0xd1, 0x34, 0xfa, 0x09, 0xfc, 0x93, 0x7e, 0xd7, 0x43, 0x2b, 0x47, 0xb8,
|
|
0xca, 0x47, 0x33, 0xe5, 0x47, 0x5e, 0x4b, 0x8d, 0xd8, 0xe1, 0x13, 0x8b, 0x86, 0x6d, 0x65, 0x1c,
|
|
0x60, 0x82, 0x15, 0x8e, 0x3e, 0x71, 0x03, 0x16, 0xe8, 0x41, 0xd5, 0xa3, 0x36, 0x74, 0x89, 0xb3,
|
|
0x27, 0xc1, 0x1a, 0x32, 0x8c, 0x08, 0x2d, 0xfd, 0x28, 0x1a, 0x11, 0x8a, 0xec, 0x21, 0x1b, 0x91,
|
|
0x3f, 0xa6, 0x6e, 0x8b, 0x85, 0xe5, 0x43, 0x23, 0xc2, 0xf6, 0x93, 0x4b, 0x09, 0xc7, 0xc9, 0xa5,
|
|
0x39, 0xdb, 0x37, 0x33, 0xc6, 0xe9, 0x83, 0xfb, 0x7b, 0x60, 0xda, 0xb0, 0xd8, 0x76, 0x91, 0x7c,
|
|
0x60, 0x16, 0x9b, 0xef, 0xd6, 0xdd, 0x62, 0x0f, 0x95, 0x08, 0x6f, 0xb1, 0xf9, 0x26, 0x1e, 0xb0,
|
|
0xc5, 0xbe, 0x02, 0x73, 0xec, 0x13, 0x39, 0xfb, 0xfa, 0xf9, 0x04, 0xbf, 0x7e, 0xb6, 0xf9, 0x1b,
|
|
0x74, 0x2d, 0x7d, 0xd5, 0xac, 0x47, 0xe3, 0x19, 0x5e, 0xdb, 0x58, 0x46, 0x3b, 0x11, 0x8f, 0x76,
|
|
0xbe, 0x11, 0x81, 0x79, 0xd6, 0xd0, 0xfd, 0x36, 0x37, 0xeb, 0x0e, 0x73, 0xe3, 0x1f, 0x8a, 0xa3,
|
|
0xb8, 0x1e, 0xb2, 0xb1, 0xf9, 0xcd, 0x08, 0xa4, 0x38, 0x24, 0x8e, 0x6f, 0x1e, 0x05, 0xc7, 0x37,
|
|
0x8f, 0xe6, 0x22, 0x38, 0xc2, 0x2d, 0x82, 0xd7, 0xec, 0x31, 0xc8, 0xf3, 0x01, 0x09, 0xb7, 0x2d,
|
|
0xed, 0x8f, 0xb4, 0x32, 0x3f, 0xf2, 0x51, 0xab, 0xe1, 0x33, 0xf7, 0x09, 0xb7, 0x33, 0xf7, 0xa3,
|
|
0xd6, 0x9a, 0x5f, 0x16, 0x4c, 0x91, 0x3d, 0x8a, 0x15, 0xd9, 0x74, 0x5a, 0x91, 0xcb, 0x41, 0xb9,
|
|
0xe9, 0x66, 0x43, 0x7e, 0x4d, 0x00, 0x34, 0x9c, 0x8f, 0x36, 0x79, 0x0b, 0x72, 0x31, 0x54, 0x07,
|
|
0x0f, 0xd8, 0x7e, 0x54, 0x20, 0xc9, 0xba, 0xd7, 0xd0, 0x3a, 0x24, 0x99, 0x1c, 0x1a, 0x01, 0x92,
|
|
0x33, 0x01, 0xa1, 0x57, 0xcd, 0x8a, 0xe2, 0x17, 0x23, 0x30, 0xc6, 0x52, 0x87, 0x8c, 0xc9, 0x87,
|
|
0x53, 0xb6, 0x47, 0x85, 0xa8, 0x72, 0xa6, 0x78, 0xf8, 0x3b, 0xd5, 0xbf, 0x27, 0xc0, 0xa4, 0xad,
|
|
0xf0, 0x87, 0xc7, 0xb1, 0x7e, 0x0d, 0xd2, 0x36, 0xca, 0x0a, 0xcd, 0xe6, 0x90, 0x70, 0x70, 0xc4,
|
|
0x46, 0xdc, 0x89, 0x8d, 0xf2, 0xdc, 0xda, 0x85, 0x59, 0x5b, 0x93, 0xec, 0x9b, 0xfb, 0x23, 0xb6,
|
|
0xfa, 0xb2, 0xa3, 0x55, 0xea, 0x7f, 0x07, 0x6e, 0x55, 0xbc, 0x0d, 0x53, 0x86, 0x4a, 0x28, 0x1d,
|
|
0xd9, 0x8d, 0xcc, 0x34, 0x35, 0x0d, 0x2c, 0x6a, 0x81, 0xd5, 0xdb, 0xe9, 0x43, 0x45, 0x87, 0x8f,
|
|
0xbf, 0xcf, 0x41, 0xbc, 0xa5, 0x2a, 0x83, 0x3e, 0x8b, 0x5f, 0xd1, 0x1f, 0xe2, 0x81, 0x29, 0x5c,
|
|
0xac, 0xb3, 0xb5, 0x41, 0xe7, 0xf6, 0x50, 0x87, 0x35, 0x98, 0x34, 0xe6, 0x1b, 0x4b, 0x66, 0x52,
|
|
0x97, 0x57, 0x83, 0xaa, 0x36, 0x6d, 0xba, 0x3a, 0xd1, 0xb7, 0x7e, 0x6b, 0x62, 0x0f, 0x66, 0xb8,
|
|
0x7c, 0x0f, 0xde, 0xdf, 0x43, 0x52, 0xbf, 0x64, 0x4d, 0xa2, 0xb8, 0x43, 0xbf, 0x49, 0xf4, 0x50,
|
|
0x3d, 0x3f, 0xdc, 0x6d, 0x3a, 0x93, 0xee, 0x04, 0x47, 0xf7, 0xc8, 0x09, 0xf1, 0xf7, 0x04, 0x98,
|
|
0xe6, 0x78, 0x12, 0xc4, 0xb9, 0x78, 0x38, 0x7c, 0x09, 0x4f, 0xda, 0xb3, 0x36, 0xf1, 0xf2, 0x50,
|
|
0xc2, 0x21, 0x62, 0xc4, 0x6f, 0x45, 0x60, 0x89, 0xab, 0x77, 0xbf, 0x1d, 0xd2, 0x0d, 0x87, 0x43,
|
|
0x9a, 0x0f, 0xa1, 0x52, 0x0f, 0xd9, 0x29, 0xfd, 0x55, 0x01, 0x32, 0x2e, 0x9c, 0xa2, 0x0e, 0x95,
|
|
0x8f, 0x10, 0x85, 0xba, 0x0f, 0x05, 0xed, 0x58, 0xfe, 0x16, 0xe5, 0xd2, 0x95, 0x10, 0x5c, 0x72,
|
|
0xf5, 0xb9, 0xfe, 0x99, 0x00, 0x0b, 0xee, 0x65, 0xd0, 0x0e, 0xef, 0x77, 0x3d, 0x13, 0xba, 0xa3,
|
|
0x07, 0xec, 0x7b, 0xfd, 0x97, 0x88, 0x29, 0xe6, 0x41, 0x42, 0x11, 0xb6, 0xa5, 0x7d, 0xc4, 0x6b,
|
|
0x69, 0x1f, 0xf5, 0x5e, 0xda, 0xc7, 0x46, 0x2e, 0xed, 0xe3, 0x8e, 0xa5, 0xbd, 0x39, 0x41, 0x26,
|
|
0x46, 0xf8, 0x18, 0x63, 0x47, 0xf3, 0x31, 0x92, 0x47, 0xf0, 0x31, 0xc0, 0x11, 0xf9, 0x70, 0x5a,
|
|
0xb2, 0xd4, 0x70, 0x28, 0xe2, 0x57, 0x22, 0xb0, 0x6c, 0x63, 0xf8, 0xfd, 0xb6, 0x10, 0x65, 0x87,
|
|
0x85, 0xb8, 0x14, 0x50, 0x24, 0x1f, 0x89, 0x28, 0xd9, 0x3f, 0x11, 0x20, 0xeb, 0xca, 0xad, 0xfb,
|
|
0x60, 0x25, 0xaa, 0x4e, 0x2b, 0xf1, 0x7c, 0x28, 0x4e, 0xb9, 0xda, 0x89, 0xdf, 0xb6, 0x6c, 0xdc,
|
|
0x70, 0x8c, 0xa7, 0xca, 0x5b, 0x8a, 0x2b, 0x87, 0xe8, 0xec, 0x01, 0xdb, 0x8a, 0xff, 0x18, 0x81,
|
|
0x14, 0x77, 0x97, 0xd2, 0x91, 0x77, 0xfe, 0x0b, 0xfd, 0xfe, 0x23, 0xbe, 0xf3, 0xbf, 0x05, 0x29,
|
|
0xa5, 0xdd, 0x6c, 0xd4, 0x1b, 0x4a, 0xef, 0x56, 0xbb, 0xc5, 0x4c, 0x45, 0xce, 0x37, 0x1a, 0x57,
|
|
0x2e, 0xae, 0xaf, 0x93, 0x1a, 0xd7, 0x1e, 0xab, 0x02, 0x6e, 0x80, 0xfe, 0x1a, 0xf5, 0xd5, 0xe6,
|
|
0xda, 0x04, 0x80, 0xd4, 0xef, 0xb3, 0x9e, 0xc4, 0x9b, 0x30, 0xc3, 0x71, 0x9a, 0x1d, 0xf7, 0xf1,
|
|
0x91, 0x76, 0x3a, 0x1c, 0x91, 0xa1, 0xb0, 0x59, 0xdc, 0x23, 0x6c, 0xf6, 0x3f, 0xe3, 0x00, 0x16,
|
|
0x54, 0xf4, 0x04, 0x4c, 0xaa, 0x72, 0xb3, 0xad, 0xe2, 0xe6, 0x07, 0x6a, 0xdb, 0x58, 0x18, 0x4e,
|
|
0x18, 0x89, 0xd7, 0xd5, 0xb6, 0x86, 0x6e, 0x90, 0x18, 0x0a, 0xb1, 0x54, 0x64, 0x67, 0x99, 0x7a,
|
|
0xf2, 0x01, 0xe2, 0x0b, 0xb8, 0x23, 0xc3, 0xc6, 0x91, 0x3d, 0xe5, 0x49, 0x95, 0xfb, 0xa5, 0xa1,
|
|
0x6d, 0x48, 0xb5, 0x54, 0x89, 0x5d, 0x35, 0x46, 0x17, 0x44, 0x01, 0xbe, 0xc4, 0xc7, 0xad, 0x6e,
|
|
0xe0, 0x6a, 0xa4, 0x49, 0x68, 0x19, 0xff, 0x6a, 0xe8, 0xd3, 0x90, 0x96, 0x2c, 0x06, 0xd2, 0x5d,
|
|
0xf0, 0x18, 0x11, 0xcb, 0xa7, 0x83, 0x34, 0xca, 0x31, 0x9f, 0x34, 0x3d, 0x2d, 0xd9, 0x13, 0xf0,
|
|
0xb4, 0xd5, 0xe8, 0xb4, 0xe5, 0x1e, 0x19, 0x0a, 0x36, 0x6d, 0xd1, 0x84, 0x72, 0x13, 0xb3, 0x92,
|
|
0x65, 0x6a, 0x72, 0x43, 0x95, 0x75, 0xe6, 0x74, 0x4e, 0xd0, 0xc4, 0x1a, 0x49, 0x43, 0x7f, 0x0e,
|
|
0xd2, 0xd2, 0x40, 0xdf, 0xab, 0x53, 0x95, 0xa3, 0x08, 0xc7, 0x02, 0x86, 0x7b, 0x31, 0xc2, 0x81,
|
|
0xce, 0xb4, 0x96, 0x6e, 0xd1, 0x4b, 0xb6, 0xdf, 0xe8, 0x05, 0x58, 0xea, 0x2b, 0xf4, 0x82, 0x14,
|
|
0x65, 0xa0, 0xd7, 0xed, 0x23, 0x9b, 0x24, 0x23, 0xbb, 0x80, 0x0b, 0x6c, 0x92, 0xfc, 0x2a, 0x3f,
|
|
0xc6, 0x25, 0x18, 0xdb, 0x97, 0x55, 0xad, 0xad, 0xf4, 0x88, 0x90, 0x06, 0x38, 0x6f, 0x88, 0xf1,
|
|
0xbc, 0x4e, 0xab, 0x54, 0x8d, 0xba, 0xe8, 0x34, 0x4c, 0xf5, 0x94, 0x9e, 0x5c, 0x6f, 0x28, 0xdd,
|
|
0x7e, 0xa7, 0x2d, 0xf5, 0x74, 0x76, 0xe8, 0x7c, 0x12, 0xa7, 0xae, 0x1b, 0x89, 0xe8, 0x75, 0x98,
|
|
0x35, 0x4a, 0x34, 0xe4, 0x7a, 0x5f, 0x55, 0x6e, 0x76, 0xe4, 0xae, 0x96, 0x49, 0x11, 0x0b, 0x1c,
|
|
0xf0, 0xb2, 0x39, 0x64, 0xb5, 0xb0, 0xc3, 0x1a, 0x40, 0x4b, 0x90, 0x6c, 0xca, 0xfb, 0xf5, 0xae,
|
|
0xd2, 0x94, 0xd9, 0x91, 0xf5, 0xb1, 0xa6, 0xbc, 0xbf, 0xa5, 0x34, 0x65, 0xf1, 0xff, 0xc5, 0x60,
|
|
0xde, 0x31, 0xc8, 0xec, 0xd0, 0x9f, 0x8f, 0x86, 0xf9, 0x04, 0xa2, 0x87, 0x55, 0x28, 0x1a, 0x48,
|
|
0x85, 0x62, 0xf7, 0x45, 0x85, 0xe2, 0xf7, 0x43, 0x85, 0x12, 0xf7, 0x50, 0x85, 0x3e, 0xec, 0x0a,
|
|
0xc0, 0x4b, 0x20, 0xd8, 0x25, 0xf0, 0x7b, 0x31, 0x48, 0x5b, 0xa6, 0x37, 0x98, 0x79, 0x3f, 0x0d,
|
|
0x53, 0xfc, 0x70, 0x98, 0xa6, 0x7e, 0x92, 0x4b, 0xa5, 0xb6, 0xe7, 0x63, 0x19, 0xfc, 0xe1, 0x97,
|
|
0x41, 0x5e, 0x78, 0xc6, 0xed, 0xc2, 0xf3, 0x34, 0x4c, 0xac, 0xf3, 0x13, 0xc9, 0xd0, 0x6c, 0x23,
|
|
0x0c, 0xcf, 0x36, 0xe2, 0x7f, 0x8e, 0xc0, 0x34, 0xc7, 0x8d, 0x7b, 0x72, 0x72, 0xf3, 0x63, 0xff,
|
|
0xcd, 0xd3, 0x7f, 0xfb, 0x56, 0x04, 0x96, 0x38, 0x76, 0x3f, 0x72, 0x51, 0x20, 0x87, 0x28, 0x3c,
|
|
0xe4, 0x28, 0x90, 0x0b, 0xa7, 0x1e, 0x89, 0x28, 0xd0, 0x10, 0x2e, 0x97, 0x28, 0x90, 0x7b, 0x99,
|
|
0x90, 0x51, 0xa0, 0xa1, 0x46, 0x1e, 0xf0, 0xca, 0xee, 0xdf, 0x45, 0x60, 0x82, 0xad, 0x2f, 0x89,
|
|
0x1d, 0x0e, 0x79, 0x49, 0x2e, 0x3a, 0x05, 0x53, 0xc4, 0x68, 0xcb, 0x4d, 0xe3, 0x1a, 0x68, 0xda,
|
|
0xfc, 0x04, 0x4b, 0xa5, 0xf7, 0x40, 0x2f, 0xc3, 0xb8, 0xaa, 0x74, 0xe4, 0xfa, 0x6d, 0xf9, 0x80,
|
|
0x0e, 0xc1, 0x78, 0x35, 0x89, 0x13, 0x5e, 0x95, 0x0f, 0x34, 0xb4, 0x61, 0x18, 0x9f, 0x38, 0xa1,
|
|
0x2e, 0x68, 0x94, 0x82, 0xc0, 0x1d, 0x6d, 0x85, 0x1e, 0xe4, 0x15, 0x09, 0xa3, 0x4c, 0x84, 0xb8,
|
|
0x6f, 0xee, 0x95, 0x10, 0xd4, 0xc1, 0x7c, 0xce, 0x61, 0xd6, 0x46, 0xfc, 0x58, 0x1b, 0xb5, 0xb3,
|
|
0x56, 0xfc, 0x8c, 0xbd, 0xdf, 0xc3, 0xad, 0x26, 0x47, 0xf6, 0xf0, 0x8a, 0xb9, 0xe5, 0x44, 0x7a,
|
|
0x28, 0x17, 0x43, 0xb6, 0x2e, 0x7e, 0x31, 0x66, 0xee, 0xce, 0x91, 0x16, 0xbc, 0x2e, 0x7f, 0x3a,
|
|
0xba, 0x10, 0x9e, 0x85, 0x34, 0x5f, 0x8a, 0x0b, 0x4a, 0x4e, 0x59, 0xe5, 0x8c, 0xc8, 0xa4, 0x45,
|
|
0x71, 0xdc, 0x4b, 0x5c, 0x13, 0xf7, 0x5a, 0x5c, 0xc7, 0x8e, 0x26, 0xae, 0xc9, 0xb0, 0x1f, 0x66,
|
|
0x19, 0x2c, 0xe5, 0xce, 0x56, 0xa5, 0x58, 0xda, 0xd0, 0x55, 0x53, 0xe0, 0x7b, 0x8d, 0x61, 0xca,
|
|
0xed, 0x48, 0xc5, 0x2a, 0xcc, 0xda, 0x8b, 0xd1, 0xce, 0xd8, 0x9d, 0x94, 0xb6, 0xb2, 0x24, 0x46,
|
|
0xfa, 0x77, 0x23, 0x66, 0xd4, 0x8f, 0x32, 0xec, 0x3e, 0x4f, 0x9f, 0xd7, 0x1c, 0xd3, 0xe7, 0xc5,
|
|
0x30, 0xa3, 0xf9, 0x90, 0xe7, 0xcf, 0x9f, 0x11, 0x60, 0x79, 0x83, 0x0a, 0xee, 0x23, 0x77, 0x32,
|
|
0xe5, 0xfb, 0x82, 0xb9, 0x17, 0x66, 0x1b, 0xc7, 0xfb, 0x30, 0xb9, 0xbf, 0xe6, 0x9c, 0xdc, 0x9f,
|
|
0x0b, 0xa5, 0x91, 0x6e, 0xe8, 0x7f, 0x4b, 0x80, 0x45, 0x8f, 0x42, 0xe8, 0x35, 0x7e, 0x7a, 0x7f,
|
|
0x36, 0x7c, 0x57, 0x0f, 0x78, 0x7e, 0xcf, 0xdb, 0x29, 0xf1, 0x3f, 0x07, 0xf2, 0x07, 0x82, 0x7d,
|
|
0xce, 0xf8, 0xb0, 0x1d, 0x06, 0xf9, 0x0b, 0x82, 0x79, 0x64, 0x90, 0xa3, 0xaf, 0xd0, 0x6c, 0xfa,
|
|
0x49, 0xe5, 0x12, 0x24, 0xe9, 0x02, 0xd7, 0x9c, 0x81, 0xc6, 0xc8, 0xef, 0xb2, 0xed, 0x40, 0x46,
|
|
0xd4, 0x9d, 0x39, 0x31, 0x9e, 0xc5, 0x9f, 0xb7, 0xb6, 0x06, 0x38, 0x08, 0xec, 0x18, 0xc3, 0x03,
|
|
0x43, 0xd1, 0x75, 0x03, 0xc1, 0x36, 0xbb, 0xef, 0x3d, 0x08, 0xf1, 0x4f, 0x23, 0xe6, 0xbe, 0x29,
|
|
0xd7, 0xdf, 0xc7, 0x7b, 0x8e, 0x21, 0x44, 0x79, 0xdc, 0x67, 0xcf, 0xd1, 0xe5, 0xf8, 0xf3, 0xdd,
|
|
0x08, 0xac, 0x0c, 0x73, 0xfd, 0x7e, 0xcf, 0xaa, 0xdb, 0x8e, 0x59, 0xf5, 0x4a, 0x18, 0x33, 0xf9,
|
|
0x48, 0xec, 0x3e, 0xfe, 0x91, 0x00, 0x27, 0xbd, 0xf9, 0x16, 0x68, 0x16, 0x1b, 0xa1, 0x24, 0x16,
|
|
0xc3, 0xa3, 0xee, 0x0c, 0x8f, 0xf1, 0x0c, 0xbf, 0xe1, 0xbc, 0x01, 0xf9, 0x93, 0xe1, 0xd9, 0xe9,
|
|
0x3a, 0xcd, 0xfd, 0x8e, 0x00, 0xc7, 0x47, 0x16, 0x45, 0x37, 0xf8, 0xc9, 0xee, 0xa5, 0xc3, 0x76,
|
|
0xfb, 0x80, 0xa7, 0xbc, 0x3b, 0x51, 0x7a, 0x47, 0xa1, 0xfb, 0x7a, 0xd6, 0xf3, 0x48, 0x9e, 0xf5,
|
|
0xed, 0x68, 0x94, 0xff, 0x76, 0xd4, 0x3e, 0xca, 0x31, 0xe7, 0x28, 0x8f, 0x5c, 0x2a, 0x14, 0xed,
|
|
0x4b, 0x85, 0xd5, 0x20, 0x97, 0x29, 0x3f, 0x6a, 0xeb, 0x84, 0x51, 0x06, 0x88, 0x17, 0x71, 0xb0,
|
|
0x89, 0xb8, 0xd8, 0x82, 0x59, 0x93, 0x1a, 0xba, 0xdc, 0x25, 0xc7, 0x03, 0x77, 0x20, 0x45, 0xb8,
|
|
0x4f, 0x8a, 0x19, 0xe7, 0x7c, 0xf3, 0x81, 0xf9, 0xc2, 0xbe, 0x32, 0x80, 0x81, 0x91, 0xa0, 0x89,
|
|
0x3f, 0xce, 0x2e, 0xf5, 0xe6, 0x17, 0xd6, 0x9e, 0x13, 0x8a, 0xcf, 0x3a, 0x72, 0xd4, 0x4a, 0xd7,
|
|
0x46, 0x6c, 0xcc, 0x9b, 0x58, 0xba, 0xc6, 0xbe, 0x17, 0xc4, 0xb2, 0x4f, 0x23, 0x78, 0x62, 0x6f,
|
|
0x70, 0xb4, 0xb2, 0xc5, 0xbc, 0x27, 0xad, 0xa1, 0x96, 0xf1, 0x67, 0x38, 0x0a, 0xa8, 0x0f, 0x40,
|
|
0x28, 0x48, 0x43, 0xb4, 0xdd, 0x34, 0x1c, 0x44, 0xfc, 0xaf, 0x78, 0x85, 0x5e, 0xc8, 0x68, 0x2c,
|
|
0xf6, 0x83, 0xf6, 0x2e, 0x7e, 0x3d, 0x4e, 0xaf, 0xcf, 0xf4, 0x5e, 0xe3, 0x7f, 0xac, 0x98, 0xc9,
|
|
0xc3, 0x3f, 0x11, 0x33, 0x3e, 0xf2, 0x19, 0x0a, 0x18, 0xe9, 0x06, 0xa5, 0x86, 0xdd, 0x20, 0x97,
|
|
0x37, 0x57, 0x96, 0x20, 0x69, 0x46, 0x4d, 0x26, 0xa9, 0xf8, 0x2b, 0x2c, 0x5c, 0x72, 0x1c, 0x00,
|
|
0x67, 0xb1, 0x6f, 0x8c, 0xe9, 0x6b, 0x10, 0xe3, 0x8a, 0x79, 0x4b, 0x81, 0x33, 0xd2, 0x30, 0x3d,
|
|
0x3a, 0xd2, 0x90, 0xf6, 0x8d, 0x34, 0xcc, 0xb8, 0x45, 0x1a, 0x9c, 0xce, 0x10, 0x1a, 0x3e, 0x4a,
|
|
0xca, 0x6b, 0xf0, 0xac, 0x5d, 0x83, 0xbf, 0x19, 0x81, 0x45, 0x6b, 0x90, 0x1f, 0xb5, 0x2f, 0x17,
|
|
0x6d, 0x8a, 0xf3, 0x90, 0x3f, 0x7f, 0x1e, 0xe2, 0xd2, 0x83, 0xf9, 0x98, 0xce, 0xd1, 0xad, 0xc3,
|
|
0x93, 0xf9, 0x97, 0x02, 0xcc, 0xb9, 0x95, 0x08, 0xf9, 0x31, 0x9d, 0xa3, 0x09, 0x17, 0xbf, 0x65,
|
|
0xfb, 0x28, 0x7e, 0x8b, 0xd1, 0x58, 0xe6, 0x31, 0x1f, 0x0f, 0xe6, 0x1f, 0x5b, 0x8e, 0x99, 0x07,
|
|
0xbb, 0xef, 0x69, 0x04, 0x65, 0xdb, 0x19, 0x41, 0x39, 0xfa, 0x68, 0x88, 0xb6, 0xb0, 0xb3, 0x3b,
|
|
0x0d, 0x67, 0x21, 0x6d, 0xd0, 0x60, 0xaa, 0x25, 0xa5, 0x64, 0xaa, 0xcf, 0x87, 0x94, 0x1f, 0x36,
|
|
0x39, 0xdf, 0x8e, 0xc0, 0x31, 0x5c, 0x82, 0xba, 0xb4, 0xda, 0x5e, 0xbb, 0x7f, 0xbf, 0x0d, 0xc4,
|
|
0x8f, 0x38, 0x0c, 0x44, 0x20, 0xc1, 0xb5, 0xe0, 0x3d, 0xfc, 0x7d, 0xbd, 0x65, 0x77, 0x7e, 0xf9,
|
|
0x7c, 0x87, 0x1e, 0x6e, 0x98, 0x6b, 0xce, 0x61, 0x7e, 0x21, 0x1c, 0x97, 0x5c, 0xc7, 0xfa, 0x77,
|
|
0x05, 0x58, 0xf2, 0x2c, 0x86, 0x6a, 0xbc, 0x35, 0x79, 0xee, 0x30, 0xdd, 0x3d, 0x34, 0x93, 0xf2,
|
|
0xdd, 0x28, 0x7d, 0x40, 0xc6, 0x2e, 0x25, 0xde, 0x63, 0xf1, 0x2a, 0xa4, 0xba, 0xa4, 0x68, 0x9d,
|
|
0xbb, 0x71, 0xc5, 0x77, 0xff, 0x9c, 0xb6, 0x4e, 0xcf, 0x72, 0x74, 0xcd, 0xff, 0xb1, 0xc8, 0x4b,
|
|
0xad, 0x96, 0x2a, 0xb7, 0x24, 0x5d, 0xb6, 0xfc, 0xb8, 0x94, 0x99, 0x46, 0xdd, 0x35, 0xe5, 0xa6,
|
|
0xdd, 0x99, 0x4b, 0xd2, 0x04, 0x3e, 0x80, 0x15, 0xe7, 0x03, 0x33, 0xce, 0x19, 0x3f, 0x11, 0xe0,
|
|
0xe3, 0x91, 0x47, 0x66, 0xe9, 0x34, 0xec, 0xd5, 0x80, 0x8b, 0x57, 0x93, 0xfb, 0x0e, 0xbb, 0x6f,
|
|
0x9f, 0xf8, 0x9d, 0x68, 0x09, 0xe6, 0xaf, 0xd7, 0x4a, 0xd5, 0xda, 0x6e, 0x61, 0xb7, 0x54, 0xbf,
|
|
0xbe, 0x5d, 0xdb, 0x29, 0xad, 0x97, 0xaf, 0x96, 0x4b, 0xc5, 0xf4, 0x63, 0x68, 0x0e, 0xd2, 0x56,
|
|
0x56, 0x61, 0x7d, 0xb7, 0xfc, 0x7a, 0x29, 0x2d, 0xa0, 0x05, 0x40, 0x56, 0x6a, 0x79, 0x9b, 0xa5,
|
|
0x47, 0xd0, 0x3c, 0xcc, 0x58, 0xe9, 0xc5, 0xd2, 0x66, 0x69, 0xb7, 0x54, 0x4c, 0x47, 0xed, 0x8d,
|
|
0x6c, 0x56, 0xd6, 0x5f, 0x2d, 0x15, 0xd3, 0x31, 0x7b, 0xe1, 0xda, 0xf5, 0xda, 0x4e, 0x69, 0xbb,
|
|
0x98, 0x8e, 0xdb, 0x93, 0xcb, 0xdb, 0xe5, 0xdd, 0x72, 0x61, 0x33, 0x9d, 0xc8, 0xfd, 0x19, 0x48,
|
|
0xd0, 0x37, 0x2a, 0x70, 0xe7, 0x1b, 0xa5, 0xed, 0x62, 0xa9, 0xea, 0x80, 0x3a, 0x03, 0x93, 0x2c,
|
|
0xfd, 0x6a, 0x69, 0xab, 0xb0, 0x89, 0x71, 0x4e, 0x43, 0x8a, 0x25, 0x91, 0x84, 0x08, 0x42, 0x30,
|
|
0xc5, 0x12, 0x8a, 0xe5, 0xd7, 0x4b, 0xd5, 0x5a, 0x29, 0x1d, 0xcd, 0xfd, 0x0f, 0x76, 0x03, 0xbf,
|
|
0xa9, 0x49, 0xe8, 0x38, 0x2c, 0x11, 0x08, 0xa5, 0x42, 0x75, 0xfd, 0xda, 0xab, 0xa5, 0x37, 0x1c,
|
|
0x1d, 0x2d, 0xc3, 0xa2, 0x23, 0xbb, 0x56, 0xaa, 0xd6, 0xb7, 0x0b, 0x5b, 0xb8, 0xcb, 0x63, 0x90,
|
|
0xb1, 0x67, 0x5e, 0x2d, 0x57, 0x6b, 0xbb, 0x34, 0x37, 0x32, 0x5c, 0x75, 0xb3, 0x60, 0x64, 0x46,
|
|
0x87, 0x33, 0xb7, 0xcb, 0xeb, 0xaf, 0xd2, 0xcc, 0x18, 0x3a, 0x01, 0x59, 0x7b, 0x66, 0xb1, 0x5c,
|
|
0xdb, 0xd9, 0x2c, 0xbc, 0x41, 0xf3, 0xe3, 0x68, 0x11, 0x66, 0xed, 0xf9, 0xa5, 0xad, 0x42, 0x79,
|
|
0x33, 0x9d, 0x18, 0xce, 0x20, 0x9c, 0x4d, 0x8f, 0xe5, 0xfe, 0x38, 0x02, 0x13, 0xbc, 0xce, 0xe3,
|
|
0x92, 0xb4, 0xd4, 0x56, 0x69, 0xf7, 0x5a, 0xa5, 0x58, 0x2f, 0xbd, 0x76, 0xbd, 0xb0, 0x59, 0x4b,
|
|
0x3f, 0x86, 0x69, 0xb2, 0x65, 0xd4, 0x76, 0x0b, 0xd5, 0xdd, 0x5a, 0xfd, 0x46, 0x79, 0xf7, 0x5a,
|
|
0x5a, 0xc0, 0xd2, 0x63, 0xcb, 0x5d, 0xaf, 0x6c, 0xef, 0x16, 0xca, 0xdb, 0xb5, 0x74, 0x04, 0x3d,
|
|
0x01, 0x27, 0x5d, 0x5a, 0xac, 0x97, 0x37, 0xb6, 0x2b, 0xd5, 0x52, 0x7d, 0xbd, 0x80, 0xf9, 0x8f,
|
|
0xce, 0xc2, 0x29, 0xaf, 0xd6, 0x6d, 0x25, 0x63, 0xe8, 0x34, 0x3c, 0xee, 0xda, 0x93, 0xad, 0x58,
|
|
0x1c, 0xf3, 0xd1, 0x56, 0x6c, 0xbb, 0xb2, 0x6b, 0xd0, 0x92, 0xc0, 0x63, 0x6b, 0xcb, 0xdc, 0xa8,
|
|
0x96, 0x0a, 0xbb, 0xa5, 0x6a, 0x7d, 0xf7, 0x5a, 0x61, 0x3b, 0x3d, 0x86, 0xb2, 0xb0, 0x60, 0xcb,
|
|
0xde, 0x2c, 0xd5, 0x6a, 0x34, 0x2f, 0x39, 0x94, 0x57, 0xae, 0xd5, 0x2b, 0xdb, 0xa5, 0x7a, 0xe5,
|
|
0x6a, 0x7a, 0x1c, 0x0f, 0x8f, 0xbd, 0x5e, 0xb9, 0xb6, 0x6b, 0x71, 0x02, 0x72, 0x45, 0x18, 0x63,
|
|
0x77, 0x89, 0x63, 0x36, 0x6f, 0x5d, 0x2d, 0xec, 0xbe, 0xb1, 0xe3, 0xd4, 0xb5, 0x69, 0x48, 0x19,
|
|
0x19, 0xb5, 0xad, 0x1a, 0x15, 0x5f, 0x23, 0xa1, 0xb2, 0xbb, 0x93, 0x8e, 0xe4, 0x6e, 0x41, 0xd2,
|
|
0xb8, 0x53, 0x1c, 0x65, 0x60, 0x0e, 0xff, 0xef, 0xa2, 0xb3, 0x0b, 0x80, 0xcc, 0x1c, 0x4c, 0x7b,
|
|
0xb5, 0x54, 0x28, 0xbe, 0x91, 0x16, 0xb0, 0xf0, 0x9b, 0xe9, 0x34, 0x2d, 0x82, 0x55, 0x93, 0x4b,
|
|
0xdb, 0xaa, 0xbc, 0x8e, 0x15, 0x36, 0x77, 0x0d, 0xd2, 0xce, 0xab, 0xbb, 0x31, 0xf5, 0xdb, 0x95,
|
|
0xdd, 0xf2, 0xd5, 0xf2, 0x7a, 0x61, 0xb7, 0x5c, 0xd9, 0x26, 0xa8, 0xa8, 0x8c, 0x3d, 0x86, 0xb1,
|
|
0x0c, 0xe5, 0x11, 0x12, 0x72, 0x03, 0x48, 0x71, 0x77, 0x87, 0xe2, 0xa1, 0xd9, 0xa9, 0x6c, 0x96,
|
|
0xd7, 0xdf, 0xf0, 0xc0, 0xcd, 0x67, 0x9a, 0xd6, 0x26, 0x03, 0x73, 0x7c, 0x3a, 0x67, 0x6f, 0x16,
|
|
0x61, 0x96, 0xcf, 0x31, 0x2d, 0x4e, 0x6e, 0x07, 0x92, 0xc6, 0x2d, 0x80, 0xb8, 0x7a, 0xa5, 0xba,
|
|
0xe1, 0xd6, 0xe1, 0x2c, 0x4c, 0x9b, 0x39, 0x66, 0x6f, 0xf3, 0x30, 0x63, 0x26, 0x5a, 0x5d, 0xe5,
|
|
0xfe, 0x92, 0xc0, 0x5d, 0x64, 0x65, 0xbf, 0xf8, 0x0b, 0x9d, 0x81, 0x27, 0x2a, 0xd5, 0x8d, 0x62,
|
|
0x65, 0xab, 0x50, 0xde, 0x7e, 0xbd, 0xb0, 0x59, 0x2e, 0x5a, 0x5c, 0xb0, 0x77, 0xb8, 0x02, 0xc7,
|
|
0xbc, 0x0a, 0x5e, 0xdb, 0xdd, 0xdd, 0x49, 0x0b, 0xe8, 0x24, 0x2c, 0x7b, 0x95, 0x28, 0x62, 0x95,
|
|
0xca, 0xdd, 0x00, 0x34, 0x7c, 0x9b, 0x12, 0x12, 0xe1, 0x84, 0x59, 0xcd, 0xcb, 0x6c, 0x1d, 0x87,
|
|
0x25, 0x97, 0x32, 0xf4, 0x77, 0x5a, 0xc8, 0x7d, 0x5f, 0x20, 0x2d, 0x3b, 0x02, 0xac, 0xac, 0xe5,
|
|
0xad, 0xd2, 0xd6, 0x9a, 0xb7, 0x41, 0x7c, 0x1c, 0x8e, 0xbb, 0x94, 0xe1, 0x0c, 0x9f, 0xc0, 0x28,
|
|
0x77, 0x16, 0xb1, 0xac, 0x5f, 0x04, 0x1b, 0x19, 0x97, 0x12, 0x54, 0xc2, 0xa2, 0x58, 0xbf, 0xdc,
|
|
0x60, 0x60, 0xc3, 0x5b, 0x2e, 0xa6, 0x63, 0xb9, 0x1b, 0xe6, 0x69, 0x0f, 0x0b, 0xfa, 0x0a, 0x1c,
|
|
0xdb, 0xa9, 0x56, 0x7e, 0xa4, 0xb4, 0xbe, 0x3b, 0x02, 0xf8, 0x50, 0x09, 0x96, 0xc0, 0x80, 0xe7,
|
|
0x3e, 0x63, 0x9e, 0x63, 0xa2, 0xd2, 0x74, 0x0c, 0x32, 0x46, 0x15, 0x17, 0x89, 0xc2, 0x02, 0xc9,
|
|
0xe7, 0x9a, 0x52, 0xb5, 0x04, 0xf3, 0xb6, 0x0c, 0x4e, 0xb2, 0xde, 0x34, 0x3f, 0x02, 0x66, 0xdf,
|
|
0x01, 0x2c, 0xb2, 0x92, 0x2e, 0x02, 0x34, 0x0f, 0x33, 0x7c, 0x66, 0xe5, 0xc6, 0x76, 0xa9, 0x98,
|
|
0x16, 0xb8, 0x6e, 0x49, 0xf2, 0x46, 0xb5, 0xb0, 0x8d, 0xf5, 0x20, 0x92, 0xfb, 0x71, 0xeb, 0x7a,
|
|
0x09, 0xdb, 0x07, 0x81, 0xe8, 0x14, 0xac, 0xb0, 0x1a, 0xd5, 0xca, 0x66, 0xc9, 0x8b, 0x3f, 0x16,
|
|
0xb1, 0xf6, 0x52, 0xaf, 0x96, 0xb0, 0x3d, 0x39, 0x0d, 0x8f, 0xbb, 0xe6, 0xda, 0x66, 0xa6, 0x48,
|
|
0xee, 0x7f, 0x5b, 0x5f, 0x36, 0x3a, 0x85, 0xeb, 0x49, 0x10, 0x59, 0x0b, 0xa3, 0x05, 0xcc, 0xea,
|
|
0x69, 0xa4, 0x90, 0x59, 0x44, 0x8d, 0x12, 0x34, 0x4b, 0x2c, 0xbc, 0x84, 0x4d, 0x84, 0x13, 0x5e,
|
|
0xb0, 0x0c, 0x81, 0x1b, 0xd1, 0x97, 0xe5, 0x0d, 0xc4, 0xb1, 0x1d, 0x32, 0xce, 0xb4, 0x62, 0x3b,
|
|
0x54, 0xd8, 0xd9, 0xf1, 0xb0, 0x43, 0x66, 0x0e, 0x6f, 0x87, 0xcc, 0x44, 0x4e, 0x5a, 0x96, 0x21,
|
|
0xc5, 0x9d, 0x0d, 0x47, 0x13, 0x90, 0x24, 0x3f, 0x2f, 0xd5, 0x2f, 0xa6, 0x1f, 0xcb, 0xbd, 0x45,
|
|
0x0f, 0x81, 0xf3, 0xe7, 0xa9, 0xb1, 0xe4, 0x91, 0xb4, 0x52, 0x6d, 0xa7, 0xb2, 0x5d, 0x2b, 0x11,
|
|
0x01, 0x59, 0xaf, 0x14, 0x4b, 0xcc, 0x22, 0x38, 0xb3, 0xca, 0xc5, 0xfa, 0x6e, 0xe5, 0xd5, 0xd2,
|
|
0x76, 0x5a, 0xc0, 0xb3, 0xb7, 0x67, 0x36, 0x2b, 0x14, 0xc9, 0xa9, 0x30, 0x69, 0x3b, 0x6c, 0x8d,
|
|
0x19, 0x43, 0x12, 0xb0, 0x0c, 0x92, 0x2a, 0x85, 0xeb, 0xbb, 0xd7, 0x2a, 0xd5, 0xf2, 0x9b, 0xc4,
|
|
0x92, 0x19, 0x5d, 0x67, 0x61, 0xc1, 0x5e, 0xaa, 0xbc, 0xb5, 0xb3, 0x59, 0x5e, 0x2f, 0xef, 0x32,
|
|
0x1b, 0x68, 0xcb, 0xab, 0x96, 0xae, 0x56, 0x4b, 0xb5, 0x6b, 0x66, 0x9f, 0xfb, 0x30, 0xeb, 0x72,
|
|
0x16, 0x1b, 0x6b, 0x0e, 0x49, 0xde, 0xc1, 0x2d, 0x59, 0x76, 0xf3, 0x46, 0x69, 0x2d, 0xfd, 0x18,
|
|
0xb1, 0x63, 0x2e, 0x99, 0x64, 0xb0, 0x0a, 0x1b, 0xa5, 0x6d, 0xdc, 0x31, 0x36, 0x32, 0x2e, 0x65,
|
|
0xb6, 0x0b, 0x8c, 0xf7, 0x1d, 0x40, 0xc3, 0x67, 0xb4, 0x89, 0xe1, 0xc2, 0xa9, 0xd7, 0x77, 0xd9,
|
|
0xe4, 0x4f, 0x2a, 0xad, 0x15, 0x6a, 0xe5, 0x75, 0xea, 0x2c, 0xba, 0xe4, 0xee, 0x54, 0x6a, 0xb8,
|
|
0x43, 0xf7, 0xcc, 0xed, 0xca, 0x36, 0xee, 0xad, 0x0e, 0x73, 0x6e, 0xa7, 0x38, 0x31, 0x83, 0x39,
|
|
0x84, 0xb5, 0x52, 0xb5, 0xe0, 0x61, 0xda, 0x6c, 0xa5, 0x0c, 0xe9, 0x2c, 0xec, 0xec, 0x18, 0xa6,
|
|
0x4d, 0x37, 0x3f, 0xd4, 0xb5, 0x62, 0xd0, 0x9c, 0x49, 0x24, 0xfc, 0x77, 0x13, 0x57, 0xcb, 0x2a,
|
|
0x70, 0x45, 0x4c, 0xb9, 0x3d, 0x01, 0xd9, 0xe1, 0x5c, 0x4e, 0x80, 0xbf, 0xe0, 0x38, 0x28, 0x61,
|
|
0x11, 0x66, 0x69, 0x39, 0xad, 0xe9, 0x61, 0x0c, 0x2c, 0xa3, 0xe1, 0x28, 0x66, 0xb7, 0xdc, 0x9c,
|
|
0x16, 0x3b, 0xca, 0x61, 0x6b, 0x45, 0x4c, 0x58, 0x24, 0xf7, 0x75, 0xeb, 0xdb, 0x59, 0xb7, 0xed,
|
|
0x45, 0xf4, 0x14, 0x9c, 0xe1, 0xdb, 0x18, 0x6d, 0xa5, 0x72, 0xf0, 0xe4, 0xa8, 0xc2, 0x36, 0x53,
|
|
0x75, 0x0e, 0x4e, 0x8f, 0x2a, 0xcb, 0xdb, 0x2b, 0x07, 0x5b, 0xbc, 0x8c, 0xd6, 0x19, 0x78, 0x62,
|
|
0x24, 0x54, 0xd3, 0x72, 0xf9, 0x74, 0xcd, 0x9b, 0xaf, 0x3d, 0x98, 0xb2, 0x6f, 0x51, 0x18, 0xcb,
|
|
0x10, 0x4f, 0xd9, 0x60, 0x4b, 0x49, 0x37, 0xc1, 0x60, 0xcb, 0x1b, 0x77, 0xa9, 0xf8, 0x7d, 0x81,
|
|
0xc6, 0x11, 0x1c, 0x22, 0x21, 0xc2, 0x09, 0xab, 0x8e, 0xf7, 0x24, 0xee, 0x52, 0xc6, 0x10, 0x86,
|
|
0x72, 0x91, 0xca, 0xa4, 0x5b, 0x33, 0x8c, 0x25, 0x11, 0x63, 0xc1, 0xe7, 0xc8, 0xaf, 0x54, 0x37,
|
|
0x70, 0x76, 0x14, 0x1b, 0x24, 0x97, 0x6c, 0x53, 0x8c, 0x62, 0x1e, 0x05, 0xc8, 0x4f, 0xdc, 0x42,
|
|
0x3c, 0xf7, 0x45, 0x81, 0xee, 0x03, 0xb8, 0xc4, 0x6d, 0xf0, 0xc0, 0xe1, 0xca, 0x6c, 0x1c, 0xae,
|
|
0x95, 0x77, 0xbc, 0x08, 0x5d, 0x81, 0x63, 0x5e, 0x05, 0xb1, 0xdd, 0xa0, 0x33, 0xb2, 0x57, 0x89,
|
|
0xca, 0x9a, 0xc1, 0x8e, 0x48, 0xee, 0x1d, 0x00, 0x2b, 0xa2, 0x82, 0x4d, 0x31, 0xad, 0xe0, 0xe2,
|
|
0x6f, 0x2c, 0xc3, 0x22, 0x97, 0x57, 0xa9, 0x6e, 0x14, 0xb6, 0xcb, 0x35, 0x62, 0x51, 0x68, 0x14,
|
|
0x80, 0xcb, 0x64, 0x0c, 0xa7, 0x9e, 0xdc, 0x70, 0x3a, 0xe5, 0x46, 0x3a, 0x7a, 0xf9, 0x7b, 0x5f,
|
|
0x15, 0x60, 0x66, 0xcb, 0x0c, 0xf1, 0xd4, 0x64, 0x75, 0xbf, 0xdd, 0x90, 0xd1, 0xab, 0x30, 0x76,
|
|
0x4d, 0x96, 0x3a, 0xfa, 0xde, 0xe7, 0xd0, 0xc2, 0x50, 0x1c, 0xa4, 0xd4, 0xed, 0xeb, 0x07, 0x59,
|
|
0x8f, 0x74, 0x31, 0x7d, 0xe7, 0x5f, 0xff, 0xfb, 0xf7, 0x22, 0x80, 0x92, 0xf9, 0x3d, 0xd6, 0xc2,
|
|
0x06, 0xc4, 0xab, 0xb2, 0xd4, 0x3c, 0x08, 0xdd, 0xd4, 0x14, 0x69, 0x2a, 0x89, 0x12, 0x79, 0x95,
|
|
0xd4, 0xdf, 0x86, 0xa4, 0x71, 0xf7, 0xae, 0x67, 0x5b, 0x8b, 0x43, 0xe9, 0x35, 0x5d, 0x1d, 0x34,
|
|
0x74, 0x71, 0x86, 0x34, 0x96, 0x42, 0xe3, 0xf9, 0x7d, 0xa3, 0x8d, 0x0e, 0x4c, 0x6d, 0xc8, 0xfa,
|
|
0x9b, 0x34, 0xd0, 0x55, 0x54, 0x1a, 0x9a, 0x67, 0xab, 0xbe, 0x5f, 0x88, 0x71, 0x8d, 0x88, 0xf3,
|
|
0xa4, 0xa7, 0x69, 0x34, 0x99, 0x67, 0xe5, 0xf3, 0x4d, 0xdc, 0xf6, 0x2d, 0x48, 0x6c, 0xc8, 0x7a,
|
|
0x59, 0xea, 0x7a, 0xf6, 0xf2, 0x84, 0x5f, 0x2f, 0x65, 0xa9, 0x2b, 0x9e, 0xbc, 0x73, 0x37, 0x33,
|
|
0x0d, 0x93, 0xd2, 0x40, 0xdf, 0x93, 0x7b, 0x3a, 0x9e, 0x8f, 0xe4, 0x26, 0xe9, 0x30, 0x81, 0x62,
|
|
0xf9, 0xb6, 0xd4, 0x45, 0x9f, 0x17, 0x20, 0xb5, 0x21, 0x93, 0x78, 0xfc, 0xda, 0x41, 0xb9, 0x88,
|
|
0x9e, 0x0c, 0x12, 0xc2, 0x2c, 0x17, 0xb3, 0x81, 0x5f, 0x81, 0x16, 0xc5, 0x3b, 0x77, 0x33, 0x29,
|
|
0xba, 0x31, 0xb9, 0x8a, 0x47, 0x86, 0x74, 0x3f, 0x89, 0x52, 0x79, 0x9c, 0xa2, 0xe5, 0xdf, 0x69,
|
|
0x37, 0xdf, 0x45, 0x5f, 0x15, 0x60, 0xce, 0x44, 0x41, 0x9e, 0x97, 0xdc, 0xe8, 0x28, 0x37, 0xa5,
|
|
0x0e, 0x3a, 0xed, 0xd7, 0x0d, 0x29, 0x1c, 0x02, 0xcd, 0x05, 0x37, 0x34, 0x19, 0xb4, 0x90, 0x6f,
|
|
0x91, 0x0e, 0x19, 0xa8, 0xfa, 0xcd, 0x03, 0xba, 0xc5, 0xf9, 0x73, 0x02, 0xa4, 0xa8, 0xba, 0xe3,
|
|
0x16, 0x34, 0x74, 0x29, 0xf8, 0x73, 0xe0, 0x2c, 0xb6, 0x9d, 0xbd, 0x1c, 0xa6, 0x0a, 0x75, 0xfe,
|
|
0xc4, 0xb3, 0x6e, 0x28, 0x67, 0xc5, 0x29, 0x03, 0x9e, 0x46, 0x8a, 0xbf, 0x28, 0xe4, 0x30, 0xc0,
|
|
0x89, 0xb2, 0x86, 0x9b, 0xb8, 0xde, 0x6b, 0xbf, 0x35, 0x90, 0x03, 0x20, 0x24, 0xe5, 0x70, 0x8d,
|
|
0xe0, 0x08, 0xb9, 0x2a, 0x0c, 0xe1, 0x19, 0x37, 0x84, 0x08, 0xa5, 0x0d, 0x84, 0x6d, 0x6d, 0x40,
|
|
0xf1, 0xfc, 0xa4, 0x00, 0x40, 0xcf, 0x60, 0xe0, 0xfa, 0xfe, 0xf0, 0xac, 0xb2, 0x06, 0xbc, 0x53,
|
|
0x41, 0x18, 0x28, 0x3e, 0x7e, 0xe7, 0x6e, 0x66, 0x02, 0xc8, 0xc9, 0x88, 0xd5, 0xb7, 0xd5, 0xb6,
|
|
0x2e, 0x53, 0x0d, 0x16, 0x13, 0x14, 0x11, 0xe6, 0xd5, 0x97, 0x05, 0x98, 0x2a, 0xca, 0x52, 0x43,
|
|
0x6f, 0xef, 0x1b, 0x70, 0x82, 0x8a, 0x7b, 0x30, 0x0c, 0x97, 0x5d, 0x31, 0x1c, 0xcb, 0x2e, 0x72,
|
|
0xb2, 0x9e, 0xaf, 0x37, 0x4d, 0x08, 0x06, 0xa8, 0xea, 0xc3, 0x07, 0xa5, 0xda, 0x40, 0xfd, 0x65,
|
|
0x01, 0x92, 0x9b, 0x4a, 0xe3, 0xf6, 0x7d, 0x80, 0x73, 0xde, 0x15, 0xce, 0x42, 0x76, 0xc6, 0x06,
|
|
0xa7, 0xa3, 0x34, 0x6e, 0x63, 0x20, 0x5f, 0x10, 0x00, 0xae, 0xf7, 0x3a, 0xf7, 0x07, 0xca, 0xaa,
|
|
0x2b, 0x94, 0x4c, 0x76, 0xd6, 0x06, 0x65, 0xd0, 0x33, 0xc0, 0xa8, 0x00, 0x45, 0xb9, 0x23, 0x87,
|
|
0x1c, 0x25, 0xaf, 0xf9, 0xea, 0xd4, 0x9d, 0xbb, 0x99, 0x49, 0x7a, 0x1c, 0x68, 0xb5, 0x49, 0x9a,
|
|
0xa5, 0x96, 0x31, 0x67, 0xb3, 0x8c, 0x5f, 0x12, 0xe8, 0xe9, 0x1a, 0x7a, 0x14, 0x58, 0x43, 0xbe,
|
|
0x07, 0x03, 0x68, 0x41, 0x43, 0x77, 0xce, 0x04, 0x2b, 0xae, 0x89, 0x39, 0x37, 0x7d, 0x9e, 0x47,
|
|
0x36, 0x56, 0x34, 0x18, 0x86, 0xf7, 0x05, 0x40, 0xfc, 0xe7, 0xf2, 0xf7, 0x19, 0xda, 0x8f, 0xdc,
|
|
0xb9, 0x9b, 0x41, 0xe6, 0xc6, 0xf0, 0xaa, 0xd4, 0xef, 0x5b, 0x08, 0x57, 0xd1, 0xf9, 0xbc, 0x71,
|
|
0xd3, 0x23, 0x05, 0xc9, 0x7d, 0xd4, 0xab, 0xe5, 0xdf, 0xd1, 0xe4, 0x46, 0x9d, 0x87, 0xfe, 0xd7,
|
|
0x04, 0xf2, 0x00, 0xc7, 0xfd, 0x86, 0x8c, 0xed, 0x37, 0x90, 0xd3, 0x31, 0x16, 0xd4, 0x39, 0x84,
|
|
0xf2, 0x8a, 0xda, 0x72, 0xf0, 0xf2, 0x6b, 0x82, 0xf9, 0xb5, 0xd4, 0xfd, 0x06, 0x75, 0xf1, 0xce,
|
|
0xdd, 0xcc, 0x94, 0x79, 0xf0, 0xc6, 0x3e, 0xfb, 0xd9, 0x79, 0x68, 0x80, 0xfb, 0x8a, 0x40, 0x7c,
|
|
0x1e, 0xee, 0xa1, 0xf5, 0xc0, 0x52, 0x1f, 0xe8, 0x4c, 0x1b, 0xf7, 0xb8, 0x7f, 0x20, 0x01, 0xec,
|
|
0x33, 0x10, 0xbf, 0x2c, 0xc0, 0xcc, 0xd0, 0x1b, 0xf0, 0xc8, 0xf7, 0x86, 0x1e, 0xaf, 0x67, 0xe3,
|
|
0xfd, 0x1d, 0x36, 0xae, 0x4e, 0x30, 0xab, 0xc1, 0x90, 0x62, 0xab, 0xf1, 0xd7, 0x05, 0x98, 0x60,
|
|
0x4c, 0xa4, 0x4f, 0xb2, 0x07, 0x65, 0x61, 0xa0, 0x33, 0x40, 0xe6, 0x5b, 0xe7, 0x1e, 0x3e, 0x03,
|
|
0xb2, 0xd9, 0x55, 0xea, 0xd4, 0xfc, 0x82, 0x00, 0xd3, 0x54, 0x28, 0x2c, 0x50, 0x57, 0x82, 0x33,
|
|
0x8f, 0x7f, 0x5b, 0x3c, 0x7b, 0x2e, 0x30, 0xc8, 0x60, 0x96, 0x9f, 0x20, 0xc4, 0x6c, 0xfb, 0x86,
|
|
0x00, 0xcb, 0x55, 0x59, 0x93, 0x7b, 0x4d, 0xee, 0xb9, 0x71, 0xaa, 0xd7, 0x5b, 0x61, 0xb8, 0xe8,
|
|
0x65, 0x7e, 0x3f, 0xe5, 0x8a, 0x26, 0x27, 0x9e, 0x1e, 0x42, 0x83, 0x27, 0x47, 0x8c, 0x63, 0x9f,
|
|
0x83, 0xe0, 0x18, 0x58, 0xfa, 0xf6, 0xf9, 0x3d, 0x1d, 0x58, 0xf3, 0x51, 0xf1, 0x40, 0x03, 0x4b,
|
|
0xdf, 0xd1, 0xb6, 0x0f, 0x2c, 0x05, 0x15, 0x62, 0x60, 0xf9, 0x47, 0xbc, 0x83, 0x0d, 0x2c, 0xa9,
|
|
0x11, 0x6c, 0x60, 0x09, 0x42, 0xcc, 0xb6, 0x3f, 0x0f, 0xd3, 0xf4, 0x38, 0x69, 0x78, 0xc6, 0x79,
|
|
0x8d, 0xe5, 0x39, 0x57, 0x00, 0xb3, 0x39, 0x17, 0x16, 0x59, 0x62, 0xc5, 0x3d, 0x2b, 0xce, 0xe6,
|
|
0x31, 0xa5, 0x29, 0x3f, 0x18, 0xb1, 0x22, 0x50, 0xbc, 0xc4, 0x8a, 0x33, 0xba, 0xc6, 0x4b, 0xd7,
|
|
0xf7, 0xd4, 0xe8, 0x72, 0x0f, 0x7d, 0x07, 0x32, 0xba, 0xec, 0xf9, 0x67, 0x87, 0xd1, 0x35, 0xa0,
|
|
0x85, 0x30, 0xba, 0xf6, 0x77, 0xb0, 0x83, 0x19, 0x5d, 0xe3, 0x71, 0xe9, 0x40, 0x46, 0x97, 0x21,
|
|
0xc5, 0x4c, 0xfc, 0xab, 0xd6, 0xb2, 0x76, 0xeb, 0x96, 0x14, 0x9c, 0x83, 0xe7, 0x43, 0x3c, 0x53,
|
|
0xad, 0xf9, 0x2d, 0x82, 0x08, 0xa8, 0x2e, 0xee, 0xfe, 0xfb, 0x02, 0x2c, 0xd7, 0xe4, 0x5e, 0xd3,
|
|
0xe3, 0xc9, 0x66, 0xf4, 0xb2, 0xff, 0x01, 0x9f, 0x51, 0x6f, 0x3d, 0x7b, 0x4a, 0x63, 0xd1, 0x95,
|
|
0x6d, 0xab, 0xe2, 0x39, 0x9b, 0x34, 0xb2, 0x86, 0xf1, 0xb2, 0xb2, 0xd7, 0xd4, 0x64, 0xbd, 0xc7,
|
|
0xf5, 0x80, 0x99, 0xf9, 0x35, 0x01, 0x50, 0x4d, 0xd6, 0xcb, 0xbd, 0xb6, 0xde, 0x96, 0x3a, 0x06,
|
|
0x0e, 0xe4, 0x7f, 0xbb, 0xa8, 0xfd, 0x0d, 0x6b, 0x4f, 0x94, 0x2f, 0xb9, 0xa2, 0x3c, 0x2d, 0xae,
|
|
0xb8, 0xa3, 0x6c, 0x53, 0x1c, 0xed, 0xcf, 0x11, 0x73, 0xf2, 0x07, 0x02, 0xcc, 0x5b, 0x2b, 0x74,
|
|
0x2b, 0x48, 0xa7, 0xa1, 0x97, 0x0e, 0x73, 0x1a, 0xcb, 0xc0, 0xfa, 0x89, 0xc3, 0x55, 0x66, 0xab,
|
|
0xe3, 0xf2, 0x9d, 0xbb, 0x99, 0x05, 0x98, 0x23, 0x14, 0x75, 0xcd, 0x42, 0x96, 0x8c, 0x9c, 0x13,
|
|
0x4f, 0x19, 0xb4, 0xb1, 0xb3, 0x56, 0xef, 0xe6, 0xad, 0x72, 0xb6, 0x05, 0xfe, 0xdf, 0x11, 0x60,
|
|
0x79, 0xc3, 0x1a, 0xfd, 0xa1, 0x57, 0xb4, 0xbd, 0xc2, 0x43, 0xcf, 0x07, 0x1d, 0x1d, 0x67, 0x8b,
|
|
0xe2, 0x73, 0x74, 0x61, 0xd2, 0x27, 0xbf, 0x2c, 0xcc, 0x2b, 0xe8, 0x44, 0x9e, 0xa4, 0xb5, 0x65,
|
|
0xcd, 0x1c, 0x0d, 0x2d, 0xdf, 0x30, 0xab, 0xa3, 0x7f, 0x24, 0x80, 0xb8, 0x21, 0xeb, 0xec, 0x51,
|
|
0xcd, 0x07, 0x88, 0xf8, 0x15, 0x77, 0xc4, 0x67, 0xd1, 0x93, 0xa3, 0x11, 0xe7, 0xd9, 0x4b, 0x90,
|
|
0xe8, 0xdf, 0x08, 0x70, 0x82, 0x06, 0x1e, 0x3c, 0x51, 0xbf, 0x7c, 0x58, 0x74, 0xb4, 0xdd, 0x23,
|
|
0x50, 0xf7, 0x12, 0xf3, 0xdb, 0x29, 0x75, 0x96, 0x82, 0x3c, 0x21, 0xfa, 0x0c, 0x08, 0x16, 0x1f,
|
|
0x4c, 0x19, 0x35, 0xc1, 0xf7, 0x9e, 0x32, 0xda, 0xee, 0xfd, 0xa0, 0x2c, 0x1b, 0x80, 0xb2, 0xef,
|
|
0x08, 0x70, 0x82, 0x2e, 0xc7, 0x3d, 0x29, 0x7b, 0xf1, 0xb0, 0xc8, 0x46, 0x4c, 0xf0, 0x2f, 0xd0,
|
|
0x88, 0x2a, 0xc3, 0xcc, 0x2d, 0xdc, 0x57, 0x72, 0x7e, 0xfa, 0xf1, 0x1e, 0x8d, 0x72, 0x0e, 0xbf,
|
|
0x7d, 0xed, 0xa5, 0x11, 0x97, 0x82, 0xe2, 0x37, 0x9b, 0x22, 0x8b, 0x3c, 0x17, 0x55, 0x58, 0x42,
|
|
0x8b, 0x6e, 0xe0, 0xa4, 0x96, 0x8c, 0xe7, 0xa6, 0x45, 0xbb, 0xec, 0x5b, 0xc0, 0x9e, 0x0b, 0x0d,
|
|
0x80, 0x49, 0xfb, 0x21, 0x90, 0x3f, 0xe3, 0x21, 0x0c, 0xc7, 0x44, 0x2f, 0xe8, 0x58, 0x0a, 0x30,
|
|
0x7a, 0xbb, 0x7c, 0x1f, 0x05, 0x3d, 0x93, 0xe8, 0x7b, 0x89, 0x3e, 0x3b, 0x0a, 0xfd, 0xd7, 0x04,
|
|
0x58, 0xb4, 0xcb, 0xb0, 0x85, 0xfe, 0xe9, 0xd0, 0x20, 0x46, 0x48, 0xed, 0x65, 0x2f, 0xa9, 0x5d,
|
|
0xca, 0x79, 0x0a, 0xc6, 0x37, 0x04, 0xc8, 0x70, 0xe2, 0x6a, 0x7f, 0xb7, 0xda, 0x4b, 0x64, 0x9f,
|
|
0x0d, 0x8a, 0xda, 0xd6, 0x1c, 0x61, 0x9f, 0x8b, 0xd8, 0x1e, 0x47, 0xcb, 0x6e, 0xe8, 0x3a, 0xb4,
|
|
0x2e, 0xfa, 0x17, 0x02, 0x2c, 0xdb, 0x45, 0xd7, 0x0e, 0xf2, 0xa5, 0x43, 0x81, 0x61, 0x22, 0x7c,
|
|
0x48, 0x4a, 0x9e, 0xf7, 0x10, 0x84, 0x15, 0x71, 0x14, 0x29, 0x58, 0x18, 0x30, 0x35, 0x76, 0x51,
|
|
0xbe, 0x17, 0xd4, 0x30, 0x91, 0xbe, 0xd7, 0xd4, 0x64, 0xfd, 0xa8, 0xf9, 0x25, 0x01, 0x96, 0xed,
|
|
0xa2, 0x6d, 0xa7, 0xe6, 0xb9, 0x43, 0x01, 0x1a, 0x21, 0xe2, 0x57, 0xbc, 0x44, 0xfc, 0x78, 0x6e,
|
|
0xa4, 0x10, 0xfd, 0x45, 0x01, 0xc6, 0xe9, 0x90, 0x57, 0xd4, 0x16, 0xba, 0x18, 0xe0, 0x75, 0x2d,
|
|
0xdb, 0xc3, 0x56, 0xfe, 0xfb, 0x70, 0x15, 0xb5, 0x25, 0xae, 0x50, 0x17, 0x57, 0x51, 0x5b, 0xab,
|
|
0xe4, 0x30, 0x39, 0x45, 0x06, 0x62, 0x9c, 0x84, 0x04, 0x31, 0xbf, 0x6e, 0x43, 0x72, 0x43, 0xd6,
|
|
0xb7, 0x0e, 0x30, 0x08, 0x2f, 0xe5, 0x3a, 0x13, 0xa0, 0x2b, 0xb2, 0xae, 0x3b, 0xe1, 0x12, 0x7f,
|
|
0x04, 0x94, 0xa4, 0xf1, 0xc7, 0xae, 0x8c, 0xd7, 0x98, 0x78, 0x26, 0xaa, 0xa8, 0xad, 0xb5, 0x03,
|
|
0x7a, 0x1e, 0x91, 0xed, 0xb7, 0xf9, 0xae, 0x93, 0x68, 0xe9, 0xe0, 0x48, 0xce, 0xbb, 0x20, 0xe1,
|
|
0xb6, 0xdb, 0x08, 0xa0, 0xfa, 0xcd, 0x03, 0xf6, 0x9a, 0xeb, 0x8f, 0xc1, 0xb4, 0xb5, 0x41, 0x33,
|
|
0x9a, 0x17, 0x81, 0xd8, 0xbe, 0x4a, 0x17, 0x68, 0xb8, 0x77, 0x4b, 0x76, 0x97, 0xb2, 0x73, 0x06,
|
|
0x23, 0x9c, 0x9b, 0x31, 0x3f, 0x06, 0xd3, 0xd5, 0x07, 0xdb, 0xbf, 0x7d, 0xdf, 0xe5, 0x7d, 0xb2,
|
|
0xd2, 0x22, 0xe7, 0xba, 0x0f, 0xb8, 0x77, 0xa2, 0xaf, 0x84, 0x7c, 0xa4, 0xd3, 0x10, 0xcd, 0xe7,
|
|
0x42, 0xd7, 0x63, 0xeb, 0x97, 0x4b, 0x2e, 0xa3, 0x76, 0x5c, 0xcc, 0x98, 0xb0, 0xd9, 0xdb, 0xd3,
|
|
0xfc, 0x3a, 0xe5, 0xeb, 0x02, 0x4c, 0x15, 0x9a, 0x4d, 0x0e, 0xb7, 0xff, 0x0c, 0xe6, 0xf2, 0x6e,
|
|
0x70, 0x36, 0xf8, 0x13, 0xd8, 0x46, 0xf4, 0xc2, 0xce, 0xdd, 0x79, 0x31, 0xed, 0x84, 0x89, 0xe1,
|
|
0xfd, 0xa1, 0x00, 0xc7, 0x37, 0xe4, 0x9e, 0xac, 0x1a, 0x03, 0xeb, 0x3c, 0x0d, 0xec, 0xef, 0x2c,
|
|
0x7a, 0xbf, 0x54, 0x9c, 0x7d, 0xe9, 0x50, 0x75, 0x19, 0xb3, 0x4b, 0x6e, 0x64, 0x5c, 0x14, 0x9f,
|
|
0x1a, 0xe2, 0xf6, 0x3b, 0xf4, 0x9f, 0x77, 0xf3, 0xd6, 0x0b, 0xcc, 0x79, 0x6a, 0x4d, 0x30, 0x85,
|
|
0xdf, 0x16, 0x60, 0xd6, 0x38, 0xf0, 0xc0, 0x8f, 0x82, 0xaf, 0x7b, 0xee, 0xf5, 0x42, 0xf1, 0xc8,
|
|
0xa8, 0xc2, 0x10, 0xe0, 0xbc, 0x98, 0x0b, 0x06, 0x78, 0x4f, 0xa6, 0xbb, 0x69, 0xdf, 0x24, 0x0b,
|
|
0x77, 0x7d, 0xeb, 0xc0, 0xf9, 0xc2, 0x71, 0x80, 0xa9, 0xc1, 0xfd, 0x4d, 0xe4, 0x91, 0x3e, 0xfb,
|
|
0x10, 0xe0, 0x53, 0xa2, 0xe8, 0x0d, 0xb8, 0x6e, 0xbc, 0xad, 0xfd, 0x15, 0x01, 0x66, 0x68, 0xb8,
|
|
0x92, 0xe7, 0xa9, 0xaf, 0x42, 0xba, 0x3f, 0xbb, 0xec, 0x09, 0xf0, 0xa2, 0x1b, 0xc0, 0xe5, 0xdc,
|
|
0x92, 0x27, 0x40, 0xf4, 0x93, 0x02, 0xcc, 0x18, 0xf3, 0x45, 0x59, 0xea, 0xfa, 0x78, 0x65, 0xe7,
|
|
0x03, 0xc8, 0xa7, 0xd9, 0x0a, 0x39, 0x23, 0xe1, 0x7a, 0x68, 0xc4, 0xdc, 0xc2, 0xea, 0xca, 0xf9,
|
|
0xb6, 0xd4, 0xa5, 0x53, 0x2d, 0xfa, 0x29, 0x0a, 0xc5, 0xf1, 0x4e, 0xaf, 0x17, 0x94, 0xd5, 0xc0,
|
|
0xcf, 0x57, 0xd2, 0x87, 0x9d, 0x30, 0x6b, 0x66, 0x60, 0x1a, 0xb3, 0x86, 0x46, 0x48, 0xec, 0x81,
|
|
0x4a, 0x06, 0x87, 0x84, 0x4e, 0xf2, 0xf4, 0x23, 0xb0, 0x6f, 0x72, 0x96, 0x88, 0x5d, 0x55, 0x15,
|
|
0xd0, 0x12, 0xd9, 0xde, 0xb4, 0x0d, 0x64, 0x89, 0x68, 0x0d, 0x62, 0x2f, 0x11, 0xa4, 0x39, 0x90,
|
|
0xee, 0x06, 0x89, 0x01, 0xc5, 0xe2, 0xff, 0x0f, 0x04, 0x98, 0xa1, 0xb1, 0x7a, 0x1e, 0xe8, 0x95,
|
|
0x60, 0x9b, 0x79, 0x47, 0xc1, 0xfa, 0xd2, 0x08, 0xac, 0x27, 0xb3, 0x59, 0x27, 0x56, 0x2b, 0x42,
|
|
0xc5, 0x8e, 0x9b, 0xf0, 0xea, 0x10, 0x14, 0xb5, 0xfb, 0xab, 0xc1, 0x23, 0xf5, 0x75, 0x16, 0x66,
|
|
0x38, 0x88, 0x9c, 0x3b, 0x77, 0x2c, 0x37, 0x02, 0x23, 0xfa, 0x75, 0xfb, 0x0c, 0xca, 0x22, 0x74,
|
|
0x81, 0x66, 0x50, 0x97, 0x0b, 0x7d, 0x02, 0xcd, 0xa0, 0x6e, 0x17, 0x28, 0x11, 0xc7, 0xd9, 0x43,
|
|
0x6c, 0xf9, 0x89, 0xd4, 0x20, 0x80, 0x9b, 0x48, 0xbf, 0x2d, 0xc0, 0x14, 0x6d, 0xcc, 0x7c, 0x07,
|
|
0xf1, 0x99, 0x50, 0xf7, 0xee, 0x19, 0xd8, 0x9f, 0x0d, 0x59, 0x8b, 0x21, 0x5f, 0xf5, 0xd8, 0x26,
|
|
0x5e, 0x10, 0x67, 0xac, 0x6d, 0x62, 0x0e, 0xef, 0x7b, 0x82, 0xf9, 0x11, 0x04, 0x39, 0x41, 0x76,
|
|
0x2e, 0x60, 0xb7, 0xe5, 0x62, 0x36, 0xcc, 0x83, 0xa9, 0xc4, 0x93, 0x44, 0x76, 0x5c, 0x28, 0x52,
|
|
0xa6, 0xd8, 0xd2, 0x68, 0xca, 0xbe, 0x85, 0x8d, 0x7e, 0x5a, 0x80, 0x49, 0xb6, 0x34, 0x64, 0x6f,
|
|
0x3f, 0x06, 0x65, 0xa2, 0xdd, 0xbb, 0x0f, 0xfa, 0xe0, 0x24, 0xd9, 0x0b, 0x98, 0x36, 0x5f, 0xb6,
|
|
0xe3, 0x74, 0x6a, 0x4a, 0x1c, 0x37, 0xb1, 0x61, 0x7e, 0xfd, 0x6d, 0x01, 0x26, 0xd9, 0x32, 0x2f,
|
|
0x24, 0x32, 0xdb, 0xc3, 0xb8, 0xc1, 0x91, 0x5d, 0x24, 0xda, 0x64, 0x47, 0x66, 0x72, 0x6e, 0x36,
|
|
0xeb, 0xe0, 0x1c, 0x86, 0xf8, 0x8b, 0x02, 0xcc, 0x58, 0x7e, 0xb8, 0x01, 0x33, 0xc4, 0xc0, 0x06,
|
|
0xc6, 0xf6, 0x89, 0x51, 0xd8, 0xb0, 0x35, 0xb2, 0x1f, 0x4c, 0x70, 0xb8, 0xeb, 0xbf, 0x48, 0xac,
|
|
0xd1, 0xa3, 0x88, 0xd3, 0xee, 0xd6, 0xdf, 0x11, 0x60, 0x92, 0x9a, 0xc0, 0x43, 0x60, 0xf4, 0x32,
|
|
0x92, 0x58, 0x4f, 0xe7, 0xc0, 0xb8, 0x17, 0x81, 0x59, 0x48, 0x4b, 0x23, 0x72, 0x4e, 0x8d, 0xf8,
|
|
0xe7, 0xe6, 0x46, 0x89, 0xfd, 0x86, 0xd0, 0x00, 0x1b, 0x25, 0x23, 0xae, 0x14, 0xcd, 0xbe, 0x18,
|
|
0xfe, 0xbe, 0x4b, 0xd3, 0xd4, 0x3c, 0xeb, 0x61, 0x6a, 0xb0, 0x85, 0x64, 0xf7, 0xef, 0xba, 0x59,
|
|
0x9c, 0x5f, 0x13, 0x60, 0x7e, 0x43, 0xd6, 0xed, 0xa8, 0x88, 0xed, 0x59, 0x0d, 0x03, 0xa6, 0x5c,
|
|
0xcc, 0x86, 0xbe, 0xdb, 0x55, 0x5c, 0xf7, 0x80, 0xfc, 0x14, 0x3a, 0x37, 0x04, 0xf9, 0x1d, 0xeb,
|
|
0x3e, 0x8e, 0x77, 0x69, 0x26, 0x1b, 0x8a, 0x9f, 0xa5, 0x04, 0xb8, 0x3c, 0xc4, 0xea, 0xe5, 0x35,
|
|
0x5d, 0x0e, 0xf5, 0x20, 0x14, 0xf5, 0x9c, 0xf0, 0x14, 0x34, 0x0f, 0xb3, 0x06, 0x54, 0xe7, 0x34,
|
|
0x44, 0x42, 0xc2, 0x06, 0x54, 0xbb, 0x07, 0xf5, 0x1f, 0x04, 0x98, 0xb3, 0x4d, 0x41, 0xc6, 0x34,
|
|
0xfa, 0xe2, 0x21, 0xde, 0xa5, 0x0a, 0xbc, 0x46, 0x1a, 0xf1, 0x10, 0x9a, 0x78, 0xfd, 0xce, 0xdd,
|
|
0xcc, 0x8a, 0x2b, 0x2d, 0x68, 0xdc, 0x50, 0x15, 0x36, 0x10, 0xe2, 0x93, 0x79, 0xf7, 0x11, 0x70,
|
|
0x99, 0x6b, 0xbf, 0x2b, 0x40, 0xba, 0xd0, 0x6c, 0xda, 0x1f, 0xb9, 0xbd, 0x18, 0x0a, 0x68, 0xa1,
|
|
0xd9, 0xf4, 0x3f, 0xd0, 0x61, 0xab, 0x41, 0xb6, 0xab, 0xb2, 0x30, 0xe7, 0x20, 0xc6, 0x6e, 0x53,
|
|
0x96, 0x45, 0xe7, 0xa1, 0x2c, 0xce, 0x77, 0xfc, 0x0d, 0x01, 0x66, 0xa9, 0x23, 0x68, 0x47, 0xfe,
|
|
0x74, 0x28, 0x1c, 0xb4, 0x85, 0xb0, 0xe0, 0xcb, 0x01, 0xc0, 0x9f, 0xce, 0xae, 0xb8, 0x83, 0xb7,
|
|
0x3b, 0x93, 0xbf, 0x22, 0xc0, 0xac, 0xcd, 0x2c, 0x1e, 0x8a, 0x0c, 0xda, 0x82, 0xa7, 0x99, 0xdc,
|
|
0xb8, 0x73, 0x37, 0xb3, 0x0c, 0xf3, 0x0e, 0xbc, 0x0e, 0x6b, 0x29, 0xe6, 0x7c, 0x01, 0xa3, 0xdf,
|
|
0x37, 0x3d, 0x4b, 0xee, 0xab, 0xcc, 0x00, 0x07, 0x20, 0xbc, 0x5e, 0xb5, 0xcc, 0xbe, 0x70, 0x88,
|
|
0x9a, 0x4c, 0x1d, 0x5e, 0xbb, 0x73, 0x37, 0x73, 0x02, 0x66, 0x4c, 0x2b, 0xa4, 0x74, 0x64, 0x57,
|
|
0x65, 0x38, 0x27, 0x9e, 0xf2, 0x50, 0x06, 0xa2, 0xe8, 0xbc, 0x2a, 0xfc, 0x32, 0x5d, 0x35, 0xf1,
|
|
0x6f, 0xda, 0x86, 0x7c, 0x91, 0x37, 0xb0, 0x3b, 0x87, 0xcb, 0x93, 0x65, 0x48, 0x86, 0x5c, 0x44,
|
|
0x63, 0x91, 0x60, 0x97, 0xa2, 0x25, 0x71, 0xce, 0x31, 0x28, 0x04, 0x34, 0x8b, 0x1d, 0xa0, 0xb5,
|
|
0x41, 0xe7, 0xb6, 0x03, 0xf0, 0xe5, 0x70, 0x80, 0x71, 0x0b, 0x9e, 0x72, 0x53, 0xf0, 0xc5, 0x77,
|
|
0x52, 0xcc, 0xba, 0xe1, 0xcb, 0xd7, 0x6f, 0x0e, 0x3a, 0x24, 0xc2, 0xf1, 0x0f, 0xcd, 0x25, 0x1e,
|
|
0x0f, 0xf2, 0x52, 0x08, 0x90, 0x4c, 0x45, 0x43, 0x31, 0x36, 0x00, 0xf0, 0xac, 0x3b, 0xf0, 0x77,
|
|
0x6e, 0xcb, 0x07, 0xef, 0xb2, 0xb3, 0x77, 0x33, 0x36, 0xc5, 0x0c, 0x0d, 0xdc, 0x47, 0x29, 0xb1,
|
|
0x05, 0x5c, 0xb2, 0xcc, 0x39, 0xc1, 0xe8, 0x50, 0x49, 0xbc, 0xcc, 0xf3, 0x04, 0x89, 0xfe, 0xc8,
|
|
0x54, 0x46, 0xee, 0x20, 0x72, 0x00, 0x65, 0xf4, 0x7a, 0x5c, 0xc4, 0x5f, 0x19, 0x3d, 0x1f, 0x70,
|
|
0x11, 0x6f, 0xdc, 0xb9, 0x9b, 0x39, 0x3e, 0x7c, 0x3e, 0xd9, 0xa9, 0x8b, 0x17, 0xc5, 0xa7, 0x3c,
|
|
0x74, 0xd1, 0x76, 0x64, 0x99, 0x53, 0xc9, 0xdf, 0x10, 0x6c, 0xcf, 0xf4, 0x10, 0x0f, 0xe7, 0x42,
|
|
0x08, 0x9c, 0x41, 0x4e, 0x84, 0x39, 0xde, 0x7e, 0x21, 0x96, 0x25, 0x00, 0x31, 0x39, 0x74, 0x36,
|
|
0x08, 0x31, 0xc4, 0xdb, 0xf9, 0x81, 0x00, 0xf3, 0x6c, 0x83, 0xc5, 0xfe, 0xe5, 0x2f, 0x7a, 0x36,
|
|
0xe4, 0xb3, 0x4d, 0x6c, 0x67, 0xee, 0xa9, 0x10, 0x44, 0x89, 0xbb, 0x76, 0x53, 0x89, 0x09, 0xa2,
|
|
0xda, 0xe0, 0xa0, 0xe8, 0xbc, 0x78, 0xc6, 0x83, 0x22, 0xa5, 0xdd, 0x6c, 0xf0, 0x54, 0xe1, 0xa1,
|
|
0xf9, 0x6d, 0xf3, 0x30, 0x1c, 0x4f, 0xcf, 0xa5, 0x10, 0xc0, 0xd8, 0xbe, 0x5c, 0x28, 0x5a, 0xae,
|
|
0x07, 0xa4, 0xe5, 0x42, 0x36, 0xf0, 0xe8, 0x60, 0x62, 0x7e, 0x57, 0x80, 0x79, 0x6b, 0xb9, 0xc7,
|
|
0x13, 0x14, 0x52, 0xda, 0x42, 0x11, 0x23, 0x05, 0x24, 0xe6, 0x85, 0xec, 0x33, 0x41, 0x89, 0x71,
|
|
0xae, 0x0f, 0x31, 0x61, 0xd5, 0x0f, 0x07, 0x61, 0xf6, 0x05, 0xe5, 0x77, 0x4c, 0x03, 0x7d, 0x04,
|
|
0xa2, 0xbc, 0x8c, 0x73, 0xed, 0xce, 0xdd, 0xcc, 0x49, 0x6b, 0x02, 0xc1, 0xf8, 0x99, 0x6d, 0x76,
|
|
0x1a, 0x81, 0x5c, 0x70, 0x23, 0xf0, 0x9f, 0xcc, 0xcd, 0x6d, 0x0e, 0x04, 0xf7, 0xe0, 0xe8, 0xc5,
|
|
0xe0, 0xef, 0x70, 0x31, 0xcd, 0x09, 0xf1, 0x72, 0x97, 0xd8, 0x09, 0x38, 0x24, 0xc5, 0xec, 0x2b,
|
|
0x81, 0x28, 0xb2, 0xbf, 0xbd, 0x47, 0x4d, 0x04, 0x7d, 0xec, 0x0b, 0x8f, 0xce, 0x9f, 0x08, 0x90,
|
|
0xad, 0xca, 0x2d, 0xb6, 0xdb, 0x44, 0x60, 0xf0, 0x4f, 0xb4, 0x85, 0x1c, 0x26, 0xdf, 0xd8, 0x3d,
|
|
0xdf, 0xb8, 0xa8, 0x07, 0xa4, 0x74, 0x33, 0xbb, 0x11, 0x58, 0xf8, 0x2c, 0xea, 0xf2, 0x75, 0xfa,
|
|
0x69, 0x08, 0x7d, 0x4d, 0x8e, 0xbe, 0x30, 0x87, 0x29, 0xfe, 0xb7, 0x02, 0xcc, 0xda, 0x7c, 0x63,
|
|
0x7a, 0x39, 0x31, 0x7a, 0xe1, 0x30, 0xc1, 0x81, 0xa3, 0xc7, 0x15, 0x1c, 0x12, 0x4c, 0x96, 0xde,
|
|
0xee, 0xd3, 0x98, 0x78, 0x3a, 0x3f, 0x72, 0xb9, 0xce, 0xcd, 0xc6, 0xef, 0x0b, 0xf6, 0x57, 0x89,
|
|
0x1e, 0x50, 0xc0, 0x61, 0x8d, 0x84, 0x79, 0x5c, 0x68, 0xa1, 0x9b, 0x58, 0x48, 0xcc, 0xfb, 0xc7,
|
|
0x1b, 0x7e, 0x55, 0x00, 0x64, 0x0b, 0x86, 0xd2, 0x7b, 0xd0, 0x2f, 0x87, 0x01, 0xc3, 0xe6, 0xde,
|
|
0xf3, 0x61, 0xea, 0x10, 0x5f, 0x94, 0x0b, 0x41, 0x50, 0xf0, 0x56, 0x68, 0x54, 0x14, 0x8f, 0x8f,
|
|
0x44, 0xcf, 0x82, 0x3d, 0xc8, 0x16, 0x2e, 0x3d, 0x04, 0x76, 0x66, 0x31, 0xc2, 0x61, 0xbf, 0x3a,
|
|
0x1a, 0xfb, 0x99, 0x6c, 0x00, 0xce, 0x33, 0x57, 0x61, 0x61, 0x28, 0x98, 0x4a, 0x89, 0x08, 0x2b,
|
|
0x3d, 0xe1, 0x08, 0xa8, 0x8e, 0x26, 0xe0, 0xe9, 0xec, 0xaa, 0x3f, 0x01, 0xce, 0x19, 0x15, 0x13,
|
|
0x53, 0xfd, 0xe1, 0x25, 0xc6, 0x3e, 0x8b, 0xfe, 0x82, 0x00, 0xc8, 0xb6, 0xcc, 0x39, 0x1c, 0x21,
|
|
0xa3, 0xb6, 0xc9, 0x17, 0xac, 0x48, 0x09, 0x85, 0xcc, 0x6d, 0x64, 0x9d, 0xca, 0x05, 0xd1, 0xdd,
|
|
0xef, 0x0a, 0x90, 0xb5, 0x62, 0x85, 0x43, 0x2f, 0xf6, 0x78, 0x05, 0x0c, 0x9f, 0x0b, 0xff, 0x32,
|
|
0x03, 0x8d, 0x1a, 0x96, 0x48, 0xbc, 0x64, 0xc9, 0x8e, 0xda, 0x19, 0x3b, 0x24, 0x67, 0xc1, 0x0d,
|
|
0xe8, 0x0c, 0xad, 0x3d, 0x84, 0x78, 0x27, 0x02, 0x4b, 0xc3, 0x33, 0x82, 0x11, 0x47, 0x7c, 0xe5,
|
|
0xb0, 0xef, 0x46, 0x18, 0xb3, 0xc3, 0xa7, 0x0e, 0xdf, 0x00, 0x9b, 0x23, 0x6e, 0x06, 0xa1, 0xf3,
|
|
0x93, 0xe2, 0xf3, 0x3e, 0x43, 0x64, 0x5c, 0x53, 0xec, 0x1a, 0x5e, 0xfc, 0x43, 0x01, 0xe6, 0xad,
|
|
0x10, 0x05, 0xff, 0x76, 0xd2, 0xb3, 0xe1, 0xf1, 0x17, 0x9a, 0xcd, 0xec, 0xe5, 0xf0, 0xd5, 0xc4,
|
|
0x3f, 0x7b, 0xe7, 0x6e, 0xe6, 0x18, 0x64, 0x5d, 0x09, 0xb5, 0x14, 0xe8, 0x59, 0xf1, 0x62, 0x58,
|
|
0x4a, 0x99, 0xab, 0x93, 0xb1, 0x85, 0x38, 0x78, 0x22, 0x9f, 0x0f, 0x8f, 0x96, 0x05, 0x3c, 0x0e,
|
|
0x43, 0xa7, 0x1c, 0x88, 0xce, 0x57, 0xb2, 0x2f, 0x86, 0x1e, 0x51, 0x5b, 0xd0, 0xf2, 0x07, 0x02,
|
|
0x64, 0x86, 0x8d, 0xc6, 0xe1, 0x29, 0xf6, 0x89, 0x94, 0x34, 0xc8, 0x7a, 0x7c, 0xd9, 0x95, 0x2a,
|
|
0xce, 0x96, 0x7c, 0x22, 0x77, 0x04, 0xb2, 0xd0, 0xf7, 0x04, 0x48, 0x5b, 0xdf, 0xd0, 0x30, 0xdf,
|
|
0xed, 0x4a, 0xc8, 0x2b, 0xb2, 0x03, 0x6f, 0x99, 0x7b, 0x5c, 0xaa, 0x4f, 0x76, 0x83, 0x66, 0x60,
|
|
0x9a, 0x7c, 0x34, 0xe3, 0x70, 0x73, 0xb2, 0xe2, 0x3c, 0xfb, 0x5e, 0x66, 0xd8, 0x2f, 0xfb, 0x25,
|
|
0x81, 0x7b, 0x46, 0x82, 0x38, 0x65, 0x4f, 0x05, 0x46, 0x10, 0xf4, 0x63, 0x4c, 0xcb, 0x1d, 0x7b,
|
|
0xc1, 0x1b, 0xe4, 0x09, 0x74, 0x6c, 0xe8, 0xa3, 0x1e, 0xde, 0x92, 0x7f, 0x4b, 0x80, 0x69, 0xeb,
|
|
0x76, 0x0b, 0x3a, 0xd7, 0x84, 0x7d, 0xe7, 0x24, 0xd8, 0x67, 0x99, 0x74, 0xca, 0x7c, 0x9e, 0x1e,
|
|
0xf4, 0xe0, 0xa0, 0xda, 0x0f, 0xd5, 0xbb, 0x63, 0xc5, 0x2c, 0xfd, 0x7b, 0x02, 0x4c, 0x5b, 0xdf,
|
|
0xed, 0x85, 0x45, 0xca, 0xbc, 0xad, 0x10, 0x48, 0x3f, 0x39, 0x02, 0xe9, 0xe3, 0xd9, 0x91, 0x5c,
|
|
0x65, 0x9e, 0xf9, 0xac, 0xfd, 0x5e, 0x0f, 0x0a, 0x39, 0x94, 0x1c, 0x84, 0x80, 0x5b, 0x1e, 0x01,
|
|
0xf7, 0x42, 0xf6, 0xec, 0x28, 0xb8, 0x4e, 0x7f, 0xea, 0x7d, 0xb2, 0x05, 0xf2, 0x43, 0x02, 0xdd,
|
|
0xee, 0x3d, 0xbd, 0x27, 0xf0, 0x1f, 0xf2, 0x1e, 0x02, 0xf6, 0xa8, 0xcf, 0x01, 0x67, 0x61, 0x86,
|
|
0xc3, 0xc8, 0x19, 0xba, 0x13, 0xb9, 0xd1, 0x4a, 0xf6, 0x37, 0x05, 0x98, 0x5d, 0x1b, 0x74, 0x6e,
|
|
0x3b, 0x91, 0x3d, 0x1d, 0x18, 0x99, 0xf5, 0xd6, 0x8d, 0x27, 0xc2, 0x67, 0x46, 0x21, 0x5c, 0xcc,
|
|
0x21, 0x8a, 0xd0, 0x30, 0x55, 0x6c, 0x3b, 0x60, 0xed, 0x37, 0x85, 0x2f, 0x17, 0xfe, 0x86, 0x80,
|
|
0x36, 0x60, 0xca, 0xba, 0x42, 0x6b, 0xa5, 0xb0, 0x53, 0x16, 0x2f, 0xa2, 0xd5, 0x3d, 0x5d, 0xef,
|
|
0x6b, 0x2f, 0xe6, 0xf3, 0xad, 0xb6, 0xbe, 0x37, 0xb8, 0xb9, 0xda, 0x50, 0xba, 0x79, 0x8c, 0xd7,
|
|
0xbc, 0x13, 0xaa, 0x7f, 0xbb, 0x95, 0xb7, 0x30, 0x5f, 0x8e, 0x5e, 0x5c, 0xbd, 0x94, 0x13, 0x22,
|
|
0x97, 0xf9, 0xf7, 0xf0, 0xf3, 0x3f, 0xaa, 0x29, 0x3d, 0x7b, 0x4a, 0x4b, 0xed, 0x37, 0x5e, 0x1c,
|
|
0x2a, 0xf3, 0xe2, 0x50, 0x99, 0x37, 0x9f, 0x1a, 0xd5, 0x2f, 0x2e, 0xc1, 0x75, 0x7e, 0x33, 0x41,
|
|
0xb8, 0xf1, 0xf4, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x98, 0xb1, 0x5c, 0xc6, 0x6e, 0xd5, 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)
|
|
GetZitadelDocs(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*ZitadelDocs, error)
|
|
// GetIam returns some needed settings of the iam (Global Organisation ID, Zitadel Project ID)
|
|
GetIam(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*Iam, error)
|
|
GetUserByID(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserView, error)
|
|
// GetUserByEmailGlobal returns User, global search is overall organisations
|
|
GetUserByEmailGlobal(ctx context.Context, in *Email, opts ...grpc.CallOption) (*UserView, error)
|
|
// Limit should always be set, there is a default limit set by the service
|
|
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 returns the event stream of the user object
|
|
UserChanges(ctx context.Context, in *ChangeRequest, opts ...grpc.CallOption) (*Changes, error)
|
|
// ApplicationChanges returns the event stream of the application object
|
|
ApplicationChanges(ctx context.Context, in *ChangeRequest, opts ...grpc.CallOption) (*Changes, error)
|
|
// OrgChanges returns the event stream of the org object
|
|
OrgChanges(ctx context.Context, in *ChangeRequest, opts ...grpc.CallOption) (*Changes, error)
|
|
// ProjectChanges returns the event stream of the project object
|
|
ProjectChanges(ctx context.Context, in *ChangeRequest, opts ...grpc.CallOption) (*Changes, error)
|
|
GetUserProfile(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserProfileView, error)
|
|
UpdateUserProfile(ctx context.Context, in *UpdateUserProfileRequest, opts ...grpc.CallOption) (*UserProfile, error)
|
|
GetUserEmail(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserEmailView, error)
|
|
ChangeUserEmail(ctx context.Context, in *UpdateUserEmailRequest, opts ...grpc.CallOption) (*UserEmail, error)
|
|
ResendEmailVerificationMail(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
GetUserPhone(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserPhoneView, error)
|
|
ChangeUserPhone(ctx context.Context, in *UpdateUserPhoneRequest, opts ...grpc.CallOption) (*UserPhone, error)
|
|
RemoveUserPhone(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
ResendPhoneVerificationCode(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
GetUserAddress(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserAddressView, error)
|
|
UpdateUserAddress(ctx context.Context, in *UpdateUserAddressRequest, opts ...grpc.CallOption) (*UserAddress, error)
|
|
GetUserMfas(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*MultiFactors, error)
|
|
// 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)
|
|
SearchUserMemberships(ctx context.Context, in *UserMembershipSearchRequest, opts ...grpc.CallOption) (*UserMembershipSearchResponse, error)
|
|
// returns default policy if nothing other set on organisation
|
|
GetPasswordComplexityPolicy(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*PasswordComplexityPolicy, error)
|
|
GetDefaultPasswordComplexityPolicy(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)
|
|
// returns default if nothing other set on organisation
|
|
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)
|
|
// returns default if nothing other set on organisation
|
|
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)
|
|
CreateOrg(ctx context.Context, in *OrgCreateRequest, opts ...grpc.CallOption) (*Org, error)
|
|
GetMyOrg(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*OrgView, error)
|
|
// search a organisation by its domain overall organisations
|
|
GetOrgByDomainGlobal(ctx context.Context, in *Domain, opts ...grpc.CallOption) (*OrgView, error)
|
|
DeactivateMyOrg(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*Org, error)
|
|
ReactivateMyOrg(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*Org, error)
|
|
SearchMyOrgDomains(ctx context.Context, in *OrgDomainSearchRequest, opts ...grpc.CallOption) (*OrgDomainSearchResponse, error)
|
|
AddMyOrgDomain(ctx context.Context, in *AddOrgDomainRequest, opts ...grpc.CallOption) (*OrgDomain, error)
|
|
GenerateMyOrgDomainValidation(ctx context.Context, in *OrgDomainValidationRequest, opts ...grpc.CallOption) (*OrgDomainValidationResponse, error)
|
|
ValidateMyOrgDomain(ctx context.Context, in *ValidateOrgDomainRequest, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
SetMyPrimaryOrgDomain(ctx context.Context, in *PrimaryOrgDomainRequest, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
RemoveMyOrgDomain(ctx context.Context, in *RemoveOrgDomainRequest, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
GetMyOrgIamPolicy(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*OrgIamPolicy, error)
|
|
GetOrgMemberRoles(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*OrgMemberRoles, error)
|
|
AddMyOrgMember(ctx context.Context, in *AddOrgMemberRequest, opts ...grpc.CallOption) (*OrgMember, error)
|
|
ChangeMyOrgMember(ctx context.Context, in *ChangeOrgMemberRequest, opts ...grpc.CallOption) (*OrgMember, error)
|
|
RemoveMyOrgMember(ctx context.Context, in *RemoveOrgMemberRequest, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
SearchMyOrgMembers(ctx context.Context, in *OrgMemberSearchRequest, opts ...grpc.CallOption) (*OrgMemberSearchResponse, error)
|
|
SearchProjects(ctx context.Context, in *ProjectSearchRequest, opts ...grpc.CallOption) (*ProjectSearchResponse, error)
|
|
ProjectByID(ctx context.Context, in *ProjectID, opts ...grpc.CallOption) (*ProjectView, 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)
|
|
RemoveProject(ctx context.Context, in *ProjectID, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
// returns all projects my organisation got granted from another organisation
|
|
SearchGrantedProjects(ctx context.Context, in *GrantedProjectSearchRequest, opts ...grpc.CallOption) (*ProjectGrantSearchResponse, error)
|
|
// returns a project my organisation got granted from another organisation
|
|
GetGrantedProjectByID(ctx context.Context, in *ProjectGrantID, opts ...grpc.CallOption) (*ProjectGrantView, error)
|
|
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) (*ProjectMember, error)
|
|
ChangeProjectMember(ctx context.Context, in *ProjectMemberChange, opts ...grpc.CallOption) (*ProjectMember, error)
|
|
RemoveProjectMember(ctx context.Context, in *ProjectMemberRemove, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
SearchProjectRoles(ctx context.Context, in *ProjectRoleSearchRequest, opts ...grpc.CallOption) (*ProjectRoleSearchResponse, error)
|
|
AddProjectRole(ctx context.Context, in *ProjectRoleAdd, opts ...grpc.CallOption) (*ProjectRole, error)
|
|
// add a list of project roles in one request
|
|
BulkAddProjectRole(ctx context.Context, in *ProjectRoleAddBulk, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
ChangeProjectRole(ctx context.Context, in *ProjectRoleChange, opts ...grpc.CallOption) (*ProjectRole, error)
|
|
// RemoveProjectRole removes role from UserGrants, ProjectGrants and from Project
|
|
RemoveProjectRole(ctx context.Context, in *ProjectRoleRemove, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
SearchApplications(ctx context.Context, in *ApplicationSearchRequest, opts ...grpc.CallOption) (*ApplicationSearchResponse, error)
|
|
ApplicationByID(ctx context.Context, in *ApplicationID, opts ...grpc.CallOption) (*ApplicationView, 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)
|
|
RemoveApplication(ctx context.Context, in *ApplicationID, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
UpdateApplicationOIDCConfig(ctx context.Context, in *OIDCConfigUpdate, opts ...grpc.CallOption) (*OIDCConfig, error)
|
|
RegenerateOIDCClientSecret(ctx context.Context, in *ApplicationID, opts ...grpc.CallOption) (*ClientSecret, error)
|
|
SearchProjectGrants(ctx context.Context, in *ProjectGrantSearchRequest, opts ...grpc.CallOption) (*ProjectGrantSearchResponse, error)
|
|
ProjectGrantByID(ctx context.Context, in *ProjectGrantID, opts ...grpc.CallOption) (*ProjectGrantView, 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)
|
|
// RemoveProjectGrant removes project grant and all user grants for this project grant
|
|
RemoveProjectGrant(ctx context.Context, in *ProjectGrantID, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
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) (*ProjectGrantMember, error)
|
|
ChangeProjectGrantMember(ctx context.Context, in *ProjectGrantMemberChange, opts ...grpc.CallOption) (*ProjectGrantMember, error)
|
|
RemoveProjectGrantMember(ctx context.Context, in *ProjectGrantMemberRemove, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
SearchUserGrants(ctx context.Context, in *UserGrantSearchRequest, opts ...grpc.CallOption) (*UserGrantSearchResponse, error)
|
|
UserGrantByID(ctx context.Context, in *UserGrantID, opts ...grpc.CallOption) (*UserGrantView, 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)
|
|
RemoveUserGrant(ctx context.Context, in *UserGrantID, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
// remove a list of user grants in one request
|
|
BulkRemoveUserGrant(ctx context.Context, in *UserGrantRemoveBulk, opts ...grpc.CallOption) (*empty.Empty, 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) GetZitadelDocs(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*ZitadelDocs, error) {
|
|
out := new(ZitadelDocs)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetZitadelDocs", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetIam(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*Iam, error) {
|
|
out := new(Iam)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetIam", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetUserByID(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserView, error) {
|
|
out := new(UserView)
|
|
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 *Email, opts ...grpc.CallOption) (*UserView, error) {
|
|
out := new(UserView)
|
|
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) (*UserProfileView, error) {
|
|
out := new(UserProfileView)
|
|
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) (*UserEmailView, error) {
|
|
out := new(UserEmailView)
|
|
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) (*UserPhoneView, error) {
|
|
out := new(UserPhoneView)
|
|
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) RemoveUserPhone(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/RemoveUserPhone", 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) (*UserAddressView, error) {
|
|
out := new(UserAddressView)
|
|
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) SearchUserMemberships(ctx context.Context, in *UserMembershipSearchRequest, opts ...grpc.CallOption) (*UserMembershipSearchResponse, error) {
|
|
out := new(UserMembershipSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchUserMemberships", 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) GetDefaultPasswordComplexityPolicy(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/GetDefaultPasswordComplexityPolicy", 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) CreateOrg(ctx context.Context, in *OrgCreateRequest, opts ...grpc.CallOption) (*Org, error) {
|
|
out := new(Org)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/CreateOrg", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetMyOrg(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*OrgView, error) {
|
|
out := new(OrgView)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetMyOrg", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetOrgByDomainGlobal(ctx context.Context, in *Domain, opts ...grpc.CallOption) (*OrgView, error) {
|
|
out := new(OrgView)
|
|
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) DeactivateMyOrg(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*Org, error) {
|
|
out := new(Org)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/DeactivateMyOrg", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ReactivateMyOrg(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*Org, error) {
|
|
out := new(Org)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ReactivateMyOrg", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchMyOrgDomains(ctx context.Context, in *OrgDomainSearchRequest, opts ...grpc.CallOption) (*OrgDomainSearchResponse, error) {
|
|
out := new(OrgDomainSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchMyOrgDomains", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) AddMyOrgDomain(ctx context.Context, in *AddOrgDomainRequest, opts ...grpc.CallOption) (*OrgDomain, error) {
|
|
out := new(OrgDomain)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/AddMyOrgDomain", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GenerateMyOrgDomainValidation(ctx context.Context, in *OrgDomainValidationRequest, opts ...grpc.CallOption) (*OrgDomainValidationResponse, error) {
|
|
out := new(OrgDomainValidationResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GenerateMyOrgDomainValidation", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ValidateMyOrgDomain(ctx context.Context, in *ValidateOrgDomainRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ValidateMyOrgDomain", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SetMyPrimaryOrgDomain(ctx context.Context, in *PrimaryOrgDomainRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SetMyPrimaryOrgDomain", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) RemoveMyOrgDomain(ctx context.Context, in *RemoveOrgDomainRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/RemoveMyOrgDomain", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetMyOrgIamPolicy(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*OrgIamPolicy, error) {
|
|
out := new(OrgIamPolicy)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetMyOrgIamPolicy", 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) AddMyOrgMember(ctx context.Context, in *AddOrgMemberRequest, opts ...grpc.CallOption) (*OrgMember, error) {
|
|
out := new(OrgMember)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/AddMyOrgMember", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ChangeMyOrgMember(ctx context.Context, in *ChangeOrgMemberRequest, opts ...grpc.CallOption) (*OrgMember, error) {
|
|
out := new(OrgMember)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ChangeMyOrgMember", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) RemoveMyOrgMember(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/RemoveMyOrgMember", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchMyOrgMembers(ctx context.Context, in *OrgMemberSearchRequest, opts ...grpc.CallOption) (*OrgMemberSearchResponse, error) {
|
|
out := new(OrgMemberSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchMyOrgMembers", 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) (*ProjectView, error) {
|
|
out := new(ProjectView)
|
|
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) RemoveProject(ctx context.Context, in *ProjectID, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/RemoveProject", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchGrantedProjects(ctx context.Context, in *GrantedProjectSearchRequest, opts ...grpc.CallOption) (*ProjectGrantSearchResponse, error) {
|
|
out := new(ProjectGrantSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchGrantedProjects", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetGrantedProjectByID(ctx context.Context, in *ProjectGrantID, opts ...grpc.CallOption) (*ProjectGrantView, error) {
|
|
out := new(ProjectGrantView)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetGrantedProjectByID", 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) (*ProjectMember, error) {
|
|
out := new(ProjectMember)
|
|
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) (*ProjectMember, error) {
|
|
out := new(ProjectMember)
|
|
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) (*ProjectRole, error) {
|
|
out := new(ProjectRole)
|
|
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) BulkAddProjectRole(ctx context.Context, in *ProjectRoleAddBulk, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/BulkAddProjectRole", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ChangeProjectRole(ctx context.Context, in *ProjectRoleChange, opts ...grpc.CallOption) (*ProjectRole, error) {
|
|
out := new(ProjectRole)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ChangeProjectRole", 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) (*ApplicationView, error) {
|
|
out := new(ApplicationView)
|
|
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) RemoveApplication(ctx context.Context, in *ApplicationID, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/RemoveApplication", 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) (*ProjectGrantView, error) {
|
|
out := new(ProjectGrantView)
|
|
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) RemoveProjectGrant(ctx context.Context, in *ProjectGrantID, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/RemoveProjectGrant", 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) (*ProjectGrantMember, error) {
|
|
out := new(ProjectGrantMember)
|
|
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) (*ProjectGrantMember, error) {
|
|
out := new(ProjectGrantMember)
|
|
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) (*UserGrantView, error) {
|
|
out := new(UserGrantView)
|
|
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) RemoveUserGrant(ctx context.Context, in *UserGrantID, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/RemoveUserGrant", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) BulkRemoveUserGrant(ctx context.Context, in *UserGrantRemoveBulk, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/BulkRemoveUserGrant", 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)
|
|
GetZitadelDocs(context.Context, *empty.Empty) (*ZitadelDocs, error)
|
|
// GetIam returns some needed settings of the iam (Global Organisation ID, Zitadel Project ID)
|
|
GetIam(context.Context, *empty.Empty) (*Iam, error)
|
|
GetUserByID(context.Context, *UserID) (*UserView, error)
|
|
// GetUserByEmailGlobal returns User, global search is overall organisations
|
|
GetUserByEmailGlobal(context.Context, *Email) (*UserView, error)
|
|
// Limit should always be set, there is a default limit set by the service
|
|
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 returns the event stream of the user object
|
|
UserChanges(context.Context, *ChangeRequest) (*Changes, error)
|
|
// ApplicationChanges returns the event stream of the application object
|
|
ApplicationChanges(context.Context, *ChangeRequest) (*Changes, error)
|
|
// OrgChanges returns the event stream of the org object
|
|
OrgChanges(context.Context, *ChangeRequest) (*Changes, error)
|
|
// ProjectChanges returns the event stream of the project object
|
|
ProjectChanges(context.Context, *ChangeRequest) (*Changes, error)
|
|
GetUserProfile(context.Context, *UserID) (*UserProfileView, error)
|
|
UpdateUserProfile(context.Context, *UpdateUserProfileRequest) (*UserProfile, error)
|
|
GetUserEmail(context.Context, *UserID) (*UserEmailView, error)
|
|
ChangeUserEmail(context.Context, *UpdateUserEmailRequest) (*UserEmail, error)
|
|
ResendEmailVerificationMail(context.Context, *UserID) (*empty.Empty, error)
|
|
GetUserPhone(context.Context, *UserID) (*UserPhoneView, error)
|
|
ChangeUserPhone(context.Context, *UpdateUserPhoneRequest) (*UserPhone, error)
|
|
RemoveUserPhone(context.Context, *UserID) (*empty.Empty, error)
|
|
ResendPhoneVerificationCode(context.Context, *UserID) (*empty.Empty, error)
|
|
GetUserAddress(context.Context, *UserID) (*UserAddressView, error)
|
|
UpdateUserAddress(context.Context, *UpdateUserAddressRequest) (*UserAddress, error)
|
|
GetUserMfas(context.Context, *UserID) (*MultiFactors, error)
|
|
// 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)
|
|
SearchUserMemberships(context.Context, *UserMembershipSearchRequest) (*UserMembershipSearchResponse, error)
|
|
// returns default policy if nothing other set on organisation
|
|
GetPasswordComplexityPolicy(context.Context, *empty.Empty) (*PasswordComplexityPolicy, error)
|
|
GetDefaultPasswordComplexityPolicy(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)
|
|
// returns default if nothing other set on organisation
|
|
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)
|
|
// returns default if nothing other set on organisation
|
|
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)
|
|
CreateOrg(context.Context, *OrgCreateRequest) (*Org, error)
|
|
GetMyOrg(context.Context, *empty.Empty) (*OrgView, error)
|
|
// search a organisation by its domain overall organisations
|
|
GetOrgByDomainGlobal(context.Context, *Domain) (*OrgView, error)
|
|
DeactivateMyOrg(context.Context, *empty.Empty) (*Org, error)
|
|
ReactivateMyOrg(context.Context, *empty.Empty) (*Org, error)
|
|
SearchMyOrgDomains(context.Context, *OrgDomainSearchRequest) (*OrgDomainSearchResponse, error)
|
|
AddMyOrgDomain(context.Context, *AddOrgDomainRequest) (*OrgDomain, error)
|
|
GenerateMyOrgDomainValidation(context.Context, *OrgDomainValidationRequest) (*OrgDomainValidationResponse, error)
|
|
ValidateMyOrgDomain(context.Context, *ValidateOrgDomainRequest) (*empty.Empty, error)
|
|
SetMyPrimaryOrgDomain(context.Context, *PrimaryOrgDomainRequest) (*empty.Empty, error)
|
|
RemoveMyOrgDomain(context.Context, *RemoveOrgDomainRequest) (*empty.Empty, error)
|
|
GetMyOrgIamPolicy(context.Context, *empty.Empty) (*OrgIamPolicy, error)
|
|
GetOrgMemberRoles(context.Context, *empty.Empty) (*OrgMemberRoles, error)
|
|
AddMyOrgMember(context.Context, *AddOrgMemberRequest) (*OrgMember, error)
|
|
ChangeMyOrgMember(context.Context, *ChangeOrgMemberRequest) (*OrgMember, error)
|
|
RemoveMyOrgMember(context.Context, *RemoveOrgMemberRequest) (*empty.Empty, error)
|
|
SearchMyOrgMembers(context.Context, *OrgMemberSearchRequest) (*OrgMemberSearchResponse, error)
|
|
SearchProjects(context.Context, *ProjectSearchRequest) (*ProjectSearchResponse, error)
|
|
ProjectByID(context.Context, *ProjectID) (*ProjectView, 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)
|
|
RemoveProject(context.Context, *ProjectID) (*empty.Empty, error)
|
|
// returns all projects my organisation got granted from another organisation
|
|
SearchGrantedProjects(context.Context, *GrantedProjectSearchRequest) (*ProjectGrantSearchResponse, error)
|
|
// returns a project my organisation got granted from another organisation
|
|
GetGrantedProjectByID(context.Context, *ProjectGrantID) (*ProjectGrantView, error)
|
|
GetProjectMemberRoles(context.Context, *empty.Empty) (*ProjectMemberRoles, error)
|
|
SearchProjectMembers(context.Context, *ProjectMemberSearchRequest) (*ProjectMemberSearchResponse, error)
|
|
AddProjectMember(context.Context, *ProjectMemberAdd) (*ProjectMember, error)
|
|
ChangeProjectMember(context.Context, *ProjectMemberChange) (*ProjectMember, error)
|
|
RemoveProjectMember(context.Context, *ProjectMemberRemove) (*empty.Empty, error)
|
|
SearchProjectRoles(context.Context, *ProjectRoleSearchRequest) (*ProjectRoleSearchResponse, error)
|
|
AddProjectRole(context.Context, *ProjectRoleAdd) (*ProjectRole, error)
|
|
// add a list of project roles in one request
|
|
BulkAddProjectRole(context.Context, *ProjectRoleAddBulk) (*empty.Empty, error)
|
|
ChangeProjectRole(context.Context, *ProjectRoleChange) (*ProjectRole, error)
|
|
// RemoveProjectRole removes role from UserGrants, ProjectGrants and from Project
|
|
RemoveProjectRole(context.Context, *ProjectRoleRemove) (*empty.Empty, error)
|
|
SearchApplications(context.Context, *ApplicationSearchRequest) (*ApplicationSearchResponse, error)
|
|
ApplicationByID(context.Context, *ApplicationID) (*ApplicationView, 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)
|
|
RemoveApplication(context.Context, *ApplicationID) (*empty.Empty, error)
|
|
UpdateApplicationOIDCConfig(context.Context, *OIDCConfigUpdate) (*OIDCConfig, error)
|
|
RegenerateOIDCClientSecret(context.Context, *ApplicationID) (*ClientSecret, error)
|
|
SearchProjectGrants(context.Context, *ProjectGrantSearchRequest) (*ProjectGrantSearchResponse, error)
|
|
ProjectGrantByID(context.Context, *ProjectGrantID) (*ProjectGrantView, 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)
|
|
// RemoveProjectGrant removes project grant and all user grants for this project grant
|
|
RemoveProjectGrant(context.Context, *ProjectGrantID) (*empty.Empty, error)
|
|
GetProjectGrantMemberRoles(context.Context, *empty.Empty) (*ProjectGrantMemberRoles, error)
|
|
SearchProjectGrantMembers(context.Context, *ProjectGrantMemberSearchRequest) (*ProjectGrantMemberSearchResponse, error)
|
|
AddProjectGrantMember(context.Context, *ProjectGrantMemberAdd) (*ProjectGrantMember, error)
|
|
ChangeProjectGrantMember(context.Context, *ProjectGrantMemberChange) (*ProjectGrantMember, error)
|
|
RemoveProjectGrantMember(context.Context, *ProjectGrantMemberRemove) (*empty.Empty, error)
|
|
SearchUserGrants(context.Context, *UserGrantSearchRequest) (*UserGrantSearchResponse, error)
|
|
UserGrantByID(context.Context, *UserGrantID) (*UserGrantView, 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)
|
|
RemoveUserGrant(context.Context, *UserGrantID) (*empty.Empty, error)
|
|
// remove a list of user grants in one request
|
|
BulkRemoveUserGrant(context.Context, *UserGrantRemoveBulk) (*empty.Empty, 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) GetZitadelDocs(ctx context.Context, req *empty.Empty) (*ZitadelDocs, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetZitadelDocs not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetIam(ctx context.Context, req *empty.Empty) (*Iam, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetIam not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetUserByID(ctx context.Context, req *UserID) (*UserView, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetUserByID not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetUserByEmailGlobal(ctx context.Context, req *Email) (*UserView, 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) (*UserProfileView, 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) (*UserEmailView, 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) (*UserPhoneView, 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) RemoveUserPhone(ctx context.Context, req *UserID) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RemoveUserPhone 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) (*UserAddressView, 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) SearchUserMemberships(ctx context.Context, req *UserMembershipSearchRequest) (*UserMembershipSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchUserMemberships 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) GetDefaultPasswordComplexityPolicy(ctx context.Context, req *empty.Empty) (*PasswordComplexityPolicy, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetDefaultPasswordComplexityPolicy 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) CreateOrg(ctx context.Context, req *OrgCreateRequest) (*Org, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method CreateOrg not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetMyOrg(ctx context.Context, req *empty.Empty) (*OrgView, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetMyOrg not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetOrgByDomainGlobal(ctx context.Context, req *Domain) (*OrgView, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetOrgByDomainGlobal not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) DeactivateMyOrg(ctx context.Context, req *empty.Empty) (*Org, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DeactivateMyOrg not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ReactivateMyOrg(ctx context.Context, req *empty.Empty) (*Org, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReactivateMyOrg not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchMyOrgDomains(ctx context.Context, req *OrgDomainSearchRequest) (*OrgDomainSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchMyOrgDomains not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) AddMyOrgDomain(ctx context.Context, req *AddOrgDomainRequest) (*OrgDomain, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method AddMyOrgDomain not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GenerateMyOrgDomainValidation(ctx context.Context, req *OrgDomainValidationRequest) (*OrgDomainValidationResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GenerateMyOrgDomainValidation not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ValidateMyOrgDomain(ctx context.Context, req *ValidateOrgDomainRequest) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ValidateMyOrgDomain not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SetMyPrimaryOrgDomain(ctx context.Context, req *PrimaryOrgDomainRequest) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SetMyPrimaryOrgDomain not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) RemoveMyOrgDomain(ctx context.Context, req *RemoveOrgDomainRequest) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RemoveMyOrgDomain not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetMyOrgIamPolicy(ctx context.Context, req *empty.Empty) (*OrgIamPolicy, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetMyOrgIamPolicy 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) AddMyOrgMember(ctx context.Context, req *AddOrgMemberRequest) (*OrgMember, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method AddMyOrgMember not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ChangeMyOrgMember(ctx context.Context, req *ChangeOrgMemberRequest) (*OrgMember, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ChangeMyOrgMember not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) RemoveMyOrgMember(ctx context.Context, req *RemoveOrgMemberRequest) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RemoveMyOrgMember not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchMyOrgMembers(ctx context.Context, req *OrgMemberSearchRequest) (*OrgMemberSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchMyOrgMembers 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) (*ProjectView, 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) RemoveProject(ctx context.Context, req *ProjectID) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RemoveProject not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchGrantedProjects(ctx context.Context, req *GrantedProjectSearchRequest) (*ProjectGrantSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchGrantedProjects not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetGrantedProjectByID(ctx context.Context, req *ProjectGrantID) (*ProjectGrantView, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetGrantedProjectByID 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) (*ProjectMember, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method AddProjectMember not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ChangeProjectMember(ctx context.Context, req *ProjectMemberChange) (*ProjectMember, 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) (*ProjectRole, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method AddProjectRole not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) BulkAddProjectRole(ctx context.Context, req *ProjectRoleAddBulk) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method BulkAddProjectRole not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ChangeProjectRole(ctx context.Context, req *ProjectRoleChange) (*ProjectRole, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ChangeProjectRole 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) (*ApplicationView, 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) RemoveApplication(ctx context.Context, req *ApplicationID) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RemoveApplication 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) (*ProjectGrantView, 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) RemoveProjectGrant(ctx context.Context, req *ProjectGrantID) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RemoveProjectGrant 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) (*ProjectGrantMember, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method AddProjectGrantMember not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ChangeProjectGrantMember(ctx context.Context, req *ProjectGrantMemberChange) (*ProjectGrantMember, 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) (*UserGrantView, 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) RemoveUserGrant(ctx context.Context, req *UserGrantID) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RemoveUserGrant not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) BulkRemoveUserGrant(ctx context.Context, req *UserGrantRemoveBulk) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method BulkRemoveUserGrant 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_GetZitadelDocs_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).GetZitadelDocs(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetZitadelDocs",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetZitadelDocs(ctx, req.(*empty.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetIam_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).GetIam(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetIam",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetIam(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(Email)
|
|
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.(*Email))
|
|
}
|
|
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_RemoveUserPhone_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).RemoveUserPhone(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/RemoveUserPhone",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).RemoveUserPhone(ctx, req.(*UserID))
|
|
}
|
|
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_SearchUserMemberships_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserMembershipSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchUserMemberships(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchUserMemberships",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchUserMemberships(ctx, req.(*UserMembershipSearchRequest))
|
|
}
|
|
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_GetDefaultPasswordComplexityPolicy_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).GetDefaultPasswordComplexityPolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetDefaultPasswordComplexityPolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetDefaultPasswordComplexityPolicy(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_CreateOrg_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(OrgCreateRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).CreateOrg(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/CreateOrg",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).CreateOrg(ctx, req.(*OrgCreateRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetMyOrg_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).GetMyOrg(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetMyOrg",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetMyOrg(ctx, req.(*empty.Empty))
|
|
}
|
|
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(Domain)
|
|
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.(*Domain))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_DeactivateMyOrg_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).DeactivateMyOrg(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/DeactivateMyOrg",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).DeactivateMyOrg(ctx, req.(*empty.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ReactivateMyOrg_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).ReactivateMyOrg(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ReactivateMyOrg",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ReactivateMyOrg(ctx, req.(*empty.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchMyOrgDomains_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(OrgDomainSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchMyOrgDomains(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchMyOrgDomains",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchMyOrgDomains(ctx, req.(*OrgDomainSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_AddMyOrgDomain_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(AddOrgDomainRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).AddMyOrgDomain(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/AddMyOrgDomain",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).AddMyOrgDomain(ctx, req.(*AddOrgDomainRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GenerateMyOrgDomainValidation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(OrgDomainValidationRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GenerateMyOrgDomainValidation(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GenerateMyOrgDomainValidation",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GenerateMyOrgDomainValidation(ctx, req.(*OrgDomainValidationRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ValidateMyOrgDomain_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ValidateOrgDomainRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ValidateMyOrgDomain(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ValidateMyOrgDomain",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ValidateMyOrgDomain(ctx, req.(*ValidateOrgDomainRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SetMyPrimaryOrgDomain_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(PrimaryOrgDomainRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SetMyPrimaryOrgDomain(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SetMyPrimaryOrgDomain",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SetMyPrimaryOrgDomain(ctx, req.(*PrimaryOrgDomainRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_RemoveMyOrgDomain_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(RemoveOrgDomainRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).RemoveMyOrgDomain(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/RemoveMyOrgDomain",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).RemoveMyOrgDomain(ctx, req.(*RemoveOrgDomainRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetMyOrgIamPolicy_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).GetMyOrgIamPolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetMyOrgIamPolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetMyOrgIamPolicy(ctx, req.(*empty.Empty))
|
|
}
|
|
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_AddMyOrgMember_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).AddMyOrgMember(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/AddMyOrgMember",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).AddMyOrgMember(ctx, req.(*AddOrgMemberRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ChangeMyOrgMember_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).ChangeMyOrgMember(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ChangeMyOrgMember",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ChangeMyOrgMember(ctx, req.(*ChangeOrgMemberRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_RemoveMyOrgMember_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).RemoveMyOrgMember(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/RemoveMyOrgMember",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).RemoveMyOrgMember(ctx, req.(*RemoveOrgMemberRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchMyOrgMembers_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).SearchMyOrgMembers(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchMyOrgMembers",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchMyOrgMembers(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_RemoveProject_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).RemoveProject(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/RemoveProject",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).RemoveProject(ctx, req.(*ProjectID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchGrantedProjects_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GrantedProjectSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchGrantedProjects(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchGrantedProjects",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchGrantedProjects(ctx, req.(*GrantedProjectSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetGrantedProjectByID_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).GetGrantedProjectByID(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetGrantedProjectByID",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetGrantedProjectByID(ctx, req.(*ProjectGrantID))
|
|
}
|
|
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_BulkAddProjectRole_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectRoleAddBulk)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).BulkAddProjectRole(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/BulkAddProjectRole",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).BulkAddProjectRole(ctx, req.(*ProjectRoleAddBulk))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ChangeProjectRole_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ProjectRoleChange)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ChangeProjectRole(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ChangeProjectRole",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ChangeProjectRole(ctx, req.(*ProjectRoleChange))
|
|
}
|
|
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_RemoveApplication_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).RemoveApplication(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/RemoveApplication",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).RemoveApplication(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_RemoveProjectGrant_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).RemoveProjectGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/RemoveProjectGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).RemoveProjectGrant(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_RemoveUserGrant_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).RemoveUserGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/RemoveUserGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).RemoveUserGrant(ctx, req.(*UserGrantID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_BulkRemoveUserGrant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UserGrantRemoveBulk)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).BulkRemoveUserGrant(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/BulkRemoveUserGrant",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).BulkRemoveUserGrant(ctx, req.(*UserGrantRemoveBulk))
|
|
}
|
|
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: "GetZitadelDocs",
|
|
Handler: _ManagementService_GetZitadelDocs_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetIam",
|
|
Handler: _ManagementService_GetIam_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: "RemoveUserPhone",
|
|
Handler: _ManagementService_RemoveUserPhone_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: "SearchUserMemberships",
|
|
Handler: _ManagementService_SearchUserMemberships_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetPasswordComplexityPolicy",
|
|
Handler: _ManagementService_GetPasswordComplexityPolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetDefaultPasswordComplexityPolicy",
|
|
Handler: _ManagementService_GetDefaultPasswordComplexityPolicy_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: "CreateOrg",
|
|
Handler: _ManagementService_CreateOrg_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetMyOrg",
|
|
Handler: _ManagementService_GetMyOrg_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetOrgByDomainGlobal",
|
|
Handler: _ManagementService_GetOrgByDomainGlobal_Handler,
|
|
},
|
|
{
|
|
MethodName: "DeactivateMyOrg",
|
|
Handler: _ManagementService_DeactivateMyOrg_Handler,
|
|
},
|
|
{
|
|
MethodName: "ReactivateMyOrg",
|
|
Handler: _ManagementService_ReactivateMyOrg_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchMyOrgDomains",
|
|
Handler: _ManagementService_SearchMyOrgDomains_Handler,
|
|
},
|
|
{
|
|
MethodName: "AddMyOrgDomain",
|
|
Handler: _ManagementService_AddMyOrgDomain_Handler,
|
|
},
|
|
{
|
|
MethodName: "GenerateMyOrgDomainValidation",
|
|
Handler: _ManagementService_GenerateMyOrgDomainValidation_Handler,
|
|
},
|
|
{
|
|
MethodName: "ValidateMyOrgDomain",
|
|
Handler: _ManagementService_ValidateMyOrgDomain_Handler,
|
|
},
|
|
{
|
|
MethodName: "SetMyPrimaryOrgDomain",
|
|
Handler: _ManagementService_SetMyPrimaryOrgDomain_Handler,
|
|
},
|
|
{
|
|
MethodName: "RemoveMyOrgDomain",
|
|
Handler: _ManagementService_RemoveMyOrgDomain_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetMyOrgIamPolicy",
|
|
Handler: _ManagementService_GetMyOrgIamPolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetOrgMemberRoles",
|
|
Handler: _ManagementService_GetOrgMemberRoles_Handler,
|
|
},
|
|
{
|
|
MethodName: "AddMyOrgMember",
|
|
Handler: _ManagementService_AddMyOrgMember_Handler,
|
|
},
|
|
{
|
|
MethodName: "ChangeMyOrgMember",
|
|
Handler: _ManagementService_ChangeMyOrgMember_Handler,
|
|
},
|
|
{
|
|
MethodName: "RemoveMyOrgMember",
|
|
Handler: _ManagementService_RemoveMyOrgMember_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchMyOrgMembers",
|
|
Handler: _ManagementService_SearchMyOrgMembers_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: "RemoveProject",
|
|
Handler: _ManagementService_RemoveProject_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchGrantedProjects",
|
|
Handler: _ManagementService_SearchGrantedProjects_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetGrantedProjectByID",
|
|
Handler: _ManagementService_GetGrantedProjectByID_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: "BulkAddProjectRole",
|
|
Handler: _ManagementService_BulkAddProjectRole_Handler,
|
|
},
|
|
{
|
|
MethodName: "ChangeProjectRole",
|
|
Handler: _ManagementService_ChangeProjectRole_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: "RemoveApplication",
|
|
Handler: _ManagementService_RemoveApplication_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: "RemoveProjectGrant",
|
|
Handler: _ManagementService_RemoveProjectGrant_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: "RemoveUserGrant",
|
|
Handler: _ManagementService_RemoveUserGrant_Handler,
|
|
},
|
|
{
|
|
MethodName: "BulkRemoveUserGrant",
|
|
Handler: _ManagementService_BulkRemoveUserGrant_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "management.proto",
|
|
}
|