corev1alpha1

package
v1.33.0-20230531113704... 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) Descriptor deprecated

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

Deprecated: Use APIKey.ProtoReflect.Descriptor instead.

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) ProtoMessage

func (*APIKey) ProtoMessage()

func (*APIKey) ProtoReflect

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

func (*APIKey) Reset

func (x *APIKey) Reset()

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) EnumDescriptor deprecated

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

Deprecated: Use APIKeyStatus.Descriptor instead.

func (APIKeyStatus) Number

func (APIKeyStatus) String

func (x APIKeyStatus) String() string

func (APIKeyStatus) Type

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) Descriptor deprecated

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

Deprecated: Use APIServiceCreateRequest.ProtoReflect.Descriptor instead.

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) String

func (x *APIServiceCreateRequest) String() string

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) Descriptor deprecated

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

Deprecated: Use APIServiceCreateResponse.ProtoReflect.Descriptor instead.

func (*APIServiceCreateResponse) GetApiKey

func (x *APIServiceCreateResponse) GetApiKey() *APIKey

func (*APIServiceCreateResponse) ProtoMessage

func (*APIServiceCreateResponse) ProtoMessage()

func (*APIServiceCreateResponse) ProtoReflect

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

func (*APIServiceCreateResponse) Reset

func (x *APIServiceCreateResponse) Reset()

func (*APIServiceCreateResponse) String

func (x *APIServiceCreateResponse) String() string

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) Descriptor deprecated

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

Deprecated: Use APIServiceDeleteAllRequest.ProtoReflect.Descriptor instead.

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) String

func (x *APIServiceDeleteAllRequest) String() string

type APIServiceDeleteAllResponse

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

The response of a API.DeleteAllAPIKey RPC

func (*APIServiceDeleteAllResponse) Descriptor deprecated

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

Deprecated: Use APIServiceDeleteAllResponse.ProtoReflect.Descriptor instead.

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 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) Descriptor deprecated

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

Deprecated: Use APIServiceDeleteRequest.ProtoReflect.Descriptor instead.

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) String

func (x *APIServiceDeleteRequest) String() string

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) Descriptor deprecated

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

Deprecated: Use APIServiceDeleteResponse.ProtoReflect.Descriptor instead.

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) String

func (x *APIServiceDeleteResponse) String() string

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) Descriptor deprecated

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

Deprecated: Use APIServiceGenerateAccessTokenRequest.ProtoReflect.Descriptor instead.

func (*APIServiceGenerateAccessTokenRequest) GetApiKey

func (*APIServiceGenerateAccessTokenRequest) GetId

func (*APIServiceGenerateAccessTokenRequest) ProtoMessage

func (*APIServiceGenerateAccessTokenRequest) ProtoMessage()

func (*APIServiceGenerateAccessTokenRequest) ProtoReflect

func (*APIServiceGenerateAccessTokenRequest) Reset

func (*APIServiceGenerateAccessTokenRequest) String

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) Descriptor deprecated

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

Deprecated: Use APIServiceGenerateAccessTokenResponse.ProtoReflect.Descriptor instead.

func (*APIServiceGenerateAccessTokenResponse) GetAccessToken

func (*APIServiceGenerateAccessTokenResponse) ProtoMessage

func (*APIServiceGenerateAccessTokenResponse) ProtoMessage()

func (*APIServiceGenerateAccessTokenResponse) ProtoReflect

func (*APIServiceGenerateAccessTokenResponse) Reset

func (*APIServiceGenerateAccessTokenResponse) String

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) Descriptor deprecated

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

Deprecated: Use APIServiceGetRequest.ProtoReflect.Descriptor instead.

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) String

func (x *APIServiceGetRequest) String() string

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) Descriptor deprecated

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

Deprecated: Use APIServiceGetResponse.ProtoReflect.Descriptor instead.

func (*APIServiceGetResponse) GetApiKey

func (x *APIServiceGetResponse) GetApiKey() *APIKey

func (*APIServiceGetResponse) ProtoMessage

