corev1alpha1

package
v1.36.11-2023053111370... Latest Latest
Warning

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

Go to latest
Published: unknown License: MIT Imports: 5 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	APIKeyStatus_name = map[int32]string{
		0: "APIKEY_STATUS_UNSPECIFIED",
		1: "APIKEY_STATUS_ACTIVE",
		2: "APIKEY_STATUS_REVOKED",
	}
	APIKeyStatus_value = map[string]int32{
		"APIKEY_STATUS_UNSPECIFIED": 0,
		"APIKEY_STATUS_ACTIVE":      1,
		"APIKEY_STATUS_REVOKED":     2,
	}
)

Enum value maps for APIKeyStatus.

View Source
var (
	TokenType_name = map[int32]string{
		0: "TOKEN_TYPE_UNSPECIFIED",
		1: "TOKEN_TYPE_ACCESS_TOKEN",
		2: "TOKEN_TYPE_REFRESH_TOKEN",
	}
	TokenType_value = map[string]int32{
		"TOKEN_TYPE_UNSPECIFIED":   0,
		"TOKEN_TYPE_ACCESS_TOKEN":  1,
		"TOKEN_TYPE_REFRESH_TOKEN": 2,
	}
)

Enum value maps for TokenType.

View Source
var File_nuntio_core_v1alpha1_core_api_proto protoreflect.FileDescriptor
View Source
var File_nuntio_core_v1alpha1_core_members_proto protoreflect.FileDescriptor
View Source
var File_nuntio_core_v1alpha1_core_messages_proto protoreflect.FileDescriptor
View Source
var File_nuntio_core_v1alpha1_core_projects_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type APIKey

