Documentation ¶
Index ¶
- Variables
- type AwsLambdaFunction
- type AwsLambdaFunctionRuntime
- type DBTX
- type InsertLambdaFunctionParams
- type InsertLambdaFunctionRuntimeParams
- type Queries
- func (q *Queries) AnonymiseLambdaFunctions(ctx context.Context) error
- func (q *Queries) InsertLambdaFunction(ctx context.Context, arg InsertLambdaFunctionParams) error
- func (q *Queries) InsertLambdaFunctionRuntime(ctx context.Context, arg InsertLambdaFunctionRuntimeParams) error
- func (q *Queries) RetrieveAll(ctx context.Context) ([]AwsLambdaFunction, error)
- func (q *Queries) RetrieveAllWithDeprecation(ctx context.Context) ([]RetrieveAllWithDeprecationRow, error)
- func (q *Queries) WithTx(tx *sql.Tx) *Queries
- type RetrieveAllWithDeprecationRow
Constants ¶
This section is empty.
Variables ¶
View Source
var CreateTablesQuery string
Functions ¶
This section is empty.
Types ¶
type AwsLambdaFunction ¶
type AwsLambdaFunctionRuntime ¶
type AwsLambdaFunctionRuntime struct { Runtime string Deprecation sql.NullString EndOfLife sql.NullString }
type InsertLambdaFunctionRuntimeParams ¶
type InsertLambdaFunctionRuntimeParams struct { Runtime string Deprecation sql.NullString EndOfLife sql.NullString }
type Queries ¶
type Queries struct {
// contains filtered or unexported fields
}
func (*Queries) AnonymiseLambdaFunctions ¶
func (*Queries) InsertLambdaFunction ¶
func (q *Queries) InsertLambdaFunction(ctx context.Context, arg InsertLambdaFunctionParams) error
func (*Queries) InsertLambdaFunctionRuntime ¶
func (q *Queries) InsertLambdaFunctionRuntime(ctx context.Context, arg InsertLambdaFunctionRuntimeParams) error
func (*Queries) RetrieveAll ¶
func (q *Queries) RetrieveAll(ctx context.Context) ([]AwsLambdaFunction, error)
func (*Queries) RetrieveAllWithDeprecation ¶ added in v0.22.0
func (q *Queries) RetrieveAllWithDeprecation(ctx context.Context) ([]RetrieveAllWithDeprecationRow, error)
type RetrieveAllWithDeprecationRow ¶ added in v0.22.0
type RetrieveAllWithDeprecationRow struct { Arn string Name string Runtime string Deprecation sql.NullString EndOfLife sql.NullString }
Click to show internal directories.
Click to hide internal directories.