auditlog

package
v0.0.0-...-0d6d9b2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 26, 2024 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ListAuditLogsRequest_OrderBy_name = map[int32]string{
		0: "DEFAULT",
		1: "TIMESTAMP",
	}
	ListAuditLogsRequest_OrderBy_value = map[string]int32{
		"DEFAULT":   0,
		"TIMESTAMP": 1,
	}
)

Enum value maps for ListAuditLogsRequest_OrderBy.

View Source
var (
	ListAuditLogsRequest_OrderDirection_name = map[int32]string{
		0: "DESC",
		1: "ASC",
	}
	ListAuditLogsRequest_OrderDirection_value = map[string]int32{
		"DESC": 0,
		"ASC":  1,
	}
)

Enum value maps for ListAuditLogsRequest_OrderDirection.

View Source
var (
	ListAdminAuditLogsRequest_OrderBy_name = map[int32]string{
		0: "DEFAULT",
		1: "TIMESTAMP",
	}
	ListAdminAuditLogsRequest_OrderBy_value = map[string]int32{
		"DEFAULT":   0,
		"TIMESTAMP": 1,
	}
)

Enum value maps for ListAdminAuditLogsRequest_OrderBy.

View Source
var (
	ListAdminAuditLogsRequest_OrderDirection_name = map[int32]string{
		0: "DESC",
		1: "ASC",
	}
	ListAdminAuditLogsRequest_OrderDirection_value = map[string]int32{
		"DESC": 0,
		"ASC":  1,
	}
)

Enum value maps for ListAdminAuditLogsRequest_OrderDirection.

View Source
var (
	ListFeatureHistoryRequest_OrderBy_name = map[int32]string{
		0: "DEFAULT",
		1: "TIMESTAMP",
	}
	ListFeatureHistoryRequest_OrderBy_value = map[string]int32{
		"DEFAULT":   0,
		"TIMESTAMP": 1,
	}
)

Enum value maps for ListFeatureHistoryRequest_OrderBy.

View Source
var (
	ListFeatureHistoryRequest_OrderDirection_name = map[int32]string{
		0: "DESC",
		1: "ASC",
	}
	ListFeatureHistoryRequest_OrderDirection_value = map[string]int32{
		"DESC": 0,
		"ASC":  1,
	}
)

Enum value maps for ListFeatureHistoryRequest_OrderDirection.

View Source
var File_proto_auditlog_auditlog_proto protoreflect.FileDescriptor
View Source
var File_proto_auditlog_service_proto protoreflect.FileDescriptor

Functions

func RegisterAuditLogServiceServer

func RegisterAuditLogServiceServer(s *grpc.Server, srv AuditLogServiceServer)

Types

type AuditLog

type AuditLog struct {
	Id               string                   `protobuf:"bytes,1,opt,name=id,proto3" json:"id"`
	Timestamp        int64                    `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp"`
	EntityType       domain.Event_EntityType  `` /* 127-byte string literal not displayed */
	EntityId         string                   `protobuf:"bytes,4,opt,name=entity_id,json=entityId,proto3" json:"entity_id"`
	Type             domain.Event_Type        `protobuf:"varint,5,opt,name=type,proto3,enum=bucketeer.event.domain.Event_Type" json:"type"`
	Event            *anypb.Any               `protobuf:"bytes,6,opt,name=event,proto3" json:"event"`
	Editor           *domain.Editor           `protobuf:"bytes,7,opt,name=editor,proto3" json:"editor"`
	Options          *domain.Options          `protobuf:"bytes,8,opt,name=options,proto3" json:"options"`
	LocalizedMessage *domain.LocalizedMessage `protobuf:"bytes,9,opt,name=localized_message,json=localizedMessage,proto3" json:"localized_message"`
	// contains filtered or unexported fields
}

func (*AuditLog) Descriptor deprecated

func (*AuditLog) Descriptor() ([]byte, []int)

Deprecated: Use AuditLog.ProtoReflect.Descriptor instead.

func (*AuditLog) GetEditor

func (x *AuditLog) GetEditor() *domain.Editor

func (*AuditLog) GetEntityId

