File tree 4 files changed +13
-1
lines changed
4 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -166,6 +166,11 @@ class Alert extends Component<
166
166
return { [ this . identifier ] : alertPolicy } ;
167
167
}
168
168
169
+ /**
170
+ * Method creates mutation variables for a given Alert.
171
+ *
172
+ * @deprecated This function should be removed once we have finished our new build publishing pipeline
173
+ */
169
174
getMutationVariables ( ) {
170
175
if ( ! this . isValid ) {
171
176
console . error (
Original file line number Diff line number Diff line change @@ -109,6 +109,8 @@ class DataSource extends Component<
109
109
/**
110
110
* Get the variables for the **Quickstart** mutation.
111
111
*
112
+ * @deprecated This function should be removed once we have finished our new build publishing pipeline
113
+ *
112
114
* @returns The ID for this data source
113
115
*/
114
116
getMutationVariables ( ) : DataSourceConfig [ 'id' ] {
Original file line number Diff line number Diff line change @@ -135,7 +135,11 @@ class Quickstart {
135
135
136
136
/**
137
137
* Get mutation variables from quickstart config
138
+ *
139
+ * @deprecated This function should be removed once we have finished our new build publishing pipeline
140
+ *
138
141
* @returns - Promised mutation variables for quickstart
142
+ *
139
143
*/
140
144
async getMutationVariables (
141
145
dryRun : boolean
@@ -241,8 +245,8 @@ class Quickstart {
241
245
summary : summary && summary . trim ( ) ,
242
246
supportLevel : SUPPORT_LEVEL_ENUMS [ level ] ,
243
247
dataSourceIds : dataSourceIds ,
244
- dashboards,
245
248
alertConditions : alertPolicies ,
249
+ dashboards,
246
250
} ;
247
251
248
252
return metadata ;
Original file line number Diff line number Diff line change 1
1
/* -- Data source -- */
2
+
2
3
export interface ArtifactDataSourceConfig {
3
4
id : string ;
4
5
displayName : string ;
You can’t perform that action at this time.
0 commit comments