Skip to content

Commit 5ade5e2

Browse files
generate from v0.34.0 crossplane provider (#44)
1 parent 1ecc61c commit 5ade5e2

179 files changed

Lines changed: 39646 additions & 13028 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
LIBRARY_VERSION:=0.7.0
2-
PROVIDER_VERSION:=0.30.0
1+
LIBRARY_VERSION:=0.8.0
2+
PROVIDER_VERSION:=0.34.0
33
JSONNET_BIN:=jrsonnet
44
CROSSPLANE?=crossplane
55
REGISTRY?=ghcr.io

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Most of this library is generated: the Compositions/XRDs packages, Configuration
1111
## Install
1212

1313
```
14-
jb install github.com/grafana/grafana-crossplane-libsonnet/grafanaplane@0.7.0-0.30.0
14+
jb install github.com/grafana/grafana-crossplane-libsonnet/grafanaplane@0.8.0-0.34.0
1515
```
1616

1717
## Usage

docs/configurations.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ local configurations = grafanaplane.configurations;
1010
1111
[
1212
configuration.alerting,
13+
configuration.asserts,
1314
configuration.cloud,
1415
configuration.cloudprovider,
1516
configuration.connections,

docs/raw/alerting/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
## Subpackages
66

7+
* [v1alpha1.alertenrichmentV1Beta1](v1alpha1/alertenrichmentV1Beta1/index.md)
78
* [v1alpha1.contactPoint](v1alpha1/contactPoint/index.md)
89
* [v1alpha1.messageTemplate](v1alpha1/messageTemplate.md)
910
* [v1alpha1.muteTiming](v1alpha1/muteTiming/index.md)

docs/raw/alerting/v1alpha1/alertenrichmentV1Beta1/index.md

Lines changed: 1329 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# metadata
2+
3+
4+
5+
## Index
6+
7+
* [`fn withFolderUid(value)`](#fn-withfolderuid)
8+
* [`fn withUid(value)`](#fn-withuid)
9+
10+
## Fields
11+
12+
### fn withFolderUid
13+
14+
```jsonnet
15+
withFolderUid(value)
16+
```
17+
18+
PARAMETERS:
19+
20+
* **value** (`string`)
21+
22+
The UID of the folder to save the resource in.
23+
### fn withUid
24+
25+
```jsonnet
26+
withUid(value)
27+
```
28+
29+
PARAMETERS:
30+
31+
* **value** (`string`)
32+
33+
The unique identifier of the resource.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# options
2+
3+
4+
5+
## Index
6+
7+
* [`fn withOverwrite(value=true)`](#fn-withoverwrite)
8+
9+
## Fields
10+
11+
### fn withOverwrite
12+
13+
```jsonnet
14+
withOverwrite(value=true)
15+
```
16+
17+
PARAMETERS:
18+
19+
* **value** (`boolean`)
20+
- default value: `true`
21+
22+
Set to true if you want to overwrite existing resource with newer version, same resource title in folder or same resource uid.
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# annotationMatchers
2+
3+
4+
5+
## Index
6+
7+
* [`fn withName(value)`](#fn-withname)
8+
* [`fn withType(value)`](#fn-withtype)
9+
* [`fn withValue(value)`](#fn-withvalue)
10+
11+
## Fields
12+
13+
### fn withName
14+
15+
```jsonnet
16+
withName(value)
17+
```
18+
19+
PARAMETERS:
20+
21+
* **value** (`string`)
22+
23+
24+
### fn withType
25+
26+
```jsonnet
27+
withType(value)
28+
```
29+
30+
PARAMETERS:
31+
32+
* **value** (`string`)
33+
34+
35+
### fn withValue
36+
37+
```jsonnet
38+
withValue(value)
39+
```
40+
41+
PARAMETERS:
42+
43+
* **value** (`string`)
44+
Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
# spec
2+
3+
4+
5+
## Subpackages
6+
7+
* [annotationMatchers](annotationMatchers.md)
8+
* [labelMatchers](labelMatchers.md)
9+
* [step](step/index.md)
10+
11+
## Index
12+
13+
* [`fn withAlertRuleUids(value)`](#fn-withalertruleuids)
14+
* [`fn withAlertRuleUidsMixin(value)`](#fn-withalertruleuidsmixin)
15+
* [`fn withAnnotationMatchers(value)`](#fn-withannotationmatchers)
16+
* [`fn withAnnotationMatchersMixin(value)`](#fn-withannotationmatchersmixin)
17+
* [`fn withDescription(value)`](#fn-withdescription)
18+
* [`fn withLabelMatchers(value)`](#fn-withlabelmatchers)
19+
* [`fn withLabelMatchersMixin(value)`](#fn-withlabelmatchersmixin)
20+
* [`fn withReceivers(value)`](#fn-withreceivers)
21+
* [`fn withReceiversMixin(value)`](#fn-withreceiversmixin)
22+
* [`fn withStep(value)`](#fn-withstep)
23+
* [`fn withStepMixin(value)`](#fn-withstepmixin)
24+
* [`fn withTitle(value)`](#fn-withtitle)
25+
26+
## Fields
27+
28+
### fn withAlertRuleUids
29+
30+
```jsonnet
31+
withAlertRuleUids(value)
32+
```
33+
34+
PARAMETERS:
35+
36+
* **value** (`array`)
37+
38+
UIDs of alert rules this enrichment applies to. If empty, applies to all alert rules.
39+
### fn withAlertRuleUidsMixin
40+
41+
```jsonnet
42+
withAlertRuleUidsMixin(value)
43+
```
44+
45+
PARAMETERS:
46+
47+
* **value** (`array`)
48+
49+
UIDs of alert rules this enrichment applies to. If empty, applies to all alert rules.
50+
### fn withAnnotationMatchers
51+
52+
```jsonnet
53+
withAnnotationMatchers(value)
54+
```
55+
56+
PARAMETERS:
57+
58+
* **value** (`array`)
59+
60+
Annotation matchers that an alert must satisfy for this enrichment to apply. Each matcher is an object with: 'type' (string, one of: =, !=, =~, !~), 'name' (string, annotation key to match), 'value' (string, annotation value to compare against, supports regex for =~/!~ operators).
61+
### fn withAnnotationMatchersMixin
62+
63+
```jsonnet
64+
withAnnotationMatchersMixin(value)
65+
```
66+
67+
PARAMETERS:
68+
69+
* **value** (`array`)
70+
71+
Annotation matchers that an alert must satisfy for this enrichment to apply. Each matcher is an object with: 'type' (string, one of: =, !=, =~, !~), 'name' (string, annotation key to match), 'value' (string, annotation value to compare against, supports regex for =~/!~ operators).
72+
### fn withDescription
73+
74+
```jsonnet
75+
withDescription(value)
76+
```
77+
78+
PARAMETERS:
79+
80+
* **value** (`string`)
81+
82+
Description of the alert enrichment.
83+
### fn withLabelMatchers
84+
85+
```jsonnet
86+
withLabelMatchers(value)
87+
```
88+
89+
PARAMETERS:
90+
91+
* **value** (`array`)
92+
93+
Label matchers that an alert must satisfy for this enrichment to apply. Each matcher is an object with: 'type' (string, one of: =, !=, =~, !~), 'name' (string, label key to match), 'value' (string, label value to compare against, supports regex for =~/!~ operators).
94+
### fn withLabelMatchersMixin
95+
96+
```jsonnet
97+
withLabelMatchersMixin(value)
98+
```
99+
100+
PARAMETERS:
101+
102+
* **value** (`array`)
103+
104+
Label matchers that an alert must satisfy for this enrichment to apply. Each matcher is an object with: 'type' (string, one of: =, !=, =~, !~), 'name' (string, label key to match), 'value' (string, label value to compare against, supports regex for =~/!~ operators).
105+
### fn withReceivers
106+
107+
```jsonnet
108+
withReceivers(value)
109+
```
110+
111+
PARAMETERS:
112+
113+
* **value** (`array`)
114+
115+
Receiver names to match. If empty, applies to all receivers.
116+
### fn withReceiversMixin
117+
118+
```jsonnet
119+
withReceiversMixin(value)
120+
```
121+
122+
PARAMETERS:
123+
124+
* **value** (`array`)
125+
126+
Receiver names to match. If empty, applies to all receivers.
127+
### fn withStep
128+
129+
```jsonnet
130+
withStep(value)
131+
```
132+
133+
PARAMETERS:
134+
135+
* **value** (`array`)
136+
137+
Enrichment step. Can be repeated multiple times to define a sequence of steps. Each step must contain exactly one enrichment block.
138+
### fn withStepMixin
139+
140+
```jsonnet
141+
withStepMixin(value)
142+
```
143+
144+
PARAMETERS:
145+
146+
* **value** (`array`)
147+
148+
Enrichment step. Can be repeated multiple times to define a sequence of steps. Each step must contain exactly one enrichment block.
149+
### fn withTitle
150+
151+
```jsonnet
152+
withTitle(value)
153+
```
154+
155+
PARAMETERS:
156+
157+
* **value** (`string`)
158+
159+
The title of the alert enrichment.
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# labelMatchers
2+
3+
4+
5+
## Index
6+
7+
* [`fn withName(value)`](#fn-withname)
8+
* [`fn withType(value)`](#fn-withtype)
9+
* [`fn withValue(value)`](#fn-withvalue)
10+
11+
## Fields
12+
13+
### fn withName
14+
15+
```jsonnet
16+
withName(value)
17+
```
18+
19+
PARAMETERS:
20+
21+
* **value** (`string`)
22+
23+
24+
### fn withType
25+
26+
```jsonnet
27+
withType(value)
28+
```
29+
30+
PARAMETERS:
31+
32+
* **value** (`string`)
33+
34+
35+
### fn withValue
36+
37+
```jsonnet
38+
withValue(value)
39+
```
40+
41+
PARAMETERS:
42+
43+
* **value** (`string`)
44+

0 commit comments

Comments
 (0)