Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ require (
k8s.io/client-go v0.33.4
k8s.io/code-generator v0.33.4
k8s.io/utils v0.0.0-20241210054802-24370beab758
knative.dev/eventing v0.46.1-0.20250819120547-8b0ad5e50960
knative.dev/eventing v0.46.1-0.20250827115136-841dfae2b2b2
knative.dev/hack v0.0.0-20250819212547-d496a6e708d3
knative.dev/pkg v0.0.0-20250820014848-e9c87121ec4c
knative.dev/reconciler-test v0.0.0-20250818021647-3bf376b1f1ce
knative.dev/reconciler-test v0.0.0-20250820021449-022fc4c64d88
)

require (
Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1070,14 +1070,14 @@ k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff h1:/usPimJzUKKu+m+TE36gUy
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff/go.mod h1:5jIi+8yX4RIb8wk3XwBo5Pq2ccx4FP10ohkbSKCZoK8=
k8s.io/utils v0.0.0-20241210054802-24370beab758 h1:sdbE21q2nlQtFh65saZY+rRM6x6aJJI8IUa1AmH/qa0=
k8s.io/utils v0.0.0-20241210054802-24370beab758/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
knative.dev/eventing v0.46.1-0.20250819120547-8b0ad5e50960 h1:aMqYYDJHHnxqP/o5yuoVyfLFkdtCi9w2jDzQJlDhqF4=
knative.dev/eventing v0.46.1-0.20250819120547-8b0ad5e50960/go.mod h1:pA2CWkd3Pl4E0Y81ochzLtZbL8b23+BzpkYSgAUTNqg=
knative.dev/eventing v0.46.1-0.20250827115136-841dfae2b2b2 h1:2duQtjA8RK4C/z/8SdSHvF416skpqKrqqYgAXmwqWAM=
knative.dev/eventing v0.46.1-0.20250827115136-841dfae2b2b2/go.mod h1:q3W3uSTRQ7lVH24cLUuO7hmLVKxqRFZErxyF4mwTlz0=
knative.dev/hack v0.0.0-20250819212547-d496a6e708d3 h1:4V+r4q/1ln8U1M1qBotYGfBza7whAf2iMCZtgdhAiu0=
knative.dev/hack v0.0.0-20250819212547-d496a6e708d3/go.mod h1:R0ritgYtjLDO9527h5vb5X6gfvt5LCrJ55BNbVDsWiY=
knative.dev/pkg v0.0.0-20250820014848-e9c87121ec4c h1:l+HQf+byp7MpDz7A4GHyh6U0Yhf/T0A7zbl5EoLGado=
knative.dev/pkg v0.0.0-20250820014848-e9c87121ec4c/go.mod h1:sYOVxC0GXfovT2qiExFITWHnk0lm6m3WXrZHTsJvQ5k=
knative.dev/reconciler-test v0.0.0-20250818021647-3bf376b1f1ce h1:IOhYsvpX1mIo+UZei1/dBukpGGlgt5PFWopnS7KZPtE=
knative.dev/reconciler-test v0.0.0-20250818021647-3bf376b1f1ce/go.mod h1:10PmVxyoupuQCJOGhH9SYhbiwo4Ta2zX/PQ0oGFIqQ0=
knative.dev/reconciler-test v0.0.0-20250820021449-022fc4c64d88 h1:wT1SPGxZ9UrM0vAPjcsYyDKBwKvtTkLc4iJFouImu+s=
knative.dev/reconciler-test v0.0.0-20250820021449-022fc4c64d88/go.mod h1:MHXIGpn/KLDlgUPs33NcPjH+3aYp/Hm/lxwFIPMuC0g=
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ var (
)

type IntegrationSinkSpec struct {
Aws *Aws `json:"aws,omitempty"` // AWS source configuration
Aws *Aws `json:"aws,omitempty"` // AWS sink configuration
Log *Log `json:"log,omitempty"` // Log sink configuration
}

Expand All @@ -74,9 +74,9 @@ type Log struct {
}

type Aws struct {
S3 *v1alpha1.AWSS3 `json:"s3,omitempty"` // S3 source configuration
SQS *v1alpha1.AWSSQS `json:"sqs,omitempty"` // SQS source configuration
SNS *v1alpha1.AWSSNS `json:"sns,omitempty"` // SNS source configuration
S3 *v1alpha1.AWSS3 `json:"s3,omitempty"` // S3 sink configuration
SQS *v1alpha1.AWSSQS `json:"sqs,omitempty"` // SQS sink configuration
SNS *v1alpha1.AWSSNS `json:"sns,omitempty"` // SNS sink configuration
Auth *v1alpha1.Auth `json:"auth,omitempty"`
}

Expand Down
4 changes: 2 additions & 2 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1174,7 +1174,7 @@ k8s.io/utils/net
k8s.io/utils/pointer
k8s.io/utils/ptr
k8s.io/utils/trace
# knative.dev/eventing v0.46.1-0.20250819120547-8b0ad5e50960
# knative.dev/eventing v0.46.1-0.20250827115136-841dfae2b2b2
## explicit; go 1.24.0
knative.dev/eventing/pkg/apis
knative.dev/eventing/pkg/apis/common/integration/v1alpha1
Expand Down Expand Up @@ -1339,7 +1339,7 @@ knative.dev/pkg/webhook/json
knative.dev/pkg/webhook/resourcesemantics
knative.dev/pkg/webhook/resourcesemantics/defaulting
knative.dev/pkg/webhook/resourcesemantics/validation
# knative.dev/reconciler-test v0.0.0-20250818021647-3bf376b1f1ce
# knative.dev/reconciler-test v0.0.0-20250820021449-022fc4c64d88
## explicit; go 1.24.0
knative.dev/reconciler-test/cmd/eventshub
knative.dev/reconciler-test/pkg/environment
Expand Down
Loading