func (*APIServiceGetResponse) ProtoMessage()

func (*APIServiceGetResponse) ProtoReflect

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

func (*APIServiceGetResponse) Reset

func (x *APIServiceGetResponse) Reset()

func (*APIServiceGetResponse) String

func (x *APIServiceGetResponse) String() string

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) Descriptor deprecated

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

Deprecated: Use APIServiceListRequest.ProtoReflect.Descriptor instead.

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) String

func (x *APIServiceListRequest) String() string

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) Descriptor deprecated

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

Deprecated: Use APIServiceListResponse.ProtoReflect.Descriptor instead.

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) String

func (x *APIServiceListResponse) String() string

type APIServicePingRequest

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

The request of a API.Ping RPC

func (*APIServicePingRequest) Descriptor deprecated

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

Deprecated: Use APIServicePingRequest.ProtoReflect.Descriptor instead.

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 APIServicePingResponse

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

The response of a API.Ping RPC

func (*APIServicePingResponse) Descriptor deprecated

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

Deprecated: Use APIServicePingResponse.ProtoReflect.Descriptor instead.

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 APIServicePublicKeyRequest

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

The request of a API.PublicKey RPC

func (*APIServicePublicKeyRequest) Descriptor deprecated

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

Deprecated: Use APIServicePublicKeyRequest.ProtoReflect.Descriptor instead.

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 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) Descriptor deprecated

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

Deprecated: Use APIServicePublicKeyResponse.ProtoReflect.Descriptor instead.

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) String

func (x *APIServicePublicKeyResponse) String() string

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) Descriptor deprecated

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

Deprecated: Use APIServiceUpdateStatusRequest.ProtoReflect.Descriptor instead.

func (*APIServiceUpdateStatusRequest) GetId

func (*APIServiceUpdateStatusRequest) GetStatus

func (*APIServiceUpdateStatusRequest) ProtoMessage

func (*APIServiceUpdateStatusRequest) ProtoMessage()

func (*APIServiceUpdateStatusRequest) ProtoReflect

func (*APIServiceUpdateStatusRequest) Reset

func (x *APIServiceUpdateStatusRequest) Reset()

func (*APIServiceUpdateStatusRequest) String

type APIServiceUpdateStatusResponse

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

The response of a API.UpdateStatus RPC

func (*APIServiceUpdateStatusResponse) Descriptor deprecated

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

Deprecated: Use APIServiceUpdateStatusResponse.ProtoReflect.Descriptor instead.

func (*APIServiceUpdateStatusResponse) ProtoMessage

func (*APIServiceUpdateStatusResponse) ProtoMessage()

func (*APIServiceUpdateStatusResponse) ProtoReflect

func (*APIServiceUpdateStatusResponse) Reset

func (x *APIServiceUpdateStatusResponse) Reset()

func (*APIServiceUpdateStatusResponse) String

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) Descriptor deprecated

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

Deprecated: Use APIServiceValidateAccessTokenRequest.ProtoReflect.Descriptor instead.

func (*APIServiceValidateAccessTokenRequest) GetJwt

func (*APIServiceValidateAccessTokenRequest) ProtoMessage

func (*APIServiceValidateAccessTokenRequest) ProtoMessage()

func (*APIServiceValidateAccessTokenRequest) ProtoReflect

func (*APIServiceValidateAccessTokenRequest) Reset

func (*APIServiceValidateAccessTokenRequest) String

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) Descriptor deprecated

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

Deprecated: Use APIServiceValidateAccessTokenResponse.ProtoReflect.Descriptor instead.

func (*APIServiceValidateAccessTokenResponse) GetAccessToken

func (*APIServiceValidateAccessTokenResponse) ProtoMessage

func (*APIServiceValidateAccessTokenResponse) ProtoMessage()

func (*APIServiceValidateAccessTokenResponse) ProtoReflect

func (*APIServiceValidateAccessTokenResponse) Reset

func (*APIServiceValidateAccessTokenResponse) String

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) Descriptor deprecated

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

