Documentation
¶
Index ¶
- func NewGithubTransaction(ctx context.Context, client *github.Client, originalOwner string, ...) *githubTransaction
- func UpdateCatalogItem(ctx context.Context, ref string) error
- type ExtensionSpec
- func (*ExtensionSpec) Descriptor() ([]byte, []int)
- func (m *ExtensionSpec) GetCreatorName() string
- func (m *ExtensionSpec) GetCreatorUrl() string
- func (m *ExtensionSpec) GetDocumentationUrl() string
- func (m *ExtensionSpec) GetExtensionRef() string
- func (m *ExtensionSpec) GetInstallInstructions() *InstallInstructions
- func (m *ExtensionSpec) GetLogoUrl() string
- func (m *ExtensionSpec) GetLongDescription() string
- func (m *ExtensionSpec) GetName() string
- func (m *ExtensionSpec) GetRepositoryUrl() string
- func (m *ExtensionSpec) GetShortDescription() string
- func (*ExtensionSpec) ProtoMessage()
- func (m *ExtensionSpec) Reset()
- func (m *ExtensionSpec) String() string
- func (m *ExtensionSpec) XXX_DiscardUnknown()
- func (m *ExtensionSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *ExtensionSpec) XXX_Merge(src proto.Message)
- func (m *ExtensionSpec) XXX_Size() int
- func (m *ExtensionSpec) XXX_Unmarshal(b []byte) error
- type InstallInstructions
- func (*InstallInstructions) Descriptor() ([]byte, []int)
- func (m *InstallInstructions) GetGloo() *InstallInstructions_Gloo
- func (m *InstallInstructions) GetVanillaEnvoy() *InstallInstructions_VanillaEnvoy
- func (*InstallInstructions) ProtoMessage()
- func (m *InstallInstructions) Reset()
- func (m *InstallInstructions) String() string
- func (m *InstallInstructions) XXX_DiscardUnknown()
- func (m *InstallInstructions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *InstallInstructions) XXX_Merge(src proto.Message)
- func (m *InstallInstructions) XXX_Size() int
- func (m *InstallInstructions) XXX_Unmarshal(b []byte) error
- type InstallInstructions_Gloo
- func (*InstallInstructions_Gloo) Descriptor() ([]byte, []int)
- func (m *InstallInstructions_Gloo) GetGatewayYaml() string
- func (m *InstallInstructions_Gloo) GetGlooctl() string
- func (*InstallInstructions_Gloo) ProtoMessage()
- func (m *InstallInstructions_Gloo) Reset()
- func (m *InstallInstructions_Gloo) String() string
- func (m *InstallInstructions_Gloo) XXX_DiscardUnknown()
- func (m *InstallInstructions_Gloo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *InstallInstructions_Gloo) XXX_Merge(src proto.Message)
- func (m *InstallInstructions_Gloo) XXX_Size() int
- func (m *InstallInstructions_Gloo) XXX_Unmarshal(b []byte) error
- type InstallInstructions_VanillaEnvoy
- func (*InstallInstructions_VanillaEnvoy) Descriptor() ([]byte, []int)
- func (m *InstallInstructions_VanillaEnvoy) GetConfig() string
- func (*InstallInstructions_VanillaEnvoy) ProtoMessage()
- func (m *InstallInstructions_VanillaEnvoy) Reset()
- func (m *InstallInstructions_VanillaEnvoy) String() string
- func (m *InstallInstructions_VanillaEnvoy) XXX_DiscardUnknown()
- func (m *InstallInstructions_VanillaEnvoy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *InstallInstructions_VanillaEnvoy) XXX_Merge(src proto.Message)
- func (m *InstallInstructions_VanillaEnvoy) XXX_Size() int
- func (m *InstallInstructions_VanillaEnvoy) XXX_Unmarshal(b []byte) error
- type PullRequestState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewGithubTransaction ¶
Types ¶
type ExtensionSpec ¶
type ExtensionSpec struct { // The name of the extension. Must be unique within a repository. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Module logo URL. optional LogoUrl string `protobuf:"bytes,2,opt,name=logo_url,json=logoUrl,proto3" json:"logo_url,omitempty"` // Short description of the extension. ShortDescription string `protobuf:"bytes,3,opt,name=short_description,json=shortDescription,proto3" json:"short_description,omitempty"` // Long description of the extension. // TODO support colocated markdown file OR link to markdown file LongDescription string `protobuf:"bytes,4,opt,name=long_description,json=longDescription,proto3" json:"long_description,omitempty"` // Link to documentation for the extension. DocumentationUrl string `protobuf:"bytes,5,opt,name=documentation_url,json=documentationUrl,proto3" json:"documentation_url,omitempty"` // Link to repository containing the extension's source code. RepositoryUrl string `protobuf:"bytes,6,opt,name=repository_url,json=repositoryUrl,proto3" json:"repository_url,omitempty"` // Link to repository containing the extension's source code. ExtensionRef string `protobuf:"bytes,7,opt,name=extension_ref,json=extensionRef,proto3" json:"extension_ref,omitempty"` // The name of the entity that authored the extension. CreatorName string `protobuf:"bytes,8,opt,name=creator_name,json=creatorName,proto3" json:"creator_name,omitempty"` // Link to the entity that authored the extension. CreatorUrl string `protobuf:"bytes,9,opt,name=creator_url,json=creatorUrl,proto3" json:"creator_url,omitempty"` // Install instructions for this extension. InstallInstructions *InstallInstructions `protobuf:"bytes,10,opt,name=install_instructions,json=installInstructions,proto3" json:"install_instructions,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*ExtensionSpec) Descriptor ¶
func (*ExtensionSpec) Descriptor() ([]byte, []int)
func (*ExtensionSpec) GetCreatorName ¶
func (m *ExtensionSpec) GetCreatorName() string
func (*ExtensionSpec) GetCreatorUrl ¶
func (m *ExtensionSpec) GetCreatorUrl() string
func (*ExtensionSpec) GetDocumentationUrl ¶
func (m *ExtensionSpec) GetDocumentationUrl() string
func (*ExtensionSpec) GetExtensionRef ¶
func (m *ExtensionSpec) GetExtensionRef() string
func (*ExtensionSpec) GetInstallInstructions ¶
func (m *ExtensionSpec) GetInstallInstructions() *InstallInstructions
func (*ExtensionSpec) GetLogoUrl ¶
func (m *ExtensionSpec) GetLogoUrl() string
func (*ExtensionSpec) GetLongDescription ¶
func (m *ExtensionSpec) GetLongDescription() string
func (*ExtensionSpec) GetName ¶
func (m *ExtensionSpec) GetName() string
func (*ExtensionSpec) GetRepositoryUrl ¶
func (m *ExtensionSpec) GetRepositoryUrl() string
func (*ExtensionSpec) GetShortDescription ¶
func (m *ExtensionSpec) GetShortDescription() string
func (*ExtensionSpec) ProtoMessage ¶
func (*ExtensionSpec) ProtoMessage()
func (*ExtensionSpec) Reset ¶
func (m *ExtensionSpec) Reset()
func (*ExtensionSpec) String ¶
func (m *ExtensionSpec) String() string
func (*ExtensionSpec) XXX_DiscardUnknown ¶
func (m *ExtensionSpec) XXX_DiscardUnknown()
func (*ExtensionSpec) XXX_Marshal ¶
func (m *ExtensionSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*ExtensionSpec) XXX_Merge ¶
func (m *ExtensionSpec) XXX_Merge(src proto.Message)
func (*ExtensionSpec) XXX_Size ¶
func (m *ExtensionSpec) XXX_Size() int
func (*ExtensionSpec) XXX_Unmarshal ¶
func (m *ExtensionSpec) XXX_Unmarshal(b []byte) error
type InstallInstructions ¶
type InstallInstructions struct { Gloo *InstallInstructions_Gloo `protobuf:"bytes,1,opt,name=gloo,proto3" json:"gloo,omitempty"` VanillaEnvoy *InstallInstructions_VanillaEnvoy `protobuf:"bytes,3,opt,name=vanilla_envoy,json=vanillaEnvoy,proto3" json:"vanilla_envoy,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
Set of install instructions for each supported envoy flavor
func (*InstallInstructions) Descriptor ¶
func (*InstallInstructions) Descriptor() ([]byte, []int)
func (*InstallInstructions) GetGloo ¶
func (m *InstallInstructions) GetGloo() *InstallInstructions_Gloo
func (*InstallInstructions) GetVanillaEnvoy ¶
func (m *InstallInstructions) GetVanillaEnvoy() *InstallInstructions_VanillaEnvoy
func (*InstallInstructions) ProtoMessage ¶
func (*InstallInstructions) ProtoMessage()
func (*InstallInstructions) Reset ¶
func (m *InstallInstructions) Reset()
func (*InstallInstructions) String ¶
func (m *InstallInstructions) String() string
func (*InstallInstructions) XXX_DiscardUnknown ¶
func (m *InstallInstructions) XXX_DiscardUnknown()
func (*InstallInstructions) XXX_Marshal ¶
func (m *InstallInstructions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*InstallInstructions) XXX_Merge ¶
func (m *InstallInstructions) XXX_Merge(src proto.Message)
func (*InstallInstructions) XXX_Size ¶
func (m *InstallInstructions) XXX_Size() int
func (*InstallInstructions) XXX_Unmarshal ¶
func (m *InstallInstructions) XXX_Unmarshal(b []byte) error
type InstallInstructions_Gloo ¶
type InstallInstructions_Gloo struct { Glooctl string `protobuf:"bytes,1,opt,name=glooctl,proto3" json:"glooctl,omitempty"` GatewayYaml string `protobuf:"bytes,2,opt,name=gateway_yaml,json=gatewayYaml,proto3" json:"gateway_yaml,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*InstallInstructions_Gloo) Descriptor ¶
func (*InstallInstructions_Gloo) Descriptor() ([]byte, []int)
func (*InstallInstructions_Gloo) GetGatewayYaml ¶
func (m *InstallInstructions_Gloo) GetGatewayYaml() string
func (*InstallInstructions_Gloo) GetGlooctl ¶
func (m *InstallInstructions_Gloo) GetGlooctl() string
func (*InstallInstructions_Gloo) ProtoMessage ¶
func (*InstallInstructions_Gloo) ProtoMessage()
func (*InstallInstructions_Gloo) Reset ¶
func (m *InstallInstructions_Gloo) Reset()
func (*InstallInstructions_Gloo) String ¶
func (m *InstallInstructions_Gloo) String() string
func (*InstallInstructions_Gloo) XXX_DiscardUnknown ¶
func (m *InstallInstructions_Gloo) XXX_DiscardUnknown()
func (*InstallInstructions_Gloo) XXX_Marshal ¶
func (m *InstallInstructions_Gloo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*InstallInstructions_Gloo) XXX_Merge ¶
func (m *InstallInstructions_Gloo) XXX_Merge(src proto.Message)
func (*InstallInstructions_Gloo) XXX_Size ¶
func (m *InstallInstructions_Gloo) XXX_Size() int
func (*InstallInstructions_Gloo) XXX_Unmarshal ¶
func (m *InstallInstructions_Gloo) XXX_Unmarshal(b []byte) error
type InstallInstructions_VanillaEnvoy ¶
type InstallInstructions_VanillaEnvoy struct { Config string `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*InstallInstructions_VanillaEnvoy) Descriptor ¶
func (*InstallInstructions_VanillaEnvoy) Descriptor() ([]byte, []int)
func (*InstallInstructions_VanillaEnvoy) GetConfig ¶
func (m *InstallInstructions_VanillaEnvoy) GetConfig() string
func (*InstallInstructions_VanillaEnvoy) ProtoMessage ¶
func (*InstallInstructions_VanillaEnvoy) ProtoMessage()
func (*InstallInstructions_VanillaEnvoy) Reset ¶
func (m *InstallInstructions_VanillaEnvoy) Reset()
func (*InstallInstructions_VanillaEnvoy) String ¶
func (m *InstallInstructions_VanillaEnvoy) String() string
func (*InstallInstructions_VanillaEnvoy) XXX_DiscardUnknown ¶
func (m *InstallInstructions_VanillaEnvoy) XXX_DiscardUnknown()
func (*InstallInstructions_VanillaEnvoy) XXX_Marshal ¶
func (m *InstallInstructions_VanillaEnvoy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*InstallInstructions_VanillaEnvoy) XXX_Merge ¶
func (m *InstallInstructions_VanillaEnvoy) XXX_Merge(src proto.Message)
func (*InstallInstructions_VanillaEnvoy) XXX_Size ¶
func (m *InstallInstructions_VanillaEnvoy) XXX_Size() int
func (*InstallInstructions_VanillaEnvoy) XXX_Unmarshal ¶
func (m *InstallInstructions_VanillaEnvoy) XXX_Unmarshal(b []byte) error
type PullRequestState ¶
type PullRequestState int
const ( Merged PullRequestState = iota None Pending )
Click to show internal directories.
Click to hide internal directories.