deploymentsv1alpha1

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 (
	ProgrammingLanguage_name = map[int32]string{
		0: "PROGRAMMING_LANGUAGE_UNSPECIFIED",
		1: "PROGRAMMING_LANGUAGE_GO",
	}
	ProgrammingLanguage_value = map[string]int32{
		"PROGRAMMING_LANGUAGE_UNSPECIFIED": 0,
		"PROGRAMMING_LANGUAGE_GO":          1,
	}
)

Enum value maps for ProgrammingLanguage.

View Source
var (
	GitOwnerType_name = map[int32]string{
		0: "GIT_OWNER_TYPE_UNSPECIFIED",
		1: "GIT_OWNER_TYPE_ORGANIZATION",
		2: "GIT_OWNER_TYPE_USER",
	}
	GitOwnerType_value = map[string]int32{
		"GIT_OWNER_TYPE_UNSPECIFIED":  0,
		"GIT_OWNER_TYPE_ORGANIZATION": 1,
		"GIT_OWNER_TYPE_USER":         2,
	}
)

Enum value maps for GitOwnerType.

View Source
var (
	GitProvider_name = map[int32]string{
		0: "GIT_PROVIDER_UNSPECIFIED",
		1: "GIT_PROVIDER_GITHUB",
		2: "GIT_PROVIDER_GITLAB",
	}
	GitProvider_value = map[string]int32{
		"GIT_PROVIDER_UNSPECIFIED": 0,
		"GIT_PROVIDER_GITHUB":      1,
		"GIT_PROVIDER_GITLAB":      2,
	}
)

Enum value maps for GitProvider.

View Source
var File_nuntio_deployments_v1alpha1_deployments_git_proto protoreflect.FileDescriptor
View Source
var File_nuntio_deployments_v1alpha1_deployments_messages_proto protoreflect.FileDescriptor
View Source
var File_nuntio_deployments_v1alpha1_deployments_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type DeploymentsServiceCreateRequest