type APIKey struct {
	Id        string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	CreatedAt *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	Secret    string                 `protobuf:"bytes,4,opt,name=secret,proto3" json:"secret,omitempty"`
	ProjectId string                 `protobuf:"bytes,5,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	Mongo     *ApiAccess             `protobuf:"bytes,6,opt,name=mongo,proto3" json:"mongo,omitempty"`
	Postgres  *ApiAccess             `protobuf:"bytes,7,opt,name=postgres,proto3" json:"postgres,omitempty"`
	Storage   *ApiAccess             `protobuf:"bytes,8,opt,name=storage,proto3" json:"storage,omitempty"`
	Users     *ApiAccess             `protobuf:"bytes,9,opt,name=users,proto3" json:"users,omitempty"`
	Name      string                 `protobuf:"bytes,10,opt,name=name,proto3" json:"name,omitempty"`
	Status    APIKeyStatus           `protobuf:"varint,11,opt,name=status,proto3,enum=nuntio.core.v1alpha1.APIKeyStatus" json:"status,omitempty"`
	UsedAt    *timestamppb.Timestamp `protobuf:"bytes,12,opt,name=used_at,json=usedAt,proto3" json:"used_at,omitempty"`
	// contains filtered or unexported fields
}

func (*APIKey) ClearCreatedAt

func (x *APIKey) ClearCreatedAt()

func (*APIKey) ClearMongo

func (x *APIKey) ClearMongo()

func (*APIKey) ClearPostgres

func (x *APIKey) ClearPostgres()

func (*APIKey) ClearStorage

func (x *APIKey) ClearStorage()

func (*APIKey) ClearUpdatedAt

func (x *APIKey) ClearUpdatedAt()

func (*APIKey) ClearUsedAt

func (x *APIKey) ClearUsedAt()

func (*APIKey) ClearUsers

func (x *APIKey) ClearUsers()

func (*APIKey) GetCreatedAt

func (x *APIKey) GetCreatedAt() *timestamppb.Timestamp

func (*APIKey) GetId

func (x *APIKey) GetId() string

func (*APIKey) GetMongo

func (x *APIKey) GetMongo() *ApiAccess

func (*APIKey) GetName

func (x *APIKey) GetName() string

func (*APIKey) GetPostgres

func (x *APIKey) GetPostgres() *ApiAccess

func (*APIKey) GetProjectId

func (x *APIKey) GetProjectId() string

func (*APIKey) GetSecret

func (x *APIKey) GetSecret() string

func (*APIKey) GetStatus

func (x *APIKey) GetStatus() APIKeyStatus

func (*APIKey) GetStorage

func (x *APIKey) GetStorage() *ApiAccess

func (*APIKey) GetUpdatedAt

func (x *APIKey) GetUpdatedAt() *timestamppb.Timestamp

func (*APIKey) GetUsedAt

func (x *APIKey) GetUsedAt() *timestamppb.Timestamp

func (*APIKey) GetUsers

func (x *APIKey) GetUsers() *ApiAccess

func (*APIKey) HasCreatedAt

func (x *APIKey) HasCreatedAt() bool

func (*APIKey) HasMongo

func (x *APIKey) HasMongo() bool

func (*APIKey) HasPostgres

func (x *APIKey) HasPostgres() bool

func (*APIKey) HasStorage

func (x *APIKey) HasStorage() bool

func (*APIKey) HasUpdatedAt

func (x *APIKey) HasUpdatedAt() bool

func (*APIKey) HasUsedAt

func (x *APIKey) HasUsedAt() bool

func (*APIKey) HasUsers

func (x *APIKey) HasUsers() bool

func (*APIKey) ProtoMessage

func (*APIKey) ProtoMessage()

func (*APIKey) ProtoReflect

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

func (*APIKey) Reset

func (x *APIKey) Reset()

func (*APIKey) SetCreatedAt

func (x *APIKey) SetCreatedAt(v *timestamppb.Timestamp)

func (*APIKey) SetId

func (x *APIKey) SetId(v string)

func (*APIKey) SetMongo

func (x *APIKey) SetMongo(v *ApiAccess)

func (*APIKey) SetName

func (x *APIKey) SetName(v string)

func (*APIKey) SetPostgres

func (x *APIKey) SetPostgres(v *ApiAccess)

func (*APIKey) SetProjectId

func (x *APIKey) SetProjectId(v string)

func (*APIKey) SetSecret

func (x *APIKey) SetSecret(v string)

func (*APIKey) SetStatus

func (x *APIKey) SetStatus(v APIKeyStatus)

func (*APIKey) SetStorage

func (x *APIKey) SetStorage(v *ApiAccess)

func (*APIKey) SetUpdatedAt

func (x *APIKey) SetUpdatedAt(v *timestamppb.Timestamp)

func (*APIKey) SetUsedAt

func (x *APIKey) SetUsedAt(v *timestamppb.Timestamp)

func (*APIKey) SetUsers

func (x *APIKey) SetUsers(v *ApiAccess)

func (*APIKey) String

func (x *APIKey) String() string

type APIKeyStatus

type APIKeyStatus int32
const (
	APIKeyStatus_APIKEY_STATUS_UNSPECIFIED APIKeyStatus = 0
	APIKeyStatus_APIKEY_STATUS_ACTIVE      APIKeyStatus = 1
	APIKeyStatus_APIKEY_STATUS_REVOKED     APIKeyStatus = 2
)

func (APIKeyStatus) Descriptor

func (APIKeyStatus) Enum

func (x APIKeyStatus) Enum() *APIKeyStatus

func (APIKeyStatus) Number

func (APIKeyStatus) String

func (x APIKeyStatus) String() string

func (APIKeyStatus) Type

type APIKey_builder

type APIKey_builder struct {
	Id        string
	CreatedAt *timestamppb.Timestamp
	UpdatedAt *timestamppb.Timestamp
	Secret    string
	ProjectId string
	Mongo     *ApiAccess
	Postgres  *ApiAccess
	Storage   *ApiAccess
	Users     *ApiAccess
	Name      string
	Status    APIKeyStatus
	UsedAt    *timestamppb.Timestamp
	// contains filtered or unexported fields
}

func (APIKey_builder) Build

func (b0 APIKey_builder) Build() *APIKey

type APIServiceCreateRequest

type APIServiceCreateRequest struct {

	// the project id related to the api key
	ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	// init mongo access
	ConfigureMongo bool `protobuf:"varint,2,opt,name=configure_mongo,json=configureMongo,proto3" json:"configure_mongo,omitempty"`
	// init postgres access
	ConfigurePostgres bool `protobuf:"varint,3,opt,name=configure_postgres,json=configurePostgres,proto3" json:"configure_postgres,omitempty"`
	// init storage access
	ConfigureStorage bool `protobuf:"varint,4,opt,name=configure_storage,json=configureStorage,proto3" json:"configure_storage,omitempty"`
	// init users access
	ConfigureUsers bool `protobuf:"varint,5,opt,name=configure_users,json=configureUsers,proto3" json:"configure_users,omitempty"`
	// the name of the api key
	Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

The request of a API.CreateAPIKey RPC

func (*APIServiceCreateRequest) GetConfigureMongo

func (x *APIServiceCreateRequest) GetConfigureMongo() bool

func (*APIServiceCreateRequest) GetConfigurePostgres

func (x *APIServiceCreateRequest) GetConfigurePostgres() bool

func (*APIServiceCreateRequest) GetConfigureStorage

func (x *APIServiceCreateRequest) GetConfigureStorage() bool

func (*APIServiceCreateRequest) GetConfigureUsers

func (x *APIServiceCreateRequest) GetConfigureUsers() bool

func (*APIServiceCreateRequest) GetName

func (x *APIServiceCreateRequest) GetName() string

func (*APIServiceCreateRequest) GetProjectId

func (x *APIServiceCreateRequest) GetProjectId() string

func (*APIServiceCreateRequest) ProtoMessage

func (*APIServiceCreateRequest) ProtoMessage()

func (*APIServiceCreateRequest) ProtoReflect

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

func (*APIServiceCreateRequest) Reset

func (x *APIServiceCreateRequest) Reset()

func (*APIServiceCreateRequest) SetConfigureMongo

func (x *APIServiceCreateRequest) SetConfigureMongo(v bool)

func (*APIServiceCreateRequest) SetConfigurePostgres

func (x *APIServiceCreateRequest) SetConfigurePostgres(v bool)

func (*APIServiceCreateRequest) SetConfigureStorage

func (x *APIServiceCreateRequest) SetConfigureStorage(v bool)

func (*APIServiceCreateRequest) SetConfigureUsers

func (x *APIServiceCreateRequest) SetConfigureUsers(v bool)

func (*APIServiceCreateRequest) SetName

func (x *APIServiceCreateRequest) SetName(v string)

func (*APIServiceCreateRequest) SetProjectId

func (x *APIServiceCreateRequest) SetProjectId(v string)

func (*APIServiceCreateRequest) String

func (x *APIServiceCreateRequest) String() string

type APIServiceCreateRequest_builder

type APIServiceCreateRequest_builder struct {

	// the project id related to the api key
	ProjectId string
	// init mongo access
	ConfigureMongo bool
	// init postgres access
	ConfigurePostgres bool
	// init storage access
	ConfigureStorage bool
	// init users access
	ConfigureUsers bool
	// the name of the api key
	Name string
	// contains filtered or unexported fields
}

func (APIServiceCreateRequest_builder) Build

type APIServiceCreateResponse

type APIServiceCreateResponse struct {
	ApiKey *APIKey `protobuf:"bytes,1,opt,name=api_key,json=apiKey,proto3" json:"api_key,omitempty"`
	// contains filtered or unexported fields
}

The response of a API.CreateAPIKey RPC

func (*APIServiceCreateResponse) ClearApiKey

func (x *APIServiceCreateResponse) ClearApiKey()

func (*APIServiceCreateResponse) GetApiKey

func (x *APIServiceCreateResponse) GetApiKey() *APIKey

func (*APIServiceCreateResponse) HasApiKey

func (x *APIServiceCreateResponse) HasApiKey() bool

func (*APIServiceCreateResponse) ProtoMessage

func (*APIServiceCreateResponse) ProtoMessage()

func (*APIServiceCreateResponse) ProtoReflect

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

func (*APIServiceCreateResponse) Reset

func (x *APIServiceCreateResponse) Reset()

func (*APIServiceCreateResponse) SetApiKey

func (x *APIServiceCreateResponse) SetApiKey(v *APIKey)

func (*APIServiceCreateResponse) String

func (x *APIServiceCreateResponse) String() string

type APIServiceCreateResponse_builder

type APIServiceCreateResponse_builder struct {
	ApiKey *APIKey
	// contains filtered or unexported fields
}

func (APIServiceCreateResponse_builder) Build

type APIServiceDeleteAllRequest

type APIServiceDeleteAllRequest struct {

	// the project id related to the api key
	ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	// contains filtered or unexported fields
}

The request of a API.DeleteAllAPIKey RPC

func (*APIServiceDeleteAllRequest) GetProjectId

func (x *APIServiceDeleteAllRequest) GetProjectId() string

func (*APIServiceDeleteAllRequest) ProtoMessage

func (*APIServiceDeleteAllRequest) ProtoMessage()

func (*APIServiceDeleteAllRequest) ProtoReflect

func (*APIServiceDeleteAllRequest) Reset

func (x *APIServiceDeleteAllRequest) Reset()

func (*APIServiceDeleteAllRequest) SetProjectId

func (x *APIServiceDeleteAllRequest) SetProjectId(v string)

func (*APIServiceDeleteAllRequest) String

func (x *APIServiceDeleteAllRequest) String() string

type APIServiceDeleteAllRequest_builder

type APIServiceDeleteAllRequest_builder struct {

	// the project id related to the api key
	ProjectId string
	// contains filtered or unexported fields
}

func (APIServiceDeleteAllRequest_builder) Build

type APIServiceDeleteAllResponse

type APIServiceDeleteAllResponse struct {
	// contains filtered or unexported fields
}

The response of a API.DeleteAllAPIKey RPC

func (*APIServiceDeleteAllResponse) ProtoMessage

func (*APIServiceDeleteAllResponse) ProtoMessage()

func (*APIServiceDeleteAllResponse) ProtoReflect

func (*APIServiceDeleteAllResponse) Reset

func (x *APIServiceDeleteAllResponse) Reset()

func (*APIServiceDeleteAllResponse) String

func (x *APIServiceDeleteAllResponse) String() string

type APIServiceDeleteAllResponse_builder

type APIServiceDeleteAllResponse_builder struct {
	// contains filtered or unexported fields
}

func (APIServiceDeleteAllResponse_builder) Build

type APIServiceDeleteRequest

type APIServiceDeleteRequest struct {

	// the id of the api key
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

The request of a API.DeleteAPIKey RPC

func (*APIServiceDeleteRequest) GetId

func (x *APIServiceDeleteRequest) GetId() string

func (*APIServiceDeleteRequest) ProtoMessage

func (*APIServiceDeleteRequest) ProtoMessage()

func (*APIServiceDeleteRequest) ProtoReflect

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

func (*APIServiceDeleteRequest) Reset

func (x *APIServiceDeleteRequest) Reset()

func (*APIServiceDeleteRequest) SetId

func (x *APIServiceDeleteRequest) SetId(v string)

func (*APIServiceDeleteRequest) String

func (x *APIServiceDeleteRequest) String() string

type APIServiceDeleteRequest_builder

type APIServiceDeleteRequest_builder struct {

	// the id of the api key
	Id string
	// contains filtered or unexported fields
}

func (APIServiceDeleteRequest_builder) Build

type APIServiceDeleteResponse

type APIServiceDeleteResponse struct {

	// the id of the api key
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

The response of a API.DeleteAPIKey RPC

func (*APIServiceDeleteResponse) GetId

func (x *APIServiceDeleteResponse) GetId() string

func (*APIServiceDeleteResponse) ProtoMessage

func (*APIServiceDeleteResponse) ProtoMessage()

func (*APIServiceDeleteResponse) ProtoReflect

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

func (*APIServiceDeleteResponse) Reset

func (x *APIServiceDeleteResponse) Reset()

func (*APIServiceDeleteResponse) SetId

func (x *APIServiceDeleteResponse) SetId(v string)

func (*APIServiceDeleteResponse) String

func (x *APIServiceDeleteResponse) String() string

type APIServiceDeleteResponse_builder

type APIServiceDeleteResponse_builder struct {

	// the id of the api key
	Id string
	// contains filtered or unexported fields
}

func (APIServiceDeleteResponse_builder) Build

type APIServiceGenerateAccessTokenRequest

type APIServiceGenerateAccessTokenRequest struct {

	// the id of the api key to generate
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// the secret to validate
	ApiKey string `protobuf:"bytes,2,opt,name=api_key,json=apiKey,proto3" json:"api_key,omitempty"`
	// contains filtered or unexported fields
}

The request of a API.GenerateAccessToken RPC

func (*APIServiceGenerateAccessTokenRequest) GetApiKey

func (*APIServiceGenerateAccessTokenRequest) GetId

func (*APIServiceGenerateAccessTokenRequest) ProtoMessage

func (*APIServiceGenerateAccessTokenRequest) ProtoMessage()

func (*APIServiceGenerateAccessTokenRequest) ProtoReflect

func (*APIServiceGenerateAccessTokenRequest) Reset

func (*APIServiceGenerateAccessTokenRequest) SetApiKey

func (*APIServiceGenerateAccessTokenRequest) SetId

func (*APIServiceGenerateAccessTokenRequest) String

type APIServiceGenerateAccessTokenRequest_builder

type APIServiceGenerateAccessTokenRequest_builder struct {

	// the id of the api key to generate
	Id string
	// the secret to validate
	ApiKey string
	// contains filtered or unexported fields
}

func (APIServiceGenerateAccessTokenRequest_builder) Build

type APIServiceGenerateAccessTokenResponse

type APIServiceGenerateAccessTokenResponse struct {
	AccessToken *AccessToken `protobuf:"bytes,1,opt,name=access_token,json=accessToken,proto3" json:"access_token,omitempty"`
	// contains filtered or unexported fields
}

The response of a API.GenerateAccessToken RPC

func (*APIServiceGenerateAccessTokenResponse) ClearAccessToken

func (x *APIServiceGenerateAccessTokenResponse) ClearAccessToken()

func (*APIServiceGenerateAccessTokenResponse) GetAccessToken

func (*APIServiceGenerateAccessTokenResponse) HasAccessToken

func (x *APIServiceGenerateAccessTokenResponse) HasAccessToken() bool

func (*APIServiceGenerateAccessTokenResponse) ProtoMessage

func (*APIServiceGenerateAccessTokenResponse) ProtoMessage()

func (*APIServiceGenerateAccessTokenResponse) ProtoReflect

func (*APIServiceGenerateAccessTokenResponse) Reset

func (*APIServiceGenerateAccessTokenResponse) SetAccessToken

func (x *APIServiceGenerateAccessTokenResponse) SetAccessToken(v *AccessToken)

func (*APIServiceGenerateAccessTokenResponse) String

type APIServiceGenerateAccessTokenResponse_builder

type APIServiceGenerateAccessTokenResponse_builder struct {
	AccessToken *AccessToken
	// contains filtered or unexported fields
}

func (APIServiceGenerateAccessTokenResponse_builder) Build

type APIServiceGetRequest

type APIServiceGetRequest struct {

	// the id of the api key
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

The request of a API.GetAPIKey RPC

func (*APIServiceGetRequest) GetId

func (x *APIServiceGetRequest) GetId() string

func (*APIServiceGetRequest) ProtoMessage

func (*APIServiceGetRequest) ProtoMessage()

func (*APIServiceGetRequest) ProtoReflect

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

func (*APIServiceGetRequest) Reset

func (x *APIServiceGetRequest) Reset()

func (*APIServiceGetRequest) SetId

func (x *APIServiceGetRequest) SetId(v string)

func (*APIServiceGetRequest) String

func (x *APIServiceGetRequest) String() string

type APIServiceGetRequest_builder

type APIServiceGetRequest_builder struct {

	// the id of the api key
	Id string
	// contains filtered or unexported fields
}

func (APIServiceGetRequest_builder) Build

type APIServiceGetResponse

type APIServiceGetResponse struct {
	ApiKey *APIKey `protobuf:"bytes,1,opt,name=api_key,json=apiKey,proto3" json:"api_key,omitempty"`
	// contains filtered or unexported fields
}

The response of a API.GetAPIKey RPC

func (*APIServiceGetResponse) ClearApiKey

func (x *APIServiceGetResponse) ClearApiKey()

func (*APIServiceGetResponse) GetApiKey

func (x *APIServiceGetResponse) GetApiKey() *APIKey

func (*APIServiceGetResponse) HasApiKey

func (x *APIServiceGetResponse) HasApiKey() bool

func (*APIServiceGetResponse) ProtoMessage

func (*APIServiceGetResponse) ProtoMessage()

func (*APIServiceGetResponse) ProtoReflect

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

func (*APIServiceGetResponse) Reset

func (x *APIServiceGetResponse) Reset()

func (*APIServiceGetResponse) SetApiKey

func (x *APIServiceGetResponse) SetApiKey(v *APIKey)

func (*APIServiceGetResponse) String

func (x *APIServiceGetResponse) String() string

type APIServiceGetResponse_builder

type APIServiceGetResponse_builder struct {
	ApiKey *APIKey
	// contains filtered or unexported fields
}

func (APIServiceGetResponse_builder) Build

type APIServiceListRequest

type APIServiceListRequest struct {

	// the project id related to the api key
	ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	// where to stop fetching api keys to
	From int32 `protobuf:"varint,2,opt,name=from,proto3" json:"from,omitempty"`
	// where to start fetching api keys from
	To int32 `protobuf:"varint,3,opt,name=to,proto3" json:"to,omitempty"`
	// contains filtered or unexported fields
}

The request of a API.ListAPIKeys RPC

func (*APIServiceListRequest) GetFrom

func (x *APIServiceListRequest) GetFrom() int32

func (*APIServiceListRequest) GetProjectId

func (x *APIServiceListRequest) GetProjectId() string

func (*APIServiceListRequest) GetTo

func (x *APIServiceListRequest) GetTo() int32

func (*APIServiceListRequest) ProtoMessage

func (*APIServiceListRequest) ProtoMessage()

func (*APIServiceListRequest) ProtoReflect

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

func (*APIServiceListRequest) Reset

func (x *APIServiceListRequest) Reset()

func (*APIServiceListRequest) SetFrom

func (x *APIServiceListRequest) SetFrom(v int32)

func (*APIServiceListRequest) SetProjectId

func (x *APIServiceListRequest) SetProjectId(v string)

func (*APIServiceListRequest) SetTo

func (x *APIServiceListRequest) SetTo(v int32)

func (*APIServiceListRequest) String

func (x *APIServiceListRequest) String() string

type APIServiceListRequest_builder

type APIServiceListRequest_builder struct {

	// the project id related to the api key
	ProjectId string
	// where to stop fetching api keys to
	From int32
	// where to start fetching api keys from
	To int32
	// contains filtered or unexported fields
}

func (APIServiceListRequest_builder) Build

type APIServiceListResponse

type APIServiceListResponse struct {

	// the result of list
	ApiKeys []*APIKey `protobuf:"bytes,1,rep,name=api_keys,json=apiKeys,proto3" json:"api_keys,omitempty"`
	// total amount of api keys in system
	Count int64 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	// contains filtered or unexported fields
}

The response of a API.ListAPIKeys RPC

func (*APIServiceListResponse) GetApiKeys

func (x *APIServiceListResponse) GetApiKeys() []*APIKey

func (*APIServiceListResponse) GetCount

func (x *APIServiceListResponse) GetCount() int64

func (*APIServiceListResponse) ProtoMessage

func (*APIServiceListResponse) ProtoMessage()

func (*APIServiceListResponse) ProtoReflect

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

func (*APIServiceListResponse) Reset

func (x *APIServiceListResponse) Reset()

func (*APIServiceListResponse) SetApiKeys

func (x *APIServiceListResponse) SetApiKeys(v []*APIKey)

func (*APIServiceListResponse) SetCount

func (x *APIServiceListResponse) SetCount(v int64)

func (*APIServiceListResponse) String

func (x *APIServiceListResponse) String() string

type APIServiceListResponse_builder

type APIServiceListResponse_builder struct {

	// the result of list
	ApiKeys []*APIKey
	// total amount of api keys in system
	Count int64
	// contains filtered or unexported fields
}

func (APIServiceListResponse_builder) Build

type APIServicePingRequest

type APIServicePingRequest struct {
	// contains filtered or unexported fields
}

The request of a API.Ping RPC

func (*APIServicePingRequest) ProtoMessage

func (*APIServicePingRequest) ProtoMessage()

func (*APIServicePingRequest) ProtoReflect

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

func (*APIServicePingRequest) Reset

func (x *APIServicePingRequest) Reset()

func (*APIServicePingRequest) String

func (x *APIServicePingRequest) String() string

type APIServicePingRequest_builder

type APIServicePingRequest_builder struct {
	// contains filtered or unexported fields
}

func (APIServicePingRequest_builder) Build

type APIServicePingResponse

type APIServicePingResponse struct {
	// contains filtered or unexported fields
}

The response of a API.Ping RPC

func (*APIServicePingResponse) ProtoMessage

func (*APIServicePingResponse) ProtoMessage()

func (*APIServicePingResponse) ProtoReflect

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

func (*APIServicePingResponse) Reset

func (x *APIServicePingResponse) Reset()

func (*APIServicePingResponse) String

func (x *APIServicePingResponse) String() string

type APIServicePingResponse_builder

type APIServicePingResponse_builder struct {
	// contains filtered or unexported fields
}

func (APIServicePingResponse_builder) Build

type APIServicePublicKeyRequest

type APIServicePublicKeyRequest struct {
	// contains filtered or unexported fields
}

The request of a API.PublicKey RPC

func (*APIServicePublicKeyRequest) ProtoMessage

func (*APIServicePublicKeyRequest) ProtoMessage()

func (*APIServicePublicKeyRequest) ProtoReflect

func (*APIServicePublicKeyRequest) Reset

func (x *APIServicePublicKeyRequest) Reset()

func (*APIServicePublicKeyRequest) String

func (x *APIServicePublicKeyRequest) String() string

type APIServicePublicKeyRequest_builder

type APIServicePublicKeyRequest_builder struct {
	// contains filtered or unexported fields
}

func (APIServicePublicKeyRequest_builder) Build

type APIServicePublicKeyResponse

type APIServicePublicKeyResponse struct {
	PublicKey string `protobuf:"bytes,1,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty"`
	// contains filtered or unexported fields
}

The response of a API.PublicKey RPC

func (*APIServicePublicKeyResponse) GetPublicKey

func (x *APIServicePublicKeyResponse) GetPublicKey() string

func (*APIServicePublicKeyResponse) ProtoMessage

func (*APIServicePublicKeyResponse) ProtoMessage()

func (*APIServicePublicKeyResponse) ProtoReflect

func (*APIServicePublicKeyResponse) Reset

func (x *APIServicePublicKeyResponse) Reset()

func (*APIServicePublicKeyResponse) SetPublicKey

func (x *APIServicePublicKeyResponse) SetPublicKey(v string)

func (*APIServicePublicKeyResponse) String

func (x *APIServicePublicKeyResponse) String() string

type APIServicePublicKeyResponse_builder

type APIServicePublicKeyResponse_builder struct {
	PublicKey string
	// contains filtered or unexported fields
}

func (APIServicePublicKeyResponse_builder) Build

type APIServiceUpdateStatusRequest

type APIServiceUpdateStatusRequest struct {

	// id of the api key
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// the status of the api key
	Status APIKeyStatus `protobuf:"varint,2,opt,name=status,proto3,enum=nuntio.core.v1alpha1.APIKeyStatus" json:"status,omitempty"`
	// contains filtered or unexported fields
}

The request of a API.UpdateStatus RPC

func (*APIServiceUpdateStatusRequest) GetId

func (*APIServiceUpdateStatusRequest) GetStatus

func (*APIServiceUpdateStatusRequest) ProtoMessage

func (*APIServiceUpdateStatusRequest) ProtoMessage()

func (*APIServiceUpdateStatusRequest) ProtoReflect

func (*APIServiceUpdateStatusRequest) Reset

func (x *APIServiceUpdateStatusRequest) Reset()

func (*APIServiceUpdateStatusRequest) SetId

func (*APIServiceUpdateStatusRequest) SetStatus

func (*APIServiceUpdateStatusRequest) String

type APIServiceUpdateStatusRequest_builder

type APIServiceUpdateStatusRequest_builder struct {

	// id of the api key
	Id string
	// the status of the api key
	Status APIKeyStatus
	// contains filtered or unexported fields
}

func (APIServiceUpdateStatusRequest_builder) Build

type APIServiceUpdateStatusResponse

type APIServiceUpdateStatusResponse struct {
	// contains filtered or unexported fields
}

The response of a API.UpdateStatus RPC

func (*APIServiceUpdateStatusResponse) ProtoMessage

func (*APIServiceUpdateStatusResponse) ProtoMessage()

func (*APIServiceUpdateStatusResponse) ProtoReflect

func (*APIServiceUpdateStatusResponse) Reset

func (x *APIServiceUpdateStatusResponse) Reset()

func (*APIServiceUpdateStatusResponse) String

type APIServiceUpdateStatusResponse_builder

type APIServiceUpdateStatusResponse_builder struct {
	// contains filtered or unexported fields
}

func (APIServiceUpdateStatusResponse_builder) Build

type APIServiceValidateAccessTokenRequest

type APIServiceValidateAccessTokenRequest struct {
	Jwt string `protobuf:"bytes,1,opt,name=jwt,proto3" json:"jwt,omitempty"`
	// contains filtered or unexported fields
}

The request of a API.ValidateAccessToken RPC

func (*APIServiceValidateAccessTokenRequest) GetJwt

func (*APIServiceValidateAccessTokenRequest) ProtoMessage

func (*APIServiceValidateAccessTokenRequest) ProtoMessage()

func (*APIServiceValidateAccessTokenRequest) ProtoReflect

func (*APIServiceValidateAccessTokenRequest) Reset

func (*APIServiceValidateAccessTokenRequest) SetJwt

func (*APIServiceValidateAccessTokenRequest) String

type APIServiceValidateAccessTokenRequest_builder

type APIServiceValidateAccessTokenRequest_builder struct {
	Jwt string
	// contains filtered or unexported fields
}

func (APIServiceValidateAccessTokenRequest_builder) Build

type APIServiceValidateAccessTokenResponse

type APIServiceValidateAccessTokenResponse struct {
	AccessToken *AccessToken `protobuf:"bytes,1,opt,name=access_token,json=accessToken,proto3" json:"access_token,omitempty"`
	// contains filtered or unexported fields
}

The response of a API.ValidateAccessToken RPC

func (*APIServiceValidateAccessTokenResponse) ClearAccessToken

func (x *APIServiceValidateAccessTokenResponse) ClearAccessToken()

func (*APIServiceValidateAccessTokenResponse) GetAccessToken

func (*APIServiceValidateAccessTokenResponse) HasAccessToken

func (x *APIServiceValidateAccessTokenResponse) HasAccessToken() bool

func (*APIServiceValidateAccessTokenResponse) ProtoMessage

func (*APIServiceValidateAccessTokenResponse) ProtoMessage()

func (*APIServiceValidateAccessTokenResponse) ProtoReflect

func (*APIServiceValidateAccessTokenResponse) Reset

func (*APIServiceValidateAccessTokenResponse) SetAccessToken

func (x *APIServiceValidateAccessTokenResponse) SetAccessToken(v *AccessToken)

func (*APIServiceValidateAccessTokenResponse) String

type APIServiceValidateAccessTokenResponse_builder

type APIServiceValidateAccessTokenResponse_builder struct {
	AccessToken *AccessToken
	// contains filtered or unexported fields
}

func (APIServiceValidateAccessTokenResponse_builder) Build

type AccessToken

type AccessToken struct {
	Id        string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Namespace string                 `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Jwt       string                 `protobuf:"bytes,3,opt,name=jwt,proto3" json:"jwt,omitempty"`
	ExpiresAt *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=expires_at,json=expiresAt,proto3" json:"expires_at,omitempty"`
	CreatedAt *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// contains filtered or unexported fields
}

