mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
3e1204524e
* fix: multiple setup steps * fix: test set up started * fix: possible nil pointers in setup * fix: validate executed step
19209 lines
731 KiB
Go
19209 lines
731 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 IamSetupStep int32
|
|
|
|
const (
|
|
IamSetupStep_iam_setup_step_UNDEFINED IamSetupStep = 0
|
|
IamSetupStep_iam_setup_step_1 IamSetupStep = 1
|
|
IamSetupStep_iam_setup_step_2 IamSetupStep = 2
|
|
)
|
|
|
|
var IamSetupStep_name = map[int32]string{
|
|
0: "iam_setup_step_UNDEFINED",
|
|
1: "iam_setup_step_1",
|
|
2: "iam_setup_step_2",
|
|
}
|
|
|
|
var IamSetupStep_value = map[string]int32{
|
|
"iam_setup_step_UNDEFINED": 0,
|
|
"iam_setup_step_1": 1,
|
|
"iam_setup_step_2": 2,
|
|
}
|
|
|
|
func (x IamSetupStep) String() string {
|
|
return proto.EnumName(IamSetupStep_name, int32(x))
|
|
}
|
|
|
|
func (IamSetupStep) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{0}
|
|
}
|
|
|
|
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{1}
|
|
}
|
|
|
|
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{2}
|
|
}
|
|
|
|
type MachineKeyType int32
|
|
|
|
const (
|
|
MachineKeyType_MACHINEKEY_UNSPECIFIED MachineKeyType = 0
|
|
MachineKeyType_MACHINEKEY_JSON MachineKeyType = 1
|
|
)
|
|
|
|
var MachineKeyType_name = map[int32]string{
|
|
0: "MACHINEKEY_UNSPECIFIED",
|
|
1: "MACHINEKEY_JSON",
|
|
}
|
|
|
|
var MachineKeyType_value = map[string]int32{
|
|
"MACHINEKEY_UNSPECIFIED": 0,
|
|
"MACHINEKEY_JSON": 1,
|
|
}
|
|
|
|
func (x MachineKeyType) String() string {
|
|
return proto.EnumName(MachineKeyType_name, int32(x))
|
|
}
|
|
|
|
func (MachineKeyType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{3}
|
|
}
|
|
|
|
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
|
|
UserSearchKey_USERSEARCHKEY_TYPE UserSearchKey = 8
|
|
)
|
|
|
|
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",
|
|
8: "USERSEARCHKEY_TYPE",
|
|
}
|
|
|
|
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,
|
|
"USERSEARCHKEY_TYPE": 8,
|
|
}
|
|
|
|
func (x UserSearchKey) String() string {
|
|
return proto.EnumName(UserSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (UserSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{4}
|
|
}
|
|
|
|
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{5}
|
|
}
|
|
|
|
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{6}
|
|
}
|
|
|
|
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{7}
|
|
}
|
|
|
|
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{8}
|
|
}
|
|
|
|
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{9}
|
|
}
|
|
|
|
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{10}
|
|
}
|
|
|
|
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{11}
|
|
}
|
|
|
|
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{12}
|
|
}
|
|
|
|
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{13}
|
|
}
|
|
|
|
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{14}
|
|
}
|
|
|
|
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{15}
|
|
}
|
|
|
|
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{16}
|
|
}
|
|
|
|
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{17}
|
|
}
|
|
|
|
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{18}
|
|
}
|
|
|
|
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{19}
|
|
}
|
|
|
|
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{20}
|
|
}
|
|
|
|
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{21}
|
|
}
|
|
|
|
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{22}
|
|
}
|
|
|
|
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{23}
|
|
}
|
|
|
|
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{24}
|
|
}
|
|
|
|
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{25}
|
|
}
|
|
|
|
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{26}
|
|
}
|
|
|
|
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{27}
|
|
}
|
|
|
|
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{28}
|
|
}
|
|
|
|
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{29}
|
|
}
|
|
|
|
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{30}
|
|
}
|
|
|
|
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{31}
|
|
}
|
|
|
|
type IdpState int32
|
|
|
|
const (
|
|
IdpState_IDPCONFIGSTATE_UNSPECIFIED IdpState = 0
|
|
IdpState_IDPCONFIGSTATE_ACTIVE IdpState = 1
|
|
IdpState_IDPCONFIGSTATE_INACTIVE IdpState = 2
|
|
)
|
|
|
|
var IdpState_name = map[int32]string{
|
|
0: "IDPCONFIGSTATE_UNSPECIFIED",
|
|
1: "IDPCONFIGSTATE_ACTIVE",
|
|
2: "IDPCONFIGSTATE_INACTIVE",
|
|
}
|
|
|
|
var IdpState_value = map[string]int32{
|
|
"IDPCONFIGSTATE_UNSPECIFIED": 0,
|
|
"IDPCONFIGSTATE_ACTIVE": 1,
|
|
"IDPCONFIGSTATE_INACTIVE": 2,
|
|
}
|
|
|
|
func (x IdpState) String() string {
|
|
return proto.EnumName(IdpState_name, int32(x))
|
|
}
|
|
|
|
func (IdpState) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{32}
|
|
}
|
|
|
|
type OIDCMappingField int32
|
|
|
|
const (
|
|
OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED OIDCMappingField = 0
|
|
OIDCMappingField_OIDCMAPPINGFIELD_PREFERRED_USERNAME OIDCMappingField = 1
|
|
OIDCMappingField_OIDCMAPPINGFIELD_EMAIL OIDCMappingField = 2
|
|
)
|
|
|
|
var OIDCMappingField_name = map[int32]string{
|
|
0: "OIDCMAPPINGFIELD_UNSPECIFIED",
|
|
1: "OIDCMAPPINGFIELD_PREFERRED_USERNAME",
|
|
2: "OIDCMAPPINGFIELD_EMAIL",
|
|
}
|
|
|
|
var OIDCMappingField_value = map[string]int32{
|
|
"OIDCMAPPINGFIELD_UNSPECIFIED": 0,
|
|
"OIDCMAPPINGFIELD_PREFERRED_USERNAME": 1,
|
|
"OIDCMAPPINGFIELD_EMAIL": 2,
|
|
}
|
|
|
|
func (x OIDCMappingField) String() string {
|
|
return proto.EnumName(OIDCMappingField_name, int32(x))
|
|
}
|
|
|
|
func (OIDCMappingField) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{33}
|
|
}
|
|
|
|
type IdpSearchKey int32
|
|
|
|
const (
|
|
IdpSearchKey_IDPSEARCHKEY_UNSPECIFIED IdpSearchKey = 0
|
|
IdpSearchKey_IDPSEARCHKEY_IDP_CONFIG_ID IdpSearchKey = 1
|
|
IdpSearchKey_IDPSEARCHKEY_NAME IdpSearchKey = 2
|
|
IdpSearchKey_IDPSEARCHKEY_PROVIDER_TYPE IdpSearchKey = 3
|
|
)
|
|
|
|
var IdpSearchKey_name = map[int32]string{
|
|
0: "IDPSEARCHKEY_UNSPECIFIED",
|
|
1: "IDPSEARCHKEY_IDP_CONFIG_ID",
|
|
2: "IDPSEARCHKEY_NAME",
|
|
3: "IDPSEARCHKEY_PROVIDER_TYPE",
|
|
}
|
|
|
|
var IdpSearchKey_value = map[string]int32{
|
|
"IDPSEARCHKEY_UNSPECIFIED": 0,
|
|
"IDPSEARCHKEY_IDP_CONFIG_ID": 1,
|
|
"IDPSEARCHKEY_NAME": 2,
|
|
"IDPSEARCHKEY_PROVIDER_TYPE": 3,
|
|
}
|
|
|
|
func (x IdpSearchKey) String() string {
|
|
return proto.EnumName(IdpSearchKey_name, int32(x))
|
|
}
|
|
|
|
func (IdpSearchKey) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{34}
|
|
}
|
|
|
|
type IdpType int32
|
|
|
|
const (
|
|
IdpType_IDPTYPE_UNSPECIFIED IdpType = 0
|
|
IdpType_IDPTYPE_OIDC IdpType = 1
|
|
IdpType_IDPTYPE_SAML IdpType = 2
|
|
)
|
|
|
|
var IdpType_name = map[int32]string{
|
|
0: "IDPTYPE_UNSPECIFIED",
|
|
1: "IDPTYPE_OIDC",
|
|
2: "IDPTYPE_SAML",
|
|
}
|
|
|
|
var IdpType_value = map[string]int32{
|
|
"IDPTYPE_UNSPECIFIED": 0,
|
|
"IDPTYPE_OIDC": 1,
|
|
"IDPTYPE_SAML": 2,
|
|
}
|
|
|
|
func (x IdpType) String() string {
|
|
return proto.EnumName(IdpType_name, int32(x))
|
|
}
|
|
|
|
func (IdpType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{35}
|
|
}
|
|
|
|
type IdpProviderType int32
|
|
|
|
const (
|
|
IdpProviderType_IDPPROVIDERTYPE_UNSPECIFIED IdpProviderType = 0
|
|
IdpProviderType_IDPPROVIDERTYPE_SYSTEM IdpProviderType = 1
|
|
IdpProviderType_IDPPROVIDERTYPE_ORG IdpProviderType = 2
|
|
)
|
|
|
|
var IdpProviderType_name = map[int32]string{
|
|
0: "IDPPROVIDERTYPE_UNSPECIFIED",
|
|
1: "IDPPROVIDERTYPE_SYSTEM",
|
|
2: "IDPPROVIDERTYPE_ORG",
|
|
}
|
|
|
|
var IdpProviderType_value = map[string]int32{
|
|
"IDPPROVIDERTYPE_UNSPECIFIED": 0,
|
|
"IDPPROVIDERTYPE_SYSTEM": 1,
|
|
"IDPPROVIDERTYPE_ORG": 2,
|
|
}
|
|
|
|
func (x IdpProviderType) String() string {
|
|
return proto.EnumName(IdpProviderType_name, int32(x))
|
|
}
|
|
|
|
func (IdpProviderType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{36}
|
|
}
|
|
|
|
//ProjectType is deprecated, remove as soon as console is ready
|
|
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{37}
|
|
}
|
|
|
|
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 IamSetupStep `protobuf:"varint,3,opt,name=set_up_done,json=setUpDone,proto3,enum=caos.zitadel.management.api.v1.IamSetupStep" json:"set_up_done,omitempty"`
|
|
SetUpStarted IamSetupStep `protobuf:"varint,4,opt,name=set_up_started,json=setUpStarted,proto3,enum=caos.zitadel.management.api.v1.IamSetupStep" 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() IamSetupStep {
|
|
if m != nil {
|
|
return m.SetUpDone
|
|
}
|
|
return IamSetupStep_iam_setup_step_UNDEFINED
|
|
}
|
|
|
|
func (m *Iam) GetSetUpStarted() IamSetupStep {
|
|
if m != nil {
|
|
return m.SetUpStarted
|
|
}
|
|
return IamSetupStep_iam_setup_step_UNDEFINED
|
|
}
|
|
|
|
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 LoginName struct {
|
|
LoginName string `protobuf:"bytes,1,opt,name=login_name,json=loginName,proto3" json:"login_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *LoginName) Reset() { *m = LoginName{} }
|
|
func (m *LoginName) String() string { return proto.CompactTextString(m) }
|
|
func (*LoginName) ProtoMessage() {}
|
|
func (*LoginName) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{8}
|
|
}
|
|
|
|
func (m *LoginName) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_LoginName.Unmarshal(m, b)
|
|
}
|
|
func (m *LoginName) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_LoginName.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *LoginName) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_LoginName.Merge(m, src)
|
|
}
|
|
func (m *LoginName) XXX_Size() int {
|
|
return xxx_messageInfo_LoginName.Size(m)
|
|
}
|
|
func (m *LoginName) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_LoginName.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_LoginName proto.InternalMessageInfo
|
|
|
|
func (m *LoginName) GetLoginName() string {
|
|
if m != nil {
|
|
return m.LoginName
|
|
}
|
|
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"`
|
|
// Types that are valid to be assigned to User:
|
|
// *CreateUserRequest_Human
|
|
// *CreateUserRequest_Machine
|
|
User isCreateUserRequest_User `protobuf_oneof:"user"`
|
|
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 ""
|
|
}
|
|
|
|
type isCreateUserRequest_User interface {
|
|
isCreateUserRequest_User()
|
|
}
|
|
|
|
type CreateUserRequest_Human struct {
|
|
Human *CreateHumanRequest `protobuf:"bytes,2,opt,name=human,proto3,oneof"`
|
|
}
|
|
|
|
type CreateUserRequest_Machine struct {
|
|
Machine *CreateMachineRequest `protobuf:"bytes,3,opt,name=machine,proto3,oneof"`
|
|
}
|
|
|
|
func (*CreateUserRequest_Human) isCreateUserRequest_User() {}
|
|
|
|
func (*CreateUserRequest_Machine) isCreateUserRequest_User() {}
|
|
|
|
func (m *CreateUserRequest) GetUser() isCreateUserRequest_User {
|
|
if m != nil {
|
|
return m.User
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetHuman() *CreateHumanRequest {
|
|
if x, ok := m.GetUser().(*CreateUserRequest_Human); ok {
|
|
return x.Human
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CreateUserRequest) GetMachine() *CreateMachineRequest {
|
|
if x, ok := m.GetUser().(*CreateUserRequest_Machine); ok {
|
|
return x.Machine
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// XXX_OneofWrappers is for the internal use of the proto package.
|
|
func (*CreateUserRequest) XXX_OneofWrappers() []interface{} {
|
|
return []interface{}{
|
|
(*CreateUserRequest_Human)(nil),
|
|
(*CreateUserRequest_Machine)(nil),
|
|
}
|
|
}
|
|
|
|
type CreateHumanRequest struct {
|
|
FirstName string `protobuf:"bytes,1,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
|
|
LastName string `protobuf:"bytes,2,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
|
|
NickName string `protobuf:"bytes,3,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
|
|
PreferredLanguage string `protobuf:"bytes,4,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
|
|
Gender Gender `protobuf:"varint,5,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
|
|
Email string `protobuf:"bytes,6,opt,name=email,proto3" json:"email,omitempty"`
|
|
IsEmailVerified bool `protobuf:"varint,7,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
|
|
Phone string `protobuf:"bytes,8,opt,name=phone,proto3" json:"phone,omitempty"`
|
|
IsPhoneVerified bool `protobuf:"varint,9,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
|
|
Country string `protobuf:"bytes,10,opt,name=country,proto3" json:"country,omitempty"`
|
|
Locality string `protobuf:"bytes,11,opt,name=locality,proto3" json:"locality,omitempty"`
|
|
PostalCode string `protobuf:"bytes,12,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
|
|
Region string `protobuf:"bytes,13,opt,name=region,proto3" json:"region,omitempty"`
|
|
StreetAddress string `protobuf:"bytes,14,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
|
|
Password string `protobuf:"bytes,15,opt,name=password,proto3" json:"password,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CreateHumanRequest) Reset() { *m = CreateHumanRequest{} }
|
|
func (m *CreateHumanRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*CreateHumanRequest) ProtoMessage() {}
|
|
func (*CreateHumanRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{12}
|
|
}
|
|
|
|
func (m *CreateHumanRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CreateHumanRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *CreateHumanRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CreateHumanRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CreateHumanRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CreateHumanRequest.Merge(m, src)
|
|
}
|
|
func (m *CreateHumanRequest) XXX_Size() int {
|
|
return xxx_messageInfo_CreateHumanRequest.Size(m)
|
|
}
|
|
func (m *CreateHumanRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CreateHumanRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CreateHumanRequest proto.InternalMessageInfo
|
|
|
|
func (m *CreateHumanRequest) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateHumanRequest) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateHumanRequest) GetNickName() string {
|
|
if m != nil {
|
|
return m.NickName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateHumanRequest) GetPreferredLanguage() string {
|
|
if m != nil {
|
|
return m.PreferredLanguage
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateHumanRequest) GetGender() Gender {
|
|
if m != nil {
|
|
return m.Gender
|
|
}
|
|
return Gender_GENDER_UNSPECIFIED
|
|
}
|
|
|
|
func (m *CreateHumanRequest) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateHumanRequest) GetIsEmailVerified() bool {
|
|
if m != nil {
|
|
return m.IsEmailVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *CreateHumanRequest) GetPhone() string {
|
|
if m != nil {
|
|
return m.Phone
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateHumanRequest) GetIsPhoneVerified() bool {
|
|
if m != nil {
|
|
return m.IsPhoneVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *CreateHumanRequest) GetCountry() string {
|
|
if m != nil {
|
|
return m.Country
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateHumanRequest) GetLocality() string {
|
|
if m != nil {
|
|
return m.Locality
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateHumanRequest) GetPostalCode() string {
|
|
if m != nil {
|
|
return m.PostalCode
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateHumanRequest) GetRegion() string {
|
|
if m != nil {
|
|
return m.Region
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateHumanRequest) GetStreetAddress() string {
|
|
if m != nil {
|
|
return m.StreetAddress
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateHumanRequest) GetPassword() string {
|
|
if m != nil {
|
|
return m.Password
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type CreateMachineRequest struct {
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CreateMachineRequest) Reset() { *m = CreateMachineRequest{} }
|
|
func (m *CreateMachineRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*CreateMachineRequest) ProtoMessage() {}
|
|
func (*CreateMachineRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{13}
|
|
}
|
|
|
|
func (m *CreateMachineRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CreateMachineRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *CreateMachineRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CreateMachineRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CreateMachineRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CreateMachineRequest.Merge(m, src)
|
|
}
|
|
func (m *CreateMachineRequest) XXX_Size() int {
|
|
return xxx_messageInfo_CreateMachineRequest.Size(m)
|
|
}
|
|
func (m *CreateMachineRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CreateMachineRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CreateMachineRequest proto.InternalMessageInfo
|
|
|
|
func (m *CreateMachineRequest) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateMachineRequest) GetDescription() string {
|
|
if m != nil {
|
|
return m.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type UserResponse 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"`
|
|
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"`
|
|
// Types that are valid to be assigned to User:
|
|
// *UserResponse_Human
|
|
// *UserResponse_Machine
|
|
User isUserResponse_User `protobuf_oneof:"user"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UserResponse) Reset() { *m = UserResponse{} }
|
|
func (m *UserResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*UserResponse) ProtoMessage() {}
|
|
func (*UserResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{14}
|
|
}
|
|
|
|
func (m *UserResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UserResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *UserResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UserResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UserResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UserResponse.Merge(m, src)
|
|
}
|
|
func (m *UserResponse) XXX_Size() int {
|
|
return xxx_messageInfo_UserResponse.Size(m)
|
|
}
|
|
func (m *UserResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UserResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UserResponse proto.InternalMessageInfo
|
|
|
|
func (m *UserResponse) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserResponse) GetState() UserState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return UserState_USERSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *UserResponse) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserResponse) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserResponse) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *UserResponse) GetUserName() string {
|
|
if m != nil {
|
|
return m.UserName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type isUserResponse_User interface {
|
|
isUserResponse_User()
|
|
}
|
|
|
|
type UserResponse_Human struct {
|
|
Human *HumanResponse `protobuf:"bytes,7,opt,name=human,proto3,oneof"`
|
|
}
|
|
|
|
type UserResponse_Machine struct {
|
|
Machine *MachineResponse `protobuf:"bytes,8,opt,name=machine,proto3,oneof"`
|
|
}
|
|
|
|
func (*UserResponse_Human) isUserResponse_User() {}
|
|
|
|
func (*UserResponse_Machine) isUserResponse_User() {}
|
|
|
|
func (m *UserResponse) GetUser() isUserResponse_User {
|
|
if m != nil {
|
|
return m.User
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserResponse) GetHuman() *HumanResponse {
|
|
if x, ok := m.GetUser().(*UserResponse_Human); ok {
|
|
return x.Human
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserResponse) GetMachine() *MachineResponse {
|
|
if x, ok := m.GetUser().(*UserResponse_Machine); ok {
|
|
return x.Machine
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// XXX_OneofWrappers is for the internal use of the proto package.
|
|
func (*UserResponse) XXX_OneofWrappers() []interface{} {
|
|
return []interface{}{
|
|
(*UserResponse_Human)(nil),
|
|
(*UserResponse_Machine)(nil),
|
|
}
|
|
}
|
|
|
|
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"`
|
|
Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
LoginNames []string `protobuf:"bytes,6,rep,name=login_names,json=loginNames,proto3" json:"login_names,omitempty"`
|
|
PreferredLoginName string `protobuf:"bytes,7,opt,name=preferred_login_name,json=preferredLoginName,proto3" json:"preferred_login_name,omitempty"`
|
|
LastLogin *timestamp.Timestamp `protobuf:"bytes,8,opt,name=last_login,json=lastLogin,proto3" json:"last_login,omitempty"`
|
|
ResourceOwner string `protobuf:"bytes,9,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
|
|
UserName string `protobuf:"bytes,10,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
|
|
// Types that are valid to be assigned to User:
|
|
// *UserView_Human
|
|
// *UserView_Machine
|
|
User isUserView_User `protobuf_oneof:"user"`
|
|
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{15}
|
|
}
|
|
|
|
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) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
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 ""
|
|
}
|
|
|
|
func (m *UserView) GetLastLogin() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.LastLogin
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserView) GetResourceOwner() string {
|
|
if m != nil {
|
|
return m.ResourceOwner
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UserView) GetUserName() string {
|
|
if m != nil {
|
|
return m.UserName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type isUserView_User interface {
|
|
isUserView_User()
|
|
}
|
|
|
|
type UserView_Human struct {
|
|
Human *HumanView `protobuf:"bytes,11,opt,name=human,proto3,oneof"`
|
|
}
|
|
|
|
type UserView_Machine struct {
|
|
Machine *MachineView `protobuf:"bytes,12,opt,name=machine,proto3,oneof"`
|
|
}
|
|
|
|
func (*UserView_Human) isUserView_User() {}
|
|
|
|
func (*UserView_Machine) isUserView_User() {}
|
|
|
|
func (m *UserView) GetUser() isUserView_User {
|
|
if m != nil {
|
|
return m.User
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserView) GetHuman() *HumanView {
|
|
if x, ok := m.GetUser().(*UserView_Human); ok {
|
|
return x.Human
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UserView) GetMachine() *MachineView {
|
|
if x, ok := m.GetUser().(*UserView_Machine); ok {
|
|
return x.Machine
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// XXX_OneofWrappers is for the internal use of the proto package.
|
|
func (*UserView) XXX_OneofWrappers() []interface{} {
|
|
return []interface{}{
|
|
(*UserView_Human)(nil),
|
|
(*UserView_Machine)(nil),
|
|
}
|
|
}
|
|
|
|
type HumanResponse struct {
|
|
FirstName string `protobuf:"bytes,1,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
|
|
LastName string `protobuf:"bytes,2,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
|
|
DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *HumanResponse) Reset() { *m = HumanResponse{} }
|
|
func (m *HumanResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*HumanResponse) ProtoMessage() {}
|
|
func (*HumanResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{16}
|
|
}
|
|
|
|
func (m *HumanResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_HumanResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *HumanResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_HumanResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *HumanResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_HumanResponse.Merge(m, src)
|
|
}
|
|
func (m *HumanResponse) XXX_Size() int {
|
|
return xxx_messageInfo_HumanResponse.Size(m)
|
|
}
|
|
func (m *HumanResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_HumanResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_HumanResponse proto.InternalMessageInfo
|
|
|
|
func (m *HumanResponse) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanResponse) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanResponse) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanResponse) GetNickName() string {
|
|
if m != nil {
|
|
return m.NickName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanResponse) GetPreferredLanguage() string {
|
|
if m != nil {
|
|
return m.PreferredLanguage
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanResponse) GetGender() Gender {
|
|
if m != nil {
|
|
return m.Gender
|
|
}
|
|
return Gender_GENDER_UNSPECIFIED
|
|
}
|
|
|
|
func (m *HumanResponse) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanResponse) GetIsEmailVerified() bool {
|
|
if m != nil {
|
|
return m.IsEmailVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *HumanResponse) GetPhone() string {
|
|
if m != nil {
|
|
return m.Phone
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanResponse) GetIsPhoneVerified() bool {
|
|
if m != nil {
|
|
return m.IsPhoneVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *HumanResponse) GetCountry() string {
|
|
if m != nil {
|
|
return m.Country
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanResponse) GetLocality() string {
|
|
if m != nil {
|
|
return m.Locality
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanResponse) GetPostalCode() string {
|
|
if m != nil {
|
|
return m.PostalCode
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanResponse) GetRegion() string {
|
|
if m != nil {
|
|
return m.Region
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanResponse) GetStreetAddress() string {
|
|
if m != nil {
|
|
return m.StreetAddress
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type HumanView struct {
|
|
PasswordChanged *timestamp.Timestamp `protobuf:"bytes,1,opt,name=password_changed,json=passwordChanged,proto3" json:"password_changed,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"`
|
|
DisplayName string `protobuf:"bytes,4,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
|
|
NickName string `protobuf:"bytes,5,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
|
|
PreferredLanguage string `protobuf:"bytes,6,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
|
|
Gender Gender `protobuf:"varint,7,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
|
|
Email string `protobuf:"bytes,8,opt,name=email,proto3" json:"email,omitempty"`
|
|
IsEmailVerified bool `protobuf:"varint,9,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
|
|
Phone string `protobuf:"bytes,10,opt,name=phone,proto3" json:"phone,omitempty"`
|
|
IsPhoneVerified bool `protobuf:"varint,11,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
|
|
Country string `protobuf:"bytes,12,opt,name=country,proto3" json:"country,omitempty"`
|
|
Locality string `protobuf:"bytes,13,opt,name=locality,proto3" json:"locality,omitempty"`
|
|
PostalCode string `protobuf:"bytes,14,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
|
|
Region string `protobuf:"bytes,15,opt,name=region,proto3" json:"region,omitempty"`
|
|
StreetAddress string `protobuf:"bytes,16,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 *HumanView) Reset() { *m = HumanView{} }
|
|
func (m *HumanView) String() string { return proto.CompactTextString(m) }
|
|
func (*HumanView) ProtoMessage() {}
|
|
func (*HumanView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{17}
|
|
}
|
|
|
|
func (m *HumanView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_HumanView.Unmarshal(m, b)
|
|
}
|
|
func (m *HumanView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_HumanView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *HumanView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_HumanView.Merge(m, src)
|
|
}
|
|
func (m *HumanView) XXX_Size() int {
|
|
return xxx_messageInfo_HumanView.Size(m)
|
|
}
|
|
func (m *HumanView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_HumanView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_HumanView proto.InternalMessageInfo
|
|
|
|
func (m *HumanView) GetPasswordChanged() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.PasswordChanged
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *HumanView) GetFirstName() string {
|
|
if m != nil {
|
|
return m.FirstName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanView) GetLastName() string {
|
|
if m != nil {
|
|
return m.LastName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanView) GetDisplayName() string {
|
|
if m != nil {
|
|
return m.DisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanView) GetNickName() string {
|
|
if m != nil {
|
|
return m.NickName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanView) GetPreferredLanguage() string {
|
|
if m != nil {
|
|
return m.PreferredLanguage
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanView) GetGender() Gender {
|
|
if m != nil {
|
|
return m.Gender
|
|
}
|
|
return Gender_GENDER_UNSPECIFIED
|
|
}
|
|
|
|
func (m *HumanView) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanView) GetIsEmailVerified() bool {
|
|
if m != nil {
|
|
return m.IsEmailVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *HumanView) GetPhone() string {
|
|
if m != nil {
|
|
return m.Phone
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanView) GetIsPhoneVerified() bool {
|
|
if m != nil {
|
|
return m.IsPhoneVerified
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *HumanView) GetCountry() string {
|
|
if m != nil {
|
|
return m.Country
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanView) GetLocality() string {
|
|
if m != nil {
|
|
return m.Locality
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanView) GetPostalCode() string {
|
|
if m != nil {
|
|
return m.PostalCode
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanView) GetRegion() string {
|
|
if m != nil {
|
|
return m.Region
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HumanView) GetStreetAddress() string {
|
|
if m != nil {
|
|
return m.StreetAddress
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type MachineResponse struct {
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *MachineResponse) Reset() { *m = MachineResponse{} }
|
|
func (m *MachineResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*MachineResponse) ProtoMessage() {}
|
|
func (*MachineResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{18}
|
|
}
|
|
|
|
func (m *MachineResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_MachineResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *MachineResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_MachineResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *MachineResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_MachineResponse.Merge(m, src)
|
|
}
|
|
func (m *MachineResponse) XXX_Size() int {
|
|
return xxx_messageInfo_MachineResponse.Size(m)
|
|
}
|
|
func (m *MachineResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_MachineResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_MachineResponse proto.InternalMessageInfo
|
|
|
|
func (m *MachineResponse) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *MachineResponse) GetDescription() string {
|
|
if m != nil {
|
|
return m.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type MachineView struct {
|
|
LastKeyAdded *timestamp.Timestamp `protobuf:"bytes,1,opt,name=last_key_added,json=lastKeyAdded,proto3" json:"last_key_added,omitempty"`
|
|
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
|
Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *MachineView) Reset() { *m = MachineView{} }
|
|
func (m *MachineView) String() string { return proto.CompactTextString(m) }
|
|
func (*MachineView) ProtoMessage() {}
|
|
func (*MachineView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{19}
|
|
}
|
|
|
|
func (m *MachineView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_MachineView.Unmarshal(m, b)
|
|
}
|
|
func (m *MachineView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_MachineView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *MachineView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_MachineView.Merge(m, src)
|
|
}
|
|
func (m *MachineView) XXX_Size() int {
|
|
return xxx_messageInfo_MachineView.Size(m)
|
|
}
|
|
func (m *MachineView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_MachineView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_MachineView proto.InternalMessageInfo
|
|
|
|
func (m *MachineView) GetLastKeyAdded() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.LastKeyAdded
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *MachineView) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *MachineView) GetDescription() string {
|
|
if m != nil {
|
|
return m.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type UpdateMachineRequest 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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UpdateMachineRequest) Reset() { *m = UpdateMachineRequest{} }
|
|
func (m *UpdateMachineRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdateMachineRequest) ProtoMessage() {}
|
|
func (*UpdateMachineRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{20}
|
|
}
|
|
|
|
func (m *UpdateMachineRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UpdateMachineRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *UpdateMachineRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UpdateMachineRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UpdateMachineRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UpdateMachineRequest.Merge(m, src)
|
|
}
|
|
func (m *UpdateMachineRequest) XXX_Size() int {
|
|
return xxx_messageInfo_UpdateMachineRequest.Size(m)
|
|
}
|
|
func (m *UpdateMachineRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UpdateMachineRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UpdateMachineRequest proto.InternalMessageInfo
|
|
|
|
func (m *UpdateMachineRequest) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateMachineRequest) GetDescription() string {
|
|
if m != nil {
|
|
return m.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type AddMachineKeyRequest struct {
|
|
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
Type MachineKeyType `protobuf:"varint,2,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.MachineKeyType" json:"type,omitempty"`
|
|
ExpirationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=expiration_date,json=expirationDate,proto3" json:"expiration_date,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *AddMachineKeyRequest) Reset() { *m = AddMachineKeyRequest{} }
|
|
func (m *AddMachineKeyRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*AddMachineKeyRequest) ProtoMessage() {}
|
|
func (*AddMachineKeyRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{21}
|
|
}
|
|
|
|
func (m *AddMachineKeyRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_AddMachineKeyRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *AddMachineKeyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_AddMachineKeyRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *AddMachineKeyRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_AddMachineKeyRequest.Merge(m, src)
|
|
}
|
|
func (m *AddMachineKeyRequest) XXX_Size() int {
|
|
return xxx_messageInfo_AddMachineKeyRequest.Size(m)
|
|
}
|
|
func (m *AddMachineKeyRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_AddMachineKeyRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_AddMachineKeyRequest proto.InternalMessageInfo
|
|
|
|
func (m *AddMachineKeyRequest) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AddMachineKeyRequest) GetType() MachineKeyType {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return MachineKeyType_MACHINEKEY_UNSPECIFIED
|
|
}
|
|
|
|
func (m *AddMachineKeyRequest) GetExpirationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ExpirationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type AddMachineKeyResponse struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,2,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
Type MachineKeyType `protobuf:"varint,4,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.MachineKeyType" json:"type,omitempty"`
|
|
ExpirationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=expiration_date,json=expirationDate,proto3" json:"expiration_date,omitempty"`
|
|
KeyDetails []byte `protobuf:"bytes,6,opt,name=key_details,json=keyDetails,proto3" json:"key_details,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *AddMachineKeyResponse) Reset() { *m = AddMachineKeyResponse{} }
|
|
func (m *AddMachineKeyResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*AddMachineKeyResponse) ProtoMessage() {}
|
|
func (*AddMachineKeyResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{22}
|
|
}
|
|
|
|
func (m *AddMachineKeyResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_AddMachineKeyResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *AddMachineKeyResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_AddMachineKeyResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *AddMachineKeyResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_AddMachineKeyResponse.Merge(m, src)
|
|
}
|
|
func (m *AddMachineKeyResponse) XXX_Size() int {
|
|
return xxx_messageInfo_AddMachineKeyResponse.Size(m)
|
|
}
|
|
func (m *AddMachineKeyResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_AddMachineKeyResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_AddMachineKeyResponse proto.InternalMessageInfo
|
|
|
|
func (m *AddMachineKeyResponse) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AddMachineKeyResponse) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *AddMachineKeyResponse) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *AddMachineKeyResponse) GetType() MachineKeyType {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return MachineKeyType_MACHINEKEY_UNSPECIFIED
|
|
}
|
|
|
|
func (m *AddMachineKeyResponse) GetExpirationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ExpirationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *AddMachineKeyResponse) GetKeyDetails() []byte {
|
|
if m != nil {
|
|
return m.KeyDetails
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type MachineKeyIDRequest struct {
|
|
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
KeyId string `protobuf:"bytes,2,opt,name=key_id,json=keyId,proto3" json:"key_id,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *MachineKeyIDRequest) Reset() { *m = MachineKeyIDRequest{} }
|
|
func (m *MachineKeyIDRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*MachineKeyIDRequest) ProtoMessage() {}
|
|
func (*MachineKeyIDRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{23}
|
|
}
|
|
|
|
func (m *MachineKeyIDRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_MachineKeyIDRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *MachineKeyIDRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_MachineKeyIDRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *MachineKeyIDRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_MachineKeyIDRequest.Merge(m, src)
|
|
}
|
|
func (m *MachineKeyIDRequest) XXX_Size() int {
|
|
return xxx_messageInfo_MachineKeyIDRequest.Size(m)
|
|
}
|
|
func (m *MachineKeyIDRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_MachineKeyIDRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_MachineKeyIDRequest proto.InternalMessageInfo
|
|
|
|
func (m *MachineKeyIDRequest) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *MachineKeyIDRequest) GetKeyId() string {
|
|
if m != nil {
|
|
return m.KeyId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type MachineKeyView struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Type MachineKeyType `protobuf:"varint,2,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.MachineKeyType" json:"type,omitempty"`
|
|
Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ExpirationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=expiration_date,json=expirationDate,proto3" json:"expiration_date,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *MachineKeyView) Reset() { *m = MachineKeyView{} }
|
|
func (m *MachineKeyView) String() string { return proto.CompactTextString(m) }
|
|
func (*MachineKeyView) ProtoMessage() {}
|
|
func (*MachineKeyView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{24}
|
|
}
|
|
|
|
func (m *MachineKeyView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_MachineKeyView.Unmarshal(m, b)
|
|
}
|
|
func (m *MachineKeyView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_MachineKeyView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *MachineKeyView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_MachineKeyView.Merge(m, src)
|
|
}
|
|
func (m *MachineKeyView) XXX_Size() int {
|
|
return xxx_messageInfo_MachineKeyView.Size(m)
|
|
}
|
|
func (m *MachineKeyView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_MachineKeyView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_MachineKeyView proto.InternalMessageInfo
|
|
|
|
func (m *MachineKeyView) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *MachineKeyView) GetType() MachineKeyType {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return MachineKeyType_MACHINEKEY_UNSPECIFIED
|
|
}
|
|
|
|
func (m *MachineKeyView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *MachineKeyView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *MachineKeyView) GetExpirationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ExpirationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type MachineKeySearchRequest 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"`
|
|
Asc bool `protobuf:"varint,3,opt,name=asc,proto3" json:"asc,omitempty"`
|
|
UserId string `protobuf:"bytes,4,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 *MachineKeySearchRequest) Reset() { *m = MachineKeySearchRequest{} }
|
|
func (m *MachineKeySearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*MachineKeySearchRequest) ProtoMessage() {}
|
|
func (*MachineKeySearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{25}
|
|
}
|
|
|
|
func (m *MachineKeySearchRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_MachineKeySearchRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *MachineKeySearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_MachineKeySearchRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *MachineKeySearchRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_MachineKeySearchRequest.Merge(m, src)
|
|
}
|
|
func (m *MachineKeySearchRequest) XXX_Size() int {
|
|
return xxx_messageInfo_MachineKeySearchRequest.Size(m)
|
|
}
|
|
func (m *MachineKeySearchRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_MachineKeySearchRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_MachineKeySearchRequest proto.InternalMessageInfo
|
|
|
|
func (m *MachineKeySearchRequest) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *MachineKeySearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *MachineKeySearchRequest) GetAsc() bool {
|
|
if m != nil {
|
|
return m.Asc
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *MachineKeySearchRequest) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type MachineKeySearchResponse 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 []*MachineKeyView `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 *MachineKeySearchResponse) Reset() { *m = MachineKeySearchResponse{} }
|
|
func (m *MachineKeySearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*MachineKeySearchResponse) ProtoMessage() {}
|
|
func (*MachineKeySearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{26}
|
|
}
|
|
|
|
func (m *MachineKeySearchResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_MachineKeySearchResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *MachineKeySearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_MachineKeySearchResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *MachineKeySearchResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_MachineKeySearchResponse.Merge(m, src)
|
|
}
|
|
func (m *MachineKeySearchResponse) XXX_Size() int {
|
|
return xxx_messageInfo_MachineKeySearchResponse.Size(m)
|
|
}
|
|
func (m *MachineKeySearchResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_MachineKeySearchResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_MachineKeySearchResponse proto.InternalMessageInfo
|
|
|
|
func (m *MachineKeySearchResponse) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *MachineKeySearchResponse) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *MachineKeySearchResponse) GetTotalResult() uint64 {
|
|
if m != nil {
|
|
return m.TotalResult
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *MachineKeySearchResponse) GetResult() []*MachineKeyView {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *MachineKeySearchResponse) GetProcessedSequence() uint64 {
|
|
if m != nil {
|
|
return m.ProcessedSequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *MachineKeySearchResponse) GetViewTimestamp() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ViewTimestamp
|
|
}
|
|
return nil
|
|
}
|
|
|
|
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{27}
|
|
}
|
|
|
|
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{28}
|
|
}
|
|
|
|
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{29}
|
|
}
|
|
|
|
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"`
|
|
Sequence uint64 `protobuf:"varint,8,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,10,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{30}
|
|
}
|
|
|
|
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) 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"`
|
|
Sequence uint64 `protobuf:"varint,8,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
CreationDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
|
|
ChangeDate *timestamp.Timestamp `protobuf:"bytes,10,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
|
|
LoginNames []string `protobuf:"bytes,11,rep,name=login_names,json=loginNames,proto3" json:"login_names,omitempty"`
|
|
PreferredLoginName string `protobuf:"bytes,12,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{31}
|
|
}
|
|
|
|
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) 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{32}
|
|
}
|
|
|
|
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 UpdateUserUserNameRequest struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UpdateUserUserNameRequest) Reset() { *m = UpdateUserUserNameRequest{} }
|
|
func (m *UpdateUserUserNameRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdateUserUserNameRequest) ProtoMessage() {}
|
|
func (*UpdateUserUserNameRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{33}
|
|
}
|
|
|
|
func (m *UpdateUserUserNameRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UpdateUserUserNameRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *UpdateUserUserNameRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UpdateUserUserNameRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UpdateUserUserNameRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UpdateUserUserNameRequest.Merge(m, src)
|
|
}
|
|
func (m *UpdateUserUserNameRequest) XXX_Size() int {
|
|
return xxx_messageInfo_UpdateUserUserNameRequest.Size(m)
|
|
}
|
|
func (m *UpdateUserUserNameRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UpdateUserUserNameRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UpdateUserUserNameRequest proto.InternalMessageInfo
|
|
|
|
func (m *UpdateUserUserNameRequest) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateUserUserNameRequest) GetUserName() string {
|
|
if m != nil {
|
|
return m.UserName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
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{34}
|
|
}
|
|
|
|
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{35}
|
|
}
|
|
|
|
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{36}
|
|
}
|
|
|
|
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{37}
|
|
}
|
|
|
|
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{38}
|
|
}
|
|
|
|
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{39}
|
|
}
|
|
|
|
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{40}
|
|
}
|
|
|
|
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{41}
|
|
}
|
|
|
|
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{42}
|
|
}
|
|
|
|
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{43}
|
|
}
|
|
|
|
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{44}
|
|
}
|
|
|
|
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 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{45}
|
|
}
|
|
|
|
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 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{46}
|
|
}
|
|
|
|
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{47}
|
|
}
|
|
|
|
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{48}
|
|
}
|
|
|
|
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{49}
|
|
}
|
|
|
|
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{50}
|
|
}
|
|
|
|
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{51}
|
|
}
|
|
|
|
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{52}
|
|
}
|
|
|
|
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{53}
|
|
}
|
|
|
|
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{54}
|
|
}
|
|
|
|
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{55}
|
|
}
|
|
|
|
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{56}
|
|
}
|
|
|
|
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{57}
|
|
}
|
|
|
|
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{58}
|
|
}
|
|
|
|
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{59}
|
|
}
|
|
|
|
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 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{60}
|
|
}
|
|
|
|
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{61}
|
|
}
|
|
|
|
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{62}
|
|
}
|
|
|
|
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{63}
|
|
}
|
|
|
|
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 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{64}
|
|
}
|
|
|
|
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{65}
|
|
}
|
|
|
|
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{66}
|
|
}
|
|
|
|
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{67}
|
|
}
|
|
|
|
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{68}
|
|
}
|
|
|
|
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{69}
|
|
}
|
|
|
|
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{70}
|
|
}
|
|
|
|
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{71}
|
|
}
|
|
|
|
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{72}
|
|
}
|
|
|
|
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{73}
|
|
}
|
|
|
|
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{74}
|
|
}
|
|
|
|
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{75}
|
|
}
|
|
|
|
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{76}
|
|
}
|
|
|
|
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{77}
|
|
}
|
|
|
|
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{78}
|
|
}
|
|
|
|
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{79}
|
|
}
|
|
|
|
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{80}
|
|
}
|
|
|
|
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{81}
|
|
}
|
|
|
|
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{82}
|
|
}
|
|
|
|
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{83}
|
|
}
|
|
|
|
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{84}
|
|
}
|
|
|
|
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{85}
|
|
}
|
|
|
|
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{86}
|
|
}
|
|
|
|
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{87}
|
|
}
|
|
|
|
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{88}
|
|
}
|
|
|
|
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{89}
|
|
}
|
|
|
|
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{90}
|
|
}
|
|
|
|
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{91}
|
|
}
|
|
|
|
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{92}
|
|
}
|
|
|
|
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{93}
|
|
}
|
|
|
|
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{94}
|
|
}
|
|
|
|
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{95}
|
|
}
|
|
|
|
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{96}
|
|
}
|
|
|
|
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{97}
|
|
}
|
|
|
|
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{98}
|
|
}
|
|
|
|
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{99}
|
|
}
|
|
|
|
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{100}
|
|
}
|
|
|
|
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{101}
|
|
}
|
|
|
|
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{102}
|
|
}
|
|
|
|
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{103}
|
|
}
|
|
|
|
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{104}
|
|
}
|
|
|
|
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{105}
|
|
}
|
|
|
|
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{106}
|
|
}
|
|
|
|
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{107}
|
|
}
|
|
|
|
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{108}
|
|
}
|
|
|
|
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{109}
|
|
}
|
|
|
|
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{110}
|
|
}
|
|
|
|
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{111}
|
|
}
|
|
|
|
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{112}
|
|
}
|
|
|
|
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{113}
|
|
}
|
|
|
|
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{114}
|
|
}
|
|
|
|
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{115}
|
|
}
|
|
|
|
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{116}
|
|
}
|
|
|
|
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{117}
|
|
}
|
|
|
|
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{118}
|
|
}
|
|
|
|
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{119}
|
|
}
|
|
|
|
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{120}
|
|
}
|
|
|
|
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{121}
|
|
}
|
|
|
|
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{122}
|
|
}
|
|
|
|
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{123}
|
|
}
|
|
|
|
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{124}
|
|
}
|
|
|
|
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{125}
|
|
}
|
|
|
|
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{126}
|
|
}
|
|
|
|
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{127}
|
|
}
|
|
|
|
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{128}
|
|
}
|
|
|
|
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{129}
|
|
}
|
|
|
|
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{130}
|
|
}
|
|
|
|
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{131}
|
|
}
|
|
|
|
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{132}
|
|
}
|
|
|
|
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{133}
|
|
}
|
|
|
|
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{134}
|
|
}
|
|
|
|
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{135}
|
|
}
|
|
|
|
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{136}
|
|
}
|
|
|
|
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{137}
|
|
}
|
|
|
|
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{138}
|
|
}
|
|
|
|
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 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{139}
|
|
}
|
|
|
|
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 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{140}
|
|
}
|
|
|
|
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{141}
|
|
}
|
|
|
|
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{142}
|
|
}
|
|
|
|
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{143}
|
|
}
|
|
|
|
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{144}
|
|
}
|
|
|
|
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{145}
|
|
}
|
|
|
|
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{146}
|
|
}
|
|
|
|
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 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{147}
|
|
}
|
|
|
|
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{148}
|
|
}
|
|
|
|
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{149}
|
|
}
|
|
|
|
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{150}
|
|
}
|
|
|
|
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 ""
|
|
}
|
|
|
|
type IdpID 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 *IdpID) Reset() { *m = IdpID{} }
|
|
func (m *IdpID) String() string { return proto.CompactTextString(m) }
|
|
func (*IdpID) ProtoMessage() {}
|
|
func (*IdpID) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{151}
|
|
}
|
|
|
|
func (m *IdpID) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IdpID.Unmarshal(m, b)
|
|
}
|
|
func (m *IdpID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IdpID.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IdpID) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IdpID.Merge(m, src)
|
|
}
|
|
func (m *IdpID) XXX_Size() int {
|
|
return xxx_messageInfo_IdpID.Size(m)
|
|
}
|
|
func (m *IdpID) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IdpID.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IdpID proto.InternalMessageInfo
|
|
|
|
func (m *IdpID) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Idp struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
State IdpState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.IdpState" 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"`
|
|
LogoSrc []byte `protobuf:"bytes,6,opt,name=logo_src,json=logoSrc,proto3" json:"logo_src,omitempty"`
|
|
// Types that are valid to be assigned to IdpConfig:
|
|
// *Idp_OidcConfig
|
|
IdpConfig isIdp_IdpConfig `protobuf_oneof:"idp_config"`
|
|
Sequence uint64 `protobuf:"varint,8,opt,name=sequence,proto3" json:"sequence,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Idp) Reset() { *m = Idp{} }
|
|
func (m *Idp) String() string { return proto.CompactTextString(m) }
|
|
func (*Idp) ProtoMessage() {}
|
|
func (*Idp) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{152}
|
|
}
|
|
|
|
func (m *Idp) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Idp.Unmarshal(m, b)
|
|
}
|
|
func (m *Idp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Idp.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Idp) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Idp.Merge(m, src)
|
|
}
|
|
func (m *Idp) XXX_Size() int {
|
|
return xxx_messageInfo_Idp.Size(m)
|
|
}
|
|
func (m *Idp) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Idp.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Idp proto.InternalMessageInfo
|
|
|
|
func (m *Idp) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Idp) GetState() IdpState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return IdpState_IDPCONFIGSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *Idp) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Idp) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Idp) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Idp) GetLogoSrc() []byte {
|
|
if m != nil {
|
|
return m.LogoSrc
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type isIdp_IdpConfig interface {
|
|
isIdp_IdpConfig()
|
|
}
|
|
|
|
type Idp_OidcConfig struct {
|
|
OidcConfig *OidcIdpConfig `protobuf:"bytes,7,opt,name=oidc_config,json=oidcConfig,proto3,oneof"`
|
|
}
|
|
|
|
func (*Idp_OidcConfig) isIdp_IdpConfig() {}
|
|
|
|
func (m *Idp) GetIdpConfig() isIdp_IdpConfig {
|
|
if m != nil {
|
|
return m.IdpConfig
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Idp) GetOidcConfig() *OidcIdpConfig {
|
|
if x, ok := m.GetIdpConfig().(*Idp_OidcConfig); ok {
|
|
return x.OidcConfig
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Idp) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// XXX_OneofWrappers is for the internal use of the proto package.
|
|
func (*Idp) XXX_OneofWrappers() []interface{} {
|
|
return []interface{}{
|
|
(*Idp_OidcConfig)(nil),
|
|
}
|
|
}
|
|
|
|
type IdpUpdate 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"`
|
|
LogoSrc []byte `protobuf:"bytes,3,opt,name=logo_src,json=logoSrc,proto3" json:"logo_src,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *IdpUpdate) Reset() { *m = IdpUpdate{} }
|
|
func (m *IdpUpdate) String() string { return proto.CompactTextString(m) }
|
|
func (*IdpUpdate) ProtoMessage() {}
|
|
func (*IdpUpdate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{153}
|
|
}
|
|
|
|
func (m *IdpUpdate) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IdpUpdate.Unmarshal(m, b)
|
|
}
|
|
func (m *IdpUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IdpUpdate.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IdpUpdate) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IdpUpdate.Merge(m, src)
|
|
}
|
|
func (m *IdpUpdate) XXX_Size() int {
|
|
return xxx_messageInfo_IdpUpdate.Size(m)
|
|
}
|
|
func (m *IdpUpdate) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IdpUpdate.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IdpUpdate proto.InternalMessageInfo
|
|
|
|
func (m *IdpUpdate) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *IdpUpdate) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *IdpUpdate) GetLogoSrc() []byte {
|
|
if m != nil {
|
|
return m.LogoSrc
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type OidcIdpConfig struct {
|
|
ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
|
|
ClientSecret string `protobuf:"bytes,2,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
|
|
Issuer string `protobuf:"bytes,3,opt,name=issuer,proto3" json:"issuer,omitempty"`
|
|
Scopes []string `protobuf:"bytes,4,rep,name=scopes,proto3" json:"scopes,omitempty"`
|
|
IdpDisplayNameMapping OIDCMappingField `protobuf:"varint,5,opt,name=idp_display_name_mapping,json=idpDisplayNameMapping,proto3,enum=caos.zitadel.management.api.v1.OIDCMappingField" json:"idp_display_name_mapping,omitempty"`
|
|
UsernameMapping OIDCMappingField `protobuf:"varint,6,opt,name=username_mapping,json=usernameMapping,proto3,enum=caos.zitadel.management.api.v1.OIDCMappingField" json:"username_mapping,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OidcIdpConfig) Reset() { *m = OidcIdpConfig{} }
|
|
func (m *OidcIdpConfig) String() string { return proto.CompactTextString(m) }
|
|
func (*OidcIdpConfig) ProtoMessage() {}
|
|
func (*OidcIdpConfig) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{154}
|
|
}
|
|
|
|
func (m *OidcIdpConfig) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OidcIdpConfig.Unmarshal(m, b)
|
|
}
|
|
func (m *OidcIdpConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OidcIdpConfig.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OidcIdpConfig) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OidcIdpConfig.Merge(m, src)
|
|
}
|
|
func (m *OidcIdpConfig) XXX_Size() int {
|
|
return xxx_messageInfo_OidcIdpConfig.Size(m)
|
|
}
|
|
func (m *OidcIdpConfig) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OidcIdpConfig.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OidcIdpConfig proto.InternalMessageInfo
|
|
|
|
func (m *OidcIdpConfig) GetClientId() string {
|
|
if m != nil {
|
|
return m.ClientId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OidcIdpConfig) GetClientSecret() string {
|
|
if m != nil {
|
|
return m.ClientSecret
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OidcIdpConfig) GetIssuer() string {
|
|
if m != nil {
|
|
return m.Issuer
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OidcIdpConfig) GetScopes() []string {
|
|
if m != nil {
|
|
return m.Scopes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OidcIdpConfig) GetIdpDisplayNameMapping() OIDCMappingField {
|
|
if m != nil {
|
|
return m.IdpDisplayNameMapping
|
|
}
|
|
return OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
|
|
}
|
|
|
|
func (m *OidcIdpConfig) GetUsernameMapping() OIDCMappingField {
|
|
if m != nil {
|
|
return m.UsernameMapping
|
|
}
|
|
return OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
|
|
}
|
|
|
|
type OidcIdpConfigCreate struct {
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
LogoSrc []byte `protobuf:"bytes,2,opt,name=logo_src,json=logoSrc,proto3" json:"logo_src,omitempty"`
|
|
ClientId string `protobuf:"bytes,3,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
|
|
ClientSecret string `protobuf:"bytes,4,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
|
|
Issuer string `protobuf:"bytes,5,opt,name=issuer,proto3" json:"issuer,omitempty"`
|
|
Scopes []string `protobuf:"bytes,6,rep,name=scopes,proto3" json:"scopes,omitempty"`
|
|
IdpDisplayNameMapping OIDCMappingField `protobuf:"varint,7,opt,name=idp_display_name_mapping,json=idpDisplayNameMapping,proto3,enum=caos.zitadel.management.api.v1.OIDCMappingField" json:"idp_display_name_mapping,omitempty"`
|
|
UsernameMapping OIDCMappingField `protobuf:"varint,8,opt,name=username_mapping,json=usernameMapping,proto3,enum=caos.zitadel.management.api.v1.OIDCMappingField" json:"username_mapping,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OidcIdpConfigCreate) Reset() { *m = OidcIdpConfigCreate{} }
|
|
func (m *OidcIdpConfigCreate) String() string { return proto.CompactTextString(m) }
|
|
func (*OidcIdpConfigCreate) ProtoMessage() {}
|
|
func (*OidcIdpConfigCreate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{155}
|
|
}
|
|
|
|
func (m *OidcIdpConfigCreate) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OidcIdpConfigCreate.Unmarshal(m, b)
|
|
}
|
|
func (m *OidcIdpConfigCreate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OidcIdpConfigCreate.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OidcIdpConfigCreate) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OidcIdpConfigCreate.Merge(m, src)
|
|
}
|
|
func (m *OidcIdpConfigCreate) XXX_Size() int {
|
|
return xxx_messageInfo_OidcIdpConfigCreate.Size(m)
|
|
}
|
|
func (m *OidcIdpConfigCreate) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OidcIdpConfigCreate.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OidcIdpConfigCreate proto.InternalMessageInfo
|
|
|
|
func (m *OidcIdpConfigCreate) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OidcIdpConfigCreate) GetLogoSrc() []byte {
|
|
if m != nil {
|
|
return m.LogoSrc
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OidcIdpConfigCreate) GetClientId() string {
|
|
if m != nil {
|
|
return m.ClientId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OidcIdpConfigCreate) GetClientSecret() string {
|
|
if m != nil {
|
|
return m.ClientSecret
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OidcIdpConfigCreate) GetIssuer() string {
|
|
if m != nil {
|
|
return m.Issuer
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OidcIdpConfigCreate) GetScopes() []string {
|
|
if m != nil {
|
|
return m.Scopes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OidcIdpConfigCreate) GetIdpDisplayNameMapping() OIDCMappingField {
|
|
if m != nil {
|
|
return m.IdpDisplayNameMapping
|
|
}
|
|
return OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
|
|
}
|
|
|
|
func (m *OidcIdpConfigCreate) GetUsernameMapping() OIDCMappingField {
|
|
if m != nil {
|
|
return m.UsernameMapping
|
|
}
|
|
return OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
|
|
}
|
|
|
|
type OidcIdpConfigUpdate struct {
|
|
IdpId string `protobuf:"bytes,1,opt,name=idp_id,json=idpId,proto3" json:"idp_id,omitempty"`
|
|
ClientId string `protobuf:"bytes,2,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
|
|
ClientSecret string `protobuf:"bytes,3,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
|
|
Issuer string `protobuf:"bytes,4,opt,name=issuer,proto3" json:"issuer,omitempty"`
|
|
Scopes []string `protobuf:"bytes,5,rep,name=scopes,proto3" json:"scopes,omitempty"`
|
|
IdpDisplayNameMapping OIDCMappingField `protobuf:"varint,6,opt,name=idp_display_name_mapping,json=idpDisplayNameMapping,proto3,enum=caos.zitadel.management.api.v1.OIDCMappingField" json:"idp_display_name_mapping,omitempty"`
|
|
UsernameMapping OIDCMappingField `protobuf:"varint,7,opt,name=username_mapping,json=usernameMapping,proto3,enum=caos.zitadel.management.api.v1.OIDCMappingField" json:"username_mapping,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OidcIdpConfigUpdate) Reset() { *m = OidcIdpConfigUpdate{} }
|
|
func (m *OidcIdpConfigUpdate) String() string { return proto.CompactTextString(m) }
|
|
func (*OidcIdpConfigUpdate) ProtoMessage() {}
|
|
func (*OidcIdpConfigUpdate) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{156}
|
|
}
|
|
|
|
func (m *OidcIdpConfigUpdate) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OidcIdpConfigUpdate.Unmarshal(m, b)
|
|
}
|
|
func (m *OidcIdpConfigUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OidcIdpConfigUpdate.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OidcIdpConfigUpdate) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OidcIdpConfigUpdate.Merge(m, src)
|
|
}
|
|
func (m *OidcIdpConfigUpdate) XXX_Size() int {
|
|
return xxx_messageInfo_OidcIdpConfigUpdate.Size(m)
|
|
}
|
|
func (m *OidcIdpConfigUpdate) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OidcIdpConfigUpdate.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OidcIdpConfigUpdate proto.InternalMessageInfo
|
|
|
|
func (m *OidcIdpConfigUpdate) GetIdpId() string {
|
|
if m != nil {
|
|
return m.IdpId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OidcIdpConfigUpdate) GetClientId() string {
|
|
if m != nil {
|
|
return m.ClientId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OidcIdpConfigUpdate) GetClientSecret() string {
|
|
if m != nil {
|
|
return m.ClientSecret
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OidcIdpConfigUpdate) GetIssuer() string {
|
|
if m != nil {
|
|
return m.Issuer
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OidcIdpConfigUpdate) GetScopes() []string {
|
|
if m != nil {
|
|
return m.Scopes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OidcIdpConfigUpdate) GetIdpDisplayNameMapping() OIDCMappingField {
|
|
if m != nil {
|
|
return m.IdpDisplayNameMapping
|
|
}
|
|
return OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
|
|
}
|
|
|
|
func (m *OidcIdpConfigUpdate) GetUsernameMapping() OIDCMappingField {
|
|
if m != nil {
|
|
return m.UsernameMapping
|
|
}
|
|
return OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
|
|
}
|
|
|
|
type IdpSearchResponse 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 []*IdpView `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 *IdpSearchResponse) Reset() { *m = IdpSearchResponse{} }
|
|
func (m *IdpSearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*IdpSearchResponse) ProtoMessage() {}
|
|
func (*IdpSearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{157}
|
|
}
|
|
|
|
func (m *IdpSearchResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IdpSearchResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *IdpSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IdpSearchResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IdpSearchResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IdpSearchResponse.Merge(m, src)
|
|
}
|
|
func (m *IdpSearchResponse) XXX_Size() int {
|
|
return xxx_messageInfo_IdpSearchResponse.Size(m)
|
|
}
|
|
func (m *IdpSearchResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IdpSearchResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IdpSearchResponse proto.InternalMessageInfo
|
|
|
|
func (m *IdpSearchResponse) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *IdpSearchResponse) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *IdpSearchResponse) GetTotalResult() uint64 {
|
|
if m != nil {
|
|
return m.TotalResult
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *IdpSearchResponse) GetResult() []*IdpView {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IdpSearchResponse) GetProcessedSequence() uint64 {
|
|
if m != nil {
|
|
return m.ProcessedSequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *IdpSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ViewTimestamp
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type IdpView struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
State IdpState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.IdpState" 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"`
|
|
LogoSrc []byte `protobuf:"bytes,6,opt,name=logo_src,json=logoSrc,proto3" json:"logo_src,omitempty"`
|
|
ProviderType IdpProviderType `protobuf:"varint,7,opt,name=provider_type,json=providerType,proto3,enum=caos.zitadel.management.api.v1.IdpProviderType" json:"provider_type,omitempty"`
|
|
// Types that are valid to be assigned to IdpConfigView:
|
|
// *IdpView_OidcConfig
|
|
IdpConfigView isIdpView_IdpConfigView `protobuf_oneof:"idp_config_view"`
|
|
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 *IdpView) Reset() { *m = IdpView{} }
|
|
func (m *IdpView) String() string { return proto.CompactTextString(m) }
|
|
func (*IdpView) ProtoMessage() {}
|
|
func (*IdpView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{158}
|
|
}
|
|
|
|
func (m *IdpView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IdpView.Unmarshal(m, b)
|
|
}
|
|
func (m *IdpView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IdpView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IdpView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IdpView.Merge(m, src)
|
|
}
|
|
func (m *IdpView) XXX_Size() int {
|
|
return xxx_messageInfo_IdpView.Size(m)
|
|
}
|
|
func (m *IdpView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IdpView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IdpView proto.InternalMessageInfo
|
|
|
|
func (m *IdpView) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *IdpView) GetState() IdpState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return IdpState_IDPCONFIGSTATE_UNSPECIFIED
|
|
}
|
|
|
|
func (m *IdpView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IdpView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IdpView) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *IdpView) GetLogoSrc() []byte {
|
|
if m != nil {
|
|
return m.LogoSrc
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IdpView) GetProviderType() IdpProviderType {
|
|
if m != nil {
|
|
return m.ProviderType
|
|
}
|
|
return IdpProviderType_IDPPROVIDERTYPE_UNSPECIFIED
|
|
}
|
|
|
|
type isIdpView_IdpConfigView interface {
|
|
isIdpView_IdpConfigView()
|
|
}
|
|
|
|
type IdpView_OidcConfig struct {
|
|
OidcConfig *OidcIdpConfigView `protobuf:"bytes,8,opt,name=oidc_config,json=oidcConfig,proto3,oneof"`
|
|
}
|
|
|
|
func (*IdpView_OidcConfig) isIdpView_IdpConfigView() {}
|
|
|
|
func (m *IdpView) GetIdpConfigView() isIdpView_IdpConfigView {
|
|
if m != nil {
|
|
return m.IdpConfigView
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IdpView) GetOidcConfig() *OidcIdpConfigView {
|
|
if x, ok := m.GetIdpConfigView().(*IdpView_OidcConfig); ok {
|
|
return x.OidcConfig
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IdpView) GetSequence() uint64 {
|
|
if m != nil {
|
|
return m.Sequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// XXX_OneofWrappers is for the internal use of the proto package.
|
|
func (*IdpView) XXX_OneofWrappers() []interface{} {
|
|
return []interface{}{
|
|
(*IdpView_OidcConfig)(nil),
|
|
}
|
|
}
|
|
|
|
type OidcIdpConfigView struct {
|
|
ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
|
|
Issuer string `protobuf:"bytes,2,opt,name=issuer,proto3" json:"issuer,omitempty"`
|
|
Scopes []string `protobuf:"bytes,3,rep,name=scopes,proto3" json:"scopes,omitempty"`
|
|
IdpDisplayNameMapping OIDCMappingField `protobuf:"varint,4,opt,name=idp_display_name_mapping,json=idpDisplayNameMapping,proto3,enum=caos.zitadel.management.api.v1.OIDCMappingField" json:"idp_display_name_mapping,omitempty"`
|
|
UsernameMapping OIDCMappingField `protobuf:"varint,5,opt,name=username_mapping,json=usernameMapping,proto3,enum=caos.zitadel.management.api.v1.OIDCMappingField" json:"username_mapping,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OidcIdpConfigView) Reset() { *m = OidcIdpConfigView{} }
|
|
func (m *OidcIdpConfigView) String() string { return proto.CompactTextString(m) }
|
|
func (*OidcIdpConfigView) ProtoMessage() {}
|
|
func (*OidcIdpConfigView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{159}
|
|
}
|
|
|
|
func (m *OidcIdpConfigView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OidcIdpConfigView.Unmarshal(m, b)
|
|
}
|
|
func (m *OidcIdpConfigView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OidcIdpConfigView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OidcIdpConfigView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OidcIdpConfigView.Merge(m, src)
|
|
}
|
|
func (m *OidcIdpConfigView) XXX_Size() int {
|
|
return xxx_messageInfo_OidcIdpConfigView.Size(m)
|
|
}
|
|
func (m *OidcIdpConfigView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OidcIdpConfigView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OidcIdpConfigView proto.InternalMessageInfo
|
|
|
|
func (m *OidcIdpConfigView) GetClientId() string {
|
|
if m != nil {
|
|
return m.ClientId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OidcIdpConfigView) GetIssuer() string {
|
|
if m != nil {
|
|
return m.Issuer
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OidcIdpConfigView) GetScopes() []string {
|
|
if m != nil {
|
|
return m.Scopes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OidcIdpConfigView) GetIdpDisplayNameMapping() OIDCMappingField {
|
|
if m != nil {
|
|
return m.IdpDisplayNameMapping
|
|
}
|
|
return OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
|
|
}
|
|
|
|
func (m *OidcIdpConfigView) GetUsernameMapping() OIDCMappingField {
|
|
if m != nil {
|
|
return m.UsernameMapping
|
|
}
|
|
return OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
|
|
}
|
|
|
|
type IdpSearchRequest 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 []*IdpSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *IdpSearchRequest) Reset() { *m = IdpSearchRequest{} }
|
|
func (m *IdpSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*IdpSearchRequest) ProtoMessage() {}
|
|
func (*IdpSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{160}
|
|
}
|
|
|
|
func (m *IdpSearchRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IdpSearchRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *IdpSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IdpSearchRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IdpSearchRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IdpSearchRequest.Merge(m, src)
|
|
}
|
|
func (m *IdpSearchRequest) XXX_Size() int {
|
|
return xxx_messageInfo_IdpSearchRequest.Size(m)
|
|
}
|
|
func (m *IdpSearchRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IdpSearchRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IdpSearchRequest proto.InternalMessageInfo
|
|
|
|
func (m *IdpSearchRequest) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *IdpSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *IdpSearchRequest) GetQueries() []*IdpSearchQuery {
|
|
if m != nil {
|
|
return m.Queries
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type IdpSearchQuery struct {
|
|
Key IdpSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.IdpSearchKey" 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 *IdpSearchQuery) Reset() { *m = IdpSearchQuery{} }
|
|
func (m *IdpSearchQuery) String() string { return proto.CompactTextString(m) }
|
|
func (*IdpSearchQuery) ProtoMessage() {}
|
|
func (*IdpSearchQuery) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{161}
|
|
}
|
|
|
|
func (m *IdpSearchQuery) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IdpSearchQuery.Unmarshal(m, b)
|
|
}
|
|
func (m *IdpSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IdpSearchQuery.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IdpSearchQuery) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IdpSearchQuery.Merge(m, src)
|
|
}
|
|
func (m *IdpSearchQuery) XXX_Size() int {
|
|
return xxx_messageInfo_IdpSearchQuery.Size(m)
|
|
}
|
|
func (m *IdpSearchQuery) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IdpSearchQuery.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IdpSearchQuery proto.InternalMessageInfo
|
|
|
|
func (m *IdpSearchQuery) GetKey() IdpSearchKey {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
return IdpSearchKey_IDPSEARCHKEY_UNSPECIFIED
|
|
}
|
|
|
|
func (m *IdpSearchQuery) GetMethod() SearchMethod {
|
|
if m != nil {
|
|
return m.Method
|
|
}
|
|
return SearchMethod_SEARCHMETHOD_EQUALS
|
|
}
|
|
|
|
func (m *IdpSearchQuery) GetValue() string {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type LoginPolicy struct {
|
|
AllowUsernamePassword bool `protobuf:"varint,1,opt,name=allow_username_password,json=allowUsernamePassword,proto3" json:"allow_username_password,omitempty"`
|
|
AllowRegister bool `protobuf:"varint,2,opt,name=allow_register,json=allowRegister,proto3" json:"allow_register,omitempty"`
|
|
AllowExternalIdp bool `protobuf:"varint,3,opt,name=allow_external_idp,json=allowExternalIdp,proto3" json:"allow_external_idp,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *LoginPolicy) Reset() { *m = LoginPolicy{} }
|
|
func (m *LoginPolicy) String() string { return proto.CompactTextString(m) }
|
|
func (*LoginPolicy) ProtoMessage() {}
|
|
func (*LoginPolicy) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{162}
|
|
}
|
|
|
|
func (m *LoginPolicy) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_LoginPolicy.Unmarshal(m, b)
|
|
}
|
|
func (m *LoginPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_LoginPolicy.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *LoginPolicy) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_LoginPolicy.Merge(m, src)
|
|
}
|
|
func (m *LoginPolicy) XXX_Size() int {
|
|
return xxx_messageInfo_LoginPolicy.Size(m)
|
|
}
|
|
func (m *LoginPolicy) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_LoginPolicy.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_LoginPolicy proto.InternalMessageInfo
|
|
|
|
func (m *LoginPolicy) GetAllowUsernamePassword() bool {
|
|
if m != nil {
|
|
return m.AllowUsernamePassword
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *LoginPolicy) GetAllowRegister() bool {
|
|
if m != nil {
|
|
return m.AllowRegister
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *LoginPolicy) GetAllowExternalIdp() bool {
|
|
if m != nil {
|
|
return m.AllowExternalIdp
|
|
}
|
|
return false
|
|
}
|
|
|
|
type LoginPolicyAdd struct {
|
|
AllowUsernamePassword bool `protobuf:"varint,1,opt,name=allow_username_password,json=allowUsernamePassword,proto3" json:"allow_username_password,omitempty"`
|
|
AllowRegister bool `protobuf:"varint,2,opt,name=allow_register,json=allowRegister,proto3" json:"allow_register,omitempty"`
|
|
AllowExternalIdp bool `protobuf:"varint,3,opt,name=allow_external_idp,json=allowExternalIdp,proto3" json:"allow_external_idp,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *LoginPolicyAdd) Reset() { *m = LoginPolicyAdd{} }
|
|
func (m *LoginPolicyAdd) String() string { return proto.CompactTextString(m) }
|
|
func (*LoginPolicyAdd) ProtoMessage() {}
|
|
func (*LoginPolicyAdd) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{163}
|
|
}
|
|
|
|
func (m *LoginPolicyAdd) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_LoginPolicyAdd.Unmarshal(m, b)
|
|
}
|
|
func (m *LoginPolicyAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_LoginPolicyAdd.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *LoginPolicyAdd) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_LoginPolicyAdd.Merge(m, src)
|
|
}
|
|
func (m *LoginPolicyAdd) XXX_Size() int {
|
|
return xxx_messageInfo_LoginPolicyAdd.Size(m)
|
|
}
|
|
func (m *LoginPolicyAdd) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_LoginPolicyAdd.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_LoginPolicyAdd proto.InternalMessageInfo
|
|
|
|
func (m *LoginPolicyAdd) GetAllowUsernamePassword() bool {
|
|
if m != nil {
|
|
return m.AllowUsernamePassword
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *LoginPolicyAdd) GetAllowRegister() bool {
|
|
if m != nil {
|
|
return m.AllowRegister
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *LoginPolicyAdd) GetAllowExternalIdp() bool {
|
|
if m != nil {
|
|
return m.AllowExternalIdp
|
|
}
|
|
return false
|
|
}
|
|
|
|
type IdpProviderID struct {
|
|
IdpConfigId string `protobuf:"bytes,1,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *IdpProviderID) Reset() { *m = IdpProviderID{} }
|
|
func (m *IdpProviderID) String() string { return proto.CompactTextString(m) }
|
|
func (*IdpProviderID) ProtoMessage() {}
|
|
func (*IdpProviderID) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{164}
|
|
}
|
|
|
|
func (m *IdpProviderID) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IdpProviderID.Unmarshal(m, b)
|
|
}
|
|
func (m *IdpProviderID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IdpProviderID.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IdpProviderID) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IdpProviderID.Merge(m, src)
|
|
}
|
|
func (m *IdpProviderID) XXX_Size() int {
|
|
return xxx_messageInfo_IdpProviderID.Size(m)
|
|
}
|
|
func (m *IdpProviderID) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IdpProviderID.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IdpProviderID proto.InternalMessageInfo
|
|
|
|
func (m *IdpProviderID) GetIdpConfigId() string {
|
|
if m != nil {
|
|
return m.IdpConfigId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type IdpProviderAdd struct {
|
|
IdpConfigId string `protobuf:"bytes,1,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
|
|
IdpProviderType IdpProviderType `protobuf:"varint,2,opt,name=idp_provider_type,json=idpProviderType,proto3,enum=caos.zitadel.management.api.v1.IdpProviderType" json:"idp_provider_type,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *IdpProviderAdd) Reset() { *m = IdpProviderAdd{} }
|
|
func (m *IdpProviderAdd) String() string { return proto.CompactTextString(m) }
|
|
func (*IdpProviderAdd) ProtoMessage() {}
|
|
func (*IdpProviderAdd) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{165}
|
|
}
|
|
|
|
func (m *IdpProviderAdd) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IdpProviderAdd.Unmarshal(m, b)
|
|
}
|
|
func (m *IdpProviderAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IdpProviderAdd.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IdpProviderAdd) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IdpProviderAdd.Merge(m, src)
|
|
}
|
|
func (m *IdpProviderAdd) XXX_Size() int {
|
|
return xxx_messageInfo_IdpProviderAdd.Size(m)
|
|
}
|
|
func (m *IdpProviderAdd) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IdpProviderAdd.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IdpProviderAdd proto.InternalMessageInfo
|
|
|
|
func (m *IdpProviderAdd) GetIdpConfigId() string {
|
|
if m != nil {
|
|
return m.IdpConfigId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *IdpProviderAdd) GetIdpProviderType() IdpProviderType {
|
|
if m != nil {
|
|
return m.IdpProviderType
|
|
}
|
|
return IdpProviderType_IDPPROVIDERTYPE_UNSPECIFIED
|
|
}
|
|
|
|
type IdpProvider struct {
|
|
IdpConfigId string `protobuf:"bytes,1,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
|
|
IdpProvider_Type IdpProviderType `protobuf:"varint,2,opt,name=idp_provider_Type,json=idpProviderType,proto3,enum=caos.zitadel.management.api.v1.IdpProviderType" json:"idp_provider_Type,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *IdpProvider) Reset() { *m = IdpProvider{} }
|
|
func (m *IdpProvider) String() string { return proto.CompactTextString(m) }
|
|
func (*IdpProvider) ProtoMessage() {}
|
|
func (*IdpProvider) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{166}
|
|
}
|
|
|
|
func (m *IdpProvider) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IdpProvider.Unmarshal(m, b)
|
|
}
|
|
func (m *IdpProvider) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IdpProvider.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IdpProvider) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IdpProvider.Merge(m, src)
|
|
}
|
|
func (m *IdpProvider) XXX_Size() int {
|
|
return xxx_messageInfo_IdpProvider.Size(m)
|
|
}
|
|
func (m *IdpProvider) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IdpProvider.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IdpProvider proto.InternalMessageInfo
|
|
|
|
func (m *IdpProvider) GetIdpConfigId() string {
|
|
if m != nil {
|
|
return m.IdpConfigId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *IdpProvider) GetIdpProvider_Type() IdpProviderType {
|
|
if m != nil {
|
|
return m.IdpProvider_Type
|
|
}
|
|
return IdpProviderType_IDPPROVIDERTYPE_UNSPECIFIED
|
|
}
|
|
|
|
type LoginPolicyView struct {
|
|
Default bool `protobuf:"varint,1,opt,name=default,proto3" json:"default,omitempty"`
|
|
AllowUsernamePassword bool `protobuf:"varint,2,opt,name=allow_username_password,json=allowUsernamePassword,proto3" json:"allow_username_password,omitempty"`
|
|
AllowRegister bool `protobuf:"varint,3,opt,name=allow_register,json=allowRegister,proto3" json:"allow_register,omitempty"`
|
|
AllowExternalIdp bool `protobuf:"varint,4,opt,name=allow_external_idp,json=allowExternalIdp,proto3" json:"allow_external_idp,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *LoginPolicyView) Reset() { *m = LoginPolicyView{} }
|
|
func (m *LoginPolicyView) String() string { return proto.CompactTextString(m) }
|
|
func (*LoginPolicyView) ProtoMessage() {}
|
|
func (*LoginPolicyView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{167}
|
|
}
|
|
|
|
func (m *LoginPolicyView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_LoginPolicyView.Unmarshal(m, b)
|
|
}
|
|
func (m *LoginPolicyView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_LoginPolicyView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *LoginPolicyView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_LoginPolicyView.Merge(m, src)
|
|
}
|
|
func (m *LoginPolicyView) XXX_Size() int {
|
|
return xxx_messageInfo_LoginPolicyView.Size(m)
|
|
}
|
|
func (m *LoginPolicyView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_LoginPolicyView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_LoginPolicyView proto.InternalMessageInfo
|
|
|
|
func (m *LoginPolicyView) GetDefault() bool {
|
|
if m != nil {
|
|
return m.Default
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *LoginPolicyView) GetAllowUsernamePassword() bool {
|
|
if m != nil {
|
|
return m.AllowUsernamePassword
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *LoginPolicyView) GetAllowRegister() bool {
|
|
if m != nil {
|
|
return m.AllowRegister
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *LoginPolicyView) GetAllowExternalIdp() bool {
|
|
if m != nil {
|
|
return m.AllowExternalIdp
|
|
}
|
|
return false
|
|
}
|
|
|
|
type IdpProviderView struct {
|
|
IdpConfigId string `protobuf:"bytes,1,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
|
|
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
|
Type IdpType `protobuf:"varint,3,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.IdpType" json:"type,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *IdpProviderView) Reset() { *m = IdpProviderView{} }
|
|
func (m *IdpProviderView) String() string { return proto.CompactTextString(m) }
|
|
func (*IdpProviderView) ProtoMessage() {}
|
|
func (*IdpProviderView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{168}
|
|
}
|
|
|
|
func (m *IdpProviderView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IdpProviderView.Unmarshal(m, b)
|
|
}
|
|
func (m *IdpProviderView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IdpProviderView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IdpProviderView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IdpProviderView.Merge(m, src)
|
|
}
|
|
func (m *IdpProviderView) XXX_Size() int {
|
|
return xxx_messageInfo_IdpProviderView.Size(m)
|
|
}
|
|
func (m *IdpProviderView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IdpProviderView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IdpProviderView proto.InternalMessageInfo
|
|
|
|
func (m *IdpProviderView) GetIdpConfigId() string {
|
|
if m != nil {
|
|
return m.IdpConfigId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *IdpProviderView) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *IdpProviderView) GetType() IdpType {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return IdpType_IDPTYPE_UNSPECIFIED
|
|
}
|
|
|
|
type IdpProviderSearchResponse 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 []*IdpProviderView `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 *IdpProviderSearchResponse) Reset() { *m = IdpProviderSearchResponse{} }
|
|
func (m *IdpProviderSearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*IdpProviderSearchResponse) ProtoMessage() {}
|
|
func (*IdpProviderSearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{169}
|
|
}
|
|
|
|
func (m *IdpProviderSearchResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IdpProviderSearchResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *IdpProviderSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IdpProviderSearchResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IdpProviderSearchResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IdpProviderSearchResponse.Merge(m, src)
|
|
}
|
|
func (m *IdpProviderSearchResponse) XXX_Size() int {
|
|
return xxx_messageInfo_IdpProviderSearchResponse.Size(m)
|
|
}
|
|
func (m *IdpProviderSearchResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IdpProviderSearchResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IdpProviderSearchResponse proto.InternalMessageInfo
|
|
|
|
func (m *IdpProviderSearchResponse) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *IdpProviderSearchResponse) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *IdpProviderSearchResponse) GetTotalResult() uint64 {
|
|
if m != nil {
|
|
return m.TotalResult
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *IdpProviderSearchResponse) GetResult() []*IdpProviderView {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IdpProviderSearchResponse) GetProcessedSequence() uint64 {
|
|
if m != nil {
|
|
return m.ProcessedSequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *IdpProviderSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ViewTimestamp
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type IdpProviderSearchRequest 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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *IdpProviderSearchRequest) Reset() { *m = IdpProviderSearchRequest{} }
|
|
func (m *IdpProviderSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*IdpProviderSearchRequest) ProtoMessage() {}
|
|
func (*IdpProviderSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{170}
|
|
}
|
|
|
|
func (m *IdpProviderSearchRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IdpProviderSearchRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *IdpProviderSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IdpProviderSearchRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IdpProviderSearchRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IdpProviderSearchRequest.Merge(m, src)
|
|
}
|
|
func (m *IdpProviderSearchRequest) XXX_Size() int {
|
|
return xxx_messageInfo_IdpProviderSearchRequest.Size(m)
|
|
}
|
|
func (m *IdpProviderSearchRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IdpProviderSearchRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IdpProviderSearchRequest proto.InternalMessageInfo
|
|
|
|
func (m *IdpProviderSearchRequest) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *IdpProviderSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type ExternalIDPSearchRequest 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"`
|
|
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 *ExternalIDPSearchRequest) Reset() { *m = ExternalIDPSearchRequest{} }
|
|
func (m *ExternalIDPSearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ExternalIDPSearchRequest) ProtoMessage() {}
|
|
func (*ExternalIDPSearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{171}
|
|
}
|
|
|
|
func (m *ExternalIDPSearchRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ExternalIDPSearchRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ExternalIDPSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ExternalIDPSearchRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ExternalIDPSearchRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ExternalIDPSearchRequest.Merge(m, src)
|
|
}
|
|
func (m *ExternalIDPSearchRequest) XXX_Size() int {
|
|
return xxx_messageInfo_ExternalIDPSearchRequest.Size(m)
|
|
}
|
|
func (m *ExternalIDPSearchRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ExternalIDPSearchRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ExternalIDPSearchRequest proto.InternalMessageInfo
|
|
|
|
func (m *ExternalIDPSearchRequest) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ExternalIDPSearchRequest) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ExternalIDPSearchRequest) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ExternalIDPSearchResponse 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 []*ExternalIDPView `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 *ExternalIDPSearchResponse) Reset() { *m = ExternalIDPSearchResponse{} }
|
|
func (m *ExternalIDPSearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ExternalIDPSearchResponse) ProtoMessage() {}
|
|
func (*ExternalIDPSearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{172}
|
|
}
|
|
|
|
func (m *ExternalIDPSearchResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ExternalIDPSearchResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *ExternalIDPSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ExternalIDPSearchResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ExternalIDPSearchResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ExternalIDPSearchResponse.Merge(m, src)
|
|
}
|
|
func (m *ExternalIDPSearchResponse) XXX_Size() int {
|
|
return xxx_messageInfo_ExternalIDPSearchResponse.Size(m)
|
|
}
|
|
func (m *ExternalIDPSearchResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ExternalIDPSearchResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ExternalIDPSearchResponse proto.InternalMessageInfo
|
|
|
|
func (m *ExternalIDPSearchResponse) GetOffset() uint64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ExternalIDPSearchResponse) GetLimit() uint64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ExternalIDPSearchResponse) GetTotalResult() uint64 {
|
|
if m != nil {
|
|
return m.TotalResult
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ExternalIDPSearchResponse) GetResult() []*ExternalIDPView {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ExternalIDPSearchResponse) GetProcessedSequence() uint64 {
|
|
if m != nil {
|
|
return m.ProcessedSequence
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ExternalIDPSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ViewTimestamp
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ExternalIDPView struct {
|
|
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
IdpConfigId string `protobuf:"bytes,2,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
|
|
ExternalUserId string `protobuf:"bytes,3,opt,name=external_user_id,json=externalUserId,proto3" json:"external_user_id,omitempty"`
|
|
IdpName string `protobuf:"bytes,4,opt,name=idp_name,json=idpName,proto3" json:"idp_name,omitempty"`
|
|
ExternalUserDisplayName string `protobuf:"bytes,5,opt,name=external_user_display_name,json=externalUserDisplayName,proto3" json:"external_user_display_name,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 *ExternalIDPView) Reset() { *m = ExternalIDPView{} }
|
|
func (m *ExternalIDPView) String() string { return proto.CompactTextString(m) }
|
|
func (*ExternalIDPView) ProtoMessage() {}
|
|
func (*ExternalIDPView) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{173}
|
|
}
|
|
|
|
func (m *ExternalIDPView) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ExternalIDPView.Unmarshal(m, b)
|
|
}
|
|
func (m *ExternalIDPView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ExternalIDPView.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ExternalIDPView) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ExternalIDPView.Merge(m, src)
|
|
}
|
|
func (m *ExternalIDPView) XXX_Size() int {
|
|
return xxx_messageInfo_ExternalIDPView.Size(m)
|
|
}
|
|
func (m *ExternalIDPView) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ExternalIDPView.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ExternalIDPView proto.InternalMessageInfo
|
|
|
|
func (m *ExternalIDPView) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ExternalIDPView) GetIdpConfigId() string {
|
|
if m != nil {
|
|
return m.IdpConfigId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ExternalIDPView) GetExternalUserId() string {
|
|
if m != nil {
|
|
return m.ExternalUserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ExternalIDPView) GetIdpName() string {
|
|
if m != nil {
|
|
return m.IdpName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ExternalIDPView) GetExternalUserDisplayName() string {
|
|
if m != nil {
|
|
return m.ExternalUserDisplayName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ExternalIDPView) GetCreationDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.CreationDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ExternalIDPView) GetChangeDate() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.ChangeDate
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ExternalIDPRemoveRequest struct {
|
|
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
IdpConfigId string `protobuf:"bytes,2,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
|
|
ExternalUserId string `protobuf:"bytes,3,opt,name=external_user_id,json=externalUserId,proto3" json:"external_user_id,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ExternalIDPRemoveRequest) Reset() { *m = ExternalIDPRemoveRequest{} }
|
|
func (m *ExternalIDPRemoveRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ExternalIDPRemoveRequest) ProtoMessage() {}
|
|
func (*ExternalIDPRemoveRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_edc174f991dc0a25, []int{174}
|
|
}
|
|
|
|
func (m *ExternalIDPRemoveRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ExternalIDPRemoveRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ExternalIDPRemoveRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ExternalIDPRemoveRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ExternalIDPRemoveRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ExternalIDPRemoveRequest.Merge(m, src)
|
|
}
|
|
func (m *ExternalIDPRemoveRequest) XXX_Size() int {
|
|
return xxx_messageInfo_ExternalIDPRemoveRequest.Size(m)
|
|
}
|
|
func (m *ExternalIDPRemoveRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ExternalIDPRemoveRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ExternalIDPRemoveRequest proto.InternalMessageInfo
|
|
|
|
func (m *ExternalIDPRemoveRequest) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ExternalIDPRemoveRequest) GetIdpConfigId() string {
|
|
if m != nil {
|
|
return m.IdpConfigId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ExternalIDPRemoveRequest) GetExternalUserId() string {
|
|
if m != nil {
|
|
return m.ExternalUserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterEnum("caos.zitadel.management.api.v1.IamSetupStep", IamSetupStep_name, IamSetupStep_value)
|
|
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.MachineKeyType", MachineKeyType_name, MachineKeyType_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.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.RegisterEnum("caos.zitadel.management.api.v1.IdpState", IdpState_name, IdpState_value)
|
|
proto.RegisterEnum("caos.zitadel.management.api.v1.OIDCMappingField", OIDCMappingField_name, OIDCMappingField_value)
|
|
proto.RegisterEnum("caos.zitadel.management.api.v1.IdpSearchKey", IdpSearchKey_name, IdpSearchKey_value)
|
|
proto.RegisterEnum("caos.zitadel.management.api.v1.IdpType", IdpType_name, IdpType_value)
|
|
proto.RegisterEnum("caos.zitadel.management.api.v1.IdpProviderType", IdpProviderType_name, IdpProviderType_value)
|
|
proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectType", ProjectType_name, ProjectType_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((*LoginName)(nil), "caos.zitadel.management.api.v1.LoginName")
|
|
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((*CreateHumanRequest)(nil), "caos.zitadel.management.api.v1.CreateHumanRequest")
|
|
proto.RegisterType((*CreateMachineRequest)(nil), "caos.zitadel.management.api.v1.CreateMachineRequest")
|
|
proto.RegisterType((*UserResponse)(nil), "caos.zitadel.management.api.v1.UserResponse")
|
|
proto.RegisterType((*UserView)(nil), "caos.zitadel.management.api.v1.UserView")
|
|
proto.RegisterType((*HumanResponse)(nil), "caos.zitadel.management.api.v1.HumanResponse")
|
|
proto.RegisterType((*HumanView)(nil), "caos.zitadel.management.api.v1.HumanView")
|
|
proto.RegisterType((*MachineResponse)(nil), "caos.zitadel.management.api.v1.MachineResponse")
|
|
proto.RegisterType((*MachineView)(nil), "caos.zitadel.management.api.v1.MachineView")
|
|
proto.RegisterType((*UpdateMachineRequest)(nil), "caos.zitadel.management.api.v1.UpdateMachineRequest")
|
|
proto.RegisterType((*AddMachineKeyRequest)(nil), "caos.zitadel.management.api.v1.AddMachineKeyRequest")
|
|
proto.RegisterType((*AddMachineKeyResponse)(nil), "caos.zitadel.management.api.v1.AddMachineKeyResponse")
|
|
proto.RegisterType((*MachineKeyIDRequest)(nil), "caos.zitadel.management.api.v1.MachineKeyIDRequest")
|
|
proto.RegisterType((*MachineKeyView)(nil), "caos.zitadel.management.api.v1.MachineKeyView")
|
|
proto.RegisterType((*MachineKeySearchRequest)(nil), "caos.zitadel.management.api.v1.MachineKeySearchRequest")
|
|
proto.RegisterType((*MachineKeySearchResponse)(nil), "caos.zitadel.management.api.v1.MachineKeySearchResponse")
|
|
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((*UpdateUserUserNameRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserUserNameRequest")
|
|
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((*PasswordRequest)(nil), "caos.zitadel.management.api.v1.PasswordRequest")
|
|
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((*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((*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((*UserGrantCreate)(nil), "caos.zitadel.management.api.v1.UserGrantCreate")
|
|
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((*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")
|
|
proto.RegisterType((*IdpID)(nil), "caos.zitadel.management.api.v1.IdpID")
|
|
proto.RegisterType((*Idp)(nil), "caos.zitadel.management.api.v1.Idp")
|
|
proto.RegisterType((*IdpUpdate)(nil), "caos.zitadel.management.api.v1.IdpUpdate")
|
|
proto.RegisterType((*OidcIdpConfig)(nil), "caos.zitadel.management.api.v1.OidcIdpConfig")
|
|
proto.RegisterType((*OidcIdpConfigCreate)(nil), "caos.zitadel.management.api.v1.OidcIdpConfigCreate")
|
|
proto.RegisterType((*OidcIdpConfigUpdate)(nil), "caos.zitadel.management.api.v1.OidcIdpConfigUpdate")
|
|
proto.RegisterType((*IdpSearchResponse)(nil), "caos.zitadel.management.api.v1.IdpSearchResponse")
|
|
proto.RegisterType((*IdpView)(nil), "caos.zitadel.management.api.v1.IdpView")
|
|
proto.RegisterType((*OidcIdpConfigView)(nil), "caos.zitadel.management.api.v1.OidcIdpConfigView")
|
|
proto.RegisterType((*IdpSearchRequest)(nil), "caos.zitadel.management.api.v1.IdpSearchRequest")
|
|
proto.RegisterType((*IdpSearchQuery)(nil), "caos.zitadel.management.api.v1.IdpSearchQuery")
|
|
proto.RegisterType((*LoginPolicy)(nil), "caos.zitadel.management.api.v1.LoginPolicy")
|
|
proto.RegisterType((*LoginPolicyAdd)(nil), "caos.zitadel.management.api.v1.LoginPolicyAdd")
|
|
proto.RegisterType((*IdpProviderID)(nil), "caos.zitadel.management.api.v1.IdpProviderID")
|
|
proto.RegisterType((*IdpProviderAdd)(nil), "caos.zitadel.management.api.v1.IdpProviderAdd")
|
|
proto.RegisterType((*IdpProvider)(nil), "caos.zitadel.management.api.v1.IdpProvider")
|
|
proto.RegisterType((*LoginPolicyView)(nil), "caos.zitadel.management.api.v1.LoginPolicyView")
|
|
proto.RegisterType((*IdpProviderView)(nil), "caos.zitadel.management.api.v1.IdpProviderView")
|
|
proto.RegisterType((*IdpProviderSearchResponse)(nil), "caos.zitadel.management.api.v1.IdpProviderSearchResponse")
|
|
proto.RegisterType((*IdpProviderSearchRequest)(nil), "caos.zitadel.management.api.v1.IdpProviderSearchRequest")
|
|
proto.RegisterType((*ExternalIDPSearchRequest)(nil), "caos.zitadel.management.api.v1.ExternalIDPSearchRequest")
|
|
proto.RegisterType((*ExternalIDPSearchResponse)(nil), "caos.zitadel.management.api.v1.ExternalIDPSearchResponse")
|
|
proto.RegisterType((*ExternalIDPView)(nil), "caos.zitadel.management.api.v1.ExternalIDPView")
|
|
proto.RegisterType((*ExternalIDPRemoveRequest)(nil), "caos.zitadel.management.api.v1.ExternalIDPRemoveRequest")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("management.proto", fileDescriptor_edc174f991dc0a25) }
|
|
|
|
var fileDescriptor_edc174f991dc0a25 = []byte{
|
|
// 11812 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x7b, 0x90, 0x1c, 0x49,
|
|
0x5e, 0x1f, 0xbe, 0xd5, 0xdd, 0x33, 0xd3, 0xf3, 0x9d, 0x57, 0x4f, 0xce, 0xab, 0xa7, 0x47, 0x8f,
|
|
0xd9, 0x5a, 0x69, 0x25, 0xb5, 0xa4, 0x69, 0x49, 0xfb, 0x94, 0xf6, 0xb8, 0xdd, 0x9e, 0xe9, 0xd6,
|
|
0xa8, 0x4f, 0x33, 0xd3, 0xb3, 0xdd, 0xa3, 0x5d, 0xf6, 0xf6, 0x07, 0x4d, 0xa9, 0xab, 0xd4, 0x2a,
|
|
0xd4, 0xaf, 0xab, 0xaa, 0x96, 0x76, 0x6e, 0x7f, 0x0b, 0x46, 0x18, 0xee, 0x7c, 0x67, 0x30, 0xdc,
|
|
0x82, 0x0f, 0xee, 0x69, 0xee, 0xe2, 0x38, 0xe0, 0xb8, 0xbb, 0x70, 0xf8, 0x04, 0x6b, 0xb0, 0x21,
|
|
0x82, 0x38, 0x30, 0x06, 0x4c, 0x04, 0x36, 0x01, 0x44, 0x18, 0x02, 0x63, 0x3b, 0x1c, 0x36, 0xe1,
|
|
0x30, 0x76, 0x70, 0x61, 0xfb, 0xd6, 0x11, 0x0e, 0x47, 0x3e, 0xaa, 0x2a, 0xab, 0xba, 0xaa, 0xab,
|
|
0x6a, 0x46, 0xaf, 0xdb, 0xdd, 0xbf, 0x66, 0x3a, 0x9f, 0x9f, 0xfc, 0xe6, 0xf7, 0x95, 0xdf, 0xcc,
|
|
0xca, 0x84, 0x54, 0x4b, 0x6a, 0x4b, 0x0d, 0xa5, 0xa5, 0xb4, 0x8d, 0x95, 0xae, 0xd6, 0x31, 0x3a,
|
|
0xe8, 0x50, 0x5d, 0xea, 0xe8, 0x2b, 0x1f, 0x56, 0x0d, 0x49, 0x56, 0x9a, 0x2b, 0x5c, 0xb6, 0xd4,
|
|
0x55, 0x57, 0x6e, 0x9e, 0xcd, 0x1c, 0x68, 0x74, 0x3a, 0x8d, 0xa6, 0x92, 0x93, 0xba, 0x6a, 0x4e,
|
|
0x6a, 0xb7, 0x3b, 0x86, 0x64, 0xa8, 0x9d, 0xb6, 0x4e, 0x6b, 0x67, 0x96, 0x58, 0x2e, 0xf9, 0x75,
|
|
0xb5, 0x77, 0x2d, 0xa7, 0xb4, 0xba, 0xc6, 0x2e, 0xcb, 0x3c, 0xe0, 0xce, 0xd4, 0x0d, 0xad, 0x57,
|
|
0x67, 0x1d, 0x67, 0x0e, 0xbb, 0x73, 0x0d, 0xb5, 0xa5, 0xe8, 0x86, 0xd4, 0xea, 0xb2, 0x02, 0xa7,
|
|
0xc8, 0x9f, 0xfa, 0xe9, 0x86, 0xd2, 0x3e, 0xad, 0xdf, 0x92, 0x1a, 0x0d, 0x45, 0xcb, 0x75, 0xba,
|
|
0xa4, 0x77, 0x0f, 0x24, 0x0b, 0x37, 0xa5, 0xa6, 0x2a, 0x4b, 0x86, 0x92, 0x33, 0xff, 0x61, 0x19,
|
|
0x69, 0xa9, 0x67, 0x5c, 0xa7, 0xf5, 0xcc, 0xea, 0x2c, 0x67, 0x86, 0xfc, 0xc9, 0xb5, 0x14, 0x5d,
|
|
0x97, 0x1a, 0xac, 0xb8, 0xb8, 0x03, 0x63, 0x1f, 0xa4, 0xc4, 0x28, 0x74, 0xea, 0x3a, 0x9a, 0x87,
|
|
0x61, 0x55, 0xd7, 0x7b, 0x8a, 0x96, 0x16, 0x96, 0x85, 0xe3, 0xa3, 0x15, 0xf6, 0x0b, 0x9d, 0x06,
|
|
0x24, 0xab, 0x7a, 0xbd, 0x73, 0x53, 0xd1, 0x76, 0x6b, 0x4a, 0x5b, 0xee, 0x76, 0xd4, 0xb6, 0x91,
|
|
0x8e, 0x91, 0x32, 0xd3, 0x56, 0x4e, 0x91, 0x65, 0x88, 0xff, 0x43, 0x80, 0x78, 0x49, 0x6a, 0x21,
|
|
0x11, 0x26, 0x1a, 0xcd, 0xce, 0x55, 0xa9, 0x59, 0xeb, 0x68, 0x8d, 0x9a, 0x2a, 0xb3, 0x56, 0xc7,
|
|
0x68, 0x62, 0x59, 0x6b, 0x94, 0x64, 0x74, 0x04, 0x26, 0x55, 0xa9, 0x55, 0xeb, 0x6a, 0x9d, 0xef,
|
|
0x57, 0xea, 0x06, 0x2e, 0x44, 0x9b, 0x1d, 0x57, 0xa5, 0xd6, 0x36, 0x4d, 0x2c, 0xc9, 0x68, 0x03,
|
|
0xc6, 0x74, 0xc5, 0xa8, 0xf5, 0xba, 0x35, 0xb9, 0xd3, 0x56, 0xd2, 0xf1, 0x65, 0xe1, 0xf8, 0xe4,
|
|
0xb9, 0x53, 0x2b, 0x83, 0x67, 0x73, 0xa5, 0x24, 0xb5, 0xaa, 0x8a, 0xd1, 0xeb, 0x56, 0x0d, 0xa5,
|
|
0x5b, 0x19, 0xd5, 0x15, 0xe3, 0x4a, 0xb7, 0xd0, 0x69, 0x2b, 0xa8, 0x02, 0x93, 0xac, 0x35, 0xdd,
|
|
0x90, 0x34, 0x43, 0x91, 0xd3, 0x89, 0x3d, 0x34, 0x38, 0x4e, 0x1a, 0xac, 0xd2, 0x16, 0xc4, 0x8f,
|
|
0x08, 0x30, 0xb1, 0x76, 0x5d, 0x6a, 0x37, 0x94, 0x8a, 0xf2, 0xa1, 0x9e, 0xa2, 0x1b, 0x68, 0x12,
|
|
0x62, 0xd6, 0x90, 0x63, 0xaa, 0x8c, 0xe6, 0x60, 0x58, 0x57, 0xea, 0xf6, 0x08, 0x87, 0x74, 0xa5,
|
|
0x5e, 0x92, 0xd1, 0x2c, 0x0c, 0x35, 0xd5, 0x96, 0x6a, 0x90, 0x41, 0x25, 0x2a, 0xf4, 0x07, 0x3a,
|
|
0x06, 0x53, 0x3a, 0x6e, 0xa7, 0x5d, 0x57, 0x6a, 0x9d, 0x6b, 0xd7, 0x74, 0xc5, 0x20, 0x18, 0x13,
|
|
0x95, 0x49, 0x33, 0xb9, 0x4c, 0x52, 0x51, 0x0a, 0xe2, 0x92, 0x5e, 0x4f, 0x0f, 0x2d, 0x0b, 0xc7,
|
|
0x93, 0x15, 0xfc, 0xaf, 0xb8, 0x0b, 0x23, 0x14, 0x88, 0x8e, 0x5e, 0x80, 0x91, 0x3a, 0xfd, 0x37,
|
|
0x2d, 0x2c, 0xc7, 0x8f, 0x8f, 0x9d, 0x7b, 0x3c, 0x68, 0x84, 0x6c, 0x08, 0x66, 0x35, 0xcc, 0x11,
|
|
0xac, 0xfb, 0x18, 0xe9, 0x9e, 0xfd, 0xf2, 0x46, 0x2d, 0xfe, 0xbd, 0x18, 0x0c, 0xd3, 0x16, 0xd0,
|
|
0x73, 0x30, 0x46, 0xdb, 0xa8, 0x61, 0xee, 0x24, 0x64, 0x18, 0x3b, 0x97, 0x59, 0xa1, 0x62, 0xb0,
|
|
0x62, 0x8a, 0xc1, 0xca, 0x8e, 0x29, 0x06, 0x15, 0xa0, 0xc5, 0x0b, 0x92, 0xa1, 0xa0, 0x02, 0x80,
|
|
0x72, 0x53, 0x69, 0x1b, 0x35, 0x63, 0xb7, 0xab, 0x90, 0x9e, 0xc7, 0xce, 0x1d, 0x75, 0x42, 0x67,
|
|
0x78, 0x37, 0x3a, 0x75, 0xa9, 0xa9, 0x7e, 0x58, 0x91, 0x37, 0x29, 0x5f, 0x57, 0x46, 0x49, 0xc5,
|
|
0x9d, 0xdd, 0xae, 0x82, 0x32, 0x90, 0x34, 0x89, 0xc5, 0x60, 0x5a, 0xbf, 0xd1, 0x12, 0x8c, 0x2a,
|
|
0xb2, 0x6a, 0x74, 0x34, 0x3c, 0x1f, 0x09, 0x32, 0x1f, 0x49, 0x9a, 0x50, 0x92, 0xf1, 0xa0, 0xe9,
|
|
0xff, 0x84, 0xac, 0xa3, 0x15, 0xf6, 0x0b, 0x9d, 0x84, 0x84, 0x2c, 0x19, 0x52, 0x7a, 0x98, 0x00,
|
|
0x5a, 0xe8, 0x1b, 0x4c, 0x95, 0x48, 0x7c, 0x85, 0x14, 0x12, 0xb7, 0x61, 0x22, 0xdf, 0xed, 0x36,
|
|
0xd5, 0x3a, 0x11, 0xdc, 0x52, 0x01, 0x2d, 0xd8, 0xfc, 0xb0, 0x3a, 0xf2, 0xf6, 0x6a, 0x42, 0x8b,
|
|
0xa5, 0x04, 0xc2, 0x18, 0x8f, 0x03, 0xb8, 0xd9, 0xdf, 0x2e, 0x30, 0xda, 0x35, 0x85, 0x40, 0x3c,
|
|
0x02, 0xa3, 0xa6, 0x44, 0xf8, 0xb7, 0x26, 0x3e, 0x0a, 0xc3, 0x57, 0x74, 0x45, 0x1b, 0x54, 0xe4,
|
|
0x09, 0x18, 0xdd, 0xe8, 0x34, 0xd4, 0xf6, 0x96, 0xd4, 0x52, 0x70, 0xef, 0x4d, 0xfc, 0xa3, 0xd6,
|
|
0x96, 0x5a, 0x8a, 0xbb, 0xf4, 0x68, 0xd3, 0x2c, 0x27, 0x76, 0x61, 0xfa, 0x4a, 0x5b, 0xfd, 0x50,
|
|
0x4f, 0xc1, 0xad, 0x9b, 0x3c, 0x7e, 0x1e, 0x46, 0x7b, 0xba, 0xa2, 0xf1, 0x75, 0x0f, 0xbc, 0xbd,
|
|
0xba, 0xa8, 0x2d, 0x9c, 0x9b, 0xfb, 0xde, 0x57, 0xbf, 0xf7, 0xd5, 0x0b, 0x7a, 0x57, 0xaa, 0x2b,
|
|
0x17, 0xbe, 0xe7, 0x7b, 0x5e, 0x3f, 0x7b, 0xea, 0xdc, 0x99, 0x33, 0x6f, 0x1c, 0xa9, 0x24, 0x71,
|
|
0x71, 0xd2, 0xef, 0x32, 0x0c, 0x29, 0x2d, 0x49, 0x6d, 0xb2, 0x01, 0xc3, 0xdb, 0xab, 0x23, 0xda,
|
|
0x50, 0x4a, 0x48, 0xff, 0xae, 0x50, 0xa1, 0x19, 0xe2, 0x59, 0x40, 0x7c, 0x8f, 0x7a, 0xb7, 0xd3,
|
|
0xd6, 0xc9, 0xcc, 0xa9, 0x7a, 0xad, 0x47, 0x32, 0x48, 0x97, 0xc9, 0x4a, 0x52, 0xd5, 0x69, 0x41,
|
|
0xf1, 0xdb, 0x02, 0x4c, 0xaf, 0x69, 0x8a, 0x64, 0xdc, 0x2d, 0x94, 0x1f, 0x80, 0xa1, 0xeb, 0xbd,
|
|
0x96, 0xd4, 0x66, 0x4c, 0x78, 0x2e, 0x50, 0x7e, 0x48, 0xe7, 0x97, 0x70, 0x15, 0xd6, 0xfb, 0xa5,
|
|
0x47, 0x2a, 0xb4, 0x09, 0xb4, 0x0d, 0x23, 0x2d, 0xa9, 0x7e, 0x5d, 0x65, 0x0a, 0x6c, 0xec, 0xdc,
|
|
0x93, 0xe1, 0x5a, 0xdb, 0xa4, 0x95, 0xec, 0xf6, 0xcc, 0x66, 0x56, 0xc7, 0x20, 0x81, 0x91, 0xa2,
|
|
0xf8, 0xff, 0x5e, 0x15, 0xc4, 0x9f, 0x18, 0x02, 0xd4, 0xdf, 0x3d, 0x3a, 0x01, 0x70, 0x4d, 0xd5,
|
|
0x74, 0x83, 0x1f, 0x3d, 0x4f, 0xec, 0x51, 0x92, 0x4b, 0x06, 0x7b, 0x0c, 0x46, 0x9b, 0x92, 0x59,
|
|
0xb2, 0x7f, 0x5a, 0x92, 0x38, 0x93, 0x14, 0x3c, 0x0a, 0xa3, 0x6d, 0xb5, 0x7e, 0x83, 0x16, 0x8c,
|
|
0x93, 0x82, 0xc9, 0xb7, 0x57, 0x87, 0xb4, 0x38, 0x29, 0x86, 0xb3, 0x48, 0xb1, 0x67, 0x00, 0x75,
|
|
0x35, 0xe5, 0x9a, 0xa2, 0x69, 0x8a, 0x5c, 0x6b, 0x4a, 0xed, 0x46, 0x4f, 0x6a, 0x28, 0x54, 0xda,
|
|
0xb8, 0xf2, 0xd3, 0x56, 0x99, 0x0d, 0x56, 0x04, 0xbd, 0x1f, 0x86, 0x1b, 0x4a, 0x5b, 0x56, 0xa8,
|
|
0x00, 0x4e, 0x06, 0xab, 0xad, 0x75, 0x52, 0xba, 0xc2, 0x6a, 0x21, 0xd1, 0xe4, 0xad, 0x61, 0xd2,
|
|
0xd7, 0xf8, 0xdb, 0xab, 0xa3, 0xda, 0x08, 0x19, 0xc4, 0xf7, 0x99, 0xdc, 0x85, 0xb2, 0x30, 0xad,
|
|
0xea, 0x35, 0xf2, 0x7f, 0xed, 0xa6, 0xa2, 0xa9, 0xd7, 0x54, 0x45, 0x4e, 0x8f, 0x10, 0x7e, 0x9a,
|
|
0x52, 0xf5, 0x22, 0x4e, 0x7f, 0x89, 0x25, 0xa3, 0x83, 0x30, 0xd4, 0xbd, 0x8e, 0x0d, 0x4f, 0x92,
|
|
0x13, 0x8f, 0xf4, 0x6c, 0x85, 0xa6, 0xb2, 0xa6, 0xc8, 0xff, 0x76, 0x53, 0xa3, 0x66, 0x53, 0xdb,
|
|
0x38, 0xdd, 0x6a, 0x4a, 0x84, 0x91, 0x7a, 0xa7, 0xd7, 0x36, 0xb4, 0xdd, 0x34, 0xb8, 0x08, 0x61,
|
|
0x66, 0xa0, 0x23, 0x90, 0x6c, 0x12, 0xbd, 0x66, 0xec, 0xa6, 0xc7, 0xdc, 0xd4, 0x35, 0x73, 0xd0,
|
|
0x09, 0x18, 0xeb, 0x76, 0x74, 0x43, 0x6a, 0xd6, 0xea, 0x1d, 0x59, 0x49, 0x8f, 0xbb, 0x0a, 0x02,
|
|
0xcd, 0x5c, 0xeb, 0xc8, 0x58, 0xd6, 0x86, 0x35, 0xa5, 0xa1, 0x76, 0xda, 0xe9, 0x09, 0x57, 0x29,
|
|
0x96, 0x8e, 0x72, 0x30, 0xa9, 0x1b, 0x9a, 0xa2, 0x18, 0x35, 0x49, 0x96, 0x35, 0x45, 0xd7, 0xd3,
|
|
0x93, 0xae, 0x92, 0x13, 0x34, 0x3f, 0x4f, 0xb3, 0xd1, 0x63, 0x90, 0xec, 0x4a, 0xba, 0x7e, 0xab,
|
|
0xa3, 0xc9, 0xe9, 0x29, 0x9e, 0x2a, 0x97, 0x2a, 0x56, 0x86, 0x78, 0x15, 0x66, 0xbd, 0x58, 0x18,
|
|
0x1d, 0x82, 0x84, 0x0f, 0x37, 0x92, 0x74, 0x94, 0x85, 0x31, 0x59, 0xd1, 0xeb, 0x9a, 0x4a, 0x3c,
|
|
0x18, 0xc6, 0x8a, 0x0c, 0xca, 0xb7, 0xe2, 0x15, 0x3e, 0x53, 0xfc, 0xd5, 0x38, 0x8c, 0x3b, 0x14,
|
|
0x84, 0xdb, 0xee, 0x3e, 0x0f, 0x43, 0xba, 0x81, 0x6d, 0x50, 0x8c, 0xf0, 0xd2, 0x89, 0x20, 0x5e,
|
|
0xc2, 0x8d, 0x55, 0x71, 0x85, 0x0a, 0xad, 0x87, 0x9e, 0x87, 0x89, 0x3a, 0x1e, 0x85, 0xda, 0x69,
|
|
0x53, 0x63, 0x16, 0x0f, 0x34, 0x66, 0xe3, 0x66, 0x05, 0x62, 0xce, 0x5c, 0xb6, 0x30, 0x11, 0xc9,
|
|
0x16, 0xf2, 0x56, 0x6c, 0xa8, 0xdf, 0x8a, 0xd9, 0x8a, 0x6d, 0x98, 0x5a, 0x31, 0x4b, 0x75, 0x15,
|
|
0x4d, 0xd5, 0x35, 0x42, 0xfa, 0x3b, 0x1d, 0x34, 0x6e, 0xa6, 0x35, 0x28, 0x15, 0x6d, 0xad, 0x75,
|
|
0xd9, 0xd6, 0x5a, 0x49, 0xd2, 0x50, 0x2e, 0xa8, 0x21, 0x6b, 0xb2, 0xad, 0xa6, 0xbc, 0x15, 0xd6,
|
|
0xbf, 0x4b, 0x40, 0x12, 0x13, 0xfb, 0x25, 0x55, 0xb9, 0xf5, 0x6e, 0x9a, 0xb5, 0xc3, 0x30, 0x66,
|
|
0x5b, 0x5c, 0x3d, 0x3d, 0xbc, 0x1c, 0x3f, 0x3e, 0x5a, 0x01, 0xcb, 0xd2, 0xea, 0xe8, 0x0c, 0xcc,
|
|
0x72, 0x7a, 0xd3, 0x36, 0xce, 0x23, 0x84, 0x3a, 0xb6, 0x4e, 0xb5, 0x8d, 0xf8, 0x79, 0x00, 0xa2,
|
|
0xb9, 0x49, 0x61, 0x36, 0x4f, 0x83, 0xa0, 0x12, 0x3d, 0x4f, 0xaa, 0xa3, 0xa3, 0x30, 0xa9, 0x29,
|
|
0x7a, 0xa7, 0xa7, 0x61, 0x4f, 0xf3, 0x56, 0x5b, 0xd1, 0x88, 0xe6, 0x1a, 0xad, 0x4c, 0x98, 0xa9,
|
|
0x65, 0x9c, 0xe8, 0x64, 0x35, 0x70, 0xb1, 0x5a, 0xde, 0x64, 0xb5, 0x31, 0xd2, 0xf3, 0x89, 0x50,
|
|
0xac, 0x86, 0xa7, 0xdd, 0x66, 0xb3, 0x75, 0x9b, 0xcd, 0xc6, 0x49, 0x23, 0x27, 0x43, 0xb2, 0x19,
|
|
0x6b, 0xc6, 0x9b, 0xc5, 0x7e, 0x2a, 0x01, 0x13, 0x0e, 0xbe, 0x46, 0x07, 0xfb, 0xcd, 0x21, 0x6f,
|
|
0x02, 0x97, 0xfa, 0x4c, 0x20, 0x67, 0xf6, 0x1e, 0x85, 0x71, 0x59, 0xd5, 0xbb, 0x4d, 0x69, 0x97,
|
|
0xb3, 0x7c, 0x95, 0x31, 0x96, 0x66, 0xd6, 0xb7, 0x2d, 0x23, 0xf3, 0x2b, 0x2d, 0x7b, 0x78, 0xda,
|
|
0xd3, 0x1e, 0x52, 0x1f, 0x73, 0xa0, 0x15, 0x1c, 0xde, 0x93, 0x15, 0x9c, 0x35, 0xad, 0x20, 0xe5,
|
|
0x9b, 0x41, 0x76, 0x2f, 0xe9, 0x6d, 0xf7, 0x66, 0x4d, 0xbb, 0x47, 0x59, 0x62, 0x90, 0xb9, 0x03,
|
|
0x6f, 0x73, 0x97, 0xb6, 0xcd, 0x1d, 0xb1, 0x64, 0xb6, 0x91, 0xcb, 0x70, 0x46, 0x6e, 0x9c, 0x11,
|
|
0xda, 0x34, 0x6d, 0x87, 0x9d, 0xa6, 0x8d, 0x18, 0x2d, 0x87, 0x41, 0x9b, 0xb7, 0x0c, 0xda, 0x24,
|
|
0xf5, 0xd0, 0x99, 0x19, 0x3b, 0xda, 0x67, 0xc6, 0xa6, 0x28, 0x33, 0x3b, 0x8c, 0x97, 0xf8, 0xa7,
|
|
0x09, 0x18, 0xb5, 0x78, 0x10, 0x15, 0x21, 0x65, 0x5a, 0xac, 0x1a, 0x15, 0x61, 0x39, 0xc4, 0x7a,
|
|
0x65, 0xca, 0xac, 0x43, 0x17, 0x3c, 0xb2, 0x8b, 0xb3, 0x62, 0x03, 0x39, 0x2b, 0x1e, 0xc0, 0x59,
|
|
0x89, 0x00, 0xce, 0x1a, 0x0a, 0xc5, 0x59, 0xc3, 0xc1, 0x9c, 0x35, 0xb2, 0x3f, 0xce, 0x4a, 0x06,
|
|
0x72, 0xd6, 0x68, 0x00, 0x67, 0x41, 0x20, 0x67, 0x8d, 0x05, 0x72, 0xd6, 0xb8, 0x3f, 0x67, 0x4d,
|
|
0x0c, 0xe6, 0xac, 0xc9, 0x01, 0x9c, 0x35, 0x15, 0xc0, 0x59, 0x29, 0x2f, 0xce, 0x5a, 0x87, 0x29,
|
|
0x97, 0xf9, 0x43, 0x88, 0x77, 0x76, 0x98, 0x83, 0xb3, 0xec, 0xe1, 0xe0, 0x38, 0xdd, 0x9a, 0x1f,
|
|
0x11, 0x60, 0x8c, 0xd3, 0x70, 0xe8, 0x05, 0x98, 0x24, 0xec, 0x73, 0x43, 0xd9, 0xc5, 0x08, 0x42,
|
|
0xb1, 0xe8, 0x38, 0xae, 0x71, 0x59, 0xd9, 0xcd, 0xe3, 0xf2, 0x16, 0x8e, 0x98, 0x3f, 0x8e, 0x78,
|
|
0x3f, 0x8e, 0x57, 0x61, 0xf6, 0x4a, 0x57, 0xee, 0x77, 0xe1, 0x7c, 0x57, 0xb3, 0x51, 0x7c, 0xb7,
|
|
0xdf, 0x17, 0x60, 0x36, 0x2f, 0xcb, 0xac, 0xe9, 0xcb, 0xca, 0xae, 0xd9, 0xfa, 0x32, 0x8c, 0x10,
|
|
0x6b, 0xd3, 0xdf, 0xc5, 0x30, 0x4e, 0x27, 0x11, 0xa1, 0x84, 0x15, 0x1c, 0x98, 0x3c, 0xb7, 0x12,
|
|
0xd2, 0x58, 0x5c, 0x56, 0x76, 0x77, 0x76, 0xbb, 0x0a, 0xc1, 0x73, 0x5b, 0x88, 0x2d, 0x3f, 0x52,
|
|
0x21, 0xad, 0xa0, 0x35, 0x98, 0x52, 0x5e, 0xeb, 0xaa, 0x5a, 0x24, 0x77, 0x61, 0xd2, 0xae, 0x82,
|
|
0x6d, 0xbe, 0xf8, 0xb5, 0x18, 0xcc, 0xb9, 0x46, 0xe3, 0xeb, 0x92, 0xba, 0x7c, 0x93, 0x58, 0x44,
|
|
0xdf, 0x64, 0x50, 0x68, 0x63, 0x95, 0x51, 0x26, 0xb1, 0x17, 0xca, 0xf8, 0xd3, 0x63, 0x28, 0x2a,
|
|
0x3d, 0xb0, 0xac, 0x61, 0x6e, 0x95, 0x15, 0x43, 0x52, 0x9b, 0x3a, 0xd1, 0x46, 0xe3, 0x15, 0xb8,
|
|
0xa1, 0xec, 0x16, 0x68, 0x8a, 0xf8, 0x32, 0xcc, 0xd8, 0xbd, 0x97, 0x0a, 0xe1, 0x27, 0xff, 0x10,
|
|
0x0c, 0xe3, 0x96, 0xfb, 0xa3, 0x25, 0x43, 0x37, 0x94, 0xdd, 0x92, 0x2c, 0xfe, 0x68, 0x0c, 0x26,
|
|
0xed, 0x96, 0x3d, 0xfd, 0xcb, 0xd5, 0xfd, 0xf0, 0x0f, 0xa3, 0xd2, 0xa0, 0x59, 0xe8, 0x9b, 0xe2,
|
|
0x44, 0xc4, 0x29, 0xbe, 0x1b, 0x53, 0x20, 0xbe, 0x0e, 0x0b, 0x36, 0xf2, 0xaa, 0x22, 0x69, 0xf5,
|
|
0xeb, 0x26, 0x95, 0xed, 0xc8, 0x9e, 0xe0, 0x1d, 0xd9, 0x8b, 0xf1, 0xf1, 0x48, 0x16, 0x66, 0x8c,
|
|
0x5b, 0x61, 0x46, 0x7e, 0x96, 0x12, 0x9e, 0xb3, 0x24, 0x7e, 0x29, 0x06, 0xe9, 0xfe, 0xde, 0x99,
|
|
0x48, 0x44, 0xeb, 0xfe, 0x51, 0x18, 0x37, 0x3a, 0x58, 0x6b, 0x6b, 0x8a, 0xde, 0x6b, 0x9a, 0x51,
|
|
0xc7, 0x31, 0x92, 0x56, 0x21, 0x49, 0xe8, 0x22, 0x56, 0xdc, 0x24, 0x33, 0x41, 0x42, 0x9d, 0x11,
|
|
0xa6, 0x14, 0x33, 0x48, 0x85, 0xd5, 0xa6, 0xa6, 0xb4, 0x53, 0x57, 0x74, 0x5d, 0x91, 0x6b, 0x2e,
|
|
0x1f, 0x7e, 0xda, 0xca, 0xa9, 0x9a, 0xf3, 0x9c, 0x87, 0xc9, 0x9b, 0xaa, 0x72, 0xab, 0x66, 0xc5,
|
|
0xf3, 0x59, 0x74, 0x70, 0xd0, 0x2c, 0x4d, 0xe0, 0x1a, 0xd6, 0x4f, 0xf1, 0x5b, 0x02, 0x4c, 0x93,
|
|
0xe5, 0xcb, 0x3e, 0xe6, 0x67, 0x07, 0x26, 0xf5, 0x8e, 0x66, 0xa8, 0xed, 0x46, 0xad, 0xde, 0x69,
|
|
0xf6, 0x5a, 0x6d, 0x16, 0x23, 0x3f, 0x1d, 0x6a, 0xdd, 0x44, 0x3a, 0xc6, 0x0a, 0x6b, 0x82, 0x35,
|
|
0xb2, 0x46, 0xda, 0x30, 0x67, 0x3d, 0x61, 0xcf, 0x7a, 0x09, 0x46, 0x3e, 0xd4, 0x53, 0x34, 0x55,
|
|
0xd1, 0xd3, 0x43, 0x84, 0xcc, 0xb9, 0xf0, 0x1d, 0xbc, 0xd8, 0x53, 0xb4, 0xdd, 0x8a, 0x59, 0x5f,
|
|
0x7c, 0x4b, 0x80, 0x29, 0x57, 0x26, 0x2a, 0x41, 0xfc, 0x86, 0xb2, 0x4b, 0x46, 0x1c, 0x15, 0x3b,
|
|
0xa7, 0xd3, 0x71, 0x1b, 0xa8, 0x00, 0xc3, 0x2d, 0xc5, 0xb8, 0xde, 0x91, 0x99, 0x88, 0x07, 0x06,
|
|
0xf7, 0x69, 0x4b, 0x9b, 0xa4, 0x4e, 0x85, 0xd5, 0xc5, 0xd4, 0xbe, 0x29, 0x35, 0x7b, 0xa6, 0xc7,
|
|
0x46, 0x7f, 0x88, 0x3f, 0x1b, 0x03, 0xc4, 0xcf, 0xd8, 0xbd, 0xe2, 0xe9, 0x17, 0x5c, 0x3c, 0x7d,
|
|
0x3c, 0x0c, 0x45, 0x1e, 0x30, 0x37, 0x7f, 0x21, 0x0e, 0x63, 0x18, 0xc6, 0xb6, 0xd6, 0xb9, 0xa6,
|
|
0x36, 0xfb, 0x6d, 0xdf, 0x7e, 0xdc, 0xe4, 0x81, 0xab, 0x2b, 0xb7, 0x0f, 0x3d, 0xd4, 0xef, 0x43,
|
|
0xdf, 0x67, 0x37, 0x99, 0xb7, 0x0f, 0xc9, 0x20, 0xfb, 0x30, 0xba, 0xbf, 0xf0, 0x04, 0x44, 0x09,
|
|
0x4f, 0x88, 0xdf, 0x8e, 0x53, 0xd9, 0x63, 0x93, 0xe4, 0x69, 0x21, 0xdf, 0x9b, 0xa8, 0x07, 0x3f,
|
|
0x51, 0xee, 0x58, 0xd1, 0x58, 0xe8, 0x58, 0xd1, 0xb8, 0x5f, 0xac, 0x48, 0xfc, 0x5c, 0x0c, 0xd2,
|
|
0xd4, 0xa5, 0xe7, 0x38, 0xc0, 0x6f, 0xd3, 0xf2, 0x44, 0x3f, 0x13, 0x84, 0xda, 0x3d, 0x88, 0x87,
|
|
0xdd, 0x3d, 0x48, 0x44, 0xdc, 0x3d, 0x18, 0x8a, 0xb2, 0x7b, 0xb0, 0xa7, 0xb8, 0x89, 0x78, 0x0d,
|
|
0x16, 0x6d, 0xfa, 0x5c, 0x61, 0x31, 0x2e, 0x3f, 0x02, 0x39, 0xf6, 0x96, 0x62, 0x51, 0xf6, 0x96,
|
|
0xc4, 0xff, 0x25, 0xc0, 0x28, 0x6e, 0x9e, 0xac, 0x8c, 0xfb, 0x1a, 0x9e, 0x75, 0xec, 0x8f, 0x0d,
|
|
0x5c, 0x63, 0xc7, 0xbd, 0xd7, 0xd8, 0x3c, 0x57, 0x27, 0x82, 0xb8, 0x7a, 0x68, 0x7f, 0x5c, 0x3d,
|
|
0x1c, 0x49, 0xfd, 0xfc, 0x1f, 0x01, 0x26, 0xac, 0x91, 0x7b, 0x2a, 0x9f, 0x77, 0xf2, 0xe8, 0x6f,
|
|
0xc2, 0xbc, 0xcd, 0x5f, 0x04, 0xb4, 0x1f, 0x73, 0x05, 0xee, 0x91, 0x46, 0xa1, 0x88, 0xc5, 0x6f,
|
|
0x24, 0x8e, 0xe2, 0x45, 0x71, 0x1a, 0x91, 0x89, 0x05, 0x46, 0x64, 0xe2, 0xde, 0x11, 0x99, 0x41,
|
|
0x31, 0xef, 0x3e, 0x8a, 0x0f, 0xef, 0x8f, 0xe2, 0x23, 0x7b, 0xe2, 0x37, 0x8a, 0xd7, 0x87, 0xdf,
|
|
0xde, 0xb1, 0xa3, 0xff, 0x01, 0x9e, 0xdf, 0x08, 0xe8, 0xc0, 0x20, 0xce, 0x61, 0x07, 0x39, 0x56,
|
|
0x47, 0xdf, 0x5e, 0x1d, 0xd6, 0x12, 0x29, 0x21, 0x60, 0xcb, 0xd3, 0x9b, 0x32, 0xe2, 0xbf, 0x8a,
|
|
0x51, 0x8f, 0xd0, 0xdc, 0x3a, 0x74, 0xd3, 0x9e, 0x8b, 0xe4, 0xc5, 0xfc, 0x23, 0x79, 0xf1, 0xc1,
|
|
0x91, 0xbc, 0xc4, 0x80, 0x48, 0xde, 0x50, 0x40, 0x24, 0x6f, 0xd8, 0x23, 0x92, 0xe7, 0x98, 0xcf,
|
|
0x91, 0xa0, 0xf9, 0x4c, 0xee, 0x6f, 0x3e, 0x47, 0x23, 0xcd, 0xe7, 0x1f, 0xc5, 0xa8, 0xf3, 0xc6,
|
|
0x90, 0x7a, 0xf2, 0xf3, 0x7b, 0x34, 0x1d, 0x8d, 0xaa, 0x21, 0x38, 0xa7, 0x88, 0xe1, 0x0d, 0x14,
|
|
0x13, 0xd1, 0x45, 0xe5, 0xa0, 0xcd, 0xfc, 0x78, 0xd8, 0xcd, 0xfc, 0x44, 0xa8, 0xcd, 0xfc, 0xa1,
|
|
0xd0, 0x9b, 0xf9, 0xc3, 0x03, 0x37, 0xf3, 0xc5, 0x32, 0x8c, 0x6f, 0xf6, 0x9a, 0x86, 0x7a, 0x51,
|
|
0xaa, 0x1b, 0x1d, 0x4d, 0x47, 0xcf, 0x43, 0xa2, 0x75, 0x4d, 0x32, 0x0f, 0x8d, 0x05, 0xef, 0xc4,
|
|
0xd9, 0x75, 0x2b, 0xa4, 0xa2, 0xf8, 0x31, 0x01, 0xc6, 0xb8, 0x54, 0xf4, 0x1c, 0x8b, 0xb6, 0xd1,
|
|
0x85, 0xfd, 0xb1, 0xc0, 0x06, 0xaf, 0x49, 0x5c, 0x98, 0xed, 0xfd, 0xce, 0xad, 0xe0, 0xc0, 0x45,
|
|
0xf0, 0xe6, 0xc5, 0x3c, 0xbf, 0x13, 0x2c, 0xbe, 0x08, 0x53, 0xdb, 0x6c, 0xaf, 0x26, 0x70, 0x46,
|
|
0x8f, 0x72, 0xc7, 0x1a, 0x5c, 0xba, 0x8f, 0x3f, 0xd8, 0xf0, 0x83, 0x70, 0xa8, 0xaa, 0x18, 0x66,
|
|
0xab, 0x5b, 0x1d, 0x43, 0xbd, 0xc6, 0x0e, 0x7a, 0x05, 0xf6, 0x50, 0x70, 0x04, 0x1e, 0xcf, 0x04,
|
|
0x0d, 0x86, 0x6f, 0xdb, 0xa6, 0x89, 0x78, 0x0a, 0x32, 0x66, 0xef, 0x6b, 0x9d, 0x56, 0xb7, 0xa9,
|
|
0xbc, 0xa6, 0x1a, 0xbb, 0xdb, 0x9d, 0xa6, 0x5a, 0xdf, 0x2d, 0x15, 0xdc, 0xda, 0x40, 0xfc, 0x9b,
|
|
0x38, 0xa4, 0xfd, 0x8a, 0x7b, 0x38, 0x1d, 0x01, 0x7b, 0x13, 0x28, 0x6f, 0x4e, 0x08, 0x8d, 0x31,
|
|
0x05, 0xf2, 0x07, 0xed, 0x68, 0xf0, 0xee, 0x7c, 0x62, 0x7f, 0xd2, 0x3e, 0x14, 0x69, 0x55, 0x75,
|
|
0x10, 0xa0, 0xa5, 0xb6, 0x6b, 0x4d, 0xa5, 0xdd, 0x30, 0xae, 0x13, 0xe1, 0x48, 0x54, 0x46, 0x5b,
|
|
0x6a, 0x7b, 0x83, 0x24, 0xa0, 0xc7, 0x60, 0xe2, 0xba, 0xa4, 0xd7, 0x9a, 0x9d, 0x5b, 0x8a, 0x56,
|
|
0x97, 0x74, 0x85, 0x1d, 0x0b, 0x1a, 0xbf, 0x2e, 0xe9, 0x1b, 0x66, 0x9a, 0x59, 0xa8, 0xd7, 0xed,
|
|
0xb2, 0x42, 0x49, 0xab, 0xd0, 0x15, 0x33, 0x0d, 0x77, 0x84, 0x0b, 0xb5, 0x7b, 0xad, 0xab, 0x6c,
|
|
0x63, 0x3d, 0x59, 0x19, 0xbd, 0x2e, 0xe9, 0x5b, 0x24, 0xc1, 0xcc, 0xd6, 0x77, 0x5b, 0x57, 0x3b,
|
|
0x4d, 0xb6, 0x85, 0x8a, 0xb3, 0xab, 0x24, 0xc1, 0xa1, 0x2e, 0xc7, 0x5c, 0xea, 0xf2, 0x20, 0x80,
|
|
0xaa, 0xd7, 0x64, 0xe5, 0x9a, 0xd4, 0x6b, 0x1a, 0x64, 0xb5, 0x97, 0xac, 0x8c, 0xaa, 0x7a, 0x81,
|
|
0x26, 0x88, 0x7f, 0x2b, 0xc0, 0x21, 0xbf, 0x19, 0xa7, 0x47, 0x72, 0xdc, 0x1b, 0x35, 0xc2, 0x80,
|
|
0x8d, 0x1a, 0x17, 0xc1, 0x62, 0x81, 0x04, 0x8b, 0x87, 0x21, 0x58, 0x22, 0x90, 0x60, 0x43, 0x83,
|
|
0x09, 0x36, 0xec, 0x22, 0x98, 0xf8, 0xc3, 0x31, 0xff, 0x51, 0x53, 0xed, 0xde, 0xc7, 0xed, 0x11,
|
|
0xb6, 0xab, 0x5c, 0x54, 0x88, 0x07, 0x52, 0x21, 0x11, 0x86, 0x0a, 0x43, 0x81, 0x54, 0x18, 0x1e,
|
|
0x4c, 0x85, 0x11, 0x37, 0x15, 0x8e, 0xc2, 0x8c, 0x49, 0x84, 0x7c, 0x43, 0xf1, 0x55, 0x0a, 0x3f,
|
|
0x16, 0x87, 0xe9, 0xbe, 0x72, 0xef, 0x46, 0x6d, 0xb0, 0x0c, 0xe3, 0x2d, 0xe9, 0xb5, 0x9a, 0x44,
|
|
0x6a, 0xef, 0xea, 0x4c, 0x1f, 0x40, 0x4b, 0x7a, 0x2d, 0x8f, 0x4b, 0xec, 0xea, 0xe8, 0x38, 0xa4,
|
|
0xc8, 0xc6, 0x8a, 0x52, 0xbb, 0x25, 0x69, 0x6d, 0x5a, 0x8a, 0xfa, 0x2f, 0x74, 0xc3, 0x45, 0x79,
|
|
0x59, 0xd2, 0xda, 0xa4, 0xe4, 0xa0, 0x48, 0x92, 0x53, 0x64, 0x47, 0xdd, 0x22, 0xfb, 0x93, 0x02,
|
|
0x2c, 0xf4, 0xcd, 0xc7, 0x1e, 0x64, 0xd5, 0x3d, 0x9c, 0x58, 0xa8, 0xe1, 0xc4, 0xbd, 0x86, 0x23,
|
|
0xfe, 0x9c, 0x17, 0xa6, 0xbb, 0x20, 0x49, 0x6e, 0x8c, 0xf1, 0x50, 0x18, 0x13, 0x9e, 0x18, 0x4f,
|
|
0xd8, 0x10, 0x37, 0x3a, 0xf5, 0x1b, 0x9d, 0x9e, 0xe1, 0xcb, 0xf2, 0x9f, 0x8d, 0xc3, 0x9c, 0x67,
|
|
0xd9, 0x77, 0x23, 0xdb, 0x3f, 0xca, 0xe6, 0xc0, 0x30, 0x94, 0x56, 0xd7, 0x30, 0xd9, 0x7e, 0x0c,
|
|
0xcf, 0x01, 0x4b, 0x42, 0x4f, 0xc0, 0xbc, 0x7e, 0xbd, 0x73, 0xab, 0xd6, 0xec, 0xd4, 0x6f, 0xd4,
|
|
0x3a, 0x3d, 0xa3, 0x76, 0x4d, 0x52, 0x9b, 0x3d, 0x4d, 0xd1, 0x99, 0xd2, 0x99, 0xc1, 0xb9, 0x98,
|
|
0x90, 0xe5, 0x9e, 0x71, 0x91, 0x65, 0xed, 0x47, 0x04, 0x7e, 0x4e, 0x80, 0x25, 0xcf, 0xf9, 0xd9,
|
|
0x83, 0x18, 0xb8, 0x87, 0x17, 0x8b, 0x32, 0xbc, 0xb8, 0xef, 0xf0, 0xc4, 0x7f, 0xec, 0x87, 0xf1,
|
|
0x2e, 0x88, 0x85, 0x1b, 0x73, 0x3c, 0x0a, 0xe6, 0x84, 0x3f, 0xe6, 0x4f, 0x0b, 0x30, 0x5e, 0xd6,
|
|
0x1a, 0x25, 0xa9, 0xc5, 0xd8, 0x7d, 0x0e, 0x86, 0x1d, 0x9f, 0xe4, 0x0c, 0x75, 0xc8, 0xc7, 0x38,
|
|
0xc1, 0x5c, 0xff, 0x2c, 0x2c, 0x92, 0x70, 0x27, 0x8d, 0x34, 0xb7, 0x7a, 0xba, 0x51, 0xbb, 0xaa,
|
|
0xd4, 0xe4, 0x4e, 0x4b, 0x52, 0xdb, 0x8c, 0x6a, 0x73, 0xb8, 0x00, 0x09, 0x37, 0x6f, 0xf6, 0x74,
|
|
0x63, 0x55, 0x29, 0x90, 0x4c, 0xbc, 0x22, 0x35, 0xe7, 0x9d, 0x22, 0x35, 0x7f, 0x8a, 0xe7, 0x20,
|
|
0x55, 0xd6, 0x1a, 0x74, 0x8a, 0x43, 0x9e, 0x10, 0xc6, 0x96, 0x3e, 0x5e, 0xd6, 0x1a, 0x7d, 0xd4,
|
|
0x8e, 0xba, 0x56, 0x28, 0x6b, 0x8d, 0x87, 0xe8, 0xd4, 0xa8, 0x79, 0x44, 0x67, 0x88, 0x3b, 0xa2,
|
|
0xc3, 0x8b, 0xd3, 0xb0, 0x53, 0x9c, 0xc4, 0x8f, 0xc4, 0x60, 0xa4, 0xac, 0x35, 0x3c, 0x23, 0x00,
|
|
0xef, 0x2e, 0x4a, 0x9c, 0x80, 0x61, 0xc6, 0x67, 0x87, 0x61, 0x98, 0xb1, 0xa3, 0xfb, 0xf0, 0x08,
|
|
0x4d, 0x16, 0x3f, 0x16, 0x83, 0xd1, 0xb2, 0xd6, 0x60, 0xc5, 0x7d, 0x24, 0x61, 0xdf, 0x27, 0x74,
|
|
0x5c, 0xa3, 0x8f, 0x47, 0x1a, 0xfd, 0xbc, 0x35, 0x06, 0x1a, 0x82, 0x61, 0xbf, 0x30, 0x05, 0xac,
|
|
0x60, 0x1b, 0xf5, 0x1b, 0xad, 0xdf, 0x58, 0xbe, 0xba, 0x9a, 0xda, 0x92, 0xb4, 0x5d, 0xe6, 0x30,
|
|
0x9a, 0x3f, 0x07, 0x45, 0x5d, 0xc4, 0xff, 0x1e, 0x83, 0x09, 0x8b, 0x18, 0x84, 0x8f, 0xde, 0xdd,
|
|
0x04, 0x41, 0xdf, 0x07, 0x53, 0xec, 0x93, 0x4a, 0x3c, 0x52, 0xb2, 0x52, 0x4f, 0x12, 0x01, 0x7a,
|
|
0x26, 0x84, 0x00, 0x31, 0x32, 0x5a, 0xf5, 0xc9, 0x82, 0x7d, 0xf2, 0xa6, 0xe3, 0xb7, 0x78, 0x1e,
|
|
0x66, 0xf2, 0xb2, 0x6c, 0x95, 0x36, 0x35, 0x9e, 0xe8, 0xe2, 0x5b, 0x5e, 0xe7, 0x99, 0xac, 0xfb,
|
|
0x49, 0x01, 0x32, 0x1e, 0xdd, 0x44, 0x68, 0x02, 0x5d, 0x71, 0x84, 0x1f, 0xf6, 0x3a, 0x28, 0xf7,
|
|
0x01, 0x3a, 0xb1, 0x08, 0x4b, 0x9e, 0xc0, 0xd8, 0xc9, 0x88, 0x59, 0x18, 0x32, 0x3a, 0x37, 0x94,
|
|
0xb6, 0xc9, 0x53, 0xe4, 0x07, 0x4a, 0x41, 0xbc, 0xa7, 0x99, 0x5b, 0x3c, 0xf8, 0x5f, 0xf1, 0xfd,
|
|
0x90, 0x66, 0xb5, 0x95, 0x3d, 0x11, 0xe8, 0x02, 0x2c, 0x6c, 0xd3, 0x49, 0xee, 0xab, 0x1e, 0xa8,
|
|
0x17, 0xce, 0xc3, 0x7c, 0x45, 0x69, 0x75, 0x6e, 0x2a, 0xd1, 0xab, 0x7e, 0x31, 0x06, 0x0b, 0x56,
|
|
0xad, 0x7b, 0x7d, 0x28, 0xa4, 0xe8, 0x3a, 0x14, 0x72, 0x3a, 0xfc, 0x1c, 0x3e, 0xd8, 0x93, 0x21,
|
|
0xff, 0x50, 0x80, 0xf9, 0x3e, 0x2a, 0xed, 0xe5, 0xb0, 0xd3, 0x96, 0x7d, 0x08, 0x29, 0x4e, 0x48,
|
|
0xf0, 0x64, 0x68, 0x12, 0x78, 0x9e, 0x44, 0xfa, 0x2d, 0x01, 0x66, 0xbd, 0x4a, 0xa0, 0x2d, 0xfe,
|
|
0x38, 0xd2, 0xb9, 0x88, 0x9d, 0xdc, 0xe7, 0x33, 0x49, 0x8f, 0xc3, 0x64, 0x59, 0x6b, 0x6c, 0x2a,
|
|
0xad, 0xab, 0x8a, 0x56, 0xe9, 0x34, 0x15, 0x1d, 0x97, 0xd3, 0xf0, 0x3f, 0x24, 0x8c, 0x3b, 0x5a,
|
|
0xa1, 0x3f, 0xc4, 0x3f, 0x16, 0x88, 0xf9, 0xa3, 0x05, 0xd1, 0x82, 0xeb, 0xac, 0xa5, 0x75, 0xc4,
|
|
0xd2, 0xaa, 0x1c, 0xe3, 0x2a, 0xef, 0x4f, 0x89, 0xef, 0x7b, 0xb9, 0x33, 0x60, 0x8b, 0x4d, 0xdc,
|
|
0x34, 0xb5, 0x2a, 0xa3, 0x40, 0xe8, 0xb3, 0xa4, 0x9e, 0x03, 0x15, 0xb7, 0x61, 0x9e, 0x9e, 0xeb,
|
|
0xbf, 0x6b, 0x2d, 0x5e, 0xe0, 0xd4, 0x4b, 0xc4, 0x16, 0x4d, 0xfd, 0x42, 0xab, 0x3d, 0x8c, 0xfa,
|
|
0x85, 0x22, 0x7b, 0xc0, 0xfa, 0xe5, 0xaf, 0xa9, 0x2f, 0x63, 0x63, 0x79, 0xc7, 0x70, 0xf7, 0xe0,
|
|
0x0f, 0xfd, 0xbc, 0xbf, 0xf3, 0x71, 0x1e, 0xdf, 0x4a, 0x0e, 0x3c, 0xbe, 0x35, 0x1a, 0xf0, 0x39,
|
|
0x0a, 0xf4, 0x9d, 0xd0, 0x32, 0x95, 0xb9, 0x93, 0x25, 0xef, 0x9b, 0x32, 0xe7, 0xbb, 0xf5, 0x56,
|
|
0xe6, 0x7d, 0x25, 0xa2, 0x2b, 0x73, 0xbe, 0x89, 0xfb, 0xac, 0xcc, 0x9f, 0x86, 0x59, 0xf6, 0xa9,
|
|
0x7f, 0xb4, 0x65, 0x71, 0xd9, 0xaa, 0x47, 0xa3, 0x11, 0x81, 0xbb, 0x51, 0x87, 0xf8, 0x8f, 0x42,
|
|
0x3c, 0x1a, 0xfc, 0x7c, 0x0c, 0xe6, 0x58, 0x8b, 0xf7, 0x5a, 0xef, 0xac, 0xb9, 0xf4, 0x4e, 0x70,
|
|
0x44, 0x8d, 0xe2, 0x7a, 0xc0, 0x5a, 0xe7, 0xb7, 0x63, 0x30, 0xc6, 0x21, 0xc1, 0x72, 0xc7, 0xdd,
|
|
0xe6, 0xc0, 0x3e, 0x30, 0xb4, 0x2e, 0x71, 0xf0, 0xfc, 0x0a, 0x67, 0xd5, 0x19, 0x4a, 0x3c, 0x15,
|
|
0x72, 0xe0, 0x8e, 0xe5, 0xfa, 0xbe, 0x56, 0xdb, 0xfb, 0x3e, 0x0f, 0xd5, 0xff, 0x11, 0xe9, 0xb0,
|
|
0xd7, 0x47, 0xa4, 0x83, 0x56, 0xa2, 0x9f, 0x10, 0x2c, 0xde, 0xdd, 0x8f, 0x3a, 0xd9, 0x70, 0xab,
|
|
0x93, 0x73, 0x61, 0xa9, 0xe9, 0xa5, 0x4c, 0x7e, 0x43, 0x00, 0xd4, 0x9f, 0x8f, 0x36, 0x78, 0x55,
|
|
0x72, 0x26, 0x52, 0x07, 0xf7, 0x59, 0x91, 0x94, 0x21, 0xc9, 0xba, 0xd7, 0xd1, 0x1a, 0x24, 0x19,
|
|
0x1f, 0x9a, 0x3b, 0xfb, 0xc7, 0x42, 0x42, 0xaf, 0x58, 0x15, 0xc5, 0x8f, 0xc7, 0x60, 0x84, 0xa5,
|
|
0xf6, 0x85, 0x9c, 0xde, 0x99, 0xbc, 0x3d, 0x28, 0xec, 0x94, 0xb5, 0xd8, 0x23, 0xd8, 0xf1, 0xfe,
|
|
0x33, 0x01, 0x26, 0x1c, 0x85, 0xdf, 0x39, 0xce, 0x77, 0x1d, 0x52, 0x8e, 0x91, 0xe5, 0x65, 0xd9,
|
|
0xdf, 0xe4, 0x70, 0xee, 0x6e, 0x2c, 0xc0, 0x81, 0x8e, 0xf3, 0xf4, 0xbb, 0x06, 0x33, 0x8e, 0x4e,
|
|
0xd8, 0x45, 0x43, 0x77, 0xbd, 0x9f, 0x6d, 0x57, 0x3f, 0xd4, 0x6b, 0xdf, 0x47, 0x3f, 0xa2, 0x01,
|
|
0x93, 0xa6, 0x20, 0x75, 0x9a, 0xca, 0x40, 0xe2, 0xa4, 0xa8, 0x66, 0x61, 0x21, 0x11, 0xac, 0x1d,
|
|
0x42, 0x7c, 0x74, 0x3e, 0x0b, 0x43, 0x0d, 0xad, 0xd3, 0xeb, 0xb2, 0xe0, 0x18, 0xfd, 0x21, 0xde,
|
|
0xb6, 0x75, 0x17, 0xeb, 0x76, 0xb5, 0xd7, 0xbc, 0xe1, 0xdf, 0x75, 0x15, 0x26, 0x4c, 0xc3, 0x65,
|
|
0x33, 0x5f, 0x88, 0xef, 0xa8, 0x9c, 0x7d, 0x54, 0xc6, 0xbb, 0xf6, 0x6f, 0x5d, 0xfc, 0x3b, 0x02,
|
|
0x4c, 0x73, 0x05, 0x82, 0xe6, 0x6c, 0x91, 0x1b, 0xbe, 0x9d, 0xb3, 0x3f, 0x3a, 0xfc, 0xa4, 0x6d,
|
|
0xa0, 0x31, 0x84, 0x20, 0x03, 0xbd, 0xa7, 0x19, 0x78, 0xb0, 0x3b, 0x79, 0xd6, 0xb8, 0x87, 0xb9,
|
|
0x71, 0x0f, 0x34, 0xb6, 0x7f, 0x26, 0xc0, 0x14, 0x47, 0x93, 0x30, 0x8e, 0xcb, 0x83, 0xa1, 0x4b,
|
|
0xf4, 0xa1, 0xad, 0x3b, 0x18, 0x2e, 0x48, 0x78, 0xfd, 0x19, 0x4e, 0xfc, 0x72, 0x0c, 0x16, 0xb9,
|
|
0x96, 0xee, 0xb5, 0xfb, 0xbb, 0xee, 0x72, 0x7f, 0x73, 0x11, 0xe4, 0xee, 0x01, 0xbb, 0xc0, 0xbf,
|
|
0x25, 0x40, 0xda, 0x83, 0x52, 0xd4, 0x7d, 0x7b, 0xbc, 0x9f, 0xad, 0xbc, 0x6e, 0x37, 0x8b, 0x76,
|
|
0xd3, 0x1c, 0xda, 0xb6, 0xdd, 0x3c, 0x4a, 0xae, 0xa7, 0x23, 0x90, 0xcb, 0xd3, 0xd5, 0xfb, 0x1d,
|
|
0x01, 0xe6, 0xbd, 0xcb, 0xa0, 0x6d, 0xde, 0xdd, 0x7b, 0x32, 0x72, 0x47, 0xf7, 0xd9, 0xe5, 0xfb,
|
|
0x6f, 0x31, 0x4b, 0x02, 0xc2, 0x84, 0x42, 0x96, 0xfa, 0x3e, 0x60, 0xf1, 0x0a, 0x2d, 0xc4, 0xfd,
|
|
0x43, 0x0b, 0x89, 0x81, 0xa1, 0x85, 0x21, 0x57, 0x68, 0xc1, 0xb2, 0xb9, 0xc3, 0x03, 0x5c, 0x9b,
|
|
0x91, 0xfd, 0xb9, 0x36, 0xc9, 0x7d, 0xb8, 0x36, 0xe0, 0x8a, 0xbc, 0xb8, 0x95, 0xdc, 0x58, 0x7f,
|
|
0x28, 0xe4, 0x2b, 0x31, 0x58, 0x72, 0x10, 0xfc, 0x5e, 0xab, 0x8a, 0x92, 0x4b, 0x55, 0x9c, 0x0d,
|
|
0xc9, 0x92, 0x0f, 0x45, 0x94, 0xee, 0x77, 0x04, 0xc8, 0x78, 0x52, 0xeb, 0x5e, 0xaa, 0x8b, 0x8a,
|
|
0x5b, 0x5d, 0x3c, 0x1b, 0x89, 0x64, 0x9e, 0x0a, 0xe3, 0xf7, 0x6c, 0xad, 0xd7, 0x1f, 0x6c, 0xaa,
|
|
0xf0, 0x2a, 0xe3, 0xe9, 0x3d, 0x74, 0x76, 0x9f, 0x95, 0xc6, 0x7f, 0x8e, 0xc1, 0x18, 0x77, 0x5d,
|
|
0xe5, 0xbe, 0x4f, 0x13, 0xe4, 0xbb, 0xdd, 0x87, 0xfc, 0x34, 0xc1, 0x26, 0x8c, 0x75, 0x54, 0xb9,
|
|
0x5e, 0xab, 0x77, 0xda, 0xd7, 0xd4, 0x06, 0xd3, 0x19, 0xd9, 0xc0, 0xb0, 0x60, 0xa9, 0xb0, 0xb6,
|
|
0x46, 0x6a, 0x5c, 0x7a, 0xa4, 0x02, 0xb8, 0x01, 0xfa, 0xcb, 0xa1, 0x43, 0x46, 0x9d, 0x3a, 0x64,
|
|
0x75, 0x1c, 0x40, 0xea, 0x76, 0x59, 0x4f, 0xa2, 0x01, 0xd3, 0x1c, 0xa5, 0xd9, 0xa9, 0xa1, 0xb0,
|
|
0x6c, 0x4f, 0x1d, 0x99, 0x98, 0x7f, 0x20, 0x6f, 0xc8, 0x27, 0x90, 0xf7, 0x3f, 0x87, 0x00, 0x6c,
|
|
0xf0, 0xe8, 0x31, 0x98, 0xd0, 0x14, 0x59, 0xd5, 0x70, 0x87, 0x3d, 0x4d, 0x35, 0x97, 0xaa, 0xe3,
|
|
0x66, 0xe2, 0x15, 0x4d, 0xd5, 0xd1, 0xcb, 0x24, 0xaa, 0x43, 0x94, 0x18, 0xd9, 0x09, 0xa7, 0x4b,
|
|
0x82, 0x10, 0x11, 0x0f, 0xdc, 0x91, 0xa9, 0xfe, 0xc8, 0x1e, 0xf8, 0x84, 0xc6, 0xfd, 0xd2, 0xd1,
|
|
0x16, 0x8c, 0x35, 0x34, 0x89, 0xdd, 0xef, 0x4a, 0x97, 0x5f, 0x21, 0x3e, 0xf7, 0xc7, 0xad, 0xae,
|
|
0xe3, 0x6a, 0xa4, 0x49, 0x68, 0x98, 0xff, 0xea, 0xe8, 0x7b, 0x21, 0x25, 0xd9, 0x24, 0xad, 0x71,
|
|
0xd7, 0x9f, 0x3c, 0x11, 0xa6, 0x51, 0x6e, 0x3a, 0x48, 0xd3, 0x53, 0x92, 0x33, 0x01, 0x5b, 0xb4,
|
|
0x7a, 0x53, 0x55, 0xda, 0x64, 0x72, 0x98, 0x45, 0xa3, 0x09, 0x25, 0x19, 0x93, 0x92, 0x65, 0xea,
|
|
0x4a, 0x5d, 0x53, 0x0c, 0xe6, 0xaa, 0x8e, 0xd3, 0xc4, 0x2a, 0x49, 0x43, 0xff, 0x1f, 0xa4, 0xa4,
|
|
0x9e, 0x71, 0xbd, 0x46, 0x85, 0x90, 0x22, 0x1c, 0x09, 0x19, 0x89, 0xc6, 0x08, 0x7b, 0x06, 0x93,
|
|
0x63, 0x7a, 0xa4, 0x40, 0x72, 0xfc, 0x46, 0xe7, 0x61, 0xb1, 0xdb, 0xa1, 0xd7, 0xbf, 0x75, 0x7a,
|
|
0x46, 0xcd, 0x39, 0xb3, 0x49, 0x32, 0xb3, 0xf3, 0xb8, 0xc0, 0x06, 0xc9, 0xaf, 0xf0, 0x73, 0x5c,
|
|
0x84, 0x91, 0x9b, 0x8a, 0xa6, 0xab, 0x9d, 0x36, 0x61, 0xdb, 0x10, 0x07, 0x19, 0x31, 0x9e, 0x97,
|
|
0x68, 0x95, 0x8a, 0x59, 0x17, 0x1d, 0x85, 0xc9, 0x76, 0xa7, 0xad, 0xd4, 0xea, 0x9d, 0x56, 0xb7,
|
|
0xa9, 0x4a, 0x6d, 0x83, 0x9d, 0x66, 0x9f, 0xc0, 0xa9, 0x6b, 0x66, 0x22, 0x7a, 0x09, 0x66, 0xcc,
|
|
0x12, 0x75, 0xa5, 0xd6, 0xd5, 0x3a, 0x57, 0x9b, 0x4a, 0x8b, 0x7e, 0xd6, 0x1c, 0xfa, 0x86, 0x5f,
|
|
0x64, 0xb7, 0xb0, 0xcd, 0x1a, 0x40, 0x8b, 0x90, 0x94, 0x95, 0x9b, 0xb5, 0x96, 0x79, 0x11, 0x26,
|
|
0x39, 0x5d, 0x76, 0x73, 0xb3, 0x23, 0x2b, 0xe2, 0x47, 0x87, 0x60, 0xce, 0x35, 0xc9, 0xec, 0x34,
|
|
0x61, 0x58, 0x99, 0x0b, 0x88, 0x91, 0xf7, 0xcb, 0x52, 0x3c, 0x94, 0x2c, 0x25, 0xee, 0x89, 0x2c,
|
|
0x0d, 0xdd, 0x0b, 0x59, 0x1a, 0xbe, 0x8b, 0xb2, 0xf4, 0x4e, 0x97, 0x04, 0x9e, 0x15, 0xc1, 0xc9,
|
|
0x8a, 0x7f, 0x90, 0x80, 0x94, 0xad, 0x83, 0x23, 0x6a, 0xfe, 0x15, 0x98, 0xe4, 0xe7, 0xa5, 0xdf,
|
|
0x0a, 0x4c, 0x70, 0xd9, 0x54, 0x2d, 0xbd, 0xc7, 0x95, 0xdf, 0xf9, 0x5c, 0xc9, 0xb3, 0xd3, 0xa8,
|
|
0x93, 0x9d, 0x9e, 0x80, 0xf1, 0x35, 0xde, 0xc6, 0xf4, 0x19, 0x22, 0xa1, 0xdf, 0x10, 0x89, 0xff,
|
|
0x35, 0x06, 0x53, 0x1c, 0x35, 0xee, 0xca, 0xd1, 0xd1, 0xf7, 0x9c, 0x3d, 0x5f, 0x67, 0xef, 0xcb,
|
|
0x31, 0x58, 0xe4, 0xc8, 0xfd, 0xd0, 0x05, 0x91, 0x5c, 0xac, 0xf0, 0x80, 0x83, 0x48, 0x1e, 0x94,
|
|
0x7a, 0xb8, 0x82, 0x48, 0x7d, 0x00, 0x3d, 0x82, 0x48, 0xde, 0x65, 0x22, 0x06, 0x91, 0xfa, 0x1a,
|
|
0xb9, 0xcf, 0xeb, 0xc1, 0xff, 0x10, 0x83, 0x71, 0xb6, 0x2a, 0x25, 0x0a, 0xd9, 0xeb, 0x76, 0xa0,
|
|
0xbe, 0x37, 0x3b, 0xb8, 0x89, 0x38, 0x02, 0x93, 0x44, 0x7b, 0x2b, 0xb2, 0xf9, 0xf6, 0x07, 0x6d,
|
|
0x7e, 0x9c, 0xa5, 0xd2, 0xc7, 0x3f, 0x96, 0x60, 0x54, 0xeb, 0x34, 0x95, 0xda, 0x0d, 0x65, 0x97,
|
|
0x4e, 0xc1, 0x68, 0x25, 0x89, 0x13, 0x2e, 0x2b, 0xbb, 0x3a, 0x5a, 0x37, 0xb5, 0x10, 0xbd, 0x03,
|
|
0x3e, 0x6c, 0x90, 0x83, 0xc0, 0x1d, 0xac, 0x8e, 0xee, 0xe7, 0xed, 0x0b, 0x83, 0x74, 0x85, 0xf8,
|
|
0x51, 0x7b, 0x8b, 0x86, 0xc0, 0x8e, 0xe8, 0x98, 0x9e, 0xee, 0x23, 0xb2, 0xcb, 0x25, 0x18, 0x40,
|
|
0xed, 0xb8, 0x93, 0xda, 0xa2, 0xe6, 0x44, 0x72, 0xb7, 0x96, 0xa5, 0x03, 0xfb, 0x7c, 0xd1, 0xda,
|
|
0x17, 0x23, 0x7d, 0x96, 0x0a, 0xfb, 0xee, 0x4f, 0xfc, 0x78, 0xc2, 0xda, 0x8a, 0x24, 0x6d, 0xfa,
|
|
0xdd, 0x6c, 0xb5, 0x7f, 0xde, 0x3d, 0x0e, 0x29, 0xbe, 0x14, 0x17, 0x0a, 0x9d, 0xb4, 0xcb, 0x99,
|
|
0xf1, 0x50, 0x9b, 0x06, 0x43, 0x7e, 0x5c, 0x3e, 0x7c, 0xb7, 0xb9, 0x7c, 0x64, 0x7f, 0x5c, 0x9e,
|
|
0x8c, 0xfa, 0x31, 0x99, 0x49, 0x52, 0xee, 0x44, 0xd9, 0x18, 0x4b, 0xdb, 0x72, 0x7f, 0xbe, 0xe1,
|
|
0x8e, 0xb2, 0xf6, 0x9f, 0x1f, 0x19, 0xf3, 0x3a, 0x3f, 0xb2, 0x02, 0x33, 0xce, 0x62, 0xfc, 0x5d,
|
|
0x57, 0xd3, 0x8e, 0xb2, 0x24, 0x32, 0xfb, 0x8b, 0x31, 0x2b, 0xd6, 0x48, 0x09, 0x76, 0x8f, 0xcd,
|
|
0xef, 0x25, 0x97, 0xf9, 0x3d, 0x13, 0x65, 0x36, 0x1f, 0xb0, 0xfd, 0xfd, 0x59, 0x01, 0x96, 0xd6,
|
|
0x29, 0xe3, 0x3e, 0x74, 0xc7, 0x70, 0xbe, 0x29, 0x58, 0x5b, 0x71, 0x8e, 0x79, 0xbc, 0x97, 0xce,
|
|
0xc1, 0x8b, 0x6e, 0xe7, 0xe0, 0x99, 0x48, 0xa2, 0xe9, 0x35, 0x8c, 0xdf, 0x15, 0x60, 0xc1, 0xa7,
|
|
0x10, 0x7a, 0x91, 0x77, 0x0f, 0x9e, 0x8a, 0xde, 0xd5, 0x7d, 0xf6, 0x0f, 0x72, 0xce, 0x91, 0x04,
|
|
0x9f, 0x7e, 0xf9, 0x0b, 0x97, 0xa9, 0x7b, 0xa7, 0x1d, 0x81, 0xf9, 0xb4, 0x60, 0x1d, 0x94, 0xe4,
|
|
0xc6, 0x97, 0x97, 0xe5, 0xd0, 0xec, 0x29, 0x42, 0x92, 0x2e, 0x99, 0xfb, 0x2d, 0xdb, 0x08, 0xc9,
|
|
0x28, 0x39, 0xce, 0x9a, 0xc4, 0x03, 0xce, 0xb4, 0x24, 0x78, 0xea, 0x7f, 0xce, 0xde, 0xab, 0xe0,
|
|
0xd0, 0xb1, 0xd3, 0x18, 0x0f, 0x03, 0xc0, 0x8f, 0x7a, 0x02, 0x64, 0xbb, 0xf7, 0xf7, 0x15, 0xa0,
|
|
0xf8, 0xb7, 0x31, 0x6b, 0x23, 0x98, 0x83, 0xf2, 0xde, 0x26, 0x6a, 0x04, 0xe1, 0x18, 0x0d, 0xd8,
|
|
0x44, 0xf5, 0x38, 0x4f, 0x7e, 0x27, 0x06, 0xcb, 0xfd, 0x54, 0xbf, 0xd7, 0x06, 0x7b, 0xcb, 0x65,
|
|
0xb0, 0x9f, 0x8e, 0xa2, 0x78, 0x1f, 0x8a, 0xed, 0xd4, 0x6f, 0x09, 0x70, 0xd8, 0x9f, 0x6e, 0xd1,
|
|
0x0c, 0x64, 0x18, 0xf9, 0xb1, 0xa7, 0x20, 0xee, 0x3d, 0x05, 0x09, 0x7e, 0x0a, 0x5e, 0x76, 0x5f,
|
|
0x17, 0xfd, 0x5d, 0xd1, 0x09, 0xec, 0x69, 0x4a, 0xff, 0x58, 0x80, 0x83, 0x03, 0x8b, 0xa2, 0x97,
|
|
0x79, 0x83, 0xfa, 0xdc, 0x5e, 0xbb, 0xbd, 0xcf, 0x66, 0xf5, 0x76, 0x9c, 0x5e, 0xd1, 0xe8, 0xbd,
|
|
0xe6, 0x5e, 0x70, 0x9d, 0x34, 0xb4, 0xd4, 0x8f, 0xfd, 0xcd, 0x6e, 0x9c, 0xff, 0x66, 0xd7, 0xb9,
|
|
0xce, 0x49, 0xb8, 0xd7, 0x39, 0x03, 0xd7, 0x25, 0x05, 0xe7, 0xba, 0x64, 0x25, 0xcc, 0xcd, 0xd3,
|
|
0x0f, 0xdb, 0xa2, 0x64, 0x90, 0x4a, 0x5a, 0xe4, 0x78, 0x9d, 0xaa, 0x23, 0x93, 0xc5, 0xc5, 0x37,
|
|
0xd9, 0xc5, 0xe4, 0xfc, 0x92, 0x3c, 0xf8, 0xab, 0xaf, 0x90, 0xaf, 0x38, 0x0e, 0x5c, 0x11, 0x3b,
|
|
0x50, 0x25, 0x9c, 0xa8, 0x54, 0x0e, 0x14, 0x5b, 0x9d, 0x07, 0x83, 0xda, 0xdb, 0xba, 0xfc, 0x2c,
|
|
0xcc, 0x58, 0x5d, 0x51, 0x13, 0x4c, 0x4e, 0x8e, 0x66, 0x20, 0xae, 0xca, 0xcc, 0xad, 0x23, 0x42,
|
|
0xf1, 0x09, 0x21, 0x96, 0x14, 0x2a, 0x38, 0x51, 0xbc, 0x44, 0xaf, 0x78, 0x34, 0xd7, 0xf1, 0x7b,
|
|
0x47, 0x26, 0x7e, 0x66, 0x88, 0xde, 0xd5, 0xe9, 0xbf, 0x7c, 0x7f, 0x4f, 0x0c, 0xa2, 0x89, 0x81,
|
|
0xc3, 0x39, 0x19, 0x75, 0x39, 0x27, 0x4e, 0x37, 0x04, 0x06, 0xba, 0x21, 0x63, 0xfd, 0x6e, 0x08,
|
|
0x75, 0x6c, 0xc6, 0x79, 0xc7, 0x66, 0x11, 0x92, 0x56, 0x40, 0x84, 0x3e, 0xbf, 0x33, 0xd2, 0x61,
|
|
0x91, 0x90, 0x83, 0x00, 0x38, 0x8b, 0x7d, 0x4c, 0x4d, 0x1f, 0xdf, 0x19, 0xed, 0x58, 0x77, 0x31,
|
|
0xb8, 0x83, 0x08, 0x53, 0x83, 0x83, 0x08, 0xa9, 0xc0, 0x20, 0xc2, 0xb4, 0x57, 0x10, 0xc1, 0xed,
|
|
0x8c, 0xa0, 0xfe, 0x63, 0xab, 0xbc, 0x18, 0xce, 0x38, 0xc5, 0xf0, 0x8b, 0x31, 0x58, 0xb0, 0x27,
|
|
0xf9, 0x61, 0xfb, 0x14, 0xd3, 0x21, 0x38, 0x0f, 0xf8, 0x53, 0xef, 0x3e, 0x2a, 0xdd, 0x9f, 0xaf,
|
|
0x03, 0x5d, 0xdd, 0xba, 0xfc, 0x86, 0x3f, 0x10, 0x60, 0xd6, 0xab, 0x44, 0xc4, 0xaf, 0x03, 0x5d,
|
|
0x4d, 0x78, 0x78, 0x09, 0x5b, 0xfb, 0xf1, 0x12, 0xcc, 0xc6, 0xd2, 0x8f, 0x04, 0xf8, 0x0b, 0x5f,
|
|
0x8d, 0xc1, 0x01, 0x8c, 0x85, 0xba, 0x2c, 0xfa, 0x75, 0xb5, 0x7b, 0xaf, 0x59, 0xf2, 0x03, 0x2e,
|
|
0x96, 0x0c, 0x45, 0x2a, 0x1b, 0xde, 0x83, 0xdf, 0x64, 0x5a, 0xf2, 0xa6, 0x57, 0xd8, 0x8f, 0xbb,
|
|
0xa3, 0x05, 0x91, 0xaa, 0xee, 0x20, 0xd2, 0xf9, 0x68, 0xe4, 0xf2, 0xe4, 0xe1, 0x3f, 0x11, 0x60,
|
|
0xd1, 0xb7, 0x18, 0xaa, 0xf2, 0x8c, 0xfc, 0xcc, 0x5e, 0xba, 0x7b, 0x60, 0xdc, 0xfc, 0x8d, 0x38,
|
|
0x7d, 0x56, 0xc5, 0xc9, 0x2e, 0xfe, 0xab, 0xee, 0xcb, 0x30, 0xd6, 0x22, 0x45, 0x6b, 0xdc, 0x95,
|
|
0x26, 0x81, 0xbb, 0xba, 0xb4, 0x75, 0x7a, 0xc2, 0xa0, 0x65, 0xfd, 0x8f, 0x79, 0x5f, 0x6a, 0x34,
|
|
0x34, 0xa5, 0x21, 0x19, 0x8a, 0xed, 0x42, 0x8c, 0x59, 0x69, 0xd4, 0x53, 0xe8, 0x5c, 0x75, 0xfa,
|
|
0x11, 0x49, 0x9a, 0xc0, 0xc7, 0x35, 0x86, 0xf8, 0x35, 0xb9, 0xdb, 0xd8, 0x0c, 0x87, 0xf8, 0x46,
|
|
0xe2, 0xa1, 0xf1, 0x91, 0xfb, 0x0d, 0x2a, 0x78, 0x18, 0x54, 0x71, 0x19, 0x86, 0x4a, 0x72, 0x77,
|
|
0xd0, 0x83, 0xe3, 0xff, 0x37, 0x06, 0xf1, 0x92, 0xdc, 0xdd, 0xf7, 0x41, 0x83, 0x92, 0xfc, 0xb0,
|
|
0x1f, 0x34, 0x58, 0x84, 0x64, 0xb3, 0xd3, 0xe8, 0xd4, 0x74, 0xad, 0xce, 0x1e, 0x3c, 0x1b, 0xc1,
|
|
0xbf, 0xab, 0x5a, 0x1d, 0x6d, 0x3b, 0xcf, 0x20, 0x84, 0x7c, 0x95, 0xb7, 0xac, 0xca, 0xf5, 0x92,
|
|
0xdc, 0x0d, 0x3c, 0x86, 0x90, 0xec, 0x3f, 0x86, 0xa0, 0xca, 0xd6, 0x31, 0x84, 0x1a, 0x8c, 0x96,
|
|
0xe4, 0x2e, 0x5b, 0x36, 0xec, 0xf5, 0x63, 0x70, 0xc7, 0xe0, 0xe2, 0x8e, 0xc1, 0x89, 0xff, 0x32,
|
|
0x06, 0x13, 0x0e, 0xa8, 0xce, 0x33, 0x93, 0x42, 0xd0, 0x99, 0xc9, 0x98, 0xc7, 0x99, 0xc9, 0x79,
|
|
0x18, 0x56, 0x75, 0xbd, 0xa7, 0x68, 0x4c, 0x16, 0xd9, 0x2f, 0x9c, 0xae, 0xd7, 0x3b, 0x5d, 0x2b,
|
|
0x84, 0xc8, 0x7e, 0x21, 0x15, 0xd2, 0x78, 0xc8, 0xbc, 0xbc, 0xd5, 0x5a, 0x52, 0xb7, 0xab, 0xb6,
|
|
0x1b, 0x6c, 0x0f, 0x39, 0xd4, 0xb1, 0xa6, 0x4d, 0x5a, 0xe5, 0xa2, 0xaa, 0x34, 0xe5, 0xca, 0x9c,
|
|
0x2a, 0x77, 0x0b, 0xb6, 0xb0, 0xb2, 0x3c, 0xf4, 0x2a, 0xa4, 0xb0, 0x0e, 0x72, 0x74, 0x31, 0xbc,
|
|
0xc7, 0x2e, 0xa6, 0xcc, 0x96, 0x58, 0xaa, 0xf8, 0xb5, 0x38, 0xcc, 0x38, 0x68, 0xc9, 0xd6, 0xa0,
|
|
0x41, 0xaf, 0x66, 0xf3, 0xd3, 0x13, 0x73, 0xf2, 0xde, 0x31, 0x7e, 0x32, 0x3c, 0xde, 0x66, 0xb1,
|
|
0x26, 0x26, 0xe7, 0x9e, 0x98, 0x44, 0x5f, 0x61, 0xe7, 0x24, 0x89, 0xd6, 0x24, 0xf5, 0x9f, 0x3c,
|
|
0xee, 0x9f, 0xb0, 0xe1, 0xd0, 0x13, 0x36, 0x72, 0xef, 0x27, 0x2c, 0x79, 0xb7, 0x26, 0xec, 0x23,
|
|
0xee, 0x09, 0x63, 0x82, 0x76, 0x08, 0x86, 0xf1, 0xf8, 0xfa, 0x85, 0x6d, 0x48, 0x95, 0xbb, 0x25,
|
|
0xd9, 0x39, 0x2b, 0xb1, 0x01, 0xb3, 0xd2, 0x27, 0x2e, 0x71, 0x0f, 0x71, 0xb1, 0x67, 0x22, 0x11,
|
|
0x62, 0x26, 0x86, 0x42, 0xcf, 0xc4, 0xf0, 0xbd, 0x9f, 0x89, 0x91, 0xbb, 0x35, 0x13, 0x9f, 0x8c,
|
|
0xc1, 0x34, 0x36, 0x12, 0xf7, 0xd8, 0x09, 0x7e, 0xde, 0xe5, 0x04, 0x1f, 0x0b, 0x61, 0xb8, 0x1e,
|
|
0xb0, 0xe7, 0xfb, 0x57, 0x71, 0x18, 0x61, 0x28, 0xde, 0xdd, 0x66, 0x78, 0x87, 0x7c, 0xe6, 0x7c,
|
|
0x53, 0x95, 0x4d, 0xb7, 0x91, 0x32, 0x5f, 0x2e, 0xc4, 0xa0, 0xb7, 0x59, 0x3d, 0xe2, 0x3b, 0x8e,
|
|
0x77, 0xb9, 0x5f, 0x68, 0xc7, 0xeb, 0x80, 0xe1, 0xd9, 0x48, 0xc6, 0x9d, 0x3d, 0x64, 0x1e, 0xf6,
|
|
0x9c, 0xe1, 0x34, 0x4c, 0xd9, 0x06, 0xbe, 0x86, 0x27, 0x5b, 0xfc, 0x85, 0x18, 0x4c, 0xf7, 0x35,
|
|
0x39, 0xd8, 0x10, 0xdb, 0x36, 0x36, 0xe6, 0x63, 0x63, 0xe3, 0xa1, 0x15, 0x45, 0xe2, 0xde, 0x2b,
|
|
0x8a, 0xa1, 0xbb, 0xa5, 0x28, 0x3e, 0x26, 0x40, 0x8a, 0x53, 0x14, 0x7b, 0x09, 0x4d, 0x5c, 0x72,
|
|
0x87, 0x26, 0x56, 0xc2, 0xc8, 0x8d, 0xd7, 0x82, 0xee, 0x57, 0x04, 0x98, 0x74, 0xe6, 0xa1, 0x4b,
|
|
0xfc, 0x2a, 0xee, 0x54, 0xe8, 0x86, 0xef, 0xf3, 0x76, 0xc5, 0xa7, 0x04, 0x18, 0x23, 0x37, 0xfd,
|
|
0xb2, 0x6b, 0x85, 0x9f, 0x86, 0x05, 0xa9, 0xd9, 0xec, 0xdc, 0xaa, 0x59, 0x13, 0x67, 0x3d, 0xa6,
|
|
0x21, 0xd0, 0xbb, 0x81, 0x49, 0xf6, 0x15, 0x96, 0x6b, 0x5e, 0xa3, 0x8c, 0x17, 0x1a, 0xb4, 0x9e,
|
|
0xa6, 0x34, 0x54, 0xdd, 0x60, 0xdc, 0x98, 0xac, 0x4c, 0x90, 0xd4, 0x0a, 0x4b, 0x44, 0xa7, 0x00,
|
|
0xd1, 0x62, 0xca, 0x6b, 0x06, 0x6e, 0xa1, 0x59, 0x53, 0xe5, 0x2e, 0xbb, 0x75, 0x38, 0x45, 0x72,
|
|
0x8a, 0x2c, 0xa3, 0x24, 0x77, 0xc5, 0xcf, 0x0a, 0x30, 0xc9, 0x81, 0xcb, 0xcb, 0xf2, 0xc3, 0x85,
|
|
0xef, 0x7d, 0x30, 0xc1, 0xe9, 0x94, 0x52, 0x01, 0x9d, 0x84, 0x09, 0x4e, 0xa2, 0xfb, 0xbd, 0x86,
|
|
0x31, 0xd5, 0x94, 0xeb, 0x92, 0x2c, 0x7e, 0x99, 0xf2, 0x8c, 0x59, 0x1d, 0x8f, 0x6e, 0xc5, 0xbb,
|
|
0x3e, 0xef, 0x07, 0xf0, 0x4d, 0x20, 0x05, 0xa6, 0x71, 0x79, 0xa7, 0x36, 0x8c, 0xed, 0x49, 0x1b,
|
|
0x72, 0x4c, 0x87, 0xb5, 0x12, 0x9f, 0x25, 0xfe, 0xb8, 0x00, 0x63, 0x5c, 0x71, 0x24, 0x7a, 0xc2,
|
|
0x74, 0x42, 0x7b, 0xd5, 0x05, 0x6d, 0x67, 0xef, 0xd0, 0xfa, 0x01, 0xbd, 0x25, 0xc0, 0x14, 0xc7,
|
|
0x18, 0x44, 0x49, 0x72, 0xb7, 0x53, 0x0b, 0x8e, 0xdb, 0xa9, 0x07, 0xf1, 0x4c, 0x2c, 0x1a, 0xcf,
|
|
0xc4, 0xc3, 0xf3, 0x4c, 0xc2, 0x87, 0x67, 0x7e, 0x54, 0x80, 0x29, 0x6e, 0x7c, 0x04, 0x7a, 0x18,
|
|
0x7a, 0x7a, 0xdd, 0xcc, 0x63, 0xbe, 0xc9, 0x13, 0x0f, 0xf7, 0x26, 0x4f, 0x49, 0xee, 0x72, 0xef,
|
|
0xcf, 0x7c, 0x39, 0x06, 0x8b, 0x1c, 0x90, 0x87, 0xee, 0x5c, 0xbb, 0x8b, 0x48, 0x0f, 0xd0, 0xf1,
|
|
0xba, 0x04, 0x69, 0x0f, 0x42, 0xed, 0xc1, 0xe0, 0x88, 0x12, 0xa4, 0x2d, 0x5e, 0x28, 0x6c, 0xef,
|
|
0xc7, 0x74, 0x2d, 0xb8, 0x0e, 0xc1, 0x58, 0x67, 0x5f, 0xf0, 0xb4, 0x7a, 0xf4, 0xf1, 0xd0, 0x4c,
|
|
0x2b, 0x87, 0xed, 0x01, 0x4f, 0xeb, 0x1f, 0xc6, 0x60, 0xca, 0x85, 0xc6, 0x3f, 0x50, 0xd9, 0x27,
|
|
0xa2, 0xb1, 0x7e, 0x11, 0x25, 0x0f, 0x5e, 0x30, 0x15, 0xe0, 0x9c, 0x9c, 0x49, 0x33, 0xfd, 0x0a,
|
|
0x6d, 0x6d, 0x11, 0x92, 0xb8, 0x35, 0xee, 0xdc, 0xd0, 0x88, 0x2a, 0x77, 0xb7, 0xa8, 0x4c, 0x67,
|
|
0x9c, 0x8d, 0x78, 0x3c, 0xb4, 0xbb, 0xc0, 0x37, 0x57, 0x18, 0x14, 0x88, 0xbc, 0xaf, 0xaf, 0x14,
|
|
0xfe, 0x90, 0xe0, 0x60, 0x6f, 0xba, 0xef, 0x6c, 0xdf, 0x5f, 0x78, 0x3f, 0x28, 0x9b, 0xfd, 0x6e,
|
|
0x18, 0x2f, 0x49, 0xad, 0xaa, 0x62, 0xf4, 0xba, 0x55, 0x43, 0xe9, 0xa2, 0x03, 0x90, 0x56, 0xa5,
|
|
0x56, 0x4d, 0xc7, 0x09, 0x35, 0xdd, 0x50, 0xba, 0xb5, 0x2b, 0x5b, 0x85, 0xe2, 0xc5, 0xd2, 0x56,
|
|
0xb1, 0x90, 0x7a, 0x04, 0xcd, 0x42, 0xca, 0x95, 0x7b, 0x36, 0x25, 0x78, 0xa4, 0x9e, 0x4b, 0xc5,
|
|
0xb2, 0x5f, 0x67, 0x6f, 0x6f, 0x92, 0x75, 0x13, 0x5a, 0x84, 0xb9, 0x2b, 0xd5, 0x62, 0xa5, 0xba,
|
|
0x93, 0xdf, 0x29, 0xd6, 0xae, 0x6c, 0x55, 0xb7, 0x8b, 0x6b, 0xa5, 0x8b, 0x25, 0xb3, 0x51, 0x3b,
|
|
0x2b, 0xbf, 0xb6, 0x53, 0x7a, 0xa9, 0x98, 0x12, 0xd0, 0x3c, 0x20, 0x3b, 0xb5, 0xb4, 0xc5, 0xd2,
|
|
0x63, 0x68, 0x0e, 0xa6, 0xed, 0xf4, 0x42, 0x71, 0xa3, 0xb8, 0x53, 0x2c, 0xa4, 0xe2, 0xce, 0x46,
|
|
0x36, 0xca, 0x6b, 0x97, 0x8b, 0x85, 0x54, 0xc2, 0x59, 0xb8, 0x7a, 0xa5, 0xba, 0x5d, 0xdc, 0x2a,
|
|
0xa4, 0x86, 0x9c, 0xc9, 0xa5, 0xad, 0xd2, 0x4e, 0x29, 0xbf, 0x91, 0x1a, 0xce, 0x7e, 0x37, 0x0c,
|
|
0xd3, 0x77, 0x71, 0x71, 0xe7, 0xeb, 0xc5, 0xad, 0x42, 0xb1, 0xe2, 0x82, 0x3a, 0x0d, 0x13, 0x2c,
|
|
0xfd, 0x62, 0x71, 0x33, 0xbf, 0x81, 0x71, 0x4e, 0xc1, 0x18, 0x4b, 0x22, 0x09, 0x31, 0x84, 0x60,
|
|
0x92, 0x25, 0x14, 0x4a, 0x2f, 0x15, 0x2b, 0xd5, 0x62, 0x2a, 0x9e, 0xcd, 0xc3, 0xa4, 0xfd, 0xf6,
|
|
0x3e, 0x59, 0x3d, 0x65, 0x60, 0x7e, 0x33, 0xbf, 0x76, 0xa9, 0xb4, 0x55, 0xbc, 0x5c, 0x7c, 0xc5,
|
|
0xd5, 0xcb, 0x0c, 0x4c, 0x71, 0x79, 0x1f, 0xa8, 0x96, 0xb7, 0x52, 0x42, 0xf6, 0xc7, 0x62, 0xf4,
|
|
0x90, 0x80, 0xe5, 0xf5, 0xa2, 0x83, 0xb0, 0x48, 0x46, 0x51, 0xcc, 0x57, 0xd6, 0x2e, 0xf5, 0xb7,
|
|
0xb2, 0x04, 0x0b, 0xae, 0xec, 0x6a, 0xb1, 0x52, 0xdb, 0xca, 0x6f, 0x62, 0xd4, 0x07, 0x20, 0xed,
|
|
0xcc, 0xbc, 0x58, 0xaa, 0x54, 0x77, 0x68, 0x6e, 0xac, 0xbf, 0xea, 0x46, 0xde, 0xcc, 0x8c, 0xf7,
|
|
0x67, 0x6e, 0x95, 0xd6, 0x2e, 0xd3, 0xcc, 0x04, 0x3a, 0x04, 0x19, 0x67, 0x66, 0xa1, 0x54, 0xdd,
|
|
0xde, 0xc8, 0xbf, 0x42, 0xf3, 0x87, 0xd0, 0x02, 0xcc, 0x38, 0xf3, 0x8b, 0x9b, 0xf9, 0xd2, 0x46,
|
|
0x6a, 0xb8, 0x3f, 0x83, 0x4c, 0x4e, 0x6a, 0xc4, 0xe2, 0x03, 0x2b, 0x63, 0xe7, 0x95, 0xed, 0x62,
|
|
0x2a, 0x99, 0xfd, 0xeb, 0x18, 0x8c, 0xf3, 0x7e, 0x3b, 0x6e, 0x81, 0x16, 0xda, 0x2c, 0xee, 0x5c,
|
|
0x2a, 0x17, 0x6a, 0xc5, 0x17, 0xaf, 0xe4, 0x37, 0xaa, 0xa9, 0x47, 0xf0, 0x58, 0x1d, 0x19, 0xd5,
|
|
0x9d, 0x7c, 0x65, 0xa7, 0x5a, 0x7b, 0xb9, 0xb4, 0x73, 0x29, 0x25, 0x60, 0xc6, 0x74, 0xe4, 0xae,
|
|
0x95, 0xb7, 0x76, 0xf2, 0xa5, 0xad, 0x6a, 0x2a, 0x86, 0x1e, 0x83, 0xc3, 0x1e, 0x2d, 0xd6, 0x4a,
|
|
0xeb, 0x5b, 0xe5, 0x4a, 0xb1, 0xb6, 0x96, 0xc7, 0x53, 0x8b, 0x8e, 0xc3, 0x11, 0xbf, 0xd6, 0x1d,
|
|
0x25, 0x13, 0xe8, 0x28, 0x3c, 0xea, 0xd9, 0x93, 0xa3, 0xd8, 0x10, 0xa6, 0xaf, 0xa3, 0xd8, 0x56,
|
|
0x79, 0xc7, 0x1c, 0xcb, 0x30, 0x9e, 0x73, 0x47, 0xe6, 0x7a, 0xa5, 0x98, 0xdf, 0x29, 0x56, 0x6a,
|
|
0x3b, 0x97, 0xf2, 0x5b, 0xa9, 0x11, 0xcc, 0x55, 0x8e, 0xec, 0x8d, 0x62, 0xb5, 0x4a, 0xf3, 0x92,
|
|
0x7d, 0x79, 0xa5, 0x6a, 0xad, 0xbc, 0x55, 0xac, 0x95, 0x2f, 0xa6, 0x46, 0xf1, 0xb4, 0x39, 0xeb,
|
|
0x95, 0xaa, 0x3b, 0x36, 0x25, 0x20, 0x5b, 0x80, 0x11, 0xf6, 0x40, 0x21, 0x26, 0xf3, 0xe6, 0xc5,
|
|
0x3c, 0x9e, 0x04, 0x17, 0xbf, 0x4d, 0xc1, 0x98, 0x99, 0x51, 0xdd, 0xac, 0x52, 0xc9, 0x30, 0x13,
|
|
0xca, 0x3b, 0xdb, 0xa9, 0x58, 0xf6, 0x1a, 0x24, 0xcd, 0x87, 0x0a, 0x51, 0x1a, 0x66, 0xf1, 0xff,
|
|
0x1e, 0xea, 0x60, 0x1e, 0x90, 0x95, 0x83, 0xc7, 0x5e, 0x29, 0xe6, 0x0b, 0xaf, 0xa4, 0x04, 0x2c,
|
|
0x57, 0x56, 0x3a, 0x4d, 0x8b, 0x61, 0xa9, 0xe7, 0xd2, 0x36, 0xcb, 0x2f, 0x61, 0x5d, 0x90, 0xbd,
|
|
0x04, 0x29, 0xf7, 0x1b, 0x82, 0x78, 0xf4, 0x5b, 0xe5, 0x9d, 0xd2, 0xc5, 0xd2, 0x5a, 0x7e, 0xa7,
|
|
0x54, 0xde, 0x22, 0xa8, 0x28, 0xef, 0x3d, 0x82, 0xb1, 0xf4, 0xe5, 0x91, 0x21, 0x64, 0x7b, 0x30,
|
|
0xc6, 0x3d, 0x62, 0x84, 0xa7, 0x66, 0xbb, 0xbc, 0x51, 0x5a, 0x7b, 0xc5, 0x07, 0x37, 0x9f, 0x69,
|
|
0x29, 0xb2, 0x34, 0xcc, 0xf2, 0xe9, 0x9c, 0x2a, 0x5b, 0x80, 0x19, 0x3e, 0xc7, 0x52, 0x66, 0xd9,
|
|
0x6d, 0x48, 0x9a, 0x6f, 0x93, 0xe0, 0xea, 0xe5, 0xca, 0xba, 0x57, 0x87, 0x33, 0x30, 0x65, 0xe5,
|
|
0x58, 0xbd, 0xcd, 0xc1, 0xb4, 0x95, 0x68, 0x77, 0x95, 0xfd, 0x11, 0x81, 0xbb, 0xae, 0xdf, 0xf9,
|
|
0xb0, 0x01, 0x3a, 0x06, 0x8f, 0x95, 0x2b, 0xeb, 0x85, 0xf2, 0x66, 0xbe, 0xb4, 0xf5, 0x52, 0x7e,
|
|
0xa3, 0x54, 0xb0, 0xa9, 0xe0, 0xec, 0x70, 0x19, 0x0e, 0xf8, 0x15, 0xbc, 0xb4, 0xb3, 0xb3, 0x9d,
|
|
0x12, 0xd0, 0x61, 0x58, 0xf2, 0x2b, 0x51, 0xc0, 0x22, 0x95, 0x7d, 0x19, 0x50, 0xff, 0x9d, 0xf1,
|
|
0x48, 0x84, 0x43, 0x56, 0x35, 0x3f, 0x75, 0x76, 0x10, 0x16, 0x3d, 0xca, 0xd0, 0xdf, 0x29, 0x21,
|
|
0xfb, 0xeb, 0x02, 0x69, 0xd9, 0x75, 0x90, 0x91, 0xb5, 0xbc, 0x59, 0xdc, 0x5c, 0xf5, 0x57, 0x94,
|
|
0x8f, 0xc2, 0x41, 0x8f, 0x32, 0x9c, 0x42, 0x14, 0xd8, 0xc8, 0xdd, 0x45, 0x6c, 0xad, 0x18, 0xc3,
|
|
0x4a, 0xc6, 0xa3, 0x04, 0xe5, 0xb0, 0x38, 0x96, 0x2f, 0x2f, 0x18, 0x58, 0x21, 0x97, 0x0a, 0xa9,
|
|
0x44, 0xf6, 0x65, 0xeb, 0x13, 0x2e, 0x1b, 0xfa, 0x32, 0x1c, 0xd8, 0xae, 0x94, 0x3f, 0x50, 0x5c,
|
|
0xdb, 0x19, 0x00, 0xbc, 0xaf, 0x04, 0x4b, 0x60, 0xc0, 0xb3, 0xdf, 0x67, 0x7d, 0xd3, 0x48, 0xb9,
|
|
0xe9, 0x00, 0xa4, 0xcd, 0x2a, 0x1e, 0x1c, 0x85, 0x19, 0x92, 0xcf, 0xb5, 0xb8, 0x6a, 0x11, 0xe6,
|
|
0x1c, 0x19, 0x1c, 0x67, 0xfd, 0x90, 0x7d, 0x89, 0xad, 0xe3, 0xfe, 0x2f, 0x74, 0x04, 0x96, 0x59,
|
|
0x9d, 0x4a, 0x79, 0xa3, 0xe8, 0x37, 0x06, 0x1b, 0x90, 0xb3, 0xd4, 0xe5, 0x22, 0x96, 0xf9, 0xa3,
|
|
0xf0, 0xa8, 0x67, 0xae, 0xc3, 0xaa, 0xc4, 0xb2, 0xdf, 0xb6, 0x2f, 0x32, 0x73, 0x33, 0xc0, 0xe3,
|
|
0x20, 0xb2, 0x16, 0x06, 0x33, 0x81, 0xdd, 0xd3, 0x40, 0x46, 0xb0, 0x07, 0x35, 0x88, 0x19, 0xec,
|
|
0xa9, 0xf3, 0x63, 0x08, 0x11, 0x0e, 0xf9, 0xc1, 0x32, 0x99, 0x62, 0x40, 0x5f, 0xb6, 0x25, 0x1f,
|
|
0xc2, 0xba, 0xc2, 0xfc, 0x18, 0x1d, 0xeb, 0x8a, 0xfc, 0xf6, 0xb6, 0x8f, 0xae, 0xb0, 0x72, 0x78,
|
|
0x5d, 0x61, 0x25, 0x72, 0x33, 0xba, 0x04, 0x63, 0xdc, 0x35, 0x0f, 0x68, 0x1c, 0x92, 0xe4, 0xe7,
|
|
0xd9, 0xda, 0x99, 0xd4, 0x23, 0xd9, 0x0f, 0xd1, 0xfb, 0x1c, 0xf8, 0x8b, 0x10, 0x30, 0x77, 0x90,
|
|
0xb4, 0x62, 0x75, 0xbb, 0xbc, 0x55, 0x2d, 0x12, 0x71, 0x5f, 0x2b, 0x17, 0x8a, 0x4c, 0x6a, 0xdd,
|
|
0x59, 0xa5, 0x42, 0x6d, 0xa7, 0x7c, 0xb9, 0xb8, 0x95, 0x12, 0xb0, 0x85, 0xf5, 0xcd, 0x66, 0x85,
|
|
0x62, 0x59, 0x0d, 0x26, 0x1c, 0xb7, 0x24, 0x60, 0xc2, 0x90, 0x84, 0x4a, 0x7e, 0x6b, 0x87, 0x54,
|
|
0xc9, 0x5f, 0xd9, 0xb9, 0x54, 0xae, 0x94, 0x3e, 0x48, 0xb4, 0x8d, 0xd9, 0x75, 0x06, 0xe6, 0x9d,
|
|
0xa5, 0x4a, 0x9b, 0xdb, 0x1b, 0xa5, 0xb5, 0xd2, 0x0e, 0xd3, 0x53, 0x8e, 0xbc, 0x4a, 0xf1, 0x62,
|
|
0xa5, 0x58, 0xbd, 0x64, 0xf5, 0x79, 0x13, 0x66, 0x3c, 0x2e, 0x51, 0xc0, 0x06, 0x80, 0x24, 0x6f,
|
|
0xe3, 0x96, 0x6c, 0xdd, 0xf6, 0x72, 0x71, 0x35, 0xf5, 0x08, 0xd1, 0x35, 0x1e, 0x99, 0x64, 0xb2,
|
|
0xf2, 0xeb, 0xc5, 0x2d, 0xdc, 0x31, 0x56, 0x04, 0x1e, 0x65, 0xb6, 0xf2, 0x8c, 0xf6, 0x4d, 0x40,
|
|
0xfd, 0x97, 0x2b, 0x10, 0xe5, 0x82, 0x53, 0xaf, 0xec, 0x30, 0x03, 0x4d, 0x2a, 0xad, 0xe6, 0xab,
|
|
0xa5, 0x35, 0xea, 0xe8, 0x79, 0xe4, 0x6e, 0x97, 0xab, 0xb8, 0x43, 0xef, 0xcc, 0xad, 0xf2, 0x16,
|
|
0xee, 0xad, 0x06, 0xb3, 0x5e, 0x5f, 0x5d, 0x63, 0x02, 0x73, 0x08, 0xab, 0xc5, 0x4a, 0xde, 0x47,
|
|
0xfd, 0x38, 0x4a, 0x99, 0xdc, 0x99, 0xdf, 0xde, 0x36, 0xd5, 0x8f, 0x61, 0xdd, 0xcb, 0x67, 0x9f,
|
|
0x10, 0xe5, 0xd4, 0x16, 0xa1, 0xbf, 0x17, 0xbb, 0xda, 0x5a, 0x81, 0x2b, 0x62, 0xf1, 0xed, 0x21,
|
|
0xc8, 0xf4, 0xe7, 0x72, 0x0c, 0xfc, 0x31, 0xd7, 0x87, 0x49, 0xf6, 0xc0, 0x6c, 0x29, 0xa7, 0x35,
|
|
0x7d, 0x94, 0x81, 0xad, 0x34, 0x5c, 0xc5, 0x9c, 0xda, 0x95, 0x93, 0x62, 0x57, 0x39, 0xac, 0xad,
|
|
0x88, 0x0a, 0x8b, 0x65, 0x3f, 0x63, 0x5f, 0x95, 0xe7, 0x75, 0xd4, 0x1e, 0x9d, 0x84, 0x63, 0x7c,
|
|
0x1b, 0x83, 0xb5, 0x54, 0x16, 0x1e, 0x1f, 0x54, 0xd8, 0xa1, 0xaa, 0x4e, 0xc0, 0xd1, 0x41, 0x65,
|
|
0x79, 0x7d, 0xe5, 0x22, 0x8b, 0x9f, 0xd2, 0x3a, 0x06, 0x8f, 0x0d, 0x84, 0x6a, 0x69, 0xae, 0x80,
|
|
0xae, 0x79, 0xf5, 0x75, 0x1d, 0x26, 0x9d, 0x07, 0x88, 0xcd, 0x25, 0x84, 0x2f, 0x6f, 0xb0, 0x95,
|
|
0xa4, 0x17, 0x63, 0xb0, 0xa5, 0x89, 0x37, 0x57, 0xfc, 0xb9, 0x40, 0x8f, 0x5a, 0xb9, 0x58, 0x42,
|
|
0x84, 0x43, 0x76, 0x1d, 0x7f, 0x43, 0xeb, 0x51, 0xc6, 0x64, 0x86, 0x52, 0x81, 0xf2, 0xa4, 0x57,
|
|
0x33, 0x8c, 0x24, 0x31, 0x73, 0xb1, 0xe6, 0xca, 0x2f, 0x57, 0xd6, 0x71, 0x76, 0x1c, 0x2b, 0x24,
|
|
0x8f, 0x6c, 0x8b, 0x8d, 0x12, 0x3e, 0x05, 0xc8, 0x4f, 0xdc, 0xc2, 0x50, 0xf6, 0xe3, 0x02, 0x3d,
|
|
0xa5, 0xeb, 0x71, 0xb4, 0x0d, 0x4f, 0x1c, 0xae, 0xcc, 0xe6, 0xe1, 0x52, 0x69, 0xdb, 0x6f, 0xa0,
|
|
0xcb, 0x70, 0xc0, 0xaf, 0x20, 0x59, 0x76, 0x11, 0x8b, 0xec, 0x57, 0xa2, 0xbc, 0x6a, 0x92, 0x23,
|
|
0x96, 0x7d, 0x1d, 0xc0, 0x3e, 0x74, 0x46, 0x16, 0xbb, 0xa4, 0x82, 0x87, 0x53, 0xb9, 0x04, 0x0b,
|
|
0x5c, 0x5e, 0xb9, 0xb2, 0x9e, 0xdf, 0x2a, 0x55, 0x89, 0x46, 0xa1, 0x41, 0x00, 0x2e, 0x93, 0x11,
|
|
0x9c, 0x7a, 0x5b, 0xfd, 0xe9, 0x94, 0x1a, 0xa9, 0x78, 0xf6, 0x2a, 0x24, 0xcd, 0xfd, 0x5a, 0x3c,
|
|
0x2f, 0xa5, 0xc2, 0xf6, 0x5a, 0x79, 0xeb, 0x62, 0x69, 0xdd, 0x87, 0x9b, 0x5c, 0xf9, 0x3c, 0x37,
|
|
0xb9, 0xb2, 0x38, 0x6e, 0xda, 0xa5, 0x76, 0x90, 0xdf, 0x72, 0x23, 0x5e, 0x22, 0x4e, 0xcb, 0x6f,
|
|
0x6f, 0x97, 0xb6, 0xd6, 0x2f, 0x96, 0x8a, 0x1b, 0x05, 0x57, 0x6f, 0xd8, 0xd5, 0x76, 0x97, 0xd8,
|
|
0xae, 0x14, 0x2f, 0x16, 0x2b, 0x95, 0x62, 0x81, 0x70, 0x0b, 0x13, 0x5e, 0x66, 0xbc, 0x1c, 0x05,
|
|
0xa9, 0x18, 0xc6, 0xb2, 0x3f, 0x2c, 0xc0, 0x38, 0xbf, 0xfd, 0x85, 0xa9, 0x51, 0x2a, 0xf8, 0xce,
|
|
0x29, 0xa5, 0x80, 0x9d, 0x5b, 0x2a, 0x6c, 0xd7, 0xe8, 0xa0, 0x28, 0xe7, 0xce, 0xc1, 0xb4, 0x23,
|
|
0x9f, 0xe9, 0x04, 0x77, 0xb5, 0xed, 0x4a, 0xf9, 0xa5, 0x52, 0x01, 0x2f, 0x35, 0x31, 0x23, 0xc4,
|
|
0xb3, 0x17, 0xc9, 0xe6, 0xba, 0xb9, 0x24, 0x2c, 0x15, 0xb6, 0x3d, 0xe6, 0x36, 0x05, 0xe3, 0x66,
|
|
0x06, 0x1e, 0x4d, 0x4a, 0xe0, 0x53, 0xaa, 0xf9, 0x4d, 0x3c, 0x9a, 0x86, 0x23, 0xbc, 0x4f, 0xda,
|
|
0x3b, 0x0c, 0x4b, 0xa5, 0xc2, 0xb6, 0xd9, 0xa1, 0x47, 0xbb, 0x19, 0x98, 0x77, 0x17, 0xa8, 0xbe,
|
|
0x52, 0xdd, 0x29, 0x6e, 0xa6, 0x04, 0x06, 0xc6, 0x91, 0x57, 0xae, 0xac, 0xa7, 0x62, 0xd9, 0x0f,
|
|
0x5a, 0x77, 0x62, 0x9b, 0xa6, 0x9c, 0xf1, 0x8d, 0x47, 0x07, 0x73, 0x30, 0xcd, 0x67, 0x96, 0x5f,
|
|
0xde, 0x2a, 0x16, 0x68, 0xdb, 0x7c, 0x32, 0xe1, 0xb7, 0x62, 0x21, 0x15, 0x3b, 0xf7, 0xcb, 0x77,
|
|
0x04, 0x98, 0xde, 0xb4, 0x62, 0xb7, 0x55, 0x45, 0xbb, 0xa9, 0xd6, 0x15, 0x74, 0x19, 0x46, 0x2e,
|
|
0x29, 0x52, 0xd3, 0xb8, 0xfe, 0x61, 0x34, 0xdf, 0x17, 0x13, 0x2c, 0xb6, 0xba, 0xc6, 0x6e, 0xc6,
|
|
0x27, 0x5d, 0x4c, 0xdd, 0xfe, 0x37, 0xff, 0xf1, 0xcd, 0x18, 0xa0, 0x64, 0xee, 0x3a, 0x6b, 0x61,
|
|
0x1d, 0x86, 0x2a, 0x8a, 0x24, 0xef, 0x46, 0x6e, 0x6a, 0x92, 0x34, 0x95, 0x44, 0xc3, 0x39, 0x8d,
|
|
0xd4, 0xdf, 0x82, 0xa4, 0xf9, 0xe2, 0x9c, 0x6f, 0x5b, 0x0b, 0x7d, 0xe9, 0x55, 0x43, 0xeb, 0xd5,
|
|
0x0d, 0x71, 0x9a, 0x34, 0x36, 0x86, 0x46, 0x73, 0x37, 0xcd, 0x36, 0x9a, 0x30, 0xb9, 0xae, 0x18,
|
|
0x1f, 0xa4, 0x11, 0xec, 0x42, 0xa7, 0xae, 0xfb, 0xb6, 0x1a, 0x78, 0xbd, 0x18, 0xd7, 0x88, 0x38,
|
|
0x47, 0x7a, 0x9a, 0x42, 0x13, 0x39, 0x56, 0x3e, 0x27, 0xe3, 0xb6, 0xaf, 0xc1, 0xf0, 0xba, 0x62,
|
|
0x94, 0xa4, 0x96, 0x6f, 0x2f, 0x8f, 0x05, 0xee, 0x94, 0x48, 0x2d, 0xf1, 0xf0, 0xed, 0x3b, 0xe9,
|
|
0x29, 0x98, 0x90, 0x7a, 0xc6, 0x75, 0xa5, 0x6d, 0x60, 0x0f, 0x48, 0x91, 0x49, 0x87, 0xc3, 0x28,
|
|
0x91, 0x53, 0xa5, 0x16, 0xfa, 0x1c, 0x96, 0x32, 0x1d, 0x6b, 0xd4, 0x2b, 0x6d, 0xf5, 0x43, 0x3d,
|
|
0x05, 0x05, 0x1e, 0x6d, 0xa0, 0xe5, 0x70, 0x0d, 0x16, 0xc3, 0xcd, 0x9c, 0x8b, 0x52, 0x85, 0x3a,
|
|
0xd4, 0xe2, 0xb1, 0xdb, 0x77, 0xd2, 0x63, 0xf4, 0xf3, 0x95, 0x15, 0x3c, 0x5f, 0x04, 0x14, 0x42,
|
|
0xa9, 0x1c, 0x4e, 0xd1, 0x73, 0x35, 0x55, 0xef, 0x51, 0x3c, 0x3f, 0x2c, 0xc0, 0xd8, 0xba, 0x62,
|
|
0xe0, 0xca, 0xab, 0xbb, 0xa5, 0x02, 0x7a, 0x3c, 0xcc, 0xc1, 0xe7, 0x52, 0x21, 0x73, 0x3c, 0x4c,
|
|
0xb9, 0x97, 0x54, 0xe5, 0x96, 0x28, 0x7a, 0x41, 0x99, 0x40, 0x63, 0x0c, 0xca, 0xeb, 0xaa, 0xfc,
|
|
0x06, 0xfa, 0x45, 0x01, 0xd2, 0x16, 0x0a, 0xb2, 0xc5, 0xb8, 0x25, 0xb5, 0x94, 0xf5, 0x66, 0xe7,
|
|
0xaa, 0xd4, 0x44, 0x27, 0x82, 0xba, 0xb2, 0x2a, 0x44, 0x40, 0xf5, 0xec, 0xed, 0x3b, 0x69, 0x44,
|
|
0x0f, 0x4a, 0xac, 0x34, 0x48, 0x3f, 0x36, 0xb8, 0x03, 0x28, 0x93, 0xa3, 0x69, 0x26, 0xb9, 0xae,
|
|
0xee, 0x92, 0x77, 0x7b, 0xc9, 0xf6, 0xdf, 0xe7, 0x04, 0x18, 0xa3, 0x5a, 0x13, 0x37, 0xa6, 0x87,
|
|
0x98, 0x51, 0xdd, 0xb5, 0x7d, 0x95, 0x39, 0x17, 0xa5, 0x0a, 0x9b, 0xd1, 0xe3, 0x5e, 0x64, 0x9c,
|
|
0x11, 0x27, 0x4d, 0x88, 0x3a, 0x29, 0x7e, 0x41, 0xc8, 0xa2, 0x9f, 0x10, 0x00, 0xe8, 0xc9, 0x47,
|
|
0xdc, 0x4c, 0x30, 0x3e, 0xbb, 0xac, 0x89, 0xef, 0x54, 0x18, 0x7c, 0x16, 0xb2, 0x47, 0x6f, 0xdf,
|
|
0x49, 0x8f, 0x03, 0x10, 0x64, 0xb7, 0x34, 0xd5, 0x50, 0xa8, 0x70, 0x8b, 0xc3, 0x14, 0x1a, 0x86,
|
|
0xf4, 0x29, 0x01, 0x26, 0x0b, 0x8a, 0x54, 0x37, 0xd4, 0x9b, 0x26, 0xac, 0xb0, 0x8c, 0x16, 0x0d,
|
|
0xcb, 0x39, 0x4f, 0x2c, 0x07, 0x32, 0x0b, 0x1c, 0xb7, 0xe5, 0x6a, 0xb2, 0x05, 0xc5, 0x04, 0x57,
|
|
0x79, 0x78, 0xc0, 0x69, 0x0e, 0x70, 0x3f, 0x2e, 0x40, 0x72, 0xa3, 0x53, 0xbf, 0x71, 0x0f, 0x61,
|
|
0x9d, 0xf2, 0x84, 0x35, 0x9f, 0x99, 0x76, 0xc0, 0x6a, 0x76, 0xea, 0x37, 0x30, 0xa0, 0x4f, 0x08,
|
|
0x00, 0x57, 0xda, 0xcd, 0x7b, 0x0b, 0x69, 0xc5, 0x13, 0x52, 0x3a, 0x33, 0xe3, 0x80, 0xd4, 0x6b,
|
|
0x9b, 0xa0, 0x34, 0x80, 0x82, 0xd2, 0x54, 0x22, 0xce, 0x9e, 0x9f, 0xa9, 0x3b, 0x72, 0xfb, 0x4e,
|
|
0x7a, 0x02, 0xc6, 0x48, 0xef, 0x32, 0x69, 0x96, 0xea, 0xac, 0xac, 0x43, 0x67, 0xfd, 0xa4, 0x40,
|
|
0x3f, 0xdd, 0xa4, 0x97, 0x41, 0xe8, 0x28, 0xf0, 0x44, 0x3a, 0x2d, 0x68, 0xca, 0xd8, 0xb1, 0x70,
|
|
0xc5, 0x75, 0x31, 0xeb, 0x25, 0xf8, 0x73, 0xc8, 0x41, 0x8a, 0x3a, 0xc3, 0xf0, 0x35, 0x01, 0x26,
|
|
0xf2, 0xb2, 0x6c, 0xef, 0x12, 0xa1, 0xe0, 0x0b, 0xd3, 0xf8, 0xe2, 0x26, 0xb8, 0xa7, 0x22, 0xd6,
|
|
0x62, 0xd3, 0x76, 0xc6, 0x73, 0xda, 0x32, 0xe2, 0x9c, 0x89, 0x95, 0xed, 0x22, 0xbe, 0x91, 0xbb,
|
|
0xa1, 0xec, 0x12, 0xc5, 0xf0, 0x49, 0x01, 0x52, 0x74, 0xe6, 0x38, 0xcc, 0x81, 0x37, 0x53, 0xda,
|
|
0x65, 0x4b, 0x05, 0x13, 0xb2, 0xdf, 0x64, 0x3e, 0xed, 0x89, 0x69, 0x39, 0x7b, 0xc8, 0x13, 0x53,
|
|
0xee, 0xf5, 0x1b, 0xca, 0x2e, 0xfe, 0x85, 0x7e, 0x53, 0x80, 0x69, 0xb6, 0x33, 0x64, 0xf5, 0xa6,
|
|
0xa3, 0x67, 0xc2, 0x43, 0x73, 0xaa, 0xfc, 0x67, 0xa3, 0x57, 0x64, 0x44, 0x7d, 0xc6, 0x6b, 0xfe,
|
|
0x45, 0xf1, 0xa0, 0x37, 0x7e, 0xce, 0x0e, 0x7c, 0x45, 0x80, 0x89, 0x75, 0xc5, 0xd8, 0x2f, 0x61,
|
|
0x57, 0xc2, 0x57, 0x22, 0x96, 0xf5, 0x29, 0x2f, 0xbc, 0xcb, 0x28, 0x88, 0xde, 0x3f, 0x2d, 0x10,
|
|
0x07, 0x10, 0x4b, 0xd4, 0xb6, 0xd6, 0xb9, 0xa6, 0x36, 0x95, 0xd0, 0x72, 0x9c, 0x0b, 0x53, 0x8e,
|
|
0x35, 0x4a, 0x20, 0x86, 0x11, 0xa9, 0x2e, 0x03, 0xf1, 0x4b, 0x02, 0x4c, 0xd3, 0x63, 0xe9, 0x3c,
|
|
0xb4, 0xc0, 0xe9, 0xec, 0xab, 0x62, 0x92, 0xf3, 0x64, 0x04, 0xb0, 0xe1, 0xf4, 0x20, 0x43, 0x8a,
|
|
0xa7, 0xfc, 0x1f, 0x08, 0x30, 0xce, 0x88, 0x58, 0x24, 0xdf, 0x14, 0x87, 0x25, 0x61, 0xa8, 0x0f,
|
|
0x64, 0x49, 0x93, 0x84, 0x80, 0xde, 0xce, 0x08, 0x72, 0x58, 0x0c, 0xfa, 0x51, 0xf3, 0x4f, 0x0b,
|
|
0x80, 0xa8, 0x26, 0x23, 0x4e, 0xb0, 0xf9, 0xf5, 0xf4, 0xf9, 0xf0, 0xf4, 0x33, 0xeb, 0x04, 0x09,
|
|
0xba, 0x8f, 0x19, 0x43, 0xb3, 0x3c, 0x28, 0xf3, 0x2c, 0x1a, 0xfa, 0x82, 0x00, 0x53, 0x36, 0x2e,
|
|
0x4a, 0xac, 0xa7, 0xc3, 0x83, 0x22, 0x15, 0x4c, 0x44, 0x27, 0x42, 0x13, 0x2f, 0x9c, 0xad, 0x25,
|
|
0x94, 0xc3, 0xd3, 0xf9, 0x79, 0x01, 0x96, 0x2a, 0x8a, 0xae, 0xb4, 0x65, 0x4a, 0x7a, 0xf2, 0x42,
|
|
0x3b, 0x0d, 0xb3, 0x6e, 0x46, 0x99, 0x5d, 0x3f, 0x92, 0xbd, 0xe0, 0x89, 0x26, 0x2b, 0x1e, 0xed,
|
|
0x43, 0x83, 0xdd, 0x12, 0x8c, 0xe3, 0x26, 0x07, 0xc1, 0xc5, 0x70, 0xdb, 0xd7, 0x3b, 0x6d, 0xe5,
|
|
0xee, 0x32, 0x1c, 0x69, 0x32, 0x34, 0xc3, 0x75, 0x09, 0x00, 0xe7, 0xc4, 0x52, 0x50, 0x11, 0x26,
|
|
0x96, 0x54, 0x88, 0x34, 0xb1, 0xa4, 0x46, 0xb8, 0x89, 0x25, 0x08, 0x31, 0xd9, 0xfe, 0x7f, 0x98,
|
|
0xa2, 0xe7, 0x74, 0xa2, 0x13, 0xce, 0x6f, 0x2e, 0x4f, 0x78, 0x02, 0x98, 0xc9, 0x7a, 0x90, 0xc8,
|
|
0x66, 0x2b, 0x4a, 0x60, 0x6e, 0x4e, 0xd7, 0x3a, 0xb2, 0x72, 0x7f, 0xd8, 0x8a, 0x40, 0xf1, 0x63,
|
|
0x2b, 0xce, 0x18, 0xe4, 0x65, 0x59, 0x53, 0x74, 0xfd, 0xee, 0x1a, 0x03, 0xd6, 0x68, 0x68, 0x63,
|
|
0x20, 0x31, 0x10, 0x4e, 0x63, 0x60, 0x42, 0x8b, 0x60, 0x0c, 0x58, 0x95, 0x48, 0xc6, 0x80, 0xd5,
|
|
0x09, 0x67, 0x0c, 0x18, 0x52, 0x4c, 0x44, 0x27, 0x58, 0x66, 0xa5, 0x83, 0x1d, 0x42, 0x5a, 0x85,
|
|
0x15, 0x37, 0x81, 0xe6, 0x42, 0x3a, 0x01, 0xd1, 0x3c, 0xf8, 0x16, 0xad, 0x84, 0xc1, 0xfe, 0xa1,
|
|
0x00, 0xf3, 0xf6, 0xaa, 0x9a, 0x3b, 0xcf, 0x16, 0x82, 0xbc, 0x7e, 0x87, 0x3b, 0x33, 0xe7, 0xf7,
|
|
0x50, 0x93, 0xe1, 0x7f, 0xde, 0x8b, 0x2b, 0x38, 0x16, 0xb6, 0xbc, 0x18, 0xf3, 0x24, 0x9c, 0x2a,
|
|
0x77, 0x1d, 0xde, 0x17, 0xf6, 0x1f, 0xa9, 0x8c, 0x73, 0x9d, 0x44, 0x1a, 0x8b, 0xe3, 0x24, 0x9f,
|
|
0xaf, 0xb0, 0x7d, 0xb7, 0x27, 0xa1, 0x57, 0xb3, 0x2f, 0x0c, 0x46, 0xfa, 0xba, 0xe3, 0xf4, 0xdf,
|
|
0x1b, 0xb9, 0xd7, 0xdd, 0x27, 0xfd, 0xde, 0x40, 0x7f, 0xdf, 0x0e, 0x0d, 0x6d, 0x5e, 0x93, 0xf4,
|
|
0xbb, 0xb7, 0xd4, 0xdb, 0xec, 0x35, 0x0d, 0xf5, 0xa2, 0x54, 0x37, 0x3a, 0x9a, 0x1e, 0x14, 0xa9,
|
|
0xa2, 0x7c, 0x82, 0xbb, 0xff, 0x75, 0x01, 0x96, 0xaa, 0x4a, 0x5b, 0xae, 0x2a, 0x86, 0x79, 0x56,
|
|
0x9c, 0x3f, 0x9f, 0x83, 0xde, 0x1f, 0xfc, 0x7d, 0x86, 0x67, 0xc5, 0x20, 0x02, 0x17, 0x3c, 0x09,
|
|
0xbc, 0x22, 0x9e, 0x70, 0x68, 0x33, 0xd6, 0x30, 0xe6, 0x80, 0xb6, 0xac, 0x2b, 0x46, 0x9b, 0xeb,
|
|
0x81, 0x05, 0x19, 0x50, 0x55, 0x31, 0x4a, 0x6d, 0xd5, 0x50, 0xa5, 0xa6, 0x75, 0xd8, 0x3d, 0xf8,
|
|
0xb1, 0x3a, 0x56, 0x32, 0x08, 0xe5, 0x73, 0x9e, 0x28, 0x8f, 0x8a, 0xcb, 0xde, 0x28, 0x55, 0x8a,
|
|
0x43, 0xfd, 0x30, 0x11, 0xbe, 0xbf, 0x10, 0x60, 0xce, 0x16, 0x3e, 0x7b, 0xef, 0x47, 0x47, 0xcf,
|
|
0xed, 0xe5, 0x1e, 0x04, 0x13, 0xeb, 0xfb, 0xf6, 0x56, 0x99, 0x49, 0x60, 0xe9, 0xf6, 0x9d, 0xf4,
|
|
0x3c, 0xcc, 0x92, 0x11, 0xb5, 0xac, 0x42, 0x36, 0x8f, 0x9c, 0x10, 0x8f, 0xf4, 0xb1, 0xb8, 0x5d,
|
|
0xce, 0x21, 0x8b, 0xbf, 0x20, 0xc0, 0xd2, 0xba, 0x3d, 0xfb, 0xe4, 0x59, 0x15, 0xe5, 0x35, 0xd5,
|
|
0xd8, 0x65, 0x9f, 0xdf, 0xf8, 0xc5, 0x80, 0x9f, 0x0d, 0x3b, 0x3b, 0xee, 0x16, 0xc9, 0xa2, 0x6d,
|
|
0x02, 0xc6, 0xba, 0xe4, 0x97, 0x73, 0x19, 0x44, 0xd2, 0x54, 0x45, 0xb7, 0x66, 0x43, 0xcf, 0xd5,
|
|
0xad, 0xea, 0xe8, 0x57, 0x05, 0x10, 0xd7, 0x15, 0xa3, 0x40, 0x3f, 0xa2, 0xb8, 0x8f, 0x88, 0x9f,
|
|
0xf7, 0x46, 0x7c, 0x1c, 0x3d, 0x3e, 0x18, 0x71, 0xce, 0xfc, 0xde, 0xe3, 0x4f, 0x05, 0x38, 0x44,
|
|
0x43, 0x89, 0xbe, 0xa8, 0xdf, 0xbf, 0x57, 0x74, 0xb4, 0xdd, 0x7d, 0x8c, 0x0e, 0x8b, 0xc7, 0x24,
|
|
0x8c, 0xb3, 0xd1, 0xd9, 0x02, 0xf2, 0x98, 0x18, 0x30, 0x21, 0x98, 0x7d, 0xf0, 0xc8, 0xa8, 0x55,
|
|
0xbc, 0xfb, 0x23, 0xa3, 0xed, 0xde, 0x8b, 0x91, 0x65, 0x42, 0x8c, 0xec, 0xeb, 0x02, 0x1c, 0xa2,
|
|
0xe1, 0x17, 0xdf, 0x91, 0x5d, 0xd8, 0x2b, 0xb2, 0x01, 0x0e, 0xe2, 0x79, 0xba, 0x6d, 0xc2, 0x30,
|
|
0x73, 0x21, 0xb6, 0xe5, 0x6c, 0x90, 0x7c, 0xbc, 0x29, 0xc0, 0x2c, 0x27, 0xca, 0xf9, 0x86, 0x12,
|
|
0x20, 0x11, 0x67, 0xc3, 0xe2, 0xb7, 0x9a, 0x22, 0x61, 0x2c, 0x0f, 0x51, 0x58, 0x44, 0x0b, 0x5e,
|
|
0xe0, 0xa4, 0x86, 0x82, 0x6d, 0xd3, 0x82, 0x93, 0xf7, 0x6d, 0x60, 0xcf, 0x44, 0x06, 0xc0, 0xb8,
|
|
0x7d, 0x0f, 0xc8, 0x9f, 0xf4, 0x61, 0x86, 0x03, 0xa2, 0x1f, 0x74, 0xcc, 0x05, 0x18, 0xbd, 0x93,
|
|
0xbf, 0xf7, 0x83, 0x9e, 0x71, 0xf4, 0xdd, 0x44, 0x9f, 0x19, 0x84, 0xfe, 0x53, 0x02, 0x2c, 0x38,
|
|
0x79, 0xd8, 0x46, 0xff, 0x44, 0x64, 0x10, 0x03, 0xb8, 0xf6, 0x9c, 0x1f, 0xd7, 0x2e, 0x66, 0x7d,
|
|
0x19, 0xe3, 0xf3, 0x74, 0x63, 0xcb, 0xec, 0x66, 0xa3, 0x53, 0xbf, 0xd1, 0xe9, 0x19, 0x01, 0x2c,
|
|
0xfb, 0x54, 0x58, 0xd4, 0x8e, 0xe6, 0x08, 0xf9, 0x3c, 0xd8, 0xf6, 0x20, 0x5a, 0xf2, 0x42, 0xd7,
|
|
0xa4, 0x75, 0xd1, 0xef, 0x0b, 0xb0, 0xe4, 0x64, 0x5d, 0x27, 0xc8, 0xe7, 0xf6, 0x04, 0x86, 0xb1,
|
|
0xf0, 0x1e, 0x47, 0xf2, 0xac, 0x0f, 0x23, 0x2c, 0x8b, 0x83, 0x86, 0x82, 0x99, 0x01, 0x8f, 0xc6,
|
|
0xc9, 0xca, 0x77, 0x63, 0x34, 0x8c, 0xa5, 0xef, 0xf6, 0x68, 0x32, 0x41, 0xa3, 0xf9, 0x79, 0x01,
|
|
0x96, 0x9c, 0xac, 0xed, 0x1c, 0xcd, 0x33, 0x7b, 0x02, 0x34, 0x80, 0xc5, 0x9f, 0xf6, 0x63, 0xf1,
|
|
0x83, 0xd9, 0x81, 0x4c, 0xf4, 0x77, 0x05, 0x18, 0xa5, 0x53, 0x5e, 0xd6, 0x1a, 0x28, 0xf8, 0x33,
|
|
0x73, 0x8d, 0x5d, 0xcd, 0x62, 0x7a, 0x8a, 0x8f, 0x85, 0xa8, 0x21, 0x2e, 0x53, 0x17, 0xb7, 0xa3,
|
|
0x35, 0x56, 0xc8, 0xd7, 0x53, 0x14, 0x19, 0x88, 0x43, 0xb9, 0x8e, 0xd6, 0xd0, 0xd9, 0x66, 0x19,
|
|
0xe0, 0xb6, 0xef, 0xf1, 0x8e, 0xcc, 0xf1, 0xdb, 0x77, 0xd2, 0x40, 0x2e, 0x6b, 0xb4, 0xa5, 0x6c,
|
|
0x16, 0x21, 0x02, 0xc3, 0xb9, 0x1f, 0x73, 0x03, 0x92, 0xeb, 0x8a, 0xb1, 0xb9, 0x8b, 0xa9, 0xe2,
|
|
0x27, 0xed, 0xc7, 0x42, 0x8c, 0x9d, 0x04, 0x2a, 0x0e, 0x79, 0x74, 0x0b, 0x28, 0x49, 0xbb, 0x6d,
|
|
0x29, 0xe8, 0x33, 0xd4, 0x34, 0x96, 0xb5, 0xc6, 0xea, 0x2e, 0x3d, 0x1b, 0xcf, 0x36, 0xd0, 0x03,
|
|
0x17, 0x6e, 0xb4, 0x74, 0x78, 0x24, 0x4f, 0xdc, 0xbe, 0x93, 0x9e, 0x86, 0x29, 0x8c, 0xc4, 0xbd,
|
|
0x77, 0x9e, 0x46, 0xf3, 0xe6, 0xde, 0x39, 0xc1, 0x55, 0xbb, 0xba, 0x4b, 0x6f, 0xad, 0x44, 0x3f,
|
|
0x00, 0x53, 0xf6, 0x16, 0xf0, 0x60, 0x92, 0x84, 0x62, 0x87, 0x15, 0xba, 0x70, 0xc4, 0x20, 0x6c,
|
|
0x99, 0x5a, 0xcc, 0xcc, 0x9a, 0xf4, 0x70, 0x6f, 0xf3, 0xfe, 0x00, 0x4c, 0x55, 0xee, 0x6f, 0xff,
|
|
0xce, 0x9d, 0xdc, 0xb7, 0xc8, 0x0a, 0x90, 0x6c, 0x28, 0xed, 0x5a, 0x5f, 0x2f, 0xe8, 0xc1, 0xb1,
|
|
0x49, 0xd7, 0x97, 0x0e, 0x26, 0xb7, 0x3e, 0x13, 0xb9, 0x1e, 0x5b, 0x57, 0x9d, 0xf5, 0x60, 0xa3,
|
|
0x83, 0x62, 0xda, 0x82, 0x4d, 0xa7, 0xcb, 0xb1, 0x7e, 0xfa, 0x8c, 0x00, 0x93, 0x79, 0x59, 0xe6,
|
|
0x70, 0x07, 0x5b, 0xd6, 0xbc, 0x2c, 0x5b, 0xa5, 0x43, 0xc7, 0x53, 0xad, 0x1a, 0x66, 0x54, 0xce,
|
|
0x49, 0xdd, 0x39, 0x31, 0xe5, 0x86, 0x89, 0xe1, 0xfd, 0xa5, 0x00, 0x07, 0xd7, 0x95, 0xb6, 0xa2,
|
|
0x99, 0x13, 0xeb, 0xfe, 0x40, 0x25, 0xd8, 0x89, 0xf5, 0xa8, 0x64, 0x82, 0x7e, 0x6e, 0x4f, 0x75,
|
|
0x19, 0xb1, 0x8b, 0x5e, 0xc3, 0x38, 0x23, 0x9e, 0xec, 0xa3, 0xf6, 0xeb, 0xf4, 0x9f, 0x37, 0xcc,
|
|
0x03, 0x51, 0x6a, 0xa7, 0x9d, 0xa3, 0x5a, 0x0e, 0x8f, 0xf0, 0xab, 0x02, 0xcc, 0x98, 0xa7, 0xad,
|
|
0xf8, 0x59, 0x08, 0x5c, 0x36, 0x98, 0x95, 0xfa, 0xa6, 0x62, 0x50, 0xb4, 0xa3, 0x0f, 0x70, 0x4e,
|
|
0xcc, 0x86, 0x03, 0x7c, 0x5d, 0xa1, 0xfb, 0xf1, 0x5f, 0x24, 0x01, 0x05, 0x63, 0x73, 0x77, 0x5b,
|
|
0x53, 0x5b, 0x92, 0xc6, 0x21, 0x0e, 0xf1, 0x18, 0x88, 0xb3, 0x46, 0x10, 0xe0, 0xf3, 0x5e, 0x80,
|
|
0x8f, 0x88, 0xa2, 0x3f, 0xe0, 0x5a, 0x97, 0x76, 0x81, 0x7e, 0xda, 0x0a, 0xd1, 0xf1, 0x34, 0x0d,
|
|
0x14, 0x48, 0x5a, 0x25, 0x34, 0xc0, 0x33, 0x5e, 0x00, 0x97, 0xb2, 0x8b, 0xbe, 0x00, 0xd1, 0x47,
|
|
0x05, 0x98, 0x36, 0xcd, 0x46, 0x49, 0x6a, 0x05, 0x78, 0x8b, 0xa7, 0x42, 0xf0, 0xa7, 0xd5, 0x8a,
|
|
0x78, 0xda, 0xef, 0xc4, 0x9a, 0x65, 0xc0, 0x5a, 0x4a, 0x4e, 0x95, 0x5a, 0xd4, 0x05, 0x40, 0x3f,
|
|
0x46, 0xa1, 0x58, 0xdf, 0x44, 0xd1, 0x97, 0x4a, 0xfc, 0xa0, 0xac, 0x84, 0x80, 0xc2, 0xb5, 0x43,
|
|
0x48, 0xc3, 0xec, 0x08, 0x8d, 0xdc, 0x38, 0x03, 0xf0, 0x0c, 0x0e, 0x09, 0xe9, 0xe4, 0xe8, 0xb5,
|
|
0x90, 0x5f, 0xe4, 0x34, 0x11, 0x7b, 0x09, 0x25, 0xa4, 0x26, 0x32, 0x1f, 0xc6, 0x08, 0xaf, 0x89,
|
|
0x68, 0x0d, 0xa2, 0x2f, 0x11, 0xa4, 0x38, 0x90, 0xde, 0x0a, 0x89, 0x01, 0xc5, 0xec, 0xff, 0x4f,
|
|
0x04, 0x98, 0xa6, 0xce, 0x02, 0x0f, 0xf4, 0xe9, 0x70, 0xfe, 0xc5, 0x7e, 0xb0, 0x3e, 0x37, 0x00,
|
|
0xeb, 0xe1, 0x4c, 0xc6, 0x8d, 0xd5, 0x8e, 0x9c, 0x61, 0xd4, 0x9f, 0x73, 0x8a, 0x43, 0x58, 0xd4,
|
|
0x96, 0x38, 0x38, 0x51, 0x0f, 0x92, 0xd7, 0x19, 0x98, 0xe6, 0x20, 0x72, 0x6e, 0xe6, 0x81, 0xec,
|
|
0x00, 0x8c, 0xe8, 0x37, 0x9d, 0x16, 0x94, 0x45, 0x0e, 0x43, 0x59, 0x50, 0x8f, 0xd7, 0x1d, 0x42,
|
|
0x59, 0x50, 0xaf, 0xd7, 0x34, 0x88, 0x43, 0xef, 0xc3, 0xb6, 0xbc, 0x21, 0x35, 0x07, 0xc0, 0x19,
|
|
0xd2, 0x4f, 0x09, 0xd6, 0xcb, 0x6d, 0xf7, 0xda, 0x49, 0x3d, 0xc3, 0x56, 0x1d, 0xb4, 0x37, 0xa7,
|
|
0x83, 0xc6, 0x12, 0x5d, 0xce, 0xea, 0x57, 0x05, 0x98, 0xa4, 0x23, 0x65, 0x10, 0xf5, 0xe0, 0xcd,
|
|
0x22, 0xaf, 0x17, 0xaf, 0x32, 0x4f, 0x45, 0xac, 0xc5, 0x6d, 0x19, 0x79, 0x21, 0x9e, 0x17, 0xa7,
|
|
0x6d, 0xc4, 0x1c, 0x31, 0xdf, 0x14, 0xac, 0xb3, 0xd8, 0xe4, 0xe8, 0xea, 0x89, 0x90, 0xdd, 0x96,
|
|
0x0a, 0xc1, 0xfb, 0x6e, 0xac, 0x28, 0xf1, 0x76, 0x4f, 0x11, 0xa1, 0x72, 0xe0, 0x42, 0xb1, 0x12,
|
|
0xc5, 0x96, 0x42, 0x93, 0x4e, 0x6a, 0xa2, 0x9f, 0x11, 0x60, 0x82, 0xad, 0xa7, 0x69, 0x7a, 0x68,
|
|
0x22, 0x3a, 0x97, 0x44, 0xc7, 0x42, 0xd6, 0x22, 0xab, 0x91, 0x14, 0x4c, 0x9a, 0xf0, 0xb8, 0xa5,
|
|
0xd1, 0xa4, 0x38, 0x6a, 0x81, 0xc3, 0x04, 0xfb, 0x47, 0x02, 0x4c, 0xb0, 0xc5, 0x71, 0x44, 0x68,
|
|
0xb4, 0x56, 0x64, 0x68, 0x67, 0x88, 0xac, 0x4f, 0x98, 0xd0, 0x88, 0x2e, 0xb2, 0x48, 0x37, 0x93,
|
|
0x71, 0x91, 0x0e, 0x43, 0xfc, 0x92, 0x00, 0xd3, 0xf6, 0x2a, 0xc1, 0x84, 0x19, 0x61, 0x66, 0x43,
|
|
0x63, 0x7b, 0xdf, 0x20, 0x6c, 0x58, 0x57, 0x3a, 0x85, 0xc4, 0xb5, 0x98, 0xf8, 0x12, 0xd1, 0x95,
|
|
0x0f, 0x23, 0x4e, 0xe7, 0xa2, 0xe3, 0xb6, 0x00, 0x13, 0x54, 0x41, 0xef, 0x01, 0xa3, 0x9f, 0x0a,
|
|
0xc7, 0x82, 0x3a, 0x6b, 0x73, 0x1c, 0xd5, 0xdf, 0xb6, 0x48, 0x64, 0xdd, 0x22, 0xf1, 0x2f, 0xac,
|
|
0xed, 0x25, 0xe7, 0x3b, 0x79, 0x21, 0xb6, 0x97, 0x06, 0x3c, 0xac, 0x97, 0xb9, 0x10, 0xfd, 0xb1,
|
|
0x37, 0x4b, 0xd7, 0x3c, 0xe5, 0xa3, 0x6b, 0xb0, 0xfe, 0x66, 0xaf, 0x50, 0x7a, 0xa9, 0x9c, 0xdf,
|
|
0x10, 0x60, 0x6e, 0x5d, 0x31, 0x9c, 0xa8, 0x88, 0xf2, 0x59, 0x89, 0x02, 0xa6, 0x54, 0xc8, 0x44,
|
|
0x7e, 0xe1, 0x50, 0x5c, 0xf3, 0x81, 0x7c, 0x12, 0x9d, 0xe8, 0x83, 0xfc, 0xba, 0xfd, 0x6e, 0xc7,
|
|
0x1b, 0x34, 0x93, 0x4d, 0xc5, 0x67, 0xe9, 0x00, 0x1c, 0x9f, 0x39, 0x0f, 0xf6, 0xe9, 0xc2, 0xbe,
|
|
0x3f, 0xc8, 0xfb, 0x75, 0xd8, 0x40, 0xce, 0xc1, 0x8c, 0x09, 0xd5, 0x6d, 0x24, 0x49, 0x20, 0xdd,
|
|
0x84, 0xea, 0xf4, 0xef, 0xfe, 0x93, 0x00, 0xb3, 0x0e, 0x1b, 0x64, 0x1a, 0xf9, 0x0b, 0x91, 0x60,
|
|
0x38, 0x19, 0xe5, 0xb9, 0x3d, 0xd5, 0x65, 0x9c, 0x72, 0xe5, 0xf6, 0x9d, 0xf4, 0xb2, 0xe7, 0x58,
|
|
0xd0, 0xa8, 0x29, 0x2a, 0x6c, 0x22, 0xc4, 0xc7, 0x73, 0xde, 0x33, 0xe0, 0xe1, 0x09, 0x7c, 0x43,
|
|
0x80, 0x54, 0x5e, 0x96, 0x1d, 0x3d, 0xa3, 0x33, 0x91, 0x80, 0xe6, 0x65, 0x39, 0xf8, 0x18, 0x95,
|
|
0xa3, 0x06, 0xd9, 0xe4, 0xcb, 0xc0, 0xac, 0x6b, 0x30, 0x4e, 0x9d, 0xb2, 0x24, 0xba, 0x1d, 0x04,
|
|
0xce, 0xb3, 0xfd, 0xa6, 0x00, 0x33, 0xd4, 0xc3, 0x70, 0x22, 0x7f, 0x22, 0x12, 0x0e, 0xda, 0x42,
|
|
0x54, 0xf0, 0xa5, 0x10, 0xe0, 0x8f, 0x66, 0x96, 0xbd, 0xc1, 0x3b, 0x5d, 0xdd, 0xaf, 0x08, 0x30,
|
|
0xe3, 0x50, 0x8b, 0x7b, 0x1a, 0x06, 0x6d, 0xc1, 0x57, 0x4d, 0xae, 0xdf, 0xbe, 0x93, 0x5e, 0x82,
|
|
0x39, 0x17, 0x5e, 0x97, 0xb6, 0x14, 0xb3, 0x81, 0x80, 0xd1, 0x9f, 0x5b, 0x7e, 0x2f, 0x77, 0x45,
|
|
0x42, 0x88, 0x73, 0x31, 0x7d, 0x17, 0x2a, 0x84, 0x3e, 0x17, 0xe3, 0x51, 0x93, 0x89, 0xc3, 0x8b,
|
|
0xb7, 0xef, 0xa4, 0x0f, 0xc1, 0xb4, 0xa5, 0x85, 0x3a, 0x4d, 0xc5, 0x53, 0x18, 0x4e, 0x88, 0x47,
|
|
0x7c, 0x84, 0x81, 0x08, 0x3a, 0x2f, 0x0a, 0xbf, 0x44, 0xd7, 0x74, 0x5c, 0x9f, 0xa1, 0xb5, 0x29,
|
|
0x2e, 0x8c, 0xc5, 0xe0, 0x64, 0x84, 0xf2, 0x64, 0x91, 0x94, 0x26, 0xf7, 0x9e, 0xd9, 0x43, 0x70,
|
|
0x72, 0xd1, 0xa2, 0x38, 0xeb, 0x9a, 0x14, 0x02, 0x9a, 0x45, 0x36, 0xd0, 0x6a, 0xaf, 0x79, 0xc3,
|
|
0x05, 0xf8, 0x5c, 0x34, 0xc0, 0xb8, 0x05, 0x5f, 0xbe, 0xc9, 0x07, 0xe2, 0x3b, 0x2c, 0x66, 0xbc,
|
|
0xf0, 0xe5, 0x6a, 0x57, 0x7b, 0x4d, 0x12, 0x7f, 0xf9, 0x15, 0x6b, 0x01, 0xca, 0x83, 0x3c, 0x1b,
|
|
0x01, 0x24, 0x13, 0xd1, 0x48, 0x84, 0x0d, 0x01, 0x3c, 0xe3, 0x0d, 0xfc, 0xf5, 0x1b, 0xca, 0xee,
|
|
0x1b, 0xec, 0xc4, 0xeb, 0xb4, 0x43, 0x30, 0x23, 0x03, 0x0f, 0x10, 0x4a, 0xac, 0x01, 0x17, 0x6d,
|
|
0x75, 0x4e, 0x30, 0xba, 0x44, 0x12, 0x2f, 0x42, 0x7d, 0x41, 0xa2, 0x7f, 0x6f, 0x09, 0x23, 0x77,
|
|
0xe9, 0x41, 0x08, 0x61, 0xf4, 0x7b, 0xa2, 0x3f, 0x58, 0x18, 0x3d, 0x6a, 0x32, 0x61, 0x7c, 0xf9,
|
|
0xf6, 0x9d, 0xf4, 0x41, 0x48, 0x99, 0x83, 0x91, 0xba, 0x5d, 0x4f, 0x59, 0x3c, 0x23, 0x9e, 0xf4,
|
|
0x91, 0x45, 0x89, 0x1b, 0x02, 0x2f, 0x92, 0xdf, 0x14, 0x60, 0x8a, 0xeb, 0x96, 0x78, 0x38, 0xa7,
|
|
0x23, 0xe0, 0x0c, 0x73, 0x0e, 0x93, 0x2b, 0x4e, 0xfc, 0x9b, 0x17, 0xc3, 0x0d, 0x26, 0x8b, 0x8e,
|
|
0x87, 0x19, 0x0c, 0xf1, 0x76, 0xde, 0x12, 0x00, 0x71, 0xdd, 0xdc, 0xeb, 0x25, 0xf7, 0x07, 0x68,
|
|
0xf4, 0xc5, 0x3d, 0x02, 0x7a, 0x5e, 0x0c, 0x9d, 0x72, 0x31, 0x95, 0x13, 0xae, 0xae, 0xd4, 0x6b,
|
|
0xfc, 0x62, 0xfc, 0x5f, 0x0b, 0x30, 0xc7, 0x76, 0xd4, 0x9c, 0x37, 0x88, 0xa0, 0xa7, 0xc2, 0x5c,
|
|
0xe2, 0xcc, 0x8f, 0x9a, 0x6e, 0xc5, 0x9e, 0x8c, 0x30, 0x1f, 0xc4, 0xe9, 0xe1, 0xb4, 0x3c, 0x1e,
|
|
0x09, 0x15, 0x64, 0xd7, 0x64, 0x9c, 0x16, 0x43, 0x4d, 0x46, 0x47, 0x95, 0xeb, 0x98, 0xad, 0x7e,
|
|
0xcf, 0x3a, 0x91, 0xca, 0x0f, 0xe8, 0x6c, 0x04, 0x64, 0x6c, 0x27, 0xf6, 0xde, 0x0c, 0x26, 0x13,
|
|
0x9a, 0xb3, 0xf0, 0x60, 0xfe, 0x44, 0x80, 0x39, 0x7b, 0xa9, 0xca, 0x0f, 0x28, 0xa2, 0xa4, 0x44,
|
|
0x1a, 0x8c, 0x14, 0x72, 0x30, 0xe7, 0x33, 0x4f, 0x86, 0x1d, 0x8c, 0x7b, 0x6d, 0x8b, 0x07, 0x56,
|
|
0x79, 0x67, 0x0c, 0xcc, 0xb9, 0x18, 0xfe, 0xba, 0x65, 0x5c, 0xf6, 0x31, 0x28, 0x3f, 0xc3, 0x52,
|
|
0xbd, 0x7d, 0x27, 0x7d, 0xd8, 0x36, 0x7e, 0x18, 0x3f, 0xb3, 0x2b, 0x6e, 0x05, 0x96, 0x0d, 0xaf,
|
|
0xc0, 0xfe, 0x8b, 0x75, 0x9c, 0x81, 0x03, 0x81, 0xe5, 0x9b, 0xdd, 0x73, 0x1f, 0xea, 0x42, 0x77,
|
|
0xfe, 0x69, 0x8d, 0x4c, 0x36, 0x7c, 0x0d, 0xb1, 0x19, 0x72, 0x4a, 0x0a, 0x99, 0xe7, 0x43, 0x8d,
|
|
0x88, 0xfb, 0x45, 0x72, 0xb1, 0x5a, 0xa0, 0x47, 0x90, 0xf1, 0xec, 0xfc, 0x8d, 0x00, 0x99, 0x8a,
|
|
0xd2, 0x60, 0xfb, 0x78, 0x04, 0x06, 0xff, 0x4a, 0x47, 0xc4, 0x69, 0x0a, 0xdc, 0x15, 0xe1, 0x1b,
|
|
0x17, 0x8d, 0x90, 0x23, 0xdd, 0xc8, 0xac, 0x87, 0x66, 0x3e, 0x7b, 0x74, 0xb9, 0x1a, 0xd5, 0xea,
|
|
0xf4, 0xf1, 0x00, 0xfa, 0x12, 0x09, 0x1e, 0xf1, 0x5f, 0x09, 0x30, 0xe3, 0xf0, 0xeb, 0xc9, 0x62,
|
|
0x5f, 0x47, 0xe7, 0xf7, 0x12, 0xd8, 0xd8, 0x7f, 0x4c, 0xc4, 0xc5, 0xc1, 0x24, 0x6c, 0xe0, 0x6d,
|
|
0x82, 0xc5, 0xa3, 0xb9, 0x81, 0xa1, 0x06, 0xce, 0x93, 0x78, 0x4b, 0xb0, 0x2e, 0xa5, 0x23, 0x7d,
|
|
0xde, 0xa7, 0x60, 0xc9, 0x2a, 0x09, 0x51, 0x79, 0x8c, 0x85, 0x6e, 0x0f, 0x22, 0x31, 0x17, 0x1c,
|
|
0x2b, 0xf9, 0xa7, 0x02, 0x20, 0x47, 0x24, 0x97, 0x3e, 0x2e, 0x7c, 0x2e, 0x0a, 0x18, 0x66, 0x7c,
|
|
0x4f, 0x45, 0xa9, 0x43, 0xfc, 0x68, 0x2e, 0x7c, 0x42, 0xc1, 0xdb, 0x1b, 0x39, 0xa2, 0x78, 0x70,
|
|
0x20, 0x7a, 0x16, 0xa8, 0x42, 0x8e, 0x50, 0xef, 0x1e, 0xb0, 0x33, 0x8d, 0x11, 0x0d, 0xfb, 0xc5,
|
|
0xc1, 0xd8, 0x8f, 0x65, 0x42, 0x50, 0x9e, 0xb9, 0x0a, 0xf3, 0x7d, 0x81, 0x60, 0x3a, 0x88, 0xa8,
|
|
0xdc, 0x13, 0x6d, 0x00, 0x95, 0xc1, 0x03, 0x78, 0x22, 0xb3, 0x12, 0x3c, 0x00, 0xb7, 0x45, 0xc5,
|
|
0x83, 0xa9, 0x7c, 0xe7, 0x0e, 0xc6, 0x69, 0x45, 0xbf, 0x20, 0x00, 0x72, 0x2c, 0xd1, 0xf6, 0x36,
|
|
0x90, 0x41, 0x07, 0x10, 0xe6, 0xed, 0x28, 0x0f, 0x85, 0xcc, 0x6d, 0x11, 0x1e, 0xc9, 0x86, 0x91,
|
|
0xdd, 0x6f, 0x08, 0x90, 0xb1, 0xe3, 0x9c, 0xdc, 0x95, 0x69, 0x83, 0x83, 0x9d, 0xcf, 0x44, 0x7f,
|
|
0xee, 0x9c, 0x46, 0x3c, 0x8b, 0x24, 0xd6, 0xb3, 0xe8, 0x44, 0xed, 0x8e, 0x7b, 0x92, 0xd3, 0xff,
|
|
0x26, 0x74, 0x86, 0xd6, 0x19, 0xfe, 0xbc, 0x1d, 0x83, 0xc5, 0x7e, 0x8b, 0x60, 0xc6, 0x40, 0x9f,
|
|
0xdf, 0xeb, 0x63, 0xec, 0xa6, 0x75, 0x78, 0x61, 0xef, 0x0d, 0x30, 0x1b, 0x71, 0x35, 0xcc, 0x38,
|
|
0xbf, 0x4b, 0x7c, 0x36, 0x60, 0x8a, 0xcc, 0x47, 0x82, 0x3d, 0x43, 0xa3, 0x7f, 0x29, 0xc0, 0x9c,
|
|
0x1d, 0x5e, 0xe1, 0xb0, 0xa0, 0xa7, 0xa2, 0xe3, 0xcf, 0xcb, 0x72, 0xe6, 0x5c, 0xf4, 0x6a, 0xe2,
|
|
0xab, 0xb7, 0xef, 0xa4, 0x0f, 0x40, 0xc6, 0x73, 0xa0, 0xb6, 0x00, 0x3d, 0x25, 0x9e, 0x89, 0x3a,
|
|
0x52, 0xe6, 0xea, 0xa4, 0x1d, 0xe1, 0x19, 0x7e, 0x90, 0xcf, 0x46, 0x47, 0xcb, 0x82, 0x35, 0x7b,
|
|
0x19, 0xa7, 0x12, 0x6a, 0x9c, 0xcf, 0x67, 0x2e, 0x44, 0x9e, 0x51, 0x47, 0xc0, 0xf5, 0x8f, 0x04,
|
|
0x48, 0xf7, 0x2b, 0x8d, 0xbd, 0x8f, 0x38, 0x20, 0xca, 0x53, 0x27, 0xb1, 0x84, 0x25, 0xcf, 0x51,
|
|
0x71, 0xba, 0xe4, 0x7d, 0xd9, 0x7d, 0x0c, 0x0b, 0xfd, 0x9a, 0x00, 0x29, 0xfb, 0xab, 0x29, 0xe6,
|
|
0xbb, 0x3d, 0x1d, 0xf1, 0x05, 0xe4, 0xd0, 0x87, 0x11, 0x7c, 0xde, 0xce, 0x26, 0x3b, 0x59, 0xd3,
|
|
0x30, 0x45, 0x2f, 0x32, 0x72, 0xba, 0x39, 0xf6, 0xc5, 0x1b, 0xfd, 0x7e, 0xd9, 0xcf, 0x0b, 0xdc,
|
|
0x6b, 0xf1, 0xc4, 0x29, 0x3b, 0x19, 0x1a, 0x41, 0xd8, 0xcf, 0xb7, 0x6d, 0x77, 0xec, 0xbc, 0x3f,
|
|
0xc8, 0x43, 0xe8, 0x40, 0xdf, 0x67, 0x5c, 0xbc, 0x26, 0xff, 0xb2, 0x00, 0x53, 0xf6, 0x0d, 0x45,
|
|
0xd4, 0xd6, 0xe4, 0x42, 0xf7, 0xce, 0xfc, 0xaf, 0x13, 0xa1, 0x2b, 0x38, 0x2f, 0x86, 0x72, 0xd9,
|
|
0xcb, 0x03, 0xe2, 0x82, 0x0f, 0x56, 0x4c, 0xd2, 0x5f, 0x16, 0x60, 0xca, 0xfe, 0xde, 0x36, 0x2a,
|
|
0x52, 0xe6, 0x6d, 0x45, 0x40, 0xfa, 0x5d, 0x03, 0x90, 0x3e, 0x9a, 0x19, 0x48, 0x55, 0xe6, 0x99,
|
|
0xcf, 0x38, 0xef, 0x64, 0xa2, 0x90, 0x23, 0xf1, 0x41, 0x04, 0xb8, 0xa5, 0x01, 0x70, 0x4f, 0x67,
|
|
0x8e, 0x0f, 0x82, 0xeb, 0xf6, 0xa7, 0xde, 0x22, 0xdb, 0x37, 0xdf, 0x21, 0xd0, 0x9d, 0xde, 0xd3,
|
|
0x9b, 0x02, 0xff, 0xe9, 0xff, 0x1e, 0x60, 0x0f, 0xfa, 0x00, 0x74, 0x06, 0xa6, 0x39, 0x8c, 0x9c,
|
|
0xa2, 0x3b, 0x94, 0x1d, 0x2c, 0x64, 0x3f, 0x23, 0xc0, 0xcc, 0x6a, 0xaf, 0x79, 0xc3, 0x8d, 0xec,
|
|
0x89, 0xd0, 0xc8, 0x68, 0xcd, 0x81, 0xfb, 0x1a, 0x4f, 0x0e, 0x42, 0xb8, 0x90, 0x45, 0x14, 0xa1,
|
|
0xa9, 0xaa, 0xcc, 0xad, 0x8c, 0x8f, 0x08, 0xe4, 0x8a, 0x48, 0xa2, 0xa2, 0x8e, 0x86, 0x78, 0xbd,
|
|
0x28, 0xcc, 0xd9, 0x0a, 0xf6, 0x9e, 0x23, 0x39, 0xd9, 0x33, 0x09, 0xe3, 0x1d, 0xad, 0xb1, 0xa2,
|
|
0xca, 0x5d, 0x8f, 0xc3, 0xfc, 0x2d, 0x25, 0x67, 0x7e, 0x2d, 0xfd, 0x06, 0xfa, 0xb4, 0x75, 0xb2,
|
|
0x87, 0xbd, 0x15, 0x18, 0x4c, 0x1e, 0x8f, 0xd7, 0x68, 0x43, 0x5c, 0x2c, 0x28, 0x77, 0xc9, 0xc9,
|
|
0x99, 0x29, 0x98, 0x30, 0x91, 0xd9, 0xec, 0xb6, 0x20, 0xba, 0xa0, 0x99, 0xb1, 0xd5, 0x37, 0x2d,
|
|
0xed, 0x63, 0x3f, 0x25, 0x7c, 0x22, 0x44, 0x57, 0x4c, 0xef, 0xec, 0x13, 0x55, 0xc6, 0x83, 0x60,
|
|
0x6c, 0x3f, 0x87, 0x53, 0x32, 0x36, 0xb2, 0x90, 0x33, 0x19, 0x0a, 0xd5, 0xfb, 0xfc, 0x50, 0x3d,
|
|
0x96, 0x39, 0xd4, 0x8f, 0xca, 0xad, 0x4b, 0x3e, 0xef, 0xd0, 0x25, 0x0f, 0x07, 0x42, 0xa7, 0xca,
|
|
0xf8, 0x41, 0x53, 0x63, 0x44, 0x06, 0xe7, 0x27, 0x89, 0xa7, 0xfd, 0xf0, 0xcc, 0x66, 0xbd, 0x18,
|
|
0xff, 0xd7, 0x04, 0x98, 0xa1, 0x6c, 0xe2, 0x7c, 0xa9, 0x3a, 0x1a, 0xfb, 0x33, 0x46, 0x8b, 0xf6,
|
|
0x70, 0x37, 0xd9, 0xaf, 0xf3, 0x84, 0xfa, 0x78, 0xe6, 0xd1, 0x3e, 0xa8, 0x5d, 0x8f, 0xb0, 0xe2,
|
|
0x97, 0x04, 0x00, 0xea, 0x32, 0x95, 0xe4, 0xae, 0x1e, 0x1c, 0x31, 0x75, 0x3f, 0x6e, 0x19, 0xfc,
|
|
0x21, 0x63, 0xdf, 0xbb, 0xb9, 0xe4, 0x4b, 0x41, 0x2f, 0xbd, 0x82, 0x1d, 0x32, 0x07, 0x66, 0xce,
|
|
0x21, 0xfb, 0x38, 0xbd, 0xf2, 0x84, 0x7f, 0x15, 0xd2, 0x6f, 0x95, 0x9a, 0x0b, 0x75, 0x21, 0xa6,
|
|
0xfd, 0x48, 0xdf, 0xa0, 0x0f, 0x5a, 0x4d, 0x38, 0xd6, 0xc7, 0x5d, 0xe4, 0xa2, 0x4b, 0xec, 0x1e,
|
|
0x4e, 0x53, 0x7d, 0xc5, 0x03, 0x5a, 0x89, 0xd0, 0x71, 0xa8, 0x6d, 0x79, 0xae, 0xfc, 0xc0, 0x6f,
|
|
0x57, 0xbd, 0x51, 0xb2, 0xfd, 0x78, 0xb6, 0xa5, 0xc4, 0x03, 0x8d, 0xd2, 0xf1, 0x5d, 0x42, 0x99,
|
|
0x19, 0x84, 0xf2, 0x96, 0xb9, 0xf1, 0x10, 0x66, 0x7a, 0xf7, 0xf4, 0xfd, 0xa9, 0xcf, 0x3c, 0xfe,
|
|
0x5b, 0x1a, 0x07, 0xe1, 0xba, 0xe5, 0xae, 0x49, 0x0e, 0xb1, 0x6b, 0xed, 0xf7, 0x02, 0x5f, 0xf0,
|
|
0xae, 0xb5, 0xef, 0x23, 0x87, 0xe2, 0x25, 0x6f, 0x6e, 0x3c, 0x2b, 0x9e, 0xf2, 0x19, 0x05, 0x96,
|
|
0x15, 0xf3, 0x45, 0x4b, 0x87, 0xcc, 0xfc, 0x73, 0x01, 0x96, 0xf2, 0xb2, 0xcc, 0xdf, 0xfc, 0xdc,
|
|
0x89, 0xc4, 0xaf, 0xce, 0x87, 0x40, 0x83, 0x39, 0x81, 0x2b, 0x4f, 0xa2, 0xb4, 0x5e, 0x9c, 0x70,
|
|
0x42, 0x3c, 0x12, 0x66, 0x1c, 0x18, 0xff, 0x3f, 0x13, 0x60, 0xd9, 0x52, 0xed, 0x66, 0xc3, 0x17,
|
|
0xb5, 0x4e, 0x8b, 0x1f, 0xc4, 0xe9, 0x08, 0xa0, 0x06, 0xe8, 0xfc, 0x17, 0x7d, 0xe0, 0x9e, 0x17,
|
|
0x9f, 0x0c, 0x45, 0x76, 0xd7, 0x85, 0x31, 0x17, 0x84, 0xec, 0xea, 0x6f, 0x0b, 0x9f, 0xc8, 0xff,
|
|
0x94, 0x80, 0xd6, 0x61, 0xd2, 0xbe, 0xb4, 0x7a, 0x39, 0xbf, 0x5d, 0x12, 0xcf, 0xa0, 0x95, 0xeb,
|
|
0x86, 0xd1, 0xd5, 0x2f, 0xe4, 0x72, 0x0d, 0xd5, 0xb8, 0xde, 0xbb, 0xba, 0x52, 0xef, 0xb4, 0x72,
|
|
0x78, 0x18, 0xd6, 0x2d, 0xcc, 0xdd, 0x1b, 0x8d, 0x9c, 0x3d, 0x94, 0x73, 0xf1, 0x33, 0x2b, 0x67,
|
|
0xb3, 0x42, 0xec, 0x5c, 0x8a, 0xdb, 0x47, 0xc9, 0x7d, 0xbf, 0xde, 0x69, 0x3b, 0x53, 0x1a, 0x5a,
|
|
0xb7, 0x7e, 0xa1, 0xaf, 0xcc, 0x85, 0xbe, 0x32, 0x1f, 0x3c, 0x39, 0xa8, 0x5f, 0x5c, 0x82, 0xeb,
|
|
0xfc, 0xea, 0x30, 0x21, 0xd5, 0x13, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0xc0, 0x69, 0xee, 0xbc,
|
|
0xf7, 0x04, 0x01, 0x00,
|
|
}
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ context.Context
|
|
var _ grpc.ClientConn
|
|
|
|
// 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.SupportPackageIsVersion4
|
|
|
|
// 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)
|
|
IsUserUnique(ctx context.Context, in *UniqueUserRequest, opts ...grpc.CallOption) (*UniqueUserResponse, error)
|
|
GetUserByID(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserView, error)
|
|
// GetUserByLoginNameGlobal returns User, global search is overall organisations
|
|
GetUserByLoginNameGlobal(ctx context.Context, in *LoginName, 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)
|
|
CreateUser(ctx context.Context, in *CreateUserRequest, opts ...grpc.CallOption) (*UserResponse, error)
|
|
DeactivateUser(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserResponse, error)
|
|
ReactivateUser(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserResponse, error)
|
|
LockUser(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserResponse, error)
|
|
UnlockUser(ctx context.Context, in *UserID, opts ...grpc.CallOption) (*UserResponse, 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)
|
|
AddMachineKey(ctx context.Context, in *AddMachineKeyRequest, opts ...grpc.CallOption) (*AddMachineKeyResponse, error)
|
|
DeleteMachineKey(ctx context.Context, in *MachineKeyIDRequest, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
SearchMachineKeys(ctx context.Context, in *MachineKeySearchRequest, opts ...grpc.CallOption) (*MachineKeySearchResponse, error)
|
|
GetMachineKey(ctx context.Context, in *MachineKeyIDRequest, opts ...grpc.CallOption) (*MachineKeyView, 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)
|
|
ChangeUserUserName(ctx context.Context, in *UpdateUserUserNameRequest, opts ...grpc.CallOption) (*empty.Empty, 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)
|
|
UpdateUserMachine(ctx context.Context, in *UpdateMachineRequest, opts ...grpc.CallOption) (*MachineResponse, error)
|
|
SearchUserExternalIDPs(ctx context.Context, in *ExternalIDPSearchRequest, opts ...grpc.CallOption) (*ExternalIDPSearchResponse, error)
|
|
RemoveExternalIDP(ctx context.Context, in *ExternalIDPRemoveRequest, opts ...grpc.CallOption) (*empty.Empty, 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)
|
|
// OrgChanges returns the event stream of the org object
|
|
OrgChanges(ctx context.Context, in *ChangeRequest, opts ...grpc.CallOption) (*Changes, 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)
|
|
// ProjectChanges returns the event stream of the project object
|
|
ProjectChanges(ctx context.Context, in *ChangeRequest, opts ...grpc.CallOption) (*Changes, 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)
|
|
// ApplicationChanges returns the event stream of the application object
|
|
ApplicationChanges(ctx context.Context, in *ChangeRequest, opts ...grpc.CallOption) (*Changes, 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)
|
|
IdpByID(ctx context.Context, in *IdpID, opts ...grpc.CallOption) (*IdpView, error)
|
|
CreateOidcIdp(ctx context.Context, in *OidcIdpConfigCreate, opts ...grpc.CallOption) (*Idp, error)
|
|
UpdateIdpConfig(ctx context.Context, in *IdpUpdate, opts ...grpc.CallOption) (*Idp, error)
|
|
DeactivateIdpConfig(ctx context.Context, in *IdpID, opts ...grpc.CallOption) (*Idp, error)
|
|
ReactivateIdpConfig(ctx context.Context, in *IdpID, opts ...grpc.CallOption) (*Idp, error)
|
|
RemoveIdpConfig(ctx context.Context, in *IdpID, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
UpdateOidcIdpConfig(ctx context.Context, in *OidcIdpConfigUpdate, opts ...grpc.CallOption) (*OidcIdpConfig, error)
|
|
SearchIdps(ctx context.Context, in *IdpSearchRequest, opts ...grpc.CallOption) (*IdpSearchResponse, error)
|
|
GetLoginPolicy(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*LoginPolicyView, error)
|
|
CreateLoginPolicy(ctx context.Context, in *LoginPolicyAdd, opts ...grpc.CallOption) (*LoginPolicy, error)
|
|
UpdateLoginPolicy(ctx context.Context, in *LoginPolicy, opts ...grpc.CallOption) (*LoginPolicy, error)
|
|
RemoveLoginPolicy(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
GetLoginPolicyIdpProviders(ctx context.Context, in *IdpProviderSearchRequest, opts ...grpc.CallOption) (*IdpProviderSearchResponse, error)
|
|
AddIdpProviderToLoginPolicy(ctx context.Context, in *IdpProviderAdd, opts ...grpc.CallOption) (*IdpProvider, error)
|
|
RemoveIdpProviderFromLoginPolicy(ctx context.Context, in *IdpProviderID, opts ...grpc.CallOption) (*empty.Empty, error)
|
|
}
|
|
|
|
type managementServiceClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewManagementServiceClient(cc *grpc.ClientConn) 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) 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) 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) GetUserByLoginNameGlobal(ctx context.Context, in *LoginName, opts ...grpc.CallOption) (*UserView, error) {
|
|
out := new(UserView)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetUserByLoginNameGlobal", 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) CreateUser(ctx context.Context, in *CreateUserRequest, opts ...grpc.CallOption) (*UserResponse, error) {
|
|
out := new(UserResponse)
|
|
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) (*UserResponse, error) {
|
|
out := new(UserResponse)
|
|
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) (*UserResponse, error) {
|
|
out := new(UserResponse)
|
|
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) (*UserResponse, error) {
|
|
out := new(UserResponse)
|
|
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) (*UserResponse, error) {
|
|
out := new(UserResponse)
|
|
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) AddMachineKey(ctx context.Context, in *AddMachineKeyRequest, opts ...grpc.CallOption) (*AddMachineKeyResponse, error) {
|
|
out := new(AddMachineKeyResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/AddMachineKey", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) DeleteMachineKey(ctx context.Context, in *MachineKeyIDRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/DeleteMachineKey", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchMachineKeys(ctx context.Context, in *MachineKeySearchRequest, opts ...grpc.CallOption) (*MachineKeySearchResponse, error) {
|
|
out := new(MachineKeySearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchMachineKeys", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetMachineKey(ctx context.Context, in *MachineKeyIDRequest, opts ...grpc.CallOption) (*MachineKeyView, error) {
|
|
out := new(MachineKeyView)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetMachineKey", 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) ChangeUserUserName(ctx context.Context, in *UpdateUserUserNameRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ChangeUserUserName", 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) UpdateUserMachine(ctx context.Context, in *UpdateMachineRequest, opts ...grpc.CallOption) (*MachineResponse, error) {
|
|
out := new(MachineResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UpdateUserMachine", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchUserExternalIDPs(ctx context.Context, in *ExternalIDPSearchRequest, opts ...grpc.CallOption) (*ExternalIDPSearchResponse, error) {
|
|
out := new(ExternalIDPSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchUserExternalIDPs", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) RemoveExternalIDP(ctx context.Context, in *ExternalIDPRemoveRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/RemoveExternalIDP", 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) 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) 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) 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) 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) 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) 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
|
|
}
|
|
|
|
func (c *managementServiceClient) IdpByID(ctx context.Context, in *IdpID, opts ...grpc.CallOption) (*IdpView, error) {
|
|
out := new(IdpView)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/IdpByID", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) CreateOidcIdp(ctx context.Context, in *OidcIdpConfigCreate, opts ...grpc.CallOption) (*Idp, error) {
|
|
out := new(Idp)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/CreateOidcIdp", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UpdateIdpConfig(ctx context.Context, in *IdpUpdate, opts ...grpc.CallOption) (*Idp, error) {
|
|
out := new(Idp)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UpdateIdpConfig", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) DeactivateIdpConfig(ctx context.Context, in *IdpID, opts ...grpc.CallOption) (*Idp, error) {
|
|
out := new(Idp)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/DeactivateIdpConfig", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) ReactivateIdpConfig(ctx context.Context, in *IdpID, opts ...grpc.CallOption) (*Idp, error) {
|
|
out := new(Idp)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ReactivateIdpConfig", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) RemoveIdpConfig(ctx context.Context, in *IdpID, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/RemoveIdpConfig", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UpdateOidcIdpConfig(ctx context.Context, in *OidcIdpConfigUpdate, opts ...grpc.CallOption) (*OidcIdpConfig, error) {
|
|
out := new(OidcIdpConfig)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UpdateOidcIdpConfig", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) SearchIdps(ctx context.Context, in *IdpSearchRequest, opts ...grpc.CallOption) (*IdpSearchResponse, error) {
|
|
out := new(IdpSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchIdps", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetLoginPolicy(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*LoginPolicyView, error) {
|
|
out := new(LoginPolicyView)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetLoginPolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) CreateLoginPolicy(ctx context.Context, in *LoginPolicyAdd, opts ...grpc.CallOption) (*LoginPolicy, error) {
|
|
out := new(LoginPolicy)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/CreateLoginPolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) UpdateLoginPolicy(ctx context.Context, in *LoginPolicy, opts ...grpc.CallOption) (*LoginPolicy, error) {
|
|
out := new(LoginPolicy)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/UpdateLoginPolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) RemoveLoginPolicy(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/RemoveLoginPolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) GetLoginPolicyIdpProviders(ctx context.Context, in *IdpProviderSearchRequest, opts ...grpc.CallOption) (*IdpProviderSearchResponse, error) {
|
|
out := new(IdpProviderSearchResponse)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/GetLoginPolicyIdpProviders", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) AddIdpProviderToLoginPolicy(ctx context.Context, in *IdpProviderAdd, opts ...grpc.CallOption) (*IdpProvider, error) {
|
|
out := new(IdpProvider)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/AddIdpProviderToLoginPolicy", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *managementServiceClient) RemoveIdpProviderFromLoginPolicy(ctx context.Context, in *IdpProviderID, opts ...grpc.CallOption) (*empty.Empty, error) {
|
|
out := new(empty.Empty)
|
|
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/RemoveIdpProviderFromLoginPolicy", 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)
|
|
IsUserUnique(context.Context, *UniqueUserRequest) (*UniqueUserResponse, error)
|
|
GetUserByID(context.Context, *UserID) (*UserView, error)
|
|
// GetUserByLoginNameGlobal returns User, global search is overall organisations
|
|
GetUserByLoginNameGlobal(context.Context, *LoginName) (*UserView, error)
|
|
// Limit should always be set, there is a default limit set by the service
|
|
SearchUsers(context.Context, *UserSearchRequest) (*UserSearchResponse, error)
|
|
CreateUser(context.Context, *CreateUserRequest) (*UserResponse, error)
|
|
DeactivateUser(context.Context, *UserID) (*UserResponse, error)
|
|
ReactivateUser(context.Context, *UserID) (*UserResponse, error)
|
|
LockUser(context.Context, *UserID) (*UserResponse, error)
|
|
UnlockUser(context.Context, *UserID) (*UserResponse, error)
|
|
DeleteUser(context.Context, *UserID) (*empty.Empty, error)
|
|
// UserChanges returns the event stream of the user object
|
|
UserChanges(context.Context, *ChangeRequest) (*Changes, error)
|
|
AddMachineKey(context.Context, *AddMachineKeyRequest) (*AddMachineKeyResponse, error)
|
|
DeleteMachineKey(context.Context, *MachineKeyIDRequest) (*empty.Empty, error)
|
|
SearchMachineKeys(context.Context, *MachineKeySearchRequest) (*MachineKeySearchResponse, error)
|
|
GetMachineKey(context.Context, *MachineKeyIDRequest) (*MachineKeyView, error)
|
|
GetUserProfile(context.Context, *UserID) (*UserProfileView, error)
|
|
UpdateUserProfile(context.Context, *UpdateUserProfileRequest) (*UserProfile, error)
|
|
GetUserEmail(context.Context, *UserID) (*UserEmailView, error)
|
|
ChangeUserUserName(context.Context, *UpdateUserUserNameRequest) (*empty.Empty, 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)
|
|
UpdateUserMachine(context.Context, *UpdateMachineRequest) (*MachineResponse, error)
|
|
SearchUserExternalIDPs(context.Context, *ExternalIDPSearchRequest) (*ExternalIDPSearchResponse, error)
|
|
RemoveExternalIDP(context.Context, *ExternalIDPRemoveRequest) (*empty.Empty, 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)
|
|
// OrgChanges returns the event stream of the org object
|
|
OrgChanges(context.Context, *ChangeRequest) (*Changes, 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)
|
|
// ProjectChanges returns the event stream of the project object
|
|
ProjectChanges(context.Context, *ChangeRequest) (*Changes, 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)
|
|
// ApplicationChanges returns the event stream of the application object
|
|
ApplicationChanges(context.Context, *ChangeRequest) (*Changes, 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)
|
|
IdpByID(context.Context, *IdpID) (*IdpView, error)
|
|
CreateOidcIdp(context.Context, *OidcIdpConfigCreate) (*Idp, error)
|
|
UpdateIdpConfig(context.Context, *IdpUpdate) (*Idp, error)
|
|
DeactivateIdpConfig(context.Context, *IdpID) (*Idp, error)
|
|
ReactivateIdpConfig(context.Context, *IdpID) (*Idp, error)
|
|
RemoveIdpConfig(context.Context, *IdpID) (*empty.Empty, error)
|
|
UpdateOidcIdpConfig(context.Context, *OidcIdpConfigUpdate) (*OidcIdpConfig, error)
|
|
SearchIdps(context.Context, *IdpSearchRequest) (*IdpSearchResponse, error)
|
|
GetLoginPolicy(context.Context, *empty.Empty) (*LoginPolicyView, error)
|
|
CreateLoginPolicy(context.Context, *LoginPolicyAdd) (*LoginPolicy, error)
|
|
UpdateLoginPolicy(context.Context, *LoginPolicy) (*LoginPolicy, error)
|
|
RemoveLoginPolicy(context.Context, *empty.Empty) (*empty.Empty, error)
|
|
GetLoginPolicyIdpProviders(context.Context, *IdpProviderSearchRequest) (*IdpProviderSearchResponse, error)
|
|
AddIdpProviderToLoginPolicy(context.Context, *IdpProviderAdd) (*IdpProvider, error)
|
|
RemoveIdpProviderFromLoginPolicy(context.Context, *IdpProviderID) (*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) IsUserUnique(ctx context.Context, req *UniqueUserRequest) (*UniqueUserResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method IsUserUnique not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetUserByID(ctx context.Context, req *UserID) (*UserView, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetUserByID not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetUserByLoginNameGlobal(ctx context.Context, req *LoginName) (*UserView, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetUserByLoginNameGlobal not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchUsers(ctx context.Context, req *UserSearchRequest) (*UserSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchUsers not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) CreateUser(ctx context.Context, req *CreateUserRequest) (*UserResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method CreateUser not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) DeactivateUser(ctx context.Context, req *UserID) (*UserResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DeactivateUser not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ReactivateUser(ctx context.Context, req *UserID) (*UserResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReactivateUser not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) LockUser(ctx context.Context, req *UserID) (*UserResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method LockUser not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UnlockUser(ctx context.Context, req *UserID) (*UserResponse, 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) AddMachineKey(ctx context.Context, req *AddMachineKeyRequest) (*AddMachineKeyResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method AddMachineKey not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) DeleteMachineKey(ctx context.Context, req *MachineKeyIDRequest) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DeleteMachineKey not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchMachineKeys(ctx context.Context, req *MachineKeySearchRequest) (*MachineKeySearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchMachineKeys not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetMachineKey(ctx context.Context, req *MachineKeyIDRequest) (*MachineKeyView, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetMachineKey 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) ChangeUserUserName(ctx context.Context, req *UpdateUserUserNameRequest) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ChangeUserUserName 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) UpdateUserMachine(ctx context.Context, req *UpdateMachineRequest) (*MachineResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UpdateUserMachine not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchUserExternalIDPs(ctx context.Context, req *ExternalIDPSearchRequest) (*ExternalIDPSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchUserExternalIDPs not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) RemoveExternalIDP(ctx context.Context, req *ExternalIDPRemoveRequest) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RemoveExternalIDP 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) OrgChanges(ctx context.Context, req *ChangeRequest) (*Changes, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method OrgChanges 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) ProjectChanges(ctx context.Context, req *ChangeRequest) (*Changes, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ProjectChanges 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) ApplicationChanges(ctx context.Context, req *ChangeRequest) (*Changes, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ApplicationChanges 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 (*UnimplementedManagementServiceServer) IdpByID(ctx context.Context, req *IdpID) (*IdpView, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method IdpByID not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) CreateOidcIdp(ctx context.Context, req *OidcIdpConfigCreate) (*Idp, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method CreateOidcIdp not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UpdateIdpConfig(ctx context.Context, req *IdpUpdate) (*Idp, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UpdateIdpConfig not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) DeactivateIdpConfig(ctx context.Context, req *IdpID) (*Idp, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DeactivateIdpConfig not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) ReactivateIdpConfig(ctx context.Context, req *IdpID) (*Idp, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReactivateIdpConfig not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) RemoveIdpConfig(ctx context.Context, req *IdpID) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RemoveIdpConfig not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UpdateOidcIdpConfig(ctx context.Context, req *OidcIdpConfigUpdate) (*OidcIdpConfig, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UpdateOidcIdpConfig not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) SearchIdps(ctx context.Context, req *IdpSearchRequest) (*IdpSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchIdps not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetLoginPolicy(ctx context.Context, req *empty.Empty) (*LoginPolicyView, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetLoginPolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) CreateLoginPolicy(ctx context.Context, req *LoginPolicyAdd) (*LoginPolicy, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method CreateLoginPolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) UpdateLoginPolicy(ctx context.Context, req *LoginPolicy) (*LoginPolicy, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UpdateLoginPolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) RemoveLoginPolicy(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RemoveLoginPolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) GetLoginPolicyIdpProviders(ctx context.Context, req *IdpProviderSearchRequest) (*IdpProviderSearchResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetLoginPolicyIdpProviders not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) AddIdpProviderToLoginPolicy(ctx context.Context, req *IdpProviderAdd) (*IdpProvider, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method AddIdpProviderToLoginPolicy not implemented")
|
|
}
|
|
func (*UnimplementedManagementServiceServer) RemoveIdpProviderFromLoginPolicy(ctx context.Context, req *IdpProviderID) (*empty.Empty, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RemoveIdpProviderFromLoginPolicy 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_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_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_GetUserByLoginNameGlobal_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(LoginName)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetUserByLoginNameGlobal(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetUserByLoginNameGlobal",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetUserByLoginNameGlobal(ctx, req.(*LoginName))
|
|
}
|
|
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_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_AddMachineKey_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(AddMachineKeyRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).AddMachineKey(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/AddMachineKey",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).AddMachineKey(ctx, req.(*AddMachineKeyRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_DeleteMachineKey_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(MachineKeyIDRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).DeleteMachineKey(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/DeleteMachineKey",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).DeleteMachineKey(ctx, req.(*MachineKeyIDRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchMachineKeys_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(MachineKeySearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchMachineKeys(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchMachineKeys",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchMachineKeys(ctx, req.(*MachineKeySearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetMachineKey_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(MachineKeyIDRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetMachineKey(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetMachineKey",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetMachineKey(ctx, req.(*MachineKeyIDRequest))
|
|
}
|
|
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_ChangeUserUserName_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UpdateUserUserNameRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ChangeUserUserName(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ChangeUserUserName",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ChangeUserUserName(ctx, req.(*UpdateUserUserNameRequest))
|
|
}
|
|
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_UpdateUserMachine_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(UpdateMachineRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UpdateUserMachine(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UpdateUserMachine",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UpdateUserMachine(ctx, req.(*UpdateMachineRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchUserExternalIDPs_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ExternalIDPSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchUserExternalIDPs(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchUserExternalIDPs",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchUserExternalIDPs(ctx, req.(*ExternalIDPSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_RemoveExternalIDP_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ExternalIDPRemoveRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).RemoveExternalIDP(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/RemoveExternalIDP",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).RemoveExternalIDP(ctx, req.(*ExternalIDPRemoveRequest))
|
|
}
|
|
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_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_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_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_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_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_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)
|
|
}
|
|
|
|
func _ManagementService_IdpByID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(IdpID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).IdpByID(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/IdpByID",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).IdpByID(ctx, req.(*IdpID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_CreateOidcIdp_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(OidcIdpConfigCreate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).CreateOidcIdp(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/CreateOidcIdp",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).CreateOidcIdp(ctx, req.(*OidcIdpConfigCreate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UpdateIdpConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(IdpUpdate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UpdateIdpConfig(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UpdateIdpConfig",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UpdateIdpConfig(ctx, req.(*IdpUpdate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_DeactivateIdpConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(IdpID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).DeactivateIdpConfig(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/DeactivateIdpConfig",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).DeactivateIdpConfig(ctx, req.(*IdpID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_ReactivateIdpConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(IdpID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).ReactivateIdpConfig(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ReactivateIdpConfig",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).ReactivateIdpConfig(ctx, req.(*IdpID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_RemoveIdpConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(IdpID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).RemoveIdpConfig(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/RemoveIdpConfig",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).RemoveIdpConfig(ctx, req.(*IdpID))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UpdateOidcIdpConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(OidcIdpConfigUpdate)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UpdateOidcIdpConfig(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UpdateOidcIdpConfig",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UpdateOidcIdpConfig(ctx, req.(*OidcIdpConfigUpdate))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_SearchIdps_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(IdpSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).SearchIdps(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/SearchIdps",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).SearchIdps(ctx, req.(*IdpSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetLoginPolicy_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).GetLoginPolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetLoginPolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetLoginPolicy(ctx, req.(*empty.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_CreateLoginPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(LoginPolicyAdd)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).CreateLoginPolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/CreateLoginPolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).CreateLoginPolicy(ctx, req.(*LoginPolicyAdd))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_UpdateLoginPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(LoginPolicy)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).UpdateLoginPolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/UpdateLoginPolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).UpdateLoginPolicy(ctx, req.(*LoginPolicy))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_RemoveLoginPolicy_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).RemoveLoginPolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/RemoveLoginPolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).RemoveLoginPolicy(ctx, req.(*empty.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_GetLoginPolicyIdpProviders_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(IdpProviderSearchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).GetLoginPolicyIdpProviders(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/GetLoginPolicyIdpProviders",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).GetLoginPolicyIdpProviders(ctx, req.(*IdpProviderSearchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_AddIdpProviderToLoginPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(IdpProviderAdd)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).AddIdpProviderToLoginPolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/AddIdpProviderToLoginPolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).AddIdpProviderToLoginPolicy(ctx, req.(*IdpProviderAdd))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _ManagementService_RemoveIdpProviderFromLoginPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(IdpProviderID)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ManagementServiceServer).RemoveIdpProviderFromLoginPolicy(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/caos.zitadel.management.api.v1.ManagementService/RemoveIdpProviderFromLoginPolicy",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ManagementServiceServer).RemoveIdpProviderFromLoginPolicy(ctx, req.(*IdpProviderID))
|
|
}
|
|
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: "IsUserUnique",
|
|
Handler: _ManagementService_IsUserUnique_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetUserByID",
|
|
Handler: _ManagementService_GetUserByID_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetUserByLoginNameGlobal",
|
|
Handler: _ManagementService_GetUserByLoginNameGlobal_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchUsers",
|
|
Handler: _ManagementService_SearchUsers_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: "AddMachineKey",
|
|
Handler: _ManagementService_AddMachineKey_Handler,
|
|
},
|
|
{
|
|
MethodName: "DeleteMachineKey",
|
|
Handler: _ManagementService_DeleteMachineKey_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchMachineKeys",
|
|
Handler: _ManagementService_SearchMachineKeys_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetMachineKey",
|
|
Handler: _ManagementService_GetMachineKey_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetUserProfile",
|
|
Handler: _ManagementService_GetUserProfile_Handler,
|
|
},
|
|
{
|
|
MethodName: "UpdateUserProfile",
|
|
Handler: _ManagementService_UpdateUserProfile_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetUserEmail",
|
|
Handler: _ManagementService_GetUserEmail_Handler,
|
|
},
|
|
{
|
|
MethodName: "ChangeUserUserName",
|
|
Handler: _ManagementService_ChangeUserUserName_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: "UpdateUserMachine",
|
|
Handler: _ManagementService_UpdateUserMachine_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchUserExternalIDPs",
|
|
Handler: _ManagementService_SearchUserExternalIDPs_Handler,
|
|
},
|
|
{
|
|
MethodName: "RemoveExternalIDP",
|
|
Handler: _ManagementService_RemoveExternalIDP_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: "OrgChanges",
|
|
Handler: _ManagementService_OrgChanges_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: "ProjectChanges",
|
|
Handler: _ManagementService_ProjectChanges_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: "ApplicationChanges",
|
|
Handler: _ManagementService_ApplicationChanges_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,
|
|
},
|
|
{
|
|
MethodName: "IdpByID",
|
|
Handler: _ManagementService_IdpByID_Handler,
|
|
},
|
|
{
|
|
MethodName: "CreateOidcIdp",
|
|
Handler: _ManagementService_CreateOidcIdp_Handler,
|
|
},
|
|
{
|
|
MethodName: "UpdateIdpConfig",
|
|
Handler: _ManagementService_UpdateIdpConfig_Handler,
|
|
},
|
|
{
|
|
MethodName: "DeactivateIdpConfig",
|
|
Handler: _ManagementService_DeactivateIdpConfig_Handler,
|
|
},
|
|
{
|
|
MethodName: "ReactivateIdpConfig",
|
|
Handler: _ManagementService_ReactivateIdpConfig_Handler,
|
|
},
|
|
{
|
|
MethodName: "RemoveIdpConfig",
|
|
Handler: _ManagementService_RemoveIdpConfig_Handler,
|
|
},
|
|
{
|
|
MethodName: "UpdateOidcIdpConfig",
|
|
Handler: _ManagementService_UpdateOidcIdpConfig_Handler,
|
|
},
|
|
{
|
|
MethodName: "SearchIdps",
|
|
Handler: _ManagementService_SearchIdps_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetLoginPolicy",
|
|
Handler: _ManagementService_GetLoginPolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "CreateLoginPolicy",
|
|
Handler: _ManagementService_CreateLoginPolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "UpdateLoginPolicy",
|
|
Handler: _ManagementService_UpdateLoginPolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "RemoveLoginPolicy",
|
|
Handler: _ManagementService_RemoveLoginPolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetLoginPolicyIdpProviders",
|
|
Handler: _ManagementService_GetLoginPolicyIdpProviders_Handler,
|
|
},
|
|
{
|
|
MethodName: "AddIdpProviderToLoginPolicy",
|
|
Handler: _ManagementService_AddIdpProviderToLoginPolicy_Handler,
|
|
},
|
|
{
|
|
MethodName: "RemoveIdpProviderFromLoginPolicy",
|
|
Handler: _ManagementService_RemoveIdpProviderFromLoginPolicy_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "management.proto",
|
|
}
|