File tree Expand file tree Collapse file tree 10 files changed +0
-60
lines changed Expand file tree Collapse file tree 10 files changed +0
-60
lines changed Original file line number Diff line number Diff line change @@ -66,11 +66,6 @@ type Logs interface {
66
66
consumer.Logs
67
67
}
68
68
69
- // CreateSettings configures Connector creators.
70
- //
71
- // Deprecated: [v0.103.0] Use connector.Settings instead.
72
- type CreateSettings = Settings
73
-
74
69
// Settings configures Connector creators.
75
70
type Settings struct {
76
71
// ID returns the ID of the component that will be created.
Original file line number Diff line number Diff line change @@ -17,13 +17,6 @@ import (
17
17
18
18
var nopType = component .MustNewType ("nop" )
19
19
20
- // NewNopCreateSettings returns a new nop settings for Create* functions.
21
- //
22
- // Deprecated: [v0.103.0] Use connectortest.NewNopSettings instead.
23
- func NewNopCreateSettings () connector.Settings {
24
- return NewNopSettings ()
25
- }
26
-
27
20
// NewNopSettings returns a new nop settings for Create* functions.
28
21
func NewNopSettings () connector.Settings {
29
22
return connector.Settings {
Original file line number Diff line number Diff line change @@ -31,11 +31,6 @@ type Logs interface {
31
31
consumer.Logs
32
32
}
33
33
34
- // CreateSettings configures Exporter creators.
35
- //
36
- // Deprecated: [v0.103.0] Use exporter.Settings instead.
37
- type CreateSettings = Settings
38
-
39
34
// Settings configures exporter creators.
40
35
type Settings struct {
41
36
// ID returns the ID of the component that will be created.
Original file line number Diff line number Diff line change @@ -16,13 +16,6 @@ import (
16
16
17
17
var nopType = component .MustNewType ("nop" )
18
18
19
- // NewNopCreateSettings returns a new nop settings for Create*Exporter functions.
20
- //
21
- // Deprecated: [v0.103.0] Use exportertest.NewNopSettings instead.
22
- func NewNopCreateSettings () exporter.Settings {
23
- return NewNopSettings ()
24
- }
25
-
26
19
// NewNopSettings returns a new nop settings for Create*Exporter functions.
27
20
func NewNopSettings () exporter.Settings {
28
21
return exporter.Settings {
Original file line number Diff line number Diff line change @@ -62,11 +62,6 @@ type StatusWatcher interface {
62
62
ComponentStatusChanged (source * component.InstanceID , event * component.StatusEvent )
63
63
}
64
64
65
- // CreateSettings is passed to Factory.Create(...) function.
66
- //
67
- // Deprecated: [v0.103.0] Use extension.Settings instead.
68
- type CreateSettings = Settings
69
-
70
65
// Settings is passed to Factory.Create(...) function.
71
66
type Settings struct {
72
67
// ID returns the ID of the component that will be created.
Original file line number Diff line number Diff line change @@ -15,13 +15,6 @@ import (
15
15
16
16
var nopType = component .MustNewType ("nop" )
17
17
18
- // NewNopCreateSettings returns a new nop settings for extension.Factory Create* functions.
19
- //
20
- // Deprecated: [v0.103.0] Use extensiontest.NewNopSettings instead.
21
- func NewNopCreateSettings () extension.Settings {
22
- return NewNopSettings ()
23
- }
24
-
25
18
// NewNopSettings returns a new nop settings for extension.Factory Create* functions.
26
19
func NewNopSettings () extension.Settings {
27
20
return extension.Settings {
Original file line number Diff line number Diff line change @@ -36,11 +36,6 @@ type Logs interface {
36
36
consumer.Logs
37
37
}
38
38
39
- // CreateSettings is passed to Create* functions in Factory.
40
- //
41
- // Deprecated: [v0.103.0] Use processor.Settings instead.
42
- type CreateSettings = Settings
43
-
44
39
// Settings is passed to Create* functions in Factory.
45
40
type Settings struct {
46
41
// ID returns the ID of the component that will be created.
Original file line number Diff line number Diff line change @@ -17,13 +17,6 @@ import (
17
17
18
18
var nopType = component .MustNewType ("nop" )
19
19
20
- // NewNopCreateSettings returns a new nop settings for Create*Processor functions.
21
- //
22
- // Deprecated: [v0.103.0] Use processortest.NewNopSettings instead.
23
- func NewNopCreateSettings () processor.Settings {
24
- return NewNopSettings ()
25
- }
26
-
27
20
// NewNopSettings returns a new nop settings for Create*Processor functions.
28
21
func NewNopSettings () processor.Settings {
29
22
return processor.Settings {
Original file line number Diff line number Diff line change @@ -45,11 +45,6 @@ type Logs interface {
45
45
component.Component
46
46
}
47
47
48
- // CreateSettings configures Receiver creators.
49
- //
50
- // Deprecated: [v0.103.0] Use receiver.Settings instead.
51
- type CreateSettings = Settings
52
-
53
48
// Settings configures Receiver creators.
54
49
type Settings struct {
55
50
// ID returns the ID of the component that will be created.
Original file line number Diff line number Diff line change @@ -16,13 +16,6 @@ import (
16
16
17
17
var defaultComponentType = component .MustNewType ("nop" )
18
18
19
- // NewNopCreateSettings returns a new nop settings for Create*Receiver functions.
20
- //
21
- // Deprecated: [v0.103.0] Use receivertest.NewNopSettings instead.
22
- func NewNopCreateSettings () receiver.Settings {
23
- return NewNopSettings ()
24
- }
25
-
26
19
// NewNopSettings returns a new nop settings for Create*Receiver functions.
27
20
func NewNopSettings () receiver.Settings {
28
21
return receiver.Settings {
You can’t perform that action at this time.
0 commit comments