File tree Expand file tree Collapse file tree 3 files changed +38
-4
lines changed
packages/datadog-api-client-v2/models Expand file tree Collapse file tree 3 files changed +38
-4
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"apigentools_version": "1.6.6",
7
- "regenerated": "2024-09-16 14:02:55.755592 ",
8
- "spec_repo_commit": "966987f5 "
7
+ "regenerated": "2024-09-18 14:45:11.842654 ",
8
+ "spec_repo_commit": "bae57ce1 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2024-09-16 14:02:55.775858 ",
13
- "spec_repo_commit": "966987f5 "
12
+ "regenerated": "2024-09-18 14:45:11.862890 ",
13
+ "spec_repo_commit": "bae57ce1 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -16297,6 +16297,18 @@ components:
16297
16297
PowerpackTemplateVariable:
16298
16298
description: Powerpack template variables.
16299
16299
properties:
16300
+ available_values:
16301
+ description: The list of values that the template variable drop-down is
16302
+ limited to.
16303
+ example:
16304
+ - my-host
16305
+ - host1
16306
+ - host2
16307
+ items:
16308
+ description: Template variable value.
16309
+ type: string
16310
+ nullable: true
16311
+ type: array
16300
16312
defaults:
16301
16313
description: One or many template variable default values within the saved
16302
16314
view, which are unioned together using `OR` if more than one is specified.
@@ -16309,6 +16321,12 @@ components:
16309
16321
description: The name of the variable.
16310
16322
example: datacenter
16311
16323
type: string
16324
+ prefix:
16325
+ description: The tag prefix associated with the variable. Only tags with
16326
+ this prefix appear in the variable drop-down.
16327
+ example: host
16328
+ nullable: true
16329
+ type: string
16312
16330
required:
16313
16331
- name
16314
16332
type: object
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
10
10
* Powerpack template variables.
11
11
*/
12
12
export class PowerpackTemplateVariable {
13
+ /**
14
+ * The list of values that the template variable drop-down is limited to.
15
+ */
16
+ "availableValues" ?: Array < string > ;
13
17
/**
14
18
* One or many template variable default values within the saved view, which are unioned together using `OR` if more than one is specified.
15
19
*/
@@ -18,6 +22,10 @@ export class PowerpackTemplateVariable {
18
22
* The name of the variable.
19
23
*/
20
24
"name" : string ;
25
+ /**
26
+ * The tag prefix associated with the variable. Only tags with this prefix appear in the variable drop-down.
27
+ */
28
+ "prefix" ?: string ;
21
29
22
30
/**
23
31
* A container for additional, undeclared properties.
@@ -35,6 +43,10 @@ export class PowerpackTemplateVariable {
35
43
* @ignore
36
44
*/
37
45
static readonly attributeTypeMap : AttributeTypeMap = {
46
+ availableValues : {
47
+ baseName : "available_values" ,
48
+ type : "Array<string>" ,
49
+ } ,
38
50
defaults : {
39
51
baseName : "defaults" ,
40
52
type : "Array<string>" ,
@@ -44,6 +56,10 @@ export class PowerpackTemplateVariable {
44
56
type : "string" ,
45
57
required : true ,
46
58
} ,
59
+ prefix : {
60
+ baseName : "prefix" ,
61
+ type : "string" ,
62
+ } ,
47
63
additionalProperties : {
48
64
baseName : "additionalProperties" ,
49
65
type : "any" ,
You can’t perform that action at this time.
0 commit comments