type DeploymentsServiceCreateRequest struct {

	// the provider you want to fetch repositories from
	Provider GitProvider `protobuf:"varint,1,opt,name=provider,proto3,enum=nuntio.deployments.v1alpha1.GitProvider" json:"provider,omitempty"`
	// the project/user you want to fetch repositories from
	Owner string `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
	// optional value to only list until a limit
	Limit *int32 `protobuf:"varint,3,opt,name=limit,proto3,oneof" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

The request of a Deployments.Create RPC

func (*DeploymentsServiceCreateRequest) ClearLimit

func (x *DeploymentsServiceCreateRequest) ClearLimit()

func (*DeploymentsServiceCreateRequest) GetLimit

func (x *DeploymentsServiceCreateRequest) GetLimit() int32

func (*DeploymentsServiceCreateRequest) GetOwner

func (*DeploymentsServiceCreateRequest) GetProvider

func (*DeploymentsServiceCreateRequest) HasLimit

func (x *DeploymentsServiceCreateRequest) HasLimit() bool

func (*DeploymentsServiceCreateRequest) ProtoMessage

func (*DeploymentsServiceCreateRequest) ProtoMessage()

func (*DeploymentsServiceCreateRequest) ProtoReflect

func (*DeploymentsServiceCreateRequest) Reset

func (*DeploymentsServiceCreateRequest) SetLimit

func (x *DeploymentsServiceCreateRequest) SetLimit(v int32)

func (*DeploymentsServiceCreateRequest) SetOwner

func (x *DeploymentsServiceCreateRequest) SetOwner(v string)

func (*DeploymentsServiceCreateRequest) SetProvider

func (x *DeploymentsServiceCreateRequest) SetProvider(v GitProvider)

func (*DeploymentsServiceCreateRequest) String

type DeploymentsServiceCreateRequest_builder

type DeploymentsServiceCreateRequest_builder struct {

	// the provider you want to fetch repositories from
	Provider GitProvider
	// the project/user you want to fetch repositories from
	Owner string
	// optional value to only list until a limit
	Limit *int32
	// contains filtered or unexported fields
}

func (DeploymentsServiceCreateRequest_builder) Build

type DeploymentsServiceCreateResponse

type DeploymentsServiceCreateResponse struct {
	Repositories []*GitRepository `protobuf:"bytes,1,rep,name=repositories,proto3" json:"repositories,omitempty"`
	// contains filtered or unexported fields
}

The response of a Deployments.Create RPC

func (*DeploymentsServiceCreateResponse) GetRepositories

func (x *DeploymentsServiceCreateResponse) GetRepositories() []*GitRepository

func (*DeploymentsServiceCreateResponse) ProtoMessage

func (*DeploymentsServiceCreateResponse) ProtoMessage()

func (*DeploymentsServiceCreateResponse) ProtoReflect

func (*DeploymentsServiceCreateResponse) Reset

func (*DeploymentsServiceCreateResponse) SetRepositories

func (x *DeploymentsServiceCreateResponse) SetRepositories(v []*GitRepository)

func (*DeploymentsServiceCreateResponse) String

type DeploymentsServiceCreateResponse_builder

type DeploymentsServiceCreateResponse_builder struct {
	Repositories []*GitRepository
	// contains filtered or unexported fields
}

func (DeploymentsServiceCreateResponse_builder) Build

type DeploymentsServicePingRequest

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

The request of a Deployments.Ping RPC

func (*DeploymentsServicePingRequest) ProtoMessage

func (*DeploymentsServicePingRequest) ProtoMessage()

func (*DeploymentsServicePingRequest) ProtoReflect

func (*DeploymentsServicePingRequest) Reset

func (x *DeploymentsServicePingRequest) Reset()

func (*DeploymentsServicePingRequest) String

type DeploymentsServicePingRequest_builder

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

func (DeploymentsServicePingRequest_builder) Build

type DeploymentsServicePingResponse

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

The response of a Deployments.Ping RPC

func (*DeploymentsServicePingResponse) ProtoMessage

func (*DeploymentsServicePingResponse) ProtoMessage()

func (*DeploymentsServicePingResponse) ProtoReflect

func (*DeploymentsServicePingResponse) Reset

func (x *DeploymentsServicePingResponse) Reset()

func (*DeploymentsServicePingResponse) String

type DeploymentsServicePingResponse_builder

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

func (DeploymentsServicePingResponse_builder) Build

type GitOrganization

type GitOrganization 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"`
	AvatarUrl string `protobuf:"bytes,3,opt,name=avatar_url,json=avatarUrl,proto3" json:"avatar_url,omitempty"`
	// contains filtered or unexported fields
}

func (*GitOrganization) GetAvatarUrl

func (x *GitOrganization) GetAvatarUrl() string

func (*GitOrganization) GetId

func (x *GitOrganization) GetId() string

func (*GitOrganization) GetName

func (x *GitOrganization) GetName() string

func (*GitOrganization) ProtoMessage

func (*GitOrganization) ProtoMessage()

func (*GitOrganization) ProtoReflect

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

func (*GitOrganization) Reset

func (x *GitOrganization) Reset()

func (*GitOrganization) SetAvatarUrl

func (x *GitOrganization) SetAvatarUrl(v string)

func (*GitOrganization) SetId

func (x *GitOrganization) SetId(v string)

func (*GitOrganization) SetName

func (x *GitOrganization) SetName(v string)

func (*GitOrganization) String

func (x *GitOrganization) String() string

type GitOrganization_builder

type GitOrganization_builder struct {
	Id        string
	Name      string
	AvatarUrl string
	// contains filtered or unexported fields
}

func (GitOrganization_builder) Build

type GitOwner

type GitOwner struct {
	Id        string       `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	AvatarUrl string       `protobuf:"bytes,2,opt,name=avatar_url,json=avatarUrl,proto3" json:"avatar_url,omitempty"`
	Name      string       `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Type      GitOwnerType `protobuf:"varint,4,opt,name=type,proto3,enum=nuntio.deployments.v1alpha1.GitOwnerType" json:"type,omitempty"`
	Url       string       `protobuf:"bytes,5,opt,name=url,proto3" json:"url,omitempty"`
	// contains filtered or unexported fields
}