Deprecated: Use AccessToken.ProtoReflect.Descriptor instead.

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) ProtoMessage

func (*AccessToken) ProtoMessage()

func (*AccessToken) ProtoReflect

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

func (*AccessToken) Reset

func (x *AccessToken) Reset()

func (*AccessToken) String

func (x *AccessToken) String() string

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) Descriptor deprecated

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

Deprecated: Use ApiAccess.ProtoReflect.Descriptor instead.

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) String

func (x *ApiAccess) String() string

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) Descriptor deprecated

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

Deprecated: Use Cluster.ProtoReflect.Descriptor instead.

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) String

func (x *Cluster) String() string

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) Descriptor deprecated

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

Deprecated: Use Image.ProtoReflect.Descriptor instead.

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) ProtoMessage

func (*Image) ProtoMessage()

func (*Image) ProtoReflect

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

func (*Image) Reset

func (x *Image) Reset()

func (*Image) String

func (x *Image) String() string

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) Descriptor deprecated

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

Deprecated: Use Member.ProtoReflect.Descriptor instead.

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) ProtoMessage

func (*Member) ProtoMessage()

func (*Member) ProtoReflect

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

func (*Member) Reset

func (x *Member) Reset()

func (*Member) String

func (x *Member) String() string

type MembersServicePingRequest

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

The request of a Member.Ping RPC

func (*MembersServicePingRequest) Descriptor deprecated

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

Deprecated: Use MembersServicePingRequest.ProtoReflect.Descriptor instead.

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 MembersServicePingResponse

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

The response of a Member.Ping RPC

func (*MembersServicePingResponse) Descriptor deprecated

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

Deprecated: Use MembersServicePingResponse.ProtoReflect.Descriptor instead.

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 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) Descriptor deprecated

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

Deprecated: Use MembersServiceUpdateMemberTypeRequest.ProtoReflect.Descriptor instead.

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) String

type MembersServiceUpdateMemberTypeResponse

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

The request of a Member.UpdateMemberType RPC

func (*MembersServiceUpdateMemberTypeResponse) Descriptor deprecated

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

Deprecated: Use MembersServiceUpdateMemberTypeResponse.ProtoReflect.Descriptor instead.

func (*MembersServiceUpdateMemberTypeResponse) ProtoMessage

func (*MembersServiceUpdateMemberTypeResponse) ProtoReflect

func (*MembersServiceUpdateMemberTypeResponse) Reset

func (*MembersServiceUpdateMemberTypeResponse) String

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) Descriptor deprecated

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

Deprecated: Use Organization.ProtoReflect.Descriptor instead.

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) ProtoMessage

func (*Organization) ProtoMessage()

func (*Organization) ProtoReflect

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

func (*Organization) Reset

func (x *Organization) Reset()

func (*Organization) String

func (x *Organization) String() string

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) Descriptor deprecated

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

Deprecated: Use Project.ProtoReflect.Descriptor instead.

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) ProtoMessage

func (*Project) ProtoMessage()

func (*Project) ProtoReflect

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

func (*Project) Reset

func (x *Project) Reset()

func (*Project) String

func (x *Project) String() string

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) Descriptor deprecated

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

Deprecated: Use ProjectsServiceCreateRequest.ProtoReflect.Descriptor instead.

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) ProtoMessage

func (*ProjectsServiceCreateRequest) ProtoMessage()

func (*ProjectsServiceCreateRequest) ProtoReflect

func (*ProjectsServiceCreateRequest) Reset

func (x *ProjectsServiceCreateRequest) Reset()

func (*ProjectsServiceCreateRequest) String

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) Descriptor deprecated

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

Deprecated: Use ProjectsServiceCreateResponse.ProtoReflect.Descriptor instead.

func (*ProjectsServiceCreateResponse) GetProject

func (x *ProjectsServiceCreateResponse) GetProject() *Project

func (*ProjectsServiceCreateResponse) ProtoMessage

func (*ProjectsServiceCreateResponse) ProtoMessage()