func (*AccessToken) ClearCreatedAt

func (x *AccessToken) ClearCreatedAt()

func (*AccessToken) ClearExpiresAt

func (x *AccessToken) ClearExpiresAt()

func (*AccessToken) GetCreatedAt

func (x *AccessToken) GetCreatedAt() *timestamppb.Timestamp

func (*AccessToken) GetExpiresAt

func (x *AccessToken) GetExpiresAt() *timestamppb.Timestamp

func (*AccessToken) GetId

func (x *AccessToken) GetId() string

func (*AccessToken) GetJwt

func (x *AccessToken) GetJwt() string

func (*AccessToken) GetNamespace

func (x *AccessToken) GetNamespace() string

func (*AccessToken) HasCreatedAt

func (x *AccessToken) HasCreatedAt() bool

func (*AccessToken) HasExpiresAt

func (x *AccessToken) HasExpiresAt() bool

func (*AccessToken) ProtoMessage

func (*AccessToken) ProtoMessage()

func (*AccessToken) ProtoReflect

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

func (*AccessToken) Reset

func (x *AccessToken) Reset()

func (*AccessToken) SetCreatedAt

func (x *AccessToken) SetCreatedAt(v *timestamppb.Timestamp)

func (*AccessToken) SetExpiresAt

func (x *AccessToken) SetExpiresAt(v *timestamppb.Timestamp)