func (*GitOwner) GetAvatarUrl

func (x *GitOwner) GetAvatarUrl() string

func (*GitOwner) GetId

func (x *GitOwner) GetId() string

func (*GitOwner) GetName

func (x *GitOwner) GetName() string

func (*GitOwner) GetType

func (x *GitOwner) GetType() GitOwnerType

func (*GitOwner) GetUrl

func (x *GitOwner) GetUrl() string

func (*GitOwner) ProtoMessage

func (*GitOwner) ProtoMessage()

func (*GitOwner) ProtoReflect

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

func (*GitOwner) Reset

func (x *GitOwner) Reset()

func (*GitOwner) SetAvatarUrl

func (x *GitOwner) SetAvatarUrl(v string)

func (*GitOwner) SetId

func (x *GitOwner) SetId(v string)

func (*GitOwner) SetName

func (x *GitOwner) SetName(v string)

func (*GitOwner) SetType

func (x *GitOwner) SetType(v GitOwnerType)

func (*GitOwner) SetUrl

func (x *GitOwner) SetUrl(v string)

func (*GitOwner) String

func (x *GitOwner) String() string

type GitOwnerType

type GitOwnerType int32
const (
	GitOwnerType_GIT_OWNER_TYPE_UNSPECIFIED  GitOwnerType = 0
	GitOwnerType_GIT_OWNER_TYPE_ORGANIZATION GitOwnerType = 1
	GitOwnerType_GIT_OWNER_TYPE_USER         GitOwnerType = 2
)

func (GitOwnerType) Descriptor

func (GitOwnerType) Enum

func (x GitOwnerType) Enum() *GitOwnerType

func (GitOwnerType) Number

func (GitOwnerType) String

func (x GitOwnerType) String() string

func (GitOwnerType) Type

type GitOwner_builder

type GitOwner_builder struct {
	Id        string
	AvatarUrl string
	Name      string
	Type      GitOwnerType
	Url       string
	// contains filtered or unexported fields
}

func (GitOwner_builder) Build

func (b0 GitOwner_builder) Build() *GitOwner

type GitProvider

type GitProvider int32
const (
	GitProvider_GIT_PROVIDER_UNSPECIFIED GitProvider = 0
	GitProvider_GIT_PROVIDER_GITHUB      GitProvider = 1
	GitProvider_GIT_PROVIDER_GITLAB      GitProvider = 2
)

func (GitProvider) Descriptor

func (GitProvider) Enum

func (x GitProvider) Enum() *GitProvider

func (GitProvider) Number

func (x GitProvider) Number() protoreflect.EnumNumber

func (GitProvider) String

func (x GitProvider) String() string

func (GitProvider) Type

type GitRepository