func (*ProjectsServiceCreateResponse) ProtoReflect

func (*ProjectsServiceCreateResponse) Reset

func (x *ProjectsServiceCreateResponse) Reset()

func (*ProjectsServiceCreateResponse) String

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) Descriptor deprecated

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

Deprecated: Use ProjectsServiceDeleteRequest.ProtoReflect.Descriptor instead.

func (*ProjectsServiceDeleteRequest) GetId

func (*ProjectsServiceDeleteRequest) ProtoMessage

func (*ProjectsServiceDeleteRequest) ProtoMessage()

func (*ProjectsServiceDeleteRequest) ProtoReflect

func (*ProjectsServiceDeleteRequest) Reset

func (x *ProjectsServiceDeleteRequest) Reset()

func (*ProjectsServiceDeleteRequest) String

type ProjectsServiceDeleteResponse

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

The response of a Project.Delete RPC

func (*ProjectsServiceDeleteResponse) Descriptor deprecated

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

Deprecated: Use ProjectsServiceDeleteResponse.ProtoReflect.Descriptor instead.

func (*ProjectsServiceDeleteResponse) ProtoMessage

func (*ProjectsServiceDeleteResponse) ProtoMessage()

func (*ProjectsServiceDeleteResponse) ProtoReflect

func (*ProjectsServiceDeleteResponse) Reset

func (x *ProjectsServiceDeleteResponse) Reset()

func (*ProjectsServiceDeleteResponse) String

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) Descriptor deprecated

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

Deprecated: Use ProjectsServiceDisableMongoRequest.ProtoReflect.Descriptor instead.

func (*ProjectsServiceDisableMongoRequest) GetId

func (*ProjectsServiceDisableMongoRequest) ProtoMessage

func (*ProjectsServiceDisableMongoRequest) ProtoMessage()

func (*ProjectsServiceDisableMongoRequest) ProtoReflect

func (*ProjectsServiceDisableMongoRequest) Reset

func (*ProjectsServiceDisableMongoRequest) String

type ProjectsServiceDisableMongoResponse

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

The response of a Project.DisableMongo RPC

func (*ProjectsServiceDisableMongoResponse) Descriptor deprecated

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

Deprecated: Use ProjectsServiceDisableMongoResponse.ProtoReflect.Descriptor instead.

func (*ProjectsServiceDisableMongoResponse) ProtoMessage

func (*ProjectsServiceDisableMongoResponse) ProtoMessage()

func (*ProjectsServiceDisableMongoResponse) ProtoReflect

func (*ProjectsServiceDisableMongoResponse) Reset

func (*ProjectsServiceDisableMongoResponse) String

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) Descriptor deprecated

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

Deprecated: Use ProjectsServiceDisablePostgresRequest.ProtoReflect.Descriptor instead.

func (*ProjectsServiceDisablePostgresRequest) GetId

func (*ProjectsServiceDisablePostgresRequest) ProtoMessage

func (*ProjectsServiceDisablePostgresRequest) ProtoMessage()

func (*ProjectsServiceDisablePostgresRequest) ProtoReflect

func (*ProjectsServiceDisablePostgresRequest) Reset

func (*ProjectsServiceDisablePostgresRequest) String

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) Descriptor deprecated

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

Deprecated: Use ProjectsServiceDisablePostgresResponse.ProtoReflect.Descriptor instead.

func (*ProjectsServiceDisablePostgresResponse) GetId

func (*ProjectsServiceDisablePostgresResponse) ProtoMessage

func (*ProjectsServiceDisablePostgresResponse) ProtoReflect

func (*ProjectsServiceDisablePostgresResponse) Reset

func (*ProjectsServiceDisablePostgresResponse) String

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) Descriptor deprecated

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

Deprecated: Use ProjectsServiceDisableStorageRequest.ProtoReflect.Descriptor instead.

func (*ProjectsServiceDisableStorageRequest) GetId

func (*ProjectsServiceDisableStorageRequest) ProtoMessage