func (*AccessToken) SetId

func (x *AccessToken) SetId(v string)

func (*AccessToken) SetJwt

func (x *AccessToken) SetJwt(v string)

func (*AccessToken) SetNamespace

func (x *AccessToken) SetNamespace(v string)

func (*AccessToken) String

func (x *AccessToken) String() string

type AccessToken_builder

type AccessToken_builder struct {
	Id        string
	Namespace string
	Jwt       string
	ExpiresAt *timestamppb.Timestamp
	CreatedAt *timestamppb.Timestamp
	// contains filtered or unexported fields
}

func (AccessToken_builder) Build

func (b0 AccessToken_builder) Build() *AccessToken

type ApiAccess

type ApiAccess struct {
	Ready   bool `protobuf:"varint,1,opt,name=ready,proto3" json:"ready,omitempty"`
	Enabled bool `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"`
	// contains filtered or unexported fields
}

func (*ApiAccess) GetEnabled

func (x *ApiAccess) GetEnabled() bool

func (*ApiAccess) GetReady

func (x *ApiAccess) GetReady() bool

func (*ApiAccess) ProtoMessage

func (*ApiAccess) ProtoMessage()

func (*ApiAccess) ProtoReflect

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

func (*ApiAccess) Reset

func (x *ApiAccess) Reset()

func (*ApiAccess) SetEnabled

func (x *ApiAccess) SetEnabled(v bool)

func (*ApiAccess) SetReady

func (x *ApiAccess) SetReady(v bool)

func (*ApiAccess) String

func (x *ApiAccess) String() string

type ApiAccess_builder

type ApiAccess_builder struct {
	Ready   bool
	Enabled bool
	// contains filtered or unexported fields
}

func (ApiAccess_builder) Build

func (b0 ApiAccess_builder) Build() *ApiAccess

type Cluster

type Cluster struct {
	MongoUrl    string `protobuf:"bytes,1,opt,name=mongo_url,json=mongoUrl,proto3" json:"mongo_url,omitempty"`
	PostgresUrl string `protobuf:"bytes,2,opt,name=postgres_url,json=postgresUrl,proto3" json:"postgres_url,omitempty"`
	// contains filtered or unexported fields
}

func (*Cluster) GetMongoUrl

func (x *Cluster) GetMongoUrl() string

func (*Cluster) GetPostgresUrl

func (x *Cluster) GetPostgresUrl() string

func (*Cluster) ProtoMessage

func (*Cluster) ProtoMessage()

func (*Cluster) ProtoReflect

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

func (*Cluster) Reset

func (x *Cluster) Reset()

func (*Cluster) SetMongoUrl

func (x *Cluster) SetMongoUrl(v string)

func (*Cluster) SetPostgresUrl

func (x *Cluster) SetPostgresUrl(v string)

func (*Cluster) String

func (x *Cluster) String() string

type Cluster_builder

type Cluster_builder struct {
	MongoUrl    string
	PostgresUrl string
	// contains filtered or unexported fields
}

func (Cluster_builder) Build

func (b0 Cluster_builder) Build() *Cluster

type Image

type Image struct {
	Url       string                 `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	ExpiresAt *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=expires_at,json=expiresAt,proto3" json:"expires_at,omitempty"`
	Expires   bool                   `protobuf:"varint,3,opt,name=expires,proto3" json:"expires,omitempty"`
	Key       string                 `protobuf:"bytes,4,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*Image) ClearExpiresAt

func (x *Image) ClearExpiresAt()

func (*Image) GetExpires

func (x *Image) GetExpires() bool

func (*Image) GetExpiresAt

func (x *Image) GetExpiresAt() *timestamppb.Timestamp

func (*Image) GetKey

func (x *Image) GetKey() string

func (*Image) GetUrl

func (x *Image) GetUrl() string

func (*Image) HasExpiresAt

func (x *Image) HasExpiresAt() bool

func (*Image) ProtoMessage

func (*Image) ProtoMessage()

func (*Image) ProtoReflect

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

func (*Image) Reset

func (x *Image) Reset()

func (*Image) SetExpires

func (x *Image) SetExpires(v bool)

func (*Image) SetExpiresAt

func (x *Image) SetExpiresAt(v *timestamppb.Timestamp)

func (*Image) SetKey

func (x *Image) SetKey(v string)

func (*Image) SetUrl

func (x *Image) SetUrl(v string)

func (*Image) String

func (x *Image) String() string

type Image_builder

type Image_builder struct {
	Url       string
	ExpiresAt *timestamppb.Timestamp
	Expires   bool
	Key       string
	// contains filtered or unexported fields
}

func (Image_builder) Build

func (b0 Image_builder) Build() *Image

type Member

type Member 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"`
	Username  string                 `protobuf:"bytes,3,opt,name=username,proto3" json:"username,omitempty"`
	CreatedAt *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	Password  string                 `protobuf:"bytes,6,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*Member) ClearCreatedAt

func (x *Member) ClearCreatedAt()

func (*Member) ClearUpdatedAt

func (x *Member) ClearUpdatedAt()

func (*Member) GetCreatedAt

func (x *Member) GetCreatedAt() *timestamppb.Timestamp

func (*Member) GetEmail

func (x *Member) GetEmail() string

func (*Member) GetId

func (x *Member) GetId() string

func (*Member) GetPassword

func (x *Member) GetPassword() string

func (*Member) GetUpdatedAt

func (x *Member) GetUpdatedAt() *timestamppb.Timestamp

func (*Member) GetUsername

func (x *Member) GetUsername() string

func (*Member) HasCreatedAt

func (x *Member) HasCreatedAt() bool

func (*Member) HasUpdatedAt

func (x *Member) HasUpdatedAt() bool

func (*Member) ProtoMessage

func (*Member) ProtoMessage()

func (*Member) ProtoReflect

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

func (*Member) Reset

func (x *Member) Reset()

func (*Member) SetCreatedAt

func (x *Member) SetCreatedAt(v *timestamppb.Timestamp)

func (*Member) SetEmail

func (x *Member) SetEmail(v string)

func (*Member) SetId

func (x *Member) SetId(v string)

func (*Member) SetPassword

func (x *Member) SetPassword(v string)

func (*Member) SetUpdatedAt

func (x *Member) SetUpdatedAt(v *timestamppb.Timestamp)

func (*Member) SetUsername

func (x *Member) SetUsername(v string)

func (*Member) String

func (x *Member) String() string

type Member_builder

type Member_builder struct {
	Id        string
	Email     string
	Username  string
	CreatedAt *timestamppb.Timestamp
	UpdatedAt *timestamppb.Timestamp
	Password  string
	// contains filtered or unexported fields
}

func (Member_builder) Build

func (b0 Member_builder) Build() *Member

type MembersServicePingRequest

type MembersServicePingRequest struct {
	// contains filtered or unexported fields
}

The request of a Member.Ping RPC

func (*MembersServicePingRequest) ProtoMessage

func (*MembersServicePingRequest) ProtoMessage()

func (*MembersServicePingRequest) ProtoReflect

func (*MembersServicePingRequest) Reset

func (x *MembersServicePingRequest) Reset()

func (*MembersServicePingRequest) String

func (x *MembersServicePingRequest) String() string

type MembersServicePingRequest_builder

type MembersServicePingRequest_builder struct {
	// contains filtered or unexported fields
}

func (MembersServicePingRequest_builder) Build

type MembersServicePingResponse

type MembersServicePingResponse struct {
	// contains filtered or unexported fields
}

The response of a Member.Ping RPC

func (*MembersServicePingResponse) ProtoMessage

func (*MembersServicePingResponse) ProtoMessage()

func (*MembersServicePingResponse) ProtoReflect

func (*MembersServicePingResponse) Reset

func (x *MembersServicePingResponse) Reset()

func (*MembersServicePingResponse) String

func (x *MembersServicePingResponse) String() string

type MembersServicePingResponse_builder

type MembersServicePingResponse_builder struct {
	// contains filtered or unexported fields
}

func (MembersServicePingResponse_builder) Build

type MembersServiceUpdateMemberTypeRequest

type MembersServiceUpdateMemberTypeRequest struct {
	ProjectId  string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	MemberId   string `protobuf:"bytes,2,opt,name=member_id,json=memberId,proto3" json:"member_id,omitempty"`
	MemberType string `protobuf:"bytes,3,opt,name=member_type,json=memberType,proto3" json:"member_type,omitempty"`
	// contains filtered or unexported fields
}

The request of a Member.UpdateMemberType RPC

func (*MembersServiceUpdateMemberTypeRequest) GetMemberId

func (*MembersServiceUpdateMemberTypeRequest) GetMemberType

func (x *MembersServiceUpdateMemberTypeRequest) GetMemberType() string

func (*MembersServiceUpdateMemberTypeRequest) GetProjectId

func (*MembersServiceUpdateMemberTypeRequest) ProtoMessage

func (*MembersServiceUpdateMemberTypeRequest) ProtoMessage()

func (*MembersServiceUpdateMemberTypeRequest) ProtoReflect

func (*MembersServiceUpdateMemberTypeRequest) Reset

func (*MembersServiceUpdateMemberTypeRequest) SetMemberId

func (*MembersServiceUpdateMemberTypeRequest) SetMemberType

func (x *MembersServiceUpdateMemberTypeRequest) SetMemberType(v string)

func (*MembersServiceUpdateMemberTypeRequest) SetProjectId

func (x *MembersServiceUpdateMemberTypeRequest) SetProjectId(v string)

func (*MembersServiceUpdateMemberTypeRequest) String

type MembersServiceUpdateMemberTypeRequest_builder

type MembersServiceUpdateMemberTypeRequest_builder struct {
	ProjectId  string
	MemberId   string
	MemberType string
	// contains filtered or unexported fields
}

func (MembersServiceUpdateMemberTypeRequest_builder) Build

type MembersServiceUpdateMemberTypeResponse

type MembersServiceUpdateMemberTypeResponse struct {
	// contains filtered or unexported fields
}

The request of a Member.UpdateMemberType RPC

func (*MembersServiceUpdateMemberTypeResponse) ProtoMessage

func (*MembersServiceUpdateMemberTypeResponse) ProtoReflect

func (*MembersServiceUpdateMemberTypeResponse) Reset

func (*MembersServiceUpdateMemberTypeResponse) String

type MembersServiceUpdateMemberTypeResponse_builder

type MembersServiceUpdateMemberTypeResponse_builder struct {
	// contains filtered or unexported fields
}

func (MembersServiceUpdateMemberTypeResponse_builder) Build

type Organization

type Organization 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"`
	CreatedAt *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	// contains filtered or unexported fields
}