type GitRepository 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"`
	Private     bool                `protobuf:"varint,3,opt,name=private,proto3" json:"private,omitempty"`
	Description string              `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
	Owner       *GitOwner           `protobuf:"bytes,5,opt,name=owner,proto3" json:"owner,omitempty"`
	Language    ProgrammingLanguage `protobuf:"varint,6,opt,name=language,proto3,enum=nuntio.deployments.v1alpha1.ProgrammingLanguage" json:"language,omitempty"`
	// contains filtered or unexported fields
}

func (*GitRepository) ClearOwner

func (x *GitRepository) ClearOwner()

func (*GitRepository) GetDescription

func (x *GitRepository) GetDescription() string

func (*GitRepository) GetId

func (x *GitRepository) GetId() string

func (*GitRepository) GetLanguage

func (x *GitRepository) GetLanguage() ProgrammingLanguage

func (*GitRepository) GetName

func (x *GitRepository) GetName() string

func (*GitRepository) GetOwner

func (x *GitRepository) GetOwner() *GitOwner

func (*GitRepository) GetPrivate

func (x *GitRepository) GetPrivate() bool

func (*GitRepository) HasOwner

func (x *GitRepository) HasOwner() bool

func (*GitRepository) ProtoMessage

func (*GitRepository) ProtoMessage()

func (*GitRepository) ProtoReflect

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

func (*GitRepository) Reset

func (x *GitRepository) Reset()

func (*GitRepository) SetDescription

func (x *GitRepository) SetDescription(v string)

func (*GitRepository) SetId

func (x *GitRepository) SetId(v string)

func (*GitRepository) SetLanguage

func (x *GitRepository) SetLanguage(v ProgrammingLanguage)

func (*GitRepository) SetName

func (x *GitRepository) SetName(v string)

func (*GitRepository) SetOwner

func (x *GitRepository) SetOwner(v *GitOwner)

func (*GitRepository) SetPrivate

func (x *GitRepository) SetPrivate(v bool)

func (*GitRepository) String

func (x *GitRepository) String() string

type GitRepository_builder

type GitRepository_builder struct {
	Id          string
	Name        string
	Private     bool
	Description string
	Owner       *GitOwner
	Language    ProgrammingLanguage
	// contains filtered or unexported fields
}

func (GitRepository_builder) Build

type GitServiceCreateRepositoryRequest

type GitServiceCreateRepositoryRequest struct {

	// the provider you want to fetch repositories from
	Provider GitProvider `protobuf:"varint,1,opt,name=provider,proto3,enum=nuntio.deployments.v1alpha1.GitProvider" json:"provider,omitempty"`
	// the project/user you want to fetch repositories from
	Owner string `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
	// the name of the project
	Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	// whether the project is private or public
	Private bool `protobuf:"varint,4,opt,name=private,proto3" json:"private,omitempty"`
	// the template owner
	TemplateOwner string `protobuf:"bytes,5,opt,name=template_owner,json=templateOwner,proto3" json:"template_owner,omitempty"`
	// the tempalte repository
	TemplateRepository string `protobuf:"bytes,6,opt,name=template_repository,json=templateRepository,proto3" json:"template_repository,omitempty"`
	// contains filtered or unexported fields
}

The request of a Git.CreateRepository RPC

func (*GitServiceCreateRepositoryRequest) GetName

func (*GitServiceCreateRepositoryRequest) GetOwner

func (*GitServiceCreateRepositoryRequest) GetPrivate

func (x *GitServiceCreateRepositoryRequest) GetPrivate() bool

func (*GitServiceCreateRepositoryRequest) GetProvider

func (*GitServiceCreateRepositoryRequest) GetTemplateOwner

func (x *GitServiceCreateRepositoryRequest) GetTemplateOwner() string

func (*GitServiceCreateRepositoryRequest) GetTemplateRepository

func (x *GitServiceCreateRepositoryRequest) GetTemplateRepository() string

func (*GitServiceCreateRepositoryRequest) ProtoMessage

func (*GitServiceCreateRepositoryRequest) ProtoMessage()

func (*GitServiceCreateRepositoryRequest) ProtoReflect

func (*GitServiceCreateRepositoryRequest) Reset

func (*GitServiceCreateRepositoryRequest) SetName

func (*GitServiceCreateRepositoryRequest) SetOwner

func (*GitServiceCreateRepositoryRequest) SetPrivate

func (x *GitServiceCreateRepositoryRequest) SetPrivate(v bool)

func (*GitServiceCreateRepositoryRequest) SetProvider

func (*GitServiceCreateRepositoryRequest) SetTemplateOwner

func (x *GitServiceCreateRepositoryRequest) SetTemplateOwner(v string)

func (*GitServiceCreateRepositoryRequest) SetTemplateRepository

func (x *GitServiceCreateRepositoryRequest) SetTemplateRepository(v string)

func (*GitServiceCreateRepositoryRequest) String

type GitServiceCreateRepositoryRequest_builder

