@salesforce/lds-adapters-analytics-unifiedanalytics 1.428.0-dev18 → 1.428.0-dev19

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.
@@ -3904,7 +3904,7 @@ function validate$14(obj, path = 'DataAlertThresholdsRepresentation') {
3904
3904
  }
3905
3905
 
3906
3906
  const TTL$p = 500;
3907
- const VERSION$B = "eca891667fbed2132d5c2a32709976c2";
3907
+ const VERSION$B = "fd9b49328cf3e15dbe1ba0d295452337";
3908
3908
  function validate$13(obj, path = 'DataAlertRepresentation') {
3909
3909
  const v_error = (() => {
3910
3910
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -3974,13 +3974,6 @@ function validate$13(obj, path = 'DataAlertRepresentation') {
3974
3974
  if (typeof obj_id !== 'string') {
3975
3975
  return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
3976
3976
  }
3977
- if (obj.isEnabled !== undefined) {
3978
- const obj_isEnabled = obj.isEnabled;
3979
- const path_isEnabled = path + '.isEnabled';
3980
- if (typeof obj_isEnabled !== 'boolean') {
3981
- return new TypeError('Expected "boolean" but received "' + typeof obj_isEnabled + '" (at "' + path_isEnabled + '")');
3982
- }
3983
- }
3984
3977
  const obj_lastModifiedDate = obj.lastModifiedDate;
3985
3978
  const path_lastModifiedDate = path + '.lastModifiedDate';
3986
3979
  if (typeof obj_lastModifiedDate !== 'string') {
@@ -4574,7 +4567,6 @@ const createDataAlert_ConfigPropertyMetadata = [
4574
4567
  generateParamConfigMetadata('thresholds', false, 2 /* Body */, 4 /* Unsupported */),
4575
4568
  generateParamConfigMetadata('utterance', true, 2 /* Body */, 0 /* String */),
4576
4569
  generateParamConfigMetadata('agent', false, 2 /* Body */, 4 /* Unsupported */),
4577
- generateParamConfigMetadata('isEnabled', false, 2 /* Body */, 1 /* Boolean */),
4578
4570
  ];
4579
4571
  const createDataAlert_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$Q, createDataAlert_ConfigPropertyMetadata);
4580
4572
  const createResourceParams$Q = /*#__PURE__*/ createResourceParams$10(createDataAlert_ConfigPropertyMetadata);
@@ -5176,7 +5168,6 @@ const updateDataAlert_ConfigPropertyMetadata = [
5176
5168
  generateParamConfigMetadata('thresholds', false, 2 /* Body */, 4 /* Unsupported */),
5177
5169
  generateParamConfigMetadata('utterance', true, 2 /* Body */, 0 /* String */),
5178
5170
  generateParamConfigMetadata('agent', false, 2 /* Body */, 4 /* Unsupported */),
5179
- generateParamConfigMetadata('isEnabled', false, 2 /* Body */, 1 /* Boolean */),
5180
5171
  ];
5181
5172
  const updateDataAlert_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$M, updateDataAlert_ConfigPropertyMetadata);
5182
5173
  const createResourceParams$M = /*#__PURE__*/ createResourceParams$10(updateDataAlert_ConfigPropertyMetadata);
@@ -21,7 +21,6 @@ export interface CreateDataAlertConfig {
21
21
  thresholds?: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
22
22
  utterance: string;
23
23
  agent?: string | null;
24
- isEnabled?: boolean;
25
24
  }
26
25
  export declare const createResourceParams: (config: CreateDataAlertConfig) => resources_postTableauDataAlerts_ResourceRequestConfig;
27
26
  export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateDataAlertConfig>): adapter$45$utils_Untrusted<CreateDataAlertConfig>;
@@ -22,7 +22,6 @@ export interface UpdateDataAlertConfig {
22
22
  thresholds?: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
23
23
  utterance: string;
24
24
  agent?: string | null;
25
- isEnabled?: boolean;
26
25
  }
27
26
  export declare const createResourceParams: (config: UpdateDataAlertConfig) => resources_putTableauDataAlertsByDataAlertId_ResourceRequestConfig;
28
27
  export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateDataAlertConfig>): adapter$45$utils_Untrusted<UpdateDataAlertConfig>;
@@ -19,7 +19,6 @@ export interface ResourceRequestConfig {
19
19
  thresholds?: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
20
20
  utterance: string;
21
21
  agent?: string | null;
22
- isEnabled?: boolean;
23
22
  };
24
23
  }