func (*Organization) ClearCreatedAt

func (x *Organization) ClearCreatedAt()

func (*Organization) ClearUpdatedAt

func (x *Organization) ClearUpdatedAt()

func (*Organization) GetCreatedAt

func (x *Organization) GetCreatedAt() *timestamppb.Timestamp

func (*Organization) GetId

func (x *Organization) GetId() string

func (*Organization) GetName

func (x *Organization) GetName() string

func (*Organization) GetUpdatedAt

func (x *Organization) GetUpdatedAt() *timestamppb.Timestamp

func (*Organization) HasCreatedAt

func (x *Organization) HasCreatedAt() bool

func (*Organization) HasUpdatedAt

func (x *Organization) HasUpdatedAt() bool

func (*Organization) ProtoMessage

func (*Organization) ProtoMessage()

func (*Organization) ProtoReflect

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

func (*Organization) Reset

func (x *Organization) Reset()

func (*Organization) SetCreatedAt

func (x *Organization) SetCreatedAt(v *timestamppb.Timestamp)

func (*Organization) SetId

func (x *Organization) SetId(v string)

func (*Organization) SetName

func (x *Organization) SetName(v string)

func (*Organization) SetUpdatedAt

func (x *Organization) SetUpdatedAt(v *timestamppb.Timestamp)

func (*Organization) String

func (x *Organization) String() string

type Organization_builder

type Organization_builder struct {
	Id        string
	Name      string
	CreatedAt *timestamppb.Timestamp
	UpdatedAt *timestamppb.Timestamp
	// contains filtered or unexported fields
}

func (Organization_builder) Build

func (b0 Organization_builder) Build() *Organization

type Project

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"`
	CreatedAt          *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt          *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	UsersConfigured    bool                   `protobuf:"varint,5,opt,name=users_configured,json=usersConfigured,proto3" json:"users_configured,omitempty"`
	MongoConfigured    bool                   `protobuf:"varint,6,opt,name=mongo_configured,json=mongoConfigured,proto3" json:"mongo_configured,omitempty"`
	PostgresConfigured bool                   `protobuf:"varint,7,opt,name=postgres_configured,json=postgresConfigured,proto3" json:"postgres_configured,omitempty"`
	StorageConfigured  bool                   `protobuf:"varint,8,opt,name=storage_configured,json=storageConfigured,proto3" json:"storage_configured,omitempty"`
	// contains filtered or unexported fields
}

func (*Project) ClearCreatedAt

func (x *Project) ClearCreatedAt()

func (*Project) ClearUpdatedAt

func (x *Project) ClearUpdatedAt()

func (*Project) GetCreatedAt

func (x *Project) GetCreatedAt() *timestamppb.Timestamp

func (*Project) GetId

func (x *Project) GetId() string

func (*Project) GetMongoConfigured

func (x *Project) GetMongoConfigured() bool

func (*Project) GetName

func (x *Project) GetName() string

func (*Project) GetPostgresConfigured

func (x *Project) GetPostgresConfigured() bool

func (*Project) GetStorageConfigured

func (x *Project) GetStorageConfigured() bool

func (*Project) GetUpdatedAt

func (x *Project) GetUpdatedAt() *timestamppb.Timestamp

func (*Project) GetUsersConfigured

func (x *Project) GetUsersConfigured() bool

func (*Project) HasCreatedAt

func (x *Project) HasCreatedAt() bool

func (*Project) HasUpdatedAt

func (x *Project) HasUpdatedAt() bool

func (*Project) ProtoMessage

func (*Project) ProtoMessage()

func (*Project) ProtoReflect

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

func (*Project) Reset

func (x *Project) Reset()

func (*Project) SetCreatedAt

func (x *Project) SetCreatedAt(v *timestamppb.Timestamp)

func (*Project) SetId

func (x *Project) SetId(v string)

func (*Project) SetMongoConfigured

func (x *Project) SetMongoConfigured(v bool)

func (*Project) SetName

func (x *Project) SetName(v string)

func (*Project) SetPostgresConfigured

func (x *Project) SetPostgresConfigured(v bool)

func (*Project) SetStorageConfigured

func (x *Project) SetStorageConfigured(v bool)

func (*Project) SetUpdatedAt

func (x *Project) SetUpdatedAt(v *timestamppb.Timestamp)

func (*Project) SetUsersConfigured

func (x *Project) SetUsersConfigured(v bool)

func (*Project) String

func (x *Project) String() string

type Project_builder

type Project_builder struct {
	Id                 string
	Name               string
	CreatedAt          *timestamppb.Timestamp
	UpdatedAt          *timestamppb.Timestamp
	UsersConfigured    bool
	MongoConfigured    bool
	PostgresConfigured bool
	StorageConfigured  bool
	// contains filtered or unexported fields
}

func (Project_builder) Build

func (b0 Project_builder) Build() *Project

type ProjectsServiceCreateRequest

type ProjectsServiceCreateRequest struct {

	// the id of the project
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// the name related to the project
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Logo string `protobuf:"bytes,3,opt,name=logo,proto3" json:"logo,omitempty"`
	// the id of the owner
	OwnerId string `protobuf:"bytes,4,opt,name=owner_id,json=ownerId,proto3" json:"owner_id,omitempty"`
	// configure storage in pipeline as well
	ConfigureStorage *bool `protobuf:"varint,5,opt,name=configure_storage,json=configureStorage,proto3,oneof" json:"configure_storage,omitempty"`
	// configure mongo in pipeline as well
	ConfigureMongo *bool `protobuf:"varint,6,opt,name=configure_mongo,json=configureMongo,proto3,oneof" json:"configure_mongo,omitempty"`
	// configure postgres in pipeline as well
	ConfigurePostgres *bool `protobuf:"varint,7,opt,name=configure_postgres,json=configurePostgres,proto3,oneof" json:"configure_postgres,omitempty"`
	// configure users in pipeline as well
	ConfigureUsers *bool `protobuf:"varint,8,opt,name=configure_users,json=configureUsers,proto3,oneof" json:"configure_users,omitempty"`
	// contains filtered or unexported fields
}

The request of a Project.Create RPC

func (*ProjectsServiceCreateRequest) ClearConfigureMongo

func (x *ProjectsServiceCreateRequest) ClearConfigureMongo()

func (*ProjectsServiceCreateRequest) ClearConfigurePostgres

func (x *ProjectsServiceCreateRequest) ClearConfigurePostgres()

func (*ProjectsServiceCreateRequest) ClearConfigureStorage

func (x *ProjectsServiceCreateRequest) ClearConfigureStorage()

func (*ProjectsServiceCreateRequest) ClearConfigureUsers

func (x *ProjectsServiceCreateRequest) ClearConfigureUsers()

func (*ProjectsServiceCreateRequest) GetConfigureMongo

func (x *ProjectsServiceCreateRequest) GetConfigureMongo() bool

func (*ProjectsServiceCreateRequest) GetConfigurePostgres

func (x *ProjectsServiceCreateRequest) GetConfigurePostgres() bool

func (*ProjectsServiceCreateRequest) GetConfigureStorage

func (x *ProjectsServiceCreateRequest) GetConfigureStorage() bool

func (*ProjectsServiceCreateRequest) GetConfigureUsers

func (x *ProjectsServiceCreateRequest) GetConfigureUsers() bool

func (*ProjectsServiceCreateRequest) GetId

func (x *ProjectsServiceCreateRequest) GetLogo() string

func (*ProjectsServiceCreateRequest) GetName

func (x *ProjectsServiceCreateRequest) GetName() string

func (*ProjectsServiceCreateRequest) GetOwnerId

func (x *ProjectsServiceCreateRequest) GetOwnerId() string

func (*ProjectsServiceCreateRequest) HasConfigureMongo

func (x *ProjectsServiceCreateRequest) HasConfigureMongo() bool

func (*ProjectsServiceCreateRequest) HasConfigurePostgres

func (x *ProjectsServiceCreateRequest) HasConfigurePostgres() bool

func (*ProjectsServiceCreateRequest) HasConfigureStorage

func (x *ProjectsServiceCreateRequest) HasConfigureStorage() bool

func (*ProjectsServiceCreateRequest) HasConfigureUsers

func (x *ProjectsServiceCreateRequest) HasConfigureUsers() bool

func (*ProjectsServiceCreateRequest) ProtoMessage

func (*ProjectsServiceCreateRequest) ProtoMessage()

func (*ProjectsServiceCreateRequest) ProtoReflect

func (*ProjectsServiceCreateRequest) Reset

func (x *ProjectsServiceCreateRequest) Reset()

func (*ProjectsServiceCreateRequest) SetConfigureMongo

func (x *ProjectsServiceCreateRequest) SetConfigureMongo(v bool)

func (*ProjectsServiceCreateRequest) SetConfigurePostgres

func (x *ProjectsServiceCreateRequest) SetConfigurePostgres(v bool)