func (*ProjectsServiceDisableStorageRequest) ProtoMessage()

func (*ProjectsServiceDisableStorageRequest) ProtoReflect

func (*ProjectsServiceDisableStorageRequest) Reset

func (*ProjectsServiceDisableStorageRequest) String

type ProjectsServiceDisableStorageResponse

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

The response of a Project.DisableStorage RPC

func (*ProjectsServiceDisableStorageResponse) Descriptor deprecated

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

Deprecated: Use ProjectsServiceDisableStorageResponse.ProtoReflect.Descriptor instead.

func (*ProjectsServiceDisableStorageResponse) ProtoMessage

func (*ProjectsServiceDisableStorageResponse) ProtoMessage()

func (*ProjectsServiceDisableStorageResponse) ProtoReflect

func (*ProjectsServiceDisableStorageResponse) Reset

func (*ProjectsServiceDisableStorageResponse) String

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) Descriptor deprecated

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

Deprecated: Use ProjectsServiceDisableUsersRequest.ProtoReflect.Descriptor instead.

func (*ProjectsServiceDisableUsersRequest) GetId

func (*ProjectsServiceDisableUsersRequest) ProtoMessage

func (*ProjectsServiceDisableUsersRequest) ProtoMessage()

func (*ProjectsServiceDisableUsersRequest) ProtoReflect

func (*ProjectsServiceDisableUsersRequest) Reset

func (*ProjectsServiceDisableUsersRequest) String

type ProjectsServiceDisableUsersResponse

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

The response of a Project.DisableUsers RPC

func (*ProjectsServiceDisableUsersResponse) Descriptor deprecated

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

Deprecated: Use ProjectsServiceDisableUsersResponse.ProtoReflect.Descriptor instead.

func (*ProjectsServiceDisableUsersResponse) ProtoMessage

func (*ProjectsServiceDisableUsersResponse) ProtoMessage()

func (*ProjectsServiceDisableUsersResponse) ProtoReflect

func (*ProjectsServiceDisableUsersResponse) Reset

func (*ProjectsServiceDisableUsersResponse) String

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) Descriptor deprecated

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

Deprecated: Use ProjectsServiceEnableMongoRequest.ProtoReflect.Descriptor instead.

func (*ProjectsServiceEnableMongoRequest) GetId

func (*ProjectsServiceEnableMongoRequest) ProtoMessage

func (*ProjectsServiceEnableMongoRequest) ProtoMessage()

func (*ProjectsServiceEnableMongoRequest) ProtoReflect

func (*ProjectsServiceEnableMongoRequest) Reset

func (*ProjectsServiceEnableMongoRequest) String

type ProjectsServiceEnableMongoResponse

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

The response of a Project.EnableMongo RPC

func (*ProjectsServiceEnableMongoResponse) Descriptor deprecated

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

Deprecated: Use ProjectsServiceEnableMongoResponse.ProtoReflect.Descriptor instead.

func (*ProjectsServiceEnableMongoResponse) ProtoMessage

func (*ProjectsServiceEnableMongoResponse) ProtoMessage()

func (*ProjectsServiceEnableMongoResponse) ProtoReflect

func (*ProjectsServiceEnableMongoResponse) Reset

func (*ProjectsServiceEnableMongoResponse) String

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) Descriptor deprecated

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

Deprecated: Use ProjectsServiceEnablePostgresRequest.ProtoReflect.Descriptor instead.

func (*ProjectsServiceEnablePostgresRequest) GetId

func (*ProjectsServiceEnablePostgresRequest) ProtoMessage

func (*ProjectsServiceEnablePostgresRequest) ProtoMessage()

func (*ProjectsServiceEnablePostgresRequest) ProtoReflect

func (*ProjectsServiceEnablePostgresRequest) Reset

func (*ProjectsServiceEnablePostgresRequest) String

type ProjectsServiceEnablePostgresResponse

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

The response of a Project.EnablePostgres RPC

func (*ProjectsServiceEnablePostgresResponse) Descriptor deprecated

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

