Documentation ¶
Index ¶
- func NewGatewayCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewGatewayListCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewGatewayStatusCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewInMemoryGatewayCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewInMemoryGatewayCreateCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewInMemoryGatewayDeleteCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewInMemoryGatewayListCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewInMemoryGatewayStatusCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewKafkaGatewayCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewKafkaGatewayCreateCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewKafkaGatewayDeleteCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewKafkaGatewayListCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewKafkaGatewayStatusCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewProcessorCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewProcessorCreateCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewProcessorDeleteCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewProcessorListCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewProcessorStatusCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewProcessorTailCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewPulsarGatewayCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewPulsarGatewayCreateCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewPulsarGatewayDeleteCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewPulsarGatewayListCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewPulsarGatewayStatusCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewStreamCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewStreamCreateCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewStreamDeleteCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewStreamListCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewStreamStatusCommand(ctx context.Context, c *cli.Config) *cobra.Command
- func NewStreamingCommand(ctx context.Context, c *cli.Config) *cobra.Command
- type GatewayListOptions
- type GatewayStatusOptions
- type InMemoryGatewayCreateOptions
- type InMemoryGatewayDeleteOptions
- type InMemoryGatewayListOptions
- type InMemoryGatewayStatusOptions
- type KafkaGatewayCreateOptions
- type KafkaGatewayDeleteOptions
- type KafkaGatewayListOptions
- type KafkaGatewayStatusOptions
- type ProcessorCreateOptions
- type ProcessorDeleteOptions
- type ProcessorListOptions
- type ProcessorStatusOptions
- type ProcessorTailOptions
- type PulsarGatewayCreateOptions
- type PulsarGatewayDeleteOptions
- type PulsarGatewayListOptions
- type PulsarGatewayStatusOptions
- type StreamCreateOptions
- type StreamDeleteOptions
- type StreamListOptions
- type StreamStatusOptions
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewGatewayCommand ¶ added in v0.5.0
func NewGatewayListCommand ¶ added in v0.5.0
func NewGatewayStatusCommand ¶ added in v0.5.0
func NewInMemoryGatewayCommand ¶ added in v0.5.0
func NewInMemoryGatewayCreateCommand ¶ added in v0.5.0
func NewInMemoryGatewayDeleteCommand ¶ added in v0.5.0
func NewInMemoryGatewayListCommand ¶ added in v0.5.0
func NewInMemoryGatewayStatusCommand ¶ added in v0.5.0
func NewKafkaGatewayCommand ¶ added in v0.5.0
func NewKafkaGatewayCreateCommand ¶ added in v0.5.0
func NewKafkaGatewayDeleteCommand ¶ added in v0.5.0
func NewKafkaGatewayListCommand ¶ added in v0.5.0
func NewKafkaGatewayStatusCommand ¶ added in v0.5.0
func NewProcessorCommand ¶
func NewProcessorListCommand ¶
func NewProcessorTailCommand ¶
func NewPulsarGatewayCommand ¶ added in v0.5.0
func NewPulsarGatewayCreateCommand ¶ added in v0.5.0
func NewPulsarGatewayDeleteCommand ¶ added in v0.5.0
func NewPulsarGatewayListCommand ¶ added in v0.5.0
func NewPulsarGatewayStatusCommand ¶ added in v0.5.0
func NewStreamCreateCommand ¶
func NewStreamDeleteCommand ¶
func NewStreamListCommand ¶
func NewStreamStatusCommand ¶
Types ¶
type GatewayListOptions ¶ added in v0.5.0
type GatewayListOptions struct {
options.ListOptions
}
func (*GatewayListOptions) Validate ¶ added in v0.5.0
func (opts *GatewayListOptions) Validate(ctx context.Context) cli.FieldErrors
type GatewayStatusOptions ¶ added in v0.5.0
type GatewayStatusOptions struct {
options.ResourceOptions
}
func (*GatewayStatusOptions) Validate ¶ added in v0.5.0
func (opts *GatewayStatusOptions) Validate(ctx context.Context) cli.FieldErrors
type InMemoryGatewayCreateOptions ¶ added in v0.5.0
type InMemoryGatewayCreateOptions struct { options.ResourceOptions DryRun bool Tail bool WaitTimeout time.Duration }
func (*InMemoryGatewayCreateOptions) IsDryRun ¶ added in v0.5.0
func (opts *InMemoryGatewayCreateOptions) IsDryRun() bool
func (*InMemoryGatewayCreateOptions) Validate ¶ added in v0.5.0
func (opts *InMemoryGatewayCreateOptions) Validate(ctx context.Context) cli.FieldErrors
type InMemoryGatewayDeleteOptions ¶ added in v0.5.0
type InMemoryGatewayDeleteOptions struct {
options.DeleteOptions
}
func (*InMemoryGatewayDeleteOptions) Validate ¶ added in v0.5.0
func (opts *InMemoryGatewayDeleteOptions) Validate(ctx context.Context) cli.FieldErrors
type InMemoryGatewayListOptions ¶ added in v0.5.0
type InMemoryGatewayListOptions struct {
options.ListOptions
}
func (*InMemoryGatewayListOptions) Validate ¶ added in v0.5.0
func (opts *InMemoryGatewayListOptions) Validate(ctx context.Context) cli.FieldErrors
type InMemoryGatewayStatusOptions ¶ added in v0.5.0
type InMemoryGatewayStatusOptions struct {
options.ResourceOptions
}
func (*InMemoryGatewayStatusOptions) Validate ¶ added in v0.5.0
func (opts *InMemoryGatewayStatusOptions) Validate(ctx context.Context) cli.FieldErrors
type KafkaGatewayCreateOptions ¶ added in v0.5.0
type KafkaGatewayCreateOptions struct { options.ResourceOptions BootstrapServers string DryRun bool Tail bool WaitTimeout time.Duration }
func (*KafkaGatewayCreateOptions) IsDryRun ¶ added in v0.5.0
func (opts *KafkaGatewayCreateOptions) IsDryRun() bool
func (*KafkaGatewayCreateOptions) Validate ¶ added in v0.5.0
func (opts *KafkaGatewayCreateOptions) Validate(ctx context.Context) cli.FieldErrors
type KafkaGatewayDeleteOptions ¶ added in v0.5.0
type KafkaGatewayDeleteOptions struct {
options.DeleteOptions
}
func (*KafkaGatewayDeleteOptions) Validate ¶ added in v0.5.0
func (opts *KafkaGatewayDeleteOptions) Validate(ctx context.Context) cli.FieldErrors
type KafkaGatewayListOptions ¶ added in v0.5.0
type KafkaGatewayListOptions struct {
options.ListOptions
}
func (*KafkaGatewayListOptions) Validate ¶ added in v0.5.0
func (opts *KafkaGatewayListOptions) Validate(ctx context.Context) cli.FieldErrors
type KafkaGatewayStatusOptions ¶ added in v0.5.0
type KafkaGatewayStatusOptions struct {
options.ResourceOptions
}
func (*KafkaGatewayStatusOptions) Validate ¶ added in v0.5.0
func (opts *KafkaGatewayStatusOptions) Validate(ctx context.Context) cli.FieldErrors
type ProcessorCreateOptions ¶
type ProcessorCreateOptions struct { options.ResourceOptions Image string ContainerRef string FunctionRef string Env []string EnvFrom []string Inputs []string Outputs []string Tail bool WaitTimeout string DryRun bool }
func (*ProcessorCreateOptions) IsDryRun ¶
func (opts *ProcessorCreateOptions) IsDryRun() bool
func (*ProcessorCreateOptions) Validate ¶
func (opts *ProcessorCreateOptions) Validate(ctx context.Context) cli.FieldErrors
type ProcessorDeleteOptions ¶
type ProcessorDeleteOptions struct {
options.DeleteOptions
}
func (*ProcessorDeleteOptions) Validate ¶
func (opts *ProcessorDeleteOptions) Validate(ctx context.Context) cli.FieldErrors
type ProcessorListOptions ¶
type ProcessorListOptions struct {
options.ListOptions
}
func (*ProcessorListOptions) Validate ¶
func (opts *ProcessorListOptions) Validate(ctx context.Context) cli.FieldErrors
type ProcessorStatusOptions ¶
type ProcessorStatusOptions struct {
options.ResourceOptions
}
func (*ProcessorStatusOptions) Validate ¶
func (opts *ProcessorStatusOptions) Validate(ctx context.Context) cli.FieldErrors
type ProcessorTailOptions ¶
type ProcessorTailOptions struct { options.ResourceOptions Since string }
func (*ProcessorTailOptions) Validate ¶
func (opts *ProcessorTailOptions) Validate(ctx context.Context) cli.FieldErrors
type PulsarGatewayCreateOptions ¶ added in v0.5.0
type PulsarGatewayCreateOptions struct { options.ResourceOptions ServiceURL string DryRun bool Tail bool WaitTimeout time.Duration }
func (*PulsarGatewayCreateOptions) IsDryRun ¶ added in v0.5.0
func (opts *PulsarGatewayCreateOptions) IsDryRun() bool
func (*PulsarGatewayCreateOptions) Validate ¶ added in v0.5.0
func (opts *PulsarGatewayCreateOptions) Validate(ctx context.Context) cli.FieldErrors
type PulsarGatewayDeleteOptions ¶ added in v0.5.0
type PulsarGatewayDeleteOptions struct {
options.DeleteOptions
}
func (*PulsarGatewayDeleteOptions) Validate ¶ added in v0.5.0
func (opts *PulsarGatewayDeleteOptions) Validate(ctx context.Context) cli.FieldErrors
type PulsarGatewayListOptions ¶ added in v0.5.0
type PulsarGatewayListOptions struct {
options.ListOptions
}
func (*PulsarGatewayListOptions) Validate ¶ added in v0.5.0
func (opts *PulsarGatewayListOptions) Validate(ctx context.Context) cli.FieldErrors
type PulsarGatewayStatusOptions ¶ added in v0.5.0
type PulsarGatewayStatusOptions struct {
options.ResourceOptions
}
func (*PulsarGatewayStatusOptions) Validate ¶ added in v0.5.0
func (opts *PulsarGatewayStatusOptions) Validate(ctx context.Context) cli.FieldErrors
type StreamCreateOptions ¶
type StreamCreateOptions struct { options.ResourceOptions Gateway string ContentType string DryRun bool Tail bool WaitTimeout time.Duration }
func (*StreamCreateOptions) IsDryRun ¶
func (opts *StreamCreateOptions) IsDryRun() bool
func (*StreamCreateOptions) Validate ¶
func (opts *StreamCreateOptions) Validate(ctx context.Context) cli.FieldErrors
type StreamDeleteOptions ¶
type StreamDeleteOptions struct {
options.DeleteOptions
}
func (*StreamDeleteOptions) Validate ¶
func (opts *StreamDeleteOptions) Validate(ctx context.Context) cli.FieldErrors
type StreamListOptions ¶
type StreamListOptions struct {
options.ListOptions
}
func (*StreamListOptions) Validate ¶
func (opts *StreamListOptions) Validate(ctx context.Context) cli.FieldErrors
type StreamStatusOptions ¶
type StreamStatusOptions struct {
options.ResourceOptions
}
func (*StreamStatusOptions) Validate ¶
func (opts *StreamStatusOptions) Validate(ctx context.Context) cli.FieldErrors
Source Files ¶
- gateway.go
- gateway_list.go
- gateway_status.go
- inmemorygateway.go
- inmemorygateway_create.go
- inmemorygateway_delete.go
- inmemorygateway_list.go
- inmemorygateway_status.go
- kafkagateway.go
- kafkagateway_create.go
- kafkagateway_delete.go
- kafkagateway_list.go
- kafkagateway_status.go
- processor.go
- processor_create.go
- processor_delete.go
- processor_list.go
- processor_status.go
- processor_tail.go
- pulsargateway.go
- pulsargateway_create.go
- pulsargateway_delete.go
- pulsargateway_list.go
- pulsargateway_status.go
- stream.go
- stream_create.go
- stream_delete.go
- stream_list.go
- stream_status.go
- streaming.go
Click to show internal directories.
Click to hide internal directories.