func (*ProjectsServiceCreateRequest) SetConfigureStorage

func (x *ProjectsServiceCreateRequest) SetConfigureStorage(v bool)

func (*ProjectsServiceCreateRequest) SetConfigureUsers

func (x *ProjectsServiceCreateRequest) SetConfigureUsers(v bool)

func (*ProjectsServiceCreateRequest) SetId

func (x *ProjectsServiceCreateRequest) SetLogo(v string)

func (*ProjectsServiceCreateRequest) SetName

func (x *ProjectsServiceCreateRequest) SetName(v string)

func (*ProjectsServiceCreateRequest) SetOwnerId

func (x *ProjectsServiceCreateRequest) SetOwnerId(v string)

func (*ProjectsServiceCreateRequest) String

type ProjectsServiceCreateRequest_builder

type ProjectsServiceCreateRequest_builder struct {

	// the id of the project
	Id string
	// the name related to the project
	Name string
	Logo string
	// the id of the owner
	OwnerId string
	// configure storage in pipeline as well
	ConfigureStorage *bool
	// configure mongo in pipeline as well
	ConfigureMongo *bool
	// configure postgres in pipeline as well
	ConfigurePostgres *bool
	// configure users in pipeline as well
	ConfigureUsers *bool
	// contains filtered or unexported fields
}

func (ProjectsServiceCreateRequest_builder) Build

type ProjectsServiceCreateResponse

type ProjectsServiceCreateResponse struct {
	Project *Project `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	// contains filtered or unexported fields
}

The response of a Project.Create RPC

func (*ProjectsServiceCreateResponse) ClearProject

func (x *ProjectsServiceCreateResponse) ClearProject()

func (*ProjectsServiceCreateResponse) GetProject

func (x *ProjectsServiceCreateResponse) GetProject() *Project

func (*ProjectsServiceCreateResponse) HasProject

func (x *ProjectsServiceCreateResponse) HasProject() bool

func (*ProjectsServiceCreateResponse) ProtoMessage

func (*ProjectsServiceCreateResponse) ProtoMessage()

func (*ProjectsServiceCreateResponse) ProtoReflect

func (*ProjectsServiceCreateResponse) Reset

func (x *ProjectsServiceCreateResponse) Reset()

func (*ProjectsServiceCreateResponse) SetProject

func (x *ProjectsServiceCreateResponse) SetProject(v *Project)

func (*ProjectsServiceCreateResponse) String

type ProjectsServiceCreateResponse_builder

type ProjectsServiceCreateResponse_builder struct {
	Project *Project
	// contains filtered or unexported fields
}

func (ProjectsServiceCreateResponse_builder) Build

type ProjectsServiceDeleteRequest

type ProjectsServiceDeleteRequest struct {

	// the id of the project
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

The request of a Project.Delete RPC

func (*ProjectsServiceDeleteRequest) GetId

func (*ProjectsServiceDeleteRequest) ProtoMessage

func (*ProjectsServiceDeleteRequest) ProtoMessage()

func (*ProjectsServiceDeleteRequest) ProtoReflect

func (*ProjectsServiceDeleteRequest) Reset

func (x *ProjectsServiceDeleteRequest) Reset()

func (*ProjectsServiceDeleteRequest) SetId

func (*ProjectsServiceDeleteRequest) String

type ProjectsServiceDeleteRequest_builder

type ProjectsServiceDeleteRequest_builder struct {

	// the id of the project
	Id string
	// contains filtered or unexported fields
}

func (ProjectsServiceDeleteRequest_builder) Build

type ProjectsServiceDeleteResponse

type ProjectsServiceDeleteResponse struct {
	// contains filtered or unexported fields
}

The response of a Project.Delete RPC

func (*ProjectsServiceDeleteResponse) ProtoMessage

func (*ProjectsServiceDeleteResponse) ProtoMessage()

func (*ProjectsServiceDeleteResponse) ProtoReflect

func (*ProjectsServiceDeleteResponse) Reset

func (x *ProjectsServiceDeleteResponse) Reset()

func (*ProjectsServiceDeleteResponse) String

type ProjectsServiceDeleteResponse_builder

type ProjectsServiceDeleteResponse_builder struct {
	// contains filtered or unexported fields
}

func (ProjectsServiceDeleteResponse_builder) Build

type ProjectsServiceDisableMongoRequest

type ProjectsServiceDisableMongoRequest struct {

	// the id of the project
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

The request of a Project.DisableMongo RPC

func (*ProjectsServiceDisableMongoRequest) GetId

func (*ProjectsServiceDisableMongoRequest) ProtoMessage

func (*ProjectsServiceDisableMongoRequest) ProtoMessage()

func (*ProjectsServiceDisableMongoRequest) ProtoReflect

func (*ProjectsServiceDisableMongoRequest) Reset

func (*ProjectsServiceDisableMongoRequest) SetId

func (*ProjectsServiceDisableMongoRequest) String

type ProjectsServiceDisableMongoRequest_builder

type ProjectsServiceDisableMongoRequest_builder struct {

	// the id of the project
	Id string
	// contains filtered or unexported fields
}

func (ProjectsServiceDisableMongoRequest_builder) Build

type ProjectsServiceDisableMongoResponse

type ProjectsServiceDisableMongoResponse struct {
	// contains filtered or unexported fields
}

The response of a Project.DisableMongo RPC

func (*ProjectsServiceDisableMongoResponse) ProtoMessage

func (*ProjectsServiceDisableMongoResponse) ProtoMessage()

func (*ProjectsServiceDisableMongoResponse) ProtoReflect

func (*ProjectsServiceDisableMongoResponse) Reset

func (*ProjectsServiceDisableMongoResponse) String

type ProjectsServiceDisableMongoResponse_builder

type ProjectsServiceDisableMongoResponse_builder struct {
	// contains filtered or unexported fields
}

func (ProjectsServiceDisableMongoResponse_builder) Build

type ProjectsServiceDisablePostgresRequest

type ProjectsServiceDisablePostgresRequest struct {

	// the id of the project
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

The request of a Project.DisablePostgres RPC

func (*ProjectsServiceDisablePostgresRequest) GetId

func (*ProjectsServiceDisablePostgresRequest) ProtoMessage

func (*ProjectsServiceDisablePostgresRequest) ProtoMessage()

func (*ProjectsServiceDisablePostgresRequest) ProtoReflect

func (*ProjectsServiceDisablePostgresRequest) Reset

func (*ProjectsServiceDisablePostgresRequest) SetId

func (*ProjectsServiceDisablePostgresRequest) String

type ProjectsServiceDisablePostgresRequest_builder

type ProjectsServiceDisablePostgresRequest_builder struct {

	// the id of the project
	Id string
	// contains filtered or unexported fields
}

func (ProjectsServiceDisablePostgresRequest_builder) Build

type ProjectsServiceDisablePostgresResponse

type ProjectsServiceDisablePostgresResponse struct {

	// the id of the project
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

The response of a Project.DisablePostgres RPC

func (*ProjectsServiceDisablePostgresResponse) GetId

func (*ProjectsServiceDisablePostgresResponse) ProtoMessage

func (*ProjectsServiceDisablePostgresResponse) ProtoReflect

func (*ProjectsServiceDisablePostgresResponse) Reset

func (*ProjectsServiceDisablePostgresResponse) SetId

func (*ProjectsServiceDisablePostgresResponse) String

type ProjectsServiceDisablePostgresResponse_builder

type ProjectsServiceDisablePostgresResponse_builder struct {

	// the id of the project
	Id string
	// contains filtered or unexported fields
}

func (ProjectsServiceDisablePostgresResponse_builder) Build

type ProjectsServiceDisableStorageRequest

type ProjectsServiceDisableStorageRequest struct {

	// the id of the project
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

The request of a Project.DisableStorage RPC

func (*ProjectsServiceDisableStorageRequest) GetId

func (*ProjectsServiceDisableStorageRequest) ProtoMessage

func (*ProjectsServiceDisableStorageRequest) ProtoMessage()

func (*ProjectsServiceDisableStorageRequest) ProtoReflect

func (*ProjectsServiceDisableStorageRequest) Reset

func (*ProjectsServiceDisableStorageRequest) SetId

func (*ProjectsServiceDisableStorageRequest) String

type ProjectsServiceDisableStorageRequest_builder

type ProjectsServiceDisableStorageRequest_builder struct {

	// the id of the project
	Id string
	// contains filtered or unexported fields
}

func (ProjectsServiceDisableStorageRequest_builder) Build

type ProjectsServiceDisableStorageResponse

type ProjectsServiceDisableStorageResponse struct {
	// contains filtered or unexported fields
}

The response of a Project.DisableStorage RPC

func (*ProjectsServiceDisableStorageResponse) ProtoMessage

func (*ProjectsServiceDisableStorageResponse) ProtoMessage()

func (*ProjectsServiceDisableStorageResponse) ProtoReflect

func (*ProjectsServiceDisableStorageResponse) Reset

func (*ProjectsServiceDisableStorageResponse) String

type ProjectsServiceDisableStorageResponse_builder

type ProjectsServiceDisableStorageResponse_builder struct {
	// contains filtered or unexported fields
}

func (ProjectsServiceDisableStorageResponse_builder) Build

type ProjectsServiceDisableUsersRequest

type ProjectsServiceDisableUsersRequest struct {

	// the id of the project
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

The request of a Project.DisableUsers RPC

func (*ProjectsServiceDisableUsersRequest) GetId

func (*ProjectsServiceDisableUsersRequest) ProtoMessage

func (*ProjectsServiceDisableUsersRequest) ProtoMessage()

func (*ProjectsServiceDisableUsersRequest) ProtoReflect

func (*ProjectsServiceDisableUsersRequest) Reset

func (*ProjectsServiceDisableUsersRequest) SetId

func (*ProjectsServiceDisableUsersRequest) String

type ProjectsServiceDisableUsersRequest_builder

type ProjectsServiceDisableUsersRequest_builder struct {

	// the id of the project
	Id string
	// contains filtered or unexported fields
}

func (ProjectsServiceDisableUsersRequest_builder) Build

type ProjectsServiceDisableUsersResponse

type ProjectsServiceDisableUsersResponse struct {
	// contains filtered or unexported fields
}

The response of a Project.DisableUsers RPC

func (*ProjectsServiceDisableUsersResponse) ProtoMessage

func (*ProjectsServiceDisableUsersResponse) ProtoMessage()

func (*ProjectsServiceDisableUsersResponse) ProtoReflect

func (*ProjectsServiceDisableUsersResponse) Reset

func (*ProjectsServiceDisableUsersResponse) String

type ProjectsServiceDisableUsersResponse_builder

type ProjectsServiceDisableUsersResponse_builder struct {
	// contains filtered or unexported fields
}

func (ProjectsServiceDisableUsersResponse_builder) Build

type ProjectsServiceEnableMongoRequest

type ProjectsServiceEnableMongoRequest struct {

	// the id of the project
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

The request of a Project.EnableMongo RPC

func (*ProjectsServiceEnableMongoRequest) GetId

func (*ProjectsServiceEnableMongoRequest) ProtoMessage

func (*ProjectsServiceEnableMongoRequest) ProtoMessage()

func (*ProjectsServiceEnableMongoRequest) ProtoReflect

func (*ProjectsServiceEnableMongoRequest) Reset

func (*ProjectsServiceEnableMongoRequest) SetId

func (*ProjectsServiceEnableMongoRequest) String

type ProjectsServiceEnableMongoRequest_builder

type ProjectsServiceEnableMongoRequest_builder struct {

	// the id of the project
	Id string
	// contains filtered or unexported fields
}

func (ProjectsServiceEnableMongoRequest_builder) Build

type ProjectsServiceEnableMongoResponse

type ProjectsServiceEnableMongoResponse struct {
	// contains filtered or unexported fields
}

The response of a Project.EnableMongo RPC

func (*ProjectsServiceEnableMongoResponse) ProtoMessage

func (*ProjectsServiceEnableMongoResponse) ProtoMessage()

func (*ProjectsServiceEnableMongoResponse) ProtoReflect

func (*ProjectsServiceEnableMongoResponse) Reset

func (*ProjectsServiceEnableMongoResponse) String

type ProjectsServiceEnableMongoResponse_builder

type ProjectsServiceEnableMongoResponse_builder struct {
	// contains filtered or unexported fields
}

func (ProjectsServiceEnableMongoResponse_builder) Build

type ProjectsServiceEnablePostgresRequest

type ProjectsServiceEnablePostgresRequest struct {

	// the id of the project
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

The request of a Project.EnablePostgres RPC

func (*ProjectsServiceEnablePostgresRequest) GetId

func (*ProjectsServiceEnablePostgresRequest) ProtoMessage

func (*ProjectsServiceEnablePostgresRequest) ProtoMessage()

func (*ProjectsServiceEnablePostgresRequest) ProtoReflect

func (*ProjectsServiceEnablePostgresRequest) Reset

func (*ProjectsServiceEnablePostgresRequest) SetId

func (*ProjectsServiceEnablePostgresRequest) String

type ProjectsServiceEnablePostgresRequest_builder

type ProjectsServiceEnablePostgresRequest_builder struct {

	// the id of the project
	Id string
	// contains filtered or unexported fields
}

func (ProjectsServiceEnablePostgresRequest_builder) Build

type ProjectsServiceEnablePostgresResponse

type ProjectsServiceEnablePostgresResponse struct {
	// contains filtered or unexported fields
}

The response of a Project.EnablePostgres RPC

func (*ProjectsServiceEnablePostgresResponse) ProtoMessage

func (*ProjectsServiceEnablePostgresResponse) ProtoMessage()

func (*ProjectsServiceEnablePostgresResponse) ProtoReflect

func (*ProjectsServiceEnablePostgresResponse) Reset

func (*ProjectsServiceEnablePostgresResponse) String

type ProjectsServiceEnablePostgresResponse_builder

type ProjectsServiceEnablePostgresResponse_builder struct {
	// contains filtered or unexported fields
}

func (ProjectsServiceEnablePostgresResponse_builder) Build

type ProjectsServiceEnableStorageRequest

type ProjectsServiceEnableStorageRequest struct {

	// the id of the project
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

The request of a Project.EnableStorage RPC

func (*ProjectsServiceEnableStorageRequest) GetId

func (*ProjectsServiceEnableStorageRequest) ProtoMessage

func (*ProjectsServiceEnableStorageRequest) ProtoMessage()

func (*ProjectsServiceEnableStorageRequest) ProtoReflect

func (*ProjectsServiceEnableStorageRequest) Reset

func (*ProjectsServiceEnableStorageRequest) SetId

func (*ProjectsServiceEnableStorageRequest) String

type ProjectsServiceEnableStorageRequest_builder

type ProjectsServiceEnableStorageRequest_builder struct {

	// the id of the project
	Id string
	// contains filtered or unexported fields
}

func (ProjectsServiceEnableStorageRequest_builder) Build

type ProjectsServiceEnableStorageResponse

type ProjectsServiceEnableStorageResponse struct {
	// contains filtered or unexported fields
}

The response of a Project.EnableStorage RPC

func (*ProjectsServiceEnableStorageResponse) ProtoMessage

func (*ProjectsServiceEnableStorageResponse) ProtoMessage()

func (*ProjectsServiceEnableStorageResponse) ProtoReflect

func (*ProjectsServiceEnableStorageResponse) Reset

func (*ProjectsServiceEnableStorageResponse) String

type ProjectsServiceEnableStorageResponse_builder

type ProjectsServiceEnableStorageResponse_builder struct {
	// contains filtered or unexported fields
}

func (ProjectsServiceEnableStorageResponse_builder) Build

type ProjectsServiceEnableUsersRequest

type ProjectsServiceEnableUsersRequest struct {

	// the id of the project
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

The request of a Project.EnableUsers RPC

func (*ProjectsServiceEnableUsersRequest) GetId

func (*ProjectsServiceEnableUsersRequest) ProtoMessage

func (*ProjectsServiceEnableUsersRequest) ProtoMessage()

func (*ProjectsServiceEnableUsersRequest) ProtoReflect

func (*ProjectsServiceEnableUsersRequest) Reset

func (*ProjectsServiceEnableUsersRequest) SetId

func (*ProjectsServiceEnableUsersRequest) String

type ProjectsServiceEnableUsersRequest_builder

type ProjectsServiceEnableUsersRequest_builder struct {

	// the id of the project
	Id string
	// contains filtered or unexported fields
}

func (ProjectsServiceEnableUsersRequest_builder) Build

type ProjectsServiceEnableUsersResponse

type ProjectsServiceEnableUsersResponse struct {
	// contains filtered or unexported fields
}

The response of a Project.EnableUsers RPC

func (*ProjectsServiceEnableUsersResponse) ProtoMessage

func (*ProjectsServiceEnableUsersResponse) ProtoMessage()

func (*ProjectsServiceEnableUsersResponse) ProtoReflect

func (*ProjectsServiceEnableUsersResponse) Reset

func (*ProjectsServiceEnableUsersResponse) String

type ProjectsServiceEnableUsersResponse_builder

type ProjectsServiceEnableUsersResponse_builder struct {
	// contains filtered or unexported fields
}

func (ProjectsServiceEnableUsersResponse_builder) Build

type ProjectsServiceGetRequest

type ProjectsServiceGetRequest struct {

	// the id of the project
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

The request of a Project.Get RPC

func (*ProjectsServiceGetRequest) GetId

func (x *ProjectsServiceGetRequest) GetId() string

func (*ProjectsServiceGetRequest) ProtoMessage

func (*ProjectsServiceGetRequest) ProtoMessage()

func (*ProjectsServiceGetRequest) ProtoReflect

func (*ProjectsServiceGetRequest) Reset

func (x *ProjectsServiceGetRequest) Reset()

func (*ProjectsServiceGetRequest) SetId

func (x *ProjectsServiceGetRequest) SetId(v string)

func (*ProjectsServiceGetRequest) String

func (x *ProjectsServiceGetRequest) String() string

type ProjectsServiceGetRequest_builder

type ProjectsServiceGetRequest_builder struct {

	// the id of the project
	Id string
	// contains filtered or unexported fields
}

func (ProjectsServiceGetRequest_builder) Build

type ProjectsServiceGetResponse

type ProjectsServiceGetResponse struct {
	Project *Project `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	// the external address for the project service
	ExternalEndpoint string `protobuf:"bytes,2,opt,name=external_endpoint,json=externalEndpoint,proto3" json:"external_endpoint,omitempty"`
	// the internal address for the project service
	InternalEndpoint string `protobuf:"bytes,3,opt,name=internal_endpoint,json=internalEndpoint,proto3" json:"internal_endpoint,omitempty"`
	// contains filtered or unexported fields
}