Deprecated: Use ProjectsServiceEnablePostgresResponse.ProtoReflect.Descriptor instead.

func (*ProjectsServiceEnablePostgresResponse) ProtoMessage

func (*ProjectsServiceEnablePostgresResponse) ProtoMessage()

func (*ProjectsServiceEnablePostgresResponse) ProtoReflect

func (*ProjectsServiceEnablePostgresResponse) Reset

func (*ProjectsServiceEnablePostgresResponse) String

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) Descriptor deprecated

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

Deprecated: Use ProjectsServiceEnableStorageRequest.ProtoReflect.Descriptor instead.

func (*ProjectsServiceEnableStorageRequest) GetId

func (*ProjectsServiceEnableStorageRequest) ProtoMessage

func (*ProjectsServiceEnableStorageRequest) ProtoMessage()

func (*ProjectsServiceEnableStorageRequest) ProtoReflect

func (*ProjectsServiceEnableStorageRequest) Reset

func (*ProjectsServiceEnableStorageRequest) String

type ProjectsServiceEnableStorageResponse

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

The response of a Project.EnableStorage RPC

func (*ProjectsServiceEnableStorageResponse) Descriptor deprecated

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

Deprecated: Use ProjectsServiceEnableStorageResponse.ProtoReflect.Descriptor instead.

func (*ProjectsServiceEnableStorageResponse) ProtoMessage

func (*ProjectsServiceEnableStorageResponse) ProtoMessage()

func (*ProjectsServiceEnableStorageResponse) ProtoReflect

func (*ProjectsServiceEnableStorageResponse) Reset

func (*ProjectsServiceEnableStorageResponse) String

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) Descriptor deprecated

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

Deprecated: Use ProjectsServiceEnableUsersRequest.ProtoReflect.Descriptor instead.

func (*ProjectsServiceEnableUsersRequest) GetId

func (*ProjectsServiceEnableUsersRequest) ProtoMessage

func (*ProjectsServiceEnableUsersRequest) ProtoMessage()

func (*ProjectsServiceEnableUsersRequest) ProtoReflect

func (*ProjectsServiceEnableUsersRequest) Reset

func (*ProjectsServiceEnableUsersRequest) String

type ProjectsServiceEnableUsersResponse

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

The response of a Project.EnableUsers RPC

func (*ProjectsServiceEnableUsersResponse) Descriptor deprecated

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

Deprecated: Use ProjectsServiceEnableUsersResponse.ProtoReflect.Descriptor instead.

func (*ProjectsServiceEnableUsersResponse) ProtoMessage

func (*ProjectsServiceEnableUsersResponse) ProtoMessage()

func (*ProjectsServiceEnableUsersResponse) ProtoReflect

func (*ProjectsServiceEnableUsersResponse) Reset

func (*ProjectsServiceEnableUsersResponse) String

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) Descriptor deprecated

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

Deprecated: Use ProjectsServiceGetRequest.ProtoReflect.Descriptor instead.

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) String

func (x *ProjectsServiceGetRequest) String() string

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) Descriptor deprecated

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

Deprecated: Use ProjectsServiceGetResponse.ProtoReflect.Descriptor instead.

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) ProtoMessage

func (*ProjectsServiceGetResponse) ProtoMessage()

func (*ProjectsServiceGetResponse) ProtoReflect

func (*ProjectsServiceGetResponse) Reset

func (x *ProjectsServiceGetResponse) Reset()

func (*ProjectsServiceGetResponse) String

func (x *ProjectsServiceGetResponse) String() string

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) Descriptor deprecated

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

Deprecated: Use ProjectsServiceListRequest.ProtoReflect.Descriptor instead.

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) ProtoMessage

func (*ProjectsServiceListRequest) ProtoMessage()

func (*ProjectsServiceListRequest) ProtoReflect

func (*ProjectsServiceListRequest) Reset

func (x *ProjectsServiceListRequest) Reset()

func (*ProjectsServiceListRequest) String

