@salesforce/lds-adapters-analytics-unifiedanalytics 1.380.0-dev13 → 1.380.0-dev14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/es2018/analytics-unifiedanalytics.js +8 -3
- package/dist/es/es2018/types/src/generated/adapters/createDataAlert.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/adapters/updateDataAlert.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/resources/postTableauDataAlerts.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/resources/putTableauDataAlertsByDataAlertId.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/types/DataAlertInputRepresentation.d.ts +4 -4
- package/dist/es/es2018/types/src/generated/types/DataAlertRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +9 -4
- package/src/raml/api.raml +16 -3
|
@@ -3784,7 +3784,7 @@ function validate$V(obj, path = 'DataAlertThresholdsRepresentation') {
|
|
|
3784
3784
|
}
|
|
3785
3785
|
|
|
3786
3786
|
const TTL$n = 500;
|
|
3787
|
-
const VERSION$y = "
|
|
3787
|
+
const VERSION$y = "04f6ab40ada1d70c527b0dd9ba6e7415";
|
|
3788
3788
|
function validate$U(obj, path = 'DataAlertRepresentation') {
|
|
3789
3789
|
const v_error = (() => {
|
|
3790
3790
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -3808,6 +3808,11 @@ function validate$U(obj, path = 'DataAlertRepresentation') {
|
|
|
3808
3808
|
if (typeof obj_createdDate !== 'string') {
|
|
3809
3809
|
return new TypeError('Expected "string" but received "' + typeof obj_createdDate + '" (at "' + path_createdDate + '")');
|
|
3810
3810
|
}
|
|
3811
|
+
const obj_dataAlertType = obj.dataAlertType;
|
|
3812
|
+
const path_dataAlertType = path + '.dataAlertType';
|
|
3813
|
+
if (typeof obj_dataAlertType !== 'string') {
|
|
3814
|
+
return new TypeError('Expected "string" but received "' + typeof obj_dataAlertType + '" (at "' + path_dataAlertType + '")');
|
|
3815
|
+
}
|
|
3811
3816
|
const obj_deliveryConfigurations = obj.deliveryConfigurations;
|
|
3812
3817
|
const path_deliveryConfigurations = path + '.deliveryConfigurations';
|
|
3813
3818
|
const referencepath_deliveryConfigurationsValidationError = validate$Z(obj_deliveryConfigurations, path_deliveryConfigurations);
|
|
@@ -4353,8 +4358,8 @@ function validate$L(obj, path = 'DataAlertScheduleInputRepresentation') {
|
|
|
4353
4358
|
const adapterName$N = 'createDataAlert';
|
|
4354
4359
|
const createDataAlert_ConfigPropertyMetadata = [
|
|
4355
4360
|
generateParamConfigMetadata('runNow', false, 1 /* QueryParameter */, 1 /* Boolean */),
|
|
4356
|
-
generateParamConfigMetadata('analysisUtterance', true, 2 /* Body */, 0 /* String */),
|
|
4357
4361
|
generateParamConfigMetadata('content', true, 2 /* Body */, 4 /* Unsupported */),
|
|
4362
|
+
generateParamConfigMetadata('dataAlertType', true, 2 /* Body */, 0 /* String */),
|
|
4358
4363
|
generateParamConfigMetadata('deliveryConfigurations', true, 2 /* Body */, 4 /* Unsupported */),
|
|
4359
4364
|
generateParamConfigMetadata('schedule', true, 2 /* Body */, 4 /* Unsupported */),
|
|
4360
4365
|
generateParamConfigMetadata('thresholds', true, 2 /* Body */, 4 /* Unsupported */),
|
|
@@ -4694,8 +4699,8 @@ const adapterName$K = 'updateDataAlert';
|
|
|
4694
4699
|
const updateDataAlert_ConfigPropertyMetadata = [
|
|
4695
4700
|
generateParamConfigMetadata('dataAlertId', true, 0 /* UrlParameter */, 0 /* String */),
|
|
4696
4701
|
generateParamConfigMetadata('runNow', false, 1 /* QueryParameter */, 1 /* Boolean */),
|
|
4697
|
-
generateParamConfigMetadata('analysisUtterance', true, 2 /* Body */, 0 /* String */),
|
|
4698
4702
|
generateParamConfigMetadata('content', true, 2 /* Body */, 4 /* Unsupported */),
|
|
4703
|
+
generateParamConfigMetadata('dataAlertType', true, 2 /* Body */, 0 /* String */),
|
|
4699
4704
|
generateParamConfigMetadata('deliveryConfigurations', true, 2 /* Body */, 4 /* Unsupported */),
|
|
4700
4705
|
generateParamConfigMetadata('schedule', true, 2 /* Body */, 4 /* Unsupported */),
|
|
4701
4706
|
generateParamConfigMetadata('thresholds', true, 2 /* Body */, 4 /* Unsupported */),
|
|
@@ -12,8 +12,8 @@ export declare const createDataAlert_ConfigPropertyMetadata: $64$luvio_engine_Ad
|
|
|
12
12
|
export declare const createDataAlert_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
13
13
|
export interface CreateDataAlertConfig {
|
|
14
14
|
runNow?: boolean;
|
|
15
|
-
analysisUtterance: string;
|
|
16
15
|
content: types_DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
16
|
+
dataAlertType: string;
|
|
17
17
|
deliveryConfigurations: types_DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
|
|
18
18
|
schedule: types_DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation | types_DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation;
|
|
19
19
|
thresholds: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
@@ -13,8 +13,8 @@ export declare const updateDataAlert_ConfigPropertyNames: adapter$45$utils_Adapt
|
|
|
13
13
|
export interface UpdateDataAlertConfig {
|
|
14
14
|
dataAlertId: string;
|
|
15
15
|
runNow?: boolean;
|
|
16
|
-
analysisUtterance: string;
|
|
17
16
|
content: types_DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
17
|
+
dataAlertType: string;
|
|
18
18
|
deliveryConfigurations: types_DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
|
|
19
19
|
schedule: types_DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation | types_DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation;
|
|
20
20
|
thresholds: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
@@ -10,8 +10,8 @@ export interface ResourceRequestConfig {
|
|
|
10
10
|
runNow?: boolean;
|
|
11
11
|
};
|
|
12
12
|
body: {
|
|
13
|
-
analysisUtterance: string;
|
|
14
13
|
content: types_DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
14
|
+
dataAlertType: string;
|
|
15
15
|
deliveryConfigurations: types_DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
|
|
16
16
|
schedule: types_DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation | types_DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation;
|
|
17
17
|
thresholds: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
@@ -13,8 +13,8 @@ export interface ResourceRequestConfig {
|
|
|
13
13
|
runNow?: boolean;
|
|
14
14
|
};
|
|
15
15
|
body: {
|
|
16
|
-
analysisUtterance: string;
|
|
17
16
|
content: types_DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
17
|
+
dataAlertType: string;
|
|
18
18
|
deliveryConfigurations: types_DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
|
|
19
19
|
schedule: types_DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation | types_DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation;
|
|
20
20
|
thresholds: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
@@ -6,7 +6,7 @@ import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Lu
|
|
|
6
6
|
import { DataAlertMetricContentInputRepresentation as DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation } from './DataAlertMetricContentInputRepresentation';
|
|
7
7
|
import { DataAlertDailyScheduleInputRepresentation as DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation } from './DataAlertDailyScheduleInputRepresentation';
|
|
8
8
|
import { DataAlertWeeklyScheduleInputRepresentation as DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation } from './DataAlertWeeklyScheduleInputRepresentation';
|
|
9
|
-
export declare const VERSION = "
|
|
9
|
+
export declare const VERSION = "afe2ab03fbe9b609eb4584a6e4dd3839";
|
|
10
10
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
11
11
|
export declare const RepresentationType: string;
|
|
12
12
|
export declare function normalize(input: DataAlertInputRepresentation, existing: DataAlertInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAlertInputRepresentationNormalized;
|
|
@@ -21,9 +21,9 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
21
21
|
* (none)
|
|
22
22
|
*/
|
|
23
23
|
export interface DataAlertInputRepresentationNormalized {
|
|
24
|
-
/** user entered utterance for generating analysis. */
|
|
25
|
-
analysisUtterance: string;
|
|
26
24
|
content: DataAlertContentInputRepresentation_DataAlertContentInputRepresentation;
|
|
25
|
+
/** Type of data alert */
|
|
26
|
+
dataAlertType: string;
|
|
27
27
|
deliveryConfigurations: DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
|
|
28
28
|
schedule: DataAlertScheduleInputRepresentation_DataAlertScheduleInputRepresentation;
|
|
29
29
|
thresholds: DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
@@ -37,8 +37,8 @@ export interface DataAlertInputRepresentationNormalized {
|
|
|
37
37
|
* (none)
|
|
38
38
|
*/
|
|
39
39
|
export interface DataAlertInputRepresentation {
|
|
40
|
-
analysisUtterance: string;
|
|
41
40
|
content: DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
41
|
+
dataAlertType: string;
|
|
42
42
|
deliveryConfigurations: DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
|
|
43
43
|
schedule: DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation | DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation;
|
|
44
44
|
thresholds: DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
@@ -4,7 +4,7 @@ import { DataAlertScheduleRepresentation as DataAlertScheduleRepresentation_Data
|
|
|
4
4
|
import { DataAlertThresholdsRepresentation as DataAlertThresholdsRepresentation_DataAlertThresholdsRepresentation } from './DataAlertThresholdsRepresentation';
|
|
5
5
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
6
6
|
export declare const TTL = 500;
|
|
7
|
-
export declare const VERSION = "
|
|
7
|
+
export declare const VERSION = "04f6ab40ada1d70c527b0dd9ba6e7415";
|
|
8
8
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
9
9
|
export declare const RepresentationType: string;
|
|
10
10
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -34,6 +34,8 @@ export interface DataAlertRepresentationNormalized {
|
|
|
34
34
|
content: DataAlertContentRepresentation_DataAlertContentRepresentation;
|
|
35
35
|
/** Creation date of the data alert */
|
|
36
36
|
createdDate: string;
|
|
37
|
+
/** Type of data alert. */
|
|
38
|
+
dataAlertType: string;
|
|
37
39
|
/** Data alert delivery configurations. */
|
|
38
40
|
deliveryConfigurations: DataAlertDeliveryConfigurationRepresentation_DataAlertDeliveryConfigurationRepresentation;
|
|
39
41
|
/** ID of the Data Alert */
|
|
@@ -53,6 +55,7 @@ export interface DataAlertRepresentation {
|
|
|
53
55
|
alertName: string;
|
|
54
56
|
content: DataAlertContentRepresentation_DataAlertContentRepresentation;
|
|
55
57
|
createdDate: string;
|
|
58
|
+
dataAlertType: string;
|
|
56
59
|
deliveryConfigurations: DataAlertDeliveryConfigurationRepresentation_DataAlertDeliveryConfigurationRepresentation;
|
|
57
60
|
id: string;
|
|
58
61
|
lastModifiedDate: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-analytics-unifiedanalytics",
|
|
3
|
-
"version": "1.380.0-
|
|
3
|
+
"version": "1.380.0-dev14",
|
|
4
4
|
"description": "Tableau Unified Analytics Platform",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/analytics-unifiedanalytics.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.380.0-
|
|
43
|
+
"@salesforce/lds-bindings": "^1.380.0-dev14"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.380.0-
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.380.0-dev14"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -2524,7 +2524,7 @@ function validate$W(obj, path = 'DataAlertThresholdsRepresentation') {
|
|
|
2524
2524
|
}
|
|
2525
2525
|
|
|
2526
2526
|
const TTL$q = 500;
|
|
2527
|
-
const VERSION$C = "
|
|
2527
|
+
const VERSION$C = "04f6ab40ada1d70c527b0dd9ba6e7415";
|
|
2528
2528
|
function validate$V(obj, path = 'DataAlertRepresentation') {
|
|
2529
2529
|
const v_error = (() => {
|
|
2530
2530
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -2548,6 +2548,11 @@ function validate$V(obj, path = 'DataAlertRepresentation') {
|
|
|
2548
2548
|
if (typeof obj_createdDate !== 'string') {
|
|
2549
2549
|
return new TypeError('Expected "string" but received "' + typeof obj_createdDate + '" (at "' + path_createdDate + '")');
|
|
2550
2550
|
}
|
|
2551
|
+
const obj_dataAlertType = obj.dataAlertType;
|
|
2552
|
+
const path_dataAlertType = path + '.dataAlertType';
|
|
2553
|
+
if (typeof obj_dataAlertType !== 'string') {
|
|
2554
|
+
return new TypeError('Expected "string" but received "' + typeof obj_dataAlertType + '" (at "' + path_dataAlertType + '")');
|
|
2555
|
+
}
|
|
2551
2556
|
const obj_deliveryConfigurations = obj.deliveryConfigurations;
|
|
2552
2557
|
const path_deliveryConfigurations = path + '.deliveryConfigurations';
|
|
2553
2558
|
const referencepath_deliveryConfigurationsValidationError = validate$_(obj_deliveryConfigurations, path_deliveryConfigurations);
|
|
@@ -2723,8 +2728,8 @@ function validate$T(obj, path = 'DataAlertScheduleInputRepresentation') {
|
|
|
2723
2728
|
const adapterName$V = 'createDataAlert';
|
|
2724
2729
|
const createDataAlert_ConfigPropertyMetadata = [
|
|
2725
2730
|
generateParamConfigMetadata('runNow', false, 1 /* QueryParameter */, 1 /* Boolean */),
|
|
2726
|
-
generateParamConfigMetadata('analysisUtterance', true, 2 /* Body */, 0 /* String */),
|
|
2727
2731
|
generateParamConfigMetadata('content', true, 2 /* Body */, 4 /* Unsupported */),
|
|
2732
|
+
generateParamConfigMetadata('dataAlertType', true, 2 /* Body */, 0 /* String */),
|
|
2728
2733
|
generateParamConfigMetadata('deliveryConfigurations', true, 2 /* Body */, 4 /* Unsupported */),
|
|
2729
2734
|
generateParamConfigMetadata('schedule', true, 2 /* Body */, 4 /* Unsupported */),
|
|
2730
2735
|
generateParamConfigMetadata('thresholds', true, 2 /* Body */, 4 /* Unsupported */),
|
|
@@ -13890,8 +13895,8 @@ const adapterName$6 = 'updateDataAlert';
|
|
|
13890
13895
|
const updateDataAlert_ConfigPropertyMetadata = [
|
|
13891
13896
|
generateParamConfigMetadata('dataAlertId', true, 0 /* UrlParameter */, 0 /* String */),
|
|
13892
13897
|
generateParamConfigMetadata('runNow', false, 1 /* QueryParameter */, 1 /* Boolean */),
|
|
13893
|
-
generateParamConfigMetadata('analysisUtterance', true, 2 /* Body */, 0 /* String */),
|
|
13894
13898
|
generateParamConfigMetadata('content', true, 2 /* Body */, 4 /* Unsupported */),
|
|
13899
|
+
generateParamConfigMetadata('dataAlertType', true, 2 /* Body */, 0 /* String */),
|
|
13895
13900
|
generateParamConfigMetadata('deliveryConfigurations', true, 2 /* Body */, 4 /* Unsupported */),
|
|
13896
13901
|
generateParamConfigMetadata('schedule', true, 2 /* Body */, 4 /* Unsupported */),
|
|
13897
13902
|
generateParamConfigMetadata('thresholds', true, 2 /* Body */, 4 /* Unsupported */),
|
|
@@ -15125,4 +15130,4 @@ withDefaultLuvio((luvio) => {
|
|
|
15125
15130
|
});
|
|
15126
15131
|
|
|
15127
15132
|
export { createAnnotation, createAssetSlackChannel, createDashboard, createDataAlert, createDataAssetRequest, createLoglines, createRecordShares, createTemplate, createVisualization, createWorkspace, createWorkspaceAsset, deleteAllShares, deleteDashboard, deleteDataAlert, deleteRecordShare, deleteVisualization, deleteWorkspace, deleteWorkspaceAsset, follow, generateSFDriveCredentials, getAnnotations, getAnnotations_imperative, getAssetSlackChannels, getAssetSlackChannels_imperative, getDashboardByName, getDashboardByNameNotifyChange, getDashboardByName_imperative, getDashboards, getDashboards_imperative, getDataAlert, getDataAlertCollection, getDataAlertCollection_imperative, getDataAlertNotifyChange, getDataAlert_imperative, getDataAssetDependencies, getDataAssetDependencies_imperative, getDataAssetRequestByIdOrApiName, getDataAssetRequestByIdOrApiNameNotifyChange, getDataAssetRequestByIdOrApiName_imperative, getDataAssetRequests, getDataAssetRequestsCount, getDataAssetRequestsCount_imperative, getDataAssetRequests_imperative, getFlowByName, getFlowByName_imperative, getFlows, getFlows_imperative, getFollowedAssets, getFollowedAssets_imperative, getFollowers, getFollowers_imperative, getMarketplaceListingInstallationProgress, getMarketplaceListingInstallationProgress_imperative, getOrg, getOrg_imperative, getShares, getShares_imperative, getSlackAppInfo, getSlackAppInfo_imperative, getSubscriptionDigestConfig, getSubscriptionDigestConfigNotifyChange, getSubscriptionDigestConfig_imperative, getUnifiedAnalyticsLibraryAssets, getUniqueFollowerCount, getUniqueFollowerCount_imperative, getVisualization, getVisualizationBundle, getVisualizationBundleNotifyChange, getVisualizationBundle_imperative, getVisualizationNotifyChange, getVisualization_imperative, getVisualizations, getVisualizations_imperative, getWorkspaceByIdOrName, getWorkspaceByIdOrNameNotifyChange, getWorkspaceByIdOrName_imperative, getWorkspaces, getWorkspaces_imperative, initiateMarketplaceListingInstallation, initiateMarketplaceListingInstallation_imperative, notifySharesUpdateAvailable, postDataAlertRun, publish, publishToMarketplace, queryAssets, queryUsers, unfollow, updateDashboard, updateDataAlert, updateDataAssetRequest, updateFollowedAsset, updateRecordShares, updateSubscriptionDigestConfig, updateVisualization, updateWorkspace };
|
|
15128
|
-
// version: 1.380.0-
|
|
15133
|
+
// version: 1.380.0-dev14-cdac38acdf
|
package/src/raml/api.raml
CHANGED
|
@@ -1348,11 +1348,14 @@ types:
|
|
|
1348
1348
|
description: A top level data alert metadata representation.
|
|
1349
1349
|
type: object
|
|
1350
1350
|
properties:
|
|
1351
|
-
analysisUtterance:
|
|
1352
|
-
description: user entered utterance for generating analysis.
|
|
1353
|
-
type: string
|
|
1354
1351
|
content:
|
|
1355
1352
|
type: DataAlertContentInputRepresentation # TODO Hand-rolled @W-17927490
|
|
1353
|
+
dataAlertType:
|
|
1354
|
+
description: Type of data alert
|
|
1355
|
+
type: string
|
|
1356
|
+
enum:
|
|
1357
|
+
- AgentHealthMonitoring
|
|
1358
|
+
- AgentPowered
|
|
1356
1359
|
deliveryConfigurations:
|
|
1357
1360
|
type: DataAlertDeliveryConfigurationInputRepresentation # TODO Hand-rolled @W-17927490
|
|
1358
1361
|
schedule:
|
|
@@ -1384,7 +1387,9 @@ types:
|
|
|
1384
1387
|
description: delivery type
|
|
1385
1388
|
type: string
|
|
1386
1389
|
enum:
|
|
1390
|
+
- Email
|
|
1387
1391
|
- Notification
|
|
1392
|
+
- Slack
|
|
1388
1393
|
DataAlertScheduleInputRepresentation:
|
|
1389
1394
|
description: Input representation for data alert schedule
|
|
1390
1395
|
discriminator: type
|
|
@@ -1558,7 +1563,9 @@ types:
|
|
|
1558
1563
|
description: delivery type
|
|
1559
1564
|
type: string
|
|
1560
1565
|
enum:
|
|
1566
|
+
- Email
|
|
1561
1567
|
- Notification
|
|
1568
|
+
- Slack
|
|
1562
1569
|
DataAlertRepresentation:
|
|
1563
1570
|
description: Output representation for Data Alert
|
|
1564
1571
|
discriminatorValue: DataAlert
|
|
@@ -1574,6 +1581,12 @@ types:
|
|
|
1574
1581
|
description: Notification content configuration. Contains the config needed
|
|
1575
1582
|
to generate the notification content.
|
|
1576
1583
|
type: DataAlertContentRepresentation
|
|
1584
|
+
dataAlertType:
|
|
1585
|
+
description: Type of data alert.
|
|
1586
|
+
type: string
|
|
1587
|
+
enum:
|
|
1588
|
+
- AgentHealthMonitoring
|
|
1589
|
+
- AgentPowered
|
|
1577
1590
|
deliveryConfigurations:
|
|
1578
1591
|
description: Data alert delivery configurations.
|
|
1579
1592
|
type: DataAlertDeliveryConfigurationRepresentation
|