The response of a Project.Get RPC

func (*ProjectsServiceGetResponse) ClearProject

func (x *ProjectsServiceGetResponse) ClearProject()

func (*ProjectsServiceGetResponse) GetExternalEndpoint

func (x *ProjectsServiceGetResponse) GetExternalEndpoint() string

func (*ProjectsServiceGetResponse) GetInternalEndpoint

func (x *ProjectsServiceGetResponse) GetInternalEndpoint() string

func (*ProjectsServiceGetResponse) GetProject

func (x *ProjectsServiceGetResponse) GetProject() *Project

func (*ProjectsServiceGetResponse) HasProject

func (x *ProjectsServiceGetResponse) HasProject() bool

func (*ProjectsServiceGetResponse) ProtoMessage

func (*ProjectsServiceGetResponse) ProtoMessage()

func (*ProjectsServiceGetResponse) ProtoReflect

func (*ProjectsServiceGetResponse) Reset

func (x *ProjectsServiceGetResponse) Reset()

func (*ProjectsServiceGetResponse) SetExternalEndpoint

func (x *ProjectsServiceGetResponse) SetExternalEndpoint(v string)

func (*ProjectsServiceGetResponse) SetInternalEndpoint

func (x *ProjectsServiceGetResponse) SetInternalEndpoint(v string)

func (*ProjectsServiceGetResponse) SetProject

func (x *ProjectsServiceGetResponse) SetProject(v *Project)

func (*ProjectsServiceGetResponse) String

func (x *ProjectsServiceGetResponse) String() string

type ProjectsServiceGetResponse_builder

type ProjectsServiceGetResponse_builder struct {
	Project *Project
	// the external address for the project service
	ExternalEndpoint string
	// the internal address for the project service
	InternalEndpoint string
	// contains filtered or unexported fields
}

func (ProjectsServiceGetResponse_builder) Build

type ProjectsServiceListRequest

type ProjectsServiceListRequest struct {

	// where to start fetching from
	From int32 `protobuf:"varint,1,opt,name=from,proto3" json:"from,omitempty"`
	// where to stop fetching to
	To int32 `protobuf:"varint,2,opt,name=to,proto3" json:"to,omitempty"`
	// if you only want to list projects owned by a user
	OwnerId *string `protobuf:"bytes,3,opt,name=owner_id,json=ownerId,proto3,oneof" json:"owner_id,omitempty"`
	// contains filtered or unexported fields
}

The request of a Project.List RPC