func (x *AuditLog) GetEntityId() string

func (*AuditLog) GetEntityType

func (x *AuditLog) GetEntityType() domain.Event_EntityType

func (*AuditLog) GetEvent

func (x *AuditLog) GetEvent() *anypb.Any

func (*AuditLog) GetId

func (x *AuditLog) GetId() string

func (*AuditLog) GetLocalizedMessage

func (x *AuditLog) GetLocalizedMessage() *domain.LocalizedMessage

func (*AuditLog) GetOptions

func (x *AuditLog) GetOptions() *domain.Options

func (*AuditLog) GetTimestamp

func (x *AuditLog) GetTimestamp() int64

func (*AuditLog) GetType

func (x *AuditLog) GetType() domain.Event_Type

func (*AuditLog) ProtoMessage

func (*AuditLog) ProtoMessage()

func (*AuditLog) ProtoReflect

func (x *AuditLog) ProtoReflect() protoreflect.Message

func (*AuditLog) Reset

func (x *AuditLog) Reset()

func (*AuditLog) String

func (x *AuditLog) String() string

type AuditLogServiceClient

type AuditLogServiceClient interface {
	ListAuditLogs(ctx context.Context, in *ListAuditLogsRequest, opts ...grpc.CallOption) (*ListAuditLogsResponse, error)
	ListAdminAuditLogs(ctx context.Context, in *ListAdminAuditLogsRequest, opts ...grpc.CallOption) (*ListAdminAuditLogsResponse, error)
	ListFeatureHistory(ctx context.Context, in *ListFeatureHistoryRequest, opts ...grpc.CallOption) (*ListFeatureHistoryResponse, error)
}

AuditLogServiceClient is the client API for AuditLogService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

type AuditLogServiceServer

AuditLogServiceServer is the server API for AuditLogService service.

type ListAdminAuditLogsRequest