type GitServiceCreateRepositoryRequest_builder struct {

	// the provider you want to fetch repositories from
	Provider GitProvider
	// the project/user you want to fetch repositories from
	Owner string
	// the name of the project
	Name string
	// whether the project is private or public
	Private bool
	// the template owner
	TemplateOwner string
	// the tempalte repository
	TemplateRepository string
	// contains filtered or unexported fields
}

func (GitServiceCreateRepositoryRequest_builder) Build

type GitServiceCreateRepositoryResponse

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

The response of a Git.CreateRepository RPC

func (*GitServiceCreateRepositoryResponse) ProtoMessage

func (*GitServiceCreateRepositoryResponse) ProtoMessage()

func (*GitServiceCreateRepositoryResponse) ProtoReflect

func (*GitServiceCreateRepositoryResponse) Reset

func (*GitServiceCreateRepositoryResponse) String

type GitServiceCreateRepositoryResponse_builder

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

func (GitServiceCreateRepositoryResponse_builder) Build

type GitServiceOrganizationsRequest

type GitServiceOrganizationsRequest struct {

	// the provider you want to fetch repositories from
	Provider GitProvider `protobuf:"varint,1,opt,name=provider,proto3,enum=nuntio.deployments.v1alpha1.GitProvider" json:"provider,omitempty"`
	// contains filtered or unexported fields
}

The request of a Git.Organizations RPC

func (*GitServiceOrganizationsRequest) GetProvider

func (*GitServiceOrganizationsRequest) ProtoMessage

func (*GitServiceOrganizationsRequest) ProtoMessage()

func (*GitServiceOrganizationsRequest) ProtoReflect

func (*GitServiceOrganizationsRequest) Reset

func (x *GitServiceOrganizationsRequest) Reset()

func (*GitServiceOrganizationsRequest) SetProvider

func (x *GitServiceOrganizationsRequest) SetProvider(v GitProvider)

func (*GitServiceOrganizationsRequest) String

type GitServiceOrganizationsRequest_builder

type GitServiceOrganizationsRequest_builder struct {

	// the provider you want to fetch repositories from
	Provider GitProvider
	// contains filtered or unexported fields
}

func (GitServiceOrganizationsRequest_builder) Build

type GitServiceOrganizationsResponse

type GitServiceOrganizationsResponse struct {
	Organizations []*GitOrganization `protobuf:"bytes,1,rep,name=organizations,proto3" json:"organizations,omitempty"`
	// contains filtered or unexported fields
}

The response of a Git.Organizations RPC

func (*GitServiceOrganizationsResponse) GetOrganizations

func (x *GitServiceOrganizationsResponse) GetOrganizations() []*GitOrganization

func (*GitServiceOrganizationsResponse) ProtoMessage

func (*GitServiceOrganizationsResponse) ProtoMessage()

func (*GitServiceOrganizationsResponse) ProtoReflect

func (*GitServiceOrganizationsResponse) Reset

func (*GitServiceOrganizationsResponse) SetOrganizations

func (x *GitServiceOrganizationsResponse) SetOrganizations(v []*GitOrganization)

func (*GitServiceOrganizationsResponse) String

type GitServiceOrganizationsResponse_builder

type GitServiceOrganizationsResponse_builder struct {
	Organizations []*GitOrganization
	// contains filtered or unexported fields
}

func (GitServiceOrganizationsResponse_builder) Build

type GitServicePingRequest

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

The request of a Git.Ping RPC

func (*GitServicePingRequest) ProtoMessage

func (*GitServicePingRequest) ProtoMessage()

func (*GitServicePingRequest) ProtoReflect

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

func (*GitServicePingRequest) Reset

func (x *GitServicePingRequest) Reset()

func (*GitServicePingRequest) String

func (x *GitServicePingRequest) String() string

type GitServicePingRequest_builder

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

func (GitServicePingRequest_builder) Build

type GitServicePingResponse

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

The response of a Git.Ping RPC

func (*GitServicePingResponse) ProtoMessage

func (*GitServicePingResponse) ProtoMessage()

func (*GitServicePingResponse) ProtoReflect

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