func (*ProjectsServiceListRequest) ClearOwnerId

func (x *ProjectsServiceListRequest) ClearOwnerId()

func (*ProjectsServiceListRequest) GetFrom

func (x *ProjectsServiceListRequest) GetFrom() int32

func (*ProjectsServiceListRequest) GetOwnerId

func (x *ProjectsServiceListRequest) GetOwnerId() string

func (*ProjectsServiceListRequest) GetTo

func (x *ProjectsServiceListRequest) GetTo() int32

func (*ProjectsServiceListRequest) HasOwnerId

func (x *ProjectsServiceListRequest) HasOwnerId() bool

func (*ProjectsServiceListRequest) ProtoMessage

func (*ProjectsServiceListRequest) ProtoMessage()

func (*ProjectsServiceListRequest) ProtoReflect

func (*ProjectsServiceListRequest) Reset

func (x *ProjectsServiceListRequest) Reset()

func (*ProjectsServiceListRequest) SetFrom

func (x *ProjectsServiceListRequest) SetFrom(v int32)

func (*ProjectsServiceListRequest) SetOwnerId

func (x *ProjectsServiceListRequest) SetOwnerId(v string)

func (*ProjectsServiceListRequest) SetTo

func (x *ProjectsServiceListRequest) SetTo(v int32)

func (*ProjectsServiceListRequest) String

func (x *ProjectsServiceListRequest) String() string

type ProjectsServiceListRequest_builder

type ProjectsServiceListRequest_builder struct {

	// where to start fetching from
	From int32
	// where to stop fetching to
	To int32
	// if you only want to list projects owned by a user
	OwnerId *string
	// contains filtered or unexported fields
}

func (ProjectsServiceListRequest_builder) Build

type ProjectsServiceListResponse

type ProjectsServiceListResponse struct {

	// the result of list
	Projects []*Project `protobuf:"bytes,1,rep,name=projects,proto3" json:"projects,omitempty"`
	// total amount of namespaces
	Count int64 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	// filter by owner id
	OwnerId *string `protobuf:"bytes,3,opt,name=owner_id,json=ownerId,proto3,oneof" json:"owner_id,omitempty"`
	// contains filtered or unexported fields
}

The response of a Project.List RPC

func (*ProjectsServiceListResponse) ClearOwnerId

func (x *ProjectsServiceListResponse) ClearOwnerId()

func (*ProjectsServiceListResponse) GetCount

func (x *ProjectsServiceListResponse) GetCount() int64

func (*ProjectsServiceListResponse) GetOwnerId

func (x *ProjectsServiceListResponse) GetOwnerId() string

func (*ProjectsServiceListResponse) GetProjects

func (x *ProjectsServiceListResponse) GetProjects() []*Project

func (*ProjectsServiceListResponse) HasOwnerId

func (x *ProjectsServiceListResponse) HasOwnerId() bool

func (*ProjectsServiceListResponse) ProtoMessage

func (*ProjectsServiceListResponse) ProtoMessage()

func (*ProjectsServiceListResponse) ProtoReflect

func (*ProjectsServiceListResponse) Reset

func (x *ProjectsServiceListResponse) Reset()

func (*ProjectsServiceListResponse) SetCount

func (x *ProjectsServiceListResponse) SetCount(v int64)

func (*ProjectsServiceListResponse) SetOwnerId

func (x *ProjectsServiceListResponse) SetOwnerId(v string)

func (*ProjectsServiceListResponse) SetProjects

func (x *ProjectsServiceListResponse) SetProjects(v []*Project)

func (*ProjectsServiceListResponse) String

func (x *ProjectsServiceListResponse) String() string

type ProjectsServiceListResponse_builder

type ProjectsServiceListResponse_builder struct {

	// the result of list
	Projects []*Project
	// total amount of namespaces
	Count int64
	// filter by owner id
	OwnerId *string
	// contains filtered or unexported fields
}

func (ProjectsServiceListResponse_builder) Build

type ProjectsServicePingRequest

type ProjectsServicePingRequest struct {
	// contains filtered or unexported fields
}

The request of a Project.Ping RPC

func (*ProjectsServicePingRequest) ProtoMessage

func (*ProjectsServicePingRequest) ProtoMessage()

func (*ProjectsServicePingRequest) ProtoReflect

func (*ProjectsServicePingRequest) Reset

func (x *ProjectsServicePingRequest) Reset()

func (*ProjectsServicePingRequest) String

func (x *ProjectsServicePingRequest) String() string

type ProjectsServicePingRequest_builder

type ProjectsServicePingRequest_builder struct {
	// contains filtered or unexported fields
}

func (ProjectsServicePingRequest_builder) Build

type ProjectsServicePingResponse

type ProjectsServicePingResponse struct {
	// contains filtered or unexported fields
}

The response of a Project.Ping RPC

func (*ProjectsServicePingResponse) ProtoMessage

func (*ProjectsServicePingResponse) ProtoMessage()

func (*ProjectsServicePingResponse) ProtoReflect

func (*ProjectsServicePingResponse) Reset

func (x *ProjectsServicePingResponse) Reset()

func (*ProjectsServicePingResponse) String

func (x *ProjectsServicePingResponse) String() string

type ProjectsServicePingResponse_builder

type ProjectsServicePingResponse_builder struct {
	// contains filtered or unexported fields
}

func (ProjectsServicePingResponse_builder) Build

type ProjectsServicePublicKeyRequest

type ProjectsServicePublicKeyRequest struct {
	// contains filtered or unexported fields
}

The request of a Project.PublicKey RPC

func (*ProjectsServicePublicKeyRequest) ProtoMessage

func (*ProjectsServicePublicKeyRequest) ProtoMessage()

func (*ProjectsServicePublicKeyRequest) ProtoReflect

func (*ProjectsServicePublicKeyRequest) Reset

func (*ProjectsServicePublicKeyRequest) String

type ProjectsServicePublicKeyRequest_builder

type ProjectsServicePublicKeyRequest_builder struct {
	// contains filtered or unexported fields
}

func (ProjectsServicePublicKeyRequest_builder) Build

type ProjectsServicePublicKeyResponse

type ProjectsServicePublicKeyResponse struct {
	PublicKey string `protobuf:"bytes,1,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty"`
	// contains filtered or unexported fields
}

The response of a Project.PublicKey RPC

func (*ProjectsServicePublicKeyResponse) GetPublicKey

func (x *ProjectsServicePublicKeyResponse) GetPublicKey() string

func (*ProjectsServicePublicKeyResponse) ProtoMessage

func (*ProjectsServicePublicKeyResponse) ProtoMessage()

func (*ProjectsServicePublicKeyResponse) ProtoReflect

func (*ProjectsServicePublicKeyResponse) Reset

func (*ProjectsServicePublicKeyResponse) SetPublicKey

func (x *ProjectsServicePublicKeyResponse) SetPublicKey(v string)

func (*ProjectsServicePublicKeyResponse) String

type ProjectsServicePublicKeyResponse_builder

type ProjectsServicePublicKeyResponse_builder struct {
	PublicKey string
	// contains filtered or unexported fields
}

func (ProjectsServicePublicKeyResponse_builder) Build

type ProjectsServiceUpdateRequest

type ProjectsServiceUpdateRequest struct {

	// the id of the project
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// the name related to the project
	Name *string `protobuf:"bytes,2,opt,name=name,proto3,oneof" json:"name,omitempty"`
	Logo *string `protobuf:"bytes,3,opt,name=logo,proto3,oneof" json:"logo,omitempty"`
	// contains filtered or unexported fields
}

The request of a Project.Update RPC

func (x *ProjectsServiceUpdateRequest) ClearLogo()

func (*ProjectsServiceUpdateRequest) ClearName

func (x *ProjectsServiceUpdateRequest) ClearName()

func (*ProjectsServiceUpdateRequest) GetId

func (x *ProjectsServiceUpdateRequest) GetLogo() string

func (*ProjectsServiceUpdateRequest) GetName

func (x *ProjectsServiceUpdateRequest) GetName() string
func (x *ProjectsServiceUpdateRequest) HasLogo() bool

func (*ProjectsServiceUpdateRequest) HasName

func (x *ProjectsServiceUpdateRequest) HasName() bool

func (*ProjectsServiceUpdateRequest) ProtoMessage

func (*ProjectsServiceUpdateRequest) ProtoMessage()

func (*ProjectsServiceUpdateRequest) ProtoReflect

func (*ProjectsServiceUpdateRequest) Reset

func (x *ProjectsServiceUpdateRequest) Reset()

func (*ProjectsServiceUpdateRequest) SetId

func (x *ProjectsServiceUpdateRequest) SetLogo(v string)

func (*ProjectsServiceUpdateRequest) SetName

func (x *ProjectsServiceUpdateRequest) SetName(v string)

func (*ProjectsServiceUpdateRequest) String

type ProjectsServiceUpdateRequest_builder

type ProjectsServiceUpdateRequest_builder struct {

	// the id of the project
	Id string
	// the name related to the project
	Name *string
	Logo *string
	// contains filtered or unexported fields
}

func (ProjectsServiceUpdateRequest_builder) Build

type ProjectsServiceUpdateResponse

type ProjectsServiceUpdateResponse struct {
	// contains filtered or unexported fields
}

The response of a Project.Update RPC

func (*ProjectsServiceUpdateResponse) ProtoMessage

func (*ProjectsServiceUpdateResponse) ProtoMessage()

func (*ProjectsServiceUpdateResponse) ProtoReflect

func (*ProjectsServiceUpdateResponse) Reset

func (x *ProjectsServiceUpdateResponse) Reset()

func (*ProjectsServiceUpdateResponse) String

type ProjectsServiceUpdateResponse_builder

type ProjectsServiceUpdateResponse_builder struct {
	// contains filtered or unexported fields
}

func (ProjectsServiceUpdateResponse_builder) Build

type TokenType

type TokenType int32
const (
	TokenType_TOKEN_TYPE_UNSPECIFIED   TokenType = 0
	TokenType_TOKEN_TYPE_ACCESS_TOKEN  TokenType = 1
	TokenType_TOKEN_TYPE_REFRESH_TOKEN TokenType = 2
)

func (TokenType) Descriptor

func (TokenType) Descriptor() protoreflect.EnumDescriptor

func (TokenType) Enum

func (x TokenType) Enum() *TokenType

func (TokenType) Number

func (x TokenType) Number() protoreflect.EnumNumber

func (TokenType) String

func (x TokenType) String() string

func (TokenType) Type

Source Files

  • core_api.pb.go
  • core_members.pb.go
  • core_messages.pb.go
  • core_projects.pb.go

Jump to

Keyboard shortcuts

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