func (x *ProjectsServiceListRequest) String() string

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) Descriptor deprecated

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

Deprecated: Use ProjectsServiceListResponse.ProtoReflect.Descriptor instead.

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) ProtoMessage

func (*ProjectsServiceListResponse) ProtoMessage()

func (*ProjectsServiceListResponse) ProtoReflect

func (*ProjectsServiceListResponse) Reset

func (x *ProjectsServiceListResponse) Reset()

func (*ProjectsServiceListResponse) String

func (x *ProjectsServiceListResponse) String() string

type ProjectsServicePingRequest

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

The request of a Project.Ping RPC

func (*ProjectsServicePingRequest) Descriptor deprecated

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

Deprecated: Use ProjectsServicePingRequest.ProtoReflect.Descriptor instead.

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 ProjectsServicePingResponse

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

The response of a Project.Ping RPC

func (*ProjectsServicePingResponse) Descriptor deprecated

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

Deprecated: Use ProjectsServicePingResponse.ProtoReflect.Descriptor instead.

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 ProjectsServicePublicKeyRequest

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

The request of a Project.PublicKey RPC

func (*ProjectsServicePublicKeyRequest) Descriptor deprecated

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

Deprecated: Use ProjectsServicePublicKeyRequest.ProtoReflect.Descriptor instead.

func (*ProjectsServicePublicKeyRequest) ProtoMessage

func (*ProjectsServicePublicKeyRequest) ProtoMessage()

func (*ProjectsServicePublicKeyRequest) ProtoReflect

func (*ProjectsServicePublicKeyRequest) Reset

func (*ProjectsServicePublicKeyRequest) String

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) Descriptor deprecated

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

Deprecated: Use ProjectsServicePublicKeyResponse.ProtoReflect.Descriptor instead.

func (*ProjectsServicePublicKeyResponse) GetPublicKey

func (x *ProjectsServicePublicKeyResponse) GetPublicKey() string

func (*ProjectsServicePublicKeyResponse) ProtoMessage

func (*ProjectsServicePublicKeyResponse) ProtoMessage()

func (*ProjectsServicePublicKeyResponse) ProtoReflect

func (*ProjectsServicePublicKeyResponse) Reset

func (*ProjectsServicePublicKeyResponse) String

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 (*ProjectsServiceUpdateRequest) Descriptor deprecated

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

Deprecated: Use ProjectsServiceUpdateRequest.ProtoReflect.Descriptor instead.

func (*ProjectsServiceUpdateRequest) GetId

func (x *ProjectsServiceUpdateRequest) GetLogo() string

func (*ProjectsServiceUpdateRequest) GetName

func (x *ProjectsServiceUpdateRequest) GetName() string

func (*ProjectsServiceUpdateRequest) ProtoMessage

func (*ProjectsServiceUpdateRequest) ProtoMessage()

func (*ProjectsServiceUpdateRequest) ProtoReflect

func (*ProjectsServiceUpdateRequest) Reset

func (x *ProjectsServiceUpdateRequest) Reset()

func (*ProjectsServiceUpdateRequest) String

type ProjectsServiceUpdateResponse

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

The response of a Project.Update RPC

func (*ProjectsServiceUpdateResponse) Descriptor deprecated

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

Deprecated: Use ProjectsServiceUpdateResponse.ProtoReflect.Descriptor instead.

func (*ProjectsServiceUpdateResponse) ProtoMessage

func (*ProjectsServiceUpdateResponse) ProtoMessage()

func (*ProjectsServiceUpdateResponse) ProtoReflect

func (*ProjectsServiceUpdateResponse) Reset

func (x *ProjectsServiceUpdateResponse) Reset()

func (*ProjectsServiceUpdateResponse) String

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) EnumDescriptor deprecated

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

Deprecated: Use TokenType.Descriptor instead.

func (TokenType) Number

func (x TokenType) Number() protoreflect.EnumNumber

func (TokenType) String

func (x TokenType) String() string

func (TokenType) Type

Jump to

Keyboard shortcuts

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