25
24
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
@@ -22,7 +22,6 @@ export interface ResourceRequestConfig {
22
22
  thresholds?: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
23
23
  utterance: string;
24
24
  agent?: string | null;
25
- isEnabled?: boolean;
26
25
  };
27
26
  }
28
27
  export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
@@ -1,6 +1,6 @@
1
1
  import { DataAlertContentInputRepresentation as DataAlertContentInputRepresentation_DataAlertContentInputRepresentation } from './DataAlertContentInputRepresentation';
2
2
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
- export declare const VERSION = "b821566b07418176dbc333e09bdca052";
3
+ export declare const VERSION = "abfe1c7969bd63fdfc12876ac4e8a8e4";
4
4
  export declare function validate(obj: any, path?: string): TypeError | null;
5
5
  export declare const RepresentationType: string;
6
6
  export declare function normalize(input: DataAlertBriefContentInputRepresentation, existing: DataAlertBriefContentInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAlertBriefContentInputRepresentationNormalized;
@@ -15,8 +15,6 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
15
15
  * (none)
16
16
  */
17
17
  export interface DataAlertBriefContentInputRepresentationNormalized extends DataAlertContentInputRepresentation_DataAlertContentInputRepresentation {
18
- /** Ids or API names of the semantic data models used to generate the brief */
19
- modelApiNameOrIdList?: Array<string>;
20
18
  /** Skill instruction for the brief content */
21
19
  skillInstruction: string;
22
20
  }
@@ -27,7 +25,6 @@ export interface DataAlertBriefContentInputRepresentationNormalized extends Data
27
25
  * (none)
28
26
  */
29
27
  export interface DataAlertBriefContentInputRepresentation extends DataAlertContentInputRepresentation_DataAlertContentInputRepresentation {
30
- modelApiNameOrIdList?: Array<string>;
31
28
  skillInstruction: string;
32
29
  type: 'Brief';
33
30
  }
@@ -1,6 +1,6 @@
1
1
  import { DataAlertContentRepresentation as DataAlertContentRepresentation_DataAlertContentRepresentation } from './DataAlertContentRepresentation';
2
2
  import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
3
- export declare const VERSION = "76e4755a7e9893e795ae6a76025894cc";
3
+ export declare const VERSION = "760e7ed9ffcdd364861d28707262bebd";
4
4
  export declare function validate(obj: any, path?: string): TypeError | null;
5
5
  export declare const RepresentationType: string;
6
6
  export declare function normalize(input: DataAlertBriefContentRepresentation, existing: DataAlertBriefContentRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAlertBriefContentRepresentationNormalized;
@@ -15,8 +15,6 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
15
15
  * (none)
16
16
  */
17
17
  export interface DataAlertBriefContentRepresentationNormalized extends DataAlertContentRepresentation_DataAlertContentRepresentation {
18
- /** Ids or API names of the semantic data models used to generate the brief */
19
- modelApiNameOrIdList?: Array<string>;
20
18
  /** Skill instruction for the brief content */
21
19
  skillInstruction: string;
22
20
  }
@@ -27,6 +25,5 @@ export interface DataAlertBriefContentRepresentationNormalized extends DataAlert
27
25
  * (none)
28
26
  */
29
27
  export interface DataAlertBriefContentRepresentation extends DataAlertContentRepresentation_DataAlertContentRepresentation {
30
- modelApiNameOrIdList?: Array<string>;
31
28
  skillInstruction: string;
32
29
  }
@@ -8,7 +8,7 @@ import { DataAlertMetricContentInputRepresentation as DataAlertMetricContentInpu
8
8
  import { DataAlertDailyScheduleInputRepresentation as DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation } from './DataAlertDailyScheduleInputRepresentation';
9
9
  import { DataAlertWeeklyScheduleInputRepresentation as DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation } from './DataAlertWeeklyScheduleInputRepresentation';
10
10
  import { DataAlertEveryNMinutesScheduleInputRepresentation as DataAlertEveryNMinutesScheduleInputRepresentation_DataAlertEveryNMinutesScheduleInputRepresentation } from './DataAlertEveryNMinutesScheduleInputRepresentation';
11
- export declare const VERSION = "8f196c5299c01756d3dca9c7f46d5e18";
11
+ export declare const VERSION = "33e3629b5f13032689a915a046f6a5c0";
12
12
  export declare function validate(obj: any, path?: string): TypeError | null;
13
13
  export declare const RepresentationType: string;
14
14
  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;
@@ -29,8 +29,6 @@ export interface DataAlertInputRepresentationNormalized {
29
29
  /** Type of data alert */
30
30
  dataAlertType: string;
31
31
  deliveryConfigurations: DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
32
- /** Whether this data alert is enabled. Set to false to pause alert execution. */
33
- isEnabled?: boolean;
34
32
  schedule: DataAlertScheduleInputRepresentation_DataAlertScheduleInputRepresentation;
35
33
  thresholds?: DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
36
34
  /** user entered utterance */
@@ -47,7 +45,6 @@ export interface DataAlertInputRepresentation {
47
45
  content: DataAlertBriefContentInputRepresentation_DataAlertBriefContentInputRepresentation | DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
48
46
  dataAlertType: string;
49
47
  deliveryConfigurations: DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
50
- isEnabled?: boolean;
51
48
  schedule: DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation | DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation | DataAlertEveryNMinutesScheduleInputRepresentation_DataAlertEveryNMinutesScheduleInputRepresentation;
52
49
  thresholds?: DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
53
50
  utterance: string;
@@ -5,7 +5,7 @@ import { DataAlertScheduleRepresentation as DataAlertScheduleRepresentation_Data
5
5
  import { DataAlertThresholdsRepresentation as DataAlertThresholdsRepresentation_DataAlertThresholdsRepresentation } from './DataAlertThresholdsRepresentation';
6
6
  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';
7
7
  export declare const TTL = 500;
8
- export declare const VERSION = "eca891667fbed2132d5c2a32709976c2";
8
+ export declare const VERSION = "fd9b49328cf3e15dbe1ba0d295452337";
9
9
  export declare function validate(obj: any, path?: string): TypeError | null;
10
10
  export declare const RepresentationType: string;
11
11
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -43,8 +43,6 @@ export interface DataAlertRepresentationNormalized {
43
43
  deliveryConfigurations: DataAlertDeliveryConfigurationRepresentation_DataAlertDeliveryConfigurationRepresentation;
44
44
  /** ID of the Data Alert */
45
45
  id: string;
46
- /** Whether this data alert is enabled. False indicates the alert is paused. */
47
- isEnabled?: boolean;
48
46
  /** Last modified date of the data alert */
49
47
  lastModifiedDate: string;
50
48
  /** Additional properties for the data alert used when sending the query response. */
@@ -66,7 +64,6 @@ export interface DataAlertRepresentation {
66
64
  dataAlertType: string;
67
65
  deliveryConfigurations: DataAlertDeliveryConfigurationRepresentation_DataAlertDeliveryConfigurationRepresentation;
68
66
  id: string;
69
- isEnabled?: boolean;
70
67
  lastModifiedDate: string;
71
68
  properties?: DataAlertPropertyFilterOutputRepresentation_DataAlertPropertyFilterOutputRepresentation;
72
69
  schedule: DataAlertScheduleRepresentation_DataAlertScheduleRepresentation;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-analytics-unifiedanalytics",
3
- "version": "1.428.0-dev18",
3
+ "version": "1.428.0-dev19",
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.428.0-dev18"
43
+ "@salesforce/lds-bindings": "^1.428.0-dev19"
44
44
  },
45
45
  "devDependencies": {
46
- "@salesforce/lds-compiler-plugins": "^1.428.0-dev18"
46
+ "@salesforce/lds-compiler-plugins": "^1.428.0-dev19"
47
47
  },
48
48
  "nx": {
49
49
  "targets": {
package/sfdc/index.js CHANGED
@@ -2646,7 +2646,7 @@ function validate$14(obj, path = 'DataAlertThresholdsRepresentation') {
2646
2646
  }
2647
2647
 
2648
2648
  const TTL$s = 500;
2649
- const VERSION$F = "eca891667fbed2132d5c2a32709976c2";
2649
+ const VERSION$F = "fd9b49328cf3e15dbe1ba0d295452337";
2650
2650
  function validate$13(obj, path = 'DataAlertRepresentation') {
2651
2651
  const v_error = (() => {
2652
2652
  if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
@@ -2716,13 +2716,6 @@ function validate$13(obj, path = 'DataAlertRepresentation') {
2716
2716
  if (typeof obj_id !== 'string') {
2717
2717
  return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
2718
2718
  }
2719
- if (obj.isEnabled !== undefined) {
2720
- const obj_isEnabled = obj.isEnabled;
2721
- const path_isEnabled = path + '.isEnabled';
2722
- if (typeof obj_isEnabled !== 'boolean') {
2723
- return new TypeError('Expected "boolean" but received "' + typeof obj_isEnabled + '" (at "' + path_isEnabled + '")');
2724
- }
2725
- }
2726
2719
  const obj_lastModifiedDate = obj.lastModifiedDate;
2727
2720
  const path_lastModifiedDate = path + '.lastModifiedDate';
2728
2721
  if (typeof obj_lastModifiedDate !== 'string') {
@@ -2908,7 +2901,6 @@ const createDataAlert_ConfigPropertyMetadata = [
2908
2901
  generateParamConfigMetadata('thresholds', false, 2 /* Body */, 4 /* Unsupported */),
2909
2902
  generateParamConfigMetadata('utterance', true, 2 /* Body */, 0 /* String */),
2910
2903
  generateParamConfigMetadata('agent', false, 2 /* Body */, 4 /* Unsupported */),
2911
- generateParamConfigMetadata('isEnabled', false, 2 /* Body */, 1 /* Boolean */),
2912
2904
  ];
2913
2905
  const createDataAlert_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$Y, createDataAlert_ConfigPropertyMetadata);
2914
2906
  const createResourceParams$Y = /*#__PURE__*/ createResourceParams$10(createDataAlert_ConfigPropertyMetadata);
@@ -15448,7 +15440,6 @@ const updateDataAlert_ConfigPropertyMetadata = [
15448
15440
  generateParamConfigMetadata('thresholds', false, 2 /* Body */, 4 /* Unsupported */),
15449
15441
  generateParamConfigMetadata('utterance', true, 2 /* Body */, 0 /* String */),
15450
15442
  generateParamConfigMetadata('agent', false, 2 /* Body */, 4 /* Unsupported */),
15451
- generateParamConfigMetadata('isEnabled', false, 2 /* Body */, 1 /* Boolean */),
15452
15443
  ];
15453
15444
  const updateDataAlert_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$6, updateDataAlert_ConfigPropertyMetadata);
15454
15445
  const createResourceParams$6 = /*#__PURE__*/ createResourceParams$10(updateDataAlert_ConfigPropertyMetadata);
@@ -16712,4 +16703,4 @@ withDefaultLuvio((luvio) => {
16712
16703
  });
16713
16704
 
16714
16705
  export { createAnnotation, createAssetSlackChannel, createDashboard, createDataAlert, createDataAssetRequest, createLoglines, createRecordShares, createTemplate, createVisualization, createWorkspace, createWorkspaceAsset, deleteAllShares, deleteDashboard, deleteDataAlert, deleteRecordShare, deleteVisualization, deleteWorkspace, deleteWorkspaceAsset, follow, generateSFDriveCredentials, generateSFDrivePresignedCredentials, getAnnotations, getAnnotations_imperative, getAssetSlackChannels, getAssetSlackChannels_imperative, getDashboardByName, getDashboardByNameNotifyChange, getDashboardByName_imperative, getDashboards, getDashboards_imperative, getDataAlert, getDataAlertCollection, getDataAlertCollection_imperative, getDataAlertNotifyChange, getDataAlert_imperative, getDataAssetDependencies, getDataAssetDependencies_imperative, getDataAssetLineageByIdOrApiName, getDataAssetLineageByIdOrApiName_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, postDataAlertQuery, postDataAlertQuery_imperative, postDataAlertRun, publish, publishToMarketplace, queryAssets, queryUsers, unfollow, updateDashboard, updateDataAlert, updateDataAssetRequest, updateFollowedAsset, updateRecordShares, updateSubscriptionDigestConfig, updateVisualization, updateWorkspace };
16715
- // version: 1.428.0-dev18-75b1336dc2
16706
+ // version: 1.428.0-dev19-76dfabcdd5
package/src/raml/api.raml CHANGED
@@ -1506,12 +1506,6 @@ types:
1506
1506
  skillInstruction:
1507
1507
  description: Skill instruction for the brief content
1508
1508
  type: string
1509
- modelApiNameOrIdList:
1510
- description: Ids or API names of the semantic data models used to generate the brief
1511
- type: array
1512
- items:
1513
- type: string
1514
- required: false
1515
1509
  DataAlertDailyScheduleInputRepresentation:
1516
1510
  description: Input representation for daily alert schedule
1517
1511
  type: DataAlertScheduleInputRepresentation
@@ -1563,10 +1557,6 @@ types:
1563
1557
  description: ID of the associated BotDefinition agent.
1564
1558
  type: string | nil
1565
1559
  required: false
1566
- isEnabled:
1567
- description: Whether this data alert is enabled. Set to false to pause alert execution.
1568
- type: boolean
1569
- required: false
1570
1560
  DataAlertNotificationRecipientsInputRepresentation:
1571
1561
  description: 'List of UNS recipients for Data alerts. May contain user or group
1572
1562
  Ids. '
@@ -1695,12 +1685,6 @@ types:
1695
1685
  skillInstruction:
1696
1686
  description: Skill instruction for the brief content
1697
1687
  type: string
1698
- modelApiNameOrIdList:
1699
- description: Ids or API names of the semantic data models used to generate the brief
1700
- type: array
1701
- items:
1702
- type: string
1703
- required: false
1704
1688
  DataAlertCronScheduleRepresentation:
1705
1689
  description: Represents the cron schedule for a data alert
1706
1690
  type: DataAlertScheduleRepresentation
@@ -1880,10 +1864,6 @@ types:
1880
1864
  properties?: #Field may be absent
1881
1865
  description: Additional properties for the data alert used when sending the query response.
1882
1866
  type: DataAlertPropertyFilterOutputRepresentation
1883
- isEnabled:
1884
- description: Whether this data alert is enabled. False indicates the alert is paused.
1885
- type: boolean
1886
- required: false
1887
1867
  DataAlertScheduleRepresentation:
1888
1868
  description: Represents the schedule for a data alert
1889
1869
  type: object