@azure/arm-appservice 14.0.1-alpha.20231023.1 → 14.0.1-alpha.20231030.1
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/package.json
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sdk-type": "mgmt",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "A generated SDK for WebSiteManagementClient.",
|
|
6
|
-
"version": "14.0.1-alpha.
|
|
6
|
+
"version": "14.0.1-alpha.20231030.1",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": ">=
|
|
8
|
+
"node": ">=18.0.0"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@azure/core-lro": "^2.5.0",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@types/chai": "^4.2.8",
|
|
42
42
|
"chai": "^4.2.0",
|
|
43
43
|
"cross-env": "^7.0.2",
|
|
44
|
-
"@types/node": "^
|
|
44
|
+
"@types/node": "^18.0.0",
|
|
45
45
|
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
46
46
|
"ts-node": "^10.0.0"
|
|
47
47
|
},
|
|
@@ -2705,7 +2705,7 @@ export interface DetectorInfo {
|
|
|
2705
2705
|
// @public
|
|
2706
2706
|
export interface DetectorResponse extends ProxyOnlyResource {
|
|
2707
2707
|
dataProvidersMetadata?: DataProviderMetadata[];
|
|
2708
|
-
dataset?:
|
|
2708
|
+
dataset?: DiagnosticData_2[];
|
|
2709
2709
|
metadata?: DetectorInfo;
|
|
2710
2710
|
status?: Status;
|
|
2711
2711
|
suggestedUtterances?: QueryUtterancesResults;
|
|
@@ -2747,10 +2747,11 @@ export interface DiagnosticCategoryCollection {
|
|
|
2747
2747
|
}
|
|
2748
2748
|
|
|
2749
2749
|
// @public
|
|
2750
|
-
|
|
2750
|
+
interface DiagnosticData_2 {
|
|
2751
2751
|
renderingProperties?: Rendering;
|
|
2752
2752
|
table?: DataTableResponseObject;
|
|
2753
2753
|
}
|
|
2754
|
+
export { DiagnosticData_2 as DiagnosticData }
|
|
2754
2755
|
|
|
2755
2756
|
// @public
|
|
2756
2757
|
export interface DiagnosticDetectorCollection {
|
|
@@ -4930,7 +4930,7 @@ export declare interface DetectorResponse extends ProxyOnlyResource {
|
|
|
4930
4930
|
/** metadata for the detector */
|
|
4931
4931
|
metadata?: DetectorInfo;
|
|
4932
4932
|
/** Data Set */
|
|
4933
|
-
dataset?:
|
|
4933
|
+
dataset?: DiagnosticData_2[];
|
|
4934
4934
|
/** Indicates status of the most severe insight. */
|
|
4935
4935
|
status?: Status;
|
|
4936
4936
|
/** Additional configuration for different data providers to be used by the UI */
|
|
@@ -4999,12 +4999,13 @@ export declare interface DiagnosticCategoryCollection {
|
|
|
4999
4999
|
}
|
|
5000
5000
|
|
|
5001
5001
|
/** Set of data with rendering instructions */
|
|
5002
|
-
|
|
5002
|
+
declare interface DiagnosticData_2 {
|
|
5003
5003
|
/** Data in table form */
|
|
5004
5004
|
table?: DataTableResponseObject;
|
|
5005
5005
|
/** Properties that describe how the table should be rendered */
|
|
5006
5006
|
renderingProperties?: Rendering;
|
|
5007
5007
|
}
|
|
5008
|
+
export { DiagnosticData_2 as DiagnosticData }
|
|
5008
5009
|
|
|
5009
5010
|
/** Collection of Diagnostic Detectors */
|
|
5010
5011
|
export declare interface DiagnosticDetectorCollection {
|