func (*GitServicePingResponse) Reset

func (x *GitServicePingResponse) Reset()

func (*GitServicePingResponse) String

func (x *GitServicePingResponse) String() string

type GitServicePingResponse_builder

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

func (GitServicePingResponse_builder) Build

type GitServiceRepositoriesRequest

type GitServiceRepositoriesRequest struct {

	// the provider you want to fetch repositories from
	Provider GitProvider `protobuf:"varint,1,opt,name=provider,proto3,enum=nuntio.deployments.v1alpha1.GitProvider" json:"provider,omitempty"`
	// the project/user you want to fetch repositories from
	Owner string `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
	// optional value to only list until a limit
	Limit *int32 `protobuf:"varint,3,opt,name=limit,proto3,oneof" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

The request of a Git.Repositories RPC

func (*GitServiceRepositoriesRequest) ClearLimit

func (x *GitServiceRepositoriesRequest) ClearLimit()

func (*GitServiceRepositoriesRequest) GetLimit

func (x *GitServiceRepositoriesRequest) GetLimit() int32

func (*GitServiceRepositoriesRequest) GetOwner

func (x *GitServiceRepositoriesRequest) GetOwner() string

func (*GitServiceRepositoriesRequest) GetProvider

func (x *GitServiceRepositoriesRequest) GetProvider() GitProvider

func (*GitServiceRepositoriesRequest) HasLimit

func (x *GitServiceRepositoriesRequest) HasLimit() bool

func (*GitServiceRepositoriesRequest) ProtoMessage

func (*GitServiceRepositoriesRequest) ProtoMessage()

func (*GitServiceRepositoriesRequest) ProtoReflect

func (*GitServiceRepositoriesRequest) Reset

func (x *GitServiceRepositoriesRequest) Reset()

func (*GitServiceRepositoriesRequest) SetLimit

func (x *GitServiceRepositoriesRequest) SetLimit(v int32)

func (*GitServiceRepositoriesRequest) SetOwner

func (x *GitServiceRepositoriesRequest) SetOwner(v string)

func (*GitServiceRepositoriesRequest) SetProvider

func (x *GitServiceRepositoriesRequest) SetProvider(v GitProvider)

func (*GitServiceRepositoriesRequest) String

type GitServiceRepositoriesRequest_builder

type GitServiceRepositoriesRequest_builder struct {

	// the provider you want to fetch repositories from
	Provider GitProvider
	// the project/user you want to fetch repositories from
	Owner string
	// optional value to only list until a limit
	Limit *int32
	// contains filtered or unexported fields
}

func (GitServiceRepositoriesRequest_builder) Build

type GitServiceRepositoriesResponse

type GitServiceRepositoriesResponse struct {
	Repositories []*GitRepository `protobuf:"bytes,1,rep,name=repositories,proto3" json:"repositories,omitempty"`
	// contains filtered or unexported fields
}

The response of a Git.Repositories RPC

func (*GitServiceRepositoriesResponse) GetRepositories

func (x *GitServiceRepositoriesResponse) GetRepositories() []*GitRepository

func (*GitServiceRepositoriesResponse) ProtoMessage

func (*GitServiceRepositoriesResponse) ProtoMessage()

func (*GitServiceRepositoriesResponse) ProtoReflect

func (*GitServiceRepositoriesResponse) Reset

func (x *GitServiceRepositoriesResponse) Reset()

func (*GitServiceRepositoriesResponse) SetRepositories

func (x *GitServiceRepositoriesResponse) SetRepositories(v []*GitRepository)

func (*GitServiceRepositoriesResponse) String

type GitServiceRepositoriesResponse_builder

type GitServiceRepositoriesResponse_builder struct {
	Repositories []*GitRepository
	// contains filtered or unexported fields
}

func (GitServiceRepositoriesResponse_builder) Build

type GitServiceSearchRequest

type GitServiceSearchRequest struct {

	// the provider you want to fetch repositories from
	Provider GitProvider `protobuf:"varint,1,opt,name=provider,proto3,enum=nuntio.deployments.v1alpha1.GitProvider" json:"provider,omitempty"`
	// the project/user you want to fetch repositories from
	Owner string `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
	// the name of the project
	Query string `protobuf:"bytes,3,opt,name=query,proto3" json:"query,omitempty"`
	// set to true or false to include/exclude templates
	IsTemplate *bool `protobuf:"varint,4,opt,name=is_template,json=isTemplate,proto3,oneof" json:"is_template,omitempty"`
	// contains filtered or unexported fields
}

The request of a Git.Search RPC

func (*GitServiceSearchRequest) ClearIsTemplate

func (x *GitServiceSearchRequest) ClearIsTemplate()

func (*GitServiceSearchRequest) GetIsTemplate

func (x *GitServiceSearchRequest) GetIsTemplate() bool

func (*GitServiceSearchRequest) GetOwner

func (x *GitServiceSearchRequest) GetOwner() string

func (*GitServiceSearchRequest) GetProvider

func (x *GitServiceSearchRequest) GetProvider() GitProvider

func (*GitServiceSearchRequest) GetQuery

func (x *GitServiceSearchRequest) GetQuery() string

func (*GitServiceSearchRequest) HasIsTemplate

func (x *GitServiceSearchRequest) HasIsTemplate() bool

func (*GitServiceSearchRequest) ProtoMessage

func (*GitServiceSearchRequest) ProtoMessage()

func (*GitServiceSearchRequest) ProtoReflect

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

func (*GitServiceSearchRequest) Reset

func (x *GitServiceSearchRequest) Reset()

func (*GitServiceSearchRequest) SetIsTemplate

func (x *GitServiceSearchRequest) SetIsTemplate(v bool)

func (*GitServiceSearchRequest) SetOwner

func (x *GitServiceSearchRequest) SetOwner(v string)

func (*GitServiceSearchRequest) SetProvider

func (x *GitServiceSearchRequest) SetProvider(v GitProvider)

func (*GitServiceSearchRequest) SetQuery

func (x *GitServiceSearchRequest) SetQuery(v string)

func (*GitServiceSearchRequest) String

func (x *GitServiceSearchRequest) String() string

type GitServiceSearchRequest_builder

type GitServiceSearchRequest_builder struct {

	// the provider you want to fetch repositories from
	Provider GitProvider
	// the project/user you want to fetch repositories from
	Owner string
	// the name of the project
	Query string
	// set to true or false to include/exclude templates
	IsTemplate *bool
	// contains filtered or unexported fields
}

func (GitServiceSearchRequest_builder) Build

type GitServiceSearchResponse

type GitServiceSearchResponse struct {
	Repositories []*GitRepository `protobuf:"bytes,1,rep,name=repositories,proto3" json:"repositories,omitempty"`
	// contains filtered or unexported fields
}

The response of a Git.Search RPC

func (*GitServiceSearchResponse) GetRepositories

func (x *GitServiceSearchResponse) GetRepositories() []*GitRepository

func (*GitServiceSearchResponse) ProtoMessage

func (*GitServiceSearchResponse) ProtoMessage()

func (*GitServiceSearchResponse) ProtoReflect

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

func (*GitServiceSearchResponse) Reset

func (x *GitServiceSearchResponse) Reset()

func (*GitServiceSearchResponse) SetRepositories

func (x *GitServiceSearchResponse) SetRepositories(v []*GitRepository)

func (*GitServiceSearchResponse) String

func (x *GitServiceSearchResponse) String() string

type GitServiceSearchResponse_builder

type GitServiceSearchResponse_builder struct {
	Repositories []*GitRepository
	// contains filtered or unexported fields
}

func (GitServiceSearchResponse_builder) Build

type GitServiceTemplatesRequest

type GitServiceTemplatesRequest struct {

	// the provider you want to fetch repositories from
	Provider GitProvider `protobuf:"varint,1,opt,name=provider,proto3,enum=nuntio.deployments.v1alpha1.GitProvider" json:"provider,omitempty"`
	// the project/user you want to fetch repositories from
	Owner string `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"`
	// optional value to only list until a limit
	Limit *int32 `protobuf:"varint,3,opt,name=limit,proto3,oneof" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

The request of a Git.Templates RPC

func (*GitServiceTemplatesRequest) ClearLimit

func (x *GitServiceTemplatesRequest) ClearLimit()

func (*GitServiceTemplatesRequest) GetLimit

func (x *GitServiceTemplatesRequest) GetLimit() int32

func (*GitServiceTemplatesRequest) GetOwner

func (x *GitServiceTemplatesRequest) GetOwner() string

func (*GitServiceTemplatesRequest) GetProvider

func (x *GitServiceTemplatesRequest) GetProvider() GitProvider

func (*GitServiceTemplatesRequest) HasLimit

func (x *GitServiceTemplatesRequest) HasLimit() bool

func (*GitServiceTemplatesRequest) ProtoMessage

func (*GitServiceTemplatesRequest) ProtoMessage()

func (*GitServiceTemplatesRequest) ProtoReflect

func (*GitServiceTemplatesRequest) Reset

func (x *GitServiceTemplatesRequest) Reset()

func (*GitServiceTemplatesRequest) SetLimit

func (x *GitServiceTemplatesRequest) SetLimit(v int32)

func (*GitServiceTemplatesRequest) SetOwner

func (x *GitServiceTemplatesRequest) SetOwner(v string)

func (*GitServiceTemplatesRequest) SetProvider

func (x *GitServiceTemplatesRequest) SetProvider(v GitProvider)

func (*GitServiceTemplatesRequest) String

func (x *GitServiceTemplatesRequest) String() string

type GitServiceTemplatesRequest_builder

type GitServiceTemplatesRequest_builder struct {

	// the provider you want to fetch repositories from
	Provider GitProvider
	// the project/user you want to fetch repositories from
	Owner string
	// optional value to only list until a limit
	Limit *int32
	// contains filtered or unexported fields
}

func (GitServiceTemplatesRequest_builder) Build

type GitServiceTemplatesResponse

type GitServiceTemplatesResponse struct {
	Repositories []*GitRepository `protobuf:"bytes,1,rep,name=repositories,proto3" json:"repositories,omitempty"`
	// contains filtered or unexported fields
}

The response of a Git.Templates RPC

func (*GitServiceTemplatesResponse) GetRepositories

func (x *GitServiceTemplatesResponse) GetRepositories() []*GitRepository

func (*GitServiceTemplatesResponse) ProtoMessage

func (*GitServiceTemplatesResponse) ProtoMessage()

func (*GitServiceTemplatesResponse) ProtoReflect

func (*GitServiceTemplatesResponse) Reset

func (x *GitServiceTemplatesResponse) Reset()

func (*GitServiceTemplatesResponse) SetRepositories

func (x *GitServiceTemplatesResponse) SetRepositories(v []*GitRepository)

func (*GitServiceTemplatesResponse) String

func (x *GitServiceTemplatesResponse) String() string

type GitServiceTemplatesResponse_builder

type GitServiceTemplatesResponse_builder struct {
	Repositories []*GitRepository
	// contains filtered or unexported fields
}

func (GitServiceTemplatesResponse_builder) Build

type ProgrammingLanguage

type ProgrammingLanguage int32
const (
	ProgrammingLanguage_PROGRAMMING_LANGUAGE_UNSPECIFIED ProgrammingLanguage = 0
	ProgrammingLanguage_PROGRAMMING_LANGUAGE_GO          ProgrammingLanguage = 1
)

func (ProgrammingLanguage) Descriptor

func (ProgrammingLanguage) Enum

func (ProgrammingLanguage) Number

func (ProgrammingLanguage) String

func (x ProgrammingLanguage) String() string

func (ProgrammingLanguage) Type

Source Files

  • deployments.pb.go
  • deployments_git.pb.go
  • deployments_messages.pb.go

Jump to

Keyboard shortcuts

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