Documentation ¶
Index ¶
- func BuiltIn() catalog.BuiltIn
- type Config
- type Plugin
- func (p *Plugin) Configure(ctx context.Context, req *configv1.ConfigureRequest) (*configv1.ConfigureResponse, error)
- func (p *Plugin) PublishBundle(ctx context.Context, req *bundlepublisherv1.PublishBundleRequest) (*bundlepublisherv1.PublishBundleResponse, error)
- func (p *Plugin) SetLogger(log hclog.Logger)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Config ¶
type Config struct { AccessKeyID string `hcl:"access_key_id" json:"access_key_id"` SecretAccessKey string `hcl:"secret_access_key" json:"secret_access_key"` Region string `hcl:"region" json:"region"` Bucket string `hcl:"bucket" json:"bucket"` ObjectKey string `hcl:"object_key" json:"object_key"` Format string `hcl:"format" json:"format"` // contains filtered or unexported fields }
Config holds the configuration of the plugin.
type Plugin ¶
type Plugin struct { bundlepublisherv1.UnsafeBundlePublisherServer configv1.UnsafeConfigServer // contains filtered or unexported fields }
Plugin is the main representation of this bundle publisher plugin.
func (*Plugin) Configure ¶
func (p *Plugin) Configure(ctx context.Context, req *configv1.ConfigureRequest) (*configv1.ConfigureResponse, error)
Configure configures the plugin.
func (*Plugin) PublishBundle ¶
func (p *Plugin) PublishBundle(ctx context.Context, req *bundlepublisherv1.PublishBundleRequest) (*bundlepublisherv1.PublishBundleResponse, error)
PublishBundle puts the bundle in the configured S3 bucket name and object key.
Click to show internal directories.
Click to hide internal directories.