Documentation ¶
Index ¶
- Variables
- type IsReachedQuery
- type Milestone
- func (*Milestone) Descriptor() ([]byte, []int)deprecated
- func (x *Milestone) GetReachedDate() *timestamppb.Timestamp
- func (x *Milestone) GetType() MilestoneType
- func (*Milestone) ProtoMessage()
- func (x *Milestone) ProtoReflect() protoreflect.Message
- func (x *Milestone) Reset()
- func (x *Milestone) String() string
- type MilestoneFieldName
- func (MilestoneFieldName) Descriptor() protoreflect.EnumDescriptor
- func (x MilestoneFieldName) Enum() *MilestoneFieldName
- func (MilestoneFieldName) EnumDescriptor() ([]byte, []int)deprecated
- func (x MilestoneFieldName) Number() protoreflect.EnumNumber
- func (x MilestoneFieldName) String() string
- func (MilestoneFieldName) Type() protoreflect.EnumType
- type MilestoneQuery
- func (*MilestoneQuery) Descriptor() ([]byte, []int)deprecated
- func (x *MilestoneQuery) GetIsReachedQuery() *IsReachedQuery
- func (m *MilestoneQuery) GetQuery() isMilestoneQuery_Query
- func (*MilestoneQuery) ProtoMessage()
- func (x *MilestoneQuery) ProtoReflect() protoreflect.Message
- func (x *MilestoneQuery) Reset()
- func (x *MilestoneQuery) String() string
- type MilestoneQuery_IsReachedQuery
- type MilestoneType
- func (MilestoneType) Descriptor() protoreflect.EnumDescriptor
- func (x MilestoneType) Enum() *MilestoneType
- func (MilestoneType) EnumDescriptor() ([]byte, []int)deprecated
- func (x MilestoneType) Number() protoreflect.EnumNumber
- func (x MilestoneType) String() string
- func (MilestoneType) Type() protoreflect.EnumType
Constants ¶
This section is empty.
Variables ¶
View Source
var ( MilestoneType_name = map[int32]string{ 0: "MILESTONE_TYPE_UNSPECIFIED", 1: "MILESTONE_TYPE_INSTANCE_CREATED", 2: "MILESTONE_TYPE_AUTHENTICATION_SUCCEEDED_ON_INSTANCE", 3: "MILESTONE_TYPE_PROJECT_CREATED", 4: "MILESTONE_TYPE_APPLICATION_CREATED", 5: "MILESTONE_TYPE_AUTHENTICATION_SUCCEEDED_ON_APPLICATION", 6: "MILESTONE_TYPE_INSTANCE_DELETED", } MilestoneType_value = map[string]int32{ "MILESTONE_TYPE_UNSPECIFIED": 0, "MILESTONE_TYPE_INSTANCE_CREATED": 1, "MILESTONE_TYPE_AUTHENTICATION_SUCCEEDED_ON_INSTANCE": 2, "MILESTONE_TYPE_PROJECT_CREATED": 3, "MILESTONE_TYPE_APPLICATION_CREATED": 4, "MILESTONE_TYPE_AUTHENTICATION_SUCCEEDED_ON_APPLICATION": 5, "MILESTONE_TYPE_INSTANCE_DELETED": 6, } )
Enum value maps for MilestoneType.
View Source
var ( MilestoneFieldName_name = map[int32]string{ 0: "MILESTONE_FIELD_NAME_UNSPECIFIED", 1: "MILESTONE_FIELD_NAME_TYPE", 2: "MILESTONE_FIELD_NAME_REACHED_DATE", } MilestoneFieldName_value = map[string]int32{ "MILESTONE_FIELD_NAME_UNSPECIFIED": 0, "MILESTONE_FIELD_NAME_TYPE": 1, "MILESTONE_FIELD_NAME_REACHED_DATE": 2, } )
Enum value maps for MilestoneFieldName.
View Source
var File_zitadel_milestone_v1_milestone_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type IsReachedQuery ¶
type IsReachedQuery struct { Reached bool `protobuf:"varint,1,opt,name=reached,proto3" json:"reached,omitempty"` // contains filtered or unexported fields }
func (*IsReachedQuery) Descriptor
deprecated
func (*IsReachedQuery) Descriptor() ([]byte, []int)
Deprecated: Use IsReachedQuery.ProtoReflect.Descriptor instead.
func (*IsReachedQuery) GetReached ¶
func (x *IsReachedQuery) GetReached() bool
func (*IsReachedQuery) ProtoMessage ¶
func (*IsReachedQuery) ProtoMessage()
func (*IsReachedQuery) ProtoReflect ¶
func (x *IsReachedQuery) ProtoReflect() protoreflect.Message
func (*IsReachedQuery) Reset ¶
func (x *IsReachedQuery) Reset()
func (*IsReachedQuery) String ¶
func (x *IsReachedQuery) String() string
type Milestone ¶
type Milestone struct { Type MilestoneType `protobuf:"varint,2,opt,name=type,proto3,enum=zitadel.milestone.v1.MilestoneType" json:"type,omitempty"` ReachedDate *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=reached_date,json=reachedDate,proto3" json:"reached_date,omitempty"` // contains filtered or unexported fields }
func (*Milestone) Descriptor
deprecated
func (*Milestone) GetReachedDate ¶
func (x *Milestone) GetReachedDate() *timestamppb.Timestamp
func (*Milestone) GetType ¶
func (x *Milestone) GetType() MilestoneType
func (*Milestone) ProtoMessage ¶
func (*Milestone) ProtoMessage()
func (*Milestone) ProtoReflect ¶
func (x *Milestone) ProtoReflect() protoreflect.Message
type MilestoneFieldName ¶
type MilestoneFieldName int32
const ( MilestoneFieldName_MILESTONE_FIELD_NAME_UNSPECIFIED MilestoneFieldName = 0 MilestoneFieldName_MILESTONE_FIELD_NAME_TYPE MilestoneFieldName = 1 MilestoneFieldName_MILESTONE_FIELD_NAME_REACHED_DATE MilestoneFieldName = 2 )
func (MilestoneFieldName) Descriptor ¶
func (MilestoneFieldName) Descriptor() protoreflect.EnumDescriptor
func (MilestoneFieldName) Enum ¶
func (x MilestoneFieldName) Enum() *MilestoneFieldName
func (MilestoneFieldName) EnumDescriptor
deprecated
func (MilestoneFieldName) EnumDescriptor() ([]byte, []int)
Deprecated: Use MilestoneFieldName.Descriptor instead.
func (MilestoneFieldName) Number ¶
func (x MilestoneFieldName) Number() protoreflect.EnumNumber
func (MilestoneFieldName) String ¶
func (x MilestoneFieldName) String() string
func (MilestoneFieldName) Type ¶
func (MilestoneFieldName) Type() protoreflect.EnumType
type MilestoneQuery ¶
type MilestoneQuery struct { // Types that are assignable to Query: // // *MilestoneQuery_IsReachedQuery Query isMilestoneQuery_Query `protobuf_oneof:"query"` // contains filtered or unexported fields }
func (*MilestoneQuery) Descriptor
deprecated
func (*MilestoneQuery) Descriptor() ([]byte, []int)
Deprecated: Use MilestoneQuery.ProtoReflect.Descriptor instead.
func (*MilestoneQuery) GetIsReachedQuery ¶
func (x *MilestoneQuery) GetIsReachedQuery() *IsReachedQuery
func (*MilestoneQuery) GetQuery ¶
func (m *MilestoneQuery) GetQuery() isMilestoneQuery_Query
func (*MilestoneQuery) ProtoMessage ¶
func (*MilestoneQuery) ProtoMessage()
func (*MilestoneQuery) ProtoReflect ¶
func (x *MilestoneQuery) ProtoReflect() protoreflect.Message
func (*MilestoneQuery) Reset ¶
func (x *MilestoneQuery) Reset()
func (*MilestoneQuery) String ¶
func (x *MilestoneQuery) String() string
type MilestoneQuery_IsReachedQuery ¶
type MilestoneQuery_IsReachedQuery struct {
IsReachedQuery *IsReachedQuery `protobuf:"bytes,1,opt,name=is_reached_query,json=isReachedQuery,proto3,oneof"`
}
type MilestoneType ¶
type MilestoneType int32
const ( MilestoneType_MILESTONE_TYPE_UNSPECIFIED MilestoneType = 0 MilestoneType_MILESTONE_TYPE_INSTANCE_CREATED MilestoneType = 1 MilestoneType_MILESTONE_TYPE_AUTHENTICATION_SUCCEEDED_ON_INSTANCE MilestoneType = 2 MilestoneType_MILESTONE_TYPE_PROJECT_CREATED MilestoneType = 3 MilestoneType_MILESTONE_TYPE_APPLICATION_CREATED MilestoneType = 4 MilestoneType_MILESTONE_TYPE_AUTHENTICATION_SUCCEEDED_ON_APPLICATION MilestoneType = 5 MilestoneType_MILESTONE_TYPE_INSTANCE_DELETED MilestoneType = 6 )
func (MilestoneType) Descriptor ¶
func (MilestoneType) Descriptor() protoreflect.EnumDescriptor
func (MilestoneType) Enum ¶
func (x MilestoneType) Enum() *MilestoneType
func (MilestoneType) EnumDescriptor
deprecated
func (MilestoneType) EnumDescriptor() ([]byte, []int)
Deprecated: Use MilestoneType.Descriptor instead.
func (MilestoneType) Number ¶
func (x MilestoneType) Number() protoreflect.EnumNumber
func (MilestoneType) String ¶
func (x MilestoneType) String() string
func (MilestoneType) Type ¶
func (MilestoneType) Type() protoreflect.EnumType
Click to show internal directories.
Click to hide internal directories.