type ListAdminAuditLogsRequest struct {
	PageSize       int64                                    `protobuf:"varint,1,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
	Cursor         string                                   `protobuf:"bytes,2,opt,name=cursor,proto3" json:"cursor"`
	OrderBy        ListAdminAuditLogsRequest_OrderBy        `` /* 131-byte string literal not displayed */
	OrderDirection ListAdminAuditLogsRequest_OrderDirection `` /* 159-byte string literal not displayed */
	SearchKeyword  string                                   `protobuf:"bytes,5,opt,name=search_keyword,json=searchKeyword,proto3" json:"search_keyword"`
	From           int64                                    `protobuf:"varint,6,opt,name=from,proto3" json:"from"`
	To             int64                                    `protobuf:"varint,7,opt,name=to,proto3" json:"to"`
	EntityType     *wrapperspb.Int32Value                   `protobuf:"bytes,8,opt,name=entity_type,json=entityType,proto3" json:"entity_type"`
	// contains filtered or unexported fields
}

func (*ListAdminAuditLogsRequest) Descriptor deprecated

func (*ListAdminAuditLogsRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListAdminAuditLogsRequest.ProtoReflect.Descriptor instead.

func (*ListAdminAuditLogsRequest) GetCursor

func (x *ListAdminAuditLogsRequest) GetCursor() string

func (*ListAdminAuditLogsRequest) GetEntityType

func (x *ListAdminAuditLogsRequest) GetEntityType() *wrapperspb.Int32Value

func (*ListAdminAuditLogsRequest) GetFrom

func (x *ListAdminAuditLogsRequest) GetFrom() int64

func (*ListAdminAuditLogsRequest) GetOrderBy

func (*ListAdminAuditLogsRequest) GetOrderDirection

func (*ListAdminAuditLogsRequest) GetPageSize

func (x *ListAdminAuditLogsRequest) GetPageSize() int64

func (*ListAdminAuditLogsRequest) GetSearchKeyword

func (x *ListAdminAuditLogsRequest) GetSearchKeyword() string

func (*ListAdminAuditLogsRequest) GetTo

func (x *ListAdminAuditLogsRequest) GetTo() int64

func (*ListAdminAuditLogsRequest) ProtoMessage

func (*ListAdminAuditLogsRequest) ProtoMessage()

func (*ListAdminAuditLogsRequest) ProtoReflect

func (*ListAdminAuditLogsRequest) Reset

func (x *ListAdminAuditLogsRequest) Reset()

func (*ListAdminAuditLogsRequest) String

func (x *ListAdminAuditLogsRequest) String() string

type ListAdminAuditLogsRequest_OrderBy

type ListAdminAuditLogsRequest_OrderBy int32
const (
	ListAdminAuditLogsRequest_DEFAULT   ListAdminAuditLogsRequest_OrderBy = 0
	ListAdminAuditLogsRequest_TIMESTAMP ListAdminAuditLogsRequest_OrderBy = 1
)

func (ListAdminAuditLogsRequest_OrderBy) Descriptor

func (ListAdminAuditLogsRequest_OrderBy) Enum

func (ListAdminAuditLogsRequest_OrderBy) EnumDescriptor deprecated

func (ListAdminAuditLogsRequest_OrderBy) EnumDescriptor() ([]byte, []int)

Deprecated: Use ListAdminAuditLogsRequest_OrderBy.Descriptor instead.

func (ListAdminAuditLogsRequest_OrderBy) Number

func (ListAdminAuditLogsRequest_OrderBy) String

func (ListAdminAuditLogsRequest_OrderBy) Type

type ListAdminAuditLogsRequest_OrderDirection

type ListAdminAuditLogsRequest_OrderDirection int32
const (
	ListAdminAuditLogsRequest_DESC ListAdminAuditLogsRequest_OrderDirection = 0
	ListAdminAuditLogsRequest_ASC  ListAdminAuditLogsRequest_OrderDirection = 1
)

func (ListAdminAuditLogsRequest_OrderDirection) Descriptor

func (ListAdminAuditLogsRequest_OrderDirection) Enum

func (ListAdminAuditLogsRequest_OrderDirection) EnumDescriptor deprecated

func (ListAdminAuditLogsRequest_OrderDirection) EnumDescriptor() ([]byte, []int)

Deprecated: Use ListAdminAuditLogsRequest_OrderDirection.Descriptor instead.

func (ListAdminAuditLogsRequest_OrderDirection) Number

func (ListAdminAuditLogsRequest_OrderDirection) String

func (ListAdminAuditLogsRequest_OrderDirection) Type

type ListAdminAuditLogsResponse

type ListAdminAuditLogsResponse struct {
	AuditLogs  []*AuditLog `protobuf:"bytes,1,rep,name=audit_logs,json=auditLogs,proto3" json:"audit_logs"`
	Cursor     string      `protobuf:"bytes,2,opt,name=cursor,proto3" json:"cursor"`
	TotalCount int64       `protobuf:"varint,3,opt,name=total_count,json=totalCount,proto3" json:"total_count"`
	// contains filtered or unexported fields
}

func (*ListAdminAuditLogsResponse) Descriptor deprecated

func (*ListAdminAuditLogsResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListAdminAuditLogsResponse.ProtoReflect.Descriptor instead.

func (*ListAdminAuditLogsResponse) GetAuditLogs

func (x *ListAdminAuditLogsResponse) GetAuditLogs() []*AuditLog

func (*ListAdminAuditLogsResponse) GetCursor

func (x *ListAdminAuditLogsResponse) GetCursor() string

func (*ListAdminAuditLogsResponse) GetTotalCount

func (x *ListAdminAuditLogsResponse) GetTotalCount() int64

func (*ListAdminAuditLogsResponse) ProtoMessage

func (*ListAdminAuditLogsResponse) ProtoMessage()

func (*ListAdminAuditLogsResponse) ProtoReflect

func (*ListAdminAuditLogsResponse) Reset

func (x *ListAdminAuditLogsResponse) Reset()

func (*ListAdminAuditLogsResponse) String

func (x *ListAdminAuditLogsResponse) String() string

type ListAuditLogsRequest

type ListAuditLogsRequest struct {
	PageSize             int64                               `protobuf:"varint,1,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
	Cursor               string                              `protobuf:"bytes,2,opt,name=cursor,proto3" json:"cursor"`
	EnvironmentNamespace string                              `protobuf:"bytes,3,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	OrderBy              ListAuditLogsRequest_OrderBy        `` /* 126-byte string literal not displayed */
	OrderDirection       ListAuditLogsRequest_OrderDirection `` /* 154-byte string literal not displayed */
	SearchKeyword        string                              `protobuf:"bytes,6,opt,name=search_keyword,json=searchKeyword,proto3" json:"search_keyword"`
	From                 int64                               `protobuf:"varint,7,opt,name=from,proto3" json:"from"`
	To                   int64                               `protobuf:"varint,8,opt,name=to,proto3" json:"to"`
	EntityType           *wrapperspb.Int32Value              `protobuf:"bytes,9,opt,name=entity_type,json=entityType,proto3" json:"entity_type"`
	// contains filtered or unexported fields
}

func (*ListAuditLogsRequest) Descriptor deprecated

func (*ListAuditLogsRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListAuditLogsRequest.ProtoReflect.Descriptor instead.

func (*ListAuditLogsRequest) GetCursor

func (x *ListAuditLogsRequest) GetCursor() string

func (*ListAuditLogsRequest) GetEntityType

func (x *ListAuditLogsRequest) GetEntityType() *wrapperspb.Int32Value

func (*ListAuditLogsRequest) GetEnvironmentNamespace

func (x *ListAuditLogsRequest) GetEnvironmentNamespace() string

func (*ListAuditLogsRequest) GetFrom

func (x *ListAuditLogsRequest) GetFrom() int64

func (*ListAuditLogsRequest) GetOrderBy

func (*ListAuditLogsRequest) GetOrderDirection

func (*ListAuditLogsRequest) GetPageSize

func (x *ListAuditLogsRequest) GetPageSize() int64

func (*ListAuditLogsRequest) GetSearchKeyword

func (x *ListAuditLogsRequest) GetSearchKeyword() string

func (*ListAuditLogsRequest) GetTo

func (x *ListAuditLogsRequest) GetTo() int64

func (*ListAuditLogsRequest) ProtoMessage

func (*ListAuditLogsRequest) ProtoMessage()

func (*ListAuditLogsRequest) ProtoReflect

func (x *ListAuditLogsRequest) ProtoReflect() protoreflect.Message

func (*ListAuditLogsRequest) Reset

func (x *ListAuditLogsRequest) Reset()

func (*ListAuditLogsRequest) String

func (x *ListAuditLogsRequest) String() string

type ListAuditLogsRequest_OrderBy

type ListAuditLogsRequest_OrderBy int32
const (
	ListAuditLogsRequest_DEFAULT   ListAuditLogsRequest_OrderBy = 0
	ListAuditLogsRequest_TIMESTAMP ListAuditLogsRequest_OrderBy = 1
)

func (ListAuditLogsRequest_OrderBy) Descriptor

func (ListAuditLogsRequest_OrderBy) Enum

func (ListAuditLogsRequest_OrderBy) EnumDescriptor deprecated

func (ListAuditLogsRequest_OrderBy) EnumDescriptor() ([]byte, []int)

Deprecated: Use ListAuditLogsRequest_OrderBy.Descriptor instead.

func (ListAuditLogsRequest_OrderBy) Number

func (ListAuditLogsRequest_OrderBy) String

func (ListAuditLogsRequest_OrderBy) Type

type ListAuditLogsRequest_OrderDirection

type ListAuditLogsRequest_OrderDirection int32
const (
	ListAuditLogsRequest_DESC ListAuditLogsRequest_OrderDirection = 0
	ListAuditLogsRequest_ASC  ListAuditLogsRequest_OrderDirection = 1
)

func (ListAuditLogsRequest_OrderDirection) Descriptor

func (ListAuditLogsRequest_OrderDirection) Enum

func (ListAuditLogsRequest_OrderDirection) EnumDescriptor deprecated

func (ListAuditLogsRequest_OrderDirection) EnumDescriptor() ([]byte, []int)

Deprecated: Use ListAuditLogsRequest_OrderDirection.Descriptor instead.

func (ListAuditLogsRequest_OrderDirection) Number

func (ListAuditLogsRequest_OrderDirection) String

func (ListAuditLogsRequest_OrderDirection) Type

type ListAuditLogsResponse

type ListAuditLogsResponse struct {
	AuditLogs  []*AuditLog `protobuf:"bytes,1,rep,name=audit_logs,json=auditLogs,proto3" json:"audit_logs"`
	Cursor     string      `protobuf:"bytes,2,opt,name=cursor,proto3" json:"cursor"`
	TotalCount int64       `protobuf:"varint,3,opt,name=total_count,json=totalCount,proto3" json:"total_count"`
	// contains filtered or unexported fields
}

func (*ListAuditLogsResponse) Descriptor deprecated

func (*ListAuditLogsResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListAuditLogsResponse.ProtoReflect.Descriptor instead.

func (*ListAuditLogsResponse) GetAuditLogs

func (x *ListAuditLogsResponse) GetAuditLogs() []*AuditLog

func (*ListAuditLogsResponse) GetCursor

func (x *ListAuditLogsResponse) GetCursor() string

func (*ListAuditLogsResponse) GetTotalCount

func (x *ListAuditLogsResponse) GetTotalCount() int64

func (*ListAuditLogsResponse) ProtoMessage

func (*ListAuditLogsResponse) ProtoMessage()

func (*ListAuditLogsResponse) ProtoReflect

func (x *ListAuditLogsResponse) ProtoReflect() protoreflect.Message

func (*ListAuditLogsResponse) Reset

func (x *ListAuditLogsResponse) Reset()

func (*ListAuditLogsResponse) String

func (x *ListAuditLogsResponse) String() string

type ListFeatureHistoryRequest

type ListFeatureHistoryRequest struct {
	FeatureId            string                                   `protobuf:"bytes,1,opt,name=feature_id,json=featureId,proto3" json:"feature_id"`
	PageSize             int64                                    `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
	Cursor               string                                   `protobuf:"bytes,3,opt,name=cursor,proto3" json:"cursor"`
	EnvironmentNamespace string                                   `protobuf:"bytes,4,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	OrderBy              ListFeatureHistoryRequest_OrderBy        `` /* 131-byte string literal not displayed */
	OrderDirection       ListFeatureHistoryRequest_OrderDirection `` /* 159-byte string literal not displayed */
	SearchKeyword        string                                   `protobuf:"bytes,7,opt,name=search_keyword,json=searchKeyword,proto3" json:"search_keyword"`
	From                 int64                                    `protobuf:"varint,8,opt,name=from,proto3" json:"from"`
	To                   int64                                    `protobuf:"varint,9,opt,name=to,proto3" json:"to"`
	// contains filtered or unexported fields
}

func (*ListFeatureHistoryRequest) Descriptor deprecated

func (*ListFeatureHistoryRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListFeatureHistoryRequest.ProtoReflect.Descriptor instead.

func (*ListFeatureHistoryRequest) GetCursor

func (x *ListFeatureHistoryRequest) GetCursor() string

func (*ListFeatureHistoryRequest) GetEnvironmentNamespace

func (x *ListFeatureHistoryRequest) GetEnvironmentNamespace() string

func (*ListFeatureHistoryRequest) GetFeatureId

func (x *ListFeatureHistoryRequest) GetFeatureId() string

func (*ListFeatureHistoryRequest) GetFrom

func (x *ListFeatureHistoryRequest) GetFrom() int64

func (*ListFeatureHistoryRequest) GetOrderBy

func (*ListFeatureHistoryRequest) GetOrderDirection

func (*ListFeatureHistoryRequest) GetPageSize

func (x *ListFeatureHistoryRequest) GetPageSize() int64

func (*ListFeatureHistoryRequest) GetSearchKeyword

func (x *ListFeatureHistoryRequest) GetSearchKeyword() string

func (*ListFeatureHistoryRequest) GetTo

func (x *ListFeatureHistoryRequest) GetTo() int64

func (*ListFeatureHistoryRequest) ProtoMessage

func (*ListFeatureHistoryRequest) ProtoMessage()

func (*ListFeatureHistoryRequest) ProtoReflect

func (*ListFeatureHistoryRequest) Reset

func (x *ListFeatureHistoryRequest) Reset()

func (*ListFeatureHistoryRequest) String

func (x *ListFeatureHistoryRequest) String() string

type ListFeatureHistoryRequest_OrderBy

type ListFeatureHistoryRequest_OrderBy int32
const (
	ListFeatureHistoryRequest_DEFAULT   ListFeatureHistoryRequest_OrderBy = 0
	ListFeatureHistoryRequest_TIMESTAMP ListFeatureHistoryRequest_OrderBy = 1
)

func (ListFeatureHistoryRequest_OrderBy) Descriptor

func (ListFeatureHistoryRequest_OrderBy) Enum

func (ListFeatureHistoryRequest_OrderBy) EnumDescriptor deprecated

func (ListFeatureHistoryRequest_OrderBy) EnumDescriptor() ([]byte, []int)

Deprecated: Use ListFeatureHistoryRequest_OrderBy.Descriptor instead.

func (ListFeatureHistoryRequest_OrderBy) Number

func (ListFeatureHistoryRequest_OrderBy) String

func (ListFeatureHistoryRequest_OrderBy) Type

type ListFeatureHistoryRequest_OrderDirection

type ListFeatureHistoryRequest_OrderDirection int32
const (
	ListFeatureHistoryRequest_DESC ListFeatureHistoryRequest_OrderDirection = 0
	ListFeatureHistoryRequest_ASC  ListFeatureHistoryRequest_OrderDirection = 1
)

func (ListFeatureHistoryRequest_OrderDirection) Descriptor

func (ListFeatureHistoryRequest_OrderDirection) Enum

func (ListFeatureHistoryRequest_OrderDirection) EnumDescriptor deprecated

func (ListFeatureHistoryRequest_OrderDirection) EnumDescriptor() ([]byte, []int)

Deprecated: Use ListFeatureHistoryRequest_OrderDirection.Descriptor instead.

func (ListFeatureHistoryRequest_OrderDirection) Number

func (ListFeatureHistoryRequest_OrderDirection) String

func (ListFeatureHistoryRequest_OrderDirection) Type

type ListFeatureHistoryResponse

type ListFeatureHistoryResponse struct {
	AuditLogs  []*AuditLog `protobuf:"bytes,1,rep,name=audit_logs,json=auditLogs,proto3" json:"audit_logs"`
	Cursor     string      `protobuf:"bytes,2,opt,name=cursor,proto3" json:"cursor"`
	TotalCount int64       `protobuf:"varint,3,opt,name=total_count,json=totalCount,proto3" json:"total_count"`
	// contains filtered or unexported fields
}

func (*ListFeatureHistoryResponse) Descriptor deprecated

func (*ListFeatureHistoryResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListFeatureHistoryResponse.ProtoReflect.Descriptor instead.

func (*ListFeatureHistoryResponse) GetAuditLogs

func (x *ListFeatureHistoryResponse) GetAuditLogs() []*AuditLog

func (*ListFeatureHistoryResponse) GetCursor

func (x *ListFeatureHistoryResponse) GetCursor() string

func (*ListFeatureHistoryResponse) GetTotalCount

func (x *ListFeatureHistoryResponse) GetTotalCount() int64

func (*ListFeatureHistoryResponse) ProtoMessage

func (*ListFeatureHistoryResponse) ProtoMessage()

func (*ListFeatureHistoryResponse) ProtoReflect

func (*ListFeatureHistoryResponse) Reset

func (x *ListFeatureHistoryResponse) Reset()

func (*ListFeatureHistoryResponse) String

func (x *ListFeatureHistoryResponse) String() string

type UnimplementedAuditLogServiceServer

type UnimplementedAuditLogServiceServer struct {
}

UnimplementedAuditLogServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedAuditLogServiceServer) ListAdminAuditLogs

func (*UnimplementedAuditLogServiceServer) ListAuditLogs

func (*UnimplementedAuditLogServiceServer) ListFeatureHistory

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL